vscode/package.json

204 lines
7 KiB
JSON
Raw Normal View History

2015-11-13 14:39:38 +01:00
{
"name": "code-oss-dev",
2020-12-05 02:15:30 +01:00
"version": "1.53.0",
2020-12-18 09:10:42 +01:00
"distro": "c89ced323fffc6ffd5caa6e9bb6662b8e26b5fb4",
"author": {
"name": "Microsoft Corporation"
},
"license": "MIT",
"main": "./out/main",
"private": true,
"scripts": {
"test": "mocha",
2020-02-07 12:25:54 +01:00
"test-browser": "node test/unit/browser/index.js",
"preinstall": "node build/npm/preinstall.js",
"postinstall": "node build/npm/postinstall.js",
"compile": "gulp compile --max_old_space_size=4095",
2020-12-15 14:47:25 +01:00
"watch": "npm-run-all -lp watch-client watch-extensions",
2020-04-15 11:45:23 +02:00
"watchd": "deemon yarn watch",
2020-06-29 17:43:09 +02:00
"watch-webd": "deemon yarn watch-web",
2020-04-15 11:45:23 +02:00
"kill-watchd": "deemon --kill yarn watch",
2020-06-29 17:43:09 +02:00
"kill-watch-webd": "deemon --kill yarn watch-web",
2020-04-15 11:45:23 +02:00
"restart-watchd": "deemon --restart yarn watch",
2020-06-29 17:43:09 +02:00
"restart-watch-webd": "deemon --restart yarn watch-web",
"watch-client": "gulp watch-client --max_old_space_size=4095",
2020-07-07 11:34:06 +02:00
"watch-clientd": "deemon yarn watch-client",
2020-07-08 13:53:39 +02:00
"kill-watch-clientd": "deemon --kill yarn watch-client",
"watch-extensions": "gulp watch-extensions --max_old_space_size=4095",
2020-07-07 11:34:06 +02:00
"watch-extensionsd": "deemon yarn watch-extensions",
2020-07-08 13:53:39 +02:00
"kill-watch-extensionsd": "deemon --kill yarn watch-extensions",
"mocha": "mocha test/unit/node/all.js --delay",
2020-09-22 11:12:35 +02:00
"precommit": "node build/hygiene.js",
"gulp": "gulp --max_old_space_size=8192",
2019-10-16 11:15:43 +02:00
"electron": "node build/lib/electron",
"7z": "7z",
"update-grammars": "node build/npm/update-all-grammars.js",
"update-localization-extension": "node build/npm/update-localization-extension.js",
"smoketest": "cd test/smoke && node test/index.js",
"download-builtin-extensions": "node build/lib/builtInExtensions.js",
"monaco-compile-check": "tsc -p src/tsconfig.monaco.json --noEmit",
"tsec-compile-check": "node node_modules/tsec/bin/tsec -p src/tsconfig.json --noEmit",
"valid-layers-check": "node build/lib/layersChecker.js",
"strict-function-types-watch": "tsc --watch -p src/tsconfig.json --noEmit --strictFunctionTypes",
"update-distro": "node build/npm/update-distro.js",
"web": "node resources/web/code-web.js",
2020-06-26 10:35:10 +02:00
"compile-web": "gulp compile-web --max_old_space_size=4095",
"watch-web": "gulp watch-web --max_old_space_size=4095",
"eslint": "eslint -c .eslintrc.json --rulesdir ./build/lib/eslint --ext .ts --ext .js ./src/vs ./extensions",
2020-12-18 11:17:55 +01:00
"electron-rebuild": "electron-rebuild --arch=arm64 --force --version=11.1.0",
2020-12-15 15:27:23 +01:00
"playwright-install": "node node_modules/playwright/install.js"
},
"dependencies": {
"applicationinsights": "1.0.8",
2020-10-13 15:07:47 +02:00
"chokidar": "3.4.3",
"graceful-fs": "4.2.3",
"http-proxy-agent": "^2.1.0",
2019-10-30 11:43:23 +01:00
"https-proxy-agent": "^2.2.3",
"iconv-lite-umd": "0.6.8",
"jschardet": "2.2.1",
"keytar": "7.2.0",
2020-03-30 23:08:14 +02:00
"minimist": "^1.2.5",
2019-11-08 13:36:59 +01:00
"native-is-elevated": "0.4.1",
2020-11-17 21:43:34 +01:00
"native-keymap": "2.2.1",
"native-watchdog": "1.3.0",
"node-pty": "0.10.0-beta18",
2019-11-07 10:17:21 +01:00
"spdlog": "^0.11.1",
2019-11-14 17:42:55 +01:00
"sudo-prompt": "9.1.1",
2020-09-22 19:29:21 +02:00
"tas-client-umd": "0.1.2",
"v8-inspect-profiler": "^0.0.20",
2020-10-15 20:03:54 +02:00
"vscode-nsfw": "1.2.9",
2020-05-07 11:16:30 +02:00
"vscode-oniguruma": "1.3.1",
2019-11-11 16:22:56 +01:00
"vscode-proxy-agent": "^0.5.2",
"vscode-regexpp": "^3.1.0",
"vscode-ripgrep": "^1.11.1",
"vscode-sqlite3": "4.0.10",
2020-06-29 14:52:25 +02:00
"vscode-textmate": "5.2.0",
2020-09-15 21:54:50 +02:00
"xterm": "4.10.0-beta.4",
"xterm-addon-search": "0.8.0-beta.3",
"xterm-addon-unicode11": "0.3.0-beta.3",
"xterm-addon-webgl": "0.10.0-beta.1",
"yauzl": "^2.9.2",
"yazl": "^2.4.3"
},
"devDependencies": {
"7zip": "0.0.6",
"@types/applicationinsights": "0.20.0",
"@types/chokidar": "2.1.3",
"@types/cookie": "^0.3.3",
2020-02-07 10:58:02 +01:00
"@types/debug": "^4.1.5",
"@types/graceful-fs": "4.1.2",
2019-11-11 16:22:56 +01:00
"@types/http-proxy-agent": "^2.0.1",
"@types/keytar": "^4.4.0",
2020-03-30 23:08:14 +02:00
"@types/minimist": "^1.2.0",
"@types/mocha": "2.2.39",
"@types/node": "^12.11.7",
"@types/sinon": "^1.16.36",
"@types/trusted-types": "^1.0.6",
"@types/vscode-windows-registry": "^1.0.0",
"@types/webpack": "^4.4.10",
"@types/windows-foreground-love": "^0.3.0",
2019-12-16 16:34:53 +01:00
"@types/windows-mutex": "^0.4.0",
"@types/windows-process-tree": "^0.2.0",
"@types/winreg": "^1.2.30",
"@types/yauzl": "^2.9.1",
"@types/yazl": "^2.4.2",
"@typescript-eslint/eslint-plugin": "3.2.0",
2020-06-18 00:12:03 +02:00
"@typescript-eslint/parser": "^3.3.0",
"ansi-colors": "^3.2.3",
2020-09-02 22:32:08 +02:00
"asar": "^3.0.3",
"chromium-pickle-js": "^0.2.0",
"copy-webpack-plugin": "^6.0.3",
"cson-parser": "^1.3.3",
"css-loader": "^3.2.0",
"debounce": "^1.0.0",
2020-04-15 11:45:23 +02:00
"deemon": "^1.4.0",
2020-12-18 11:17:55 +01:00
"electron": "11.1.0",
"electron-rebuild": "2.0.3",
"eslint": "6.8.0",
"eslint-plugin-jsdoc": "^19.1.0",
"eslint-plugin-mocha": "8.0.0",
"event-stream": "3.3.4",
"fancy-log": "^1.3.3",
"fast-plist": "0.1.2",
"file-loader": "^4.2.0",
"glob": "^5.0.13",
"gulp": "^4.0.0",
"gulp-atom-electron": "^1.22.0",
"gulp-azure-storage": "^0.11.1",
"gulp-buffer": "0.0.2",
"gulp-concat": "^2.6.1",
"gulp-cssnano": "^2.1.3",
"gulp-eslint": "^5.0.0",
"gulp-filter": "^5.1.0",
"gulp-flatmap": "^1.0.2",
"gulp-gunzip": "^1.0.0",
"gulp-json-editor": "^2.5.0",
"gulp-plumber": "^1.2.0",
"gulp-remote-retry-src": "^0.6.0",
"gulp-rename": "^1.2.0",
"gulp-replace": "^0.5.4",
"gulp-shell": "^0.6.5",
"gulp-tsb": "4.0.5",
"gulp-untar": "^0.0.7",
"gulp-vinyl-zip": "^2.1.2",
"husky": "^0.13.1",
2020-07-07 09:18:31 +02:00
"innosetup": "6.0.5",
"is": "^3.1.0",
2020-01-14 11:08:58 +01:00
"istanbul-lib-coverage": "^3.0.0",
"istanbul-lib-instrument": "^4.0.0",
"istanbul-lib-report": "^3.0.0",
"istanbul-lib-source-maps": "^4.0.0",
"istanbul-reports": "^3.0.0",
"jsdom-no-contextify": "^3.1.0",
"lazy.js": "^0.4.2",
"merge-options": "^1.0.1",
"mime": "^1.4.1",
"minimatch": "^3.0.4",
"mkdirp": "^0.5.0",
2020-12-17 19:16:42 +01:00
"mocha": "^8.2.1",
"mocha-junit-reporter": "^2.0.0",
"mocha-multi-reporters": "^1.5.1",
2020-12-15 14:47:25 +01:00
"npm-run-all": "^4.1.5",
2019-09-03 13:56:06 +02:00
"opn": "^6.0.0",
"optimist": "0.3.5",
"p-all": "^1.0.0",
2020-11-26 14:00:39 +01:00
"playwright": "1.6.2",
"pump": "^1.0.1",
"queue": "3.0.6",
"rcedit": "^1.1.0",
"rimraf": "^2.2.8",
"sinon": "^1.17.2",
"source-map": "^0.4.4",
"source-map-support": "^0.3.2",
"style-loader": "^1.0.0",
"ts-loader": "^6.2.1",
"tsec": "googleinterns/tsec#7bf4ab23686500522341b977b3e2cc04b1f720b1",
"typescript": "4.2.0-dev.20201207",
"typescript-formatter": "7.1.0",
"underscore": "^1.8.2",
"vinyl": "^2.0.0",
"vinyl-fs": "^3.0.0",
"vsce": "1.48.0",
2020-12-03 12:46:02 +01:00
"vscode-debugprotocol": "1.43.0",
"vscode-nls-dev": "^3.3.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-stream": "^5.2.1",
2020-02-07 11:41:44 +01:00
"yaserver": "^0.2.0"
},
"repository": {
"type": "git",
2020-09-16 01:13:49 +02:00
"url": "https://github.com/microsoft/vscode.git"
},
"bugs": {
2020-09-16 01:13:49 +02:00
"url": "https://github.com/microsoft/vscode/issues"
},
"optionalDependencies": {
"vscode-windows-ca-certs": "^0.3.0",
2020-09-16 00:36:46 +02:00
"vscode-windows-registry": "1.0.3",
"windows-foreground-love": "0.2.0",
"windows-mutex": "0.3.0",
"windows-process-tree": "0.2.4"
}
2020-12-15 17:21:10 +01:00
}