-
Notifications
You must be signed in to change notification settings - Fork 325
/
package.json
67 lines (67 loc) · 2.79 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"private": true,
"name": "vscode-lsp",
"description": "VSCode Language Server Protocol Implementation",
"version": "1.0.0",
"author": "Microsoft Corporation",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-languageserver-node.git"
},
"bugs": {
"url": "https://github.com/Microsoft/vscode-languageserver-node/issues"
},
"devDependencies": {
"@types/assert": "^1.5.8",
"@types/mocha": "^10.0.3",
"@types/node": "20.9.0",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"assert": "^2.1.0",
"eslint": "^8.52.0",
"http-server": "^14.1.1",
"mocha": "^10.2.0",
"playwright": "^1.39.0",
"rimraf": "^5.0.5",
"shelljs": "^0.8.5",
"shx": "^0.3.4",
"source-map-support": "^0.5.21",
"ts-json-schema-generator": "^1.4.0",
"typescript": "5.4.5",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"node-polyfill-webpack-plugin": "^2.0.1"
},
"scripts": {
"postinstall": "node ./build/bin/all.js install && cd testbed && npm install && cd .. && npm run symlink:testbed && npx playwright install",
"test": "node ./build/bin/all.js run test",
"clean": "node ./build/bin/all.js run clean",
"symlink": "node ./build/bin/symlink.js",
"symlink:tests": "node ./build/bin/symlink-tests.js",
"symlink:testbed": "node ./build/bin/symlink-testbed.js",
"compile": "tsc -b tsconfig.json",
"compile:types": "tsc -b ./types/tsconfig.json",
"compile:textDocument": "tsc -b ./textDocument/tsconfig.json",
"compile:jsonrpc": "tsc -b ./jsonrpc/tsconfig.json",
"compile:protocol": "tsc -b ./protocol/tsconfig.json",
"compile:server": "tsc -b ./server/tsconfig.json",
"compile:client": "tsc -b ./client/tsconfig.json",
"compile:client-node-tests": "tsc -b ./client-node-tests/tsconfig.json",
"compile:testbed": "tsc -b ./testbed/tsconfig.json",
"compile:tsconfig-gen": "tsc -b ./tsconfig-gen/tsconfig.json",
"watch": "tsc -b tsconfig.watch.json -w",
"watch:testbed": "tsc -b ./testbed/tsconfig.json -w",
"watch:tsconfig-gen": "tsc -b ./tsconfig-gen/tsconfig.json -w",
"lint": "node ./build/bin/all.js run lint",
"all": "npm run symlink && npm run compile && npm run test",
"rebuildAll": "npm run clean && npm run symlink && npm run compile && npm run test",
"audit:all": "node ./build/bin/all.js audit",
"audit:all:fix": "node ./build/bin/all.js audit fix",
"generate:metaModel": "cd protocol && npm run generate:metaModel && cd ..",
"generate:metaModelSchema": "cd protocol && npm run generate:metaModelSchema && cd ..",
"validate:version": "node ./tools/lib/validate-main.js",
"update:lock": "git clean -xfd . && npm install && cd ./client && npm run updateVSCodeVersion && cd ..",
"tsconfig-gen": "cd tsconfig-gen && npm run compile && cd .. && node ./tsconfig-gen/lib/main.js -f .tsconfigrc.js"
}
}