-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.06 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
{
"name": "ailight-z80-assembler",
"displayName": "AILight Z80 Assembler",
"description": "AILight Z80 Assembler support for Visual Studio Code",
"repository": {
"type": "git",
"url": "https://github.com/AILight/AILZ80ASM.VSCode"
},
"version": "0.0.3",
"icon": "logo.png",
"author": "M.Ishino (AILight)",
"publisher": "AILight",
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"assembler",
"z80",
"AILZ80ASM"
],
"homepage": "https://github.com/AILight/AILZ80ASM.VSCode",
"license": "MIT",
"contributes": {
"languages": [{
"id": "z80asm",
"aliases": ["z80 assembler", "z80asm"],
"extensions": [".asm",".z80", ".inc", ".lst"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "z80asm",
"scopeName": "source.z80",
"path": "./syntaxes/z80asm.tmLanguage.json"
}]
}
}