-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.01 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 3.01 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": "lightspeed-agentic-console-plugin",
"version": "0.0.1",
"description": "OpenShift Lightspeed Agentic Console Plugin — proposals UI for AI-driven cluster operations",
"private": true,
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/openshift/lightspeed-agentic-console.git"
},
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && NODE_ENV=production npm run webpack",
"build-dev": "npm run clean && npm run webpack",
"start": "npm run webpack -- serve --progress",
"start-console": "./start-console.sh",
"i18n": "./i18n-scripts/build-i18n.sh && node ./i18n-scripts/set-english-defaults.js",
"lint": "npx eslint ./*.ts src integration-tests --fix && stylelint 'src/**/*.css' --allow-empty-input --fix",
"test": "vitest run",
"test:watch": "vitest",
"test-e2e": "npx playwright test",
"test-e2e-headless": "npx playwright test --reporter=list",
"webpack": "node -r ts-node/register ./node_modules/.bin/webpack"
},
"dependencies": {
"@openshift-console/dynamic-plugin-sdk": "4.22.0",
"@openshift-console/dynamic-plugin-sdk-webpack": "4.22.0",
"@patternfly/react-charts": "^8.4.1",
"@patternfly/react-core": "^6.4.3",
"@patternfly/react-icons": "^6.4.0",
"@patternfly/react-table": "^6.4.3",
"@types/react": "^18.3.28",
"copy-webpack-plugin": "14.0.0",
"css-loader": "^7.1.4",
"dompurify": "^3.2.7",
"i18next": "^26.0.0",
"marked": "^17.0.5",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-i18next": "16.5.8",
"react-router": "7.13.2",
"style-loader": "^4.0.0",
"ts-loader": "^9.6.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"victory": "^37.3.6",
"webpack": "5.107.2",
"webpack-cli": "7.0.3"
},
"devDependencies": {
"@playwright/test": "1.61.1",
"@testing-library/dom": "10.4.1",
"@testing-library/react": "16.3.2",
"@types/node": "22.20.0",
"eslint": "9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.6",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.1.1",
"globals": "17.7.0",
"i18next-parser": "9.4.0",
"jsdom": "26.1.0",
"pluralize": "8.0.0",
"prettier": "3.8.4",
"stylelint": "17.13.0",
"stylelint-config-standard": "40.0.0",
"typescript-eslint": "8.62.0",
"vitest": "3.2.4",
"webpack-dev-server": "5.2.5"
},
"overrides": {
"fast-uri": "3.1.3"
},
"consolePlugin": {
"name": "lightspeed-agentic-console-plugin",
"version": "0.0.1",
"displayName": "OpenShift Lightspeed Agentic Console Plugin",
"description": "AI-driven proposals UI for OpenShift cluster operations",
"exposedModules": {
"ProposalListPage": "./components/proposals/ProposalListPage",
"ProposalDetailPage": "./components/proposals/ProposalDetailPage",
"ConfigurationPage": "./components/configuration/ConfigurationPage"
},
"dependencies": {
"@console/pluginAPI": ">=4.22.0-0"
}
}
}