-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1018 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1018 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "@vsouz4/scorecards-backstage-plugin",
"version": "0.1.25",
"main": "dist/index.esm.js",
"types": "dist/index.d.ts",
"license": "AGPL-3.0-or-later",
"scripts": {
"build": "backstage-cli package build",
"start": "backstage-cli package start",
"generate:types": "npx tsc"
},
"publishConfig": {
"access": "public",
"main": "dist/index.esm.js",
"types": "dist/index.d.ts"
},
"backstage": {
"role": "frontend-plugin"
},
"devDependencies": {
"@backstage/cli": "^0.25.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@backstage/core-components": "^0.13.10",
"@backstage/core-plugin-api": "^1.9.0",
"@backstage/theme": "^0.5.0",
"@material-ui/core": "^4.9.13",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.61",
"react-use": "^17.2.4",
"react": "^17.0.2"
},
"peerDependencies": {
"react": "^16.13.1 || ^17.0.0 || ^18.0.0"
},
"sideEffects": false,
"files": [
"dist",
"src"
]
}