Files
xplane-cockpit/package.json
T
karim ebc33a78b7 Initial commit: X-Plane G1000 web cockpit + bridge + Tauri desktop app
- server/: Node bridge (datarefs/commands, navdata, CIFP procedures, flight plan)
- web/: React cockpit (PFD/MFD/Map, VFR six-pack, AFCS, FMS CDU), PWA, collapsible sidebar
- desktop/: Tauri 2 launcher (Bun sidecar, system tray, updater) + Linux build via Docker
- scripts/: prep-desktop, build-linux, Gitea release + latest.json

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-01 15:07:03 +02:00

21 lines
568 B
JSON

{
"name": "xplane-glass-cockpit",
"version": "0.1.0",
"description": "Bring X-Plane 12 instruments (PFD/MFD, G1000-style, autopilot) to any tablet or laptop on your LAN via React.",
"type": "module",
"scripts": {
"postinstall": "cd web && npm install",
"build": "cd web && npm run build",
"start": "node server/bridge.js",
"dev:bridge": "node --watch server/bridge.js",
"dev:web": "cd web && npm run dev"
},
"dependencies": {
"express": "^4.21.2",
"ws": "^8.18.0"
},
"devDependencies": {
"playwright": "^1.60.0"
}
}