-
Notifications
You must be signed in to change notification settings - Fork 285
/
package.json
187 lines (187 loc) · 7.06 KB
/
package.json
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
{
"name": "rancher-desktop",
"productName": "Rancher Desktop",
"license": "Apache-2.0",
"version": "1.16.0",
"author": {
"name": "SUSE",
"email": "[email protected]"
},
"engines": {
"node": "20.16.0"
},
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/rancher-sandbox/rancher-desktop.git"
},
"scripts": {
"dev": "node scripts/ts-wrapper.js scripts/dev.ts",
"lint": "yarn lint:fix",
"lint:fix": "yarn lint:typescript:fix && yarn lint:go:fix ",
"lint:nofix": "yarn lint:typescript:nofix && yarn lint:go:nofix",
"lint:typescript:fix": "cross-env BROWSERSLIST_IGNORE_OLD_DATA=1 NODE_OPTIONS=--max_old_space_size=4096 eslint --ignore-path=.gitignore --ext mjs,js,ts,tsx,vue --fix --report-unused-disable-directives .",
"lint:typescript:nofix": "cross-env BROWSERSLIST_IGNORE_OLD_DATA=1 NODE_OPTIONS=--max_old_space_size=4096 eslint --ignore-path=.gitignore --ext mjs,js,ts,tsx,vue --report-unused-disable-directives --max-warnings=0 .",
"lint:go:fix": "node scripts/ts-wrapper.js scripts/lint-go.ts --fix",
"lint:go:nofix": "node scripts/ts-wrapper.js scripts/lint-go.ts",
"generate:nerdctl-stub": "powershell scripts/windows/generate-nerdctl-stub.ps1",
"build": "cross-env NODE_OPTIONS=--max_old_space_size=4096 node --stack-size=16384 scripts/ts-wrapper.js scripts/build.ts",
"package": "node scripts/ts-wrapper.js scripts/package.ts",
"sign": "node scripts/ts-wrapper.js scripts/sign.ts",
"wix": "node scripts/ts-wrapper.js scripts/wix.ts",
"test": "yarn lint:nofix && yarn test:unit && yarn test:extra",
"test:unit": "yarn test:unit:jest && yarn test:unit:nerdctl-stub && yarn test:unit:wsl-helper && yarn test:unit:rdctl",
"test:unit:jest": "cross-env BROWSERSLIST_IGNORE_OLD_DATA=1 jest",
"test:unit:watch": "yarn test:unit -- --watch",
"test:unit:nerdctl-stub": "cd ./src/go/nerdctl-stub/ && go test ./...",
"test:unit:rdctl": "cd ./src/go/rdctl/ && go test ./...",
"test:unit:wsl-helper": "cd ./src/go/wsl-helper/ && go generate ./... && go test ./...",
"test:extra": "yarn test:extra:api-schema",
"test:extra:api-schema": "node scripts/ts-wrapper.js scripts/check-api-schema.ts",
"test:e2e": "cross-env NODE_OPTIONS=--max_old_space_size=4096 node scripts/ts-wrapper.js scripts/e2e.ts",
"test:e2e:screenshots": "node scripts/ts-wrapper.js scripts/e2e.ts --config=screenshots/playwright-config.ts",
"postinstall": "node scripts/ts-wrapper.js scripts/postinstall.ts",
"postuninstall": "cross-env BROWSERSLIST_IGNORE_OLD_DATA=1 electron-builder install-app-deps",
"rddepman": "node scripts/ts-wrapper.js scripts/rddepman.ts",
"ucmonitor": "node scripts/ts-wrapper.js scripts/unreleased-change-monitor.ts",
"dcmonitor": "node scripts/ts-wrapper.js scripts/docker-cli-monitor.ts",
"screenshots": "yarn screenshots:light && yarn screenshots:dark",
"screenshots:dark": "cross-env THEME=dark yarn test:e2e:screenshots",
"screenshots:light": "cross-env THEME=light yarn test:e2e:screenshots"
},
"main": "dist/app/background.js",
"dependencies": {
"@docker/extension-api-client-types": "0.3.4",
"@kubernetes/client-node": "0.18.1",
"@rancher/components": "0.1.4",
"async-mutex": "^0.5.0",
"cookie-universal": "2.2.2",
"core-js": "3.25.3",
"cross-spawn": "7.0.6",
"dayjs": "1.11.13",
"dompurify": "3.2.0",
"electron-updater": "6.3.9",
"express": "4.21.1",
"fs-extra": "11.2.0",
"http-proxy-middleware": "3.0.3",
"intl-messageformat": "10.7.7",
"jquery": "3.7.1",
"jsonpath": "1.1.1",
"linux-ca": "2.0.1",
"lodash": "4.17.21",
"marked": "15.0.2",
"native-reg": "1.1.1",
"node-fetch": "2.7.0",
"node-forge": "1.3.1",
"proxy-agent": "^6.4.0",
"rancher-icons": "rancher/icons#v2.0.21",
"semver": "7.6.3",
"tar-stream": "3.1.7",
"ufo": "1.5.4",
"unfetch": "4.2.0",
"v-tooltip": "2.1.3",
"vue": "2.7.16",
"vue-class-component": "7.2.6",
"vue-client-only": "2.1.0",
"vue-js-modal": "2.0.1",
"vue-meta": "2.4.0",
"vue-no-ssr": "1.1.1",
"vue-router": "3.6.5",
"vue-select": "3.20.3",
"vue-shortkey": "3.1.7",
"vue-slider-component": "3.2.24",
"vuex": "3.6.2",
"which": "5.0.0",
"yaml": "2.6.1"
},
"devDependencies": {
"@babel/eslint-parser": "7.25.9",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.18.6",
"@babel/plugin-proposal-optional-chaining": "7.21.0",
"@babel/plugin-proposal-private-methods": "7.18.6",
"@babel/plugin-proposal-private-property-in-object": "7.21.11",
"@electron/asar": "3.2.17",
"@electron/fuses": "^1.8.0",
"@electron/notarize": "2.5.0",
"@nuxt/types": "2.18.1",
"@nuxtjs/eslint-config-typescript": "11.0.0",
"@nuxtjs/router-extras": "1.1.1",
"@nuxtjs/style-resources": "1.2.2",
"@playwright/test": "1.49.0",
"@types/cross-spawn": "6.0.6",
"@types/dompurify": "3.2.0",
"@types/ejs": "3.1.5",
"@types/jest": "29.5.14",
"@types/lodash": "4.17.13",
"@types/mustache": "4.2.5",
"@types/node": "20.16.5",
"@types/node-fetch": "2.6.9",
"@types/node-forge": "1.3.11",
"@types/plist": "3.0.5",
"@types/ps-tree": "1.1.6",
"@types/semver": "7.5.8",
"@types/tar-stream": "3.1.3",
"@types/which": "3.0.4",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@vue/cli-plugin-babel": "5.0.8",
"@vue/cli-plugin-router": "5.0.8",
"@vue/cli-plugin-unit-jest": "5.0.8",
"@vue/cli-plugin-vuex": "5.0.8",
"@vue/cli-service": "5.0.8",
"@vue/eslint-config-standard": "8.0.1",
"@vue/eslint-config-typescript": "13.0.0",
"@vue/test-utils": "1.3.6",
"@vue/vue2-jest": "29.2.6",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.1.0",
"babel-jest": "29.7.0",
"cross-env": "7.0.3",
"css-loader": "7.1.2",
"ejs": "3.1.10",
"electron": "30.5.1",
"electron-builder": "25.1.8",
"eslint": "8.57.1",
"eslint-plugin-deprecation": "3.0.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-nuxt": "4.0.0",
"eslint-plugin-promise": "7.1.0",
"eslint-plugin-vue": "9.31.0",
"extract-zip": "2.0.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"js-yaml-loader": "1.2.2",
"mustache": "4.2.0",
"nan": "2.22.0",
"node-addon-api": "8",
"node-gyp": "10.2.0",
"node-gyp-build": "4.8.4",
"node-loader": "^2.1.0",
"octokit": "3.2.1",
"ps-tree": "1.2.0",
"raw-loader": "4.0.2",
"sass": "1.81.0",
"sass-loader": "16.0.3",
"ts-jest": "29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "5.6.3",
"vue-eslint-parser": "9.4.3",
"vue-template-compiler": "2.7.16",
"webpack": "5.96.1"
},
"resolutions": {
"string-width": "^4"
},
"optionalDependencies": {
"dmg-license": "1.0.11",
"fs-xattr": "0.3.1"
},
"browserslist": [
"node 18",
"electron >= 26"
]
}