2019-01-08 03:46:19 +03:00
|
|
|
{
|
2020-02-04 22:27:46 +03:00
|
|
|
"name": "code-server",
|
2019-07-03 03:10:17 +03:00
|
|
|
"license": "MIT",
|
2022-11-09 01:45:01 +03:00
|
|
|
"version": "0.0.0",
|
2020-04-30 14:52:54 +03:00
|
|
|
"description": "Run VS Code on a remote server.",
|
2022-02-01 19:45:19 +03:00
|
|
|
"homepage": "https://github.com/coder/code-server",
|
2020-04-30 14:52:54 +03:00
|
|
|
"bugs": {
|
2022-02-01 19:45:19 +03:00
|
|
|
"url": "https://github.com/coder/code-server/issues"
|
2020-04-30 14:52:54 +03:00
|
|
|
},
|
2022-02-01 19:45:19 +03:00
|
|
|
"repository": "https://github.com/coder/code-server",
|
2019-01-08 03:46:19 +03:00
|
|
|
"scripts": {
|
2020-04-30 14:52:54 +03:00
|
|
|
"clean": "./ci/build/clean.sh",
|
|
|
|
"build": "./ci/build/build-code-server.sh",
|
|
|
|
"build:vscode": "./ci/build/build-vscode.sh",
|
2022-10-14 01:16:55 +03:00
|
|
|
"doctoc": "./ci/dev/doctoc.sh",
|
2020-04-30 14:52:54 +03:00
|
|
|
"release": "./ci/build/build-release.sh",
|
2020-05-27 23:39:17 +03:00
|
|
|
"release:standalone": "./ci/build/build-standalone-release.sh",
|
2021-03-23 02:19:01 +03:00
|
|
|
"release:prep": "./ci/build/release-prep.sh",
|
2022-02-16 00:51:42 +03:00
|
|
|
"test:e2e": "VSCODE_IPC_HOOK_CLI= ./ci/dev/test-e2e.sh",
|
2022-08-09 21:24:37 +03:00
|
|
|
"test:e2e:proxy": "USE_PROXY=1 ./ci/dev/test-e2e.sh",
|
2021-10-28 23:27:17 +03:00
|
|
|
"test:unit": "./ci/dev/test-unit.sh --forceExit --detectOpenHandles",
|
2022-06-24 19:33:38 +03:00
|
|
|
"test:integration": "./ci/dev/test-integration.sh",
|
2022-09-22 22:33:32 +03:00
|
|
|
"test:native": "./ci/dev/test-native.sh",
|
2021-07-13 20:22:00 +03:00
|
|
|
"test:scripts": "./ci/dev/test-scripts.sh",
|
2020-05-08 07:34:20 +03:00
|
|
|
"package": "./ci/build/build-packages.sh",
|
2022-10-14 01:16:55 +03:00
|
|
|
"prettier": "prettier --write --loglevel=warn --cache .",
|
2020-12-18 00:16:04 +03:00
|
|
|
"postinstall": "./ci/dev/postinstall.sh",
|
2022-01-22 02:28:56 +03:00
|
|
|
"publish:npm": "./ci/steps/publish-npm.sh",
|
2022-04-15 03:02:03 +03:00
|
|
|
"publish:docker": "./ci/steps/docker-buildx-push.sh",
|
2021-04-06 02:32:01 +03:00
|
|
|
"_audit": "./ci/dev/audit.sh",
|
2022-10-14 01:16:55 +03:00
|
|
|
"fmt": "yarn prettier && ./ci/dev/doctoc.sh",
|
2022-09-22 22:33:32 +03: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-15 23:47:22 +03:00
|
|
|
"test": "echo 'Run yarn test:unit or yarn test:e2e' && exit 1",
|
2020-04-30 14:52:54 +03:00
|
|
|
"ci": "./ci/dev/ci.sh",
|
2021-11-10 08:28:31 +03: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-28 20:04:35 +03:00
|
|
|
"icons": "./ci/dev/gen_icons.sh"
|
2019-01-08 03:46:19 +03:00
|
|
|
},
|
2020-04-30 14:52:54 +03:00
|
|
|
"main": "out/node/entry.js",
|
2019-01-08 03:46:19 +03:00
|
|
|
"devDependencies": {
|
2023-09-22 03:13:34 +03:00
|
|
|
"@schemastore/package": "^0.0.10",
|
|
|
|
"@types/compression": "^1.7.3",
|
|
|
|
"@types/cookie-parser": "^1.4.4",
|
|
|
|
"@types/express": "^4.17.17",
|
|
|
|
"@types/http-proxy": "1.17.7",
|
|
|
|
"@types/js-yaml": "^4.0.6",
|
2023-09-21 02:33:28 +03:00
|
|
|
"@types/node": "^18.0.0",
|
2023-09-22 03:13:34 +03:00
|
|
|
"@types/pem": "^1.14.1",
|
2020-12-18 18:38:00 +03:00
|
|
|
"@types/proxy-from-env": "^1.0.1",
|
2019-07-12 01:12:52 +03:00
|
|
|
"@types/safe-compare": "^1.1.0",
|
2023-09-22 03:13:34 +03:00
|
|
|
"@types/semver": "^7.5.2",
|
|
|
|
"@types/trusted-types": "^2.0.4",
|
|
|
|
"@types/ws": "^8.5.5",
|
2024-06-03 21:44:33 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "^7.0.0",
|
2023-09-22 03:13:34 +03:00
|
|
|
"@typescript-eslint/parser": "^6.7.2",
|
|
|
|
"audit-ci": "^6.6.1",
|
|
|
|
"doctoc": "^2.2.1",
|
|
|
|
"eslint": "^8.49.0",
|
|
|
|
"eslint-config-prettier": "^9.0.0",
|
|
|
|
"eslint-import-resolver-typescript": "^3.6.0",
|
|
|
|
"eslint-plugin-import": "^2.28.1",
|
|
|
|
"eslint-plugin-prettier": "^5.0.0",
|
|
|
|
"prettier": "^3.0.3",
|
2024-03-07 22:18:02 +03:00
|
|
|
"prettier-plugin-sh": "^0.14.0",
|
2023-09-22 03:13:34 +03:00
|
|
|
"ts-node": "^10.9.1",
|
|
|
|
"typescript": "^5.2.2"
|
2019-07-12 01:12:52 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-09-22 03:13:34 +03:00
|
|
|
"@coder/logger": "^3.0.1",
|
|
|
|
"argon2": "^0.31.1",
|
2021-02-13 01:06:41 +03:00
|
|
|
"compression": "^1.7.4",
|
2023-09-22 03:13:34 +03:00
|
|
|
"cookie-parser": "^1.4.6",
|
|
|
|
"env-paths": "^2.2.1",
|
2024-04-16 03:32:52 +03:00
|
|
|
"express": "5.0.0-beta.3",
|
2023-09-22 03:13:34 +03:00
|
|
|
"http-proxy": "^1.18.1",
|
2019-07-12 01:12:52 +03:00
|
|
|
"httpolyglot": "^0.1.2",
|
2023-09-22 03:13:34 +03:00
|
|
|
"i18next": "^23.5.1",
|
|
|
|
"js-yaml": "^4.1.0",
|
2023-02-06 22:12:57 +03:00
|
|
|
"limiter": "^2.1.0",
|
2023-09-22 03:13:34 +03:00
|
|
|
"pem": "^1.14.8",
|
|
|
|
"proxy-agent": "^6.3.1",
|
2024-04-16 03:32:52 +03:00
|
|
|
"qs": "6.12.1",
|
2023-09-22 03:13:34 +03:00
|
|
|
"rotating-file-stream": "^3.1.1",
|
|
|
|
"safe-buffer": "^5.2.1",
|
2019-08-10 02:56:37 +03:00
|
|
|
"safe-compare": "^1.1.4",
|
2023-09-22 03:13:34 +03:00
|
|
|
"semver": "^7.5.4",
|
|
|
|
"ws": "^8.14.2",
|
2022-08-23 00:07:57 +03:00
|
|
|
"xdg-basedir": "^4.0.0"
|
2020-04-30 14:52:54 +03:00
|
|
|
},
|
2023-09-22 03:13:34 +03:00
|
|
|
"resolutions": {
|
2024-04-16 03:32:52 +03:00
|
|
|
"@types/node": "^18.0.0"
|
2023-09-22 03:13:34 +03:00
|
|
|
},
|
2020-04-30 14:52:54 +03:00
|
|
|
"bin": {
|
|
|
|
"code-server": "out/node/entry.js"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"vscode",
|
|
|
|
"development",
|
|
|
|
"ide",
|
|
|
|
"coder",
|
|
|
|
"vscode-remote",
|
2022-12-06 23:28:27 +03:00
|
|
|
"browser-ide",
|
|
|
|
"remote-development"
|
2020-05-15 04:37:58 +03:00
|
|
|
],
|
|
|
|
"engines": {
|
2023-09-21 02:33:28 +03:00
|
|
|
"node": "18"
|
2021-01-22 02:39:04 +03:00
|
|
|
},
|
|
|
|
"jest": {
|
|
|
|
"transform": {
|
|
|
|
"^.+\\.ts$": "<rootDir>/test/node_modules/ts-jest"
|
|
|
|
},
|
|
|
|
"testEnvironment": "node",
|
|
|
|
"testPathIgnorePatterns": [
|
2021-03-17 00:35:43 +03:00
|
|
|
"/node_modules/",
|
|
|
|
"/lib/",
|
2021-03-17 00:42:51 +03:00
|
|
|
"/out/",
|
2021-03-10 02:35:25 +03:00
|
|
|
"test/e2e"
|
2021-01-22 02:39:04 +03:00
|
|
|
],
|
|
|
|
"collectCoverage": true,
|
|
|
|
"collectCoverageFrom": [
|
|
|
|
"<rootDir>/src/**/*.ts"
|
|
|
|
],
|
|
|
|
"coverageDirectory": "<rootDir>/coverage",
|
|
|
|
"coverageReporters": [
|
|
|
|
"json",
|
2021-01-25 20:34:51 +03:00
|
|
|
"json-summary",
|
2021-04-23 01:03:15 +03:00
|
|
|
"text",
|
|
|
|
"clover"
|
2021-01-22 02:39:04 +03:00
|
|
|
],
|
|
|
|
"coveragePathIgnorePatterns": [
|
2021-05-06 02:38:54 +03:00
|
|
|
"/out"
|
2021-01-25 20:34:51 +03:00
|
|
|
],
|
|
|
|
"coverageThreshold": {
|
|
|
|
"global": {
|
2021-07-21 21:15:17 +03:00
|
|
|
"lines": 60
|
2021-01-25 20:34:51 +03:00
|
|
|
}
|
2021-02-10 19:32:17 +03:00
|
|
|
},
|
2021-02-02 01:26:22 +03:00
|
|
|
"modulePathIgnorePatterns": [
|
|
|
|
"<rootDir>/release-packages",
|
|
|
|
"<rootDir>/release",
|
2021-02-02 23:58:51 +03:00
|
|
|
"<rootDir>/release-standalone",
|
|
|
|
"<rootDir>/release-npm-package",
|
|
|
|
"<rootDir>/release-gcp",
|
2021-12-17 22:58:46 +03:00
|
|
|
"<rootDir>/release-images",
|
2022-03-15 05:37:29 +03:00
|
|
|
"<rootDir>/lib"
|
2021-02-12 01:02:13 +03:00
|
|
|
],
|
|
|
|
"moduleNameMapper": {
|
2021-03-10 02:35:25 +03:00
|
|
|
"^.+\\.(css|less)$": "<rootDir>/test/utils/cssStub.ts"
|
2021-12-17 22:06:52 +03:00
|
|
|
},
|
|
|
|
"globalSetup": "<rootDir>/test/utils/globalUnitSetup.ts"
|
2020-05-15 04:37:58 +03:00
|
|
|
}
|
2019-01-08 03:46:19 +03:00
|
|
|
}
|