-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.4 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
53
54
55
56
57
58
{
"name": "mads",
"displayName": "MADS",
"description": "6502/65816 Assembly language, MADS syntax highlighting",
"version": "0.0.8",
"icon": "images/icon.png",
"galleryBanner": {
"color": "#2d5e91",
"theme": "dark"
},
"publisher": "mirao",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/mirao/mads/issues"
},
"homepage": "https://github.com/mirao/mads/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/mirao/mads.git"
},
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"mads",
"6502",
"65816",
"atari",
"commodore"
],
"contributes": {
"languages": [
{
"id": "mads",
"aliases": [
"Mad Assembler"
],
"extensions": [
".asm",
".mac",
".hea",
".a65"
],
"configuration": "./mads.configuration.jsonc"
}
],
"grammars": [
{
"language": "mads",
"scopeName": "source.asm.6502_65816.mads",
"path": "./syntaxes/mads.tmLanguage"
}
]
}
}