Set up bun workspace monorepo

This commit is contained in:
2026-08-09 17:08:55 -04:00
commit 1e75e0f07f
3 changed files with 556 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
{
"name": "pistation",
"version": "0.1.0",
"private": true,
"type": "module",
"license": "MIT",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev:web": "bun run --filter @pistation/web-client dev",
"dev:kiosk": "bun run --filter @pistation/kiosk-client tauri:dev",
"build:web": "bun run --filter @pistation/web-client build",
"build:kiosk": "bun run --filter @pistation/kiosk-client tauri:build",
"check": "bun run --filter @pistation/web-client check && bun run --filter @pistation/kiosk-client check"
}
}