-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.42 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
{
"name": "plank",
"displayName": "plank",
"description": "Support for plank language",
"version": "0.0.1",
"publisher": "jDomantas",
"engines": {
"vscode": "^1.15.0"
},
"categories": [
"Languages"
],
"contributes": {
"configuration": [ {
"title": "Plank",
"properties": {
"plank.languageServerPath": {
"type": ["string", "null"],
"default": "plank-server",
"description": "Path to plank language server executable",
"scope": "window"
}
}
} ],
"languages": [ {
"id": "plank",
"aliases": [ "Plank", "plank" ],
"extensions": [ "plk" ],
"configuration": "./language-configuration.json"
} ],
"grammars": [ {
"language": "plank",
"scopeName": "source.plank",
"path": "./syntaxes/plank.tmLanguage.json"
} ]
},
"main": "./out/src/extension",
"activationEvents": [
"onLanguage:plank"
],
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -w -p ./",
"update-vscode": "node ./node_modules/vscode/bin/install",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"dependencies": {
"vscode": "^1.1.5",
"vscode-languageclient": "^3.3.0"
}
}