vscode-debugadapter
Version:
Debug adapter implementation for node
37 lines (36 loc) • 900 B
JSON
{
"name": "vscode-debugadapter",
"description": "Debug adapter implementation for node",
"version": "1.51.0",
"author": "Microsoft Corporation",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/vscode-debugadapter-node.git"
},
"bugs": {
"url": "https://github.com/microsoft/vscode-debugadapter-node/issues"
},
"main": "./lib/main.js",
"browser": {
"./lib/runDebugAdapter.js": "./lib/web/runDebugAdapterStub.js",
"./lib/internalLogger.js": "./lib/web/internalLoggerStub.js"
},
"typings": "./lib/main",
"dependencies": {
"mkdirp": "^1.0.4",
"vscode-debugprotocol": "1.51.0"
},
"devDependencies": {
"@types/mkdirp": "^1.0.2",
"@types/node": "14.x",
"@types/mocha": "^9.0.0",
"mocha": "^9.1.3",
"typescript": "4.4.4"
},
"scripts": {
"prepare": "tsc -p ./src",
"compile": "tsc -p ./src",
"watch": "tsc -w -p ./src"
}
}