managarten/apps/matrix/apps/mobile/package.json
Till JS 2491440fd8 fix(matrix-mobile): migrate from expo-av to expo-audio for SDK 55 compatibility
expo-av was removed in Expo SDK 55, causing 'EXEventEmitter.h' not found
build errors. Migrated VoiceRecorder and VoiceMessage to use expo-audio.
Also changed EAS build image from "latest" (Xcode 26.2 beta) to "default".

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-12 10:48:20 +01:00

66 lines
2 KiB
JSON

{
"name": "@matrix/mobile",
"version": "0.1.0",
"main": "expo-router/entry",
"scripts": {
"dev": "expo start",
"ios": "expo run:ios",
"android": "expo run:android",
"build:dev": "eas build --profile development --platform ios",
"build:preview": "eas build --profile preview --platform ios",
"build:prod": "eas build --profile production --platform ios",
"submit:ios": "eas submit --platform ios --profile production",
"build:testflight": "eas build --profile production --platform ios --auto-submit",
"prebuild": "expo prebuild",
"type-check": "tsc --noEmit",
"lint": "eslint .",
"format": "eslint . --fix"
},
"dependencies": {
"@react-native-async-storage/async-storage": "2.2.0",
"buffer": "^6.0.3",
"events": "^3.3.0",
"expo": "~55.0.5",
"expo-audio": "~55.0.8",
"expo-constants": "~55.0.7",
"expo-document-picker": "~55.0.8",
"expo-file-system": "~55.0.10",
"expo-haptics": "~55.0.8",
"expo-image": "~55.0.6",
"expo-image-picker": "~55.0.12",
"expo-linking": "~55.0.7",
"expo-media-library": "~55.0.9",
"expo-notifications": "~55.0.12",
"expo-router": "~55.0.5",
"expo-secure-store": "~55.0.8",
"expo-status-bar": "~55.0.4",
"expo-system-ui": "~55.0.9",
"expo-web-browser": "~55.0.9",
"matrix-js-sdk": "^37.1.0",
"nativewind": "~4.2.2",
"phosphor-react-native": "^2.3.0",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-native": "0.83.2",
"react-native-css-interop": "0.2.2",
"react-native-gesture-handler": "~2.30.0",
"react-native-reanimated": "~4.2.1",
"react-native-safe-area-context": "~5.6.2",
"react-native-screens": "~4.23.0",
"react-native-web": "~0.21.2",
"react-native-worklets": "~0.7.2",
"stream-browserify": "^3.0.0",
"zustand": "^4.5.1"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@types/react": "~19.2.14",
"eslint": "^9.39.1",
"eslint-config-expo": "^55.0.0",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.4.0",
"typescript": "~5.9.3"
},
"private": true
}