- Bridge: Express API server with SQLite (projects, tasks, executions, outputs) - Dashboard: Next.js app rewired from WebSocket gateway to Tiger Bridge HTTP API - Tasks: Kanban board with drag-drop, project management with CRUD - Dispatch: Task dispatch to sandbox with file watcher for status updates - UI: Container health panel, workspace browser, logs viewer, output viewer Critical fixes: - Use execInSandbox instead of execOnHost for container operations - Watch symlink path instead of container-internal path - URL-encoded params for GET requests instead of body - PUT/DELETE support added to useBridgeRequest Sprints 1-5 complete. Ready for VPS deployment.
26 lines
674 B
JSON
26 lines
674 B
JSON
{
|
|
"name": "tiger-bridge",
|
|
"version": "1.0.0",
|
|
"description": "Bridge API between dashboard and Tiger agent running inside Docker/k3s/sandbox",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "tsx watch src/index.ts",
|
|
"start": "node --import tsx src/index.ts",
|
|
"build": "tsc",
|
|
"start:prod": "node dist/index.js"
|
|
},
|
|
"dependencies": {
|
|
"express": "^4.21.0",
|
|
"cors": "^2.8.5",
|
|
"better-sqlite3": "^11.0.0",
|
|
"chokidar": "^3.6.0"
|
|
},
|
|
"devDependencies": {
|
|
"tsx": "^4.19.0",
|
|
"typescript": "^5.6.0",
|
|
"@types/express": "^4.17.21",
|
|
"@types/cors": "^2.8.17",
|
|
"@types/better-sqlite3": "^7.6.8",
|
|
"@types/node": "^22.0.0"
|
|
}
|
|
}
|