forked from microsoft/vscode-languageserver-node
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.96 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
{
"name": "@codeeditorland/lsp",
"description": "VSCode Language Server Protocol Implementation",
"scripts": {
"all": "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",
"clean": "node ./build/bin/all.js run clean",
"compile": "tsc -b tsconfig.json",
"compile:client": "tsc -b ./client/tsconfig.json",
"compile:client-node-tests": "tsc -b ./client-node-tests/tsconfig.json",
"compile:jsonrpc": "tsc -b ./jsonrpc/tsconfig.json",
"compile:protocol": "tsc -b ./protocol/tsconfig.json",
"compile:server": "tsc -b ./server/tsconfig.json",
"compile:testbed": "tsc -b ./testbed/tsconfig.json",
"compile:textDocument": "tsc -b ./textDocument/tsconfig.json",
"compile:tsconfig-gen": "tsc -b ./tsconfig-gen/tsconfig.json",
"compile:types": "tsc -b ./types/tsconfig.json",
"generate:metaModel": "cd protocol && npm run generate:metaModel && cd ..",
"generate:metaModelSchema": "cd protocol && npm run generate:metaModelSchema && cd ..",
"rebuildAll": "npm run clean && npm run symlink && npm run compile && npm run test",
"symlink": "node ./build/bin/symlink.js",
"symlink:testbed": "node ./build/bin/symlink-testbed.js",
"symlink:tests": "node ./build/bin/symlink-tests.js",
"tsconfig-gen": "cd tsconfig-gen && npm run compile && cd .. && node ./tsconfig-gen/lib/main.js -f .tsconfigrc.js",
"update:lock": "git clean -xfd . && npm install && cd ./client && npm run updateVSCodeVersion && cd ..",
"validate:version": "node ./tools/lib/validate-main.js",
"watch:testbed": "tsc -b ./testbed/tsconfig.json -w",
"watch:tsconfig-gen": "tsc -b ./tsconfig-gen/tsconfig.json -w"
},
"dependencies": {},
"devDependencies": {
"@types/assert": "1.5.11",
"@types/node": "22.10.7",
"assert": "2.1.0",
"http-server": "14.1.1",
"rimraf": "6.0.1",
"shelljs": "0.8.5",
"shx": "0.3.4",
"source-map-support": "0.5.21",
"ts-json-schema-generator": "2.3.0"
}
}