code-server-2/package.json

66 lines
1.9 KiB
JSON
Raw Normal View History

2019-01-08 00:46:19 +00:00
{
2020-02-04 19:27:46 +00:00
"name": "code-server",
2019-07-03 00:10:17 +00:00
"license": "MIT",
2020-03-30 20:28:57 +00:00
"version": "3.0.2",
2019-01-08 00:46:19 +00:00
"scripts": {
2020-02-14 23:54:52 +00:00
"clean": "ci/clean.sh",
"vscode": "ci/vscode.sh",
"vscode:patch": "cd ./lib/vscode && git apply ../../ci/vscode.patch",
"vscode:diff": "cd ./lib/vscode && git diff HEAD > ../../ci/vscode.patch",
2020-02-04 19:27:46 +00:00
"test": "mocha -r ts-node/register ./test/*.test.ts",
2020-02-14 23:54:52 +00:00
"lint": "ci/lint.sh",
"fmt": "ci/fmt.sh",
2020-02-15 01:03:54 +00:00
"runner": "cd ./ci && NODE_OPTIONS=--max_old_space_size=32384 ts-node ./build.ts",
2020-02-04 19:27:46 +00:00
"build": "yarn runner build",
2020-02-25 22:20:47 +00:00
"watch": "yarn runner watch"
2019-01-08 00:46:19 +00:00
},
"devDependencies": {
2020-02-14 21:57:51 +00:00
"@types/adm-zip": "^0.4.32",
"@types/fs-extra": "^8.0.1",
2020-02-04 19:27:46 +00:00
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.7",
"@types/parcel-bundler": "^1.12.1",
2019-07-11 22:12:52 +00:00
"@types/pem": "^1.9.5",
"@types/safe-compare": "^1.1.0",
2020-02-14 21:57:51 +00:00
"@types/semver": "^7.1.0",
"@types/tar-fs": "^1.16.2",
2020-03-16 18:02:33 +00:00
"@types/ssh2": "0.5.39",
"@types/ssh2-streams": "^0.1.6",
"@types/tar-stream": "^1.6.1",
2020-02-04 19:27:46 +00:00
"@types/ws": "^6.0.4",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"eslint": "^6.2.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"leaked-handles": "^5.2.0",
"mocha": "^6.2.0",
"parcel-bundler": "^1.12.4",
"prettier": "^1.18.2",
"stylelint": "^13.0.0",
2020-02-19 00:06:35 +00:00
"stylelint-config-recommended": "^3.0.0",
"ts-node": "^8.4.1",
2020-02-04 19:27:46 +00:00
"typescript": "3.7.2"
2019-07-02 21:55:54 +00:00
},
"resolutions": {
2020-02-04 19:27:46 +00:00
"@types/node": "^12.12.7",
"safe-buffer": "^5.1.1",
"vfile-message": "^2.0.2"
2019-07-11 22:12:52 +00:00
},
"dependencies": {
2020-02-04 19:27:46 +00:00
"@coder/logger": "1.1.11",
2020-02-14 21:57:51 +00:00
"adm-zip": "^0.4.14",
2020-02-04 19:27:46 +00:00
"fs-extra": "^8.1.0",
2019-07-11 22:12:52 +00:00
"httpolyglot": "^0.1.2",
2020-03-16 18:02:33 +00:00
"node-pty": "^0.9.0",
2019-07-11 22:12:52 +00:00
"pem": "^1.14.2",
"safe-compare": "^1.1.4",
2020-02-14 21:57:51 +00:00
"semver": "^7.1.3",
"tar": "^6.0.1",
2020-03-16 18:02:33 +00:00
"ssh2": "^0.8.7",
"tar-fs": "^2.0.0",
2020-02-04 19:27:46 +00:00
"ws": "^7.2.0"
2019-01-08 00:46:19 +00:00
}
}