-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.21 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.21 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
{
"name": "rancher-extension-stackstate",
"version": "0.5.0",
"license": "Apache-2.0",
"private": true,
"engines": {
"node": ">=20"
},
"workspaces": [
"pkg/*"
],
"dependencies": {
"@rancher/components": "0.2.1-alpha.0",
"@rancher/shell": "^3.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@nuxtjs/eslint-config-typescript": "6.0.1",
"prettier": "^3.0.0"
},
"resolutions": {
"@types/lodash": "4.14.184"
},
"scripts": {
"lint": "eslint --ext .ts,.js,.vue",
"dev": "NODE_ENV=dev vue-cli-service serve",
"build": "vue-cli-service build",
"typecheck": "yarn workspaces run typecheck",
"test": "yarn workspaces run test",
"format": "prettier --write",
"format:check": "prettier --check",
"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",
"release-tag": "changeset tag && ./scripts/duplicate-release-tags.sh"
}
}