mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-04-01 10:35:56 +00:00
This commit adds the Tauri desktop app as a completely separate project in the /tauri folder without modifying anything in the web project. - Created /tauri folder with standalone Tauri system tray application - Configured as menu bar/system tray app (matching Mac app architecture) - Runs embedded HTTP server on port 4020 - Opens web dashboard in default browser - No embedded web view or frontend code - Minimal package.json with only Tauri CLI dependency The web folder remains completely untouched, ensuring clean separation between the web and desktop projects.
21 lines
No EOL
426 B
JSON
21 lines
No EOL
426 B
JSON
{
|
|
"name": "vibetunnel-tauri",
|
|
"version": "1.0.0",
|
|
"description": "Tauri system tray app for VibeTunnel terminal multiplexer",
|
|
"scripts": {
|
|
"tauri": "tauri",
|
|
"tauri:dev": "tauri dev",
|
|
"tauri:build": "tauri build"
|
|
},
|
|
"devDependencies": {
|
|
"@tauri-apps/cli": "^2.0.0-rc.18"
|
|
},
|
|
"keywords": [
|
|
"terminal",
|
|
"multiplexer",
|
|
"tauri",
|
|
"system-tray"
|
|
],
|
|
"author": "",
|
|
"license": "MIT"
|
|
} |