bandit-runner/ssh-proxy/package.json
nicholai 4a517dfa97 Fix __name polyfill - app now loads without errors
- Added globalThis.__name polyfill in layout.tsx head using dangerouslySetInnerHTML
- Fixed wrangler.jsonc to use inline DO (removed script_name reference)
- Fixed patch-worker.js duplicate detection
- Updated todos: WebSocket still needs debugging but core app is functional
2025-10-09 14:27:03 -06:00

35 lines
823 B
JSON

{
"name": "ssh-proxy",
"version": "1.0.0",
"description": "SSH Proxy Service for Bandit Runner",
"main": "dist/server.js",
"type": "module",
"scripts": {
"dev": "tsx watch server.ts",
"build": "tsc",
"start": "node dist/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@langchain/core": "^0.3.78",
"@langchain/langgraph": "^0.4.9",
"@langchain/openai": "^0.6.14",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"ssh2": "^1.17.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/node": "^24.7.0",
"@types/ssh2": "^1.15.5",
"tsx": "^4.19.2",
"typescript": "^5.9.3"
}
}