-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.24 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.24 KB
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
38
{
"name": "node-debugprotocol-client",
"version": "0.5.1",
"description": "A standalone node client for the VSCode Debug Adapter Protocol",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"build": "tsc --project .",
"start": "tsc --project . --watch",
"lint": "eslint .",
"prepare": "npm run build",
"boilerplate:request-names": "node ./build/generate-boilerplate.js extract-request-names",
"boilerplate:event-names": "node ./build/generate-boilerplate.js extract-event-names",
"boilerplate:request-methods": "node ./build/generate-boilerplate.js generate-request-methods",
"boilerplate:event-methods": "node ./build/generate-boilerplate.js generate-event-methods"
},
"keywords": [
"vscode",
"debug",
"adapter",
"protocol",
"standalone"
],
"author": "Matthias Heinisch",
"repository": "https://github.com/gins3000/node-debugprotocol-client",
"license": "MIT",
"devDependencies": {
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^8.2.0",
"mz": "^2.7.0",
"rimraf": "^3.0.2",
"typescript": "^4.4.4",
"vscode-debugprotocol": "^1.50.1"
}
}