Add workspace scaffolding

Bun workspace with client sub-package, shared root tsconfig, and
lockfile.
This commit is contained in:
2026-08-12 11:46:18 +02:00
commit d913d17e28
4 changed files with 549 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
{
"name": "tiptoi-sync",
"type": "module",
"private": true,
"scripts": {
"dev": "bun --cwd client node_modules/.bin/vite --host",
"build": "bun --cwd client run build",
"cap:sync": "bun --cwd client node_modules/.bin/cap sync",
"cap:android": "bun --cwd client node_modules/.bin/cap run android"
},
"workspaces": ["client"],
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
}
}