-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 999 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
{
"name": "hla",
"displayName": "HLA",
"description": "Language support for Randall Hyde's High Level Assembly.",
"icon": "icon.png",
"version": "1.0.0",
"author": {
"name": "GreenXenith"
},
"publisher": "GreenXenith",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/GreenXenith/vscode-hla.git"
},
"bugs": {
"url": "https://github.com/GreenXenith/vscode-hla/issues"
},
"engines": {
"vscode": "^1.39.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [{
"id": "hla",
"aliases": ["High Level Assembly", "hla"],
"extensions": [".hla", ".hhf"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "hla",
"scopeName": "source.hla",
"path": "./syntaxes/hla.tmLanguage.json"
}]
}
}