2019-01-08 08:46:19 +08:00
|
|
|
{
|
2020-02-05 03:27:46 +08:00
|
|
|
"name": "code-server",
|
2019-07-03 08:10:17 +08:00
|
|
|
"license": "MIT",
|
2022-11-09 06:45:01 +08:00
|
|
|
"version": "0.0.0",
|
2020-04-30 19:52:54 +08:00
|
|
|
"description": "Run VS Code on a remote server.",
|
2022-02-02 00:45:19 +08:00
|
|
|
"homepage": "https://github.com/coder/code-server",
|
2020-04-30 19:52:54 +08:00
|
|
|
"bugs": {
|
2022-02-02 00:45:19 +08:00
|
|
|
"url": "https://github.com/coder/code-server/issues"
|
2020-04-30 19:52:54 +08:00
|
|
|
},
|
2022-02-02 00:45:19 +08:00
|
|
|
"repository": "https://github.com/coder/code-server",
|
2019-01-08 08:46:19 +08:00
|
|
|
"scripts": {
|
2020-04-30 19:52:54 +08:00
|
|
|
"clean": "./ci/build/clean.sh",
|
|
|
|
"build": "./ci/build/build-code-server.sh",
|
|
|
|
"build:vscode": "./ci/build/build-vscode.sh",
|
2022-10-14 06:16:55 +08:00
|
|
|
"doctoc": "./ci/dev/doctoc.sh",
|
2020-04-30 19:52:54 +08:00
|
|
|
"release": "./ci/build/build-release.sh",
|
2020-05-28 04:39:17 +08:00
|
|
|
"release:standalone": "./ci/build/build-standalone-release.sh",
|
2021-03-23 07:19:01 +08:00
|
|
|
"release:prep": "./ci/build/release-prep.sh",
|
2022-02-16 05:51:42 +08:00
|
|
|
"test:e2e": "VSCODE_IPC_HOOK_CLI= ./ci/dev/test-e2e.sh",
|
2022-08-10 02:24:37 +08:00
|
|
|
"test:e2e:proxy": "USE_PROXY=1 ./ci/dev/test-e2e.sh",
|
2021-10-29 04:27:17 +08:00
|
|
|
"test:unit": "./ci/dev/test-unit.sh --forceExit --detectOpenHandles",
|
2022-06-25 00:33:38 +08:00
|
|
|
"test:integration": "./ci/dev/test-integration.sh",
|
2022-09-23 03:33:32 +08:00
|
|
|
"test:native": "./ci/dev/test-native.sh",
|
2021-07-14 01:22:00 +08:00
|
|
|
"test:scripts": "./ci/dev/test-scripts.sh",
|
2020-05-08 12:34:20 +08:00
|
|
|
"package": "./ci/build/build-packages.sh",
|
2022-10-14 06:16:55 +08:00
|
|
|
"prettier": "prettier --write --loglevel=warn --cache .",
|
2020-12-18 05:16:04 +08:00
|
|
|
"postinstall": "./ci/dev/postinstall.sh",
|
2022-01-22 07:28:56 +08:00
|
|
|
"publish:npm": "./ci/steps/publish-npm.sh",
|
2022-04-15 08:02:03 +08:00
|
|
|
"publish:docker": "./ci/steps/docker-buildx-push.sh",
|
2021-04-06 07:32:01 +08:00
|
|
|
"_audit": "./ci/dev/audit.sh",
|
2022-10-14 06:16:55 +08:00
|
|
|
"fmt": "yarn prettier && ./ci/dev/doctoc.sh",
|
2022-09-23 03:33:32 +08:00
|
|
|
"lint:scripts": "./ci/dev/lint-scripts.sh",
|
|
|
|
"lint:ts": "eslint --max-warnings=0 --fix $(git ls-files '*.ts' '*.js' | grep -v 'lib/vscode')",
|
2021-03-16 04:47:22 +08:00
|
|
|
"test": "echo 'Run yarn test:unit or yarn test:e2e' && exit 1",
|
2020-04-30 19:52:54 +08:00
|
|
|
"ci": "./ci/dev/ci.sh",
|
2021-11-10 13:28:31 +08:00
|
|
|
"watch": "VSCODE_DEV=1 VSCODE_IPC_HOOK_CLI= NODE_OPTIONS='--max_old_space_size=32384 --trace-warnings' ts-node ./ci/dev/watch.ts",
|
2022-06-29 01:04:35 +08:00
|
|
|
"icons": "./ci/dev/gen_icons.sh"
|
2019-01-08 08:46:19 +08:00
|
|
|
},
|
2020-04-30 19:52:54 +08:00
|
|
|
"main": "out/node/entry.js",
|
2019-01-08 08:46:19 +08:00
|
|
|
"devDependencies": {
|
2021-02-09 07:21:30 +08:00
|
|
|
"@schemastore/package": "^0.0.6",
|
2021-02-13 04:27:33 +08:00
|
|
|
"@types/compression": "^1.7.0",
|
2020-10-21 07:05:58 +08:00
|
|
|
"@types/cookie-parser": "^1.4.2",
|
2020-10-16 06:05:55 +08:00
|
|
|
"@types/express": "^4.17.8",
|
2020-03-24 07:02:31 +08:00
|
|
|
"@types/http-proxy": "^1.17.4",
|
2021-03-19 05:30:10 +08:00
|
|
|
"@types/js-yaml": "^4.0.0",
|
2022-08-11 05:15:52 +08:00
|
|
|
"@types/node": "^16.0.0",
|
2019-07-12 06:12:52 +08:00
|
|
|
"@types/pem": "^1.9.5",
|
2020-12-18 23:38:00 +08:00
|
|
|
"@types/proxy-from-env": "^1.0.1",
|
2019-07-12 06:12:52 +08:00
|
|
|
"@types/safe-compare": "^1.1.0",
|
2020-02-15 05:57:51 +08:00
|
|
|
"@types/semver": "^7.1.0",
|
2021-05-05 20:34:35 +08:00
|
|
|
"@types/split2": "^3.2.0",
|
2021-09-30 11:14:56 +08:00
|
|
|
"@types/trusted-types": "^2.0.2",
|
2022-08-11 05:15:52 +08:00
|
|
|
"@types/ws": "^8.5.3",
|
2022-10-26 00:39:06 +08:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.41.0",
|
|
|
|
"@typescript-eslint/parser": "^5.41.0",
|
2022-03-15 05:48:12 +08:00
|
|
|
"audit-ci": "^6.0.0",
|
2022-10-15 06:59:21 +08:00
|
|
|
"doctoc": "2.2.1",
|
2022-10-26 00:39:06 +08:00
|
|
|
"eslint": "^8.26.0",
|
2022-09-23 03:33:32 +08:00
|
|
|
"eslint-config-prettier": "^8.5.0",
|
2022-10-26 00:39:06 +08:00
|
|
|
"eslint-import-resolver-typescript": "^3.5.2",
|
|
|
|
"eslint-plugin-import": "^2.26.0",
|
|
|
|
"eslint-plugin-prettier": "^4.2.1",
|
2022-12-01 00:51:03 +08:00
|
|
|
"prettier": "2.8.0",
|
2022-10-26 00:39:06 +08:00
|
|
|
"prettier-plugin-sh": "^0.12.8",
|
2021-05-25 05:45:22 +08:00
|
|
|
"ts-node": "^10.0.0",
|
2022-05-14 00:57:50 +08:00
|
|
|
"typescript": "^4.6.2"
|
2019-07-03 05:55:54 +08:00
|
|
|
},
|
|
|
|
"resolutions": {
|
2021-09-28 03:15:18 +08:00
|
|
|
"ansi-regex": "^5.0.1",
|
2022-10-15 00:36:56 +08:00
|
|
|
"normalize-package-data": "^5.0.0",
|
2021-05-10 15:31:58 +08:00
|
|
|
"doctoc/underscore": "^1.13.1",
|
2021-05-12 03:14:50 +08:00
|
|
|
"doctoc/**/trim": "^1.0.0",
|
|
|
|
"postcss": "^8.2.1",
|
2021-05-25 05:21:00 +08:00
|
|
|
"browserslist": "^4.16.5",
|
2020-02-05 03:27:46 +08:00
|
|
|
"safe-buffer": "^5.1.1",
|
2021-08-05 01:41:37 +08:00
|
|
|
"vfile-message": "^2.0.2",
|
2021-11-04 05:09:31 +08:00
|
|
|
"tar": "^6.1.9",
|
|
|
|
"path-parse": "^1.0.7",
|
2022-09-30 01:05:14 +08:00
|
|
|
"vm2": "^3.9.11",
|
2022-02-16 04:40:53 +08:00
|
|
|
"follow-redirects": "^1.14.8",
|
2022-01-26 01:52:17 +08:00
|
|
|
"node-fetch": "^2.6.7",
|
2022-03-22 07:18:32 +08:00
|
|
|
"nanoid": "^3.1.31",
|
2022-07-19 05:37:54 +08:00
|
|
|
"minimist": "npm:minimist-lite@2.2.1",
|
2022-08-11 05:15:52 +08:00
|
|
|
"glob-parent": "^6.0.1",
|
2022-12-08 04:57:08 +08:00
|
|
|
"@types/node": "^16.0.0",
|
|
|
|
"qs": "^6.7.3"
|
2019-07-12 06:12:52 +08:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-09-10 06:15:39 +08:00
|
|
|
"@coder/logger": "^3.0.0",
|
2022-11-10 05:03:07 +08:00
|
|
|
"argon2": "0.30.2",
|
2021-02-13 06:06:41 +08:00
|
|
|
"compression": "^1.7.4",
|
2020-10-21 07:05:58 +08:00
|
|
|
"cookie-parser": "^1.4.5",
|
2020-05-10 13:35:42 +08:00
|
|
|
"env-paths": "^2.2.0",
|
2022-03-02 02:24:06 +08:00
|
|
|
"express": "5.0.0-alpha.8",
|
2020-03-24 07:02:31 +08:00
|
|
|
"http-proxy": "^1.18.0",
|
2019-07-12 06:12:52 +08:00
|
|
|
"httpolyglot": "^0.1.2",
|
2021-03-19 05:30:10 +08:00
|
|
|
"js-yaml": "^4.0.0",
|
2020-04-27 20:41:52 +08:00
|
|
|
"limiter": "^1.1.5",
|
2019-07-12 06:12:52 +08:00
|
|
|
"pem": "^1.14.2",
|
2021-07-15 19:02:15 +08:00
|
|
|
"proxy-agent": "^5.0.0",
|
2022-06-30 00:25:52 +08:00
|
|
|
"qs": "6.11.0",
|
2021-11-06 03:04:10 +08:00
|
|
|
"rotating-file-stream": "^3.0.0",
|
2020-08-27 01:59:41 +08:00
|
|
|
"safe-buffer": "^5.1.1",
|
2019-08-10 07:56:37 +08:00
|
|
|
"safe-compare": "^1.1.4",
|
2020-02-15 05:57:51 +08:00
|
|
|
"semver": "^7.1.3",
|
2021-10-30 03:32:49 +08:00
|
|
|
"split2": "^4.0.0",
|
2021-07-29 03:59:03 +08:00
|
|
|
"ws": "^8.0.0",
|
2022-08-23 05:07:57 +08:00
|
|
|
"xdg-basedir": "^4.0.0"
|
2020-04-30 19:52:54 +08:00
|
|
|
},
|
|
|
|
"bin": {
|
|
|
|
"code-server": "out/node/entry.js"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"vscode",
|
|
|
|
"development",
|
|
|
|
"ide",
|
|
|
|
"coder",
|
|
|
|
"vscode-remote",
|
2022-12-07 04:28:27 +08:00
|
|
|
"browser-ide",
|
|
|
|
"remote-development"
|
2020-05-15 09:37:58 +08:00
|
|
|
],
|
|
|
|
"engines": {
|
2022-05-05 05:58:49 +08:00
|
|
|
"node": "16"
|
2021-01-22 07:39:04 +08:00
|
|
|
},
|
|
|
|
"jest": {
|
|
|
|
"transform": {
|
|
|
|
"^.+\\.ts$": "<rootDir>/test/node_modules/ts-jest"
|
|
|
|
},
|
|
|
|
"testEnvironment": "node",
|
|
|
|
"testPathIgnorePatterns": [
|
2021-03-17 05:35:43 +08:00
|
|
|
"/node_modules/",
|
|
|
|
"/lib/",
|
2021-03-17 05:42:51 +08:00
|
|
|
"/out/",
|
2021-03-10 07:35:25 +08:00
|
|
|
"test/e2e"
|
2021-01-22 07:39:04 +08:00
|
|
|
],
|
|
|
|
"collectCoverage": true,
|
|
|
|
"collectCoverageFrom": [
|
|
|
|
"<rootDir>/src/**/*.ts"
|
|
|
|
],
|
|
|
|
"coverageDirectory": "<rootDir>/coverage",
|
|
|
|
"coverageReporters": [
|
|
|
|
"json",
|
2021-01-26 01:34:51 +08:00
|
|
|
"json-summary",
|
2021-04-23 06:03:15 +08:00
|
|
|
"text",
|
|
|
|
"clover"
|
2021-01-22 07:39:04 +08:00
|
|
|
],
|
|
|
|
"coveragePathIgnorePatterns": [
|
2021-05-06 07:38:54 +08:00
|
|
|
"/out"
|
2021-01-26 01:34:51 +08:00
|
|
|
],
|
|
|
|
"coverageThreshold": {
|
|
|
|
"global": {
|
2021-07-22 02:15:17 +08:00
|
|
|
"lines": 60
|
2021-01-26 01:34:51 +08:00
|
|
|
}
|
2021-02-11 00:32:17 +08:00
|
|
|
},
|
2021-02-02 06:26:22 +08:00
|
|
|
"modulePathIgnorePatterns": [
|
|
|
|
"<rootDir>/release-packages",
|
|
|
|
"<rootDir>/release",
|
2021-02-03 04:58:51 +08:00
|
|
|
"<rootDir>/release-standalone",
|
|
|
|
"<rootDir>/release-npm-package",
|
|
|
|
"<rootDir>/release-gcp",
|
2021-12-18 03:58:46 +08:00
|
|
|
"<rootDir>/release-images",
|
2022-03-15 10:37:29 +08:00
|
|
|
"<rootDir>/lib"
|
2021-02-12 06:02:13 +08:00
|
|
|
],
|
|
|
|
"moduleNameMapper": {
|
2021-03-10 07:35:25 +08:00
|
|
|
"^.+\\.(css|less)$": "<rootDir>/test/utils/cssStub.ts"
|
2021-12-18 03:06:52 +08:00
|
|
|
},
|
|
|
|
"globalSetup": "<rootDir>/test/utils/globalUnitSetup.ts"
|
2020-05-15 09:37:58 +08:00
|
|
|
}
|
2019-01-08 08:46:19 +08:00
|
|
|
}
|