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-02-04 19:27:46 +00:00
|
|
|
"version": "2.1.0",
|
2019-01-08 00:46:19 +00:00
|
|
|
"scripts": {
|
2020-02-04 19:27:46 +00:00
|
|
|
"i": "yarn install --ignore-scripts",
|
|
|
|
"preinstall": "./scripts/preinstall.sh",
|
|
|
|
"postinstall": "./scripts/postinstall.sh",
|
|
|
|
"patch:generate": "cd ./lib/vscode && git diff HEAD > ../../scripts/vscode.patch",
|
|
|
|
"patch:apply": "cd ./lib/vscode && git apply ../../scripts/vscode.patch",
|
|
|
|
"test": "mocha -r ts-node/register ./test/*.test.ts",
|
2020-02-04 21:00:44 +00:00
|
|
|
"test:build": "./scripts/test.sh",
|
|
|
|
"lint:js": "eslint src test scripts --ext .ts,.tsx",
|
2020-02-04 19:27:46 +00:00
|
|
|
"lint:css": "stylelint 'src/**/*.css'",
|
|
|
|
"lint": "./scripts/lint.sh",
|
|
|
|
"watch": "yarn runner watch",
|
2019-10-18 23:20:02 +00:00
|
|
|
"runner": "cd ./scripts && node --max-old-space-size=32384 -r ts-node/register ./build.ts",
|
2020-02-04 19:27:46 +00:00
|
|
|
"build": "yarn runner build",
|
2019-10-18 23:20:02 +00:00
|
|
|
"binary": "yarn runner binary",
|
2020-02-04 19:27:46 +00:00
|
|
|
"package": "yarn runner package"
|
2019-01-08 00:46:19 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-01-08 00:27:28 +00:00
|
|
|
"@coder/nbin": "^1.2.7",
|
2019-10-18 23:20:02 +00:00
|
|
|
"@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",
|
2019-09-12 17:17:16 +00:00
|
|
|
"@types/tar-fs": "^1.16.1",
|
2019-07-02 21:55:54 +00:00
|
|
|
"@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",
|
|
|
|
"stylelint-config-standard": "^19.0.0",
|
2019-10-18 23:40:10 +00:00
|
|
|
"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",
|
|
|
|
"fs-extra": "^8.1.0",
|
2019-07-11 22:12:52 +00:00
|
|
|
"httpolyglot": "^0.1.2",
|
|
|
|
"pem": "^1.14.2",
|
2019-08-09 23:56:37 +00:00
|
|
|
"safe-compare": "^1.1.4",
|
2019-09-12 17:17:16 +00:00
|
|
|
"tar-fs": "^2.0.0",
|
2019-10-04 23:14:07 +00:00
|
|
|
"tar-stream": "^2.1.0",
|
2020-02-04 19:27:46 +00:00
|
|
|
"ws": "^7.2.0"
|
2019-01-08 00:46:19 +00:00
|
|
|
}
|
|
|
|
}
|