-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 927 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 927 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
{
"name": "kubedb-extension",
"version": "0.1.0",
"private": false,
"engines": {
"node": ">=20"
},
"dependencies": {
"@rancher/shell": "^3.0.4",
"axios": "^1.10.0",
"js-yaml": "^4.1.0",
"nats.ws": "^1.30.3",
"tiny-cookie": "^2.5.1",
"vee-validate": "^4.15.1",
"yaml": "^2.8.0"
},
"resolutions": {
"@types/node": "~20.10.0",
"@types/lodash": "4.17.5"
},
"scripts": {
"dev": "NODE_ENV=dev ./node_modules/.bin/vue-cli-service serve",
"build": "./node_modules/.bin/vue-cli-service build",
"clean": "./node_modules/@rancher/shell/scripts/clean",
"build-pkg": "./node_modules/@rancher/shell/scripts/build-pkg.sh",
"serve-pkgs": "./node_modules/@rancher/shell/scripts/serve-pkgs",
"publish-pkgs": "./node_modules/@rancher/shell/scripts/extension/publish",
"parse-tag-name": "./node_modules/@rancher/shell/scripts/extension/parse-tag-name"
}
}