-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 967 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
38
39
{
"name": "hvm-lang",
"displayName": "HVM Lang",
"description": "Syntax highlighting for the HVM language",
"version": "1.1.0",
"publisher": "Danfs",
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "https://github.com/Danfs64/HVM-Lang.git"
},
"bugs": {
"url": "https://github.com/Danfs64/HVM-Lang/issues"
},
"engines": {
"vscode": "^1.66.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"HVM",
"Kind",
"Kindelia"
],
"contributes": {
"languages": [{
"id": "hvm",
"aliases": ["HVM", "hvm"],
"extensions": [".hvm"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "hvm",
"scopeName": "source.hvm",
"path": "./syntaxes/hvm.tmLanguage.json"
}]
}
}