mirror of
https://github.com/multica-ai/multica.git
synced 2026-06-17 03:38:32 +02:00
Adds a Release-configuration build path for the staging variant: pnpm ios:mobile:device:staging:release → cd apps/mobile && expo run:ios --device --configuration Release Release builds strip `expo-dev-launcher` from the binary (it's only linked in the Debug Pod configuration), so the installed app loads the embedded JS bundle directly — no "Downloading…" screen, no Metro probe, no Recently-opened launcher menu. Standalone use feels like an App Store install. The existing `ios:device:staging` (Debug) path is unchanged — it stays the daily-driver for hot-reload development. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
49 lines
1.6 KiB
JSON
49 lines
1.6 KiB
JSON
{
|
|
"name": "multica",
|
|
"version": "0.2.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev:web": "turbo dev --filter=@multica/web",
|
|
"dev:docs": "turbo dev --filter=@multica/docs",
|
|
"dev:desktop": "turbo dev --filter=@multica/desktop",
|
|
"dev:desktop:staging": "turbo dev:staging --filter=@multica/desktop",
|
|
"dev:mobile": "pnpm -C apps/mobile dev",
|
|
"dev:mobile:staging": "pnpm -C apps/mobile dev:staging",
|
|
"ios:mobile:device": "pnpm -C apps/mobile ios:device",
|
|
"ios:mobile:device:staging": "pnpm -C apps/mobile ios:device:staging",
|
|
"ios:mobile:device:staging:release": "pnpm -C apps/mobile ios:device:staging:release",
|
|
"build": "turbo build --filter=!@multica/mobile",
|
|
"typecheck": "turbo typecheck --filter=!@multica/mobile",
|
|
"test": "turbo test --filter=!@multica/mobile",
|
|
"lint": "turbo lint --filter=!@multica/mobile",
|
|
"clean": "turbo clean && rm -rf node_modules",
|
|
"ui:add": "cd packages/ui && npx shadcn@latest add",
|
|
"generate:reserved-slugs": "node scripts/generate-reserved-slugs.mjs"
|
|
},
|
|
"packageManager": "pnpm@10.28.2",
|
|
"pnpm": {
|
|
"onlyBuiltDependencies": [
|
|
"esbuild",
|
|
"electron"
|
|
],
|
|
"overrides": {
|
|
"@types/react": "catalog:",
|
|
"@types/react-dom": "catalog:"
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.58.2",
|
|
"@types/node": "catalog:",
|
|
"@types/pg": "^8.20.0",
|
|
"pg": "^8.20.0",
|
|
"turbo": "^2.5.4",
|
|
"typescript": "catalog:"
|
|
},
|
|
"dependencies": {
|
|
"expo": "~55.0.23",
|
|
"react": "19.2.0",
|
|
"react-native": "0.83.6"
|
|
}
|
|
}
|