-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.16 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
{
"name": "ebitengine-kage",
"publisher": "sedyh",
"displayName": "ebitengine-kage",
"description": "Language for writing shaders on Ebitengine",
"version": "0.1.6",
"repository": {
"type": "git",
"url": "https://github.com/sedyh/ebitengine-kage-support.git"
},
"engines": {
"vscode": "^1.68.0"
},
"categories": [
"Programming Languages"
],
"license": "See LICENSE file",
"icon": "kage.png",
"contributes": {
"languages": [{
"id": "kage",
"aliases": ["Kage"],
"extensions": [".kage",".go.kage",".kage.go"],
"configuration": "./syntaxes/language-configuration.json",
"icon": {
"dark": "kage-file-dark-theme.png",
"light": "kage-file-light-theme.png"
}
}],
"grammars": [{
"language": "kage",
"scopeName": "source.kage",
"path": "./syntaxes/kage.tmLanguage.json"
}],
"snippets": [
{
"language": "kage",
"path": "./syntaxes/snippets.json"
}
]
}
}