-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.69 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.69 KB
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
{
"name": "adv-cppdbg",
"displayName": "adv-cppdbg",
"description": "VSCode Extension for advanced C/C++ debugging",
"version": "0.0.2",
"publisher": "haneefdm",
"engines": {
"vscode": "^1.32.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/haneefdm/adv-cppdbg.git"
},
"activationEvents": [
"onDebugResolve:cppdbg",
"onCommand:adv-cppdbg.hello"
],
"categories": [
"Debuggers",
"Other"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "adv-cpp.refresh",
"title": "Adv-Cppdbg: Refresh"
}
],
"views": {
"debug": [
{
"id": "adv-cppdbg.registers",
"name": "Registers",
"when": "debugType == cppdbg"
}
]
},
"configuration": {
"type": "object",
"title": "Advanced CppDbg Configuration",
"properties": {
"adv-cppdbg.debugLevel": {
"type": "integer",
"default": 1,
"description": "Enables printing extension debugging information to the console. Valid values 0-3"
},
"adv-cppdbg.disableRegisterView": {
"type": "boolean",
"default": false,
"description": "Disables showing the Registers View"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^3.3.1",
"vscode": "^1.1.28",
"vscode-cpptools": "^2.1.2",
"vscode-debugadapter": "~1.33.0",
"vscode-debugprotocol": "~1.33.0",
"tslint": "^5.12.1",
"@types/node": "^10.12.21",
"@types/mocha": "^2.2.42",
"performance-now": "^2.1.0"
}
}