Your music, beautifully tracked. All yours. (coming soon) teal.fm
teal-fm atproto

update React-navigation along with expo-router

Natalie B 584041b4 a7cdb1c2

+305 -394
-100
apps/amethyst/app/(tabs)/settings/index.tsx
··· 1 - import React from "react"; 2 - import { Text } from "@/components/ui/text"; 3 - import { ScrollView, Switch, View } from "react-native"; 4 - import { Link, Stack } from "expo-router"; 5 - import { useColorScheme } from "@/lib/useColorScheme"; 6 - import { cn } from "@/lib/utils"; 7 - import { Button } from "@/components/ui/button"; 8 - 9 - export default function Settings() { 10 - const { colorScheme, setColorScheme } = useColorScheme(); 11 - const colorSchemeOptions = [ 12 - { label: "Light", value: "light" }, 13 - { label: "Dark", value: "dark" }, 14 - { label: "System", value: "system" }, 15 - ]; 16 - 17 - return ( 18 - <ScrollView className="flex-1 justify-start items-center gap-5 bg-background w-full"> 19 - <Stack.Screen 20 - options={{ 21 - title: "Settings", 22 - headerBackButtonDisplayMode: "minimal", 23 - headerShown: true, 24 - }} 25 - /> 26 - <View className="max-w-2xl flex-1 w-screen flex flex-col p-4 divide-y divide-muted-foreground/50 gap-4 rounded-xl my-2 mx-5"> 27 - <ButtonSelector 28 - text="Theme" 29 - values={colorSchemeOptions} 30 - selectedValue={colorScheme} 31 - setSelectedValue={setColorScheme} 32 - /> 33 - <Link href="/auth/logoutModal" asChild> 34 - <Button variant="destructive" size="sm" className="w-max mt-4 pb-1"> 35 - <Text>Sign out</Text> 36 - </Button> 37 - </Link> 38 - </View> 39 - </ScrollView> 40 - ); 41 - } 42 - 43 - function ToggleSwitch({ 44 - text, 45 - isEnabled, 46 - setIsEnabled, 47 - }: { 48 - text: string; 49 - isEnabled: boolean; 50 - setIsEnabled: React.Dispatch<React.SetStateAction<boolean>>; 51 - }) { 52 - const toggleSwitch = () => 53 - setIsEnabled((previousState: boolean) => !previousState); 54 - 55 - return ( 56 - <View className="flex-row items-center justify-between"> 57 - <Text className="text-lg">{text}</Text> 58 - <Switch className="ml-4" value={isEnabled} onValueChange={toggleSwitch} /> 59 - </View> 60 - ); 61 - } 62 - 63 - /// A selector component for smaller selections (usu. <3 values) 64 - function ButtonSelector({ 65 - text, 66 - values, 67 - selectedValue, 68 - setSelectedValue, 69 - }: { 70 - text: string; 71 - values: { label: string; value: string }[]; 72 - selectedValue: string; 73 - setSelectedValue: (value: any) => void; 74 - }) { 75 - return ( 76 - <View className="items-start gap-2 pt-2"> 77 - <Text className="text-lg">{text}</Text> 78 - <View className="flex-row items-center justify-around gap-1 w-full bg-muted h-10 px-1 rounded-xl"> 79 - {values.map(({ label, value }) => ( 80 - <Button 81 - key={value} 82 - onPress={() => setSelectedValue(value)} 83 - className={`flex-1 w-full h-8`} 84 - variant={selectedValue === value ? "secondary" : "ghost"} 85 - > 86 - <Text 87 - className={cn( 88 - selectedValue === value 89 - ? "text-foreground" 90 - : "text-muted-foreground", 91 - )} 92 - > 93 - {label} 94 - </Text> 95 - </Button> 96 - ))} 97 - </View> 98 - </View> 99 - ); 100 - }
+14 -6
apps/amethyst/app/_layout.tsx
··· 18 18 19 19 import { GlobalTextClassContext } from "../components/ui/text"; 20 20 import "../global.css"; 21 + 21 22 import { BottomSheetModalProvider } from "@gorhom/bottom-sheet"; 22 23 import { SafeAreaView, View } from "react-native"; 23 24 ··· 84 85 85 86 return ( 86 87 <SafeAreaView className="flex-1 flex flex-row min-h-screen justify-center bg-background"> 87 - <View className="max-w-2xl flex flex-1 border-x border-muted-foreground/20"> 88 - {<RootLayoutNav />} 88 + <View className="max-w-2xl flex flex-1 border-x bg-background border-muted-foreground/20"> 89 + <RootLayoutNav /> 89 90 </View> 90 91 </SafeAreaView> 91 92 ); 92 93 } 93 94 94 - function RootLayoutNav() { 95 - verifyInstallation(); 95 + function useTheme() { 96 96 const { colorScheme, setColorScheme } = useColorScheme(); 97 97 98 98 // what??? how does this not break something 99 - setColorScheme(colorScheme ?? "system"); 99 + setColorScheme(colorScheme || "system"); 100 + 101 + console.log("Current scheme is", colorScheme); 102 + 103 + return colorScheme === "dark" ? DARK_THEME : LIGHT_THEME; 104 + } 105 + 106 + function RootLayoutNav() { 107 + verifyInstallation(); 100 108 101 109 return ( 102 110 <GestureHandlerRootView> 103 - <ThemeProvider value={colorScheme === "dark" ? DARK_THEME : LIGHT_THEME}> 111 + <ThemeProvider value={useTheme()}> 104 112 <GlobalTextClassContext.Provider value="font-sans"> 105 113 <BottomSheetModalProvider> 106 114 <Stack>
+23 -6
apps/amethyst/app/offline.tsx
··· 1 - import { View } from 'react-native'; 2 - import { Text } from '@/components/ui/text'; 3 - import { Icon } from '@/lib/icons/iconWithClassName'; 4 - import { CloudOff } from 'lucide-react-native'; 1 + import { View } from "react-native"; 2 + import { Text } from "@/components/ui/text"; 3 + import { Icon } from "@/lib/icons/iconWithClassName"; 4 + import { CloudOff } from "lucide-react-native"; 5 + import { Link, Stack } from "expo-router"; 5 6 6 7 export default function Offline() { 7 8 return ( 8 9 <View className="flex-1 justify-center items-center gap-2"> 9 - <Icon icon={CloudOff} size={64} /> 10 - <Text className="text-center">Oops! Can’t connect to teal.fm.</Text> 10 + <Stack.Screen 11 + options={{ 12 + title: "Can't Connect", 13 + headerBackButtonDisplayMode: "minimal", 14 + }} 15 + /> 16 + <View className="max-w-md justify-center items-center"> 17 + <Icon icon={CloudOff} size={64} /> 18 + <Text className="text-center">Oups! Can’t connect to teal.fm.</Text> 19 + <Text className="text-center"> 20 + Try again in a few seconds, or you can change the AppView{" "} 21 + <Link href="/settings"> 22 + <Text className="text-blue-600 dark:text-blue-400 border-b border-border"> 23 + in Settings 24 + </Text> 25 + </Link> 26 + </Text> 27 + </View> 11 28 </View> 12 29 ); 13 30 }
+8 -11
apps/amethyst/babel.config.js
··· 1 1 module.exports = function (api) { 2 2 api.cache(true); 3 3 return { 4 - presets: [ 5 - ["babel-preset-expo"], 6 - "nativewind/babel", 7 - ], 4 + presets: [["babel-preset-expo"], "nativewind/babel"], 8 5 plugins: [ 9 - ['babel-plugin-react-compiler', { target: '18' }], 6 + ["babel-plugin-react-compiler", { target: "18" }], 10 7 [ 11 - 'module-resolver', 8 + "module-resolver", 12 9 { 13 10 alias: { 14 11 "@": "./", 15 - "~": "./" 12 + "~": "./", 16 13 }, 17 - } 14 + }, 18 15 ], 19 16 [ 20 17 "@babel/plugin-transform-react-jsx", ··· 23 20 importSource: "nativewind", 24 21 }, 25 22 ], 26 - '@babel/plugin-transform-export-namespace-from', 27 - 'react-native-reanimated/plugin' 28 - ] 23 + "@babel/plugin-transform-export-namespace-from", 24 + "react-native-reanimated/plugin", 25 + ], 29 26 }; 30 27 };
+5 -5
apps/amethyst/package.json
··· 25 25 "@gorhom/bottom-sheet": "^5.1.2", 26 26 "@react-native-async-storage/async-storage": "2.1.2", 27 27 "@react-native-picker/picker": "^2.11.0", 28 - "@react-navigation/native": "^7.0.14", 28 + "@react-navigation/native": "^7.1.8", 29 29 "@rn-primitives/avatar": "^1.1.0", 30 30 "@rn-primitives/hover-card": "^1.1.0", 31 31 "@rn-primitives/portal": "^1.2.0", ··· 37 37 "class-variance-authority": "^0.7.1", 38 38 "clsx": "^2.1.1", 39 39 "eslint-plugin-react-compiler": "19.0.0-beta-37ed2a7-20241206", 40 - "expo": "~53.0.7", 41 - "expo-constants": "^17.1.5", 40 + "expo": "~53.0.9", 41 + "expo-constants": "^17.1.6", 42 42 "expo-font": "~13.3.1", 43 43 "expo-image-picker": "^16.1.4", 44 44 "expo-linking": "~7.1.4", 45 - "expo-router": "~5.0.5", 45 + "expo-router": "~5.0.6", 46 46 "expo-splash-screen": "~0.30.8", 47 47 "expo-sqlite": "^15.2.9", 48 48 "expo-status-bar": "~2.2.3", ··· 78 78 "eslint": "^8", 79 79 "eslint-config-expo": "~9.2.0", 80 80 "react-refresh": "^0.16.0", 81 - "tailwindcss": "^3.4.16", 81 + "tailwindcss": "^3.4.17", 82 82 "tailwindcss-animate": "^1.0.7", 83 83 "ts-node": "^10.9.2", 84 84 "typescript": "^5.8.3"
+255 -266
pnpm-lock.yaml
··· 29 29 dependencies: 30 30 '@aquareum/atproto-oauth-client-react-native': 31 31 specifier: ^0.0.1 32 - version: 0.0.1(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 32 + version: 0.0.1(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 33 33 '@atproto/api': 34 34 specifier: ^0.15.5 35 35 version: 0.15.5 ··· 44 44 version: 7.27.1(@babel/core@7.26.0) 45 45 '@expo/vector-icons': 46 46 specifier: ^14.1.0 47 - version: 14.1.0(expo-font@13.3.1(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 47 + version: 14.1.0(expo-font@13.3.1(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 48 48 '@gorhom/bottom-sheet': 49 49 specifier: ^5.1.2 50 50 version: 5.1.2(@types/react@19.0.14)(react-native-gesture-handler@2.24.0(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-reanimated@3.17.5(@babel/core@7.26.0)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) ··· 55 55 specifier: ^2.11.0 56 56 version: 2.11.0(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 57 57 '@react-navigation/native': 58 - specifier: ^7.0.14 59 - version: 7.0.14(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 58 + specifier: ^7.1.8 59 + version: 7.1.8(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 60 60 '@rn-primitives/avatar': 61 61 specifier: ^1.1.0 62 62 version: 1.1.0(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) ··· 91 91 specifier: 19.0.0-beta-37ed2a7-20241206 92 92 version: 19.0.0-beta-37ed2a7-20241206(eslint@8.57.1) 93 93 expo: 94 - specifier: ~53.0.7 95 - version: 53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 94 + specifier: ~53.0.9 95 + version: 53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 96 96 expo-constants: 97 - specifier: ^17.1.5 98 - version: 17.1.5(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)) 97 + specifier: ^17.1.6 98 + version: 17.1.6(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)) 99 99 expo-font: 100 100 specifier: ~13.3.1 101 - version: 13.3.1(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0) 101 + version: 13.3.1(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0) 102 102 expo-image-picker: 103 103 specifier: ^16.1.4 104 - version: 16.1.4(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)) 104 + version: 16.1.4(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)) 105 105 expo-linking: 106 106 specifier: ~7.1.4 107 - version: 7.1.4(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 107 + version: 7.1.4(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 108 108 expo-router: 109 - specifier: ~5.0.5 110 - version: 5.0.5(kv4fw3omscodrypffjuusio3fi) 109 + specifier: ~5.0.6 110 + version: 5.0.6(t72pujrpo4n6qjiotumnev34mm) 111 111 expo-splash-screen: 112 112 specifier: ~0.30.8 113 - version: 0.30.8(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)) 113 + version: 0.30.8(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)) 114 114 expo-sqlite: 115 115 specifier: ^15.2.9 116 - version: 15.2.9(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 116 + version: 15.2.9(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 117 117 expo-status-bar: 118 118 specifier: ~2.2.3 119 119 version: 2.2.3(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 120 120 expo-system-ui: 121 121 specifier: ~5.0.7 122 - version: 5.0.7(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)) 122 + version: 5.0.7(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)) 123 123 expo-web-browser: 124 124 specifier: ~14.1.6 125 - version: 14.1.6(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)) 125 + version: 14.1.6(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)) 126 126 lucide-react-native: 127 127 specifier: ^0.507.0 128 128 version: 0.507.0(react-native-svg@15.11.2(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 129 129 nativewind: 130 130 specifier: ^4.1.23 131 - version: 4.1.23(react-native-reanimated@3.17.5(@babel/core@7.26.0)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-svg@15.11.2(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(tailwindcss@3.4.16(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3))) 131 + version: 4.1.23(react-native-reanimated@3.17.5(@babel/core@7.26.0)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-svg@15.11.2(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3))) 132 132 react: 133 133 specifier: 19.0.0 134 134 version: 19.0.0 ··· 209 209 specifier: ^0.16.0 210 210 version: 0.16.0 211 211 tailwindcss: 212 - specifier: ^3.4.16 213 - version: 3.4.16(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)) 212 + specifier: ^3.4.17 213 + version: 3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)) 214 214 tailwindcss-animate: 215 215 specifier: ^1.0.7 216 - version: 1.0.7(tailwindcss@3.4.16(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3))) 216 + version: 1.0.7(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3))) 217 217 ts-node: 218 218 specifier: ^10.9.2 219 219 version: 10.9.2(@types/node@22.10.2)(typescript@5.8.3) ··· 267 267 version: 16.4.7 268 268 drizzle-orm: 269 269 specifier: ^0.38.3 270 - version: 0.38.4(@libsql/client@0.14.0)(@types/react@19.0.14)(expo-sqlite@15.2.9(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(postgres@3.4.5)(react@19.0.0) 270 + version: 0.38.4(@libsql/client@0.14.0)(@types/react@19.0.14)(expo-sqlite@15.2.9(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(postgres@3.4.5)(react@19.0.0) 271 271 envalid: 272 272 specifier: ^8.0.0 273 273 version: 8.0.0 ··· 328 328 version: 0.30.2 329 329 drizzle-orm: 330 330 specifier: ^0.38.3 331 - version: 0.38.4(@libsql/client@0.14.0)(@types/react@19.0.14)(expo-sqlite@15.2.9(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(postgres@3.4.5)(react@19.0.0) 331 + version: 0.38.4(@libsql/client@0.14.0)(@types/react@19.0.14)(expo-sqlite@15.2.9(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(postgres@3.4.5)(react@19.0.0) 332 332 postgres: 333 333 specifier: ^3.4.5 334 334 version: 3.4.5 ··· 1719 1719 resolution: {integrity: sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==} 1720 1720 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1721 1721 1722 - '@expo/cli@0.24.11': 1723 - resolution: {integrity: sha512-bQtXdonOgg2OgPjHd7D5IkiPObKyiLs+HVM2A1VFV1pOT/8kc2kF/I4lN/Y5uce03FC8v0VRv6rKrDQPlTVWlg==} 1722 + '@expo/cli@0.24.13': 1723 + resolution: {integrity: sha512-2LSdbvYs+WmUljnplQXMCUyNzyX4H+F4l8uExfA1hud25Bl5kyaGrx1jjtgNxMTXmfmMjvgBdK798R50imEhkA==} 1724 1724 hasBin: true 1725 1725 1726 1726 '@expo/code-signing-certificates@0.0.5': ··· 1732 1732 '@expo/config-types@53.0.3': 1733 1733 resolution: {integrity: sha512-V1e6CiM4TXtGxG/W2Msjp/QOx/vikLo5IUGMvEMjgAglBfGYx3PXfqsUb5aZDt6kqA3bDDwFuZoS5vNm/SYwSg==} 1734 1734 1735 + '@expo/config-types@53.0.4': 1736 + resolution: {integrity: sha512-0s+9vFx83WIToEr0Iwy4CcmiUXa5BgwBmEjylBB2eojX5XAMm9mJvw9KpjAb8m7zq2G0Q6bRbeufkzgbipuNQg==} 1737 + 1738 + '@expo/config@11.0.10': 1739 + resolution: {integrity: sha512-8S8Krr/c5lnl0eF03tA2UGY9rGBhZcbWKz2UWw5dpL/+zstwUmog8oyuuC8aRcn7GiTQLlbBkxcMeT8sOGlhbA==} 1740 + 1735 1741 '@expo/config@11.0.8': 1736 1742 resolution: {integrity: sha512-udLrpW4SvXUwF+ntJ0RzEjRbFoSS7Tr/rMrvhfISHWGbcZ09+c+QkI0O8y1sEBWQDpI/IlC9REPqGm5b7HweDw==} 1737 1743 ··· 1751 1757 '@expo/json-file@9.1.4': 1752 1758 resolution: {integrity: sha512-7Bv86X27fPERGhw8aJEZvRcH9sk+9BenDnEmrI3ZpywKodYSBgc8lX9Y32faNVQ/p0YbDK9zdJ0BfAKNAOyi0A==} 1753 1759 1754 - '@expo/metro-config@0.20.13': 1755 - resolution: {integrity: sha512-yyhyBBX2HaqFpuGq8r73d9eB1nJeUWDrNDrPANWuXNwfM/fd5pCT1GXmlRe4CWPQ4dPOlYnBIyrEn5c2FI5J4w==} 1760 + '@expo/metro-config@0.20.14': 1761 + resolution: {integrity: sha512-tYDDubuZycK+NX00XN7BMu73kBur/evOPcKfxc+UBeFfgN2EifOITtdwSUDdRsbtJ2OnXwMY1HfRUG3Lq3l4cw==} 1756 1762 1757 1763 '@expo/metro-runtime@5.0.4': 1758 1764 resolution: {integrity: sha512-r694MeO+7Vi8IwOsDIDzH/Q5RPMt1kUDYbiTJwnO15nIqiDwlE8HU55UlRhffKZy6s5FmxQsZ8HA+T8DqUW8cQ==} ··· 1771 1777 1772 1778 '@expo/prebuild-config@9.0.5': 1773 1779 resolution: {integrity: sha512-oiSVU5ePu9lsOvn5p4xplqjzPlcZHzKYwzuonTa9GCH1GxcOEIBsvMVQiHBXHtqvgV2dztjm34kdXV//+9jtCA==} 1780 + 1781 + '@expo/prebuild-config@9.0.6': 1782 + resolution: {integrity: sha512-HDTdlMkTQZ95rd6EpvuLM+xkZV03yGLc38FqI37qKFLJtUN1WnYVaWsuXKoljd1OrVEVsHe6CfqKwaPZ52D56Q==} 1774 1783 1775 1784 '@expo/sdk-runtime-versions@1.0.0': 1776 1785 resolution: {integrity: sha512-Doz2bfiPndXYFPMRwPyGa1k5QaKDVpY806UJj570epIiMzWaYyCtobasyfC++qfIXVb5Ocy7r3tP9d62hAQ7IQ==} ··· 2400 2409 react-native-safe-area-context: 5.4.0 2401 2410 react-native-screens: ~4.10.0 2402 2411 2403 - '@react-navigation/core@7.3.1': 2404 - resolution: {integrity: sha512-S3KCGvNsoqVk8ErAtQI2EAhg9185lahF5OY01ofrrD4Ij/uk3QEHHjoGQhR5l5DXSCSKr1JbMQA7MEKMsBiWZA==} 2405 - peerDependencies: 2406 - react: '>= 18.2.0' 2407 - 2408 - '@react-navigation/core@7.9.0': 2409 - resolution: {integrity: sha512-GCch7uPsMsHfzCsGPh4+rx/onKboKVgR8h/aOSE+rcDSsmv5P3BUkk0eMm4B8+3HYVniPwJXL6vaiKQ4vQtbWw==} 2412 + '@react-navigation/core@7.9.1': 2413 + resolution: {integrity: sha512-HfbsYyfD5EzTicZVv1Zpw3loYguhHSs9Ztq9K3WccyfuV4Y/+XRrMgIv7B5n6ySfQGyviPcdCEl3d1A109FhUQ==} 2410 2414 peerDependencies: 2411 2415 react: '>= 18.2.0' 2412 2416 ··· 2431 2435 react-native-safe-area-context: 5.4.0 2432 2436 react-native-screens: ~4.10.0 2433 2437 2434 - '@react-navigation/native@7.0.14': 2435 - resolution: {integrity: sha512-Gi6lLw4VOGSWAhmUdJOMauOKGK51/YA1CprjXm91sNfgERWvznqEMw8QmUQx9SEqYfi0LfZhbzpMst09SJ00lw==} 2438 + '@react-navigation/native@7.1.8': 2439 + resolution: {integrity: sha512-ryKd/qNigi1pUp6mBb2pq75ese7AZ/Cl3xEmTG6PcUGMfMqAMMrmmVbgiys0h8zCGY2tSBSqnDHbGW1/ZtOoKg==} 2436 2440 peerDependencies: 2437 2441 react: '>= 18.2.0' 2438 2442 react-native: '*' 2439 2443 2440 - '@react-navigation/native@7.1.7': 2441 - resolution: {integrity: sha512-2P9jE5YLjDyqfbGtqgdFjBfx6d/+FsCjCKJ78dHJhxR2r+mNhkhZ2sf/ExXTbATAZe9qsN+fFkd8AxVf0bDYLA==} 2442 - peerDependencies: 2443 - react: '>= 18.2.0' 2444 - react-native: 0.79.2 2445 - 2446 - '@react-navigation/routers@7.1.2': 2447 - resolution: {integrity: sha512-emdEjpVDK8zbiu2GChC8oYIAub9i/OpNuQJekVsbyFCBz4/TzaBzms38Q53YaNhdIFNmiYLfHv/Y1Ub7KYfm3w==} 2448 - 2449 - '@react-navigation/routers@7.3.6': 2450 - resolution: {integrity: sha512-eWh788S9px6quTPWP0MQcN5HBCoomVBakkbpiQgseNYPy4bVUexwoEgytw0yqPhB0/+BBjWWhpkOvYW34RhtXQ==} 2444 + '@react-navigation/routers@7.3.7': 2445 + resolution: {integrity: sha512-5ffgrefOs2zWqcCVX+OKn+RDx0puopQtxqetegFrTfWQ6pGXdY/5v4kBpPwaOFrNEeE/LPbHt9IJaJuvyhB7RA==} 2451 2446 2452 2447 '@rn-primitives/avatar@1.1.0': 2453 2448 resolution: {integrity: sha512-GqhsQHeY7OP9oe3MZkl1Z0IbhIiuQX4+FxafoRK/Aes2m5386nMGK0NBaZBJy06WnFQBN52C8yq+LYv27sA86A==} ··· 4115 4110 react: '*' 4116 4111 react-native: '*' 4117 4112 4118 - expo-constants@17.1.5: 4119 - resolution: {integrity: sha512-9kjfQjVG6RgBQjFOo7LewxuZgTnYufXPuqpF00Ju5q2dAFW9Eh1SyJpFxbt7KoN+Wwu0hcIr/nQ0lPQugkg07Q==} 4113 + expo-constants@17.1.6: 4114 + resolution: {integrity: sha512-q5mLvJiLtPcaZ7t2diSOlQ2AyxIO8YMVEJsEfI/ExkGj15JrflNQ7CALEW6IF/uNae/76qI/XcjEuuAyjdaCNw==} 4120 4115 peerDependencies: 4121 4116 expo: '*' 4122 4117 react-native: '*' 4123 4118 4124 - expo-file-system@18.1.9: 4125 - resolution: {integrity: sha512-2i8IpaXpLVSI/dmT6TBfvRkl1+YkbWI07NCsQX1Myh33AF8xaJ4jv3Hz6WK1JArqDagCmrQUB2mW9SYnWYqLHg==} 4119 + expo-file-system@18.1.10: 4120 + resolution: {integrity: sha512-SyaWg+HitScLuyEeSG9gMSDT0hIxbM9jiZjSBP9l9zMnwZjmQwsusE6+7qGiddxJzdOhTP4YGUfvEzeeS0YL3Q==} 4126 4121 peerDependencies: 4127 4122 expo: '*' 4128 4123 react-native: '*' ··· 4155 4150 react: '*' 4156 4151 react-native: '*' 4157 4152 4158 - expo-modules-autolinking@2.1.9: 4159 - resolution: {integrity: sha512-54InfnWy1BR54IDZoawqdFAaF2lyLHe9J+2dZ7y91/36jVpBtAval39ZKt2IISFJZ7TVglsojl4P5BDcDGcvjQ==} 4153 + expo-modules-autolinking@2.1.10: 4154 + resolution: {integrity: sha512-k93fzoszrYTKbZ51DSVnewYIGUV6Gi22Su8qySXPFJEfvtDs2NUUNRHBZNKgLHvwc6xPzVC5j7JYbrpXNuY44A==} 4160 4155 hasBin: true 4161 4156 4162 - expo-modules-core@2.3.12: 4163 - resolution: {integrity: sha512-bOm83mskw1S7xuDX50DlLdx68u0doQ6BZHSU2qTv8P1/5QYeAae3pCgFLq2hoptUNeMF7W+68ShJFTOHAe68BQ==} 4157 + expo-modules-core@2.3.13: 4158 + resolution: {integrity: sha512-vmKHv7tEo2wUQoYDV6grhsLsQfD3DUnew5Up3yNnOE1gHGQE+zhV1SBYqaPMPB12OvpyD1mlfzGhu6r9PODnng==} 4164 4159 4165 - expo-router@5.0.5: 4166 - resolution: {integrity: sha512-isYGHFeP5yLupZBByVVY4iYWoUsHGRUHtF9XiUF9d16b0cvJkjdt9tdGawCOMGV9Igq5OlFvTOE2EBf8XP5RIA==} 4160 + expo-router@5.0.6: 4161 + resolution: {integrity: sha512-/44G3liB7LMMDoUO+lN5TS8XvZrAhLtq7cVGoilO2QkoSBjFQfxFA9VYOVWVlu2R80tN6dM3cgsEuoA275FGQg==} 4167 4162 peerDependencies: 4168 4163 '@react-navigation/drawer': ^7.3.9 4169 4164 '@testing-library/jest-native': '*' ··· 4215 4210 expo: '*' 4216 4211 react-native: '*' 4217 4212 4218 - expo@53.0.7: 4219 - resolution: {integrity: sha512-ghX529ZG/PnDtSQTzcl3qtt6/i9ktW1Ie8BE5u936MWCiPMwydxzZ/bilM3XlckLqKEsGsqmmpA1eVcWxkm1Ow==} 4213 + expo@53.0.9: 4214 + resolution: {integrity: sha512-UFG68aVOpccg3s++S3pbtI3YCQCnlu/TFvhnQ5vaD3vhOox1Uk/f2O2T95jmwA/EvKvetqGj34lys3DNXvPqgQ==} 4220 4215 hasBin: true 4221 4216 peerDependencies: 4222 4217 '@expo/dom-webview': '*' ··· 5018 5013 resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} 5019 5014 engines: {node: '>=6'} 5020 5015 5021 - lan-network@0.1.5: 5022 - resolution: {integrity: sha512-CV3k7l8jW0Z1b+G41tB7JInVyJEKQzh/YPl2v9uXpZMusp0aa+rh3OqG77xWuX7+eVBa8PsdTuMznTAssF4qwg==} 5016 + lan-network@0.1.6: 5017 + resolution: {integrity: sha512-0qPYjNoD89v+bfhkIqFBYGBAof1xhxLqjX8bkNN1kQdP81UHpZw5TDXgEjwB+X2iCFGQmzF8TRmvg4vQcykyDA==} 5023 5018 hasBin: true 5024 5019 5025 5020 leven@3.1.0: ··· 5372 5367 5373 5368 nanoid@3.3.11: 5374 5369 resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} 5375 - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 5376 - hasBin: true 5377 - 5378 - nanoid@3.3.8: 5379 - resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==} 5380 5370 engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 5381 5371 hasBin: true 5382 5372 ··· 6548 6538 peerDependencies: 6549 6539 tailwindcss: '>=3.0.0 || insiders' 6550 6540 6551 - tailwindcss@3.4.16: 6552 - resolution: {integrity: sha512-TI4Cyx7gDiZ6r44ewaJmt0o6BrMCT5aK5e0rmJ/G9Xq3w7CX/5VXl/zIPEJZFUK5VEqwByyhqNPycPlvcK4ZNw==} 6541 + tailwindcss@3.4.17: 6542 + resolution: {integrity: sha512-w33E2aCvSDP0tW9RZuNXadXlkHXqFzSkQew/aIa2i/Sj8fThxwovwlXHSPXTbAHwEIhBFXAedUhP2tueAKP8Og==} 6553 6543 engines: {node: '>=14.0.0'} 6554 6544 hasBin: true 6555 6545 ··· 6911 6901 peerDependenciesMeta: 6912 6902 '@types/react': 6913 6903 optional: true 6914 - 6915 - use-sync-external-store@1.4.0: 6916 - resolution: {integrity: sha512-9WXSPC5fMv61vaupRkCKCxsPxBocVnwakBEkMIHHpkTTg6icbJtg6jzgtLDm4bl3cSHAca52rYWih0k4K3PfHw==} 6917 - peerDependencies: 6918 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 6919 6904 6920 6905 use-sync-external-store@1.5.0: 6921 6906 resolution: {integrity: sha512-Rb46I4cGGVBmjamjphe8L/UnvJD+uPPtTkNvX5mZgqdbavhI4EbgIWJiIHXJ8bc/i9EQGPRh4DwEURJ552Do0A==} ··· 7195 7180 '@jridgewell/gen-mapping': 0.3.8 7196 7181 '@jridgewell/trace-mapping': 0.3.25 7197 7182 7198 - '@aquareum/atproto-oauth-client-react-native@0.0.1(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)': 7183 + '@aquareum/atproto-oauth-client-react-native@0.0.1(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)': 7199 7184 dependencies: 7200 7185 '@atproto-labs/did-resolver': 0.1.5 7201 7186 '@atproto-labs/handle-resolver-node': 0.1.7 ··· 7210 7195 '@atproto/oauth-types': 0.2.1 7211 7196 abortcontroller-polyfill: 1.7.8 7212 7197 event-target-shim: 6.0.2 7213 - expo-sqlite: 15.2.9(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 7198 + expo-sqlite: 15.2.9(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 7214 7199 jose: 5.9.6 7215 7200 react-native-quick-crypto: 0.7.10(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 7216 7201 transitivePeerDependencies: ··· 7773 7758 dependencies: 7774 7759 '@babel/core': 7.26.0 7775 7760 '@babel/helper-compilation-targets': 7.25.9 7776 - '@babel/helper-plugin-utils': 7.25.9 7761 + '@babel/helper-plugin-utils': 7.27.1 7777 7762 debug: 4.4.0 7778 7763 lodash.debounce: 4.0.8 7779 7764 resolve: 1.22.8 ··· 7870 7855 dependencies: 7871 7856 '@babel/core': 7.26.0 7872 7857 '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0) 7873 - '@babel/helper-plugin-utils': 7.25.9 7858 + '@babel/helper-plugin-utils': 7.27.1 7874 7859 '@babel/plugin-syntax-decorators': 7.25.9(@babel/core@7.26.0) 7875 7860 transitivePeerDependencies: 7876 7861 - supports-color ··· 7878 7863 '@babel/plugin-proposal-export-default-from@7.25.9(@babel/core@7.26.0)': 7879 7864 dependencies: 7880 7865 '@babel/core': 7.26.0 7881 - '@babel/helper-plugin-utils': 7.25.9 7866 + '@babel/helper-plugin-utils': 7.27.1 7882 7867 7883 7868 '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.26.0)': 7884 7869 dependencies: ··· 7891 7876 '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.26.0)': 7892 7877 dependencies: 7893 7878 '@babel/core': 7.26.0 7894 - '@babel/helper-plugin-utils': 7.25.9 7879 + '@babel/helper-plugin-utils': 7.27.1 7895 7880 7896 7881 '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.26.0)': 7897 7882 dependencies: 7898 7883 '@babel/core': 7.26.0 7899 - '@babel/helper-plugin-utils': 7.25.9 7884 + '@babel/helper-plugin-utils': 7.27.1 7900 7885 7901 7886 '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.26.0)': 7902 7887 dependencies: 7903 7888 '@babel/core': 7.26.0 7904 - '@babel/helper-plugin-utils': 7.25.9 7889 + '@babel/helper-plugin-utils': 7.27.1 7905 7890 7906 7891 '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.26.0)': 7907 7892 dependencies: 7908 7893 '@babel/core': 7.26.0 7909 - '@babel/helper-plugin-utils': 7.25.9 7894 + '@babel/helper-plugin-utils': 7.27.1 7910 7895 7911 7896 '@babel/plugin-syntax-decorators@7.25.9(@babel/core@7.26.0)': 7912 7897 dependencies: 7913 7898 '@babel/core': 7.26.0 7914 - '@babel/helper-plugin-utils': 7.25.9 7899 + '@babel/helper-plugin-utils': 7.27.1 7915 7900 7916 7901 '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.26.0)': 7917 7902 dependencies: 7918 7903 '@babel/core': 7.26.0 7919 - '@babel/helper-plugin-utils': 7.25.9 7904 + '@babel/helper-plugin-utils': 7.27.1 7920 7905 7921 7906 '@babel/plugin-syntax-export-default-from@7.25.9(@babel/core@7.26.0)': 7922 7907 dependencies: 7923 7908 '@babel/core': 7.26.0 7924 - '@babel/helper-plugin-utils': 7.25.9 7909 + '@babel/helper-plugin-utils': 7.27.1 7925 7910 7926 7911 '@babel/plugin-syntax-flow@7.26.0(@babel/core@7.26.0)': 7927 7912 dependencies: 7928 7913 '@babel/core': 7.26.0 7929 - '@babel/helper-plugin-utils': 7.25.9 7914 + '@babel/helper-plugin-utils': 7.27.1 7930 7915 7931 7916 '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.0)': 7932 7917 dependencies: 7933 7918 '@babel/core': 7.26.0 7934 - '@babel/helper-plugin-utils': 7.25.9 7919 + '@babel/helper-plugin-utils': 7.27.1 7935 7920 7936 7921 '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.26.0)': 7937 7922 dependencies: 7938 7923 '@babel/core': 7.26.0 7939 - '@babel/helper-plugin-utils': 7.25.9 7924 + '@babel/helper-plugin-utils': 7.27.1 7940 7925 7941 7926 '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.26.0)': 7942 7927 dependencies: 7943 7928 '@babel/core': 7.26.0 7944 - '@babel/helper-plugin-utils': 7.25.9 7929 + '@babel/helper-plugin-utils': 7.27.1 7945 7930 7946 7931 '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.0)': 7947 7932 dependencies: ··· 7951 7936 '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.26.0)': 7952 7937 dependencies: 7953 7938 '@babel/core': 7.26.0 7954 - '@babel/helper-plugin-utils': 7.25.9 7939 + '@babel/helper-plugin-utils': 7.27.1 7955 7940 7956 7941 '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.26.0)': 7957 7942 dependencies: 7958 7943 '@babel/core': 7.26.0 7959 - '@babel/helper-plugin-utils': 7.25.9 7944 + '@babel/helper-plugin-utils': 7.27.1 7960 7945 7961 7946 '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.26.0)': 7962 7947 dependencies: 7963 7948 '@babel/core': 7.26.0 7964 - '@babel/helper-plugin-utils': 7.25.9 7949 + '@babel/helper-plugin-utils': 7.27.1 7965 7950 7966 7951 '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.26.0)': 7967 7952 dependencies: 7968 7953 '@babel/core': 7.26.0 7969 - '@babel/helper-plugin-utils': 7.25.9 7954 + '@babel/helper-plugin-utils': 7.27.1 7970 7955 7971 7956 '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.26.0)': 7972 7957 dependencies: 7973 7958 '@babel/core': 7.26.0 7974 - '@babel/helper-plugin-utils': 7.25.9 7959 + '@babel/helper-plugin-utils': 7.27.1 7975 7960 7976 7961 '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.26.0)': 7977 7962 dependencies: 7978 7963 '@babel/core': 7.26.0 7979 - '@babel/helper-plugin-utils': 7.25.9 7964 + '@babel/helper-plugin-utils': 7.27.1 7980 7965 7981 7966 '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.26.0)': 7982 7967 dependencies: 7983 7968 '@babel/core': 7.26.0 7984 - '@babel/helper-plugin-utils': 7.25.9 7969 + '@babel/helper-plugin-utils': 7.27.1 7985 7970 7986 7971 '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.26.0)': 7987 7972 dependencies: 7988 7973 '@babel/core': 7.26.0 7989 - '@babel/helper-plugin-utils': 7.25.9 7974 + '@babel/helper-plugin-utils': 7.27.1 7990 7975 7991 7976 '@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.0)': 7992 7977 dependencies: ··· 8001 7986 '@babel/plugin-transform-async-generator-functions@7.25.9(@babel/core@7.26.0)': 8002 7987 dependencies: 8003 7988 '@babel/core': 7.26.0 8004 - '@babel/helper-plugin-utils': 7.25.9 7989 + '@babel/helper-plugin-utils': 7.27.1 8005 7990 '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0) 8006 7991 '@babel/traverse': 7.26.4 8007 7992 transitivePeerDependencies: ··· 8011 7996 dependencies: 8012 7997 '@babel/core': 7.26.0 8013 7998 '@babel/helper-module-imports': 7.25.9 8014 - '@babel/helper-plugin-utils': 7.25.9 7999 + '@babel/helper-plugin-utils': 7.27.1 8015 8000 '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0) 8016 8001 transitivePeerDependencies: 8017 8002 - supports-color ··· 8019 8004 '@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.26.0)': 8020 8005 dependencies: 8021 8006 '@babel/core': 7.26.0 8022 - '@babel/helper-plugin-utils': 7.25.9 8007 + '@babel/helper-plugin-utils': 7.27.1 8023 8008 8024 8009 '@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.0)': 8025 8010 dependencies: ··· 8044 8029 '@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.0)': 8045 8030 dependencies: 8046 8031 '@babel/core': 7.26.0 8047 - '@babel/helper-plugin-utils': 7.25.9 8032 + '@babel/helper-plugin-utils': 7.27.1 8048 8033 '@babel/template': 7.25.9 8049 8034 8050 8035 '@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.0)': 8051 8036 dependencies: 8052 8037 '@babel/core': 7.26.0 8053 - '@babel/helper-plugin-utils': 7.25.9 8038 + '@babel/helper-plugin-utils': 7.27.1 8054 8039 8055 8040 '@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.26.0)': 8056 8041 dependencies: ··· 8060 8045 '@babel/plugin-transform-flow-strip-types@7.25.9(@babel/core@7.26.0)': 8061 8046 dependencies: 8062 8047 '@babel/core': 7.26.0 8063 - '@babel/helper-plugin-utils': 7.25.9 8048 + '@babel/helper-plugin-utils': 7.27.1 8064 8049 '@babel/plugin-syntax-flow': 7.26.0(@babel/core@7.26.0) 8065 8050 8066 8051 '@babel/plugin-transform-for-of@7.25.9(@babel/core@7.26.0)': 8067 8052 dependencies: 8068 8053 '@babel/core': 7.26.0 8069 - '@babel/helper-plugin-utils': 7.25.9 8054 + '@babel/helper-plugin-utils': 7.27.1 8070 8055 '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 8071 8056 transitivePeerDependencies: 8072 8057 - supports-color ··· 8075 8060 dependencies: 8076 8061 '@babel/core': 7.26.0 8077 8062 '@babel/helper-compilation-targets': 7.25.9 8078 - '@babel/helper-plugin-utils': 7.25.9 8063 + '@babel/helper-plugin-utils': 7.27.1 8079 8064 '@babel/traverse': 7.26.4 8080 8065 transitivePeerDependencies: 8081 8066 - supports-color ··· 8083 8068 '@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.0)': 8084 8069 dependencies: 8085 8070 '@babel/core': 7.26.0 8086 - '@babel/helper-plugin-utils': 7.25.9 8071 + '@babel/helper-plugin-utils': 7.27.1 8087 8072 8088 8073 '@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.26.0)': 8089 8074 dependencies: 8090 8075 '@babel/core': 7.26.0 8091 - '@babel/helper-plugin-utils': 7.25.9 8076 + '@babel/helper-plugin-utils': 7.27.1 8092 8077 8093 8078 '@babel/plugin-transform-modules-commonjs@7.26.3(@babel/core@7.26.0)': 8094 8079 dependencies: ··· 8102 8087 dependencies: 8103 8088 '@babel/core': 7.26.0 8104 8089 '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) 8105 - '@babel/helper-plugin-utils': 7.25.9 8090 + '@babel/helper-plugin-utils': 7.27.1 8106 8091 8107 8092 '@babel/plugin-transform-nullish-coalescing-operator@7.25.9(@babel/core@7.26.0)': 8108 8093 dependencies: ··· 8112 8097 '@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.26.0)': 8113 8098 dependencies: 8114 8099 '@babel/core': 7.26.0 8115 - '@babel/helper-plugin-utils': 7.25.9 8100 + '@babel/helper-plugin-utils': 7.27.1 8116 8101 8117 8102 '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.0)': 8118 8103 dependencies: 8119 8104 '@babel/core': 7.26.0 8120 8105 '@babel/helper-compilation-targets': 7.25.9 8121 - '@babel/helper-plugin-utils': 7.25.9 8106 + '@babel/helper-plugin-utils': 7.27.1 8122 8107 '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0) 8123 8108 8124 8109 '@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.26.0)': 8125 8110 dependencies: 8126 8111 '@babel/core': 7.26.0 8127 - '@babel/helper-plugin-utils': 7.25.9 8112 + '@babel/helper-plugin-utils': 7.27.1 8128 8113 8129 8114 '@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.26.0)': 8130 8115 dependencies: ··· 8137 8122 '@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.0)': 8138 8123 dependencies: 8139 8124 '@babel/core': 7.26.0 8140 - '@babel/helper-plugin-utils': 7.25.9 8125 + '@babel/helper-plugin-utils': 7.27.1 8141 8126 8142 8127 '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.0)': 8143 8128 dependencies: 8144 8129 '@babel/core': 7.26.0 8145 8130 '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0) 8146 - '@babel/helper-plugin-utils': 7.25.9 8131 + '@babel/helper-plugin-utils': 7.27.1 8147 8132 transitivePeerDependencies: 8148 8133 - supports-color 8149 8134 ··· 8152 8137 '@babel/core': 7.26.0 8153 8138 '@babel/helper-annotate-as-pure': 7.25.9 8154 8139 '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0) 8155 - '@babel/helper-plugin-utils': 7.25.9 8140 + '@babel/helper-plugin-utils': 7.27.1 8156 8141 transitivePeerDependencies: 8157 8142 - supports-color 8158 8143 8159 8144 '@babel/plugin-transform-react-display-name@7.25.9(@babel/core@7.26.0)': 8160 8145 dependencies: 8161 8146 '@babel/core': 7.26.0 8162 - '@babel/helper-plugin-utils': 7.25.9 8147 + '@babel/helper-plugin-utils': 7.27.1 8163 8148 8164 8149 '@babel/plugin-transform-react-jsx-development@7.25.9(@babel/core@7.26.0)': 8165 8150 dependencies: ··· 8171 8156 '@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.26.0)': 8172 8157 dependencies: 8173 8158 '@babel/core': 7.26.0 8174 - '@babel/helper-plugin-utils': 7.25.9 8159 + '@babel/helper-plugin-utils': 7.27.1 8175 8160 8176 8161 '@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.26.0)': 8177 8162 dependencies: 8178 8163 '@babel/core': 7.26.0 8179 - '@babel/helper-plugin-utils': 7.25.9 8164 + '@babel/helper-plugin-utils': 7.27.1 8180 8165 8181 8166 '@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.26.0)': 8182 8167 dependencies: 8183 8168 '@babel/core': 7.26.0 8184 8169 '@babel/helper-annotate-as-pure': 7.25.9 8185 8170 '@babel/helper-module-imports': 7.25.9 8186 - '@babel/helper-plugin-utils': 7.25.9 8171 + '@babel/helper-plugin-utils': 7.27.1 8187 8172 '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0) 8188 8173 '@babel/types': 7.26.3 8189 8174 transitivePeerDependencies: ··· 8193 8178 dependencies: 8194 8179 '@babel/core': 7.26.0 8195 8180 '@babel/helper-annotate-as-pure': 7.25.9 8196 - '@babel/helper-plugin-utils': 7.25.9 8181 + '@babel/helper-plugin-utils': 7.27.1 8197 8182 8198 8183 '@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.26.0)': 8199 8184 dependencies: 8200 8185 '@babel/core': 7.26.0 8201 - '@babel/helper-plugin-utils': 7.25.9 8186 + '@babel/helper-plugin-utils': 7.27.1 8202 8187 regenerator-transform: 0.15.2 8203 8188 8204 8189 '@babel/plugin-transform-runtime@7.25.9(@babel/core@7.26.0)': 8205 8190 dependencies: 8206 8191 '@babel/core': 7.26.0 8207 8192 '@babel/helper-module-imports': 7.25.9 8208 - '@babel/helper-plugin-utils': 7.25.9 8193 + '@babel/helper-plugin-utils': 7.27.1 8209 8194 babel-plugin-polyfill-corejs2: 0.4.12(@babel/core@7.26.0) 8210 8195 babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.0) 8211 8196 babel-plugin-polyfill-regenerator: 0.6.3(@babel/core@7.26.0) ··· 8221 8206 '@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.0)': 8222 8207 dependencies: 8223 8208 '@babel/core': 7.26.0 8224 - '@babel/helper-plugin-utils': 7.25.9 8209 + '@babel/helper-plugin-utils': 7.27.1 8225 8210 '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 8226 8211 transitivePeerDependencies: 8227 8212 - supports-color ··· 8229 8214 '@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.26.0)': 8230 8215 dependencies: 8231 8216 '@babel/core': 7.26.0 8232 - '@babel/helper-plugin-utils': 7.25.9 8217 + '@babel/helper-plugin-utils': 7.27.1 8233 8218 8234 8219 '@babel/plugin-transform-template-literals@7.25.9(@babel/core@7.26.0)': 8235 8220 dependencies: ··· 8256 8241 '@babel/preset-react@7.26.3(@babel/core@7.26.0)': 8257 8242 dependencies: 8258 8243 '@babel/core': 7.26.0 8259 - '@babel/helper-plugin-utils': 7.25.9 8244 + '@babel/helper-plugin-utils': 7.27.1 8260 8245 '@babel/helper-validator-option': 7.25.9 8261 8246 '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.26.0) 8262 8247 '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.0) ··· 8656 8641 8657 8642 '@eslint/js@8.57.1': {} 8658 8643 8659 - '@expo/cli@0.24.11': 8644 + '@expo/cli@0.24.13': 8660 8645 dependencies: 8661 8646 '@0no-co/graphql.web': 1.0.12 8662 8647 '@babel/runtime': 7.26.0 8663 8648 '@expo/code-signing-certificates': 0.0.5 8664 - '@expo/config': 11.0.8 8649 + '@expo/config': 11.0.10 8665 8650 '@expo/config-plugins': 10.0.2 8666 8651 '@expo/devcert': 1.1.4 8667 8652 '@expo/env': 1.0.5 8668 8653 '@expo/image-utils': 0.7.4 8669 8654 '@expo/json-file': 9.1.4 8670 - '@expo/metro-config': 0.20.13 8655 + '@expo/metro-config': 0.20.14 8671 8656 '@expo/osascript': 2.2.4 8672 8657 '@expo/package-manager': 1.8.4 8673 8658 '@expo/plist': 0.3.4 8674 - '@expo/prebuild-config': 9.0.5 8659 + '@expo/prebuild-config': 9.0.6 8675 8660 '@expo/spawn-async': 1.7.2 8676 8661 '@expo/ws-tunnel': 1.0.6 8677 8662 '@expo/xcpretty': 4.3.2 ··· 8692 8677 freeport-async: 2.0.0 8693 8678 getenv: 1.0.0 8694 8679 glob: 10.4.5 8695 - lan-network: 0.1.5 8680 + lan-network: 0.1.6 8696 8681 minimatch: 9.0.5 8697 8682 node-forge: 1.3.1 8698 8683 npm-package-arg: 11.0.3 ··· 8751 8736 8752 8737 '@expo/config-types@53.0.3': {} 8753 8738 8739 + '@expo/config-types@53.0.4': {} 8740 + 8741 + '@expo/config@11.0.10': 8742 + dependencies: 8743 + '@babel/code-frame': 7.10.4 8744 + '@expo/config-plugins': 10.0.2 8745 + '@expo/config-types': 53.0.4 8746 + '@expo/json-file': 9.1.4 8747 + deepmerge: 4.3.1 8748 + getenv: 1.0.0 8749 + glob: 10.4.5 8750 + require-from-string: 2.0.2 8751 + resolve-from: 5.0.0 8752 + resolve-workspace-root: 2.0.0 8753 + semver: 7.6.3 8754 + slugify: 1.6.6 8755 + sucrase: 3.35.0 8756 + transitivePeerDependencies: 8757 + - supports-color 8758 + 8754 8759 '@expo/config@11.0.8': 8755 8760 dependencies: 8756 8761 '@babel/code-frame': 7.10.4 ··· 8828 8833 '@babel/code-frame': 7.10.4 8829 8834 json5: 2.2.3 8830 8835 8831 - '@expo/metro-config@0.20.13': 8836 + '@expo/metro-config@0.20.14': 8832 8837 dependencies: 8833 8838 '@babel/core': 7.26.0 8834 8839 '@babel/generator': 7.26.3 8835 8840 '@babel/parser': 7.26.3 8836 8841 '@babel/types': 7.26.3 8837 - '@expo/config': 11.0.8 8842 + '@expo/config': 11.0.10 8838 8843 '@expo/env': 1.0.5 8839 8844 '@expo/json-file': 9.1.4 8840 8845 '@expo/spawn-async': 1.7.2 ··· 8891 8896 transitivePeerDependencies: 8892 8897 - supports-color 8893 8898 8899 + '@expo/prebuild-config@9.0.6': 8900 + dependencies: 8901 + '@expo/config': 11.0.10 8902 + '@expo/config-plugins': 10.0.2 8903 + '@expo/config-types': 53.0.4 8904 + '@expo/image-utils': 0.7.4 8905 + '@expo/json-file': 9.1.4 8906 + '@react-native/normalize-colors': 0.79.2 8907 + debug: 4.4.0 8908 + resolve-from: 5.0.0 8909 + semver: 7.6.3 8910 + xml2js: 0.6.0 8911 + transitivePeerDependencies: 8912 + - supports-color 8913 + 8894 8914 '@expo/sdk-runtime-versions@1.0.0': {} 8895 8915 8896 8916 '@expo/server@0.6.2': ··· 8906 8926 dependencies: 8907 8927 cross-spawn: 7.0.6 8908 8928 8909 - '@expo/vector-icons@14.1.0(expo-font@13.3.1(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)': 8929 + '@expo/vector-icons@14.1.0(expo-font@13.3.1(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)': 8910 8930 dependencies: 8911 - expo-font: 13.3.1(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0) 8931 + expo-font: 13.3.1(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0) 8912 8932 react: 19.0.0 8913 8933 react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 8914 8934 8915 - '@expo/vector-icons@14.1.0(expo-font@13.3.1(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)': 8935 + '@expo/vector-icons@14.1.0(expo-font@13.3.1(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)': 8916 8936 dependencies: 8917 - expo-font: 13.3.1(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0) 8937 + expo-font: 13.3.1(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0) 8918 8938 react: 19.0.0 8919 8939 react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 8920 8940 optional: true ··· 9573 9593 optionalDependencies: 9574 9594 '@types/react': 19.0.14 9575 9595 9576 - '@react-navigation/bottom-tabs@7.3.11(@react-navigation/native@7.1.7(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-screens@4.10.0(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)': 9596 + '@react-navigation/bottom-tabs@7.3.11(@react-navigation/native@7.1.8(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-screens@4.10.0(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)': 9577 9597 dependencies: 9578 - '@react-navigation/elements': 2.4.0(@react-navigation/native@7.1.7(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 9579 - '@react-navigation/native': 7.1.7(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 9598 + '@react-navigation/elements': 2.4.0(@react-navigation/native@7.1.8(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 9599 + '@react-navigation/native': 7.1.8(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 9580 9600 color: 4.2.3 9581 9601 react: 19.0.0 9582 9602 react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) ··· 9585 9605 transitivePeerDependencies: 9586 9606 - '@react-native-masked-view/masked-view' 9587 9607 9588 - '@react-navigation/core@7.3.1(react@19.0.0)': 9589 - dependencies: 9590 - '@react-navigation/routers': 7.1.2 9591 - escape-string-regexp: 4.0.0 9592 - nanoid: 3.3.8 9593 - query-string: 7.1.3 9594 - react: 19.0.0 9595 - react-is: 18.3.1 9596 - use-latest-callback: 0.2.3(react@19.0.0) 9597 - use-sync-external-store: 1.4.0(react@19.0.0) 9598 - 9599 - '@react-navigation/core@7.9.0(react@19.0.0)': 9608 + '@react-navigation/core@7.9.1(react@19.0.0)': 9600 9609 dependencies: 9601 - '@react-navigation/routers': 7.3.6 9610 + '@react-navigation/routers': 7.3.7 9602 9611 escape-string-regexp: 4.0.0 9603 9612 nanoid: 3.3.11 9604 9613 query-string: 7.1.3 ··· 9607 9616 use-latest-callback: 0.2.3(react@19.0.0) 9608 9617 use-sync-external-store: 1.5.0(react@19.0.0) 9609 9618 9610 - '@react-navigation/elements@2.4.0(@react-navigation/native@7.1.7(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)': 9619 + '@react-navigation/elements@2.4.0(@react-navigation/native@7.1.8(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)': 9611 9620 dependencies: 9612 - '@react-navigation/native': 7.1.7(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 9621 + '@react-navigation/native': 7.1.8(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 9613 9622 color: 4.2.3 9614 9623 react: 19.0.0 9615 9624 react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 9616 9625 react-native-safe-area-context: 5.4.0(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 9617 9626 9618 - '@react-navigation/native-stack@7.3.11(@react-navigation/native@7.1.7(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-screens@4.10.0(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)': 9627 + '@react-navigation/native-stack@7.3.11(@react-navigation/native@7.1.8(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-screens@4.10.0(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)': 9619 9628 dependencies: 9620 - '@react-navigation/elements': 2.4.0(@react-navigation/native@7.1.7(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 9621 - '@react-navigation/native': 7.1.7(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 9629 + '@react-navigation/elements': 2.4.0(@react-navigation/native@7.1.8(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 9630 + '@react-navigation/native': 7.1.8(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 9622 9631 react: 19.0.0 9623 9632 react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 9624 9633 react-native-safe-area-context: 5.4.0(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) ··· 9627 9636 transitivePeerDependencies: 9628 9637 - '@react-native-masked-view/masked-view' 9629 9638 9630 - '@react-navigation/native@7.0.14(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)': 9631 - dependencies: 9632 - '@react-navigation/core': 7.3.1(react@19.0.0) 9633 - escape-string-regexp: 4.0.0 9634 - fast-deep-equal: 3.1.3 9635 - nanoid: 3.3.8 9636 - react: 19.0.0 9637 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 9638 - use-latest-callback: 0.2.3(react@19.0.0) 9639 - 9640 - '@react-navigation/native@7.1.7(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)': 9639 + '@react-navigation/native@7.1.8(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)': 9641 9640 dependencies: 9642 - '@react-navigation/core': 7.9.0(react@19.0.0) 9641 + '@react-navigation/core': 7.9.1(react@19.0.0) 9643 9642 escape-string-regexp: 4.0.0 9644 9643 fast-deep-equal: 3.1.3 9645 9644 nanoid: 3.3.11 ··· 9647 9646 react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 9648 9647 use-latest-callback: 0.2.3(react@19.0.0) 9649 9648 9650 - '@react-navigation/routers@7.1.2': 9651 - dependencies: 9652 - nanoid: 3.3.8 9653 - 9654 - '@react-navigation/routers@7.3.6': 9649 + '@react-navigation/routers@7.3.7': 9655 9650 dependencies: 9656 9651 nanoid: 3.3.11 9657 9652 ··· 11032 11027 transitivePeerDependencies: 11033 11028 - supports-color 11034 11029 11035 - drizzle-orm@0.38.4(@libsql/client@0.14.0)(@types/react@19.0.14)(expo-sqlite@15.2.9(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(postgres@3.4.5)(react@19.0.0): 11030 + drizzle-orm@0.38.4(@libsql/client@0.14.0)(@types/react@19.0.14)(expo-sqlite@15.2.9(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(postgres@3.4.5)(react@19.0.0): 11036 11031 optionalDependencies: 11037 11032 '@libsql/client': 0.14.0 11038 11033 '@types/react': 19.0.14 11039 - expo-sqlite: 15.2.9(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11034 + expo-sqlite: 15.2.9(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11040 11035 postgres: 3.4.5 11041 11036 react: 19.0.0 11042 11037 ··· 11612 11607 11613 11608 exit-hook@1.1.1: {} 11614 11609 11615 - expo-asset@11.1.5(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0): 11610 + expo-asset@11.1.5(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0): 11616 11611 dependencies: 11617 11612 '@expo/image-utils': 0.7.4 11618 - expo: 53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11619 - expo-constants: 17.1.5(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)) 11613 + expo: 53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11614 + expo-constants: 17.1.6(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)) 11620 11615 react: 19.0.0 11621 11616 react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 11622 11617 transitivePeerDependencies: 11623 11618 - supports-color 11624 11619 11625 - expo-asset@11.1.5(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0): 11620 + expo-asset@11.1.5(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0): 11626 11621 dependencies: 11627 11622 '@expo/image-utils': 0.7.4 11628 - expo: 53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11629 - expo-constants: 17.1.5(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)) 11623 + expo: 53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11624 + expo-constants: 17.1.6(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)) 11630 11625 react: 19.0.0 11631 11626 react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 11632 11627 transitivePeerDependencies: 11633 11628 - supports-color 11634 11629 optional: true 11635 11630 11636 - expo-constants@17.1.5(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)): 11631 + expo-constants@17.1.6(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)): 11637 11632 dependencies: 11638 - '@expo/config': 11.0.8 11633 + '@expo/config': 11.0.10 11639 11634 '@expo/env': 1.0.5 11640 - expo: 53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11635 + expo: 53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11641 11636 react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 11642 11637 transitivePeerDependencies: 11643 11638 - supports-color 11644 11639 11645 - expo-constants@17.1.5(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)): 11640 + expo-constants@17.1.6(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)): 11646 11641 dependencies: 11647 - '@expo/config': 11.0.8 11642 + '@expo/config': 11.0.10 11648 11643 '@expo/env': 1.0.5 11649 - expo: 53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11644 + expo: 53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11650 11645 react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 11651 11646 transitivePeerDependencies: 11652 11647 - supports-color 11653 11648 optional: true 11654 11649 11655 - expo-file-system@18.1.9(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)): 11650 + expo-file-system@18.1.10(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)): 11656 11651 dependencies: 11657 - expo: 53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11652 + expo: 53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11658 11653 react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 11659 11654 11660 - expo-file-system@18.1.9(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)): 11655 + expo-file-system@18.1.10(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)): 11661 11656 dependencies: 11662 - expo: 53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11657 + expo: 53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11663 11658 react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 11664 11659 optional: true 11665 11660 11666 - expo-font@13.3.1(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0): 11661 + expo-font@13.3.1(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0): 11667 11662 dependencies: 11668 - expo: 53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11663 + expo: 53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11669 11664 fontfaceobserver: 2.3.0 11670 11665 react: 19.0.0 11671 11666 11672 - expo-font@13.3.1(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0): 11667 + expo-font@13.3.1(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0): 11673 11668 dependencies: 11674 - expo: 53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11669 + expo: 53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11675 11670 fontfaceobserver: 2.3.0 11676 11671 react: 19.0.0 11677 11672 optional: true 11678 11673 11679 - expo-image-loader@5.1.0(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)): 11674 + expo-image-loader@5.1.0(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)): 11680 11675 dependencies: 11681 - expo: 53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11676 + expo: 53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11682 11677 11683 - expo-image-picker@16.1.4(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)): 11678 + expo-image-picker@16.1.4(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)): 11684 11679 dependencies: 11685 - expo: 53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11686 - expo-image-loader: 5.1.0(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)) 11680 + expo: 53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11681 + expo-image-loader: 5.1.0(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)) 11687 11682 11688 - expo-keep-awake@14.1.4(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0): 11683 + expo-keep-awake@14.1.4(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0): 11689 11684 dependencies: 11690 - expo: 53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11685 + expo: 53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11691 11686 react: 19.0.0 11692 11687 11693 - expo-keep-awake@14.1.4(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0): 11688 + expo-keep-awake@14.1.4(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0): 11694 11689 dependencies: 11695 - expo: 53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11690 + expo: 53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11696 11691 react: 19.0.0 11697 11692 optional: true 11698 11693 11699 - expo-linking@7.1.4(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0): 11694 + expo-linking@7.1.4(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0): 11700 11695 dependencies: 11701 - expo-constants: 17.1.5(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)) 11696 + expo-constants: 17.1.6(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)) 11702 11697 invariant: 2.2.4 11703 11698 react: 19.0.0 11704 11699 react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) ··· 11706 11701 - expo 11707 11702 - supports-color 11708 11703 11709 - expo-modules-autolinking@2.1.9: 11704 + expo-modules-autolinking@2.1.10: 11710 11705 dependencies: 11711 11706 '@expo/spawn-async': 1.7.2 11712 11707 chalk: 4.1.2 ··· 11716 11711 require-from-string: 2.0.2 11717 11712 resolve-from: 5.0.0 11718 11713 11719 - expo-modules-core@2.3.12: 11714 + expo-modules-core@2.3.13: 11720 11715 dependencies: 11721 11716 invariant: 2.2.4 11722 11717 11723 - expo-router@5.0.5(kv4fw3omscodrypffjuusio3fi): 11718 + expo-router@5.0.6(t72pujrpo4n6qjiotumnev34mm): 11724 11719 dependencies: 11725 11720 '@expo/metro-runtime': 5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)) 11726 11721 '@expo/server': 0.6.2 11727 11722 '@radix-ui/react-slot': 1.2.0(@types/react@19.0.14)(react@19.0.0) 11728 - '@react-navigation/bottom-tabs': 7.3.11(@react-navigation/native@7.1.7(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-screens@4.10.0(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11729 - '@react-navigation/native': 7.1.7(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11730 - '@react-navigation/native-stack': 7.3.11(@react-navigation/native@7.1.7(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-screens@4.10.0(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11723 + '@react-navigation/bottom-tabs': 7.3.11(@react-navigation/native@7.1.8(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-screens@4.10.0(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11724 + '@react-navigation/native': 7.1.8(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11725 + '@react-navigation/native-stack': 7.3.11(@react-navigation/native@7.1.8(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-screens@4.10.0(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11731 11726 client-only: 0.0.1 11732 - expo: 53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11733 - expo-constants: 17.1.5(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)) 11734 - expo-linking: 7.1.4(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11727 + expo: 53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11728 + expo-constants: 17.1.6(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)) 11729 + expo-linking: 7.1.4(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11735 11730 invariant: 2.2.4 11736 11731 react-fast-compare: 3.2.2 11737 - react-native-is-edge-to-edge: 1.1.6(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11732 + react-native-is-edge-to-edge: 1.1.7(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11738 11733 react-native-safe-area-context: 5.4.0(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11739 11734 react-native-screens: 4.10.0(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11740 11735 schema-utils: 4.3.0 ··· 11750 11745 - react-native 11751 11746 - supports-color 11752 11747 11753 - expo-splash-screen@0.30.8(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)): 11748 + expo-splash-screen@0.30.8(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)): 11754 11749 dependencies: 11755 11750 '@expo/prebuild-config': 9.0.5 11756 - expo: 53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11751 + expo: 53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11757 11752 transitivePeerDependencies: 11758 11753 - supports-color 11759 11754 11760 - expo-sqlite@15.2.9(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0): 11755 + expo-sqlite@15.2.9(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0): 11761 11756 dependencies: 11762 - expo: 53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11757 + expo: 53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11763 11758 react: 19.0.0 11764 11759 react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 11765 11760 11766 - expo-sqlite@15.2.9(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0): 11761 + expo-sqlite@15.2.9(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0): 11767 11762 dependencies: 11768 - expo: 53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11763 + expo: 53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11769 11764 react: 19.0.0 11770 11765 react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 11771 11766 optional: true ··· 11777 11772 react-native-edge-to-edge: 1.6.0(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11778 11773 react-native-is-edge-to-edge: 1.1.6(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11779 11774 11780 - expo-system-ui@5.0.7(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)): 11775 + expo-system-ui@5.0.7(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)): 11781 11776 dependencies: 11782 11777 '@react-native/normalize-colors': 0.79.2 11783 11778 debug: 4.4.0 11784 - expo: 53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11779 + expo: 53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11785 11780 react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 11786 11781 optionalDependencies: 11787 11782 react-native-web: 0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 11788 11783 transitivePeerDependencies: 11789 11784 - supports-color 11790 11785 11791 - expo-web-browser@14.1.6(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)): 11786 + expo-web-browser@14.1.6(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)): 11792 11787 dependencies: 11793 - expo: 53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11788 + expo: 53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11794 11789 react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 11795 11790 11796 - expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0): 11791 + expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0): 11797 11792 dependencies: 11798 11793 '@babel/runtime': 7.26.0 11799 - '@expo/cli': 0.24.11 11800 - '@expo/config': 11.0.8 11794 + '@expo/cli': 0.24.13 11795 + '@expo/config': 11.0.10 11801 11796 '@expo/config-plugins': 10.0.2 11802 11797 '@expo/fingerprint': 0.12.4 11803 - '@expo/metro-config': 0.20.13 11804 - '@expo/vector-icons': 14.1.0(expo-font@13.3.1(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11798 + '@expo/metro-config': 0.20.14 11799 + '@expo/vector-icons': 14.1.0(expo-font@13.3.1(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11805 11800 babel-preset-expo: 13.1.11(@babel/core@7.26.0)(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206) 11806 - expo-asset: 11.1.5(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11807 - expo-constants: 17.1.5(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)) 11808 - expo-file-system: 18.1.9(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)) 11809 - expo-font: 13.3.1(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0) 11810 - expo-keep-awake: 14.1.4(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0) 11811 - expo-modules-autolinking: 2.1.9 11812 - expo-modules-core: 2.3.12 11801 + expo-asset: 11.1.5(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11802 + expo-constants: 17.1.6(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)) 11803 + expo-file-system: 18.1.10(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)) 11804 + expo-font: 13.3.1(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0) 11805 + expo-keep-awake: 14.1.4(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0) 11806 + expo-modules-autolinking: 2.1.10 11807 + expo-modules-core: 2.3.13 11813 11808 react: 19.0.0 11814 11809 react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 11815 11810 react-native-edge-to-edge: 1.6.0(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) ··· 11824 11819 - supports-color 11825 11820 - utf-8-validate 11826 11821 11827 - expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0): 11822 + expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0): 11828 11823 dependencies: 11829 11824 '@babel/runtime': 7.26.0 11830 - '@expo/cli': 0.24.11 11831 - '@expo/config': 11.0.8 11825 + '@expo/cli': 0.24.13 11826 + '@expo/config': 11.0.10 11832 11827 '@expo/config-plugins': 10.0.2 11833 11828 '@expo/fingerprint': 0.12.4 11834 - '@expo/metro-config': 0.20.13 11835 - '@expo/vector-icons': 14.1.0(expo-font@13.3.1(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11829 + '@expo/metro-config': 0.20.14 11830 + '@expo/vector-icons': 14.1.0(expo-font@13.3.1(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11836 11831 babel-preset-expo: 13.1.11(@babel/core@7.26.0)(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206) 11837 - expo-asset: 11.1.5(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11838 - expo-constants: 17.1.5(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)) 11839 - expo-file-system: 18.1.9(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)) 11840 - expo-font: 13.3.1(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0) 11841 - expo-keep-awake: 14.1.4(expo@53.0.7(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0) 11842 - expo-modules-autolinking: 2.1.9 11843 - expo-modules-core: 2.3.12 11832 + expo-asset: 11.1.5(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 11833 + expo-constants: 17.1.6(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)) 11834 + expo-file-system: 18.1.10(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)) 11835 + expo-font: 13.3.1(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0) 11836 + expo-keep-awake: 14.1.4(expo@53.0.9(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0) 11837 + expo-modules-autolinking: 2.1.10 11838 + expo-modules-core: 2.3.13 11844 11839 react: 19.0.0 11845 11840 react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 11846 11841 react-native-edge-to-edge: 1.6.0(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) ··· 12746 12741 12747 12742 kleur@3.0.3: {} 12748 12743 12749 - lan-network@0.1.5: {} 12744 + lan-network@0.1.6: {} 12750 12745 12751 12746 leven@3.1.0: {} 12752 12747 ··· 13159 13154 13160 13155 nanoid@3.3.11: {} 13161 13156 13162 - nanoid@3.3.8: {} 13163 - 13164 - nativewind@4.1.23(react-native-reanimated@3.17.5(@babel/core@7.26.0)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-svg@15.11.2(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(tailwindcss@3.4.16(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3))): 13157 + nativewind@4.1.23(react-native-reanimated@3.17.5(@babel/core@7.26.0)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-svg@15.11.2(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3))): 13165 13158 dependencies: 13166 13159 comment-json: 4.2.5 13167 13160 debug: 4.4.0 13168 - react-native-css-interop: 0.1.22(react-native-reanimated@3.17.5(@babel/core@7.26.0)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-svg@15.11.2(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(tailwindcss@3.4.16(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3))) 13169 - tailwindcss: 3.4.16(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)) 13161 + react-native-css-interop: 0.1.22(react-native-reanimated@3.17.5(@babel/core@7.26.0)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-svg@15.11.2(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3))) 13162 + tailwindcss: 3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)) 13170 13163 transitivePeerDependencies: 13171 13164 - react 13172 13165 - react-native ··· 13556 13549 13557 13550 postcss@8.4.49: 13558 13551 dependencies: 13559 - nanoid: 3.3.8 13552 + nanoid: 3.3.11 13560 13553 picocolors: 1.1.1 13561 13554 source-map-js: 1.2.1 13562 13555 ··· 13695 13688 13696 13689 react-is@19.1.0: {} 13697 13690 13698 - react-native-css-interop@0.1.22(react-native-reanimated@3.17.5(@babel/core@7.26.0)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-svg@15.11.2(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(tailwindcss@3.4.16(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3))): 13691 + react-native-css-interop@0.1.22(react-native-reanimated@3.17.5(@babel/core@7.26.0)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-svg@15.11.2(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3))): 13699 13692 dependencies: 13700 13693 '@babel/helper-module-imports': 7.25.9 13701 13694 '@babel/traverse': 7.26.4 ··· 13706 13699 react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 13707 13700 react-native-reanimated: 3.17.5(@babel/core@7.26.0)(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 13708 13701 semver: 7.6.3 13709 - tailwindcss: 3.4.16(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)) 13702 + tailwindcss: 3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)) 13710 13703 optionalDependencies: 13711 13704 react-native-safe-area-context: 5.4.0(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 13712 13705 react-native-svg: 15.11.2(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) ··· 14481 14474 14482 14475 tailwind-merge@2.5.5: {} 14483 14476 14484 - tailwindcss-animate@1.0.7(tailwindcss@3.4.16(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3))): 14477 + tailwindcss-animate@1.0.7(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3))): 14485 14478 dependencies: 14486 - tailwindcss: 3.4.16(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)) 14479 + tailwindcss: 3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)) 14487 14480 14488 - tailwindcss@3.4.16(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)): 14481 + tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)): 14489 14482 dependencies: 14490 14483 '@alloc/quick-lru': 5.2.0 14491 14484 arg: 5.0.2 ··· 14886 14879 tslib: 2.8.1 14887 14880 optionalDependencies: 14888 14881 '@types/react': 19.0.14 14889 - 14890 - use-sync-external-store@1.4.0(react@19.0.0): 14891 - dependencies: 14892 - react: 19.0.0 14893 14882 14894 14883 use-sync-external-store@1.5.0(react@19.0.0): 14895 14884 dependencies: