The project is no longer a monorepo/workspace - there is only a single
app package. Remove the redundant client/ nesting: all source, the
Capacitor Android project, config files and package.json/tsconfig now
live directly at the repo root.
- Merge client/package.json into root package.json (drop the
workspaces field and the now-unnecessary bun --cwd client wrappers).
- Merge client/bun.lock (the actual dependency lockfile) into the
root, replacing the stale workspace-only root lockfile.
- Move src/, public/, android/, index.html, vite.config.ts,
capacitor.config.ts, tsconfig.{app,node}.json to the repo root.
- Update Dockerfile.android to build from the repo root instead of
cd'ing into client/.
- Update .github/workflows/ci.yml type-check step to run bun run build
directly instead of bun --cwd client run build.
- Update README.md and .github/copilot-instructions.md to drop
references to the client/ subdirectory.
- Drop the stale server/downloads/ entry from .gitignore (leftover
from an old server-based architecture that no longer exists).
27 lines
601 B
JSON
27 lines
601 B
JSON
{
|
|
"name": "tiptoi-sync",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite --host",
|
|
"build": "tsc -b && vite build",
|
|
"preview": "vite preview",
|
|
"cap:sync": "cap sync",
|
|
"cap:android": "cap run android"
|
|
},
|
|
"dependencies": {
|
|
"@capacitor/android": "^7.0.0",
|
|
"@capacitor/core": "^7.0.0",
|
|
"@capacitor/preferences": "^7",
|
|
"solid-js": "^1.9.13"
|
|
},
|
|
"devDependencies": {
|
|
"@capacitor/cli": "^7.0.0",
|
|
"@types/node": "^24.13.2",
|
|
"typescript": "~6.0.2",
|
|
"vite": "^8.1.1",
|
|
"vite-plugin-solid": "^2.11.12"
|
|
}
|
|
}
|