-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.2 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.2 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
{
"name": "vscode-debugger",
"displayName": "Debugger Toggle Shortcut for JavaScript",
"description": "Quickly add or remove the 'debugger;' statement in your JavaScript or TypeScript files with a single command.",
"version": "2.0.0",
"icon": "images/icon.png",
"publisher": "stephanebouget",
"repository": "https://github.com/stephanebouget/vscode-debugger.git",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "vscodedebugger.debugger",
"title": "debugger"
}
],
"keybindings": [
{
"command": "vscodedebugger.debugger",
"key": "ctrl+alt+d",
"mac": "ctrl+alt+d"
}
]
},
"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": {
"@types/mocha": "^10.0.10",
"@types/node": "^24.7.2",
"@types/vscode": "^1.85.0",
"tslint": "^6.1.3",
"typescript": "^5.9.3",
"vscode-test": "^1.6.1"
}
}