-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.97 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.97 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
65
{
"name": "language-client-example",
"description": "VSCode part of a language server",
"author": "Microsoft Corporation",
"license": "MIT",
"version": "0.0.1",
"publisher": "vscode",
"engines": {
"vscode": "^1.82.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:plaintext"
],
"main": "./out/src/extension",
"enableProposedApi": true,
"contributes": {
"configuration": {
"type": "object",
"title": "Example configuration",
"properties": {
"languageServerExample.maxNumberOfProblems": {
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the server."
},
"languageServerExample.trace.server": {
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "verbose",
"description": "Traces the communication between VSCode and the languageServerExample service."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^9.0.0",
"@types/mocha": "^10.0.2",
"@types/node": "^22.0.0",
"@types/vscode": "^1.82.0",
"@vscode/test-electron": "^2.3.4",
"glob": "^11.1.0",
"mocha": "^11.7.5",
"source-map-support": "^0.5.21",
"tmp-promise": "^3.0.3",
"typescript": "^5.2.2"
},
"dependencies": {
"vscode-languageclient": "^9.0.1",
"vscode-languageserver-protocol": "^3.17.5"
}
}