Files
multica/apps/mobile/package.json
Naiyuan Qing e113308435 feat(mobile): prod build path + composer/mention/edit polish
Prod build path — lets external users self-build a personal copy against
api.multica.ai's production backend:
- New `prod` variant alongside `dev` / `staging`: `.env.production`,
  `dev:prod` / `ios:device:prod` / `ios:device:prod:release` scripts
- `EXPO_BUNDLE_IDENTIFIER_PROD` shell override in `app.config.ts` for
  contributors not on the Multica Apple Developer team (parallel to
  existing `_DEV` pattern)
- Public docs page `mobile-app.{mdx,zh.mdx}` + Reference entry; README
  gains a top-of-file "Just want to use it" section

Composer refactor:
- Shared `components/composer/message-composer.tsx` shell removes ~400
  lines of duplication between chat-composer and inline-comment-composer
- Mention picker pulled out of inline modal into a Router formSheet route
  (`mention-picker.tsx` + `pickers/mention-picker-body.tsx`), backed by a
  Zustand `mention-draft-store`

Other:
- Issue edit screen (`issue/[id]/edit.tsx`) + reusable description-field
- Chat empty-state and timeline split into dedicated components;
  status-pill / message-list / attachment-row rewrites
- Markdown render tweaks, `lib/format-elapsed.ts`, `ui/collapsible.tsx`
- Realtime / schemas additions for chat session updates; new mention-picker
  stack screen registered in workspace `_layout.tsx`

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-22 18:30:43 +08:00

89 lines
3.4 KiB
JSON

{
"name": "@multica/mobile",
"version": "0.1.0",
"private": true,
"main": "expo-router/entry",
"scripts": {
"dev": "expo start",
"dev:staging": "dotenv -e .env.staging -- cross-env APP_ENV=staging expo start",
"dev:prod": "dotenv -e .env.production -- cross-env APP_ENV=production expo start",
"ios": "expo run:ios",
"ios:staging": "dotenv -e .env.staging -- cross-env APP_ENV=staging expo run:ios",
"ios:prod": "dotenv -e .env.production -- cross-env APP_ENV=production expo run:ios",
"ios:device": "expo run:ios --device",
"ios:device:staging": "dotenv -e .env.staging -- cross-env APP_ENV=staging expo run:ios --device",
"ios:device:staging:release": "dotenv -e .env.staging -- cross-env APP_ENV=staging expo run:ios --device --configuration Release",
"ios:device:prod": "dotenv -e .env.production -- cross-env APP_ENV=production expo run:ios --device",
"ios:device:prod:release": "dotenv -e .env.production -- cross-env APP_ENV=production expo run:ios --device --configuration Release",
"lint": "expo lint",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@react-native-community/datetimepicker": "8.6.0",
"@react-native-community/netinfo": "11.5.2",
"@react-native-segmented-control/segmented-control": "2.5.7",
"@react-navigation/elements": "^2.9.17",
"@rn-primitives/avatar": "^1.4.0",
"@rn-primitives/collapsible": "^1.4.0",
"@rn-primitives/dropdown-menu": "^1.4.0",
"@rn-primitives/portal": "^1.4.0",
"@rn-primitives/radio-group": "^1.4.0",
"@rn-primitives/separator": "^1.4.0",
"@rn-primitives/slot": "^1.4.0",
"@rn-primitives/switch": "^1.4.0",
"@rn-primitives/tabs": "^1.4.0",
"@shikijs/core": "^4.0.2",
"@shikijs/langs": "^4.0.2",
"@shikijs/themes": "^4.0.2",
"@shopify/flash-list": "2.0.2",
"@tanstack/react-query": "^5.96.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"expo": "~55.0.23",
"expo-build-properties": "~55.0.13",
"expo-clipboard": "~55.0.13",
"expo-constants": "~55.0.16",
"expo-dev-client": "^55.0.32",
"expo-document-picker": "~55.0.13",
"expo-haptics": "~55.0.14",
"expo-image": "^55.0.10",
"expo-image-picker": "~55.0.20",
"expo-linking": "~55.0.0",
"expo-router": "~55.0.14",
"expo-secure-store": "~55.0.13",
"expo-status-bar": "~55.0.0",
"expo-system-ui": "~55.0.0",
"input-otp-native": "^0.5.0",
"marked": "^18.0.3",
"nativewind": "^4.1.23",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-native": "0.83.6",
"react-native-enriched-markdown": "^0.5.0",
"react-native-gesture-handler": "~2.30.1",
"react-native-image-viewing": "^0.2.2",
"react-native-keyboard-controller": "1.20.7",
"react-native-reanimated": "~4.2.1",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.23.0",
"react-native-shiki-engine": "^0.3.10",
"react-native-svg": "15.15.3",
"react-native-web": "~0.21.0",
"react-native-worklets": "0.7.4",
"rn-emoji-keyboard": "^1.7.0",
"tailwind-merge": "^2.5.4",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"zod": "^4.1.5",
"zustand": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.25.0",
"@types/react": "~19.0.0",
"cross-env": "^7.0.3",
"dotenv-cli": "^7.4.4",
"eslint-config-expo": "~55.0.0",
"typescript": "~5.9.0"
}
}