-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1023 Bytes
/
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
{
"name": "vtol-vr-confignode",
"displayName": "VTOL VR ConfigNode",
"description": "Provides language support for VTOL VR's ConfigNode structure, including .vtc, .vtm, and .vts files.",
"preview": true,
"version": "0.0.1",
"publisher": "garageagle",
"repository": {
"url": "https://github.com/garageagleMC/vtol-vr-confignode"
},
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Programming Languages",
"Snippets"
],
"contributes": {
"languages": [{
"id": "vts",
"aliases": ["VTOL VR ConfigNode", "vts"],
"extensions": [".vtc",".vtm",".vts"],
"configuration": "./language-configuration.json",
"icon": {
"dark": "icons/icon_dark.jpg",
"light": "icons/icon_dark.jpg"
}
}],
"grammars": [{
"language": "vts",
"scopeName": "source.vts",
"path": "./syntaxes/vts.tmLanguage.json"
}],
"snippets": [
{
"language": "vts",
"path": "snippets/snippets.json"
}
]
}
}