Files
tiptoi-sync/package.json
T
arnef d913d17e28 Add workspace scaffolding
Bun workspace with client sub-package, shared root tsconfig, and
lockfile.
2026-08-12 11:46:18 +02:00

19 lines
461 B
JSON

{
"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"
}
}