-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.16 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
36
37
38
39
40
41
42
43
{
"name": "lc-2200-language-support",
"displayName": "LC-2200 Language Support",
"description": "Adds syntax highlighting to assebly code written for the LC-2200 ISA.",
"version": "1.1.0",
"publisher": "tristen-allen",
"engines": {
"vscode": "^1.20.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "lc-2200",
"aliases": [
"LC-2200",
"lc-2200"
],
"extensions": [
".s"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "lc-2200",
"scopeName": "source.lc-2200",
"path": "./syntaxes/lc-2200.tmLanguage.json"
}
]
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/Spyboticsguy/lc-2200-vscode/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Spyboticsguy/lc-2200-vscode.git"
}
}