-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.5 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
{
"name": "gdbts",
"version": "1.0.0",
"author": "ming",
"publisher": "ming",
"repository": {
"type": "git",
"url": "https://github.com/liangguangming/gdbts.git"
},
"license": "MIT",
"engines": {
"vscode": "^1.27.0"
},
"dependencies": {
"@types/node": "^10.11.3",
"electron-log": "^2.2.17",
"ts-node": "^7.0.1",
"typescript": "^3.1.1",
"vsce": "^1.51.1",
"vscode": "^1.1.21",
"vscode-debugadapter": "^1.32.1"
},
"activationEvents": [
"onDebug",
"onLanguage:c"
],
"main": "./out/extension",
"contributes": {
"debuggers": [
{
"type": "gdb",
"program": "./out/gdbSession.js",
"runtime": "node",
"label": "GDBming",
"configurationAttributes": {
"launch": {
"required": [
"target",
"gdbpath"
],
"properties": {
"target": {
"type": "string",
"description": "Path of executable"
},
"gdbpath": {
"type": "string",
"description": "Path to the gdb executable or the command if in PATH",
"default": "gdb"
}
}
}
},
"initialConfigurations": [
{
"name": "Debug",
"type": "gdb",
"request": "launch",
"target": "./xxx.exe",
"gdbpath": "./gdb.exe"
}
]
}
]
},
"scripts": {
"compile": "tsc -p ./src",
"postinstall": "node ./node_modules/vscode/bin/install",
"start": "ts-node src/gdb.ts",
"test": "ts-node src/test/test.ts",
"package": "vsce package",
"parserTest": "ts-node src/test/parserTest.ts"
}
}