-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.15 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
53
54
{
"name": "@debugmcp/adapter-java",
"version": "0.21.0",
"description": "Java debug adapter for MCP Debugger using JDI bridge",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"java"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"build:ci": "tsc -p tsconfig.json --noEmitOnError",
"build:adapter": "node scripts/compile-jdi-bridge.js",
"clean": "rimraf dist java/out",
"test": "vitest run"
},
"dependencies": {
"@debugmcp/shared": "workspace:*",
"@vscode/debugprotocol": "^1.68.0"
},
"devDependencies": {
"@types/node": "^25.9.3",
"rimraf": "^6.1.3",
"typescript": "^5.9.3",
"vitest": "^4.1.8"
},
"engines": {
"node": ">=22.0.0"
},
"keywords": [
"mcp",
"debugger",
"java",
"jvm",
"jdi",
"jdi-bridge",
"dap"
],
"author": "mcp-debugger team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/debugmcp/mcp-debugger.git",
"directory": "packages/adapter-java"
}
}