mirror of
https://github.com/kristoferssolo/solorice.git
synced 2025-10-21 20:10:34 +00:00
33 lines
755 B
JSON
33 lines
755 B
JSON
{
|
|
"name": "vscode-debugadapter",
|
|
"description": "Debug adapter implementation for node",
|
|
"version": "1.41.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",
|
|
"typings": "./lib/main",
|
|
"dependencies": {
|
|
"mkdirp": "^0.5.1",
|
|
"vscode-debugprotocol": "1.41.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/mkdirp": "^0.5.2",
|
|
"@types/node": "8.9.3",
|
|
"@types/mocha": "5.2.5",
|
|
"mocha": "5.2.0",
|
|
"typescript": "3.5.2"
|
|
},
|
|
"scripts": {
|
|
"prepublish": "tsc -p ./src",
|
|
"compile": "tsc -p ./src",
|
|
"watch": "tsc -w -p ./src"
|
|
}
|
|
}
|