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

bump and fix ios build

Changed files
+355 -362
apps
amethyst
+3 -19
apps/amethyst/hooks/useIsMobile.tsx
··· 1 - import { useEffect, useState } from "react"; 2 - import { Platform } from "react-native"; 3 - 4 - export const isMobileInner = () => 5 - Platform.OS === "web" && window.innerWidth > 1024; 6 7 export default function useIsMobile() { 8 - const [isMobile, setIsMobile] = useState(isMobileInner()); 9 - 10 - useEffect(() => { 11 - const handleResize = () => { 12 - setIsMobile(isMobileInner()); 13 - }; 14 - 15 - window.addEventListener("resize", handleResize); 16 17 - return () => { 18 - window.removeEventListener("resize", handleResize); 19 - }; 20 - }, []); 21 - 22 - return isMobile; 23 }
··· 1 + import { useWindowDimensions } from "react-native"; 2 3 export default function useIsMobile() { 4 + const { width } = useWindowDimensions(); 5 6 + return width < 1024; 7 }
+2 -1
apps/amethyst/package.json
··· 56 "react": "19.0.0", 57 "react-compiler-runtime": "19.0.0-beta-37ed2a7-20241206", 58 "react-dom": "19.0.0", 59 - "react-native": "0.79.2", 60 "react-native-css-interop": "^0.1.18", 61 "react-native-gesture-handler": "~2.24.0", 62 "react-native-reanimated": "~3.17.5", 63 "react-native-safe-area-context": "5.4.0", 64 "react-native-screens": "~4.10.0",
··· 56 "react": "19.0.0", 57 "react-compiler-runtime": "19.0.0-beta-37ed2a7-20241206", 58 "react-dom": "19.0.0", 59 + "react-native": "0.79.6", 60 "react-native-css-interop": "^0.1.18", 61 "react-native-gesture-handler": "~2.24.0", 62 + "react-native-quick-crypto": "^0.7.17", 63 "react-native-reanimated": "~3.17.5", 64 "react-native-safe-area-context": "5.4.0", 65 "react-native-screens": "~4.10.0",
+350 -342
pnpm-lock.yaml
··· 38 dependencies: 39 '@aquareum/atproto-oauth-client-react-native': 40 specifier: ^0.0.1 41 - version: 0.0.1(expo@53.0.20(@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) 42 '@atproto/api': 43 specifier: ^0.15.14 44 version: 0.15.27 ··· 53 version: 7.27.1(@babel/core@7.26.0) 54 '@expo/vector-icons': 55 specifier: ^14.1.0 56 - version: 14.1.0(expo-font@13.3.1(expo@53.0.20(@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) 57 '@gorhom/bottom-sheet': 58 specifier: ^5.1.3 59 - version: 5.1.6(@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) 60 '@react-native-async-storage/async-storage': 61 specifier: 2.1.2 62 - version: 2.1.2(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)) 63 '@react-native-picker/picker': 64 specifier: ^2.11.0 65 - 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) 66 '@react-navigation/native': 67 specifier: ^7.1.8 68 - version: 7.1.10(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 69 '@rn-primitives/avatar': 70 specifier: ^1.1.0 71 - 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) 72 '@rn-primitives/hover-card': 73 specifier: ^1.1.0 74 - version: 1.1.0(@rn-primitives/portal@1.3.0(@types/react@19.0.14)(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)(use-sync-external-store@1.5.0(react@19.0.0)))(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@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))(react@19.0.0) 75 '@rn-primitives/portal': 76 specifier: ^1.2.0 77 - version: 1.3.0(@types/react@19.0.14)(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)(use-sync-external-store@1.5.0(react@19.0.0)) 78 '@rn-primitives/progress': 79 specifier: ^1.1.0 80 - version: 1.1.0(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@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))(react@19.0.0) 81 '@rn-primitives/slot': 82 specifier: ^1.1.0 83 - 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) 84 '@rn-primitives/tooltip': 85 specifier: ^1.1.0 86 - version: 1.1.0(@rn-primitives/portal@1.3.0(@types/react@19.0.14)(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)(use-sync-external-store@1.5.0(react@19.0.0)))(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@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))(react@19.0.0) 87 '@rn-primitives/types': 88 specifier: ^1.1.0 89 - 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) 90 '@teal/lexicons': 91 specifier: workspace:* 92 version: link:../../packages/lexicons ··· 101 version: 19.0.0-beta-37ed2a7-20241206(eslint@8.57.1) 102 expo: 103 specifier: ~53.0.20 104 - version: 53.0.20(@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 expo-constants: 106 specifier: ^17.1.6 107 - version: 17.1.6(expo@53.0.20(@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)) 108 expo-font: 109 specifier: ~13.3.1 110 - version: 13.3.1(expo@53.0.20(@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) 111 expo-image-picker: 112 specifier: ^16.1.4 113 - version: 16.1.4(expo@53.0.20(@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 expo-linking: 115 specifier: ~7.1.4 116 - version: 7.1.4(expo@53.0.20(@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 expo-router: 118 specifier: ~5.0.6 119 - version: 5.0.6(swn7sosa2qiea4b4emiyaeta54) 120 expo-splash-screen: 121 specifier: ~0.30.8 122 - version: 0.30.8(expo@53.0.20(@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)) 123 expo-sqlite: 124 specifier: ^15.2.9 125 - version: 15.2.9(expo@53.0.20(@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) 126 expo-status-bar: 127 specifier: ~2.2.3 128 - 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) 129 expo-system-ui: 130 specifier: ~5.0.7 131 - version: 5.0.7(expo@53.0.20(@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)) 132 expo-web-browser: 133 specifier: ~14.1.6 134 - version: 14.1.6(expo@53.0.20(@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)) 135 jest: 136 specifier: ^30.2.0 137 version: 30.2.0(@types/node@22.10.2)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)) 138 lucide-react-native: 139 specifier: ^0.507.0 140 - 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) 141 nativewind: 142 specifier: ^4.1.23 143 - 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))) 144 react: 145 specifier: 19.0.0 146 version: 19.0.0 ··· 151 specifier: 19.0.0 152 version: 19.0.0(react@19.0.0) 153 react-native: 154 - specifier: 0.79.2 155 - version: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 156 react-native-css-interop: 157 specifier: ^0.1.18 158 - version: 0.1.18(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))) 159 react-native-gesture-handler: 160 specifier: ~2.24.0 161 - version: 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) 162 react-native-reanimated: 163 specifier: ~3.17.5 164 - version: 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) 165 react-native-safe-area-context: 166 specifier: 5.4.0 167 - version: 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) 168 react-native-screens: 169 specifier: ~4.10.0 170 - version: 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) 171 react-native-svg: 172 specifier: 15.11.2 173 - version: 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) 174 react-native-web: 175 specifier: ~0.20.0 176 version: 0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) ··· 189 version: 7.26.0 190 '@expo/metro-runtime': 191 specifier: ~5.0.4 192 - version: 5.0.4(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)) 193 '@expo/prebuild-config': 194 specifier: ^9.0.5 195 version: 9.0.11 ··· 240 dependencies: 241 jest-expo: 242 specifier: ^54.0.12 243 - version: 54.0.12(@babel/core@7.28.4)(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(jest@30.2.0(@types/node@20.17.10))(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(webpack@5.97.1) 244 245 packages/lexicons: 246 dependencies: ··· 1816 react: '*' 1817 react-native: '*' 1818 1819 - '@react-native/assets-registry@0.79.2': 1820 - resolution: {integrity: sha512-5h2Z7/+/HL/0h88s0JHOdRCW4CXMCJoROxqzHqxdrjGL6EBD1DdaB4ZqkCOEVSW4Vjhir5Qb97C8i/MPWEYPtg==} 1821 engines: {node: '>=18'} 1822 1823 '@react-native/babel-plugin-codegen@0.79.5': ··· 1830 peerDependencies: 1831 '@babel/core': '*' 1832 1833 - '@react-native/codegen@0.79.2': 1834 - resolution: {integrity: sha512-8JTlGLuLi1p8Jx2N/enwwEd7/2CfrqJpv90Cp77QLRX3VHF2hdyavRIxAmXMwN95k+Me7CUuPtqn2X3IBXOWYg==} 1835 engines: {node: '>=18'} 1836 peerDependencies: 1837 '@babel/core': '*' 1838 1839 - '@react-native/codegen@0.79.5': 1840 - resolution: {integrity: sha512-FO5U1R525A1IFpJjy+KVznEinAgcs3u7IbnbRJUG9IH/MBXi2lEU2LtN+JarJ81MCfW4V2p0pg6t/3RGHFRrlQ==} 1841 engines: {node: '>=18'} 1842 peerDependencies: 1843 '@babel/core': '*' 1844 1845 - '@react-native/community-cli-plugin@0.79.2': 1846 - resolution: {integrity: sha512-E+YEY2dL+68HyR2iahsZdyBKBUi9QyPyaN9vsnda1jNgCjNpSPk2yAF5cXsho+zKK5ZQna3JSeE1Kbi2IfGJbw==} 1847 engines: {node: '>=18'} 1848 peerDependencies: 1849 '@react-native-community/cli': '*' 1850 peerDependenciesMeta: 1851 '@react-native-community/cli': 1852 optional: true 1853 - 1854 - '@react-native/debugger-frontend@0.79.2': 1855 - resolution: {integrity: sha512-cGmC7X6kju76DopSBNc+PRAEetbd7TWF9J9o84hOp/xL3ahxR2kuxJy0oJX8Eg8oehhGGEXTuMKHzNa3rDBeSg==} 1856 - engines: {node: '>=18'} 1857 1858 '@react-native/debugger-frontend@0.79.5': 1859 resolution: {integrity: sha512-WQ49TRpCwhgUYo5/n+6GGykXmnumpOkl4Lr2l2o2buWU9qPOwoiBqJAtmWEXsAug4ciw3eLiVfthn5ufs0VB0A==} 1860 engines: {node: '>=18'} 1861 1862 - '@react-native/dev-middleware@0.79.2': 1863 - resolution: {integrity: sha512-9q4CpkklsAs1L0Bw8XYCoqqyBSrfRALGEw4/r0EkR38Y/6fVfNfdsjSns0pTLO6h0VpxswK34L/hm4uK3MoLHw==} 1864 engines: {node: '>=18'} 1865 1866 '@react-native/dev-middleware@0.79.5': 1867 resolution: {integrity: sha512-U7r9M/SEktOCP/0uS6jXMHmYjj4ESfYCkNAenBjFjjsRWekiHE+U/vRMeO+fG9gq4UCcBAUISClkQCowlftYBw==} 1868 engines: {node: '>=18'} 1869 1870 - '@react-native/gradle-plugin@0.79.2': 1871 - resolution: {integrity: sha512-6MJFemrwR0bOT0QM+2BxX9k3/pvZQNmJ3Js5pF/6owsA0cUDiCO57otiEU8Fz+UywWEzn1FoQfOfQ8vt2GYmoA==} 1872 engines: {node: '>=18'} 1873 1874 - '@react-native/js-polyfills@0.79.2': 1875 - resolution: {integrity: sha512-IaY87Ckd4GTPMkO1/Fe8fC1IgIx3vc3q9Tyt/6qS3Mtk9nC0x9q4kSR5t+HHq0/MuvGtu8HpdxXGy5wLaM+zUw==} 1876 engines: {node: '>=18'} 1877 1878 '@react-native/normalize-colors@0.74.88': ··· 1884 '@react-native/normalize-colors@0.79.5': 1885 resolution: {integrity: sha512-nGXMNMclZgzLUxijQQ38Dm3IAEhgxuySAWQHnljFtfB0JdaMwpe0Ox9H7Tp2OgrEA+EMEv+Od9ElKlHwGKmmvQ==} 1886 1887 '@react-native/typescript-config@0.76.5': 1888 resolution: {integrity: sha512-dRbY4XQTUUxR5Oq+S+2/5JQVU6WL0qvNnAz51jiXllC+hp5L4bljSxlzaj5CJ9vzGNFzm56m5Y9Q6MltoIU4Cw==} 1889 1890 - '@react-native/virtualized-lists@0.79.2': 1891 - resolution: {integrity: sha512-9G6ROJeP+rdw9Bvr5ruOlag11ET7j1z/En1riFFNo6W3xZvJY+alCuH1ttm12y9+zBm4n8jwCk4lGhjYaV4dKw==} 1892 engines: {node: '>=18'} 1893 peerDependencies: 1894 '@types/react': ^19.0.0 ··· 5766 react: '*' 5767 react-native: '*' 5768 5769 - react-native-quick-crypto@0.7.10: 5770 - resolution: {integrity: sha512-ziupKopD1o58v+ywL8aTvJMXBpGf89xLQc3JKG5CRSdEUfTUu5e4ru43KIXrG6uleCX8pcgD6e6RsMqrdEy0zw==} 5771 - peerDependencies: 5772 - react: '*' 5773 - react-native: '*' 5774 5775 react-native-reanimated@3.17.5: 5776 resolution: {integrity: sha512-SxBK7wQfJ4UoWoJqQnmIC7ZjuNgVb9rcY5Xc67upXAFKftWg0rnkknTw6vgwnjRcvYThrjzUVti66XoZdDJGtw==} ··· 5803 react: ^18.0.0 || ^19.0.0 5804 react-dom: ^18.0.0 || ^19.0.0 5805 5806 - react-native@0.79.2: 5807 - resolution: {integrity: sha512-AnGzb56JvU5YCL7cAwg10+ewDquzvmgrMddiBM0GAWLwQM/6DJfGd2ZKrMuKKehHerpDDZgG+EY64gk3x3dEkw==} 5808 engines: {node: '>=18'} 5809 hasBin: true 5810 peerDependencies: ··· 7029 '@jridgewell/gen-mapping': 0.3.5 7030 '@jridgewell/trace-mapping': 0.3.25 7031 7032 - '@aquareum/atproto-oauth-client-react-native@0.0.1(expo@53.0.20(@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)': 7033 dependencies: 7034 '@atproto-labs/did-resolver': 0.1.5 7035 '@atproto-labs/handle-resolver-node': 0.1.7 ··· 7044 '@atproto/oauth-types': 0.2.1 7045 abortcontroller-polyfill: 1.7.8 7046 event-target-shim: 6.0.2 7047 - expo-sqlite: 15.2.9(expo@53.0.20(@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) 7048 jose: 5.9.6 7049 - 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) 7050 transitivePeerDependencies: 7051 - expo 7052 - react ··· 7514 7515 '@babel/helper-member-expression-to-functions@7.25.9': 7516 dependencies: 7517 - '@babel/traverse': 7.26.4 7518 '@babel/types': 7.28.4 7519 transitivePeerDependencies: 7520 - supports-color ··· 7932 '@babel/core': 7.26.0 7933 '@babel/helper-plugin-utils': 7.25.9 7934 '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0) 7935 - '@babel/traverse': 7.26.4 7936 transitivePeerDependencies: 7937 - supports-color 7938 ··· 7941 '@babel/core': 7.28.4 7942 '@babel/helper-plugin-utils': 7.25.9 7943 '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.28.4) 7944 - '@babel/traverse': 7.26.4 7945 transitivePeerDependencies: 7946 - supports-color 7947 ··· 8078 '@babel/core': 7.26.0 8079 '@babel/helper-compilation-targets': 7.25.9 8080 '@babel/helper-plugin-utils': 7.25.9 8081 - '@babel/traverse': 7.26.4 8082 transitivePeerDependencies: 8083 - supports-color 8084 ··· 8087 '@babel/core': 7.28.4 8088 '@babel/helper-compilation-targets': 7.25.9 8089 '@babel/helper-plugin-utils': 7.25.9 8090 - '@babel/traverse': 7.26.4 8091 transitivePeerDependencies: 8092 - supports-color 8093 ··· 8548 '@cbor-extract/cbor-extract-win32-x64@2.2.0': 8549 optional: true 8550 8551 - '@craftzdog/react-native-buffer@6.0.5(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)': 8552 dependencies: 8553 ieee754: 1.2.1 8554 - react-native-quick-base64: 2.1.2(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 8555 transitivePeerDependencies: 8556 - react 8557 - react-native ··· 8693 getenv: 1.0.0 8694 glob: 10.4.5 8695 resolve-from: 5.0.0 8696 - semver: 7.6.3 8697 slash: 3.0.0 8698 slugify: 1.6.6 8699 xcode: 3.0.1 ··· 8904 transitivePeerDependencies: 8905 - supports-color 8906 8907 - '@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))': 8908 dependencies: 8909 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 8910 8911 - '@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))': 8912 dependencies: 8913 - react-native: 0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0) 8914 optional: true 8915 8916 '@expo/osascript@2.2.5': ··· 8975 dependencies: 8976 cross-spawn: 7.0.6 8977 8978 - '@expo/vector-icons@14.1.0(expo-font@13.3.1(expo@53.0.20(@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)': 8979 dependencies: 8980 - expo-font: 13.3.1(expo@53.0.20(@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) 8981 react: 19.0.0 8982 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 8983 8984 - '@expo/vector-icons@14.1.0(expo-font@13.3.2(expo@53.0.20(@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)': 8985 dependencies: 8986 - expo-font: 13.3.2(expo@53.0.20(@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) 8987 react: 19.0.0 8988 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 8989 8990 - '@expo/vector-icons@14.1.0(expo-font@13.3.2(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.28.4)(@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.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)': 8991 dependencies: 8992 - expo-font: 13.3.2(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0) 8993 react: 19.0.0 8994 - react-native: 0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0) 8995 8996 '@expo/ws-tunnel@1.0.6': {} 8997 ··· 9019 9020 '@floating-ui/utils@0.2.8': {} 9021 9022 - '@gorhom/bottom-sheet@5.1.6(@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)': 9023 dependencies: 9024 - '@gorhom/portal': 1.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) 9025 invariant: 2.2.4 9026 react: 19.0.0 9027 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 9028 - 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) 9029 - 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) 9030 optionalDependencies: 9031 '@types/react': 19.0.14 9032 9033 - '@gorhom/portal@1.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)': 9034 dependencies: 9035 nanoid: 3.3.8 9036 react: 19.0.0 9037 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 9038 9039 '@humanwhocodes/config-array@0.13.0': 9040 dependencies: ··· 9695 9696 '@radix-ui/rect@1.1.0': {} 9697 9698 - '@react-native-async-storage/async-storage@2.1.2(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))': 9699 dependencies: 9700 merge-options: 3.0.4 9701 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 9702 9703 - '@react-native-picker/picker@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)': 9704 dependencies: 9705 react: 19.0.0 9706 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 9707 9708 - '@react-native/assets-registry@0.79.2': {} 9709 9710 '@react-native/babel-plugin-codegen@0.79.5(@babel/core@7.26.0)': 9711 dependencies: 9712 - '@babel/traverse': 7.26.4 9713 '@react-native/codegen': 0.79.5(@babel/core@7.26.0) 9714 transitivePeerDependencies: 9715 - '@babel/core' ··· 9717 9718 '@react-native/babel-plugin-codegen@0.79.5(@babel/core@7.28.4)': 9719 dependencies: 9720 - '@babel/traverse': 7.26.4 9721 '@react-native/codegen': 0.79.5(@babel/core@7.28.4) 9722 transitivePeerDependencies: 9723 - '@babel/core' ··· 9823 transitivePeerDependencies: 9824 - supports-color 9825 9826 - '@react-native/codegen@0.79.2(@babel/core@7.26.0)': 9827 dependencies: 9828 '@babel/core': 7.26.0 9829 glob: 7.2.3 ··· 9832 nullthrows: 1.1.1 9833 yargs: 17.7.2 9834 9835 - '@react-native/codegen@0.79.2(@babel/core@7.28.4)': 9836 dependencies: 9837 '@babel/core': 7.28.4 9838 glob: 7.2.3 ··· 9841 nullthrows: 1.1.1 9842 yargs: 17.7.2 9843 9844 - '@react-native/codegen@0.79.5(@babel/core@7.26.0)': 9845 dependencies: 9846 '@babel/core': 7.26.0 9847 glob: 7.2.3 9848 hermes-parser: 0.25.1 9849 invariant: 2.2.4 9850 nullthrows: 1.1.1 9851 yargs: 17.7.2 9852 9853 - '@react-native/codegen@0.79.5(@babel/core@7.28.4)': 9854 dependencies: 9855 '@babel/core': 7.28.4 9856 glob: 7.2.3 9857 hermes-parser: 0.25.1 9858 invariant: 2.2.4 9859 nullthrows: 1.1.1 9860 yargs: 17.7.2 9861 9862 - '@react-native/community-cli-plugin@0.79.2': 9863 dependencies: 9864 - '@react-native/dev-middleware': 0.79.2 9865 chalk: 4.1.2 9866 debug: 2.6.9 9867 invariant: 2.2.4 9868 metro: 0.82.4 9869 metro-config: 0.82.4 9870 metro-core: 0.82.4 9871 - semver: 7.6.3 9872 transitivePeerDependencies: 9873 - bufferutil 9874 - supports-color 9875 - utf-8-validate 9876 9877 - '@react-native/debugger-frontend@0.79.2': {} 9878 - 9879 '@react-native/debugger-frontend@0.79.5': {} 9880 9881 - '@react-native/dev-middleware@0.79.2': 9882 dependencies: 9883 '@isaacs/ttlcache': 1.4.1 9884 - '@react-native/debugger-frontend': 0.79.2 9885 chrome-launcher: 0.15.2 9886 chromium-edge-launcher: 0.2.0 9887 connect: 3.7.0 ··· 9896 - supports-color 9897 - utf-8-validate 9898 9899 - '@react-native/dev-middleware@0.79.5': 9900 dependencies: 9901 '@isaacs/ttlcache': 1.4.1 9902 - '@react-native/debugger-frontend': 0.79.5 9903 chrome-launcher: 0.15.2 9904 chromium-edge-launcher: 0.2.0 9905 connect: 3.7.0 ··· 9914 - supports-color 9915 - utf-8-validate 9916 9917 - '@react-native/gradle-plugin@0.79.2': {} 9918 9919 - '@react-native/js-polyfills@0.79.2': {} 9920 9921 '@react-native/normalize-colors@0.74.88': {} 9922 ··· 9924 9925 '@react-native/normalize-colors@0.79.5': {} 9926 9927 '@react-native/typescript-config@0.76.5': {} 9928 9929 - '@react-native/virtualized-lists@0.79.2(@types/react@19.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)': 9930 dependencies: 9931 invariant: 2.2.4 9932 nullthrows: 1.1.1 9933 react: 19.0.0 9934 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 9935 optionalDependencies: 9936 '@types/react': 19.0.14 9937 9938 - '@react-native/virtualized-lists@0.79.2(@types/react@19.0.14)(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)': 9939 dependencies: 9940 invariant: 2.2.4 9941 nullthrows: 1.1.1 9942 react: 19.0.0 9943 - react-native: 0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0) 9944 optionalDependencies: 9945 '@types/react': 19.0.14 9946 9947 - '@react-navigation/bottom-tabs@7.3.14(@react-navigation/native@7.1.10(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)': 9948 dependencies: 9949 - '@react-navigation/elements': 2.4.3(@react-navigation/native@7.1.10(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) 9950 - '@react-navigation/native': 7.1.10(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 9951 color: 4.2.3 9952 react: 19.0.0 9953 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 9954 - 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) 9955 - 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) 9956 transitivePeerDependencies: 9957 - '@react-native-masked-view/masked-view' 9958 ··· 9967 use-latest-callback: 0.2.3(react@19.0.0) 9968 use-sync-external-store: 1.5.0(react@19.0.0) 9969 9970 - '@react-navigation/elements@2.4.3(@react-navigation/native@7.1.10(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)': 9971 dependencies: 9972 - '@react-navigation/native': 7.1.10(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 9973 color: 4.2.3 9974 react: 19.0.0 9975 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 9976 - 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) 9977 9978 - '@react-navigation/native-stack@7.3.14(@react-navigation/native@7.1.10(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)': 9979 dependencies: 9980 - '@react-navigation/elements': 2.4.3(@react-navigation/native@7.1.10(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) 9981 - '@react-navigation/native': 7.1.10(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 9982 react: 19.0.0 9983 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 9984 - 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) 9985 - 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) 9986 warn-once: 0.1.1 9987 transitivePeerDependencies: 9988 - '@react-native-masked-view/masked-view' 9989 9990 - '@react-navigation/native@7.1.10(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)': 9991 dependencies: 9992 '@react-navigation/core': 7.10.0(react@19.0.0) 9993 escape-string-regexp: 4.0.0 9994 fast-deep-equal: 3.1.3 9995 nanoid: 3.3.11 9996 react: 19.0.0 9997 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 9998 use-latest-callback: 0.2.3(react@19.0.0) 9999 10000 '@react-navigation/routers@7.4.0': 10001 dependencies: 10002 nanoid: 3.3.11 10003 10004 - '@rn-primitives/avatar@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)': 10005 dependencies: 10006 - '@rn-primitives/hooks': 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) 10007 - '@rn-primitives/slot': 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) 10008 - '@rn-primitives/types': 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) 10009 react: 19.0.0 10010 optionalDependencies: 10011 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 10012 react-native-web: 0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 10013 10014 - '@rn-primitives/hooks@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)': 10015 dependencies: 10016 - '@rn-primitives/types': 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) 10017 react: 19.0.0 10018 optionalDependencies: 10019 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 10020 react-native-web: 0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 10021 10022 - '@rn-primitives/hover-card@1.1.0(@rn-primitives/portal@1.3.0(@types/react@19.0.14)(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)(use-sync-external-store@1.5.0(react@19.0.0)))(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@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))(react@19.0.0)': 10023 dependencies: 10024 '@radix-ui/react-hover-card': 1.1.4(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 10025 - '@rn-primitives/hooks': 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) 10026 - '@rn-primitives/popover': 1.1.0(@rn-primitives/portal@1.3.0(@types/react@19.0.14)(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)(use-sync-external-store@1.5.0(react@19.0.0)))(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@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))(react@19.0.0) 10027 - '@rn-primitives/portal': 1.3.0(@types/react@19.0.14)(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)(use-sync-external-store@1.5.0(react@19.0.0)) 10028 - '@rn-primitives/slot': 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) 10029 - '@rn-primitives/types': 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) 10030 react: 19.0.0 10031 optionalDependencies: 10032 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 10033 react-native-web: 0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 10034 transitivePeerDependencies: 10035 - '@types/react' 10036 - '@types/react-dom' 10037 - react-dom 10038 10039 - '@rn-primitives/popover@1.1.0(@rn-primitives/portal@1.3.0(@types/react@19.0.14)(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)(use-sync-external-store@1.5.0(react@19.0.0)))(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@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))(react@19.0.0)': 10040 dependencies: 10041 '@radix-ui/react-popover': 1.1.4(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 10042 - '@rn-primitives/hooks': 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) 10043 - '@rn-primitives/portal': 1.3.0(@types/react@19.0.14)(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)(use-sync-external-store@1.5.0(react@19.0.0)) 10044 - '@rn-primitives/slot': 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) 10045 - '@rn-primitives/types': 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) 10046 react: 19.0.0 10047 optionalDependencies: 10048 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 10049 react-native-web: 0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 10050 transitivePeerDependencies: 10051 - '@types/react' 10052 - '@types/react-dom' 10053 - react-dom 10054 10055 - '@rn-primitives/portal@1.3.0(@types/react@19.0.14)(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)(use-sync-external-store@1.5.0(react@19.0.0))': 10056 dependencies: 10057 react: 19.0.0 10058 zustand: 5.0.5(@types/react@19.0.14)(react@19.0.0)(use-sync-external-store@1.5.0(react@19.0.0)) 10059 optionalDependencies: 10060 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 10061 react-native-web: 0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 10062 transitivePeerDependencies: 10063 - '@types/react' 10064 - immer 10065 - use-sync-external-store 10066 10067 - '@rn-primitives/progress@1.1.0(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@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))(react@19.0.0)': 10068 dependencies: 10069 '@radix-ui/react-progress': 1.1.1(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 10070 - '@rn-primitives/slot': 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) 10071 - '@rn-primitives/types': 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) 10072 react: 19.0.0 10073 optionalDependencies: 10074 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 10075 react-native-web: 0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 10076 transitivePeerDependencies: 10077 - '@types/react' 10078 - '@types/react-dom' 10079 - react-dom 10080 10081 - '@rn-primitives/slot@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)': 10082 dependencies: 10083 react: 19.0.0 10084 optionalDependencies: 10085 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 10086 react-native-web: 0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 10087 10088 - '@rn-primitives/tooltip@1.1.0(@rn-primitives/portal@1.3.0(@types/react@19.0.14)(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)(use-sync-external-store@1.5.0(react@19.0.0)))(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@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))(react@19.0.0)': 10089 dependencies: 10090 '@radix-ui/react-tooltip': 1.1.6(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 10091 - '@rn-primitives/hooks': 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) 10092 - '@rn-primitives/portal': 1.3.0(@types/react@19.0.14)(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)(use-sync-external-store@1.5.0(react@19.0.0)) 10093 - '@rn-primitives/slot': 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) 10094 - '@rn-primitives/types': 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) 10095 react: 19.0.0 10096 optionalDependencies: 10097 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 10098 react-native-web: 0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 10099 transitivePeerDependencies: 10100 - '@types/react' 10101 - '@types/react-dom' 10102 - react-dom 10103 10104 - '@rn-primitives/types@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)': 10105 dependencies: 10106 react: 19.0.0 10107 optionalDependencies: 10108 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 10109 react-native-web: 0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 10110 10111 '@rtsao/scc@1.1.0': {} ··· 10318 fast-glob: 3.3.2 10319 is-glob: 4.0.3 10320 minimatch: 9.0.5 10321 - semver: 7.6.3 10322 ts-api-utils: 1.4.3(typescript@5.8.3) 10323 typescript: 5.8.3 10324 transitivePeerDependencies: ··· 12011 jest-mock: 30.2.0 12012 jest-util: 30.2.0 12013 12014 - expo-asset@11.1.7(expo@53.0.20(@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): 12015 dependencies: 12016 '@expo/image-utils': 0.7.6 12017 - expo: 53.0.20(@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) 12018 - expo-constants: 17.1.7(expo@53.0.20(@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)) 12019 react: 19.0.0 12020 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 12021 transitivePeerDependencies: 12022 - supports-color 12023 12024 - expo-asset@11.1.7(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0): 12025 dependencies: 12026 '@expo/image-utils': 0.7.6 12027 - expo: 53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12028 - expo-constants: 17.1.7(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)) 12029 react: 19.0.0 12030 - react-native: 0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0) 12031 transitivePeerDependencies: 12032 - supports-color 12033 12034 - expo-constants@17.1.6(expo@53.0.20(@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)): 12035 dependencies: 12036 '@expo/config': 11.0.10 12037 '@expo/env': 1.0.5 12038 - expo: 53.0.20(@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) 12039 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 12040 transitivePeerDependencies: 12041 - supports-color 12042 12043 - expo-constants@17.1.7(expo@53.0.20(@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)): 12044 dependencies: 12045 '@expo/config': 11.0.13 12046 '@expo/env': 1.0.7 12047 - expo: 53.0.20(@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) 12048 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 12049 transitivePeerDependencies: 12050 - supports-color 12051 12052 - expo-constants@17.1.7(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)): 12053 dependencies: 12054 '@expo/config': 11.0.13 12055 '@expo/env': 1.0.7 12056 - expo: 53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12057 - react-native: 0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0) 12058 transitivePeerDependencies: 12059 - supports-color 12060 12061 - expo-file-system@18.1.11(expo@53.0.20(@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)): 12062 dependencies: 12063 - expo: 53.0.20(@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) 12064 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 12065 12066 - expo-file-system@18.1.11(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)): 12067 dependencies: 12068 - expo: 53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12069 - react-native: 0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0) 12070 12071 - expo-font@13.3.1(expo@53.0.20(@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): 12072 dependencies: 12073 - expo: 53.0.20(@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) 12074 fontfaceobserver: 2.3.0 12075 react: 19.0.0 12076 12077 - expo-font@13.3.2(expo@53.0.20(@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): 12078 dependencies: 12079 - expo: 53.0.20(@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) 12080 fontfaceobserver: 2.3.0 12081 react: 19.0.0 12082 12083 - expo-font@13.3.2(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0): 12084 dependencies: 12085 - expo: 53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12086 fontfaceobserver: 2.3.0 12087 react: 19.0.0 12088 12089 - expo-image-loader@5.1.0(expo@53.0.20(@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)): 12090 dependencies: 12091 - expo: 53.0.20(@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) 12092 12093 - expo-image-picker@16.1.4(expo@53.0.20(@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)): 12094 dependencies: 12095 - expo: 53.0.20(@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) 12096 - expo-image-loader: 5.1.0(expo@53.0.20(@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)) 12097 12098 - expo-keep-awake@14.1.4(expo@53.0.20(@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): 12099 dependencies: 12100 - expo: 53.0.20(@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) 12101 react: 19.0.0 12102 12103 - expo-keep-awake@14.1.4(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0): 12104 dependencies: 12105 - expo: 53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12106 react: 19.0.0 12107 12108 - expo-linking@7.1.4(expo@53.0.20(@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): 12109 dependencies: 12110 - expo-constants: 17.1.6(expo@53.0.20(@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)) 12111 invariant: 2.2.4 12112 react: 19.0.0 12113 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 12114 transitivePeerDependencies: 12115 - expo 12116 - supports-color ··· 12129 dependencies: 12130 invariant: 2.2.4 12131 12132 - expo-router@5.0.6(swn7sosa2qiea4b4emiyaeta54): 12133 dependencies: 12134 - '@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)) 12135 '@expo/server': 0.6.2 12136 '@radix-ui/react-slot': 1.2.0(@types/react@19.0.14)(react@19.0.0) 12137 - '@react-navigation/bottom-tabs': 7.3.14(@react-navigation/native@7.1.10(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) 12138 - '@react-navigation/native': 7.1.10(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12139 - '@react-navigation/native-stack': 7.3.14(@react-navigation/native@7.1.10(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) 12140 client-only: 0.0.1 12141 - expo: 53.0.20(@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) 12142 - expo-constants: 17.1.6(expo@53.0.20(@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)) 12143 - expo-linking: 7.1.4(expo@53.0.20(@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) 12144 invariant: 2.2.4 12145 react-fast-compare: 3.2.2 12146 - 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) 12147 - 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) 12148 - 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) 12149 schema-utils: 4.3.0 12150 semver: 7.6.3 12151 server-only: 0.0.1 12152 shallowequal: 1.1.0 12153 optionalDependencies: 12154 - 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) 12155 transitivePeerDependencies: 12156 - '@react-native-masked-view/masked-view' 12157 - '@types/react' ··· 12159 - react-native 12160 - supports-color 12161 12162 - expo-splash-screen@0.30.8(expo@53.0.20(@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)): 12163 dependencies: 12164 '@expo/prebuild-config': 9.0.11 12165 - expo: 53.0.20(@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) 12166 transitivePeerDependencies: 12167 - supports-color 12168 12169 - expo-sqlite@15.2.9(expo@53.0.20(@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): 12170 dependencies: 12171 - expo: 53.0.20(@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) 12172 react: 19.0.0 12173 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 12174 12175 - expo-status-bar@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): 12176 dependencies: 12177 react: 19.0.0 12178 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 12179 - 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) 12180 - 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) 12181 12182 - expo-system-ui@5.0.7(expo@53.0.20(@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)): 12183 dependencies: 12184 '@react-native/normalize-colors': 0.79.2 12185 debug: 4.4.0 12186 - expo: 53.0.20(@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) 12187 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 12188 optionalDependencies: 12189 react-native-web: 0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 12190 transitivePeerDependencies: 12191 - supports-color 12192 12193 - expo-web-browser@14.1.6(expo@53.0.20(@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)): 12194 dependencies: 12195 - expo: 53.0.20(@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) 12196 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 12197 12198 - expo@53.0.20(@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): 12199 dependencies: 12200 '@babel/runtime': 7.26.0 12201 '@expo/cli': 0.24.20 ··· 12203 '@expo/config-plugins': 10.1.2 12204 '@expo/fingerprint': 0.13.4 12205 '@expo/metro-config': 0.20.17 12206 - '@expo/vector-icons': 14.1.0(expo-font@13.3.2(expo@53.0.20(@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) 12207 babel-preset-expo: 13.2.3(@babel/core@7.26.0)(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206) 12208 - expo-asset: 11.1.7(expo@53.0.20(@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) 12209 - expo-constants: 17.1.7(expo@53.0.20(@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)) 12210 - expo-file-system: 18.1.11(expo@53.0.20(@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)) 12211 - expo-font: 13.3.2(expo@53.0.20(@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) 12212 - expo-keep-awake: 14.1.4(expo@53.0.20(@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) 12213 expo-modules-autolinking: 2.1.14 12214 expo-modules-core: 2.5.0 12215 react: 19.0.0 12216 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 12217 - 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) 12218 whatwg-url-without-unicode: 8.0.0-3 12219 optionalDependencies: 12220 - '@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)) 12221 transitivePeerDependencies: 12222 - '@babel/core' 12223 - babel-plugin-react-compiler ··· 12226 - supports-color 12227 - utf-8-validate 12228 12229 - expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0): 12230 dependencies: 12231 '@babel/runtime': 7.26.0 12232 '@expo/cli': 0.24.20 ··· 12234 '@expo/config-plugins': 10.1.2 12235 '@expo/fingerprint': 0.13.4 12236 '@expo/metro-config': 0.20.17 12237 - '@expo/vector-icons': 14.1.0(expo-font@13.3.2(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.28.4)(@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.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12238 babel-preset-expo: 13.2.3(@babel/core@7.28.4) 12239 - expo-asset: 11.1.7(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12240 - expo-constants: 17.1.7(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)) 12241 - expo-file-system: 18.1.11(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)) 12242 - expo-font: 13.3.2(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0) 12243 - expo-keep-awake: 14.1.4(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0) 12244 expo-modules-autolinking: 2.1.14 12245 expo-modules-core: 2.5.0 12246 react: 19.0.0 12247 - react-native: 0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0) 12248 - react-native-edge-to-edge: 1.6.0(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12249 whatwg-url-without-unicode: 8.0.0-3 12250 optionalDependencies: 12251 - '@expo/metro-runtime': 5.0.4(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)) 12252 transitivePeerDependencies: 12253 - '@babel/core' 12254 - babel-plugin-react-compiler ··· 12824 12825 is-bun-module@1.3.0: 12826 dependencies: 12827 - semver: 7.6.3 12828 12829 is-callable@1.2.7: {} 12830 ··· 12960 istanbul-lib-instrument@6.0.3: 12961 dependencies: 12962 '@babel/core': 7.28.4 12963 - '@babel/parser': 7.26.3 12964 '@istanbuljs/schema': 0.1.3 12965 istanbul-lib-coverage: 3.2.2 12966 semver: 7.7.2 ··· 13200 jest-util: 30.2.0 13201 jest-validate: 30.2.0 13202 13203 - jest-expo@54.0.12(@babel/core@7.28.4)(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(jest@30.2.0(@types/node@20.17.10))(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(webpack@5.97.1): 13204 dependencies: 13205 '@expo/config': 12.0.10 13206 '@expo/json-file': 10.0.7 13207 '@jest/create-cache-key-function': 29.7.0 13208 '@jest/globals': 29.7.0 13209 babel-jest: 29.7.0(@babel/core@7.28.4) 13210 - expo: 53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 13211 jest-environment-jsdom: 29.7.0 13212 jest-snapshot: 29.7.0 13213 jest-watch-select-projects: 2.0.0 13214 jest-watch-typeahead: 2.2.1(jest@30.2.0(@types/node@20.17.10)) 13215 json5: 2.2.3 13216 lodash: 4.17.21 13217 - react-native: 0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0) 13218 react-server-dom-webpack: 19.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(webpack@5.97.1) 13219 react-test-renderer: 19.1.0(react@19.0.0) 13220 server-only: 0.0.1 ··· 13840 dependencies: 13841 yallist: 3.1.1 13842 13843 - lucide-react-native@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): 13844 dependencies: 13845 react: 19.0.0 13846 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 13847 - 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) 13848 13849 make-dir@4.0.0: 13850 dependencies: ··· 13953 13954 metro-source-map@0.82.4: 13955 dependencies: 13956 - '@babel/traverse': 7.26.4 13957 '@babel/traverse--for-generate-function-map': '@babel/traverse@7.28.4' 13958 - '@babel/types': 7.26.3 13959 flow-enums-runtime: 0.0.6 13960 invariant: 2.2.4 13961 metro-symbolicate: 0.82.4 ··· 13981 dependencies: 13982 '@babel/core': 7.28.4 13983 '@babel/generator': 7.28.3 13984 - '@babel/template': 7.25.9 13985 - '@babel/traverse': 7.26.4 13986 flow-enums-runtime: 0.0.6 13987 nullthrows: 1.1.1 13988 transitivePeerDependencies: ··· 13992 dependencies: 13993 '@babel/core': 7.28.4 13994 '@babel/generator': 7.28.3 13995 - '@babel/parser': 7.26.3 13996 '@babel/types': 7.28.4 13997 flow-enums-runtime: 0.0.6 13998 metro: 0.82.4 ··· 14010 14011 metro@0.82.4: 14012 dependencies: 14013 - '@babel/code-frame': 7.26.2 14014 - '@babel/core': 7.26.0 14015 - '@babel/generator': 7.26.3 14016 - '@babel/parser': 7.26.3 14017 - '@babel/template': 7.25.9 14018 - '@babel/traverse': 7.26.4 14019 - '@babel/types': 7.26.3 14020 accepts: 1.3.8 14021 chalk: 4.1.2 14022 ci-info: 2.0.0 ··· 14130 14131 napi-postinstall@0.3.4: {} 14132 14133 - 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))): 14134 dependencies: 14135 comment-json: 4.2.5 14136 debug: 4.4.0 14137 - 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))) 14138 tailwindcss: 3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)) 14139 transitivePeerDependencies: 14140 - react ··· 14175 dependencies: 14176 hosted-git-info: 7.0.2 14177 proc-log: 4.2.0 14178 - semver: 7.6.3 14179 validate-npm-package-name: 5.0.1 14180 14181 npm-run-path@4.0.1: ··· 14633 14634 react-is@19.1.0: {} 14635 14636 - react-native-css-interop@0.1.18(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))): 14637 dependencies: 14638 '@babel/helper-module-imports': 7.25.9 14639 '@babel/traverse': 7.26.4 ··· 14641 debug: 4.4.0 14642 lightningcss: 1.27.0 14643 react: 19.0.0 14644 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 14645 - 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) 14646 semver: 7.6.3 14647 tailwindcss: 3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)) 14648 optionalDependencies: 14649 - 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) 14650 - 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) 14651 transitivePeerDependencies: 14652 - supports-color 14653 14654 - 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))): 14655 dependencies: 14656 '@babel/helper-module-imports': 7.25.9 14657 '@babel/traverse': 7.26.4 ··· 14659 debug: 4.4.0 14660 lightningcss: 1.28.2 14661 react: 19.0.0 14662 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 14663 - 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) 14664 semver: 7.6.3 14665 tailwindcss: 3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)) 14666 optionalDependencies: 14667 - 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) 14668 - 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) 14669 transitivePeerDependencies: 14670 - supports-color 14671 14672 - 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): 14673 dependencies: 14674 react: 19.0.0 14675 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 14676 14677 - react-native-edge-to-edge@1.6.0(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0): 14678 dependencies: 14679 react: 19.0.0 14680 - react-native: 0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0) 14681 14682 - 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): 14683 dependencies: 14684 '@egjs/hammerjs': 2.0.17 14685 hoist-non-react-statics: 3.3.2 14686 invariant: 2.2.4 14687 react: 19.0.0 14688 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 14689 14690 - 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): 14691 dependencies: 14692 react: 19.0.0 14693 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 14694 14695 - 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): 14696 dependencies: 14697 react: 19.0.0 14698 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 14699 14700 - react-native-quick-base64@2.1.2(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0): 14701 dependencies: 14702 base64-js: 1.5.1 14703 react: 19.0.0 14704 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 14705 14706 - 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): 14707 dependencies: 14708 - '@craftzdog/react-native-buffer': 6.0.5(react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 14709 events: 3.3.0 14710 - react: 19.0.0 14711 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 14712 readable-stream: 4.5.2 14713 string_decoder: 1.3.0 14714 util: 0.12.5 14715 14716 - 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): 14717 dependencies: 14718 '@babel/core': 7.26.0 14719 '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.0) ··· 14728 convert-source-map: 2.0.0 14729 invariant: 2.2.4 14730 react: 19.0.0 14731 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 14732 - 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) 14733 transitivePeerDependencies: 14734 - supports-color 14735 14736 - 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): 14737 dependencies: 14738 react: 19.0.0 14739 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 14740 14741 - 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): 14742 dependencies: 14743 react: 19.0.0 14744 react-freeze: 1.0.4(react@19.0.0) 14745 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 14746 warn-once: 0.1.1 14747 14748 - 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): 14749 dependencies: 14750 css-select: 5.1.0 14751 css-tree: 1.1.3 14752 react: 19.0.0 14753 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 14754 warn-once: 0.1.1 14755 14756 react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0): ··· 14768 transitivePeerDependencies: 14769 - encoding 14770 14771 - react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0): 14772 dependencies: 14773 '@jest/create-cache-key-function': 29.7.0 14774 - '@react-native/assets-registry': 0.79.2 14775 - '@react-native/codegen': 0.79.2(@babel/core@7.26.0) 14776 - '@react-native/community-cli-plugin': 0.79.2 14777 - '@react-native/gradle-plugin': 0.79.2 14778 - '@react-native/js-polyfills': 0.79.2 14779 - '@react-native/normalize-colors': 0.79.2 14780 - '@react-native/virtualized-lists': 0.79.2(@types/react@19.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) 14781 abort-controller: 3.0.0 14782 anser: 1.4.10 14783 ansi-regex: 5.0.1 ··· 14802 react-refresh: 0.14.2 14803 regenerator-runtime: 0.13.11 14804 scheduler: 0.25.0 14805 - semver: 7.6.3 14806 stacktrace-parser: 0.1.10 14807 whatwg-fetch: 3.6.20 14808 ws: 6.2.3 ··· 14816 - supports-color 14817 - utf-8-validate 14818 14819 - react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0): 14820 dependencies: 14821 '@jest/create-cache-key-function': 29.7.0 14822 - '@react-native/assets-registry': 0.79.2 14823 - '@react-native/codegen': 0.79.2(@babel/core@7.28.4) 14824 - '@react-native/community-cli-plugin': 0.79.2 14825 - '@react-native/gradle-plugin': 0.79.2 14826 - '@react-native/js-polyfills': 0.79.2 14827 - '@react-native/normalize-colors': 0.79.2 14828 - '@react-native/virtualized-lists': 0.79.2(@types/react@19.0.14)(react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 14829 abort-controller: 3.0.0 14830 anser: 1.4.10 14831 ansi-regex: 5.0.1 ··· 14850 react-refresh: 0.14.2 14851 regenerator-runtime: 0.13.11 14852 scheduler: 0.25.0 14853 - semver: 7.6.3 14854 stacktrace-parser: 0.1.10 14855 whatwg-fetch: 3.6.20 14856 ws: 6.2.3 ··· 15562 terser@5.37.0: 15563 dependencies: 15564 '@jridgewell/source-map': 0.3.6 15565 - acorn: 8.14.0 15566 commander: 2.20.3 15567 source-map-support: 0.5.21 15568 ··· 15937 '@webassemblyjs/ast': 1.14.1 15938 '@webassemblyjs/wasm-edit': 1.14.1 15939 '@webassemblyjs/wasm-parser': 1.14.1 15940 - acorn: 8.14.0 15941 browserslist: 4.24.3 15942 chrome-trace-event: 1.0.4 15943 enhanced-resolve: 5.17.1
··· 38 dependencies: 39 '@aquareum/atproto-oauth-client-react-native': 40 specifier: ^0.0.1 41 + version: 0.0.1(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 42 '@atproto/api': 43 specifier: ^0.15.14 44 version: 0.15.27 ··· 53 version: 7.27.1(@babel/core@7.26.0) 54 '@expo/vector-icons': 55 specifier: ^14.1.0 56 + version: 14.1.0(expo-font@13.3.1(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 57 '@gorhom/bottom-sheet': 58 specifier: ^5.1.3 59 + version: 5.1.6(@types/react@19.0.14)(react-native-gesture-handler@2.24.0(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 60 '@react-native-async-storage/async-storage': 61 specifier: 2.1.2 62 + version: 2.1.2(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)) 63 '@react-native-picker/picker': 64 specifier: ^2.11.0 65 + version: 2.11.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 66 '@react-navigation/native': 67 specifier: ^7.1.8 68 + version: 7.1.10(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 69 '@rn-primitives/avatar': 70 specifier: ^1.1.0 71 + 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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 72 '@rn-primitives/hover-card': 73 specifier: ^1.1.0 74 + version: 1.1.0(@rn-primitives/portal@1.3.0(@types/react@19.0.14)(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(use-sync-external-store@1.5.0(react@19.0.0)))(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 75 '@rn-primitives/portal': 76 specifier: ^1.2.0 77 + version: 1.3.0(@types/react@19.0.14)(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(use-sync-external-store@1.5.0(react@19.0.0)) 78 '@rn-primitives/progress': 79 specifier: ^1.1.0 80 + version: 1.1.0(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 81 '@rn-primitives/slot': 82 specifier: ^1.1.0 83 + 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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 84 '@rn-primitives/tooltip': 85 specifier: ^1.1.0 86 + version: 1.1.0(@rn-primitives/portal@1.3.0(@types/react@19.0.14)(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(use-sync-external-store@1.5.0(react@19.0.0)))(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 87 '@rn-primitives/types': 88 specifier: ^1.1.0 89 + 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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 90 '@teal/lexicons': 91 specifier: workspace:* 92 version: link:../../packages/lexicons ··· 101 version: 19.0.0-beta-37ed2a7-20241206(eslint@8.57.1) 102 expo: 103 specifier: ~53.0.20 104 + version: 53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 105 expo-constants: 106 specifier: ^17.1.6 107 + version: 17.1.6(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)) 108 expo-font: 109 specifier: ~13.3.1 110 + version: 13.3.1(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0) 111 expo-image-picker: 112 specifier: ^16.1.4 113 + version: 16.1.4(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)) 114 expo-linking: 115 specifier: ~7.1.4 116 + version: 7.1.4(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 117 expo-router: 118 specifier: ~5.0.6 119 + version: 5.0.6(6uar7qyy7j5atz75qvftmg5rai) 120 expo-splash-screen: 121 specifier: ~0.30.8 122 + version: 0.30.8(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)) 123 expo-sqlite: 124 specifier: ^15.2.9 125 + version: 15.2.9(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 126 expo-status-bar: 127 specifier: ~2.2.3 128 + version: 2.2.3(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 129 expo-system-ui: 130 specifier: ~5.0.7 131 + version: 5.0.7(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)) 132 expo-web-browser: 133 specifier: ~14.1.6 134 + version: 14.1.6(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)) 135 jest: 136 specifier: ^30.2.0 137 version: 30.2.0(@types/node@22.10.2)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)) 138 lucide-react-native: 139 specifier: ^0.507.0 140 + version: 0.507.0(react-native-svg@15.11.2(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 141 nativewind: 142 specifier: ^4.1.23 143 + version: 4.1.23(react-native-reanimated@3.17.5(@babel/core@7.26.0)(react-native@0.79.6(@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.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@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))) 144 react: 145 specifier: 19.0.0 146 version: 19.0.0 ··· 151 specifier: 19.0.0 152 version: 19.0.0(react@19.0.0) 153 react-native: 154 + specifier: 0.79.6 155 + version: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 156 react-native-css-interop: 157 specifier: ^0.1.18 158 + version: 0.1.18(react-native-reanimated@3.17.5(@babel/core@7.26.0)(react-native@0.79.6(@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.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@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))) 159 react-native-gesture-handler: 160 specifier: ~2.24.0 161 + version: 2.24.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 162 + react-native-quick-crypto: 163 + specifier: ^0.7.17 164 + version: 0.7.17(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 165 react-native-reanimated: 166 specifier: ~3.17.5 167 + version: 3.17.5(@babel/core@7.26.0)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 168 react-native-safe-area-context: 169 specifier: 5.4.0 170 + version: 5.4.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 171 react-native-screens: 172 specifier: ~4.10.0 173 + version: 4.10.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 174 react-native-svg: 175 specifier: 15.11.2 176 + version: 15.11.2(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 177 react-native-web: 178 specifier: ~0.20.0 179 version: 0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) ··· 192 version: 7.26.0 193 '@expo/metro-runtime': 194 specifier: ~5.0.4 195 + version: 5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)) 196 '@expo/prebuild-config': 197 specifier: ^9.0.5 198 version: 9.0.11 ··· 243 dependencies: 244 jest-expo: 245 specifier: ^54.0.12 246 + version: 54.0.12(@babel/core@7.28.4)(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(jest@30.2.0(@types/node@20.17.10))(react-dom@19.0.0(react@19.0.0))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(webpack@5.97.1) 247 248 packages/lexicons: 249 dependencies: ··· 1819 react: '*' 1820 react-native: '*' 1821 1822 + '@react-native/assets-registry@0.79.6': 1823 + resolution: {integrity: sha512-UVSP1224PWg0X+mRlZNftV5xQwZGfawhivuW8fGgxNK9MS/U84xZ+16lkqcPh1ank6MOt239lIWHQ1S33CHgqA==} 1824 engines: {node: '>=18'} 1825 1826 '@react-native/babel-plugin-codegen@0.79.5': ··· 1833 peerDependencies: 1834 '@babel/core': '*' 1835 1836 + '@react-native/codegen@0.79.5': 1837 + resolution: {integrity: sha512-FO5U1R525A1IFpJjy+KVznEinAgcs3u7IbnbRJUG9IH/MBXi2lEU2LtN+JarJ81MCfW4V2p0pg6t/3RGHFRrlQ==} 1838 engines: {node: '>=18'} 1839 peerDependencies: 1840 '@babel/core': '*' 1841 1842 + '@react-native/codegen@0.79.6': 1843 + resolution: {integrity: sha512-iRBX8Lgbqypwnfba7s6opeUwVyaR23mowh9ILw7EcT2oLz3RqMmjJdrbVpWhGSMGq2qkPfqAH7bhO8C7O+xfjQ==} 1844 engines: {node: '>=18'} 1845 peerDependencies: 1846 '@babel/core': '*' 1847 1848 + '@react-native/community-cli-plugin@0.79.6': 1849 + resolution: {integrity: sha512-ZHVst9vByGsegeaddkD2YbZ6NvYb4n3pD9H7Pit94u+NlByq2uBJghoOjT6EKqg+UVl8tLRdi88cU2pDPwdHqA==} 1850 engines: {node: '>=18'} 1851 peerDependencies: 1852 '@react-native-community/cli': '*' 1853 peerDependenciesMeta: 1854 '@react-native-community/cli': 1855 optional: true 1856 1857 '@react-native/debugger-frontend@0.79.5': 1858 resolution: {integrity: sha512-WQ49TRpCwhgUYo5/n+6GGykXmnumpOkl4Lr2l2o2buWU9qPOwoiBqJAtmWEXsAug4ciw3eLiVfthn5ufs0VB0A==} 1859 engines: {node: '>=18'} 1860 1861 + '@react-native/debugger-frontend@0.79.6': 1862 + resolution: {integrity: sha512-lIK/KkaH7ueM22bLO0YNaQwZbT/oeqhaghOvmZacaNVbJR1Cdh/XAqjT8FgCS+7PUnbxA8B55NYNKGZG3O2pYw==} 1863 engines: {node: '>=18'} 1864 1865 '@react-native/dev-middleware@0.79.5': 1866 resolution: {integrity: sha512-U7r9M/SEktOCP/0uS6jXMHmYjj4ESfYCkNAenBjFjjsRWekiHE+U/vRMeO+fG9gq4UCcBAUISClkQCowlftYBw==} 1867 engines: {node: '>=18'} 1868 1869 + '@react-native/dev-middleware@0.79.6': 1870 + resolution: {integrity: sha512-BK3GZBa9c7XSNR27EDRtxrgyyA3/mf1j3/y+mPk7Ac0Myu85YNrXnC9g3mL5Ytwo0g58TKrAIgs1fF2Q5Mn6mQ==} 1871 + engines: {node: '>=18'} 1872 + 1873 + '@react-native/gradle-plugin@0.79.6': 1874 + resolution: {integrity: sha512-C5odetI6py3CSELeZEVz+i00M+OJuFZXYnjVD4JyvpLn462GesHRh+Se8mSkU5QSaz9cnpMnyFLJAx05dokWbA==} 1875 engines: {node: '>=18'} 1876 1877 + '@react-native/js-polyfills@0.79.6': 1878 + resolution: {integrity: sha512-6wOaBh1namYj9JlCNgX2ILeGUIwc6OP6MWe3Y5jge7Xz9fVpRqWQk88Q5Y9VrAtTMTcxoX3CvhrfRr3tGtSfQw==} 1879 engines: {node: '>=18'} 1880 1881 '@react-native/normalize-colors@0.74.88': ··· 1887 '@react-native/normalize-colors@0.79.5': 1888 resolution: {integrity: sha512-nGXMNMclZgzLUxijQQ38Dm3IAEhgxuySAWQHnljFtfB0JdaMwpe0Ox9H7Tp2OgrEA+EMEv+Od9ElKlHwGKmmvQ==} 1889 1890 + '@react-native/normalize-colors@0.79.6': 1891 + resolution: {integrity: sha512-0v2/ruY7eeKun4BeKu+GcfO+SHBdl0LJn4ZFzTzjHdWES0Cn+ONqKljYaIv8p9MV2Hx/kcdEvbY4lWI34jC/mQ==} 1892 + 1893 '@react-native/typescript-config@0.76.5': 1894 resolution: {integrity: sha512-dRbY4XQTUUxR5Oq+S+2/5JQVU6WL0qvNnAz51jiXllC+hp5L4bljSxlzaj5CJ9vzGNFzm56m5Y9Q6MltoIU4Cw==} 1895 1896 + '@react-native/virtualized-lists@0.79.6': 1897 + resolution: {integrity: sha512-khA/Hrbb+rB68YUHrLubfLgMOD9up0glJhw25UE3Kntj32YDyuO0Tqc81ryNTcCekFKJ8XrAaEjcfPg81zBGPw==} 1898 engines: {node: '>=18'} 1899 peerDependencies: 1900 '@types/react': ^19.0.0 ··· 5772 react: '*' 5773 react-native: '*' 5774 5775 + react-native-quick-crypto@0.7.17: 5776 + resolution: {integrity: sha512-cJzp6oA/dM1lujt+Rwtn46Mgcs3w9F/0oQvNz1jcADc/AXktveAOUTzzKrDMxyg6YPziCYnoqMDzHBo6OLSU1g==} 5777 5778 react-native-reanimated@3.17.5: 5779 resolution: {integrity: sha512-SxBK7wQfJ4UoWoJqQnmIC7ZjuNgVb9rcY5Xc67upXAFKftWg0rnkknTw6vgwnjRcvYThrjzUVti66XoZdDJGtw==} ··· 5806 react: ^18.0.0 || ^19.0.0 5807 react-dom: ^18.0.0 || ^19.0.0 5808 5809 + react-native@0.79.6: 5810 + resolution: {integrity: sha512-kvIWSmf4QPfY41HC25TR285N7Fv0Pyn3DAEK8qRL9dA35usSaxsJkHfw+VqnonqJjXOaoKCEanwudRAJ60TBGA==} 5811 engines: {node: '>=18'} 5812 hasBin: true 5813 peerDependencies: ··· 7032 '@jridgewell/gen-mapping': 0.3.5 7033 '@jridgewell/trace-mapping': 0.3.25 7034 7035 + '@aquareum/atproto-oauth-client-react-native@0.0.1(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)': 7036 dependencies: 7037 '@atproto-labs/did-resolver': 0.1.5 7038 '@atproto-labs/handle-resolver-node': 0.1.7 ··· 7047 '@atproto/oauth-types': 0.2.1 7048 abortcontroller-polyfill: 1.7.8 7049 event-target-shim: 6.0.2 7050 + expo-sqlite: 15.2.9(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 7051 jose: 5.9.6 7052 + react-native-quick-crypto: 0.7.17(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 7053 transitivePeerDependencies: 7054 - expo 7055 - react ··· 7517 7518 '@babel/helper-member-expression-to-functions@7.25.9': 7519 dependencies: 7520 + '@babel/traverse': 7.28.4 7521 '@babel/types': 7.28.4 7522 transitivePeerDependencies: 7523 - supports-color ··· 7935 '@babel/core': 7.26.0 7936 '@babel/helper-plugin-utils': 7.25.9 7937 '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0) 7938 + '@babel/traverse': 7.28.4 7939 transitivePeerDependencies: 7940 - supports-color 7941 ··· 7944 '@babel/core': 7.28.4 7945 '@babel/helper-plugin-utils': 7.25.9 7946 '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.28.4) 7947 + '@babel/traverse': 7.28.4 7948 transitivePeerDependencies: 7949 - supports-color 7950 ··· 8081 '@babel/core': 7.26.0 8082 '@babel/helper-compilation-targets': 7.25.9 8083 '@babel/helper-plugin-utils': 7.25.9 8084 + '@babel/traverse': 7.28.4 8085 transitivePeerDependencies: 8086 - supports-color 8087 ··· 8090 '@babel/core': 7.28.4 8091 '@babel/helper-compilation-targets': 7.25.9 8092 '@babel/helper-plugin-utils': 7.25.9 8093 + '@babel/traverse': 7.28.4 8094 transitivePeerDependencies: 8095 - supports-color 8096 ··· 8551 '@cbor-extract/cbor-extract-win32-x64@2.2.0': 8552 optional: true 8553 8554 + '@craftzdog/react-native-buffer@6.0.5(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)': 8555 dependencies: 8556 ieee754: 1.2.1 8557 + react-native-quick-base64: 2.1.2(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 8558 transitivePeerDependencies: 8559 - react 8560 - react-native ··· 8696 getenv: 1.0.0 8697 glob: 10.4.5 8698 resolve-from: 5.0.0 8699 + semver: 7.7.2 8700 slash: 3.0.0 8701 slugify: 1.6.6 8702 xcode: 3.0.1 ··· 8907 transitivePeerDependencies: 8908 - supports-color 8909 8910 + '@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))': 8911 dependencies: 8912 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 8913 8914 + '@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))': 8915 dependencies: 8916 + react-native: 0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0) 8917 optional: true 8918 8919 '@expo/osascript@2.2.5': ··· 8978 dependencies: 8979 cross-spawn: 7.0.6 8980 8981 + '@expo/vector-icons@14.1.0(expo-font@13.3.1(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)': 8982 dependencies: 8983 + expo-font: 13.3.1(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0) 8984 react: 19.0.0 8985 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 8986 8987 + '@expo/vector-icons@14.1.0(expo-font@13.3.2(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)': 8988 dependencies: 8989 + expo-font: 13.3.2(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0) 8990 react: 19.0.0 8991 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 8992 8993 + '@expo/vector-icons@14.1.0(expo-font@13.3.2(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)': 8994 dependencies: 8995 + expo-font: 13.3.2(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0) 8996 react: 19.0.0 8997 + react-native: 0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0) 8998 8999 '@expo/ws-tunnel@1.0.6': {} 9000 ··· 9022 9023 '@floating-ui/utils@0.2.8': {} 9024 9025 + '@gorhom/bottom-sheet@5.1.6(@types/react@19.0.14)(react-native-gesture-handler@2.24.0(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)': 9026 dependencies: 9027 + '@gorhom/portal': 1.0.14(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 9028 invariant: 2.2.4 9029 react: 19.0.0 9030 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 9031 + react-native-gesture-handler: 2.24.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 9032 + react-native-reanimated: 3.17.5(@babel/core@7.26.0)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 9033 optionalDependencies: 9034 '@types/react': 19.0.14 9035 9036 + '@gorhom/portal@1.0.14(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)': 9037 dependencies: 9038 nanoid: 3.3.8 9039 react: 19.0.0 9040 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 9041 9042 '@humanwhocodes/config-array@0.13.0': 9043 dependencies: ··· 9698 9699 '@radix-ui/rect@1.1.0': {} 9700 9701 + '@react-native-async-storage/async-storage@2.1.2(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))': 9702 dependencies: 9703 merge-options: 3.0.4 9704 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 9705 9706 + '@react-native-picker/picker@2.11.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)': 9707 dependencies: 9708 react: 19.0.0 9709 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 9710 9711 + '@react-native/assets-registry@0.79.6': {} 9712 9713 '@react-native/babel-plugin-codegen@0.79.5(@babel/core@7.26.0)': 9714 dependencies: 9715 + '@babel/traverse': 7.28.4 9716 '@react-native/codegen': 0.79.5(@babel/core@7.26.0) 9717 transitivePeerDependencies: 9718 - '@babel/core' ··· 9720 9721 '@react-native/babel-plugin-codegen@0.79.5(@babel/core@7.28.4)': 9722 dependencies: 9723 + '@babel/traverse': 7.28.4 9724 '@react-native/codegen': 0.79.5(@babel/core@7.28.4) 9725 transitivePeerDependencies: 9726 - '@babel/core' ··· 9826 transitivePeerDependencies: 9827 - supports-color 9828 9829 + '@react-native/codegen@0.79.5(@babel/core@7.26.0)': 9830 dependencies: 9831 '@babel/core': 7.26.0 9832 glob: 7.2.3 ··· 9835 nullthrows: 1.1.1 9836 yargs: 17.7.2 9837 9838 + '@react-native/codegen@0.79.5(@babel/core@7.28.4)': 9839 dependencies: 9840 '@babel/core': 7.28.4 9841 glob: 7.2.3 ··· 9844 nullthrows: 1.1.1 9845 yargs: 17.7.2 9846 9847 + '@react-native/codegen@0.79.6(@babel/core@7.26.0)': 9848 dependencies: 9849 '@babel/core': 7.26.0 9850 + '@babel/parser': 7.28.4 9851 glob: 7.2.3 9852 hermes-parser: 0.25.1 9853 invariant: 2.2.4 9854 nullthrows: 1.1.1 9855 yargs: 17.7.2 9856 9857 + '@react-native/codegen@0.79.6(@babel/core@7.28.4)': 9858 dependencies: 9859 '@babel/core': 7.28.4 9860 + '@babel/parser': 7.28.4 9861 glob: 7.2.3 9862 hermes-parser: 0.25.1 9863 invariant: 2.2.4 9864 nullthrows: 1.1.1 9865 yargs: 17.7.2 9866 9867 + '@react-native/community-cli-plugin@0.79.6': 9868 dependencies: 9869 + '@react-native/dev-middleware': 0.79.6 9870 chalk: 4.1.2 9871 debug: 2.6.9 9872 invariant: 2.2.4 9873 metro: 0.82.4 9874 metro-config: 0.82.4 9875 metro-core: 0.82.4 9876 + semver: 7.7.2 9877 transitivePeerDependencies: 9878 - bufferutil 9879 - supports-color 9880 - utf-8-validate 9881 9882 '@react-native/debugger-frontend@0.79.5': {} 9883 9884 + '@react-native/debugger-frontend@0.79.6': {} 9885 + 9886 + '@react-native/dev-middleware@0.79.5': 9887 dependencies: 9888 '@isaacs/ttlcache': 1.4.1 9889 + '@react-native/debugger-frontend': 0.79.5 9890 chrome-launcher: 0.15.2 9891 chromium-edge-launcher: 0.2.0 9892 connect: 3.7.0 ··· 9901 - supports-color 9902 - utf-8-validate 9903 9904 + '@react-native/dev-middleware@0.79.6': 9905 dependencies: 9906 '@isaacs/ttlcache': 1.4.1 9907 + '@react-native/debugger-frontend': 0.79.6 9908 chrome-launcher: 0.15.2 9909 chromium-edge-launcher: 0.2.0 9910 connect: 3.7.0 ··· 9919 - supports-color 9920 - utf-8-validate 9921 9922 + '@react-native/gradle-plugin@0.79.6': {} 9923 9924 + '@react-native/js-polyfills@0.79.6': {} 9925 9926 '@react-native/normalize-colors@0.74.88': {} 9927 ··· 9929 9930 '@react-native/normalize-colors@0.79.5': {} 9931 9932 + '@react-native/normalize-colors@0.79.6': {} 9933 + 9934 '@react-native/typescript-config@0.76.5': {} 9935 9936 + '@react-native/virtualized-lists@0.79.6(@types/react@19.0.14)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)': 9937 dependencies: 9938 invariant: 2.2.4 9939 nullthrows: 1.1.1 9940 react: 19.0.0 9941 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 9942 optionalDependencies: 9943 '@types/react': 19.0.14 9944 9945 + '@react-native/virtualized-lists@0.79.6(@types/react@19.0.14)(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)': 9946 dependencies: 9947 invariant: 2.2.4 9948 nullthrows: 1.1.1 9949 react: 19.0.0 9950 + react-native: 0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0) 9951 optionalDependencies: 9952 '@types/react': 19.0.14 9953 9954 + '@react-navigation/bottom-tabs@7.3.14(@react-navigation/native@7.1.10(react-native@0.79.6(@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.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)': 9955 dependencies: 9956 + '@react-navigation/elements': 2.4.3(@react-navigation/native@7.1.10(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 9957 + '@react-navigation/native': 7.1.10(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 9958 color: 4.2.3 9959 react: 19.0.0 9960 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 9961 + react-native-safe-area-context: 5.4.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 9962 + react-native-screens: 4.10.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 9963 transitivePeerDependencies: 9964 - '@react-native-masked-view/masked-view' 9965 ··· 9974 use-latest-callback: 0.2.3(react@19.0.0) 9975 use-sync-external-store: 1.5.0(react@19.0.0) 9976 9977 + '@react-navigation/elements@2.4.3(@react-navigation/native@7.1.10(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)': 9978 dependencies: 9979 + '@react-navigation/native': 7.1.10(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 9980 color: 4.2.3 9981 react: 19.0.0 9982 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 9983 + react-native-safe-area-context: 5.4.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 9984 9985 + '@react-navigation/native-stack@7.3.14(@react-navigation/native@7.1.10(react-native@0.79.6(@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.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)': 9986 dependencies: 9987 + '@react-navigation/elements': 2.4.3(@react-navigation/native@7.1.10(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 9988 + '@react-navigation/native': 7.1.10(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 9989 react: 19.0.0 9990 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 9991 + react-native-safe-area-context: 5.4.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 9992 + react-native-screens: 4.10.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 9993 warn-once: 0.1.1 9994 transitivePeerDependencies: 9995 - '@react-native-masked-view/masked-view' 9996 9997 + '@react-navigation/native@7.1.10(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)': 9998 dependencies: 9999 '@react-navigation/core': 7.10.0(react@19.0.0) 10000 escape-string-regexp: 4.0.0 10001 fast-deep-equal: 3.1.3 10002 nanoid: 3.3.11 10003 react: 19.0.0 10004 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 10005 use-latest-callback: 0.2.3(react@19.0.0) 10006 10007 '@react-navigation/routers@7.4.0': 10008 dependencies: 10009 nanoid: 3.3.11 10010 10011 + '@rn-primitives/avatar@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)': 10012 dependencies: 10013 + '@rn-primitives/hooks': 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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 10014 + '@rn-primitives/slot': 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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 10015 + '@rn-primitives/types': 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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 10016 react: 19.0.0 10017 optionalDependencies: 10018 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 10019 react-native-web: 0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 10020 10021 + '@rn-primitives/hooks@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)': 10022 dependencies: 10023 + '@rn-primitives/types': 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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 10024 react: 19.0.0 10025 optionalDependencies: 10026 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 10027 react-native-web: 0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 10028 10029 + '@rn-primitives/hover-card@1.1.0(@rn-primitives/portal@1.3.0(@types/react@19.0.14)(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(use-sync-external-store@1.5.0(react@19.0.0)))(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)': 10030 dependencies: 10031 '@radix-ui/react-hover-card': 1.1.4(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 10032 + '@rn-primitives/hooks': 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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 10033 + '@rn-primitives/popover': 1.1.0(@rn-primitives/portal@1.3.0(@types/react@19.0.14)(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(use-sync-external-store@1.5.0(react@19.0.0)))(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 10034 + '@rn-primitives/portal': 1.3.0(@types/react@19.0.14)(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(use-sync-external-store@1.5.0(react@19.0.0)) 10035 + '@rn-primitives/slot': 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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 10036 + '@rn-primitives/types': 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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 10037 react: 19.0.0 10038 optionalDependencies: 10039 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 10040 react-native-web: 0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 10041 transitivePeerDependencies: 10042 - '@types/react' 10043 - '@types/react-dom' 10044 - react-dom 10045 10046 + '@rn-primitives/popover@1.1.0(@rn-primitives/portal@1.3.0(@types/react@19.0.14)(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(use-sync-external-store@1.5.0(react@19.0.0)))(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)': 10047 dependencies: 10048 '@radix-ui/react-popover': 1.1.4(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 10049 + '@rn-primitives/hooks': 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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 10050 + '@rn-primitives/portal': 1.3.0(@types/react@19.0.14)(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(use-sync-external-store@1.5.0(react@19.0.0)) 10051 + '@rn-primitives/slot': 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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 10052 + '@rn-primitives/types': 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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 10053 react: 19.0.0 10054 optionalDependencies: 10055 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 10056 react-native-web: 0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 10057 transitivePeerDependencies: 10058 - '@types/react' 10059 - '@types/react-dom' 10060 - react-dom 10061 10062 + '@rn-primitives/portal@1.3.0(@types/react@19.0.14)(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(use-sync-external-store@1.5.0(react@19.0.0))': 10063 dependencies: 10064 react: 19.0.0 10065 zustand: 5.0.5(@types/react@19.0.14)(react@19.0.0)(use-sync-external-store@1.5.0(react@19.0.0)) 10066 optionalDependencies: 10067 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 10068 react-native-web: 0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 10069 transitivePeerDependencies: 10070 - '@types/react' 10071 - immer 10072 - use-sync-external-store 10073 10074 + '@rn-primitives/progress@1.1.0(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)': 10075 dependencies: 10076 '@radix-ui/react-progress': 1.1.1(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 10077 + '@rn-primitives/slot': 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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 10078 + '@rn-primitives/types': 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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 10079 react: 19.0.0 10080 optionalDependencies: 10081 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 10082 react-native-web: 0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 10083 transitivePeerDependencies: 10084 - '@types/react' 10085 - '@types/react-dom' 10086 - react-dom 10087 10088 + '@rn-primitives/slot@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)': 10089 dependencies: 10090 react: 19.0.0 10091 optionalDependencies: 10092 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 10093 react-native-web: 0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 10094 10095 + '@rn-primitives/tooltip@1.1.0(@rn-primitives/portal@1.3.0(@types/react@19.0.14)(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(use-sync-external-store@1.5.0(react@19.0.0)))(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)': 10096 dependencies: 10097 '@radix-ui/react-tooltip': 1.1.6(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 10098 + '@rn-primitives/hooks': 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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 10099 + '@rn-primitives/portal': 1.3.0(@types/react@19.0.14)(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(use-sync-external-store@1.5.0(react@19.0.0)) 10100 + '@rn-primitives/slot': 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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 10101 + '@rn-primitives/types': 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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 10102 react: 19.0.0 10103 optionalDependencies: 10104 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 10105 react-native-web: 0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 10106 transitivePeerDependencies: 10107 - '@types/react' 10108 - '@types/react-dom' 10109 - react-dom 10110 10111 + '@rn-primitives/types@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)': 10112 dependencies: 10113 react: 19.0.0 10114 optionalDependencies: 10115 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 10116 react-native-web: 0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 10117 10118 '@rtsao/scc@1.1.0': {} ··· 10325 fast-glob: 3.3.2 10326 is-glob: 4.0.3 10327 minimatch: 9.0.5 10328 + semver: 7.7.2 10329 ts-api-utils: 1.4.3(typescript@5.8.3) 10330 typescript: 5.8.3 10331 transitivePeerDependencies: ··· 12018 jest-mock: 30.2.0 12019 jest-util: 30.2.0 12020 12021 + expo-asset@11.1.7(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0): 12022 dependencies: 12023 '@expo/image-utils': 0.7.6 12024 + expo: 53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12025 + expo-constants: 17.1.7(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)) 12026 react: 19.0.0 12027 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 12028 transitivePeerDependencies: 12029 - supports-color 12030 12031 + expo-asset@11.1.7(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0): 12032 dependencies: 12033 '@expo/image-utils': 0.7.6 12034 + expo: 53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12035 + expo-constants: 17.1.7(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)) 12036 react: 19.0.0 12037 + react-native: 0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0) 12038 transitivePeerDependencies: 12039 - supports-color 12040 12041 + expo-constants@17.1.6(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)): 12042 dependencies: 12043 '@expo/config': 11.0.10 12044 '@expo/env': 1.0.5 12045 + expo: 53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12046 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 12047 transitivePeerDependencies: 12048 - supports-color 12049 12050 + expo-constants@17.1.7(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)): 12051 dependencies: 12052 '@expo/config': 11.0.13 12053 '@expo/env': 1.0.7 12054 + expo: 53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12055 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 12056 transitivePeerDependencies: 12057 - supports-color 12058 12059 + expo-constants@17.1.7(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)): 12060 dependencies: 12061 '@expo/config': 11.0.13 12062 '@expo/env': 1.0.7 12063 + expo: 53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12064 + react-native: 0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0) 12065 transitivePeerDependencies: 12066 - supports-color 12067 12068 + expo-file-system@18.1.11(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)): 12069 dependencies: 12070 + expo: 53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12071 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 12072 12073 + expo-file-system@18.1.11(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)): 12074 dependencies: 12075 + expo: 53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12076 + react-native: 0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0) 12077 12078 + expo-font@13.3.1(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0): 12079 dependencies: 12080 + expo: 53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12081 fontfaceobserver: 2.3.0 12082 react: 19.0.0 12083 12084 + expo-font@13.3.2(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0): 12085 dependencies: 12086 + expo: 53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12087 fontfaceobserver: 2.3.0 12088 react: 19.0.0 12089 12090 + expo-font@13.3.2(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0): 12091 dependencies: 12092 + expo: 53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12093 fontfaceobserver: 2.3.0 12094 react: 19.0.0 12095 12096 + expo-image-loader@5.1.0(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)): 12097 dependencies: 12098 + expo: 53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12099 12100 + expo-image-picker@16.1.4(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)): 12101 dependencies: 12102 + expo: 53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12103 + expo-image-loader: 5.1.0(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)) 12104 12105 + expo-keep-awake@14.1.4(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0): 12106 dependencies: 12107 + expo: 53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12108 react: 19.0.0 12109 12110 + expo-keep-awake@14.1.4(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0): 12111 dependencies: 12112 + expo: 53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12113 react: 19.0.0 12114 12115 + expo-linking@7.1.4(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0): 12116 dependencies: 12117 + expo-constants: 17.1.6(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)) 12118 invariant: 2.2.4 12119 react: 19.0.0 12120 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 12121 transitivePeerDependencies: 12122 - expo 12123 - supports-color ··· 12136 dependencies: 12137 invariant: 2.2.4 12138 12139 + expo-router@5.0.6(6uar7qyy7j5atz75qvftmg5rai): 12140 dependencies: 12141 + '@expo/metro-runtime': 5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)) 12142 '@expo/server': 0.6.2 12143 '@radix-ui/react-slot': 1.2.0(@types/react@19.0.14)(react@19.0.0) 12144 + '@react-navigation/bottom-tabs': 7.3.14(@react-navigation/native@7.1.10(react-native@0.79.6(@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.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12145 + '@react-navigation/native': 7.1.10(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12146 + '@react-navigation/native-stack': 7.3.14(@react-navigation/native@7.1.10(react-native@0.79.6(@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.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12147 client-only: 0.0.1 12148 + expo: 53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12149 + expo-constants: 17.1.6(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)) 12150 + expo-linking: 7.1.4(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12151 invariant: 2.2.4 12152 react-fast-compare: 3.2.2 12153 + react-native-is-edge-to-edge: 1.1.6(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12154 + react-native-safe-area-context: 5.4.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12155 + react-native-screens: 4.10.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12156 schema-utils: 4.3.0 12157 semver: 7.6.3 12158 server-only: 0.0.1 12159 shallowequal: 1.1.0 12160 optionalDependencies: 12161 + react-native-reanimated: 3.17.5(@babel/core@7.26.0)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12162 transitivePeerDependencies: 12163 - '@react-native-masked-view/masked-view' 12164 - '@types/react' ··· 12166 - react-native 12167 - supports-color 12168 12169 + expo-splash-screen@0.30.8(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)): 12170 dependencies: 12171 '@expo/prebuild-config': 9.0.11 12172 + expo: 53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12173 transitivePeerDependencies: 12174 - supports-color 12175 12176 + expo-sqlite@15.2.9(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0): 12177 dependencies: 12178 + expo: 53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12179 react: 19.0.0 12180 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 12181 12182 + expo-status-bar@2.2.3(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0): 12183 dependencies: 12184 react: 19.0.0 12185 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 12186 + react-native-edge-to-edge: 1.6.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12187 + react-native-is-edge-to-edge: 1.1.6(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12188 12189 + expo-system-ui@5.0.7(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)): 12190 dependencies: 12191 '@react-native/normalize-colors': 0.79.2 12192 debug: 4.4.0 12193 + expo: 53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12194 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 12195 optionalDependencies: 12196 react-native-web: 0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 12197 transitivePeerDependencies: 12198 - supports-color 12199 12200 + expo-web-browser@14.1.6(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)): 12201 dependencies: 12202 + expo: 53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12203 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 12204 12205 + expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0): 12206 dependencies: 12207 '@babel/runtime': 7.26.0 12208 '@expo/cli': 0.24.20 ··· 12210 '@expo/config-plugins': 10.1.2 12211 '@expo/fingerprint': 0.13.4 12212 '@expo/metro-config': 0.20.17 12213 + '@expo/vector-icons': 14.1.0(expo-font@13.3.2(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12214 babel-preset-expo: 13.2.3(@babel/core@7.26.0)(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206) 12215 + expo-asset: 11.1.7(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12216 + expo-constants: 17.1.7(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)) 12217 + expo-file-system: 18.1.11(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)) 12218 + expo-font: 13.3.2(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0) 12219 + expo-keep-awake: 14.1.4(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0) 12220 expo-modules-autolinking: 2.1.14 12221 expo-modules-core: 2.5.0 12222 react: 19.0.0 12223 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 12224 + react-native-edge-to-edge: 1.6.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12225 whatwg-url-without-unicode: 8.0.0-3 12226 optionalDependencies: 12227 + '@expo/metro-runtime': 5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)) 12228 transitivePeerDependencies: 12229 - '@babel/core' 12230 - babel-plugin-react-compiler ··· 12233 - supports-color 12234 - utf-8-validate 12235 12236 + expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0): 12237 dependencies: 12238 '@babel/runtime': 7.26.0 12239 '@expo/cli': 0.24.20 ··· 12241 '@expo/config-plugins': 10.1.2 12242 '@expo/fingerprint': 0.13.4 12243 '@expo/metro-config': 0.20.17 12244 + '@expo/vector-icons': 14.1.0(expo-font@13.3.2(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12245 babel-preset-expo: 13.2.3(@babel/core@7.28.4) 12246 + expo-asset: 11.1.7(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12247 + expo-constants: 17.1.7(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)) 12248 + expo-file-system: 18.1.11(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)) 12249 + expo-font: 13.3.2(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0) 12250 + expo-keep-awake: 14.1.4(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0) 12251 expo-modules-autolinking: 2.1.14 12252 expo-modules-core: 2.5.0 12253 react: 19.0.0 12254 + react-native: 0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0) 12255 + react-native-edge-to-edge: 1.6.0(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 12256 whatwg-url-without-unicode: 8.0.0-3 12257 optionalDependencies: 12258 + '@expo/metro-runtime': 5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)) 12259 transitivePeerDependencies: 12260 - '@babel/core' 12261 - babel-plugin-react-compiler ··· 12831 12832 is-bun-module@1.3.0: 12833 dependencies: 12834 + semver: 7.7.2 12835 12836 is-callable@1.2.7: {} 12837 ··· 12967 istanbul-lib-instrument@6.0.3: 12968 dependencies: 12969 '@babel/core': 7.28.4 12970 + '@babel/parser': 7.28.4 12971 '@istanbuljs/schema': 0.1.3 12972 istanbul-lib-coverage: 3.2.2 12973 semver: 7.7.2 ··· 13207 jest-util: 30.2.0 13208 jest-validate: 30.2.0 13209 13210 + jest-expo@54.0.12(@babel/core@7.28.4)(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(jest@30.2.0(@types/node@20.17.10))(react-dom@19.0.0(react@19.0.0))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(webpack@5.97.1): 13211 dependencies: 13212 '@expo/config': 12.0.10 13213 '@expo/json-file': 10.0.7 13214 '@jest/create-cache-key-function': 29.7.0 13215 '@jest/globals': 29.7.0 13216 babel-jest: 29.7.0(@babel/core@7.28.4) 13217 + expo: 53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 13218 jest-environment-jsdom: 29.7.0 13219 jest-snapshot: 29.7.0 13220 jest-watch-select-projects: 2.0.0 13221 jest-watch-typeahead: 2.2.1(jest@30.2.0(@types/node@20.17.10)) 13222 json5: 2.2.3 13223 lodash: 4.17.21 13224 + react-native: 0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0) 13225 react-server-dom-webpack: 19.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(webpack@5.97.1) 13226 react-test-renderer: 19.1.0(react@19.0.0) 13227 server-only: 0.0.1 ··· 13847 dependencies: 13848 yallist: 3.1.1 13849 13850 + lucide-react-native@0.507.0(react-native-svg@15.11.2(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0): 13851 dependencies: 13852 react: 19.0.0 13853 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 13854 + react-native-svg: 15.11.2(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 13855 13856 make-dir@4.0.0: 13857 dependencies: ··· 13960 13961 metro-source-map@0.82.4: 13962 dependencies: 13963 + '@babel/traverse': 7.28.4 13964 '@babel/traverse--for-generate-function-map': '@babel/traverse@7.28.4' 13965 + '@babel/types': 7.28.4 13966 flow-enums-runtime: 0.0.6 13967 invariant: 2.2.4 13968 metro-symbolicate: 0.82.4 ··· 13988 dependencies: 13989 '@babel/core': 7.28.4 13990 '@babel/generator': 7.28.3 13991 + '@babel/template': 7.27.2 13992 + '@babel/traverse': 7.28.4 13993 flow-enums-runtime: 0.0.6 13994 nullthrows: 1.1.1 13995 transitivePeerDependencies: ··· 13999 dependencies: 14000 '@babel/core': 7.28.4 14001 '@babel/generator': 7.28.3 14002 + '@babel/parser': 7.28.4 14003 '@babel/types': 7.28.4 14004 flow-enums-runtime: 0.0.6 14005 metro: 0.82.4 ··· 14017 14018 metro@0.82.4: 14019 dependencies: 14020 + '@babel/code-frame': 7.27.1 14021 + '@babel/core': 7.28.4 14022 + '@babel/generator': 7.28.3 14023 + '@babel/parser': 7.28.4 14024 + '@babel/template': 7.27.2 14025 + '@babel/traverse': 7.28.4 14026 + '@babel/types': 7.28.4 14027 accepts: 1.3.8 14028 chalk: 4.1.2 14029 ci-info: 2.0.0 ··· 14137 14138 napi-postinstall@0.3.4: {} 14139 14140 + nativewind@4.1.23(react-native-reanimated@3.17.5(@babel/core@7.26.0)(react-native@0.79.6(@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.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@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))): 14141 dependencies: 14142 comment-json: 4.2.5 14143 debug: 4.4.0 14144 + react-native-css-interop: 0.1.22(react-native-reanimated@3.17.5(@babel/core@7.26.0)(react-native@0.79.6(@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.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@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))) 14145 tailwindcss: 3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)) 14146 transitivePeerDependencies: 14147 - react ··· 14182 dependencies: 14183 hosted-git-info: 7.0.2 14184 proc-log: 4.2.0 14185 + semver: 7.7.2 14186 validate-npm-package-name: 5.0.1 14187 14188 npm-run-path@4.0.1: ··· 14640 14641 react-is@19.1.0: {} 14642 14643 + react-native-css-interop@0.1.18(react-native-reanimated@3.17.5(@babel/core@7.26.0)(react-native@0.79.6(@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.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@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))): 14644 dependencies: 14645 '@babel/helper-module-imports': 7.25.9 14646 '@babel/traverse': 7.26.4 ··· 14648 debug: 4.4.0 14649 lightningcss: 1.27.0 14650 react: 19.0.0 14651 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 14652 + react-native-reanimated: 3.17.5(@babel/core@7.26.0)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 14653 semver: 7.6.3 14654 tailwindcss: 3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)) 14655 optionalDependencies: 14656 + react-native-safe-area-context: 5.4.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 14657 + react-native-svg: 15.11.2(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 14658 transitivePeerDependencies: 14659 - supports-color 14660 14661 + react-native-css-interop@0.1.22(react-native-reanimated@3.17.5(@babel/core@7.26.0)(react-native@0.79.6(@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.6(@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.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@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))): 14662 dependencies: 14663 '@babel/helper-module-imports': 7.25.9 14664 '@babel/traverse': 7.26.4 ··· 14666 debug: 4.4.0 14667 lightningcss: 1.28.2 14668 react: 19.0.0 14669 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 14670 + react-native-reanimated: 3.17.5(@babel/core@7.26.0)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 14671 semver: 7.6.3 14672 tailwindcss: 3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)) 14673 optionalDependencies: 14674 + react-native-safe-area-context: 5.4.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 14675 + react-native-svg: 15.11.2(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 14676 transitivePeerDependencies: 14677 - supports-color 14678 14679 + react-native-edge-to-edge@1.6.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0): 14680 dependencies: 14681 react: 19.0.0 14682 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 14683 14684 + react-native-edge-to-edge@1.6.0(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0): 14685 dependencies: 14686 react: 19.0.0 14687 + react-native: 0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0) 14688 14689 + react-native-gesture-handler@2.24.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0): 14690 dependencies: 14691 '@egjs/hammerjs': 2.0.17 14692 hoist-non-react-statics: 3.3.2 14693 invariant: 2.2.4 14694 react: 19.0.0 14695 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 14696 14697 + react-native-is-edge-to-edge@1.1.6(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0): 14698 dependencies: 14699 react: 19.0.0 14700 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 14701 14702 + react-native-is-edge-to-edge@1.1.7(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0): 14703 dependencies: 14704 react: 19.0.0 14705 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 14706 14707 + react-native-quick-base64@2.1.2(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0): 14708 dependencies: 14709 base64-js: 1.5.1 14710 react: 19.0.0 14711 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 14712 14713 + react-native-quick-crypto@0.7.17(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0): 14714 dependencies: 14715 + '@craftzdog/react-native-buffer': 6.0.5(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 14716 events: 3.3.0 14717 readable-stream: 4.5.2 14718 string_decoder: 1.3.0 14719 util: 0.12.5 14720 + transitivePeerDependencies: 14721 + - react 14722 + - react-native 14723 14724 + react-native-reanimated@3.17.5(@babel/core@7.26.0)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0): 14725 dependencies: 14726 '@babel/core': 7.26.0 14727 '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.0) ··· 14736 convert-source-map: 2.0.0 14737 invariant: 2.2.4 14738 react: 19.0.0 14739 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 14740 + react-native-is-edge-to-edge: 1.1.7(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 14741 transitivePeerDependencies: 14742 - supports-color 14743 14744 + react-native-safe-area-context@5.4.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0): 14745 dependencies: 14746 react: 19.0.0 14747 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 14748 14749 + react-native-screens@4.10.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0): 14750 dependencies: 14751 react: 19.0.0 14752 react-freeze: 1.0.4(react@19.0.0) 14753 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 14754 warn-once: 0.1.1 14755 14756 + react-native-svg@15.11.2(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0): 14757 dependencies: 14758 css-select: 5.1.0 14759 css-tree: 1.1.3 14760 react: 19.0.0 14761 + react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 14762 warn-once: 0.1.1 14763 14764 react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0): ··· 14776 transitivePeerDependencies: 14777 - encoding 14778 14779 + react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0): 14780 dependencies: 14781 '@jest/create-cache-key-function': 29.7.0 14782 + '@react-native/assets-registry': 0.79.6 14783 + '@react-native/codegen': 0.79.6(@babel/core@7.26.0) 14784 + '@react-native/community-cli-plugin': 0.79.6 14785 + '@react-native/gradle-plugin': 0.79.6 14786 + '@react-native/js-polyfills': 0.79.6 14787 + '@react-native/normalize-colors': 0.79.6 14788 + '@react-native/virtualized-lists': 0.79.6(@types/react@19.0.14)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 14789 abort-controller: 3.0.0 14790 anser: 1.4.10 14791 ansi-regex: 5.0.1 ··· 14810 react-refresh: 0.14.2 14811 regenerator-runtime: 0.13.11 14812 scheduler: 0.25.0 14813 + semver: 7.7.2 14814 stacktrace-parser: 0.1.10 14815 whatwg-fetch: 3.6.20 14816 ws: 6.2.3 ··· 14824 - supports-color 14825 - utf-8-validate 14826 14827 + react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0): 14828 dependencies: 14829 '@jest/create-cache-key-function': 29.7.0 14830 + '@react-native/assets-registry': 0.79.6 14831 + '@react-native/codegen': 0.79.6(@babel/core@7.28.4) 14832 + '@react-native/community-cli-plugin': 0.79.6 14833 + '@react-native/gradle-plugin': 0.79.6 14834 + '@react-native/js-polyfills': 0.79.6 14835 + '@react-native/normalize-colors': 0.79.6 14836 + '@react-native/virtualized-lists': 0.79.6(@types/react@19.0.14)(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0) 14837 abort-controller: 3.0.0 14838 anser: 1.4.10 14839 ansi-regex: 5.0.1 ··· 14858 react-refresh: 0.14.2 14859 regenerator-runtime: 0.13.11 14860 scheduler: 0.25.0 14861 + semver: 7.7.2 14862 stacktrace-parser: 0.1.10 14863 whatwg-fetch: 3.6.20 14864 ws: 6.2.3 ··· 15570 terser@5.37.0: 15571 dependencies: 15572 '@jridgewell/source-map': 0.3.6 15573 + acorn: 8.15.0 15574 commander: 2.20.3 15575 source-map-support: 0.5.21 15576 ··· 15945 '@webassemblyjs/ast': 1.14.1 15946 '@webassemblyjs/wasm-edit': 1.14.1 15947 '@webassemblyjs/wasm-parser': 1.14.1 15948 + acorn: 8.15.0 15949 browserslist: 4.24.3 15950 chrome-trace-event: 1.0.4 15951 enhanced-resolve: 5.17.1