-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (54 loc) · 1.38 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
{
"dependencies": {
"@vscode/debugadapter-testsupport": "^1.51.0",
"lix": "^15.12.0"
},
"devDependencies": {
"@types/mocha": "^9.1.1",
"@types/node": "14.x",
"typescript": "^4.6.3",
"mocha": "^9.2.2"
},
"scripts": {
"compile": "tsc -p hxcppdbg-dap/tests",
"test": "mocha hxcppdbg-dap/tests/bin/js/*.test.js"
},
"name": "hxcppdbg",
"displayName": "Hxcppdbg",
"version": "0.0.1",
"publisher": "...",
"description": "Debugger for hxcpp programs",
"author": {
"name": "Aidan Lee",
"email": "[email protected]"
},
"engines": {
"vscode": "^1.22.0"
},
"categories": ["Debuggers"],
"contributes": {
"breakpoints": [ { "language": "haxe" } ],
"debuggers": [
{
"type": "hxcppdbg",
"program": "D:/programming/haxe/hxcppdbg/hxcppdbg-dap/bin/windows/Main-debug.exe",
"args": [ "--mode", "stdio" ],
"configurationAttributes": {
"launch": {
"required": [ "program", "sourcemap" ],
"properties": {
"program": {
"type": "string",
"description": "Absolute path to a hxcpp executable"
},
"sourcemap": {
"type": "string",
"description": "Absolute path to the corresponding hxcpp program sourcemap"
}
}
}
}
}
]
}
}