|
1 | 1 | { |
2 | | - "name": "code-oss-dev", |
3 | | - "version": "1.96.0", |
4 | | - "private": true, |
5 | | - "bugs": { |
6 | | - "url": "https://github.com/microsoft/vscode/issues" |
7 | | - }, |
8 | | - "repository": { |
9 | | - "type": "git", |
10 | | - "url": "https://github.com/microsoft/vscode.git" |
11 | | - }, |
12 | | - "license": "MIT", |
13 | | - "author": { |
14 | | - "name": "Microsoft Corporation" |
15 | | - }, |
16 | | - "type": "module", |
17 | | - "main": "./out/main.js", |
18 | | - "scripts": { |
19 | | - "test": "echo Please run any of the test scripts from the scripts folder.", |
20 | | - "test-browser": "npx playwright install && node test/unit/browser/index.js", |
21 | | - "test-browser-no-install": "node test/unit/browser/index.js", |
22 | | - "test-node": "mocha test/unit/node/index.js --delay --ui=tdd --timeout=5000 --exit", |
23 | | - "test-extension": "vscode-test", |
24 | | - "preinstall": "node build/npm/preinstall.js", |
25 | | - "postinstall": "node build/npm/postinstall.js", |
26 | | - "compile": "node ./node_modules/gulp/bin/gulp.js compile", |
27 | | - "watch": "npm-run-all -lp watch-client watch-extensions", |
28 | | - "watchd": "deemon npm run watch", |
29 | | - "watch-webd": "deemon npm run watch-web", |
30 | | - "kill-watchd": "deemon --kill npm run watch", |
31 | | - "kill-watch-webd": "deemon --kill npm run watch-web", |
32 | | - "restart-watchd": "deemon --restart npm run watch", |
33 | | - "restart-watch-webd": "deemon --restart npm run watch-web", |
34 | | - "watch-client": "node --max-old-space-size=8192 ./node_modules/gulp/bin/gulp.js watch-client", |
35 | | - "watch-clientd": "deemon npm run watch-client", |
36 | | - "kill-watch-clientd": "deemon --kill npm run watch-client", |
37 | | - "watch-extensions": "node --max-old-space-size=8192 ./node_modules/gulp/bin/gulp.js watch-extensions watch-extension-media", |
38 | | - "watch-extensionsd": "deemon npm run watch-extensions", |
39 | | - "kill-watch-extensionsd": "deemon --kill npm run watch-extensions", |
40 | | - "gulp": "node --max-old-space-size=8192 ./node_modules/gulp/bin/gulp.js", |
41 | | - "electron": "node build/lib/electron", |
42 | | - "7z": "7z", |
43 | | - "update-grammars": "node build/npm/update-all-grammars.mjs", |
44 | | - "update-localization-extension": "node build/npm/update-localization-extension.js", |
45 | | - "smoketest": "node build/lib/preLaunch.js && cd test/smoke && npm run compile && node test/index.js", |
46 | | - "smoketest-no-compile": "cd test/smoke && node test/index.js", |
47 | | - "download-builtin-extensions": "node build/lib/builtInExtensions.js", |
48 | | - "download-builtin-extensions-cg": "node build/lib/builtInExtensionsCG.js", |
49 | | - "monaco-compile-check": "tsc -p src/tsconfig.monaco.json --noEmit", |
50 | | - "tsec-compile-check": "node node_modules/tsec/bin/tsec -p src/tsconfig.tsec.json", |
51 | | - "vscode-dts-compile-check": "tsc -p src/tsconfig.vscode-dts.json && tsc -p src/tsconfig.vscode-proposed-dts.json", |
52 | | - "valid-layers-check": "node build/lib/layersChecker.js", |
53 | | - "update-distro": "node build/npm/update-distro.mjs", |
54 | | - "web": "echo 'npm run web' is replaced by './scripts/code-server' or './scripts/code-web'", |
55 | | - "compile-cli": "gulp compile-cli", |
56 | | - "compile-web": "node ./node_modules/gulp/bin/gulp.js compile-web", |
57 | | - "watch-web": "node ./node_modules/gulp/bin/gulp.js watch-web", |
58 | | - "watch-cli": "node ./node_modules/gulp/bin/gulp.js watch-cli", |
59 | | - "eslint": "node build/eslint", |
60 | | - "stylelint": "node build/stylelint", |
61 | | - "playwright-install": "npm exec playwright install", |
62 | | - "compile-build": "node ./node_modules/gulp/bin/gulp.js compile-build", |
63 | | - "compile-extensions-build": "node ./node_modules/gulp/bin/gulp.js compile-extensions-build", |
64 | | - "minify-vscode": "node ./node_modules/gulp/bin/gulp.js minify-vscode", |
65 | | - "minify-vscode-reh": "node ./node_modules/gulp/bin/gulp.js minify-vscode-reh", |
66 | | - "minify-vscode-reh-web": "node ./node_modules/gulp/bin/gulp.js minify-vscode-reh-web", |
67 | | - "hygiene": "node ./node_modules/gulp/bin/gulp.js hygiene", |
68 | | - "core-ci": "node ./node_modules/gulp/bin/gulp.js core-ci", |
69 | | - "core-ci-pr": "node ./node_modules/gulp/bin/gulp.js core-ci-pr", |
70 | | - "extensions-ci": "node ./node_modules/gulp/bin/gulp.js extensions-ci", |
71 | | - "extensions-ci-pr": "node ./node_modules/gulp/bin/gulp.js extensions-ci-pr", |
72 | | - "perf": "node scripts/code-perf.js", |
73 | | - "update-build-ts-version": "npm install typescript@next && tsc -p ./build/tsconfig.build.json" |
74 | | - }, |
75 | 2 | "dependencies": { |
76 | | - "@microsoft/1ds-core-js": "^3.2.13", |
77 | | - "@microsoft/1ds-post-js": "^3.2.13", |
78 | | - "@parcel/watcher": "2.1.0", |
79 | 3 | "@types/semver": "^7.5.8", |
80 | 4 | "@vscode/deviceid": "^0.1.1", |
81 | | - "@vscode/iconv-lite-umd": "0.7.0", |
82 | | - "@vscode/policy-watcher": "^1.1.8", |
83 | | - "@vscode/proxy-agent": "^0.24.0", |
84 | | - "@vscode/ripgrep": "^1.15.9", |
85 | | - "@vscode/spdlog": "^0.15.0", |
86 | | - "@vscode/sqlite3": "5.1.8-vscode", |
87 | | - "@vscode/sudo-prompt": "9.3.1", |
88 | 5 | "@vscode/tree-sitter-wasm": "^0.0.4", |
89 | | - "@vscode/vscode-languagedetection": "1.0.21", |
90 | | - "@vscode/windows-mutex": "^0.5.0", |
91 | | - "@vscode/windows-process-tree": "^0.6.0", |
92 | | - "@vscode/windows-registry": "^1.1.0", |
93 | 6 | "@xterm/addon-clipboard": "^0.2.0-beta.53", |
94 | 7 | "@xterm/addon-image": "^0.9.0-beta.70", |
95 | 8 | "@xterm/addon-ligatures": "^0.10.0-beta.70", |
|
111 | 24 | "open": "^8.4.2", |
112 | 25 | "tas-client-umd": "0.2.0", |
113 | 26 | "undici": "^6.20.1", |
114 | | - "v8-inspect-profiler": "^0.1.1", |
115 | | - "vscode-oniguruma": "1.7.0", |
116 | | - "vscode-regexpp": "^3.1.0", |
117 | | - "vscode-textmate": "9.1.0", |
118 | 27 | "yauzl": "^3.0.0", |
119 | 28 | "yazl": "^2.4.3" |
120 | 29 | }, |
121 | 30 | "devDependencies": { |
122 | | - "@playwright/test": "^1.46.1", |
123 | | - "@stylistic/eslint-plugin-ts": "^2.8.0", |
124 | 31 | "@types/cookie": "^0.3.3", |
125 | 32 | "@types/debug": "^4.1.5", |
126 | | - "@types/eslint": "^9.6.1", |
127 | | - "@types/gulp-svgmin": "^1.2.1", |
128 | 33 | "@types/http-proxy-agent": "^2.0.1", |
129 | 34 | "@types/kerberos": "^1.1.2", |
130 | 35 | "@types/minimist": "^1.2.1", |
131 | | - "@types/mocha": "^9.1.1", |
132 | 36 | "@types/node": "20.x", |
133 | 37 | "@types/sinon": "^10.0.2", |
134 | | - "@types/sinon-test": "^2.4.2", |
135 | 38 | "@types/trusted-types": "^1.0.6", |
136 | | - "@types/vscode-notebook-renderer": "^1.72.0", |
137 | | - "@types/webpack": "^5.28.5", |
138 | 39 | "@types/wicg-file-system-access": "^2020.9.6", |
139 | 40 | "@types/windows-foreground-love": "^0.3.0", |
140 | 41 | "@types/winreg": "^1.2.30", |
141 | 42 | "@types/yauzl": "^2.10.0", |
142 | 43 | "@types/yazl": "^2.4.2", |
143 | | - "@typescript-eslint/utils": "^8.8.0", |
144 | | - "@vscode/gulp-electron": "^1.36.0", |
145 | | - "@vscode/l10n-dev": "0.0.35", |
146 | | - "@vscode/telemetry-extractor": "^1.10.2", |
147 | | - "@vscode/test-cli": "^0.0.6", |
148 | | - "@vscode/test-electron": "^2.4.0", |
149 | | - "@vscode/test-web": "^0.0.62", |
150 | | - "@vscode/v8-heap-parser": "^0.1.0", |
151 | | - "@vscode/vscode-perf": "^0.0.19", |
152 | 44 | "@webgpu/types": "^0.1.44", |
153 | 45 | "ansi-colors": "^3.2.3", |
154 | 46 | "asar": "^3.0.3", |
155 | | - "chromium-pickle-js": "^0.2.0", |
156 | 47 | "cookie": "^0.7.2", |
157 | | - "copy-webpack-plugin": "^11.0.0", |
158 | 48 | "css-loader": "^6.9.1", |
159 | 49 | "cssnano": "^6.0.3", |
160 | 50 | "debounce": "^1.0.0", |
161 | 51 | "deemon": "^1.8.0", |
162 | | - "electron": "32.2.5", |
163 | | - "eslint": "^9.11.1", |
164 | | - "eslint-formatter-compact": "^8.40.0", |
165 | | - "eslint-plugin-header": "3.1.1", |
166 | | - "eslint-plugin-jsdoc": "^50.3.1", |
167 | | - "eslint-plugin-local": "^6.0.0", |
168 | 52 | "event-stream": "3.3.4", |
169 | 53 | "fancy-log": "^1.3.3", |
170 | 54 | "file-loader": "^6.2.0", |
171 | 55 | "glob": "^5.0.13", |
172 | | - "gulp": "^4.0.0", |
173 | | - "gulp-azure-storage": "^0.12.1", |
174 | | - "gulp-bom": "^3.0.0", |
175 | | - "gulp-buffer": "0.0.2", |
176 | | - "gulp-filter": "^5.1.0", |
177 | | - "gulp-flatmap": "^1.0.2", |
178 | | - "gulp-gunzip": "^1.0.0", |
179 | | - "gulp-gzip": "^1.4.2", |
180 | | - "gulp-json-editor": "^2.5.0", |
181 | | - "gulp-plumber": "^1.2.0", |
182 | | - "gulp-rename": "^1.2.0", |
183 | | - "gulp-replace": "^0.5.4", |
184 | | - "gulp-sourcemaps": "^3.0.0", |
185 | | - "gulp-svgmin": "^4.1.0", |
186 | | - "gulp-untar": "^0.0.7", |
187 | | - "husky": "^0.13.1", |
188 | 56 | "innosetup": "6.0.5", |
189 | | - "istanbul-lib-coverage": "^3.2.0", |
190 | | - "istanbul-lib-instrument": "^6.0.1", |
191 | | - "istanbul-lib-report": "^3.0.0", |
192 | | - "istanbul-lib-source-maps": "^4.0.1", |
193 | | - "istanbul-reports": "^3.1.5", |
194 | 57 | "lazy.js": "^0.4.2", |
195 | 58 | "merge-options": "^1.0.1", |
196 | 59 | "mime": "^1.4.1", |
197 | 60 | "minimatch": "^3.0.4", |
198 | 61 | "minimist": "^1.2.6", |
199 | | - "mocha": "^10.2.0", |
200 | | - "mocha-junit-reporter": "^2.2.1", |
201 | | - "mocha-multi-reporters": "^1.5.1", |
202 | 62 | "npm-run-all": "^4.1.5", |
203 | 63 | "os-browserify": "^0.3.0", |
204 | 64 | "p-all": "^1.0.0", |
|
209 | 69 | "rcedit": "^1.1.0", |
210 | 70 | "rimraf": "^2.2.8", |
211 | 71 | "sinon": "^12.0.1", |
212 | | - "sinon-test": "^3.1.3", |
213 | 72 | "source-map": "0.6.1", |
214 | 73 | "source-map-support": "^0.3.2", |
215 | 74 | "style-loader": "^3.3.2", |
216 | 75 | "ts-loader": "^9.5.1", |
217 | | - "ts-node": "^10.9.1", |
218 | 76 | "tsec": "0.2.7", |
219 | 77 | "tslib": "^2.6.3", |
220 | | - "typescript": "^5.8.0-dev.20241107", |
221 | | - "typescript-eslint": "^8.8.0", |
222 | 78 | "util": "^0.12.4", |
223 | | - "webpack": "^5.94.0", |
224 | | - "webpack-cli": "^5.1.4", |
225 | | - "webpack-stream": "^7.0.0", |
226 | 79 | "xml2js": "^0.5.0", |
227 | 80 | "yaserver": "^0.4.0" |
228 | 81 | }, |
| 82 | + "main": "./out/main.js", |
| 83 | + "name": "code-oss-dev", |
229 | 84 | "optionalDependencies": { |
230 | 85 | "windows-foreground-love": "0.5.0" |
231 | 86 | }, |
232 | | - "distro": "48784af7d180cd7be93315f8ca6e39497a5a332b", |
233 | 87 | "overrides": { |
234 | | - "node-gyp-build": "4.8.1", |
235 | | - |
| 88 | + |
236 | 89 | "node-addon-api": "7.1.0" |
237 | 90 | }, |
238 | | - "@parcel/watcher@2.1.0": { |
| 91 | + "kerberos@2.1.1": { |
239 | 92 | "node-addon-api": "7.1.0" |
240 | | - } |
| 93 | + }, |
| 94 | + "node-gyp-build": "4.8.1" |
| 95 | + }, |
| 96 | + "scripts": { |
| 97 | + "7z": "7z", |
| 98 | + "compile": "node ./node_modules/gulp/bin/gulp.js compile", |
| 99 | + "compile-build": "node ./node_modules/gulp/bin/gulp.js compile-build", |
| 100 | + "compile-cli": "gulp compile-cli", |
| 101 | + "compile-extensions-build": "node ./node_modules/gulp/bin/gulp.js compile-extensions-build", |
| 102 | + "compile-web": "node ./node_modules/gulp/bin/gulp.js compile-web", |
| 103 | + "core-ci": "node ./node_modules/gulp/bin/gulp.js core-ci", |
| 104 | + "core-ci-pr": "node ./node_modules/gulp/bin/gulp.js core-ci-pr", |
| 105 | + "download-builtin-extensions": "node build/lib/builtInExtensions.js", |
| 106 | + "download-builtin-extensions-cg": "node build/lib/builtInExtensionsCG.js", |
| 107 | + "electron": "node build/lib/electron", |
| 108 | + "extensions-ci": "node ./node_modules/gulp/bin/gulp.js extensions-ci", |
| 109 | + "extensions-ci-pr": "node ./node_modules/gulp/bin/gulp.js extensions-ci-pr", |
| 110 | + "gulp": "node --max-old-space-size=8192 ./node_modules/gulp/bin/gulp.js", |
| 111 | + "hygiene": "node ./node_modules/gulp/bin/gulp.js hygiene", |
| 112 | + "kill-watch-clientd": "deemon --kill npm run watch-client", |
| 113 | + "kill-watch-extensionsd": "deemon --kill npm run watch-extensions", |
| 114 | + "kill-watch-webd": "deemon --kill npm run watch-web", |
| 115 | + "kill-watchd": "deemon --kill npm run watch", |
| 116 | + "minify-vscode": "node ./node_modules/gulp/bin/gulp.js minify-vscode", |
| 117 | + "minify-vscode-reh": "node ./node_modules/gulp/bin/gulp.js minify-vscode-reh", |
| 118 | + "minify-vscode-reh-web": "node ./node_modules/gulp/bin/gulp.js minify-vscode-reh-web", |
| 119 | + "monaco-compile-check": "tsc -p src/tsconfig.monaco.json --noEmit", |
| 120 | + "perf": "node scripts/code-perf.js", |
| 121 | + "playwright-install": "npm exec playwright install", |
| 122 | + "preinstall": "node build/npm/preinstall.js", |
| 123 | + "restart-watch-webd": "deemon --restart npm run watch-web", |
| 124 | + "restart-watchd": "deemon --restart npm run watch", |
| 125 | + "smoketest": "node build/lib/preLaunch.js && cd test/smoke && npm run compile && node test/index.js", |
| 126 | + "smoketest-no-compile": "cd test/smoke && node test/index.js", |
| 127 | + "test-browser": "npx playwright install && node test/unit/browser/index.js", |
| 128 | + "test-browser-no-install": "node test/unit/browser/index.js", |
| 129 | + "test-extension": "vscode-test", |
| 130 | + "test-node": "mocha test/unit/node/index.js --delay --ui=tdd --timeout=5000 --exit", |
| 131 | + "tsec-compile-check": "node node_modules/tsec/bin/tsec -p src/tsconfig.tsec.json", |
| 132 | + "update-build-ts-version": "npm install typescript@next && tsc -p ./build/tsconfig.build.json", |
| 133 | + "update-distro": "node build/npm/update-distro.mjs", |
| 134 | + "update-grammars": "node build/npm/update-all-grammars.mjs", |
| 135 | + "update-localization-extension": "node build/npm/update-localization-extension.js", |
| 136 | + "valid-layers-check": "node build/lib/layersChecker.js", |
| 137 | + "vscode-dts-compile-check": "tsc -p src/tsconfig.vscode-dts.json && tsc -p src/tsconfig.vscode-proposed-dts.json", |
| 138 | + "watch-cli": "node ./node_modules/gulp/bin/gulp.js watch-cli", |
| 139 | + "watch-client": "node --max-old-space-size=8192 ./node_modules/gulp/bin/gulp.js watch-client", |
| 140 | + "watch-clientd": "deemon npm run watch-client", |
| 141 | + "watch-extensions": "node --max-old-space-size=8192 ./node_modules/gulp/bin/gulp.js watch-extensions watch-extension-media", |
| 142 | + "watch-extensionsd": "deemon npm run watch-extensions", |
| 143 | + "watch-web": "node ./node_modules/gulp/bin/gulp.js watch-web", |
| 144 | + "watch-webd": "deemon npm run watch-web", |
| 145 | + "watchd": "deemon npm run watch", |
| 146 | + "web": "echo 'npm run web' is replaced by './scripts/code-server' or './scripts/code-web'" |
241 | 147 | } |
242 | 148 | } |
0 commit comments