-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
51 lines (51 loc) · 1.18 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": "vex",
"displayName": "VEX",
"description": "Houdini VEX Support for VSCode",
"version": "0.6.0",
"publisher": "melmass",
"engines": {
"vscode": "^1.12.0"
},
"icon": "images/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/melMass/vscode-vex.git"
},
"galleryBanner": {
"color": "#FF8C08",
"theme": "dark"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "vex",
"aliases": [
"VEX",
"vex"
],
"extensions": [
".vfl"
],
"configuration": "./language-configuration.json"
}
],
"snippets": [
{
"language": "vex",
"path": "./snippets/snippets.json"
}
],
"grammars": [
{
"language": "vex",
"scopeName": "source.vex",
"path": "./syntaxes/VEX.tmLanguage"
}
]
},
"license": "MIT"
}