Skip to content

Commit ef00265

Browse files
Nikola HristovNikola Hristov
authored andcommitted
1 parent 2f7184d commit ef00265

File tree

1 file changed

+244
-0
lines changed

1 file changed

+244
-0
lines changed

package.json

Lines changed: 244 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
<<<<<<< HEAD
23
"dependencies": {
34
"@types/semver": "^7.5.8",
45
"@vscode/deviceid": "^0.1.1",
@@ -145,4 +146,247 @@
145146
"watchd": "deemon npm run watch",
146147
"web": "echo 'npm run web' is replaced by './scripts/code-server' or './scripts/code-web'"
147148
}
149+
=======
150+
"name": "code-oss-dev",
151+
"version": "1.96.0",
152+
"distro": "48784af7d180cd7be93315f8ca6e39497a5a332b",
153+
"author": {
154+
"name": "Microsoft Corporation"
155+
},
156+
"license": "MIT",
157+
"main": "./out/main.js",
158+
"type": "module",
159+
"private": true,
160+
"scripts": {
161+
"test": "echo Please run any of the test scripts from the scripts folder.",
162+
"test-browser": "npx playwright install && node test/unit/browser/index.js",
163+
"test-browser-no-install": "node test/unit/browser/index.js",
164+
"test-node": "mocha test/unit/node/index.js --delay --ui=tdd --timeout=5000 --exit",
165+
"test-extension": "vscode-test",
166+
"preinstall": "node build/npm/preinstall.js",
167+
"postinstall": "node build/npm/postinstall.js",
168+
"compile": "node ./node_modules/gulp/bin/gulp.js compile",
169+
"watch": "npm-run-all -lp watch-client watch-extensions",
170+
"watchd": "deemon npm run watch",
171+
"watch-webd": "deemon npm run watch-web",
172+
"kill-watchd": "deemon --kill npm run watch",
173+
"kill-watch-webd": "deemon --kill npm run watch-web",
174+
"restart-watchd": "deemon --restart npm run watch",
175+
"restart-watch-webd": "deemon --restart npm run watch-web",
176+
"watch-client": "node --max-old-space-size=8192 ./node_modules/gulp/bin/gulp.js watch-client",
177+
"watch-clientd": "deemon npm run watch-client",
178+
"kill-watch-clientd": "deemon --kill npm run watch-client",
179+
"watch-extensions": "node --max-old-space-size=8192 ./node_modules/gulp/bin/gulp.js watch-extensions watch-extension-media",
180+
"watch-extensionsd": "deemon npm run watch-extensions",
181+
"kill-watch-extensionsd": "deemon --kill npm run watch-extensions",
182+
183+
"gulp": "node --max-old-space-size=8192 ./node_modules/gulp/bin/gulp.js",
184+
"electron": "node build/lib/electron",
185+
"7z": "7z",
186+
"update-grammars": "node build/npm/update-all-grammars.mjs",
187+
"update-localization-extension": "node build/npm/update-localization-extension.js",
188+
"smoketest": "node build/lib/preLaunch.js && cd test/smoke && npm run compile && node test/index.js",
189+
"smoketest-no-compile": "cd test/smoke && node test/index.js",
190+
"download-builtin-extensions": "node build/lib/builtInExtensions.js",
191+
"download-builtin-extensions-cg": "node build/lib/builtInExtensionsCG.js",
192+
"monaco-compile-check": "tsc -p src/tsconfig.monaco.json --noEmit",
193+
"tsec-compile-check": "node node_modules/tsec/bin/tsec -p src/tsconfig.tsec.json",
194+
"vscode-dts-compile-check": "tsc -p src/tsconfig.vscode-dts.json && tsc -p src/tsconfig.vscode-proposed-dts.json",
195+
"valid-layers-check": "node build/lib/layersChecker.js",
196+
"update-distro": "node build/npm/update-distro.mjs",
197+
"web": "echo 'npm run web' is replaced by './scripts/code-server' or './scripts/code-web'",
198+
"compile-cli": "gulp compile-cli",
199+
"compile-web": "node ./node_modules/gulp/bin/gulp.js compile-web",
200+
"watch-web": "node ./node_modules/gulp/bin/gulp.js watch-web",
201+
"watch-cli": "node ./node_modules/gulp/bin/gulp.js watch-cli",
202+
"eslint": "node build/eslint",
203+
"stylelint": "node build/stylelint",
204+
"playwright-install": "npm exec playwright install",
205+
"compile-build": "node ./node_modules/gulp/bin/gulp.js compile-build",
206+
"compile-extensions-build": "node ./node_modules/gulp/bin/gulp.js compile-extensions-build",
207+
"minify-vscode": "node ./node_modules/gulp/bin/gulp.js minify-vscode",
208+
"minify-vscode-reh": "node ./node_modules/gulp/bin/gulp.js minify-vscode-reh",
209+
"minify-vscode-reh-web": "node ./node_modules/gulp/bin/gulp.js minify-vscode-reh-web",
210+
"hygiene": "node ./node_modules/gulp/bin/gulp.js hygiene",
211+
"core-ci": "node ./node_modules/gulp/bin/gulp.js core-ci",
212+
"core-ci-pr": "node ./node_modules/gulp/bin/gulp.js core-ci-pr",
213+
"extensions-ci": "node ./node_modules/gulp/bin/gulp.js extensions-ci",
214+
"extensions-ci-pr": "node ./node_modules/gulp/bin/gulp.js extensions-ci-pr",
215+
"perf": "node scripts/code-perf.js",
216+
"update-build-ts-version": "npm install typescript@next && tsc -p ./build/tsconfig.build.json"
217+
},
218+
"dependencies": {
219+
"@microsoft/1ds-core-js": "^3.2.13",
220+
"@microsoft/1ds-post-js": "^3.2.13",
221+
"@parcel/watcher": "2.1.0",
222+
"@types/semver": "^7.5.8",
223+
"@vscode/deviceid": "^0.1.1",
224+
"@vscode/iconv-lite-umd": "0.7.0",
225+
"@vscode/policy-watcher": "^1.1.8",
226+
"@vscode/proxy-agent": "^0.24.0",
227+
"@vscode/ripgrep": "^1.15.9",
228+
"@vscode/spdlog": "^0.15.0",
229+
"@vscode/sqlite3": "5.1.8-vscode",
230+
"@vscode/sudo-prompt": "9.3.1",
231+
"@vscode/tree-sitter-wasm": "^0.0.4",
232+
"@vscode/vscode-languagedetection": "1.0.21",
233+
"@vscode/windows-mutex": "^0.5.0",
234+
"@vscode/windows-process-tree": "^0.6.0",
235+
"@vscode/windows-registry": "^1.1.0",
236+
"@xterm/addon-clipboard": "^0.2.0-beta.53",
237+
"@xterm/addon-image": "^0.9.0-beta.70",
238+
"@xterm/addon-ligatures": "^0.10.0-beta.70",
239+
"@xterm/addon-search": "^0.16.0-beta.70",
240+
"@xterm/addon-serialize": "^0.14.0-beta.70",
241+
"@xterm/addon-unicode11": "^0.9.0-beta.70",
242+
"@xterm/addon-webgl": "^0.19.0-beta.70",
243+
"@xterm/headless": "^5.6.0-beta.70",
244+
"@xterm/xterm": "^5.6.0-beta.70",
245+
"http-proxy-agent": "^7.0.0",
246+
"https-proxy-agent": "^7.0.2",
247+
"jschardet": "3.1.4",
248+
"kerberos": "2.1.1",
249+
"minimist": "^1.2.6",
250+
"native-is-elevated": "0.7.0",
251+
"native-keymap": "^3.3.5",
252+
"native-watchdog": "^1.4.1",
253+
"node-pty": "^1.1.0-beta22",
254+
"open": "^8.4.2",
255+
"tas-client-umd": "0.2.0",
256+
"undici": "^6.20.1",
257+
"v8-inspect-profiler": "^0.1.1",
258+
"vscode-oniguruma": "1.7.0",
259+
"vscode-regexpp": "^3.1.0",
260+
"vscode-textmate": "9.1.0",
261+
"yauzl": "^3.0.0",
262+
"yazl": "^2.4.3"
263+
},
264+
"devDependencies": {
265+
"@playwright/test": "^1.46.1",
266+
"@stylistic/eslint-plugin-ts": "^2.8.0",
267+
"@types/cookie": "^0.3.3",
268+
"@types/debug": "^4.1.5",
269+
"@types/eslint": "^9.6.1",
270+
"@types/gulp-svgmin": "^1.2.1",
271+
"@types/http-proxy-agent": "^2.0.1",
272+
"@types/kerberos": "^1.1.2",
273+
"@types/minimist": "^1.2.1",
274+
"@types/mocha": "^9.1.1",
275+
"@types/node": "20.x",
276+
"@types/sinon": "^10.0.2",
277+
"@types/sinon-test": "^2.4.2",
278+
"@types/trusted-types": "^1.0.6",
279+
"@types/vscode-notebook-renderer": "^1.72.0",
280+
"@types/webpack": "^5.28.5",
281+
"@types/wicg-file-system-access": "^2020.9.6",
282+
"@types/windows-foreground-love": "^0.3.0",
283+
"@types/winreg": "^1.2.30",
284+
"@types/yauzl": "^2.10.0",
285+
"@types/yazl": "^2.4.2",
286+
"@typescript-eslint/utils": "^8.8.0",
287+
"@vscode/gulp-electron": "^1.36.0",
288+
"@vscode/l10n-dev": "0.0.35",
289+
"@vscode/telemetry-extractor": "^1.10.2",
290+
"@vscode/test-cli": "^0.0.6",
291+
"@vscode/test-electron": "^2.4.0",
292+
"@vscode/test-web": "^0.0.62",
293+
"@vscode/v8-heap-parser": "^0.1.0",
294+
"@vscode/vscode-perf": "^0.0.19",
295+
"@webgpu/types": "^0.1.44",
296+
"ansi-colors": "^3.2.3",
297+
"asar": "^3.0.3",
298+
"chromium-pickle-js": "^0.2.0",
299+
"cookie": "^0.7.2",
300+
"copy-webpack-plugin": "^11.0.0",
301+
"css-loader": "^6.9.1",
302+
"cssnano": "^6.0.3",
303+
"debounce": "^1.0.0",
304+
"deemon": "^1.8.0",
305+
"electron": "32.2.5",
306+
"eslint": "^9.11.1",
307+
"eslint-formatter-compact": "^8.40.0",
308+
"eslint-plugin-header": "3.1.1",
309+
"eslint-plugin-jsdoc": "^50.3.1",
310+
"eslint-plugin-local": "^6.0.0",
311+
"event-stream": "3.3.4",
312+
"fancy-log": "^1.3.3",
313+
"file-loader": "^6.2.0",
314+
"glob": "^5.0.13",
315+
"gulp": "^4.0.0",
316+
"gulp-azure-storage": "^0.12.1",
317+
"gulp-bom": "^3.0.0",
318+
"gulp-buffer": "0.0.2",
319+
"gulp-filter": "^5.1.0",
320+
"gulp-flatmap": "^1.0.2",
321+
"gulp-gunzip": "^1.0.0",
322+
"gulp-gzip": "^1.4.2",
323+
"gulp-json-editor": "^2.5.0",
324+
"gulp-plumber": "^1.2.0",
325+
"gulp-rename": "^1.2.0",
326+
"gulp-replace": "^0.5.4",
327+
"gulp-sourcemaps": "^3.0.0",
328+
"gulp-svgmin": "^4.1.0",
329+
"gulp-untar": "^0.0.7",
330+
"husky": "^0.13.1",
331+
"innosetup": "6.0.5",
332+
"istanbul-lib-coverage": "^3.2.0",
333+
"istanbul-lib-instrument": "^6.0.1",
334+
"istanbul-lib-report": "^3.0.0",
335+
"istanbul-lib-source-maps": "^4.0.1",
336+
"istanbul-reports": "^3.1.5",
337+
"lazy.js": "^0.4.2",
338+
"merge-options": "^1.0.1",
339+
"mime": "^1.4.1",
340+
"minimatch": "^3.0.4",
341+
"minimist": "^1.2.6",
342+
"mocha": "^10.2.0",
343+
"mocha-junit-reporter": "^2.2.1",
344+
"mocha-multi-reporters": "^1.5.1",
345+
"npm-run-all": "^4.1.5",
346+
"os-browserify": "^0.3.0",
347+
"p-all": "^1.0.0",
348+
"path-browserify": "^1.0.1",
349+
"postcss": "^8.4.33",
350+
"postcss-nesting": "^12.0.2",
351+
"pump": "^1.0.1",
352+
"rcedit": "^1.1.0",
353+
"rimraf": "^2.2.8",
354+
"sinon": "^12.0.1",
355+
"sinon-test": "^3.1.3",
356+
"source-map": "0.6.1",
357+
"source-map-support": "^0.3.2",
358+
"style-loader": "^3.3.2",
359+
"ts-loader": "^9.5.1",
360+
"ts-node": "^10.9.1",
361+
"tsec": "0.2.7",
362+
"tslib": "^2.6.3",
363+
"typescript": "^5.8.0-dev.20241107",
364+
"typescript-eslint": "^8.8.0",
365+
"util": "^0.12.4",
366+
"webpack": "^5.94.0",
367+
"webpack-cli": "^5.1.4",
368+
"webpack-stream": "^7.0.0",
369+
"xml2js": "^0.5.0",
370+
"yaserver": "^0.4.0"
371+
},
372+
"overrides": {
373+
"node-gyp-build": "4.8.1",
374+
375+
"node-addon-api": "7.1.0"
376+
},
377+
"@parcel/[email protected]": {
378+
"node-addon-api": "7.1.0"
379+
}
380+
},
381+
"repository": {
382+
"type": "git",
383+
"url": "https://github.com/microsoft/vscode.git"
384+
},
385+
"bugs": {
386+
"url": "https://github.com/microsoft/vscode/issues"
387+
},
388+
"optionalDependencies": {
389+
"windows-foreground-love": "0.5.0"
390+
}
391+
>>>>>>> 32f6c710d19 ()
148392
}

0 commit comments

Comments
 (0)