vscode/package.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

234 lines
9.4 KiB
JSON
Raw Normal View History

2015-11-13 13:39:38 +00:00
{
2016-05-04 09:08:48 +00:00
"name": "code-oss-dev",
"version": "1.89.0",
2024-03-27 16:38:25 +00:00
"distro": "340432a8308f66007779ec2133ee39e6995006cb",
2015-11-13 13:39:38 +00:00
"author": {
"name": "Microsoft Corporation"
},
"license": "MIT",
2016-02-09 13:59:11 +00:00
"main": "./out/main",
2015-11-13 13:39:38 +00:00
"private": true,
"scripts": {
"test": "echo Please run any of the test scripts from the scripts folder.",
"test-browser": "npx playwright install && node test/unit/browser/index.js",
"test-browser-no-install": "node test/unit/browser/index.js",
"test-node": "mocha test/unit/node/index.js --delay --ui=tdd --timeout=5000 --exit",
"test-extension": "vscode-test",
2015-11-30 16:05:35 +00:00
"preinstall": "node build/npm/preinstall.js",
2016-04-12 02:20:18 +00:00
"postinstall": "node build/npm/postinstall.js",
"compile": "node --max-old-space-size=4095 ./node_modules/gulp/bin/gulp.js compile",
"watch": "npm-run-all -lp watch-client watch-extensions",
2020-04-15 09:45:23 +00:00
"watchd": "deemon yarn watch",
2020-06-29 15:43:09 +00:00
"watch-webd": "deemon yarn watch-web",
2020-04-15 09:45:23 +00:00
"kill-watchd": "deemon --kill yarn watch",
2020-06-29 15:43:09 +00:00
"kill-watch-webd": "deemon --kill yarn watch-web",
2020-04-15 09:45:23 +00:00
"restart-watchd": "deemon --restart yarn watch",
2020-06-29 15:43:09 +00:00
"restart-watch-webd": "deemon --restart yarn watch-web",
"watch-client": "node --max-old-space-size=4095 ./node_modules/gulp/bin/gulp.js watch-client",
2020-07-07 09:34:06 +00:00
"watch-clientd": "deemon yarn watch-client",
2020-07-08 11:53:39 +00:00
"kill-watch-clientd": "deemon --kill yarn watch-client",
"watch-extensions": "node --max-old-space-size=4095 ./node_modules/gulp/bin/gulp.js watch-extensions watch-extension-media",
2020-07-07 09:34:06 +00:00
"watch-extensionsd": "deemon yarn watch-extensions",
2020-07-08 11:53:39 +00:00
"kill-watch-extensionsd": "deemon --kill yarn watch-extensions",
2020-09-22 09:12:35 +00:00
"precommit": "node build/hygiene.js",
"gulp": "node --max-old-space-size=8192 ./node_modules/gulp/bin/gulp.js",
2019-10-16 09:15:43 +00:00
"electron": "node build/lib/electron",
2017-05-25 09:27:32 +00:00
"7z": "7z",
"update-grammars": "node build/npm/update-all-grammars.mjs",
2018-01-25 20:13:24 +00:00
"update-localization-extension": "node build/npm/update-localization-extension.js",
"smoketest": "node build/lib/preLaunch.js && cd test/smoke && yarn compile && node test/index.js",
"smoketest-no-compile": "cd test/smoke && node test/index.js",
"download-builtin-extensions": "node build/lib/builtInExtensions.js",
"download-builtin-extensions-cg": "node build/lib/builtInExtensionsCG.js",
2019-04-03 21:54:02 +00:00
"monaco-compile-check": "tsc -p src/tsconfig.monaco.json --noEmit",
"tsec-compile-check": "node node_modules/tsec/bin/tsec -p src/tsconfig.tsec.json",
"vscode-dts-compile-check": "tsc -p src/tsconfig.vscode-dts.json && tsc -p src/tsconfig.vscode-proposed-dts.json",
"valid-layers-check": "node build/lib/layersChecker.js",
2022-02-28 22:56:38 +00:00
"update-distro": "node build/npm/update-distro.mjs",
"web": "echo 'yarn web' is replaced by './scripts/code-server' or './scripts/code-web'",
"compile-cli": "gulp compile-cli",
"compile-web": "node --max-old-space-size=4095 ./node_modules/gulp/bin/gulp.js compile-web",
"watch-web": "node --max-old-space-size=4095 ./node_modules/gulp/bin/gulp.js watch-web",
"watch-cli": "node --max-old-space-size=4095 ./node_modules/gulp/bin/gulp.js watch-cli",
2021-01-07 08:15:05 +00:00
"eslint": "node build/eslint",
"stylelint": "node build/stylelint",
"playwright-install": "node build/azure-pipelines/common/installPlaywright.js",
"compile-build": "node --max-old-space-size=4095 ./node_modules/gulp/bin/gulp.js compile-build",
"compile-extensions-build": "node --max-old-space-size=4095 ./node_modules/gulp/bin/gulp.js compile-extensions-build",
"minify-vscode": "node --max-old-space-size=4095 ./node_modules/gulp/bin/gulp.js minify-vscode",
"minify-vscode-reh": "node --max-old-space-size=4095 ./node_modules/gulp/bin/gulp.js minify-vscode-reh",
"minify-vscode-reh-web": "node --max-old-space-size=4095 ./node_modules/gulp/bin/gulp.js minify-vscode-reh-web",
"hygiene": "node --max-old-space-size=4095 ./node_modules/gulp/bin/gulp.js hygiene",
"core-ci": "node --max-old-space-size=8095 ./node_modules/gulp/bin/gulp.js core-ci",
"core-ci-pr": "node --max-old-space-size=4095 ./node_modules/gulp/bin/gulp.js core-ci-pr",
"extensions-ci": "node --max-old-space-size=8095 ./node_modules/gulp/bin/gulp.js extensions-ci",
"extensions-ci-pr": "node --max-old-space-size=4095 ./node_modules/gulp/bin/gulp.js extensions-ci-pr",
"perf": "node scripts/code-perf.js",
"update-build-ts-version": "yarn add typescript@next && tsc -p ./build/tsconfig.build.json"
2015-11-13 13:39:38 +00:00
},
"dependencies": {
"@microsoft/1ds-core-js": "^3.2.13",
"@microsoft/1ds-post-js": "^3.2.13",
2023-01-05 10:28:31 +00:00
"@parcel/watcher": "2.1.0",
"@vscode/iconv-lite-umd": "0.7.0",
"@vscode/policy-watcher": "^1.1.4",
"@vscode/proxy-agent": "^0.19.0",
"@vscode/ripgrep": "^1.15.9",
2024-02-02 07:25:12 +00:00
"@vscode/spdlog": "^0.15.0",
2023-06-19 18:31:03 +00:00
"@vscode/sqlite3": "5.1.6-vscode",
2021-11-19 18:54:22 +00:00
"@vscode/sudo-prompt": "9.3.1",
"@vscode/vscode-languagedetection": "1.0.21",
"@vscode/windows-mutex": "^0.5.0",
"@vscode/windows-process-tree": "^0.6.0",
"@vscode/windows-registry": "^1.1.0",
2024-03-20 19:15:08 +00:00
"@xterm/addon-canvas": "0.7.0-beta.12",
"@xterm/addon-image": "0.8.0-beta.12",
"@xterm/addon-search": "0.15.0-beta.12",
"@xterm/addon-serialize": "0.13.0-beta.12",
"@xterm/addon-unicode11": "0.8.0-beta.12",
"@xterm/addon-webgl": "0.18.0-beta.12",
"@xterm/headless": "5.5.0-beta.12",
"@xterm/xterm": "5.5.0-beta.12",
"graceful-fs": "4.2.11",
"http-proxy-agent": "^7.0.0",
"https-proxy-agent": "^7.0.2",
2021-04-30 06:06:03 +00:00
"jschardet": "3.0.0",
2023-07-19 18:11:00 +00:00
"kerberos": "^2.0.1",
"minimist": "^1.2.6",
"native-is-elevated": "0.7.0",
"native-keymap": "^3.3.4",
"native-watchdog": "^1.4.1",
"node-pty": "1.1.0-beta11",
"tas-client-umd": "0.1.8",
"v8-inspect-profiler": "^0.1.0",
"vscode-oniguruma": "1.7.0",
"vscode-regexpp": "^3.1.0",
"vscode-textmate": "9.0.0",
2024-02-28 09:44:26 +00:00
"yauzl": "^3.0.0",
"yazl": "^2.4.3"
2015-11-13 13:39:38 +00:00
},
"devDependencies": {
"@playwright/test": "^1.40.1",
2023-06-05 13:11:29 +00:00
"@swc/core": "1.3.62",
2019-08-22 08:29:11 +00:00
"@types/cookie": "^0.3.3",
"@types/debug": "^4.1.5",
"@types/graceful-fs": "4.1.2",
"@types/gulp-postcss": "^8.0.6",
2022-01-07 14:14:07 +00:00
"@types/gulp-svgmin": "^1.2.1",
2019-11-11 15:22:56 +00:00
"@types/http-proxy-agent": "^2.0.1",
2023-07-19 18:11:00 +00:00
"@types/kerberos": "^1.1.2",
"@types/minimist": "^1.2.1",
"@types/mocha": "^9.1.1",
"@types/node": "18.x",
2021-06-08 15:46:55 +00:00
"@types/sinon": "^10.0.2",
"@types/sinon-test": "^2.4.2",
"@types/trusted-types": "^1.0.6",
"@types/vscode-notebook-renderer": "^1.72.0",
"@types/webpack": "^5.28.1",
"@types/wicg-file-system-access": "^2020.9.6",
"@types/windows-foreground-love": "^0.3.0",
"@types/winreg": "^1.2.30",
2024-02-28 09:44:26 +00:00
"@types/yauzl": "^2.10.0",
"@types/yazl": "^2.4.2",
2023-03-28 21:16:09 +00:00
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/experimental-utils": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"@vscode/gulp-electron": "^1.36.0",
"@vscode/l10n-dev": "0.0.30",
"@vscode/telemetry-extractor": "^1.10.2",
"@vscode/test-cli": "^0.0.6",
"@vscode/test-electron": "^2.3.8",
"@vscode/test-web": "^0.0.50",
"@vscode/v8-heap-parser": "^0.1.0",
"@vscode/vscode-perf": "^0.0.14",
2019-02-05 21:21:05 +00:00
"ansi-colors": "^3.2.3",
2020-09-02 20:32:08 +00:00
"asar": "^3.0.3",
"chromium-pickle-js": "^0.2.0",
"cookie": "^0.4.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.9.1",
"cssnano": "^6.0.3",
2015-11-13 13:39:38 +00:00
"debounce": "^1.0.0",
2022-11-15 09:56:48 +00:00
"deemon": "^1.8.0",
"electron": "28.2.8",
2023-03-28 21:16:09 +00:00
"eslint": "8.36.0",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-jsdoc": "^46.5.0",
"eslint-plugin-local": "^1.0.0",
"event-stream": "3.3.4",
2019-02-05 21:21:05 +00:00
"fancy-log": "^1.3.3",
"file-loader": "^6.2.0",
2018-08-21 14:26:48 +00:00
"glob": "^5.0.13",
2020-12-18 16:40:23 +00:00
"gulp": "^4.0.0",
"gulp-azure-storage": "^0.12.1",
2021-01-22 09:25:49 +00:00
"gulp-bom": "^3.0.0",
"gulp-buffer": "0.0.2",
2019-02-05 22:11:05 +00:00
"gulp-concat": "^2.6.1",
"gulp-eslint": "^5.0.0",
"gulp-filter": "^5.1.0",
"gulp-flatmap": "^1.0.2",
2019-04-11 22:57:31 +00:00
"gulp-gunzip": "^1.0.0",
"gulp-gzip": "^1.4.2",
2019-02-05 22:11:05 +00:00
"gulp-json-editor": "^2.5.0",
2018-04-23 13:58:32 +00:00
"gulp-plumber": "^1.2.0",
"gulp-postcss": "^9.1.0",
2015-11-13 13:39:38 +00:00
"gulp-rename": "^1.2.0",
"gulp-replace": "^0.5.4",
2021-01-22 09:25:49 +00:00
"gulp-sourcemaps": "^3.0.0",
2022-01-07 14:14:07 +00:00
"gulp-svgmin": "^4.1.0",
2019-04-11 10:16:33 +00:00
"gulp-untar": "^0.0.7",
"husky": "^0.13.1",
2020-07-07 07:18:31 +00:00
"innosetup": "6.0.5",
"istanbul-lib-coverage": "^3.2.0",
"istanbul-lib-instrument": "^6.0.1",
2020-01-14 10:08:58 +00:00
"istanbul-lib-report": "^3.0.0",
"istanbul-lib-source-maps": "^4.0.1",
"istanbul-reports": "^3.1.5",
2015-11-13 13:39:38 +00:00
"lazy.js": "^0.4.2",
2018-08-20 13:23:56 +00:00
"merge-options": "^1.0.1",
2018-08-03 14:15:15 +00:00
"mime": "^1.4.1",
2018-10-10 09:43:44 +00:00
"minimatch": "^3.0.4",
"minimist": "^1.2.6",
2021-01-19 16:45:44 +00:00
"mkdirp": "^1.0.4",
"mocha": "^10.2.0",
"mocha-junit-reporter": "^2.2.1",
"mocha-multi-reporters": "^1.5.1",
2020-12-15 13:47:25 +00:00
"npm-run-all": "^4.1.5",
2019-09-03 11:56:06 +00:00
"opn": "^6.0.0",
2018-02-27 10:05:11 +00:00
"p-all": "^1.0.0",
2021-07-08 19:41:03 +00:00
"path-browserify": "^1.0.1",
"postcss": "^8.4.33",
"postcss-nesting": "^12.0.2",
"pump": "^1.0.1",
2018-09-24 13:41:16 +00:00
"rcedit": "^1.1.0",
2015-11-13 13:39:38 +00:00
"rimraf": "^2.2.8",
2023-01-13 10:05:10 +00:00
"sinon": "^12.0.1",
2022-06-13 19:57:36 +00:00
"sinon-test": "^3.1.3",
2021-01-06 13:30:29 +00:00
"source-map": "0.6.1",
2020-12-18 16:40:23 +00:00
"source-map-support": "^0.3.2",
"style-loader": "^3.3.2",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"tsec": "0.2.7",
"typescript": "^5.5.0-dev.20240401",
2020-12-18 16:40:23 +00:00
"typescript-formatter": "7.1.0",
2023-11-20 11:16:11 +00:00
"util": "^0.12.4",
"vscode-nls-dev": "^3.3.1",
"webpack": "^5.77.0",
"webpack-cli": "^5.0.1",
"webpack-stream": "^7.0.0",
"xml2js": "^0.5.0",
"yaserver": "^0.4.0"
2015-11-13 13:39:38 +00:00
},
"repository": {
"type": "git",
2020-09-15 23:13:49 +00:00
"url": "https://github.com/microsoft/vscode.git"
2015-11-13 13:39:38 +00:00
},
"bugs": {
2020-09-15 23:13:49 +00:00
"url": "https://github.com/microsoft/vscode/issues"
},
2015-11-30 16:05:35 +00:00
"optionalDependencies": {
"windows-foreground-love": "0.5.0"
2015-11-13 13:39:38 +00:00
}
2023-11-20 11:16:11 +00:00
}