- 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
35 lines
823 B
JSON
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"
|
|
}
|
|
}
|