-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 906 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 906 Bytes
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
{
"name": "@vscode/debugadapter",
"description": "Debug adapter implementation for node",
"version": "1.64.0",
"author": "Microsoft Corporation",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/vscode-debugadapter-node.git"
},
"engines": {
"node": ">=14"
},
"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": {
"@vscode/debugprotocol": "1.64.0"
},
"devDependencies": {
"@types/mocha": "^9.1.0",
"mocha": "^9.2.1",
"typescript": "^4.9.4"
},
"scripts": {
"prepack": "npm run compile",
"compile": "tsc",
"watch": "tsc -w",
"test": "mocha --ui tdd --spec \"lib/tests/*.test.js\""
}
}