-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 998 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
{
"name": "gera-lang",
"version": "0.1.0",
"icon": "logo.png",
"engines": {
"vscode": ">=0.9.0-pre.1"
},
"publisher": "TypeSafeSchwalbe",
"contributes": {
"languages": [
{
"id": "gera",
"aliases": ["Gera Source File"],
"extensions": [".gera"],
"configuration": "./gera-config.json"
},
{
"id": "gem",
"aliases": ["Gera External Mappings File"],
"extensions": [".gem"],
"configuration": "./gem-config.json"
}
],
"grammars": [
{
"language": "gera",
"scopeName": "source.gera",
"path": "./syntaxes/gera.tmlanguage"
},
{
"language": "gem",
"scopeName": "source.gem",
"path": "./syntaxes/gem.tmlanguage"
}
]
}
}