-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 990 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 990 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
38
39
40
41
42
43
{
"name": "@debugmcp/adapter-ruby",
"version": "0.21.0",
"description": "Ruby debug adapter for MCP debugger using rdbg",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc -b",
"build:ci": "tsc -b -f",
"clean": "rimraf dist && rimraf tsconfig.tsbuildinfo",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"@debugmcp/shared": "workspace:*",
"@vscode/debugprotocol": "^1.68.0",
"which": "^7.0.0"
},
"devDependencies": {
"@types/node": "^25.9.3",
"@types/which": "^3.0.4",
"typescript": "^5.9.3",
"vitest": "^4.1.8"
},
"engines": {
"node": ">=22.0.0"
},
"peerDependencies": {
"@debugmcp/shared": "0.21.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/debugmcp/mcp-debugger.git",
"directory": "packages/adapter-ruby"
},
"publishConfig": {
"access": "public"
}
}