-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.21 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@debugmcp/adapter-javascript",
"version": "0.21.0",
"description": "JavaScript/TypeScript debug adapter for MCP debugger",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"vendor/js-debug"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "tsc -b",
"postbuild": "node ./scripts/build-js-debug.js",
"build:ci": "tsc -b -f",
"build:adapter": "node ./scripts/build-js-debug.js",
"clean": "tsc -b --clean && rimraf vendor",
"clean:vendor": "rimraf vendor",
"test": "vitest run",
"test:cov": "vitest run --coverage",
"lint": "eslint ."
},
"dependencies": {
"@debugmcp/shared": "workspace:*",
"@vscode/debugprotocol": "^1.68.0"
},
"peerDependencies": {
"@debugmcp/shared": "0.21.0"
},
"devDependencies": {
"@types/node": "^25.9.3",
"@vitest/coverage-v8": "^4.1.8",
"eslint": "^10.5.0",
"extract-zip": "^2.0.1",
"fs-extra": "^11.3.5",
"tar": "^7.5.16",
"typescript": "^5.9.3",
"vitest": "^4.1.8"
},
"publishConfig": {
"access": "public"
}
}