-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.48 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.48 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@hawtio/online-kubernetes-api",
"version": "0.0.0",
"description": "An API for interacting with kubernetes clusters",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Hawtio developer team",
"license": "Apache-2.0",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/hawtio/hawtio-online.git"
},
"keywords": [
"hawtio",
"camel",
"kubernetes"
],
"scripts": {
"build": "tsup --clean",
"build:watch": "tsup --watch",
"test": "jest --watchAll=false --passWithNoTests",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"replace-version": "replace __PACKAGE_VERSION_PLACEHOLDER__ $npm_package_version ./dist/index.js",
"prepack": "yarn build && yarn replace-version"
},
"dependencies": {
"@hawtio/online-oauth": "workspace:*",
"@hawtio/react": "2.0.0-dev.2",
"@jsonjoy.com/json-path": "^18.0.0",
"eventemitter3": "^5.0.1",
"kubernetes-types": "^1.30.0",
"tslib": "^2.8.1"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@patternfly/react-charts": "^8.4.0",
"@patternfly/react-code-editor": "^6.4.0",
"@patternfly/react-core": "^6.4.0",
"@patternfly/react-icons": "^6.4.0",
"@patternfly/react-styles": "^6.4.0",
"@patternfly/react-table": "^6.4.0",
"@patternfly/react-tokens": "^6.4.0",
"@testing-library/jest-dom": "^6.9.1",
"@types/jest": "^30.0.0",
"@types/jsonpath": "^0.2.4",
"@types/node": "^24.9.2",
"@types/react": "^18.3.5",
"babel-jest": "^30.2.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jest-extended": "^7.0.0",
"jest-fetch-mock": "^3.0.3",
"monaco-editor": "^0.52.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.30.1",
"replace": "^1.2.2",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"tsup": "^8.5.0",
"typescript": "^5.9.2"
},
"peerDependencies": {
"@patternfly/react-charts": "^8",
"@patternfly/react-code-editor": "^6",
"@patternfly/react-core": "^6",
"@patternfly/react-icons": "^6",
"@patternfly/react-styles": "^6",
"@patternfly/react-table": "^6",
"@patternfly/react-tokens": "^6",
"monaco-editor": "^0.52",
"react": "^17 || ^18",
"react-dom": "^17 || ^18",
"react-router-dom": "^6.30"
},
"packageManager": "yarn@4.3.1",
"engines": {
"yarn": ">=4.3.1",
"node": ">=20"
},
"publishConfig": {
"access": "restricted"
}
}