-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.01 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
{
"name": "zenscript-vscodelanguage",
"displayName": "ZenScript for VSCode",
"description": "Language Support for the MineTweaker, CraftTweaker, and ModTweaker ZenScript language",
"version": "0.0.3",
"publisher": "Jandakast",
"engines": {
"vscode": "^1.22.0"
},
"categories": [
"Languages"
],
"contributes": {
"languages": [{
"id": "zenscript",
"aliases": ["ZenScript", "zenscript"],
"extensions": [".zs"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "zenscript",
"scopeName": "text.zenscript",
"path": "./syntaxes/zenscript-syntax.tmLanguage.json"
}],
"snippets": [
{
"language": "zenscript",
"path": "./snippets/crafttweaker.json"
},
{
"language": "zenscript",
"path": "./snippets/extras.json"
}]
}
}