-
Notifications
You must be signed in to change notification settings - Fork 220
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.81 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.81 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@red-hat-developer-hub/plugin-utils",
"version": "1.0.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
"main": "dist/index.esm.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts"
},
"backstage": {
"role": "common-library",
"supported-versions": "1.0.0",
"pluginId": "plugin-utils",
"pluginPackage": "@janus-idp/plugin-utils",
"pluginPackages": [
"@red-hat-developer-hub/plugin-utils"
]
},
"sideEffects": false,
"scripts": {
"build": "backstage-cli package build",
"clean": "backstage-cli package clean",
"test": "backstage-cli package test --passWithNoTests --coverage",
"lint:check": "backstage-cli package lint",
"lint:fix": "backstage-cli package lint --fix",
"tsc": "tsc",
"prettier:check": "prettier --ignore-unknown --check .",
"prettier:fix": "prettier --ignore-unknown --write ."
},
"dependencies": {
"@backstage/catalog-model": "1.7.6",
"@backstage/core-plugin-api": "1.12.3"
},
"devDependencies": {
"@backstage/cli": "0.35.4",
"@backstage/test-utils": "1.7.15",
"@testing-library/dom": "9.3.4",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "14.3.1",
"@testing-library/react-hooks": "8.0.1",
"@types/node": "22.19.15",
"@types/react": "18.3.28",
"@types/react-dom": "18.3.7",
"prettier": "3.8.1",
"react": "18.3.1",
"typescript": "5.9.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"files": [
"dist"
],
"peerDependencies": {
"react": "16.13.1 || ^17.0.0 || ^18.2.0"
}
}