learning_ai_notes/mobile/package.json
saravanakumardb1 4813c850a3 feat(web,mobile): add @bytelyst/billing-client and platform-client
Web:
- New lib/billing-client.ts: factory wrapper using shared getAccessToken.
- Add @bytelyst/billing-client to web deps.

Mobile:
- New lib/billing-client.ts: factory wrapper using MMKV token storage.
- New lib/platform-api.ts: typed platform-client wrapper for settings,
  sessions, and profile management.
- Add @bytelyst/billing-client and @bytelyst/platform-client to deps.
2026-04-13 10:30:02 -07:00

60 lines
1.8 KiB
JSON

{
"name": "@notelett/mobile",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.6.5",
"main": "index.ts",
"scripts": {
"start": "expo start",
"ios": "expo start --ios",
"android": "expo start --android",
"web": "expo start --web",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .ts,.tsx"
},
"dependencies": {
"@bytelyst/api-client": "*",
"@bytelyst/auth-client": "*",
"@bytelyst/billing-client": "*",
"@bytelyst/blob-client": "*",
"@bytelyst/broadcast-client": "*",
"@bytelyst/design-tokens": "*",
"@bytelyst/diagnostics-client": "*",
"@bytelyst/feature-flag-client": "*",
"@bytelyst/feedback-client": "*",
"@bytelyst/kill-switch-client": "*",
"@bytelyst/offline-queue": "*",
"@bytelyst/platform-client": "*",
"@bytelyst/survey-client": "*",
"@bytelyst/telemetry-client": "*",
"expo": "~55.0.4",
"expo-clipboard": "^55.0.11",
"expo-constants": "~18.0.13",
"expo-router": "~6.0.4",
"expo-status-bar": "~3.0.9",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-native": "0.83.2",
"react-native-gesture-handler": "~2.30.0",
"react-native-mmkv": "^3.2.0",
"react-native-reanimated": "4.2.1",
"react-native-safe-area-context": "~5.6.2",
"react-native-screens": "~4.23.0",
"zustand": "^5.0.8"
},
"devDependencies": {
"@testing-library/react-native": "^13.2.1",
"@types/react": "~19.2.10",
"@types/react-test-renderer": "^19.1.0",
"@typescript-eslint/eslint-plugin": "^8.44.0",
"@typescript-eslint/parser": "^8.44.0",
"eslint": "^9.36.0",
"eslint-config-expo": "~10.0.0",
"react-test-renderer": "19.2.0",
"typescript": "~5.9.2",
"vitest": "^3.2.4"
}
}