-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.23 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
{
"name": "vscode-tcl",
"displayName": "vscode-tcl",
"description": "Language support for TCL",
"version": "0.0.1",
"engines": {
"vscode": "^1.25.0"
},
"categories": [
"Language Packs"
],
"activationEvents": [
"onLanguage:tcl"
],
"main": "./client/out/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "Client configuration",
"properties": {
"tclLanguageServer.maxNumberOfProblems": {
"scope": "resource",
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the server."
},
"tclLanguageServer.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the language server."
}
}
}
},
"scripts": {
"vscode:prepublish": "cd client && npm run update-vscode && cd .. && npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"postinstall": "cd client && npm install && cd ../server && npm install && cd .."
},
"devDependencies": {
"@types/mocha": "^5.2.0",
"@types/node": "^8.10.44",
"tslint": "^5.11.0",
"typescript": "^3.1.3"
}
}