-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
148 lines (148 loc) · 3.59 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "x16-kickass",
"displayName": "x16-KickAss",
"description": "Commander X16 Kick Assembler VSCode Extension",
"version": "1.1.0",
"publisher": "Vrokin",
"license": "MIT",
"author": {
"name": "Niko Vanraes",
"email": "niko.vanraes@gmail.com"
},
"repository": {
"url": "https://github.com/Vrokin/x16-KickAss"
},
"icon": "images/icon.png",
"galleryBanner": {
"color": "#0000AA",
"theme": "dark"
},
"engines": {
"vscode": "^1.49.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:kickassembler",
"onCommand:x16-kickass.build",
"onCommand:x16-kickass.run"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "x16-kickass.build",
"title": "X16 Build"
},
{
"command": "x16-kickass.run",
"title": "X16 Build and Run"
}
],
"languages": [
{
"id": "kickassembler",
"aliases": [
"kickassembler",
"kickass"
],
"extensions": [
".asm",
".inc",
".s",
".a",
".lib"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "kickassembler",
"scopeName": "source.assembly.kickassembler",
"path": "./syntaxes/kickassembler.tmLanguage"
}
],
"configuration": {
"title": "X16 Kick Assembler Configuration",
"properties": {
"x16-kickAss.kickAssJar": {
"type": "string",
"default": "/Applications/KickAssembler/KickAss.jar",
"description": "Full path to KickAss.jar"
},
"x16-kickAss.java": {
"type": "string",
"default": "java",
"description": "Java VM"
},
"x16-kickAss.x16emulator": {
"type": "string",
"default": "",
"description": "Full path to Commander X16 emulator"
},
"x16-kickAss.x16emulatorKeymap": {
"type": "string",
"default": "",
"description": "Commander X16 : switch to a specific keyboard layout. Optional: leave blank for default."
},
"x16-kickAss.x16emulatorSDCard": {
"type": "string",
"default": "",
"description": "Commander X16 : lets you specify and SD Card image (partition table + FAT32) that will be mounted at emulator start (Optional)."
},
"x16-kickAss.x16emulatorScale": {
"type": "string",
"default": "2",
"description": "Commander X16 : scales video output to an integer multiple of 640x480."
},
"x16-kickAss.x16emulatorDebug": {
"type": "boolean",
"default": "true",
"description": "Commander X16 : ennables the debbuger (enable with [F12] in emulator, disable with [F5])."
},
"x16-kickAss.x16emulatorRunPrg": {
"type": "boolean",
"default": "true",
"description": "Commander X16 : execute build program after emulator start."
},
"x16-kickAss.x16emulatorWarp": {
"type": "boolean",
"default": "false",
"description": "Commander X16 : causes the emulator to run as fast as possible, possibly faster than a real X16."
}
}
},
"keybindings": [
{
"command": "x16-kickass.build",
"key": "shift+ctrl+b",
"mac": "shift+cmd+b",
"when": "editorLangId == kickassembler"
},
{
"command": "x16-kickass.run",
"key": "shift+ctrl+r",
"mac": "shift+cmd+r",
"when": "editorLangId == kickassembler"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.49.0",
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.27",
"eslint": "^7.9.0",
"glob": "^7.1.6",
"mocha": "^8.1.3",
"typescript": "^4.0.2",
"vscode-test": "^1.4.0"
}
}