forked from TartaricAcid/VSCodeMinecraftLangPlugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 652 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 652 Bytes
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
{
"name": "minecraft-lang",
"displayName": "minecraft-lang",
"description": "Add a syntax hightlight support to minecraft lang file",
"version": "0.0.1",
"publisher": "minecrft-lang",
"engines": {
"vscode": "^1.25.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [{
"id": "lang",
"aliases": ["Minecraft Lang", "lang"],
"extensions": [".lang"]
}],
"grammars": [{
"language": "lang",
"scopeName": "source.lang",
"path": "./syntaxes/lang.tmLanguage.json"
}]
}
}