Fix bin/publish: copy docs.dist from project root

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>
This commit is contained in:
root
2025-10-21 02:08:33 +00:00
commit f6fac6c4bc
79758 changed files with 10547827 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
{
"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"
}
}