- 切换到 expo-router 文件路由,删除 App.tsx - 新增 5 个 Expo 原生插件:ppocr (OCR), accessibility (账单抓取), notification-listener, screenshot-monitor, sms-receiver - 实现核心领域逻辑:billPipeline (账单流水), dedup (去重), transferRecognizer (转账识别), ruleEngine + categories (双轨制分类), budgets, creditCards, recurring, sync, ocrProcessor - 增强 ledger.ts:支持 balance assertion, option, pad/note 指令, posting 级 metadata, cost/price 解析 - 新增完整 UI:tabs (首页/报表/设置), 交易详情, 预算, 日历热力图, 分类管理, 信用卡, 定期交易, 规则管理 - 实现 Zustand 状态管理:ledgerStore, importStore, settingsStore, metadataStore, automationStore + 持久化 - 新增 AI 功能:chatAssistant, monthlySummary, voiceInput - 实现多端同步:gitSync, webdavSync, icloudSync - 新增主题系统 (tokens/presets) 和 i18n (zh/en) - 添加 30+ 单元测试覆盖核心逻辑
53 lines
1.4 KiB
JSON
53 lines
1.4 KiB
JSON
{
|
|
"name": "beancount-mobile",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"main": "expo-router/entry",
|
|
"scripts": {
|
|
"start": "expo start",
|
|
"android": "expo run:android",
|
|
"ios": "expo run:ios",
|
|
"test": "vitest run",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@expo/metro-runtime": "^6.1.2",
|
|
"@expo/vector-icons": "^15.0.3",
|
|
"@react-navigation/drawer": "^7.5.0",
|
|
"expo": "~54.0.0",
|
|
"expo-constants": "^18.0.13",
|
|
"expo-document-picker": "~14.0.8",
|
|
"expo-file-system": "~19.0.0",
|
|
"expo-image-picker": "~17.0.11",
|
|
"expo-linking": "^8.0.12",
|
|
"expo-local-authentication": "~17.0.8",
|
|
"expo-localization": "~17.0.9",
|
|
"expo-notifications": "~0.32.17",
|
|
"expo-router": "~6.0.24",
|
|
"expo-secure-store": "~15.0.8",
|
|
"expo-sharing": "~14.0.8",
|
|
"expo-sqlite": "~16.0.0",
|
|
"expo-status-bar": "~3.0.0",
|
|
"i18n-js": "^4.5.3",
|
|
"react": "19.1.0",
|
|
"react-dom": "^19.1.0",
|
|
"react-native": "0.81.0",
|
|
"react-native-gesture-handler": "^2.28.0",
|
|
"react-native-reanimated": "^3.18.0",
|
|
"react-native-safe-area-context": "~5.6.0",
|
|
"react-native-screens": "~4.16.0",
|
|
"react-native-view-shot": "4.0.3",
|
|
"text-encoding-gbk": "^0.7.3",
|
|
"xlsx": "^0.18.5",
|
|
"zustand": "^5.0.14"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "~19.1.0",
|
|
"typescript": "~5.9.0",
|
|
"vitest": "^3.2.0"
|
|
},
|
|
"overrides": {
|
|
"expo-font": "~14.0.12"
|
|
}
|
|
}
|