2018-07-12 14:40:39 +00:00
|
|
|
{
|
|
|
|
"name": "debug-auto-launch",
|
|
|
|
"displayName": "%displayName%",
|
|
|
|
"description": "%description%",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"publisher": "vscode",
|
2019-06-06 09:44:50 +00:00
|
|
|
"license": "MIT",
|
2018-07-12 14:40:39 +00:00
|
|
|
"engines": {
|
|
|
|
"vscode": "^1.5.0"
|
|
|
|
},
|
|
|
|
"activationEvents": [
|
|
|
|
"*"
|
|
|
|
],
|
|
|
|
"main": "./out/extension",
|
|
|
|
"scripts": {
|
|
|
|
"compile": "gulp compile-extension:debug-auto-launch",
|
|
|
|
"watch": "gulp watch-extension:debug-auto-launch"
|
|
|
|
},
|
|
|
|
"contributes": {
|
|
|
|
"commands": [
|
|
|
|
{
|
|
|
|
"command": "extension.node-debug.toggleAutoAttach",
|
|
|
|
"title": "%toggle.auto.attach%",
|
|
|
|
"category": "Debug"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2018-09-06 13:10:02 +00:00
|
|
|
"vscode-nls": "^4.0.0"
|
2018-07-12 14:40:39 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-12-18 12:28:39 +00:00
|
|
|
"@types/node": "^12.19.9"
|
2020-09-11 23:22:08 +00:00
|
|
|
},
|
|
|
|
"prettier": {
|
|
|
|
"printWidth": 100,
|
|
|
|
"trailingComma": "all",
|
|
|
|
"singleQuote": true,
|
|
|
|
"arrowParens": "avoid"
|
2018-07-12 14:40:39 +00:00
|
|
|
}
|
2018-09-06 13:10:02 +00:00
|
|
|
}
|