-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.84 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.84 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "smart-xdebug-mcp",
"version": "0.1.0",
"description": "Let AI debug your PHP code - MCP server connecting Claude to XDebug for runtime variable inspection, breakpoints, and step-through debugging",
"author": "Tyler Wall",
"license": "Apache-2.0",
"homepage": "https://github.com/wallter/smart-xdebug-mcp",
"repository": {
"type": "git",
"url": "https://github.com/wallter/smart-xdebug-mcp.git"
},
"bugs": {
"url": "https://github.com/wallter/smart-xdebug-mcp/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"smart-xdebug-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"xdebug",
"php",
"debugging",
"debugger",
"claude",
"ai",
"ai-debugging",
"dbgp",
"laravel",
"breakpoints",
"runtime-debugging",
"variable-inspection",
"step-debugging",
"developer-tools",
"docker",
"anthropic"
],
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"better-sqlite3": "^11.0.0",
"fast-xml-parser": "^4.5.0",
"jsonpath-plus": "^10.0.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^4.0.16",
"eslint": "^9.0.0",
"typescript": "^5.6.0",
"typescript-eslint": "^8.52.0",
"vitest": "^4.0.16"
}
}