-
Notifications
You must be signed in to change notification settings - Fork 385
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.11 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.11 KB
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
{
"name": "vscode-languageclient",
"description": "VSCode Language client implementation",
"version": "10.0.0-next.21",
"author": "Microsoft Corporation",
"license": "MIT",
"engines": {
"vscode": "^1.91.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-languageserver-node.git",
"directory": "client"
},
"bugs": {
"url": "https://github.com/Microsoft/vscode-languageserver-node/issues"
},
"enabledApiProposals": ["codeActionAI"],
"exports": {
".": {
"types": "./lib/common/api.d.ts",
"default": "./lib/common/api.js"
},
"./node": {
"types": "./lib/node/main.d.ts",
"node": "./lib/node/main.js"
},
"./browser": {
"types": "./lib/browser/main.d.ts",
"browser": "./lib/browser/main.js"
},
"./$test/common/*": {
"types": "./lib/common/*.d.ts",
"node": "./lib/common/*.js"
}
},
"devDependencies": {
"@types/minimatch": "^5.1.2",
"@types/semver": "^7.7.0",
"@types/vscode": "1.106.0",
"shx": "^0.4.0"
},
"dependencies": {
"minimatch": "^10.1.2",
"semver": "^7.7.1",
"vscode-languageserver-protocol": "3.17.6-next.17"
},
"scripts": {
"prepublishOnly": "echo \"⛔ Can only publish from a secure pipeline ⛔\" && node ../build/npm/fail",
"prepack": "npm run all:publish",
"compile": "tsc -b ./tsconfig.json && shx cp src/node/terminateProcess.sh lib/node/terminateProcess.sh",
"compile:clean": "git clean -xfd . && npm install && npm run clean && npm run compile",
"watch": "tsc -b ./tsconfig.watch.json -w",
"lint": "eslint src",
"test": "cd ../client-node-tests && npm test && cd ../client",
"clean": "rimraf lib",
"all": "npm run clean && npm run compile && npm run lint && npm test",
"compile:publish": "tsc -b ./tsconfig.publish.json && shx cp src/node/terminateProcess.sh lib/node/terminateProcess.sh",
"all:publish": "git clean -xfd . && npm install && npm run updateVSCodeVersion && npm run compile:publish && npm run lint && cd ../client-node-tests && npm run all:publish && cd ..",
"preversion": "npm test",
"updateVSCodeVersion": "node ./bin/updateVSCode.js",
"update:vscode-version": "node ./bin/updateVSCode.js"
}
}