-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
52 lines (52 loc) · 1.26 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
44
45
46
47
48
49
50
51
52
{
"name": "z80-asm",
"displayName": "Z80 Assembly",
"description": "Z80 Assembly support for Visual Studio Code",
"repository": {
"type": "git",
"url": "https://github.com/Imanolea/z80asm-vscode"
},
"version": "0.0.6",
"icon": "logo.png",
"author": "Imanol Barriuso (Imanolea)",
"publisher": "Imanolea",
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"assembly",
"z80",
"sinclair",
"ZX spectrum",
"game boy"
],
"license": "SEE LICENSE IN LICENSE",
"contributes": {
"languages": [
{
"id": "z80-asm",
"aliases": [
"Z80 Assembly"
],
"extensions": [
".asm",
".s",
".z80",
".$C",
".mac"
],
"configuration": "./z80-asm.configuration.json"
}
],
"grammars": [
{
"language": "z80-asm",
"scopeName": "source.asm.z80",
"path": "./syntaxes/z80-asm.tmLanguage"
}
]
}
}