-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.17 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
{
"name": "kdl",
"displayName": "KDL",
"description": "Language support for the KDL Document Language. This extension supports only KDL v2.0.0. Use `kdl-v1` for legacy KDL highlighting.",
"version": "2.0.1",
"license": "Apache-2.0",
"publisher": "kdl-org",
"repository": "https://github.com/kdl-org/vscode-kdl.git",
"scripts": {
"pack": "vsce package",
"publish": "vsce publish"
},
"engines": {
"vscode": "^1.52.0"
},
"categories": [
"Programming Languages"
],
"icon": "KDL_Logo_Only_128x128.png",
"contributes": {
"languages": [
{
"id": "kdl",
"aliases": [
"KDL",
"kdl"
],
"extensions": [
".kdl"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "kdl",
"scopeName": "source.kdl",
"path": "./syntaxes/kdl.tmLanguage.json"
}
]
},
"devDependencies": {
"vsce": "^1.99.0"
}
}