-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
261 lines (261 loc) · 6.32 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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
{
"name": "alchemy65",
"displayName": "Alchemy65",
"description": "Adds support for cc65, ca65, and NES development.",
"author": {
"name": "Zachery Delafosse"
},
"license": "MIT",
"repository": {
"url": "https://github.com/AlchemicRaker/alchemy65/",
"type": "git"
},
"publisher": "alchemic-raker",
"version": "1.0.8",
"engines": {
"vscode": "^1.61.0"
},
"categories": [
"Debuggers"
],
"icon": "res/icon.png",
"keywords": [
"cc65",
"ca65",
"6502",
"nes",
"nintendo",
"debug",
"alchemy65",
"homebrew",
"mesen",
"assembly",
"c"
],
"activationEvents": [
"onDebugResolve:alchemy65",
"onCommand:alchemy65.helloWorld",
"onCommand:extension.alchemy65.getRomPath",
"onCommand:extension.alchemy65.getDbgPath",
"onCommand:extension.alchemy65.getMesenPath",
"onCommand:extension.alchemy65.getSourcePath"
],
"main": "./out/extension.js",
"contributes": {
"languages": [
{
"id": "ca65",
"aliases": [
"ca65 Assembler"
],
"extensions": [
".s",
".asm",
".inc"
],
"configuration": "./ca65-language-config.json"
},
{
"id": "cc65",
"aliases": [
"cc65 Transpiler"
],
"extensions": [
".c",
".h"
],
"configuration": "./cc65-language-config.json"
}
],
"debuggers": [
{
"type": "alchemy65",
"languages": [
"ca65",
"cc65"
],
"label": "Alchemy65 Debug",
"variables": {
"AskForRomPath": "extension.alchemy65.getRomPath",
"AskForDbgPath": "extension.alchemy65.getDbgPath",
"AskForMesenPath": "extension.alchemy65.getMesenPath",
"AskForSourcePath": "extension.alchemy65.getSourcePath"
},
"initialConfigurations": [
{
"type": "alchemy65",
"request": "launch",
"name": "Debug rom with mesen",
"romPath": "${workspaceFolder}/game.nes",
"dbgPath": "${workspaceFolder}/game.dbg",
"program": "${workspaceFolder}/path/to/mesen.exe",
"sourcePath": "${workspaceFolder}/",
"stopOnEntry": true,
"resetOnEntry": true
}
],
"configurationSnippets": [
{
"label": "Alchemy65 Debug: Launch",
"description": "A new configuration for 'debugging' a rom.",
"body": {
"type": "alchemy65",
"request": "launch",
"name": "Debug rom with mesen",
"romPath": "^\"\\${workspaceFolder}/game.nes\"",
"dbgPath": "^\"\\${workspaceFolder}/game.dbg\"",
"program": "^\"\\${workspaceFolder}/path/to/mesen.exe\"",
"sourcePath": "^\"\\${workspaceFolder}/\"",
"stopOnEntry": true,
"resetOnEntry": true
}
},
{
"label": "Alchemy65 Debug: Attach",
"description": "A new configuration for 'debugging' a rom.",
"body": {
"type": "alchemy65",
"request": "attach",
"name": "Debug rom with mesen",
"dbgPath": "^\"\\${workspaceFolder}/game.dbg\"",
"sourcePath": "^\"\\${workspaceFolder}/\"",
"stopOnEntry": false,
"resetOnEntry": false
}
}
],
"configurationAttributes": {
"launch": {
"required": [
"romPath",
"dbgPath",
"program",
"sourcePath"
],
"romPath": {
"type": "string",
"description": "Path to rom file.",
"default": "${workspaceFolder}/${command:AskForRomPath}"
},
"dbgPath": {
"type": "string",
"description": "Path to dbg file.",
"default": "${workspaceFolder}/${command:AskForDbgPath}"
},
"program": {
"type": "string",
"description": "Path to mesen.",
"default": "${workspaceFolder}/${command:AskForMesenPath}"
},
"sourcePath": {
"type": "string",
"description": "Path to source code.",
"default": "${workspaceFolder}/${command:AskForSourcePath}"
},
"stopOnEntry": {
"type": "boolean",
"description": "Automatically stop after launch.",
"default": false
},
"resetOnEntry": {
"type": "boolean",
"description": "Automatically reset after launch.",
"default": true
}
},
"attach": {
"required": [
"dbgPath",
"sourcePath"
],
"romPath": {
"type": "string",
"description": "Path to rom file.",
"default": "${workspaceFolder}/${command:AskForRomPath}"
},
"dbgPath": {
"type": "string",
"description": "Path to dbg file.",
"default": "${workspaceFolder}/${command:AskForDbgPath}"
},
"program": {
"type": "string",
"description": "Path to mesen.",
"default": "${workspaceFolder}/${command:AskForMesenPath}"
},
"sourcePath": {
"type": "string",
"description": "Path to source code.",
"default": "${workspaceFolder}/${command:AskForSourcePath}"
},
"stopOnEntry": {
"type": "boolean",
"description": "Automatically stop after attaching.",
"default": false
},
"resetOnEntry": {
"type": "boolean",
"description": "Automatically reset after attaching.",
"default": false
},
"remoteAddress": {
"type": "string",
"description": "Network address to locate the debugger.",
"default": "127.0.0.1"
},
"remotePort": {
"type": "number",
"description": "Network port to locate the debugger.",
"default": 4064
}
}
}
}
],
"grammars": [
{
"language": "ca65",
"scopeName": "source.ca65",
"path": "./ca65.tmLanguage.json"
},
{
"language": "cc65",
"scopeName": "source.cc65",
"path": "./cc65.tmLanguage.json"
}
],
"breakpoints": [
{
"language": "ca65"
},
{
"language": "cc65"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.4",
"@types/mocha": "^9.0.0",
"@types/node": "14.17.27",
"@types/vscode": "^1.61.0",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"@vscode/test-electron": "^1.6.2",
"eslint": "^7.32.0",
"glob": "^7.1.7",
"mocha": "^9.1.1",
"typescript": "^4.4.3"
},
"dependencies": {
"await-notify": "^1.0.1",
"vscode-debugadapter": "^1.49.0"
}
}