-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.12 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "langd-vscode",
"displayName": "langd-vscode",
"description": "",
"version": "0.0.1",
"publisher": "object88",
"engines": {
"vscode": "^1.21.0"
},
"categories": [
"Languages"
],
"activationEvents": [
"onLanguage:go",
"onCommand:extension.sayHello"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.sayHello",
"title": "Hello World"
}
],
"configuration": {
"type": "object",
"title": "langd",
"properties": {
"langd.server.grpcPort": {
"scope": "window",
"type": "number",
"default": 9877,
"description": "The port to be used for gRPC calls to the Langd service."
},
"langd.server.jsonPort": {
"scope": "window",
"type": "number",
"default": 9876,
"description": "The port to be used for JSON RPC calls to the Langd service."
},
"langd.server.path": {
"scope": "window",
"type": "string",
"default": "",
"description": "Path to the Langd binary."
},
"langd.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VSCode and the language server."
}
}
},
"languages": [
{
"id": "go",
"aliases": [
"Go"
]
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"dependencies": {
"@types/node": "^6.0.105",
"vscode": "^1.1.14",
"vscode-jsonrpc": "^3.6.1",
"vscode-languageclient": "^4.1.3",
"vscode-languageserver-protocol": "^3.7.1",
"vscode-languageserver-types": "^3.7.1"
},
"devDependencies": {
"@types/mocha": "^2.2.48",
"mocha": "^2.3.3",
"typescript": "^2.6.2"
}
}