Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/debug-auto-launch/package.json
3290 views
1
{
2
"name": "debug-auto-launch",
3
"displayName": "%displayName%",
4
"description": "%description%",
5
"version": "1.0.0",
6
"publisher": "vscode",
7
"license": "MIT",
8
"engines": {
9
"vscode": "^1.5.0"
10
},
11
"icon": "media/icon.png",
12
"capabilities": {
13
"virtualWorkspaces": false,
14
"untrustedWorkspaces": {
15
"supported": true
16
}
17
},
18
"activationEvents": [
19
"onStartupFinished"
20
],
21
"main": "./out/extension",
22
"scripts": {
23
"compile": "gulp compile-extension:debug-auto-launch",
24
"watch": "gulp watch-extension:debug-auto-launch"
25
},
26
"contributes": {
27
"commands": [
28
{
29
"command": "extension.node-debug.toggleAutoAttach",
30
"title": "%toggle.auto.attach%",
31
"category": "Debug"
32
}
33
]
34
},
35
"devDependencies": {
36
"@types/node": "22.x"
37
},
38
"prettier": {
39
"printWidth": 100,
40
"trailingComma": "all",
41
"singleQuote": true,
42
"arrowParens": "avoid"
43
},
44
"repository": {
45
"type": "git",
46
"url": "https://github.com/microsoft/vscode.git"
47
}
48
}
49
50