vibetunnel/web/package.json
Mario Zechner 6830517221 Add complete web frontend for terminal multiplexer
- Implement TypeScript/Express server with tty-fwd integration
- Add real-time terminal streaming via Server-Sent Events using tail -f
- Create asciinema player integration with dynamic resize support
- Implement global keyboard capture for full terminal interaction
- Add session management (create, list, kill) with proper cleanup
- Support instant playback of existing content + real-time new content
- Include directory browser for working directory selection
- Add hot reload development workflow with concurrent build processes

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-06-16 00:29:33 +02:00

43 lines
1.3 KiB
JSON

{
"name": "vibetunnel-web",
"version": "1.0.0",
"description": "Web frontend for terminal multiplexer",
"main": "dist/server.js",
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\" \"npm run dev:css\"",
"dev:server": "tsx watch src/server.ts",
"dev:client": "tsc -p tsconfig.client.json --watch --preserveWatchOutput",
"dev:css": "tailwindcss -i ./src/input.css -o ./public/output.css --watch",
"build": "npm run build:server && npm run build:client && npm run build-css",
"build:server": "tsc",
"build:client": "tsc -p tsconfig.client.json",
"build-css": "tailwindcss -i ./src/input.css -o ./public/output.css",
"start": "node dist/server.js"
},
"dependencies": {
"asciinema-player": "^3.7.0",
"express": "^4.18.2",
"node-pty": "^1.0.0",
"ws": "^8.14.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.5",
"@types/ws": "^8.5.10",
"autoprefixer": "^10.4.16",
"chokidar": "^3.5.3",
"concurrently": "^8.2.2",
"postcss": "^8.4.32",
"tailwindcss": "^3.4.0",
"tsx": "^4.6.2",
"typescript": "^5.3.3"
},
"keywords": [
"terminal",
"multiplexer",
"websocket",
"asciinema"
],
"author": "",
"license": "MIT"
}