Full-stack implementation of the Reckue Dev platform: API: JWT auth, CRUD for users/projects/machines/workspaces/sessions, WebSocket gateway for real-time agent communication. Web: Login/register, dashboard with stats, project/machine/session management pages, sidebar navigation, dark theme. Agent: Rust WebSocket client with PTY terminal management, heartbeat, reconnection logic, Socket.IO protocol support. Deploy: Updated docker-compose and env configuration. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
25 lines
530 B
JSON
25 lines
530 B
JSON
{
|
|
"name": "@reckue-dev/web",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev --port 3000",
|
|
"build": "next build",
|
|
"start": "next start"
|
|
},
|
|
"dependencies": {
|
|
"next": "^15.0.0",
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0",
|
|
"socket.io-client": "^4.8.0",
|
|
"@xterm/xterm": "^5.5.0",
|
|
"@xterm/addon-fit": "^0.10.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.0.0",
|
|
"@types/react": "^19.0.0",
|
|
"@types/react-dom": "^19.0.0",
|
|
"typescript": "^5.7.0"
|
|
}
|
|
}
|