Fix bin/publish: use correct .env path for rspade_system Fix bin/publish script: prevent grep exit code 1 from terminating script 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
27 lines
673 B
JSON
Executable File
27 lines
673 B
JSON
Executable File
{
|
|
"name": "rspade-debug-proxy",
|
|
"version": "1.0.0",
|
|
"description": "Debug proxy service bridging Xdebug DBGp to VS Code DAP",
|
|
"main": "dist/server.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"watch": "tsc -w",
|
|
"start": "node dist/server.js",
|
|
"dev": "tsc && node dist/server.js"
|
|
},
|
|
"keywords": ["xdebug", "dbgp", "dap", "debug", "proxy"],
|
|
"author": "RSPade",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"express": "^4.18.2",
|
|
"ws": "^8.14.2",
|
|
"xml2js": "^0.6.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.20",
|
|
"@types/node": "^20.9.0",
|
|
"@types/ws": "^8.5.8",
|
|
"@types/xml2js": "^0.4.14",
|
|
"typescript": "^5.2.2"
|
|
}
|
|
} |