-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.17 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 3.17 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
89
90
91
{
"name": "lightspeed-agentic-console-plugin",
"version": "0.0.1",
"description": "OpenShift Lightspeed Agentic Console Plugin — runs 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": "eslint ./*.ts ./src ./integration-tests && stylelint 'src/**/*.css' --allow-empty-input",
"lint-fix": "eslint ./*.ts ./src ./integration-tests --fix && stylelint 'src/**/*.css' --allow-empty-input --fix",
"test": "npx playwright test --ui",
"test-unit": "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.6.0",
"@patternfly/react-component-groups": "6.5.0",
"@patternfly/react-core": "6.6.0",
"@patternfly/react-icons": "6.6.0",
"@patternfly/react-log-viewer": "6.5.0",
"@patternfly/react-table": "6.6.0",
"@types/react": "18.3.31",
"copy-webpack-plugin": "14.0.0",
"css-loader": "7.1.4",
"dompurify": "3.4.12",
"i18next": "26.3.4",
"marked": "18.0.6",
"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.2",
"ts-node": "10.9.2",
"typescript": "5.9.3",
"victory": "37.3.6",
"webpack": "5.108.4",
"webpack-cli": "7.2.1"
},
"devDependencies": {
"@playwright/test": "1.61.1",
"@types/node": "22.20.1",
"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",
"pluralize": "8.0.0",
"prettier": "3.9.4",
"stylelint": "17.14.0",
"stylelint-config-standard": "40.0.0",
"typescript-eslint": "8.63.0",
"vitest": "3.2.7",
"webpack-dev-server": "5.2.6"
},
"overrides": {
"brace-expansion": "1.1.16",
"fast-uri": "3.1.3"
},
"consolePlugin": {
"name": "lightspeed-agentic-console-plugin",
"version": "0.0.1",
"displayName": "OpenShift Lightspeed Agentic Console Plugin",
"description": "AI-driven runs UI for OpenShift cluster operations",
"exposedModules": {
"AuditPage": "./components/AuditPage",
"ConfigurationPage": "./components/configuration/ConfigurationPage",
"RunDetailPage": "./components/runs/RunDetailPage",
"RunListPage": "./components/runs/RunListPage"
},
"dependencies": {
"@console/pluginAPI": ">=4.22.0-0"
}
}
}