-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.09 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
{
"name": "yagpdb-cc",
"displayName": "YAGPDB-CC",
"version": "1.1.3",
"publisher": "SpecialEliteSNP",
"description": "Syntax highlighting for YAGPDB Custom Commands",
"author": {
"name": "SpecialEliteSNP",
"url": "https://github.com/SpecialEliteSNP"
},
"categories": ["Programming Languages"],
"icon": "icon.png",
"galleryBanner": {
"color": "#EC7760",
"theme": "dark"
},
"engines": {
"vscode": "^1.53.0"
},
"repository": {
"type": "git",
"url": "https://github.com/SpecialEliteSNP/yagpdb-cc-ext"
},
"contributes": {
"languages": [{
"id": "yagpdbcc",
"aliases": ["YAGPDB CC", "yag", "yagpdb", "yagcc", "yagpdbcc", "YAGPDB Custom Commands"],
"extensions": [".yag", ".yagpdb", ".yagcc", ".yagpdbcc"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "yagpdbcc",
"scopeName": "source.yag",
"path": "./syntaxes/yagpdbcc.tmLanguage.json"
}]
}
}