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

Compare changes

Choose any two refs to compare.

Changed files
+4386 -7424
apps
amethyst
android
app
components
hooks
ios
+1 -1
Cargo.toml
··· 44 44 "handshake", 45 45 ] } 46 46 atrium-api = "0.25" 47 - chrono = "0.4" 47 + chrono = { version = "0.4", features = ["serde"] } 48 48 uuid = { version = "1.0", features = ["v4", "serde"] } 49 49 types = { path = "services/types" } 50 50 rocketman = "0.2.3"
+2
apps/amethyst/.gitignore
··· 17 17 *.p12 18 18 *.key 19 19 *.mobileprovision 20 + /ios 21 + /android 20 22 21 23 # Metro 22 24 .metro-health-check*
-16
apps/amethyst/android/.gitignore
··· 1 - # OSX 2 - # 3 - .DS_Store 4 - 5 - # Android/IntelliJ 6 - # 7 - build/ 8 - .idea 9 - .gradle 10 - local.properties 11 - *.iml 12 - *.hprof 13 - .cxx/ 14 - 15 - # Bundle artifacts 16 - *.jsbundle
-176
apps/amethyst/android/app/build.gradle
··· 1 - apply plugin: "com.android.application" 2 - apply plugin: "org.jetbrains.kotlin.android" 3 - apply plugin: "com.facebook.react" 4 - 5 - def projectRoot = rootDir.getAbsoluteFile().getParentFile().getAbsolutePath() 6 - 7 - /** 8 - * This is the configuration block to customize your React Native Android app. 9 - * By default you don't need to apply any configuration, just uncomment the lines you need. 10 - */ 11 - react { 12 - entryFile = file(["node", "-e", "require('expo/scripts/resolveAppEntry')", projectRoot, "android", "absolute"].execute(null, rootDir).text.trim()) 13 - reactNativeDir = new File(["node", "--print", "require.resolve('react-native/package.json')"].execute(null, rootDir).text.trim()).getParentFile().getAbsoluteFile() 14 - hermesCommand = new File(["node", "--print", "require.resolve('react-native/package.json')"].execute(null, rootDir).text.trim()).getParentFile().getAbsolutePath() + "/sdks/hermesc/%OS-BIN%/hermesc" 15 - codegenDir = new File(["node", "--print", "require.resolve('@react-native/codegen/package.json', { paths: [require.resolve('react-native/package.json')] })"].execute(null, rootDir).text.trim()).getParentFile().getAbsoluteFile() 16 - 17 - // Use Expo CLI to bundle the app, this ensures the Metro config 18 - // works correctly with Expo projects. 19 - cliFile = new File(["node", "--print", "require.resolve('@expo/cli', { paths: [require.resolve('expo/package.json')] })"].execute(null, rootDir).text.trim()) 20 - bundleCommand = "export:embed" 21 - 22 - /* Folders */ 23 - // The root of your project, i.e. where "package.json" lives. Default is '../..' 24 - // root = file("../../") 25 - // The folder where the react-native NPM package is. Default is ../../node_modules/react-native 26 - // reactNativeDir = file("../../node_modules/react-native") 27 - // The folder where the react-native Codegen package is. Default is ../../node_modules/@react-native/codegen 28 - // codegenDir = file("../../node_modules/@react-native/codegen") 29 - 30 - /* Variants */ 31 - // The list of variants to that are debuggable. For those we're going to 32 - // skip the bundling of the JS bundle and the assets. By default is just 'debug'. 33 - // If you add flavors like lite, prod, etc. you'll have to list your debuggableVariants. 34 - // debuggableVariants = ["liteDebug", "prodDebug"] 35 - 36 - /* Bundling */ 37 - // A list containing the node command and its flags. Default is just 'node'. 38 - // nodeExecutableAndArgs = ["node"] 39 - 40 - // 41 - // The path to the CLI configuration file. Default is empty. 42 - // bundleConfig = file(../rn-cli.config.js) 43 - // 44 - // The name of the generated asset file containing your JS bundle 45 - // bundleAssetName = "MyApplication.android.bundle" 46 - // 47 - // The entry file for bundle generation. Default is 'index.android.js' or 'index.js' 48 - // entryFile = file("../js/MyApplication.android.js") 49 - // 50 - // A list of extra flags to pass to the 'bundle' commands. 51 - // See https://github.com/react-native-community/cli/blob/main/docs/commands.md#bundle 52 - // extraPackagerArgs = [] 53 - 54 - /* Hermes Commands */ 55 - // The hermes compiler command to run. By default it is 'hermesc' 56 - // hermesCommand = "$rootDir/my-custom-hermesc/bin/hermesc" 57 - // 58 - // The list of flags to pass to the Hermes compiler. By default is "-O", "-output-source-map" 59 - // hermesFlags = ["-O", "-output-source-map"] 60 - 61 - /* Autolinking */ 62 - autolinkLibrariesWithApp() 63 - } 64 - 65 - /** 66 - * Set this to true to Run Proguard on Release builds to minify the Java bytecode. 67 - */ 68 - def enableProguardInReleaseBuilds = (findProperty('android.enableProguardInReleaseBuilds') ?: false).toBoolean() 69 - 70 - /** 71 - * The preferred build flavor of JavaScriptCore (JSC) 72 - * 73 - * For example, to use the international variant, you can use: 74 - * `def jscFlavor = 'org.webkit:android-jsc-intl:+'` 75 - * 76 - * The international variant includes ICU i18n library and necessary data 77 - * allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that 78 - * give correct results when using with locales other than en-US. Note that 79 - * this variant is about 6MiB larger per architecture than default. 80 - */ 81 - def jscFlavor = 'org.webkit:android-jsc:+' 82 - 83 - android { 84 - ndkVersion rootProject.ext.ndkVersion 85 - 86 - buildToolsVersion rootProject.ext.buildToolsVersion 87 - compileSdk rootProject.ext.compileSdkVersion 88 - 89 - namespace 'fm.teal.amethyst' 90 - defaultConfig { 91 - applicationId 'fm.teal.amethyst' 92 - minSdkVersion rootProject.ext.minSdkVersion 93 - targetSdkVersion rootProject.ext.targetSdkVersion 94 - versionCode 1 95 - versionName "1.0.0" 96 - } 97 - signingConfigs { 98 - debug { 99 - storeFile file('debug.keystore') 100 - storePassword 'android' 101 - keyAlias 'androiddebugkey' 102 - keyPassword 'android' 103 - } 104 - } 105 - buildTypes { 106 - debug { 107 - signingConfig signingConfigs.debug 108 - } 109 - release { 110 - // Caution! In production, you need to generate your own keystore file. 111 - // see https://reactnative.dev/docs/signed-apk-android. 112 - signingConfig signingConfigs.debug 113 - shrinkResources (findProperty('android.enableShrinkResourcesInReleaseBuilds')?.toBoolean() ?: false) 114 - minifyEnabled enableProguardInReleaseBuilds 115 - proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 116 - crunchPngs (findProperty('android.enablePngCrunchInReleaseBuilds')?.toBoolean() ?: true) 117 - } 118 - } 119 - packagingOptions { 120 - jniLibs { 121 - useLegacyPackaging (findProperty('expo.useLegacyPackaging')?.toBoolean() ?: false) 122 - } 123 - } 124 - androidResources { 125 - ignoreAssetsPattern '!.svn:!.git:!.ds_store:!*.scc:!CVS:!thumbs.db:!picasa.ini:!*~' 126 - } 127 - } 128 - 129 - // Apply static values from `gradle.properties` to the `android.packagingOptions` 130 - // Accepts values in comma delimited lists, example: 131 - // android.packagingOptions.pickFirsts=/LICENSE,**/picasa.ini 132 - ["pickFirsts", "excludes", "merges", "doNotStrip"].each { prop -> 133 - // Split option: 'foo,bar' -> ['foo', 'bar'] 134 - def options = (findProperty("android.packagingOptions.$prop") ?: "").split(","); 135 - // Trim all elements in place. 136 - for (i in 0..<options.size()) options[i] = options[i].trim(); 137 - // `[] - ""` is essentially `[""].filter(Boolean)` removing all empty strings. 138 - options -= "" 139 - 140 - if (options.length > 0) { 141 - println "android.packagingOptions.$prop += $options ($options.length)" 142 - // Ex: android.packagingOptions.pickFirsts += '**/SCCS/**' 143 - options.each { 144 - android.packagingOptions[prop] += it 145 - } 146 - } 147 - } 148 - 149 - dependencies { 150 - // The version of react-native is set by the React Native Gradle Plugin 151 - implementation("com.facebook.react:react-android") 152 - 153 - def isGifEnabled = (findProperty('expo.gif.enabled') ?: "") == "true"; 154 - def isWebpEnabled = (findProperty('expo.webp.enabled') ?: "") == "true"; 155 - def isWebpAnimatedEnabled = (findProperty('expo.webp.animated') ?: "") == "true"; 156 - 157 - if (isGifEnabled) { 158 - // For animated gif support 159 - implementation("com.facebook.fresco:animated-gif:${reactAndroidLibs.versions.fresco.get()}") 160 - } 161 - 162 - if (isWebpEnabled) { 163 - // For webp support 164 - implementation("com.facebook.fresco:webpsupport:${reactAndroidLibs.versions.fresco.get()}") 165 - if (isWebpAnimatedEnabled) { 166 - // Animated webp support 167 - implementation("com.facebook.fresco:animated-webp:${reactAndroidLibs.versions.fresco.get()}") 168 - } 169 - } 170 - 171 - if (hermesEnabled.toBoolean()) { 172 - implementation("com.facebook.react:hermes-android") 173 - } else { 174 - implementation jscFlavor 175 - } 176 - }
apps/amethyst/android/app/debug.keystore

This is a binary file and will not be displayed.

-14
apps/amethyst/android/app/proguard-rules.pro
··· 1 - # Add project specific ProGuard rules here. 2 - # By default, the flags in this file are appended to flags specified 3 - # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt 4 - # You can edit the include path and order by changing the proguardFiles 5 - # directive in build.gradle. 6 - # 7 - # For more details, see 8 - # http://developer.android.com/guide/developing/tools/proguard.html 9 - 10 - # react-native-reanimated 11 - -keep class com.swmansion.reanimated.** { *; } 12 - -keep class com.facebook.react.turbomodule.** { *; } 13 - 14 - # Add any project specific keep options here:
-7
apps/amethyst/android/app/src/debug/AndroidManifest.xml
··· 1 - <manifest xmlns:android="http://schemas.android.com/apk/res/android" 2 - xmlns:tools="http://schemas.android.com/tools"> 3 - 4 - <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/> 5 - 6 - <application android:usesCleartextTraffic="true" tools:targetApi="28" tools:ignore="GoogleAppIndexingWarning" tools:replace="android:usesCleartextTraffic" /> 7 - </manifest>
-32
apps/amethyst/android/app/src/main/AndroidManifest.xml
··· 1 - <manifest xmlns:android="http://schemas.android.com/apk/res/android"> 2 - <uses-permission android:name="android.permission.INTERNET"/> 3 - <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> 4 - <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/> 5 - <uses-permission android:name="android.permission.VIBRATE"/> 6 - <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> 7 - <queries> 8 - <intent> 9 - <action android:name="android.intent.action.VIEW"/> 10 - <category android:name="android.intent.category.BROWSABLE"/> 11 - <data android:scheme="https"/> 12 - </intent> 13 - </queries> 14 - <application android:name=".MainApplication" android:label="@string/app_name" android:icon="@mipmap/ic_launcher" android:roundIcon="@mipmap/ic_launcher_round" android:allowBackup="true" android:theme="@style/AppTheme" android:supportsRtl="true"> 15 - <meta-data android:name="expo.modules.updates.ENABLED" android:value="false"/> 16 - <meta-data android:name="expo.modules.updates.EXPO_UPDATES_CHECK_ON_LAUNCH" android:value="ALWAYS"/> 17 - <meta-data android:name="expo.modules.updates.EXPO_UPDATES_LAUNCH_WAIT_MS" android:value="0"/> 18 - <activity android:name=".MainActivity" android:configChanges="keyboard|keyboardHidden|orientation|screenSize|screenLayout|uiMode" android:launchMode="singleTask" android:windowSoftInputMode="adjustResize" android:theme="@style/Theme.App.SplashScreen" android:exported="true" android:screenOrientation="portrait"> 19 - <intent-filter> 20 - <action android:name="android.intent.action.MAIN"/> 21 - <category android:name="android.intent.category.LAUNCHER"/> 22 - </intent-filter> 23 - <intent-filter> 24 - <action android:name="android.intent.action.VIEW"/> 25 - <category android:name="android.intent.category.DEFAULT"/> 26 - <category android:name="android.intent.category.BROWSABLE"/> 27 - <data android:scheme="fm.teal.amethyst"/> 28 - <data android:scheme="fm.teal.amethyst"/> 29 - </intent-filter> 30 - </activity> 31 - </application> 32 - </manifest>
-65
apps/amethyst/android/app/src/main/java/fm/teal/amethyst/MainActivity.kt
··· 1 - package fm.teal.amethyst 2 - import expo.modules.splashscreen.SplashScreenManager 3 - 4 - import android.os.Build 5 - import android.os.Bundle 6 - 7 - import com.facebook.react.ReactActivity 8 - import com.facebook.react.ReactActivityDelegate 9 - import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint.fabricEnabled 10 - import com.facebook.react.defaults.DefaultReactActivityDelegate 11 - 12 - import expo.modules.ReactActivityDelegateWrapper 13 - 14 - class MainActivity : ReactActivity() { 15 - override fun onCreate(savedInstanceState: Bundle?) { 16 - // Set the theme to AppTheme BEFORE onCreate to support 17 - // coloring the background, status bar, and navigation bar. 18 - // This is required for expo-splash-screen. 19 - // setTheme(R.style.AppTheme); 20 - // @generated begin expo-splashscreen - expo prebuild (DO NOT MODIFY) sync-f3ff59a738c56c9a6119210cb55f0b613eb8b6af 21 - SplashScreenManager.registerOnActivity(this) 22 - // @generated end expo-splashscreen 23 - super.onCreate(null) 24 - } 25 - 26 - /** 27 - * Returns the name of the main component registered from JavaScript. This is used to schedule 28 - * rendering of the component. 29 - */ 30 - override fun getMainComponentName(): String = "main" 31 - 32 - /** 33 - * Returns the instance of the [ReactActivityDelegate]. We use [DefaultReactActivityDelegate] 34 - * which allows you to enable New Architecture with a single boolean flags [fabricEnabled] 35 - */ 36 - override fun createReactActivityDelegate(): ReactActivityDelegate { 37 - return ReactActivityDelegateWrapper( 38 - this, 39 - BuildConfig.IS_NEW_ARCHITECTURE_ENABLED, 40 - object : DefaultReactActivityDelegate( 41 - this, 42 - mainComponentName, 43 - fabricEnabled 44 - ){}) 45 - } 46 - 47 - /** 48 - * Align the back button behavior with Android S 49 - * where moving root activities to background instead of finishing activities. 50 - * @see <a href="https://developer.android.com/reference/android/app/Activity#onBackPressed()">onBackPressed</a> 51 - */ 52 - override fun invokeDefaultOnBackPressed() { 53 - if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.R) { 54 - if (!moveTaskToBack(false)) { 55 - // For non-root activities, use the default implementation to finish them. 56 - super.invokeDefaultOnBackPressed() 57 - } 58 - return 59 - } 60 - 61 - // Use the default back button implementation on Android S 62 - // because it's doing more than [Activity.moveTaskToBack] in fact. 63 - super.invokeDefaultOnBackPressed() 64 - } 65 - }
-57
apps/amethyst/android/app/src/main/java/fm/teal/amethyst/MainApplication.kt
··· 1 - package fm.teal.amethyst 2 - 3 - import android.app.Application 4 - import android.content.res.Configuration 5 - 6 - import com.facebook.react.PackageList 7 - import com.facebook.react.ReactApplication 8 - import com.facebook.react.ReactNativeHost 9 - import com.facebook.react.ReactPackage 10 - import com.facebook.react.ReactHost 11 - import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint.load 12 - import com.facebook.react.defaults.DefaultReactNativeHost 13 - import com.facebook.react.soloader.OpenSourceMergedSoMapping 14 - import com.facebook.soloader.SoLoader 15 - 16 - import expo.modules.ApplicationLifecycleDispatcher 17 - import expo.modules.ReactNativeHostWrapper 18 - 19 - class MainApplication : Application(), ReactApplication { 20 - 21 - override val reactNativeHost: ReactNativeHost = ReactNativeHostWrapper( 22 - this, 23 - object : DefaultReactNativeHost(this) { 24 - override fun getPackages(): List<ReactPackage> { 25 - val packages = PackageList(this).packages 26 - // Packages that cannot be autolinked yet can be added manually here, for example: 27 - // packages.add(new MyReactNativePackage()); 28 - return packages 29 - } 30 - 31 - override fun getJSMainModuleName(): String = ".expo/.virtual-metro-entry" 32 - 33 - override fun getUseDeveloperSupport(): Boolean = BuildConfig.DEBUG 34 - 35 - override val isNewArchEnabled: Boolean = BuildConfig.IS_NEW_ARCHITECTURE_ENABLED 36 - override val isHermesEnabled: Boolean = BuildConfig.IS_HERMES_ENABLED 37 - } 38 - ) 39 - 40 - override val reactHost: ReactHost 41 - get() = ReactNativeHostWrapper.createReactHost(applicationContext, reactNativeHost) 42 - 43 - override fun onCreate() { 44 - super.onCreate() 45 - SoLoader.init(this, OpenSourceMergedSoMapping) 46 - if (BuildConfig.IS_NEW_ARCHITECTURE_ENABLED) { 47 - // If you opted-in for the New Architecture, we load the native entry point for this app. 48 - load() 49 - } 50 - ApplicationLifecycleDispatcher.onApplicationCreate(this) 51 - } 52 - 53 - override fun onConfigurationChanged(newConfig: Configuration) { 54 - super.onConfigurationChanged(newConfig) 55 - ApplicationLifecycleDispatcher.onConfigurationChanged(this, newConfig) 56 - } 57 - }
-6
apps/amethyst/android/app/src/main/res/drawable/ic_launcher_background.xml
··· 1 - <layer-list xmlns:android="http://schemas.android.com/apk/res/android"> 2 - <item android:drawable="@color/splashscreen_background"/> 3 - <item> 4 - <bitmap android:gravity="center" android:src="@drawable/splashscreen_logo"/> 5 - </item> 6 - </layer-list>
-37
apps/amethyst/android/app/src/main/res/drawable/rn_edit_text_material.xml
··· 1 - <?xml version="1.0" encoding="utf-8"?> 2 - <!-- Copyright (C) 2014 The Android Open Source Project 3 - 4 - Licensed under the Apache License, Version 2.0 (the "License"); 5 - you may not use this file except in compliance with the License. 6 - You may obtain a copy of the License at 7 - 8 - http://www.apache.org/licenses/LICENSE-2.0 9 - 10 - Unless required by applicable law or agreed to in writing, software 11 - distributed under the License is distributed on an "AS IS" BASIS, 12 - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 - See the License for the specific language governing permissions and 14 - limitations under the License. 15 - --> 16 - <inset xmlns:android="http://schemas.android.com/apk/res/android" 17 - android:insetLeft="@dimen/abc_edit_text_inset_horizontal_material" 18 - android:insetRight="@dimen/abc_edit_text_inset_horizontal_material" 19 - android:insetTop="@dimen/abc_edit_text_inset_top_material" 20 - android:insetBottom="@dimen/abc_edit_text_inset_bottom_material" 21 - > 22 - 23 - <selector> 24 - <!-- 25 - This file is a copy of abc_edit_text_material (https://bit.ly/3k8fX7I). 26 - The item below with state_pressed="false" and state_focused="false" causes a NullPointerException. 27 - NullPointerException:tempt to invoke virtual method 'android.graphics.drawable.Drawable android.graphics.drawable.Drawable$ConstantState.newDrawable(android.content.res.Resources)' 28 - 29 - <item android:state_pressed="false" android:state_focused="false" android:drawable="@drawable/abc_textfield_default_mtrl_alpha"/> 30 - 31 - For more info, see https://bit.ly/3CdLStv (react-native/pull/29452) and https://bit.ly/3nxOMoR. 32 - --> 33 - <item android:state_enabled="false" android:drawable="@drawable/abc_textfield_default_mtrl_alpha"/> 34 - <item android:drawable="@drawable/abc_textfield_activated_mtrl_alpha"/> 35 - </selector> 36 - 37 - </inset>
apps/amethyst/android/app/src/main/res/drawable-hdpi/splashscreen_logo.png

This is a binary file and will not be displayed.

apps/amethyst/android/app/src/main/res/drawable-mdpi/splashscreen_logo.png

This is a binary file and will not be displayed.

apps/amethyst/android/app/src/main/res/drawable-xhdpi/splashscreen_logo.png

This is a binary file and will not be displayed.

apps/amethyst/android/app/src/main/res/drawable-xxhdpi/splashscreen_logo.png

This is a binary file and will not be displayed.

apps/amethyst/android/app/src/main/res/drawable-xxxhdpi/splashscreen_logo.png

This is a binary file and will not be displayed.

-5
apps/amethyst/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
··· 1 - <?xml version="1.0" encoding="utf-8"?> 2 - <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> 3 - <background android:drawable="@color/iconBackground"/> 4 - <foreground android:drawable="@mipmap/ic_launcher_foreground"/> 5 - </adaptive-icon>
-5
apps/amethyst/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
··· 1 - <?xml version="1.0" encoding="utf-8"?> 2 - <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> 3 - <background android:drawable="@color/iconBackground"/> 4 - <foreground android:drawable="@mipmap/ic_launcher_foreground"/> 5 - </adaptive-icon>
apps/amethyst/android/app/src/main/res/mipmap-hdpi/ic_launcher.webp

This is a binary file and will not be displayed.

apps/amethyst/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp

This is a binary file and will not be displayed.

apps/amethyst/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp

This is a binary file and will not be displayed.

apps/amethyst/android/app/src/main/res/mipmap-mdpi/ic_launcher.webp

This is a binary file and will not be displayed.

apps/amethyst/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp

This is a binary file and will not be displayed.

apps/amethyst/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp

This is a binary file and will not be displayed.

apps/amethyst/android/app/src/main/res/mipmap-xhdpi/ic_launcher.webp

This is a binary file and will not be displayed.

apps/amethyst/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp

This is a binary file and will not be displayed.

apps/amethyst/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp

This is a binary file and will not be displayed.

apps/amethyst/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp

This is a binary file and will not be displayed.

apps/amethyst/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp

This is a binary file and will not be displayed.

apps/amethyst/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp

This is a binary file and will not be displayed.

apps/amethyst/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp

This is a binary file and will not be displayed.

apps/amethyst/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp

This is a binary file and will not be displayed.

apps/amethyst/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp

This is a binary file and will not be displayed.

-6
apps/amethyst/android/app/src/main/res/values/colors.xml
··· 1 - <resources> 2 - <color name="splashscreen_background">#ffffff</color> 3 - <color name="iconBackground">#ffffff</color> 4 - <color name="colorPrimary">#023c69</color> 5 - <color name="colorPrimaryDark">#ffffff</color> 6 - </resources>
-6
apps/amethyst/android/app/src/main/res/values/strings.xml
··· 1 - <resources> 2 - <string name="app_name">amethyst</string> 3 - <string name="expo_splash_screen_resize_mode" translatable="false">contain</string> 4 - <string name="expo_splash_screen_status_bar_translucent" translatable="false">false</string> 5 - <string name="expo_system_ui_user_interface_style" translatable="false">automatic</string> 6 - </resources>
-19
apps/amethyst/android/app/src/main/res/values/styles.xml
··· 1 - <resources xmlns:tools="http://schemas.android.com/tools"> 2 - <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar"> 3 - <item name="android:textColor">@android:color/black</item> 4 - <item name="android:editTextStyle">@style/ResetEditText</item> 5 - <item name="android:editTextBackground">@drawable/rn_edit_text_material</item> 6 - <item name="colorPrimary">@color/colorPrimary</item> 7 - <item name="android:statusBarColor">#ffffff</item> 8 - </style> 9 - <style name="ResetEditText" parent="@android:style/Widget.EditText"> 10 - <item name="android:padding">0dp</item> 11 - <item name="android:textColorHint">#c8c8c8</item> 12 - <item name="android:textColor">@android:color/black</item> 13 - </style> 14 - <style name="Theme.App.SplashScreen" parent="Theme.SplashScreen"> 15 - <item name="windowSplashScreenBackground">@color/splashscreen_background</item> 16 - <item name="windowSplashScreenAnimatedIcon">@drawable/splashscreen_logo</item> 17 - <item name="postSplashScreenTheme">@style/AppTheme</item> 18 - </style> 19 - </resources>
-1
apps/amethyst/android/app/src/main/res/values-night/colors.xml
··· 1 - <resources/>
-41
apps/amethyst/android/build.gradle
··· 1 - // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 - 3 - buildscript { 4 - ext { 5 - buildToolsVersion = findProperty('android.buildToolsVersion') ?: '35.0.0' 6 - minSdkVersion = Integer.parseInt(findProperty('android.minSdkVersion') ?: '24') 7 - compileSdkVersion = Integer.parseInt(findProperty('android.compileSdkVersion') ?: '35') 8 - targetSdkVersion = Integer.parseInt(findProperty('android.targetSdkVersion') ?: '34') 9 - kotlinVersion = findProperty('android.kotlinVersion') ?: '1.9.24' 10 - 11 - ndkVersion = "26.1.10909125" 12 - } 13 - repositories { 14 - google() 15 - mavenCentral() 16 - } 17 - dependencies { 18 - classpath('com.android.tools.build:gradle') 19 - classpath('com.facebook.react:react-native-gradle-plugin') 20 - classpath('org.jetbrains.kotlin:kotlin-gradle-plugin') 21 - } 22 - } 23 - 24 - apply plugin: "com.facebook.react.rootproject" 25 - 26 - allprojects { 27 - repositories { 28 - maven { 29 - // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 30 - url(new File(['node', '--print', "require.resolve('react-native/package.json')"].execute(null, rootDir).text.trim(), '../android')) 31 - } 32 - maven { 33 - // Android JSC is installed from npm 34 - url(new File(['node', '--print', "require.resolve('jsc-android/package.json', { paths: [require.resolve('react-native/package.json')] })"].execute(null, rootDir).text.trim(), '../dist')) 35 - } 36 - 37 - google() 38 - mavenCentral() 39 - maven { url 'https://www.jitpack.io' } 40 - } 41 - }
apps/amethyst/android/gradle/wrapper/gradle-wrapper.jar

This is a binary file and will not be displayed.

-7
apps/amethyst/android/gradle/wrapper/gradle-wrapper.properties
··· 1 - distributionBase=GRADLE_USER_HOME 2 - distributionPath=wrapper/dists 3 - distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip 4 - networkTimeout=10000 5 - validateDistributionUrl=true 6 - zipStoreBase=GRADLE_USER_HOME 7 - zipStorePath=wrapper/dists
-58
apps/amethyst/android/gradle.properties
··· 1 - # Project-wide Gradle settings. 2 - 3 - # IDE (e.g. Android Studio) users: 4 - # Gradle settings configured through the IDE *will override* 5 - # any settings specified in this file. 6 - 7 - # For more details on how to configure your build environment visit 8 - # http://www.gradle.org/docs/current/userguide/build_environment.html 9 - 10 - # Specifies the JVM arguments used for the daemon process. 11 - # The setting is particularly useful for tweaking memory settings. 12 - # Default value: -Xmx512m -XX:MaxMetaspaceSize=256m 13 - org.gradle.jvmargs=-Xmx2048m -XX:MaxMetaspaceSize=512m 14 - 15 - # When configured, Gradle will run in incubating parallel mode. 16 - # This option should only be used with decoupled projects. More details, visit 17 - # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 - # org.gradle.parallel=true 19 - 20 - # AndroidX package structure to make it clearer which packages are bundled with the 21 - # Android operating system, and which are packaged with your app's APK 22 - # https://developer.android.com/topic/libraries/support-library/androidx-rn 23 - android.useAndroidX=true 24 - 25 - # Enable AAPT2 PNG crunching 26 - android.enablePngCrunchInReleaseBuilds=true 27 - 28 - # Use this property to specify which architecture you want to build. 29 - # You can also override it from the CLI using 30 - # ./gradlew <task> -PreactNativeArchitectures=x86_64 31 - reactNativeArchitectures=armeabi-v7a,arm64-v8a,x86,x86_64 32 - 33 - # Use this property to enable support to the new architecture. 34 - # This will allow you to use TurboModules and the Fabric render in 35 - # your application. You should enable this flag either if you want 36 - # to write custom TurboModules/Fabric components OR use libraries that 37 - # are providing them. 38 - newArchEnabled=true 39 - 40 - # Use this property to enable or disable the Hermes JS engine. 41 - # If set to false, you will be using JSC instead. 42 - hermesEnabled=true 43 - 44 - # Enable GIF support in React Native images (~200 B increase) 45 - expo.gif.enabled=true 46 - # Enable webp support in React Native images (~85 KB increase) 47 - expo.webp.enabled=true 48 - # Enable animated webp support (~3.4 MB increase) 49 - # Disabled by default because iOS doesn't support animated webp 50 - expo.webp.animated=false 51 - 52 - # Enable network inspector 53 - EX_DEV_CLIENT_NETWORK_INSPECTOR=true 54 - 55 - # Use legacy packaging to compress native libraries in the resulting APK. 56 - expo.useLegacyPackaging=false 57 - 58 - expo.sqlite.useSQLCipher=true
-252
apps/amethyst/android/gradlew
··· 1 - #!/bin/sh 2 - 3 - # 4 - # Copyright ยฉ 2015-2021 the original authors. 5 - # 6 - # Licensed under the Apache License, Version 2.0 (the "License"); 7 - # you may not use this file except in compliance with the License. 8 - # You may obtain a copy of the License at 9 - # 10 - # https://www.apache.org/licenses/LICENSE-2.0 11 - # 12 - # Unless required by applicable law or agreed to in writing, software 13 - # distributed under the License is distributed on an "AS IS" BASIS, 14 - # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 - # See the License for the specific language governing permissions and 16 - # limitations under the License. 17 - # 18 - # SPDX-License-Identifier: Apache-2.0 19 - # 20 - 21 - ############################################################################## 22 - # 23 - # Gradle start up script for POSIX generated by Gradle. 24 - # 25 - # Important for running: 26 - # 27 - # (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is 28 - # noncompliant, but you have some other compliant shell such as ksh or 29 - # bash, then to run this script, type that shell name before the whole 30 - # command line, like: 31 - # 32 - # ksh Gradle 33 - # 34 - # Busybox and similar reduced shells will NOT work, because this script 35 - # requires all of these POSIX shell features: 36 - # * functions; 37 - # * expansions ยซ$varยป, ยซ${var}ยป, ยซ${var:-default}ยป, ยซ${var+SET}ยป, 38 - # ยซ${var#prefix}ยป, ยซ${var%suffix}ยป, and ยซ$( cmd )ยป; 39 - # * compound commands having a testable exit status, especially ยซcaseยป; 40 - # * various built-in commands including ยซcommandยป, ยซsetยป, and ยซulimitยป. 41 - # 42 - # Important for patching: 43 - # 44 - # (2) This script targets any POSIX shell, so it avoids extensions provided 45 - # by Bash, Ksh, etc; in particular arrays are avoided. 46 - # 47 - # The "traditional" practice of packing multiple parameters into a 48 - # space-separated string is a well documented source of bugs and security 49 - # problems, so this is (mostly) avoided, by progressively accumulating 50 - # options in "$@", and eventually passing that to Java. 51 - # 52 - # Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, 53 - # and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; 54 - # see the in-line comments for details. 55 - # 56 - # There are tweaks for specific operating systems such as AIX, CygWin, 57 - # Darwin, MinGW, and NonStop. 58 - # 59 - # (3) This script is generated from the Groovy template 60 - # https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt 61 - # within the Gradle project. 62 - # 63 - # You can find Gradle at https://github.com/gradle/gradle/. 64 - # 65 - ############################################################################## 66 - 67 - # Attempt to set APP_HOME 68 - 69 - # Resolve links: $0 may be a link 70 - app_path=$0 71 - 72 - # Need this for daisy-chained symlinks. 73 - while 74 - APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path 75 - [ -h "$app_path" ] 76 - do 77 - ls=$( ls -ld "$app_path" ) 78 - link=${ls#*' -> '} 79 - case $link in #( 80 - /*) app_path=$link ;; #( 81 - *) app_path=$APP_HOME$link ;; 82 - esac 83 - done 84 - 85 - # This is normally unused 86 - # shellcheck disable=SC2034 87 - APP_BASE_NAME=${0##*/} 88 - # Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) 89 - APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s 90 - ' "$PWD" ) || exit 91 - 92 - # Use the maximum available, or set MAX_FD != -1 to use that value. 93 - MAX_FD=maximum 94 - 95 - warn () { 96 - echo "$*" 97 - } >&2 98 - 99 - die () { 100 - echo 101 - echo "$*" 102 - echo 103 - exit 1 104 - } >&2 105 - 106 - # OS specific support (must be 'true' or 'false'). 107 - cygwin=false 108 - msys=false 109 - darwin=false 110 - nonstop=false 111 - case "$( uname )" in #( 112 - CYGWIN* ) cygwin=true ;; #( 113 - Darwin* ) darwin=true ;; #( 114 - MSYS* | MINGW* ) msys=true ;; #( 115 - NONSTOP* ) nonstop=true ;; 116 - esac 117 - 118 - CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 119 - 120 - 121 - # Determine the Java command to use to start the JVM. 122 - if [ -n "$JAVA_HOME" ] ; then 123 - if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 124 - # IBM's JDK on AIX uses strange locations for the executables 125 - JAVACMD=$JAVA_HOME/jre/sh/java 126 - else 127 - JAVACMD=$JAVA_HOME/bin/java 128 - fi 129 - if [ ! -x "$JAVACMD" ] ; then 130 - die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 131 - 132 - Please set the JAVA_HOME variable in your environment to match the 133 - location of your Java installation." 134 - fi 135 - else 136 - JAVACMD=java 137 - if ! command -v java >/dev/null 2>&1 138 - then 139 - die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 140 - 141 - Please set the JAVA_HOME variable in your environment to match the 142 - location of your Java installation." 143 - fi 144 - fi 145 - 146 - # Increase the maximum file descriptors if we can. 147 - if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then 148 - case $MAX_FD in #( 149 - max*) 150 - # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. 151 - # shellcheck disable=SC2039,SC3045 152 - MAX_FD=$( ulimit -H -n ) || 153 - warn "Could not query maximum file descriptor limit" 154 - esac 155 - case $MAX_FD in #( 156 - '' | soft) :;; #( 157 - *) 158 - # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. 159 - # shellcheck disable=SC2039,SC3045 160 - ulimit -n "$MAX_FD" || 161 - warn "Could not set maximum file descriptor limit to $MAX_FD" 162 - esac 163 - fi 164 - 165 - # Collect all arguments for the java command, stacking in reverse order: 166 - # * args from the command line 167 - # * the main class name 168 - # * -classpath 169 - # * -D...appname settings 170 - # * --module-path (only if needed) 171 - # * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. 172 - 173 - # For Cygwin or MSYS, switch paths to Windows format before running java 174 - if "$cygwin" || "$msys" ; then 175 - APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) 176 - CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) 177 - 178 - JAVACMD=$( cygpath --unix "$JAVACMD" ) 179 - 180 - # Now convert the arguments - kludge to limit ourselves to /bin/sh 181 - for arg do 182 - if 183 - case $arg in #( 184 - -*) false ;; # don't mess with options #( 185 - /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath 186 - [ -e "$t" ] ;; #( 187 - *) false ;; 188 - esac 189 - then 190 - arg=$( cygpath --path --ignore --mixed "$arg" ) 191 - fi 192 - # Roll the args list around exactly as many times as the number of 193 - # args, so each arg winds up back in the position where it started, but 194 - # possibly modified. 195 - # 196 - # NB: a `for` loop captures its iteration list before it begins, so 197 - # changing the positional parameters here affects neither the number of 198 - # iterations, nor the values presented in `arg`. 199 - shift # remove old arg 200 - set -- "$@" "$arg" # push replacement arg 201 - done 202 - fi 203 - 204 - 205 - # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 206 - DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' 207 - 208 - # Collect all arguments for the java command: 209 - # * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, 210 - # and any embedded shellness will be escaped. 211 - # * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be 212 - # treated as '${Hostname}' itself on the command line. 213 - 214 - set -- \ 215 - "-Dorg.gradle.appname=$APP_BASE_NAME" \ 216 - -classpath "$CLASSPATH" \ 217 - org.gradle.wrapper.GradleWrapperMain \ 218 - "$@" 219 - 220 - # Stop when "xargs" is not available. 221 - if ! command -v xargs >/dev/null 2>&1 222 - then 223 - die "xargs is not available" 224 - fi 225 - 226 - # Use "xargs" to parse quoted args. 227 - # 228 - # With -n1 it outputs one arg per line, with the quotes and backslashes removed. 229 - # 230 - # In Bash we could simply go: 231 - # 232 - # readarray ARGS < <( xargs -n1 <<<"$var" ) && 233 - # set -- "${ARGS[@]}" "$@" 234 - # 235 - # but POSIX shell has neither arrays nor command substitution, so instead we 236 - # post-process each arg (as a line of input to sed) to backslash-escape any 237 - # character that might be a shell metacharacter, then use eval to reverse 238 - # that process (while maintaining the separation between arguments), and wrap 239 - # the whole thing up as a single "set" statement. 240 - # 241 - # This will of course break if any of these variables contains a newline or 242 - # an unmatched quote. 243 - # 244 - 245 - eval "set -- $( 246 - printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | 247 - xargs -n1 | 248 - sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | 249 - tr '\n' ' ' 250 - )" '"$@"' 251 - 252 - exec "$JAVACMD" "$@"
-94
apps/amethyst/android/gradlew.bat
··· 1 - @rem 2 - @rem Copyright 2015 the original author or authors. 3 - @rem 4 - @rem Licensed under the Apache License, Version 2.0 (the "License"); 5 - @rem you may not use this file except in compliance with the License. 6 - @rem You may obtain a copy of the License at 7 - @rem 8 - @rem https://www.apache.org/licenses/LICENSE-2.0 9 - @rem 10 - @rem Unless required by applicable law or agreed to in writing, software 11 - @rem distributed under the License is distributed on an "AS IS" BASIS, 12 - @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 - @rem See the License for the specific language governing permissions and 14 - @rem limitations under the License. 15 - @rem 16 - @rem SPDX-License-Identifier: Apache-2.0 17 - @rem 18 - 19 - @if "%DEBUG%"=="" @echo off 20 - @rem ########################################################################## 21 - @rem 22 - @rem Gradle startup script for Windows 23 - @rem 24 - @rem ########################################################################## 25 - 26 - @rem Set local scope for the variables with windows NT shell 27 - if "%OS%"=="Windows_NT" setlocal 28 - 29 - set DIRNAME=%~dp0 30 - if "%DIRNAME%"=="" set DIRNAME=. 31 - @rem This is normally unused 32 - set APP_BASE_NAME=%~n0 33 - set APP_HOME=%DIRNAME% 34 - 35 - @rem Resolve any "." and ".." in APP_HOME to make it shorter. 36 - for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi 37 - 38 - @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 39 - set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" 40 - 41 - @rem Find java.exe 42 - if defined JAVA_HOME goto findJavaFromJavaHome 43 - 44 - set JAVA_EXE=java.exe 45 - %JAVA_EXE% -version >NUL 2>&1 46 - if %ERRORLEVEL% equ 0 goto execute 47 - 48 - echo. 1>&2 49 - echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2 50 - echo. 1>&2 51 - echo Please set the JAVA_HOME variable in your environment to match the 1>&2 52 - echo location of your Java installation. 1>&2 53 - 54 - goto fail 55 - 56 - :findJavaFromJavaHome 57 - set JAVA_HOME=%JAVA_HOME:"=% 58 - set JAVA_EXE=%JAVA_HOME%/bin/java.exe 59 - 60 - if exist "%JAVA_EXE%" goto execute 61 - 62 - echo. 1>&2 63 - echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2 64 - echo. 1>&2 65 - echo Please set the JAVA_HOME variable in your environment to match the 1>&2 66 - echo location of your Java installation. 1>&2 67 - 68 - goto fail 69 - 70 - :execute 71 - @rem Setup the command line 72 - 73 - set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 74 - 75 - 76 - @rem Execute Gradle 77 - "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* 78 - 79 - :end 80 - @rem End local scope for the variables with windows NT shell 81 - if %ERRORLEVEL% equ 0 goto mainEnd 82 - 83 - :fail 84 - rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 85 - rem the _cmd.exe /c_ return code! 86 - set EXIT_CODE=%ERRORLEVEL% 87 - if %EXIT_CODE% equ 0 set EXIT_CODE=1 88 - if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% 89 - exit /b %EXIT_CODE% 90 - 91 - :mainEnd 92 - if "%OS%"=="Windows_NT" endlocal 93 - 94 - :omega
-38
apps/amethyst/android/settings.gradle
··· 1 - pluginManagement { 2 - includeBuild(new File(["node", "--print", "require.resolve('@react-native/gradle-plugin/package.json')"].execute(null, rootDir).text.trim()).getParentFile().toString()) 3 - } 4 - plugins { id("com.facebook.react.settings") } 5 - 6 - extensions.configure(com.facebook.react.ReactSettingsExtension) { ex -> 7 - if (System.getenv('EXPO_USE_COMMUNITY_AUTOLINKING') == '1') { 8 - ex.autolinkLibrariesFromCommand() 9 - } else { 10 - def command = [ 11 - 'node', 12 - '--no-warnings', 13 - '--eval', 14 - 'require(require.resolve(\'expo-modules-autolinking\', { paths: [require.resolve(\'expo/package.json\')] }))(process.argv.slice(1))', 15 - 'react-native-config', 16 - '--json', 17 - '--platform', 18 - 'android' 19 - ].toList() 20 - ex.autolinkLibrariesFromCommand(command) 21 - } 22 - } 23 - 24 - rootProject.name = 'amethyst' 25 - 26 - dependencyResolutionManagement { 27 - versionCatalogs { 28 - reactAndroidLibs { 29 - from(files(new File(["node", "--print", "require.resolve('react-native/package.json')"].execute(null, rootDir).text.trim(), "../gradle/libs.versions.toml"))) 30 - } 31 - } 32 - } 33 - 34 - apply from: new File(["node", "--print", "require.resolve('expo/package.json')"].execute(null, rootDir).text.trim(), "../scripts/autolinking.gradle"); 35 - useExpoModules() 36 - 37 - include ':app' 38 - includeBuild(new File(["node", "--print", "require.resolve('@react-native/gradle-plugin/package.json', { paths: [require.resolve('react-native/package.json')] })"].execute(null, rootDir).text.trim()).getParentFile())
+2 -1
apps/amethyst/app/_layout.tsx
··· 20 20 21 21 import "../global.css"; 22 22 23 - import { SafeAreaView, View } from "react-native"; 23 + import { View } from "react-native"; 24 + import { SafeAreaView } from "react-native-safe-area-context"; 24 25 import { BottomSheetModalProvider } from "@gorhom/bottom-sheet"; 25 26 26 27 let defaultFamily = (weight: string) => {
+40 -23
apps/amethyst/app/auth/login.tsx
··· 2 2 import { Platform, TextInput, View } from "react-native"; 3 3 import Animated, { 4 4 interpolate, 5 + useAnimatedKeyboard, 5 6 useAnimatedStyle, 6 7 useSharedValue, 7 8 withTiming, ··· 16 17 import { Icon } from "@/lib/icons/iconWithClassName"; 17 18 import { capFirstLetter, cn } from "@/lib/utils"; 18 19 import { useStore } from "@/stores/mainStore"; 19 - import { FontAwesome6, MaterialCommunityIcons } from "@expo/vector-icons"; 20 + import { FontAwesome6 } from "@expo/vector-icons"; 20 21 import { AlertCircle, AtSign, Check, ChevronRight } from "lucide-react-native"; 21 22 22 23 type Url = URL; ··· 41 42 string | undefined 42 43 >(); 43 44 45 + const kb = useAnimatedKeyboard(); 46 + 44 47 const handleInputRef = useRef<TextInput>(null); 45 48 46 49 const { getLoginUrl, oauthCallback } = useStore((state) => state); ··· 70 73 paddingTop: 8, 71 74 overflow: "hidden", 72 75 zIndex: -1, 76 + }; 77 + }); 78 + 79 + const containerAnimatedStyle = useAnimatedStyle(() => { 80 + const isKeyboardOpen = kb.height.value > 0; 81 + return { 82 + bottom: withTiming(isKeyboardOpen ? kb.height.value / 3 : 0, { 83 + duration: 250, 84 + }), 73 85 }; 74 86 }); 75 87 ··· 216 228 headerShown: false, 217 229 }} 218 230 /> 219 - <View className="align-center w-screen max-w-lg justify-center gap-4 p-8 pb-32"> 231 + <Animated.View 232 + className="align-center w-screen max-w-lg justify-center gap-4 p-8 pb-32" 233 + style={containerAnimatedStyle} 234 + > 220 235 <View className="flex items-center"> 221 236 <Icon icon={AtSign} className="color-bsky" name="at" size={64} /> 222 237 </View> ··· 228 243 <Input 229 244 ref={handleInputRef} 230 245 className={cn( 231 - "ring-0", 246 + "ring-0, rounded-xl", 232 247 (err || pdsResolutionError) && `border-red-500`, 233 248 )} 234 249 placeholder="alice.bsky.social or did:plc:..." ··· 258 273 )} 259 274 > 260 275 {pdsUrl !== null ? ( 261 - <Text> 262 - PDS:{" "} 276 + <View className="flex flex-row items-center gap-1"> 277 + <Text>PDS:</Text> 263 278 {pdsUrl.hostname.includes("bsky.network") && ( 264 - <View className="flex-row gap-0.5 pr-0.5"> 279 + <View className="flex flex-row justify-center gap-0.5 pr-0.5"> 265 280 <Icon 266 281 icon={FontAwesome6} 267 282 className="color-bsky" 268 283 name="bluesky" 269 284 size={16} 270 285 /> 271 - <Icon 272 - icon={MaterialCommunityIcons} 273 - className="color-red-400" 274 - name="mushroom" 275 - size={18} 276 - /> 277 286 </View> 278 287 )} 279 - {pdsUrl.hostname.includes("bsky.network") 280 - ? capFirstLetter(pdsUrl.hostname.split(".").shift() || "") 281 - : pdsUrl.hostname} 282 - </Text> 288 + <Text> 289 + {pdsUrl.hostname.includes("bsky.network") 290 + ? "Bluesky (" + 291 + capFirstLetter( 292 + pdsUrl.hostname.split(".").shift() || "", 293 + ) + 294 + ")" 295 + : pdsUrl.hostname} 296 + </Text> 297 + </View> 283 298 ) : pdsResolutionError ? ( 284 - <Text className="justify-baseline px-1"> 299 + <View className="flex flex-row"> 285 300 <Icon 286 301 icon={AlertCircle} 287 - className="-mt-0.5 mr-1 inline text-xs" 288 - size={24} 302 + className="mr-1 inline text-foreground" 303 + size={18} 289 304 /> 290 - {pdsResolutionError} 291 - </Text> 305 + <Text className="justify-baseline flex"> 306 + {pdsResolutionError} 307 + </Text> 308 + </View> 292 309 ) : ( 293 310 <Text className="px-1 text-muted-foreground"> 294 311 Resolving PDS... ··· 307 324 </Link> 308 325 <Button 309 326 className={cn( 310 - "flex flex-row justify-end duration-500", 327 + "duration-500, flex flex-row justify-end rounded-xl", 311 328 isRedirecting ? "bg-green-500" : "bg-bsky", 312 329 )} 313 330 onPress={handleLogin} ··· 328 345 )} 329 346 </Button> 330 347 </View> 331 - </View> 348 + </Animated.View> 332 349 </SafeAreaView> 333 350 ); 334 351 };
+2 -2
apps/amethyst/app/auth/options.tsx
··· 24 24 <Text className="font-serif-old-italic text-5xl">.fm</Text> 25 25 </Text> 26 26 </View> 27 - <Link href="/auth/login" className="text-secondary"> 27 + <Link href="/auth/login" asChild> 28 28 <Button 29 29 className="dark-blue-800 flex flex-row items-center justify-center gap-2 rounded-full dark:bg-blue-400" 30 30 size="lg" ··· 32 32 <Text>Sign in with ATProto</Text> 33 33 </Button> 34 34 </Link> 35 - <Link href="/auth/signup" className="text-secondary"> 35 + <Link href="/auth/signup" asChild> 36 36 <Button 37 37 className="flex flex-row items-center justify-center rounded-full" 38 38 size="lg"
+3 -8
apps/amethyst/app/auth/signup.tsx
··· 17 17 headerShown: false, 18 18 }} 19 19 /> 20 - <View className="w-screen max-w-md flex-1 justify-center gap-4 p-8 pb-32"> 20 + <View className="w-screen max-w-md flex-1 items-center justify-center gap-4 p-8 pb-32"> 21 + <Icon icon={AtSignIcon} className="mb-2 mr-1.5 color-bsky" size={48} /> 21 22 <Text className="-mb-2 text-center text-3xl text-foreground"> 22 - Sign up via <br /> the{" "} 23 - <Icon 24 - icon={AtSignIcon} 25 - className="mb-2 mr-1.5 inline color-bsky" 26 - size={32} 27 - /> 28 - Atmosphere 23 + Sign up via the Atmosphere 29 24 </Text> 30 25 <Text className="text-center text-xl text-foreground"> 31 26 No account? No problem.
+6
apps/amethyst/app.config.js
··· 36 36 favicon: "./assets/images/favicon.png", 37 37 }, 38 38 plugins: [ 39 + [ 40 + "expo-dev-client", 41 + { 42 + launchMode: "most-recent", 43 + }, 44 + ], 39 45 "expo-font", 40 46 [ 41 47 "expo-sqlite",
-10
apps/amethyst/components/__tests__/StyledText-test.js
··· 1 - import * as React from "react"; 2 - import renderer from "react-test-renderer"; 3 - 4 - import { MonoText } from "../StyledText"; 5 - 6 - it(`renders correctly`, () => { 7 - const tree = renderer.create(<MonoText>Snapshot test!</MonoText>).toJSON(); 8 - 9 - expect(tree).toMatchSnapshot(); 10 - });
+33
apps/amethyst/components/__tests__/StyledText-test.tsx
··· 1 + import * as React from "react"; 2 + import { render, screen } from "@testing-library/react-native"; 3 + 4 + import { Text } from "../ui/text"; 5 + 6 + describe("Text Component", () => { 7 + it("displays text content to users", () => { 8 + render(<Text>Hello World</Text>); 9 + expect(screen.getByText("Hello World")).toBeTruthy(); 10 + }); 11 + 12 + it("renders with custom className", () => { 13 + render(<Text className="text-lg font-bold">Styled text</Text>); 14 + const element = screen.getByText("Styled text"); 15 + expect(element).toBeTruthy(); 16 + expect(element.props.className).toContain("text-lg"); 17 + expect(element.props.className).toContain("font-bold"); 18 + }); 19 + 20 + it("renders empty text component", () => { 21 + const { root } = render(<Text />); 22 + expect(root).toBeTruthy(); 23 + }); 24 + 25 + it("renders multiple children correctly", () => { 26 + render( 27 + <Text> 28 + First part <Text>nested</Text> last part 29 + </Text>, 30 + ); 31 + expect(screen.getByText("nested")).toBeTruthy(); 32 + }); 33 + });
+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; 1 + import { useWindowDimensions } from "react-native"; 6 2 7 3 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); 4 + const { width } = useWindowDimensions(); 16 5 17 - return () => { 18 - window.removeEventListener("resize", handleResize); 19 - }; 20 - }, []); 21 - 22 - return isMobile; 6 + return width < 1024; 23 7 }
-30
apps/amethyst/ios/.gitignore
··· 1 - # OSX 2 - # 3 - .DS_Store 4 - 5 - # Xcode 6 - # 7 - build/ 8 - *.pbxuser 9 - !default.pbxuser 10 - *.mode1v3 11 - !default.mode1v3 12 - *.mode2v3 13 - !default.mode2v3 14 - *.perspectivev3 15 - !default.perspectivev3 16 - xcuserdata 17 - *.xccheckout 18 - *.moved-aside 19 - DerivedData 20 - *.hmap 21 - *.ipa 22 - *.xcuserstate 23 - project.xcworkspace 24 - .xcode.env.local 25 - 26 - # Bundle artifacts 27 - *.jsbundle 28 - 29 - # CocoaPods 30 - /Pods/
-66
apps/amethyst/ios/Podfile
··· 1 - require File.join(File.dirname(`node --print "require.resolve('expo/package.json')"`), "scripts/autolinking") 2 - require File.join(File.dirname(`node --print "require.resolve('react-native/package.json')"`), "scripts/react_native_pods") 3 - 4 - require 'json' 5 - podfile_properties = JSON.parse(File.read(File.join(__dir__, 'Podfile.properties.json'))) rescue {} 6 - 7 - ENV['RCT_NEW_ARCH_ENABLED'] = podfile_properties['newArchEnabled'] == 'true' ? '1' : '0' 8 - ENV['EX_DEV_CLIENT_NETWORK_INSPECTOR'] = podfile_properties['EX_DEV_CLIENT_NETWORK_INSPECTOR'] 9 - 10 - platform :ios, podfile_properties['ios.deploymentTarget'] || '15.1' 11 - install! 'cocoapods', 12 - :deterministic_uuids => false 13 - 14 - prepare_react_native_project! 15 - 16 - target 'amethyst' do 17 - use_expo_modules! 18 - 19 - if ENV['EXPO_USE_COMMUNITY_AUTOLINKING'] == '1' 20 - config_command = ['node', '-e', "process.argv=['', '', 'config'];require('@react-native-community/cli').run()"]; 21 - else 22 - config_command = [ 23 - 'node', 24 - '--no-warnings', 25 - '--eval', 26 - 'require(require.resolve(\'expo-modules-autolinking\', { paths: [require.resolve(\'expo/package.json\')] }))(process.argv.slice(1))', 27 - 'react-native-config', 28 - '--json', 29 - '--platform', 30 - 'ios' 31 - ] 32 - end 33 - 34 - config = use_native_modules!(config_command) 35 - 36 - use_frameworks! :linkage => podfile_properties['ios.useFrameworks'].to_sym if podfile_properties['ios.useFrameworks'] 37 - use_frameworks! :linkage => ENV['USE_FRAMEWORKS'].to_sym if ENV['USE_FRAMEWORKS'] 38 - 39 - use_react_native!( 40 - :path => config[:reactNativePath], 41 - :hermes_enabled => podfile_properties['expo.jsEngine'] == nil || podfile_properties['expo.jsEngine'] == 'hermes', 42 - # An absolute path to your application root. 43 - :app_path => "#{Pod::Config.instance.installation_root}/..", 44 - :privacy_file_aggregation_enabled => podfile_properties['apple.privacyManifestAggregationEnabled'] != 'false', 45 - ) 46 - 47 - post_install do |installer| 48 - react_native_post_install( 49 - installer, 50 - config[:reactNativePath], 51 - :mac_catalyst_enabled => false, 52 - :ccache_enabled => podfile_properties['apple.ccacheEnabled'] == 'true', 53 - ) 54 - 55 - # This is necessary for Xcode 14, because it signs resource bundles by default 56 - # when building for devices. 57 - installer.target_installation_results.pod_target_installation_results 58 - .each do |pod_name, target_installation_result| 59 - target_installation_result.resource_bundle_targets.each do |resource_bundle_target| 60 - resource_bundle_target.build_configurations.each do |config| 61 - config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO' 62 - end 63 - end 64 - end 65 - end 66 - end
-2164
apps/amethyst/ios/Podfile.lock
··· 1 - PODS: 2 - - boost (1.84.0) 3 - - DoubleConversion (1.1.6) 4 - - EXConstants (17.0.3): 5 - - ExpoModulesCore 6 - - Expo (52.0.23): 7 - - ExpoModulesCore 8 - - ExpoAsset (11.0.1): 9 - - ExpoModulesCore 10 - - ExpoFileSystem (18.0.6): 11 - - ExpoModulesCore 12 - - ExpoFont (13.0.2): 13 - - ExpoModulesCore 14 - - ExpoHead (4.0.15): 15 - - ExpoModulesCore 16 - - ExpoKeepAwake (14.0.1): 17 - - ExpoModulesCore 18 - - ExpoLinking (7.0.3): 19 - - ExpoModulesCore 20 - - ExpoModulesCore (2.1.2): 21 - - DoubleConversion 22 - - glog 23 - - hermes-engine 24 - - RCT-Folly (= 2024.01.01.00) 25 - - RCTRequired 26 - - RCTTypeSafety 27 - - React-Core 28 - - React-debug 29 - - React-Fabric 30 - - React-featureflags 31 - - React-graphics 32 - - React-ImageManager 33 - - React-jsinspector 34 - - React-NativeModulesApple 35 - - React-RCTAppDelegate 36 - - React-RCTFabric 37 - - React-rendererdebug 38 - - React-utils 39 - - ReactCodegen 40 - - ReactCommon/turbomodule/bridging 41 - - ReactCommon/turbomodule/core 42 - - Yoga 43 - - ExpoSplashScreen (0.29.18): 44 - - ExpoModulesCore 45 - - ExpoSQLite (15.0.5): 46 - - ExpoModulesCore 47 - - ExpoSystemUI (4.0.6): 48 - - ExpoModulesCore 49 - - ExpoWebBrowser (14.0.1): 50 - - ExpoModulesCore 51 - - FBLazyVector (0.76.5) 52 - - fmt (9.1.0) 53 - - glog (0.3.5) 54 - - hermes-engine (0.76.5): 55 - - hermes-engine/Pre-built (= 0.76.5) 56 - - hermes-engine/Pre-built (0.76.5) 57 - - RCT-Folly (2024.01.01.00): 58 - - boost 59 - - DoubleConversion 60 - - fmt (= 9.1.0) 61 - - glog 62 - - RCT-Folly/Default (= 2024.01.01.00) 63 - - RCT-Folly/Default (2024.01.01.00): 64 - - boost 65 - - DoubleConversion 66 - - fmt (= 9.1.0) 67 - - glog 68 - - RCT-Folly/Fabric (2024.01.01.00): 69 - - boost 70 - - DoubleConversion 71 - - fmt (= 9.1.0) 72 - - glog 73 - - RCTDeprecation (0.76.5) 74 - - RCTRequired (0.76.5) 75 - - RCTTypeSafety (0.76.5): 76 - - FBLazyVector (= 0.76.5) 77 - - RCTRequired (= 0.76.5) 78 - - React-Core (= 0.76.5) 79 - - React (0.76.5): 80 - - React-Core (= 0.76.5) 81 - - React-Core/DevSupport (= 0.76.5) 82 - - React-Core/RCTWebSocket (= 0.76.5) 83 - - React-RCTActionSheet (= 0.76.5) 84 - - React-RCTAnimation (= 0.76.5) 85 - - React-RCTBlob (= 0.76.5) 86 - - React-RCTImage (= 0.76.5) 87 - - React-RCTLinking (= 0.76.5) 88 - - React-RCTNetwork (= 0.76.5) 89 - - React-RCTSettings (= 0.76.5) 90 - - React-RCTText (= 0.76.5) 91 - - React-RCTVibration (= 0.76.5) 92 - - React-callinvoker (0.76.5) 93 - - React-Core (0.76.5): 94 - - glog 95 - - hermes-engine 96 - - RCT-Folly (= 2024.01.01.00) 97 - - RCTDeprecation 98 - - React-Core/Default (= 0.76.5) 99 - - React-cxxreact 100 - - React-featureflags 101 - - React-hermes 102 - - React-jsi 103 - - React-jsiexecutor 104 - - React-jsinspector 105 - - React-perflogger 106 - - React-runtimescheduler 107 - - React-utils 108 - - SocketRocket (= 0.7.1) 109 - - Yoga 110 - - React-Core/CoreModulesHeaders (0.76.5): 111 - - glog 112 - - hermes-engine 113 - - RCT-Folly (= 2024.01.01.00) 114 - - RCTDeprecation 115 - - React-Core/Default 116 - - React-cxxreact 117 - - React-featureflags 118 - - React-hermes 119 - - React-jsi 120 - - React-jsiexecutor 121 - - React-jsinspector 122 - - React-perflogger 123 - - React-runtimescheduler 124 - - React-utils 125 - - SocketRocket (= 0.7.1) 126 - - Yoga 127 - - React-Core/Default (0.76.5): 128 - - glog 129 - - hermes-engine 130 - - RCT-Folly (= 2024.01.01.00) 131 - - RCTDeprecation 132 - - React-cxxreact 133 - - React-featureflags 134 - - React-hermes 135 - - React-jsi 136 - - React-jsiexecutor 137 - - React-jsinspector 138 - - React-perflogger 139 - - React-runtimescheduler 140 - - React-utils 141 - - SocketRocket (= 0.7.1) 142 - - Yoga 143 - - React-Core/DevSupport (0.76.5): 144 - - glog 145 - - hermes-engine 146 - - RCT-Folly (= 2024.01.01.00) 147 - - RCTDeprecation 148 - - React-Core/Default (= 0.76.5) 149 - - React-Core/RCTWebSocket (= 0.76.5) 150 - - React-cxxreact 151 - - React-featureflags 152 - - React-hermes 153 - - React-jsi 154 - - React-jsiexecutor 155 - - React-jsinspector 156 - - React-perflogger 157 - - React-runtimescheduler 158 - - React-utils 159 - - SocketRocket (= 0.7.1) 160 - - Yoga 161 - - React-Core/RCTActionSheetHeaders (0.76.5): 162 - - glog 163 - - hermes-engine 164 - - RCT-Folly (= 2024.01.01.00) 165 - - RCTDeprecation 166 - - React-Core/Default 167 - - React-cxxreact 168 - - React-featureflags 169 - - React-hermes 170 - - React-jsi 171 - - React-jsiexecutor 172 - - React-jsinspector 173 - - React-perflogger 174 - - React-runtimescheduler 175 - - React-utils 176 - - SocketRocket (= 0.7.1) 177 - - Yoga 178 - - React-Core/RCTAnimationHeaders (0.76.5): 179 - - glog 180 - - hermes-engine 181 - - RCT-Folly (= 2024.01.01.00) 182 - - RCTDeprecation 183 - - React-Core/Default 184 - - React-cxxreact 185 - - React-featureflags 186 - - React-hermes 187 - - React-jsi 188 - - React-jsiexecutor 189 - - React-jsinspector 190 - - React-perflogger 191 - - React-runtimescheduler 192 - - React-utils 193 - - SocketRocket (= 0.7.1) 194 - - Yoga 195 - - React-Core/RCTBlobHeaders (0.76.5): 196 - - glog 197 - - hermes-engine 198 - - RCT-Folly (= 2024.01.01.00) 199 - - RCTDeprecation 200 - - React-Core/Default 201 - - React-cxxreact 202 - - React-featureflags 203 - - React-hermes 204 - - React-jsi 205 - - React-jsiexecutor 206 - - React-jsinspector 207 - - React-perflogger 208 - - React-runtimescheduler 209 - - React-utils 210 - - SocketRocket (= 0.7.1) 211 - - Yoga 212 - - React-Core/RCTImageHeaders (0.76.5): 213 - - glog 214 - - hermes-engine 215 - - RCT-Folly (= 2024.01.01.00) 216 - - RCTDeprecation 217 - - React-Core/Default 218 - - React-cxxreact 219 - - React-featureflags 220 - - React-hermes 221 - - React-jsi 222 - - React-jsiexecutor 223 - - React-jsinspector 224 - - React-perflogger 225 - - React-runtimescheduler 226 - - React-utils 227 - - SocketRocket (= 0.7.1) 228 - - Yoga 229 - - React-Core/RCTLinkingHeaders (0.76.5): 230 - - glog 231 - - hermes-engine 232 - - RCT-Folly (= 2024.01.01.00) 233 - - RCTDeprecation 234 - - React-Core/Default 235 - - React-cxxreact 236 - - React-featureflags 237 - - React-hermes 238 - - React-jsi 239 - - React-jsiexecutor 240 - - React-jsinspector 241 - - React-perflogger 242 - - React-runtimescheduler 243 - - React-utils 244 - - SocketRocket (= 0.7.1) 245 - - Yoga 246 - - React-Core/RCTNetworkHeaders (0.76.5): 247 - - glog 248 - - hermes-engine 249 - - RCT-Folly (= 2024.01.01.00) 250 - - RCTDeprecation 251 - - React-Core/Default 252 - - React-cxxreact 253 - - React-featureflags 254 - - React-hermes 255 - - React-jsi 256 - - React-jsiexecutor 257 - - React-jsinspector 258 - - React-perflogger 259 - - React-runtimescheduler 260 - - React-utils 261 - - SocketRocket (= 0.7.1) 262 - - Yoga 263 - - React-Core/RCTSettingsHeaders (0.76.5): 264 - - glog 265 - - hermes-engine 266 - - RCT-Folly (= 2024.01.01.00) 267 - - RCTDeprecation 268 - - React-Core/Default 269 - - React-cxxreact 270 - - React-featureflags 271 - - React-hermes 272 - - React-jsi 273 - - React-jsiexecutor 274 - - React-jsinspector 275 - - React-perflogger 276 - - React-runtimescheduler 277 - - React-utils 278 - - SocketRocket (= 0.7.1) 279 - - Yoga 280 - - React-Core/RCTTextHeaders (0.76.5): 281 - - glog 282 - - hermes-engine 283 - - RCT-Folly (= 2024.01.01.00) 284 - - RCTDeprecation 285 - - React-Core/Default 286 - - React-cxxreact 287 - - React-featureflags 288 - - React-hermes 289 - - React-jsi 290 - - React-jsiexecutor 291 - - React-jsinspector 292 - - React-perflogger 293 - - React-runtimescheduler 294 - - React-utils 295 - - SocketRocket (= 0.7.1) 296 - - Yoga 297 - - React-Core/RCTVibrationHeaders (0.76.5): 298 - - glog 299 - - hermes-engine 300 - - RCT-Folly (= 2024.01.01.00) 301 - - RCTDeprecation 302 - - React-Core/Default 303 - - React-cxxreact 304 - - React-featureflags 305 - - React-hermes 306 - - React-jsi 307 - - React-jsiexecutor 308 - - React-jsinspector 309 - - React-perflogger 310 - - React-runtimescheduler 311 - - React-utils 312 - - SocketRocket (= 0.7.1) 313 - - Yoga 314 - - React-Core/RCTWebSocket (0.76.5): 315 - - glog 316 - - hermes-engine 317 - - RCT-Folly (= 2024.01.01.00) 318 - - RCTDeprecation 319 - - React-Core/Default (= 0.76.5) 320 - - React-cxxreact 321 - - React-featureflags 322 - - React-hermes 323 - - React-jsi 324 - - React-jsiexecutor 325 - - React-jsinspector 326 - - React-perflogger 327 - - React-runtimescheduler 328 - - React-utils 329 - - SocketRocket (= 0.7.1) 330 - - Yoga 331 - - React-CoreModules (0.76.5): 332 - - DoubleConversion 333 - - fmt (= 9.1.0) 334 - - RCT-Folly (= 2024.01.01.00) 335 - - RCTTypeSafety (= 0.76.5) 336 - - React-Core/CoreModulesHeaders (= 0.76.5) 337 - - React-jsi (= 0.76.5) 338 - - React-jsinspector 339 - - React-NativeModulesApple 340 - - React-RCTBlob 341 - - React-RCTImage (= 0.76.5) 342 - - ReactCodegen 343 - - ReactCommon 344 - - SocketRocket (= 0.7.1) 345 - - React-cxxreact (0.76.5): 346 - - boost 347 - - DoubleConversion 348 - - fmt (= 9.1.0) 349 - - glog 350 - - hermes-engine 351 - - RCT-Folly (= 2024.01.01.00) 352 - - React-callinvoker (= 0.76.5) 353 - - React-debug (= 0.76.5) 354 - - React-jsi (= 0.76.5) 355 - - React-jsinspector 356 - - React-logger (= 0.76.5) 357 - - React-perflogger (= 0.76.5) 358 - - React-runtimeexecutor (= 0.76.5) 359 - - React-timing (= 0.76.5) 360 - - React-debug (0.76.5) 361 - - React-defaultsnativemodule (0.76.5): 362 - - DoubleConversion 363 - - glog 364 - - hermes-engine 365 - - RCT-Folly (= 2024.01.01.00) 366 - - RCTRequired 367 - - RCTTypeSafety 368 - - React-Core 369 - - React-debug 370 - - React-domnativemodule 371 - - React-Fabric 372 - - React-featureflags 373 - - React-featureflagsnativemodule 374 - - React-graphics 375 - - React-idlecallbacksnativemodule 376 - - React-ImageManager 377 - - React-microtasksnativemodule 378 - - React-NativeModulesApple 379 - - React-RCTFabric 380 - - React-rendererdebug 381 - - React-utils 382 - - ReactCodegen 383 - - ReactCommon/turbomodule/bridging 384 - - ReactCommon/turbomodule/core 385 - - Yoga 386 - - React-domnativemodule (0.76.5): 387 - - DoubleConversion 388 - - glog 389 - - hermes-engine 390 - - RCT-Folly (= 2024.01.01.00) 391 - - RCTRequired 392 - - RCTTypeSafety 393 - - React-Core 394 - - React-debug 395 - - React-Fabric 396 - - React-FabricComponents 397 - - React-featureflags 398 - - React-graphics 399 - - React-ImageManager 400 - - React-NativeModulesApple 401 - - React-RCTFabric 402 - - React-rendererdebug 403 - - React-utils 404 - - ReactCodegen 405 - - ReactCommon/turbomodule/bridging 406 - - ReactCommon/turbomodule/core 407 - - Yoga 408 - - React-Fabric (0.76.5): 409 - - DoubleConversion 410 - - fmt (= 9.1.0) 411 - - glog 412 - - hermes-engine 413 - - RCT-Folly/Fabric (= 2024.01.01.00) 414 - - RCTRequired 415 - - RCTTypeSafety 416 - - React-Core 417 - - React-cxxreact 418 - - React-debug 419 - - React-Fabric/animations (= 0.76.5) 420 - - React-Fabric/attributedstring (= 0.76.5) 421 - - React-Fabric/componentregistry (= 0.76.5) 422 - - React-Fabric/componentregistrynative (= 0.76.5) 423 - - React-Fabric/components (= 0.76.5) 424 - - React-Fabric/core (= 0.76.5) 425 - - React-Fabric/dom (= 0.76.5) 426 - - React-Fabric/imagemanager (= 0.76.5) 427 - - React-Fabric/leakchecker (= 0.76.5) 428 - - React-Fabric/mounting (= 0.76.5) 429 - - React-Fabric/observers (= 0.76.5) 430 - - React-Fabric/scheduler (= 0.76.5) 431 - - React-Fabric/telemetry (= 0.76.5) 432 - - React-Fabric/templateprocessor (= 0.76.5) 433 - - React-Fabric/uimanager (= 0.76.5) 434 - - React-featureflags 435 - - React-graphics 436 - - React-jsi 437 - - React-jsiexecutor 438 - - React-logger 439 - - React-rendererdebug 440 - - React-runtimescheduler 441 - - React-utils 442 - - ReactCommon/turbomodule/core 443 - - React-Fabric/animations (0.76.5): 444 - - DoubleConversion 445 - - fmt (= 9.1.0) 446 - - glog 447 - - hermes-engine 448 - - RCT-Folly/Fabric (= 2024.01.01.00) 449 - - RCTRequired 450 - - RCTTypeSafety 451 - - React-Core 452 - - React-cxxreact 453 - - React-debug 454 - - React-featureflags 455 - - React-graphics 456 - - React-jsi 457 - - React-jsiexecutor 458 - - React-logger 459 - - React-rendererdebug 460 - - React-runtimescheduler 461 - - React-utils 462 - - ReactCommon/turbomodule/core 463 - - React-Fabric/attributedstring (0.76.5): 464 - - DoubleConversion 465 - - fmt (= 9.1.0) 466 - - glog 467 - - hermes-engine 468 - - RCT-Folly/Fabric (= 2024.01.01.00) 469 - - RCTRequired 470 - - RCTTypeSafety 471 - - React-Core 472 - - React-cxxreact 473 - - React-debug 474 - - React-featureflags 475 - - React-graphics 476 - - React-jsi 477 - - React-jsiexecutor 478 - - React-logger 479 - - React-rendererdebug 480 - - React-runtimescheduler 481 - - React-utils 482 - - ReactCommon/turbomodule/core 483 - - React-Fabric/componentregistry (0.76.5): 484 - - DoubleConversion 485 - - fmt (= 9.1.0) 486 - - glog 487 - - hermes-engine 488 - - RCT-Folly/Fabric (= 2024.01.01.00) 489 - - RCTRequired 490 - - RCTTypeSafety 491 - - React-Core 492 - - React-cxxreact 493 - - React-debug 494 - - React-featureflags 495 - - React-graphics 496 - - React-jsi 497 - - React-jsiexecutor 498 - - React-logger 499 - - React-rendererdebug 500 - - React-runtimescheduler 501 - - React-utils 502 - - ReactCommon/turbomodule/core 503 - - React-Fabric/componentregistrynative (0.76.5): 504 - - DoubleConversion 505 - - fmt (= 9.1.0) 506 - - glog 507 - - hermes-engine 508 - - RCT-Folly/Fabric (= 2024.01.01.00) 509 - - RCTRequired 510 - - RCTTypeSafety 511 - - React-Core 512 - - React-cxxreact 513 - - React-debug 514 - - React-featureflags 515 - - React-graphics 516 - - React-jsi 517 - - React-jsiexecutor 518 - - React-logger 519 - - React-rendererdebug 520 - - React-runtimescheduler 521 - - React-utils 522 - - ReactCommon/turbomodule/core 523 - - React-Fabric/components (0.76.5): 524 - - DoubleConversion 525 - - fmt (= 9.1.0) 526 - - glog 527 - - hermes-engine 528 - - RCT-Folly/Fabric (= 2024.01.01.00) 529 - - RCTRequired 530 - - RCTTypeSafety 531 - - React-Core 532 - - React-cxxreact 533 - - React-debug 534 - - React-Fabric/components/legacyviewmanagerinterop (= 0.76.5) 535 - - React-Fabric/components/root (= 0.76.5) 536 - - React-Fabric/components/view (= 0.76.5) 537 - - React-featureflags 538 - - React-graphics 539 - - React-jsi 540 - - React-jsiexecutor 541 - - React-logger 542 - - React-rendererdebug 543 - - React-runtimescheduler 544 - - React-utils 545 - - ReactCommon/turbomodule/core 546 - - React-Fabric/components/legacyviewmanagerinterop (0.76.5): 547 - - DoubleConversion 548 - - fmt (= 9.1.0) 549 - - glog 550 - - hermes-engine 551 - - RCT-Folly/Fabric (= 2024.01.01.00) 552 - - RCTRequired 553 - - RCTTypeSafety 554 - - React-Core 555 - - React-cxxreact 556 - - React-debug 557 - - React-featureflags 558 - - React-graphics 559 - - React-jsi 560 - - React-jsiexecutor 561 - - React-logger 562 - - React-rendererdebug 563 - - React-runtimescheduler 564 - - React-utils 565 - - ReactCommon/turbomodule/core 566 - - React-Fabric/components/root (0.76.5): 567 - - DoubleConversion 568 - - fmt (= 9.1.0) 569 - - glog 570 - - hermes-engine 571 - - RCT-Folly/Fabric (= 2024.01.01.00) 572 - - RCTRequired 573 - - RCTTypeSafety 574 - - React-Core 575 - - React-cxxreact 576 - - React-debug 577 - - React-featureflags 578 - - React-graphics 579 - - React-jsi 580 - - React-jsiexecutor 581 - - React-logger 582 - - React-rendererdebug 583 - - React-runtimescheduler 584 - - React-utils 585 - - ReactCommon/turbomodule/core 586 - - React-Fabric/components/view (0.76.5): 587 - - DoubleConversion 588 - - fmt (= 9.1.0) 589 - - glog 590 - - hermes-engine 591 - - RCT-Folly/Fabric (= 2024.01.01.00) 592 - - RCTRequired 593 - - RCTTypeSafety 594 - - React-Core 595 - - React-cxxreact 596 - - React-debug 597 - - React-featureflags 598 - - React-graphics 599 - - React-jsi 600 - - React-jsiexecutor 601 - - React-logger 602 - - React-rendererdebug 603 - - React-runtimescheduler 604 - - React-utils 605 - - ReactCommon/turbomodule/core 606 - - Yoga 607 - - React-Fabric/core (0.76.5): 608 - - DoubleConversion 609 - - fmt (= 9.1.0) 610 - - glog 611 - - hermes-engine 612 - - RCT-Folly/Fabric (= 2024.01.01.00) 613 - - RCTRequired 614 - - RCTTypeSafety 615 - - React-Core 616 - - React-cxxreact 617 - - React-debug 618 - - React-featureflags 619 - - React-graphics 620 - - React-jsi 621 - - React-jsiexecutor 622 - - React-logger 623 - - React-rendererdebug 624 - - React-runtimescheduler 625 - - React-utils 626 - - ReactCommon/turbomodule/core 627 - - React-Fabric/dom (0.76.5): 628 - - DoubleConversion 629 - - fmt (= 9.1.0) 630 - - glog 631 - - hermes-engine 632 - - RCT-Folly/Fabric (= 2024.01.01.00) 633 - - RCTRequired 634 - - RCTTypeSafety 635 - - React-Core 636 - - React-cxxreact 637 - - React-debug 638 - - React-featureflags 639 - - React-graphics 640 - - React-jsi 641 - - React-jsiexecutor 642 - - React-logger 643 - - React-rendererdebug 644 - - React-runtimescheduler 645 - - React-utils 646 - - ReactCommon/turbomodule/core 647 - - React-Fabric/imagemanager (0.76.5): 648 - - DoubleConversion 649 - - fmt (= 9.1.0) 650 - - glog 651 - - hermes-engine 652 - - RCT-Folly/Fabric (= 2024.01.01.00) 653 - - RCTRequired 654 - - RCTTypeSafety 655 - - React-Core 656 - - React-cxxreact 657 - - React-debug 658 - - React-featureflags 659 - - React-graphics 660 - - React-jsi 661 - - React-jsiexecutor 662 - - React-logger 663 - - React-rendererdebug 664 - - React-runtimescheduler 665 - - React-utils 666 - - ReactCommon/turbomodule/core 667 - - React-Fabric/leakchecker (0.76.5): 668 - - DoubleConversion 669 - - fmt (= 9.1.0) 670 - - glog 671 - - hermes-engine 672 - - RCT-Folly/Fabric (= 2024.01.01.00) 673 - - RCTRequired 674 - - RCTTypeSafety 675 - - React-Core 676 - - React-cxxreact 677 - - React-debug 678 - - React-featureflags 679 - - React-graphics 680 - - React-jsi 681 - - React-jsiexecutor 682 - - React-logger 683 - - React-rendererdebug 684 - - React-runtimescheduler 685 - - React-utils 686 - - ReactCommon/turbomodule/core 687 - - React-Fabric/mounting (0.76.5): 688 - - DoubleConversion 689 - - fmt (= 9.1.0) 690 - - glog 691 - - hermes-engine 692 - - RCT-Folly/Fabric (= 2024.01.01.00) 693 - - RCTRequired 694 - - RCTTypeSafety 695 - - React-Core 696 - - React-cxxreact 697 - - React-debug 698 - - React-featureflags 699 - - React-graphics 700 - - React-jsi 701 - - React-jsiexecutor 702 - - React-logger 703 - - React-rendererdebug 704 - - React-runtimescheduler 705 - - React-utils 706 - - ReactCommon/turbomodule/core 707 - - React-Fabric/observers (0.76.5): 708 - - DoubleConversion 709 - - fmt (= 9.1.0) 710 - - glog 711 - - hermes-engine 712 - - RCT-Folly/Fabric (= 2024.01.01.00) 713 - - RCTRequired 714 - - RCTTypeSafety 715 - - React-Core 716 - - React-cxxreact 717 - - React-debug 718 - - React-Fabric/observers/events (= 0.76.5) 719 - - React-featureflags 720 - - React-graphics 721 - - React-jsi 722 - - React-jsiexecutor 723 - - React-logger 724 - - React-rendererdebug 725 - - React-runtimescheduler 726 - - React-utils 727 - - ReactCommon/turbomodule/core 728 - - React-Fabric/observers/events (0.76.5): 729 - - DoubleConversion 730 - - fmt (= 9.1.0) 731 - - glog 732 - - hermes-engine 733 - - RCT-Folly/Fabric (= 2024.01.01.00) 734 - - RCTRequired 735 - - RCTTypeSafety 736 - - React-Core 737 - - React-cxxreact 738 - - React-debug 739 - - React-featureflags 740 - - React-graphics 741 - - React-jsi 742 - - React-jsiexecutor 743 - - React-logger 744 - - React-rendererdebug 745 - - React-runtimescheduler 746 - - React-utils 747 - - ReactCommon/turbomodule/core 748 - - React-Fabric/scheduler (0.76.5): 749 - - DoubleConversion 750 - - fmt (= 9.1.0) 751 - - glog 752 - - hermes-engine 753 - - RCT-Folly/Fabric (= 2024.01.01.00) 754 - - RCTRequired 755 - - RCTTypeSafety 756 - - React-Core 757 - - React-cxxreact 758 - - React-debug 759 - - React-Fabric/observers/events 760 - - React-featureflags 761 - - React-graphics 762 - - React-jsi 763 - - React-jsiexecutor 764 - - React-logger 765 - - React-performancetimeline 766 - - React-rendererdebug 767 - - React-runtimescheduler 768 - - React-utils 769 - - ReactCommon/turbomodule/core 770 - - React-Fabric/telemetry (0.76.5): 771 - - DoubleConversion 772 - - fmt (= 9.1.0) 773 - - glog 774 - - hermes-engine 775 - - RCT-Folly/Fabric (= 2024.01.01.00) 776 - - RCTRequired 777 - - RCTTypeSafety 778 - - React-Core 779 - - React-cxxreact 780 - - React-debug 781 - - React-featureflags 782 - - React-graphics 783 - - React-jsi 784 - - React-jsiexecutor 785 - - React-logger 786 - - React-rendererdebug 787 - - React-runtimescheduler 788 - - React-utils 789 - - ReactCommon/turbomodule/core 790 - - React-Fabric/templateprocessor (0.76.5): 791 - - DoubleConversion 792 - - fmt (= 9.1.0) 793 - - glog 794 - - hermes-engine 795 - - RCT-Folly/Fabric (= 2024.01.01.00) 796 - - RCTRequired 797 - - RCTTypeSafety 798 - - React-Core 799 - - React-cxxreact 800 - - React-debug 801 - - React-featureflags 802 - - React-graphics 803 - - React-jsi 804 - - React-jsiexecutor 805 - - React-logger 806 - - React-rendererdebug 807 - - React-runtimescheduler 808 - - React-utils 809 - - ReactCommon/turbomodule/core 810 - - React-Fabric/uimanager (0.76.5): 811 - - DoubleConversion 812 - - fmt (= 9.1.0) 813 - - glog 814 - - hermes-engine 815 - - RCT-Folly/Fabric (= 2024.01.01.00) 816 - - RCTRequired 817 - - RCTTypeSafety 818 - - React-Core 819 - - React-cxxreact 820 - - React-debug 821 - - React-Fabric/uimanager/consistency (= 0.76.5) 822 - - React-featureflags 823 - - React-graphics 824 - - React-jsi 825 - - React-jsiexecutor 826 - - React-logger 827 - - React-rendererconsistency 828 - - React-rendererdebug 829 - - React-runtimescheduler 830 - - React-utils 831 - - ReactCommon/turbomodule/core 832 - - React-Fabric/uimanager/consistency (0.76.5): 833 - - DoubleConversion 834 - - fmt (= 9.1.0) 835 - - glog 836 - - hermes-engine 837 - - RCT-Folly/Fabric (= 2024.01.01.00) 838 - - RCTRequired 839 - - RCTTypeSafety 840 - - React-Core 841 - - React-cxxreact 842 - - React-debug 843 - - React-featureflags 844 - - React-graphics 845 - - React-jsi 846 - - React-jsiexecutor 847 - - React-logger 848 - - React-rendererconsistency 849 - - React-rendererdebug 850 - - React-runtimescheduler 851 - - React-utils 852 - - ReactCommon/turbomodule/core 853 - - React-FabricComponents (0.76.5): 854 - - DoubleConversion 855 - - fmt (= 9.1.0) 856 - - glog 857 - - hermes-engine 858 - - RCT-Folly/Fabric (= 2024.01.01.00) 859 - - RCTRequired 860 - - RCTTypeSafety 861 - - React-Core 862 - - React-cxxreact 863 - - React-debug 864 - - React-Fabric 865 - - React-FabricComponents/components (= 0.76.5) 866 - - React-FabricComponents/textlayoutmanager (= 0.76.5) 867 - - React-featureflags 868 - - React-graphics 869 - - React-jsi 870 - - React-jsiexecutor 871 - - React-logger 872 - - React-rendererdebug 873 - - React-runtimescheduler 874 - - React-utils 875 - - ReactCodegen 876 - - ReactCommon/turbomodule/core 877 - - Yoga 878 - - React-FabricComponents/components (0.76.5): 879 - - DoubleConversion 880 - - fmt (= 9.1.0) 881 - - glog 882 - - hermes-engine 883 - - RCT-Folly/Fabric (= 2024.01.01.00) 884 - - RCTRequired 885 - - RCTTypeSafety 886 - - React-Core 887 - - React-cxxreact 888 - - React-debug 889 - - React-Fabric 890 - - React-FabricComponents/components/inputaccessory (= 0.76.5) 891 - - React-FabricComponents/components/iostextinput (= 0.76.5) 892 - - React-FabricComponents/components/modal (= 0.76.5) 893 - - React-FabricComponents/components/rncore (= 0.76.5) 894 - - React-FabricComponents/components/safeareaview (= 0.76.5) 895 - - React-FabricComponents/components/scrollview (= 0.76.5) 896 - - React-FabricComponents/components/text (= 0.76.5) 897 - - React-FabricComponents/components/textinput (= 0.76.5) 898 - - React-FabricComponents/components/unimplementedview (= 0.76.5) 899 - - React-featureflags 900 - - React-graphics 901 - - React-jsi 902 - - React-jsiexecutor 903 - - React-logger 904 - - React-rendererdebug 905 - - React-runtimescheduler 906 - - React-utils 907 - - ReactCodegen 908 - - ReactCommon/turbomodule/core 909 - - Yoga 910 - - React-FabricComponents/components/inputaccessory (0.76.5): 911 - - DoubleConversion 912 - - fmt (= 9.1.0) 913 - - glog 914 - - hermes-engine 915 - - RCT-Folly/Fabric (= 2024.01.01.00) 916 - - RCTRequired 917 - - RCTTypeSafety 918 - - React-Core 919 - - React-cxxreact 920 - - React-debug 921 - - React-Fabric 922 - - React-featureflags 923 - - React-graphics 924 - - React-jsi 925 - - React-jsiexecutor 926 - - React-logger 927 - - React-rendererdebug 928 - - React-runtimescheduler 929 - - React-utils 930 - - ReactCodegen 931 - - ReactCommon/turbomodule/core 932 - - Yoga 933 - - React-FabricComponents/components/iostextinput (0.76.5): 934 - - DoubleConversion 935 - - fmt (= 9.1.0) 936 - - glog 937 - - hermes-engine 938 - - RCT-Folly/Fabric (= 2024.01.01.00) 939 - - RCTRequired 940 - - RCTTypeSafety 941 - - React-Core 942 - - React-cxxreact 943 - - React-debug 944 - - React-Fabric 945 - - React-featureflags 946 - - React-graphics 947 - - React-jsi 948 - - React-jsiexecutor 949 - - React-logger 950 - - React-rendererdebug 951 - - React-runtimescheduler 952 - - React-utils 953 - - ReactCodegen 954 - - ReactCommon/turbomodule/core 955 - - Yoga 956 - - React-FabricComponents/components/modal (0.76.5): 957 - - DoubleConversion 958 - - fmt (= 9.1.0) 959 - - glog 960 - - hermes-engine 961 - - RCT-Folly/Fabric (= 2024.01.01.00) 962 - - RCTRequired 963 - - RCTTypeSafety 964 - - React-Core 965 - - React-cxxreact 966 - - React-debug 967 - - React-Fabric 968 - - React-featureflags 969 - - React-graphics 970 - - React-jsi 971 - - React-jsiexecutor 972 - - React-logger 973 - - React-rendererdebug 974 - - React-runtimescheduler 975 - - React-utils 976 - - ReactCodegen 977 - - ReactCommon/turbomodule/core 978 - - Yoga 979 - - React-FabricComponents/components/rncore (0.76.5): 980 - - DoubleConversion 981 - - fmt (= 9.1.0) 982 - - glog 983 - - hermes-engine 984 - - RCT-Folly/Fabric (= 2024.01.01.00) 985 - - RCTRequired 986 - - RCTTypeSafety 987 - - React-Core 988 - - React-cxxreact 989 - - React-debug 990 - - React-Fabric 991 - - React-featureflags 992 - - React-graphics 993 - - React-jsi 994 - - React-jsiexecutor 995 - - React-logger 996 - - React-rendererdebug 997 - - React-runtimescheduler 998 - - React-utils 999 - - ReactCodegen 1000 - - ReactCommon/turbomodule/core 1001 - - Yoga 1002 - - React-FabricComponents/components/safeareaview (0.76.5): 1003 - - DoubleConversion 1004 - - fmt (= 9.1.0) 1005 - - glog 1006 - - hermes-engine 1007 - - RCT-Folly/Fabric (= 2024.01.01.00) 1008 - - RCTRequired 1009 - - RCTTypeSafety 1010 - - React-Core 1011 - - React-cxxreact 1012 - - React-debug 1013 - - React-Fabric 1014 - - React-featureflags 1015 - - React-graphics 1016 - - React-jsi 1017 - - React-jsiexecutor 1018 - - React-logger 1019 - - React-rendererdebug 1020 - - React-runtimescheduler 1021 - - React-utils 1022 - - ReactCodegen 1023 - - ReactCommon/turbomodule/core 1024 - - Yoga 1025 - - React-FabricComponents/components/scrollview (0.76.5): 1026 - - DoubleConversion 1027 - - fmt (= 9.1.0) 1028 - - glog 1029 - - hermes-engine 1030 - - RCT-Folly/Fabric (= 2024.01.01.00) 1031 - - RCTRequired 1032 - - RCTTypeSafety 1033 - - React-Core 1034 - - React-cxxreact 1035 - - React-debug 1036 - - React-Fabric 1037 - - React-featureflags 1038 - - React-graphics 1039 - - React-jsi 1040 - - React-jsiexecutor 1041 - - React-logger 1042 - - React-rendererdebug 1043 - - React-runtimescheduler 1044 - - React-utils 1045 - - ReactCodegen 1046 - - ReactCommon/turbomodule/core 1047 - - Yoga 1048 - - React-FabricComponents/components/text (0.76.5): 1049 - - DoubleConversion 1050 - - fmt (= 9.1.0) 1051 - - glog 1052 - - hermes-engine 1053 - - RCT-Folly/Fabric (= 2024.01.01.00) 1054 - - RCTRequired 1055 - - RCTTypeSafety 1056 - - React-Core 1057 - - React-cxxreact 1058 - - React-debug 1059 - - React-Fabric 1060 - - React-featureflags 1061 - - React-graphics 1062 - - React-jsi 1063 - - React-jsiexecutor 1064 - - React-logger 1065 - - React-rendererdebug 1066 - - React-runtimescheduler 1067 - - React-utils 1068 - - ReactCodegen 1069 - - ReactCommon/turbomodule/core 1070 - - Yoga 1071 - - React-FabricComponents/components/textinput (0.76.5): 1072 - - DoubleConversion 1073 - - fmt (= 9.1.0) 1074 - - glog 1075 - - hermes-engine 1076 - - RCT-Folly/Fabric (= 2024.01.01.00) 1077 - - RCTRequired 1078 - - RCTTypeSafety 1079 - - React-Core 1080 - - React-cxxreact 1081 - - React-debug 1082 - - React-Fabric 1083 - - React-featureflags 1084 - - React-graphics 1085 - - React-jsi 1086 - - React-jsiexecutor 1087 - - React-logger 1088 - - React-rendererdebug 1089 - - React-runtimescheduler 1090 - - React-utils 1091 - - ReactCodegen 1092 - - ReactCommon/turbomodule/core 1093 - - Yoga 1094 - - React-FabricComponents/components/unimplementedview (0.76.5): 1095 - - DoubleConversion 1096 - - fmt (= 9.1.0) 1097 - - glog 1098 - - hermes-engine 1099 - - RCT-Folly/Fabric (= 2024.01.01.00) 1100 - - RCTRequired 1101 - - RCTTypeSafety 1102 - - React-Core 1103 - - React-cxxreact 1104 - - React-debug 1105 - - React-Fabric 1106 - - React-featureflags 1107 - - React-graphics 1108 - - React-jsi 1109 - - React-jsiexecutor 1110 - - React-logger 1111 - - React-rendererdebug 1112 - - React-runtimescheduler 1113 - - React-utils 1114 - - ReactCodegen 1115 - - ReactCommon/turbomodule/core 1116 - - Yoga 1117 - - React-FabricComponents/textlayoutmanager (0.76.5): 1118 - - DoubleConversion 1119 - - fmt (= 9.1.0) 1120 - - glog 1121 - - hermes-engine 1122 - - RCT-Folly/Fabric (= 2024.01.01.00) 1123 - - RCTRequired 1124 - - RCTTypeSafety 1125 - - React-Core 1126 - - React-cxxreact 1127 - - React-debug 1128 - - React-Fabric 1129 - - React-featureflags 1130 - - React-graphics 1131 - - React-jsi 1132 - - React-jsiexecutor 1133 - - React-logger 1134 - - React-rendererdebug 1135 - - React-runtimescheduler 1136 - - React-utils 1137 - - ReactCodegen 1138 - - ReactCommon/turbomodule/core 1139 - - Yoga 1140 - - React-FabricImage (0.76.5): 1141 - - DoubleConversion 1142 - - fmt (= 9.1.0) 1143 - - glog 1144 - - hermes-engine 1145 - - RCT-Folly/Fabric (= 2024.01.01.00) 1146 - - RCTRequired (= 0.76.5) 1147 - - RCTTypeSafety (= 0.76.5) 1148 - - React-Fabric 1149 - - React-graphics 1150 - - React-ImageManager 1151 - - React-jsi 1152 - - React-jsiexecutor (= 0.76.5) 1153 - - React-logger 1154 - - React-rendererdebug 1155 - - React-utils 1156 - - ReactCommon 1157 - - Yoga 1158 - - React-featureflags (0.76.5) 1159 - - React-featureflagsnativemodule (0.76.5): 1160 - - DoubleConversion 1161 - - glog 1162 - - hermes-engine 1163 - - RCT-Folly (= 2024.01.01.00) 1164 - - RCTRequired 1165 - - RCTTypeSafety 1166 - - React-Core 1167 - - React-debug 1168 - - React-Fabric 1169 - - React-featureflags 1170 - - React-graphics 1171 - - React-ImageManager 1172 - - React-NativeModulesApple 1173 - - React-RCTFabric 1174 - - React-rendererdebug 1175 - - React-utils 1176 - - ReactCodegen 1177 - - ReactCommon/turbomodule/bridging 1178 - - ReactCommon/turbomodule/core 1179 - - Yoga 1180 - - React-graphics (0.76.5): 1181 - - DoubleConversion 1182 - - fmt (= 9.1.0) 1183 - - glog 1184 - - RCT-Folly/Fabric (= 2024.01.01.00) 1185 - - React-jsi 1186 - - React-jsiexecutor 1187 - - React-utils 1188 - - React-hermes (0.76.5): 1189 - - DoubleConversion 1190 - - fmt (= 9.1.0) 1191 - - glog 1192 - - hermes-engine 1193 - - RCT-Folly (= 2024.01.01.00) 1194 - - React-cxxreact (= 0.76.5) 1195 - - React-jsi 1196 - - React-jsiexecutor (= 0.76.5) 1197 - - React-jsinspector 1198 - - React-perflogger (= 0.76.5) 1199 - - React-runtimeexecutor 1200 - - React-idlecallbacksnativemodule (0.76.5): 1201 - - DoubleConversion 1202 - - glog 1203 - - hermes-engine 1204 - - RCT-Folly (= 2024.01.01.00) 1205 - - RCTRequired 1206 - - RCTTypeSafety 1207 - - React-Core 1208 - - React-debug 1209 - - React-Fabric 1210 - - React-featureflags 1211 - - React-graphics 1212 - - React-ImageManager 1213 - - React-NativeModulesApple 1214 - - React-RCTFabric 1215 - - React-rendererdebug 1216 - - React-runtimescheduler 1217 - - React-utils 1218 - - ReactCodegen 1219 - - ReactCommon/turbomodule/bridging 1220 - - ReactCommon/turbomodule/core 1221 - - Yoga 1222 - - React-ImageManager (0.76.5): 1223 - - glog 1224 - - RCT-Folly/Fabric 1225 - - React-Core/Default 1226 - - React-debug 1227 - - React-Fabric 1228 - - React-graphics 1229 - - React-rendererdebug 1230 - - React-utils 1231 - - React-jserrorhandler (0.76.5): 1232 - - glog 1233 - - hermes-engine 1234 - - RCT-Folly/Fabric (= 2024.01.01.00) 1235 - - React-cxxreact 1236 - - React-debug 1237 - - React-jsi 1238 - - React-jsi (0.76.5): 1239 - - boost 1240 - - DoubleConversion 1241 - - fmt (= 9.1.0) 1242 - - glog 1243 - - hermes-engine 1244 - - RCT-Folly (= 2024.01.01.00) 1245 - - React-jsiexecutor (0.76.5): 1246 - - DoubleConversion 1247 - - fmt (= 9.1.0) 1248 - - glog 1249 - - hermes-engine 1250 - - RCT-Folly (= 2024.01.01.00) 1251 - - React-cxxreact (= 0.76.5) 1252 - - React-jsi (= 0.76.5) 1253 - - React-jsinspector 1254 - - React-perflogger (= 0.76.5) 1255 - - React-jsinspector (0.76.5): 1256 - - DoubleConversion 1257 - - glog 1258 - - hermes-engine 1259 - - RCT-Folly (= 2024.01.01.00) 1260 - - React-featureflags 1261 - - React-jsi 1262 - - React-perflogger (= 0.76.5) 1263 - - React-runtimeexecutor (= 0.76.5) 1264 - - React-jsitracing (0.76.5): 1265 - - React-jsi 1266 - - React-logger (0.76.5): 1267 - - glog 1268 - - React-Mapbuffer (0.76.5): 1269 - - glog 1270 - - React-debug 1271 - - React-microtasksnativemodule (0.76.5): 1272 - - DoubleConversion 1273 - - glog 1274 - - hermes-engine 1275 - - RCT-Folly (= 2024.01.01.00) 1276 - - RCTRequired 1277 - - RCTTypeSafety 1278 - - React-Core 1279 - - React-debug 1280 - - React-Fabric 1281 - - React-featureflags 1282 - - React-graphics 1283 - - React-ImageManager 1284 - - React-NativeModulesApple 1285 - - React-RCTFabric 1286 - - React-rendererdebug 1287 - - React-utils 1288 - - ReactCodegen 1289 - - ReactCommon/turbomodule/bridging 1290 - - ReactCommon/turbomodule/core 1291 - - Yoga 1292 - - react-native-safe-area-context (4.12.0): 1293 - - DoubleConversion 1294 - - glog 1295 - - hermes-engine 1296 - - RCT-Folly (= 2024.01.01.00) 1297 - - RCTRequired 1298 - - RCTTypeSafety 1299 - - React-Core 1300 - - React-debug 1301 - - React-Fabric 1302 - - React-featureflags 1303 - - React-graphics 1304 - - React-ImageManager 1305 - - react-native-safe-area-context/common (= 4.12.0) 1306 - - react-native-safe-area-context/fabric (= 4.12.0) 1307 - - React-NativeModulesApple 1308 - - React-RCTFabric 1309 - - React-rendererdebug 1310 - - React-utils 1311 - - ReactCodegen 1312 - - ReactCommon/turbomodule/bridging 1313 - - ReactCommon/turbomodule/core 1314 - - Yoga 1315 - - react-native-safe-area-context/common (4.12.0): 1316 - - DoubleConversion 1317 - - glog 1318 - - hermes-engine 1319 - - RCT-Folly (= 2024.01.01.00) 1320 - - RCTRequired 1321 - - RCTTypeSafety 1322 - - React-Core 1323 - - React-debug 1324 - - React-Fabric 1325 - - React-featureflags 1326 - - React-graphics 1327 - - React-ImageManager 1328 - - React-NativeModulesApple 1329 - - React-RCTFabric 1330 - - React-rendererdebug 1331 - - React-utils 1332 - - ReactCodegen 1333 - - ReactCommon/turbomodule/bridging 1334 - - ReactCommon/turbomodule/core 1335 - - Yoga 1336 - - react-native-safe-area-context/fabric (4.12.0): 1337 - - DoubleConversion 1338 - - glog 1339 - - hermes-engine 1340 - - RCT-Folly (= 2024.01.01.00) 1341 - - RCTRequired 1342 - - RCTTypeSafety 1343 - - React-Core 1344 - - React-debug 1345 - - React-Fabric 1346 - - React-featureflags 1347 - - React-graphics 1348 - - React-ImageManager 1349 - - react-native-safe-area-context/common 1350 - - React-NativeModulesApple 1351 - - React-RCTFabric 1352 - - React-rendererdebug 1353 - - React-utils 1354 - - ReactCodegen 1355 - - ReactCommon/turbomodule/bridging 1356 - - ReactCommon/turbomodule/core 1357 - - Yoga 1358 - - React-nativeconfig (0.76.5) 1359 - - React-NativeModulesApple (0.76.5): 1360 - - glog 1361 - - hermes-engine 1362 - - React-callinvoker 1363 - - React-Core 1364 - - React-cxxreact 1365 - - React-jsi 1366 - - React-jsinspector 1367 - - React-runtimeexecutor 1368 - - ReactCommon/turbomodule/bridging 1369 - - ReactCommon/turbomodule/core 1370 - - React-perflogger (0.76.5): 1371 - - DoubleConversion 1372 - - RCT-Folly (= 2024.01.01.00) 1373 - - React-performancetimeline (0.76.5): 1374 - - RCT-Folly (= 2024.01.01.00) 1375 - - React-cxxreact 1376 - - React-timing 1377 - - React-RCTActionSheet (0.76.5): 1378 - - React-Core/RCTActionSheetHeaders (= 0.76.5) 1379 - - React-RCTAnimation (0.76.5): 1380 - - RCT-Folly (= 2024.01.01.00) 1381 - - RCTTypeSafety 1382 - - React-Core/RCTAnimationHeaders 1383 - - React-jsi 1384 - - React-NativeModulesApple 1385 - - ReactCodegen 1386 - - ReactCommon 1387 - - React-RCTAppDelegate (0.76.5): 1388 - - RCT-Folly (= 2024.01.01.00) 1389 - - RCTRequired 1390 - - RCTTypeSafety 1391 - - React-Core 1392 - - React-CoreModules 1393 - - React-debug 1394 - - React-defaultsnativemodule 1395 - - React-Fabric 1396 - - React-featureflags 1397 - - React-graphics 1398 - - React-hermes 1399 - - React-nativeconfig 1400 - - React-NativeModulesApple 1401 - - React-RCTFabric 1402 - - React-RCTImage 1403 - - React-RCTNetwork 1404 - - React-rendererdebug 1405 - - React-RuntimeApple 1406 - - React-RuntimeCore 1407 - - React-RuntimeHermes 1408 - - React-runtimescheduler 1409 - - React-utils 1410 - - ReactCodegen 1411 - - ReactCommon 1412 - - React-RCTBlob (0.76.5): 1413 - - DoubleConversion 1414 - - fmt (= 9.1.0) 1415 - - hermes-engine 1416 - - RCT-Folly (= 2024.01.01.00) 1417 - - React-Core/RCTBlobHeaders 1418 - - React-Core/RCTWebSocket 1419 - - React-jsi 1420 - - React-jsinspector 1421 - - React-NativeModulesApple 1422 - - React-RCTNetwork 1423 - - ReactCodegen 1424 - - ReactCommon 1425 - - React-RCTFabric (0.76.5): 1426 - - glog 1427 - - hermes-engine 1428 - - RCT-Folly/Fabric (= 2024.01.01.00) 1429 - - React-Core 1430 - - React-debug 1431 - - React-Fabric 1432 - - React-FabricComponents 1433 - - React-FabricImage 1434 - - React-featureflags 1435 - - React-graphics 1436 - - React-ImageManager 1437 - - React-jsi 1438 - - React-jsinspector 1439 - - React-nativeconfig 1440 - - React-performancetimeline 1441 - - React-RCTImage 1442 - - React-RCTText 1443 - - React-rendererconsistency 1444 - - React-rendererdebug 1445 - - React-runtimescheduler 1446 - - React-utils 1447 - - Yoga 1448 - - React-RCTImage (0.76.5): 1449 - - RCT-Folly (= 2024.01.01.00) 1450 - - RCTTypeSafety 1451 - - React-Core/RCTImageHeaders 1452 - - React-jsi 1453 - - React-NativeModulesApple 1454 - - React-RCTNetwork 1455 - - ReactCodegen 1456 - - ReactCommon 1457 - - React-RCTLinking (0.76.5): 1458 - - React-Core/RCTLinkingHeaders (= 0.76.5) 1459 - - React-jsi (= 0.76.5) 1460 - - React-NativeModulesApple 1461 - - ReactCodegen 1462 - - ReactCommon 1463 - - ReactCommon/turbomodule/core (= 0.76.5) 1464 - - React-RCTNetwork (0.76.5): 1465 - - RCT-Folly (= 2024.01.01.00) 1466 - - RCTTypeSafety 1467 - - React-Core/RCTNetworkHeaders 1468 - - React-jsi 1469 - - React-NativeModulesApple 1470 - - ReactCodegen 1471 - - ReactCommon 1472 - - React-RCTSettings (0.76.5): 1473 - - RCT-Folly (= 2024.01.01.00) 1474 - - RCTTypeSafety 1475 - - React-Core/RCTSettingsHeaders 1476 - - React-jsi 1477 - - React-NativeModulesApple 1478 - - ReactCodegen 1479 - - ReactCommon 1480 - - React-RCTText (0.76.5): 1481 - - React-Core/RCTTextHeaders (= 0.76.5) 1482 - - Yoga 1483 - - React-RCTVibration (0.76.5): 1484 - - RCT-Folly (= 2024.01.01.00) 1485 - - React-Core/RCTVibrationHeaders 1486 - - React-jsi 1487 - - React-NativeModulesApple 1488 - - ReactCodegen 1489 - - ReactCommon 1490 - - React-rendererconsistency (0.76.5) 1491 - - React-rendererdebug (0.76.5): 1492 - - DoubleConversion 1493 - - fmt (= 9.1.0) 1494 - - RCT-Folly (= 2024.01.01.00) 1495 - - React-debug 1496 - - React-rncore (0.76.5) 1497 - - React-RuntimeApple (0.76.5): 1498 - - hermes-engine 1499 - - RCT-Folly/Fabric (= 2024.01.01.00) 1500 - - React-callinvoker 1501 - - React-Core/Default 1502 - - React-CoreModules 1503 - - React-cxxreact 1504 - - React-jserrorhandler 1505 - - React-jsi 1506 - - React-jsiexecutor 1507 - - React-jsinspector 1508 - - React-Mapbuffer 1509 - - React-NativeModulesApple 1510 - - React-RCTFabric 1511 - - React-RuntimeCore 1512 - - React-runtimeexecutor 1513 - - React-RuntimeHermes 1514 - - React-runtimescheduler 1515 - - React-utils 1516 - - React-RuntimeCore (0.76.5): 1517 - - glog 1518 - - hermes-engine 1519 - - RCT-Folly/Fabric (= 2024.01.01.00) 1520 - - React-cxxreact 1521 - - React-featureflags 1522 - - React-jserrorhandler 1523 - - React-jsi 1524 - - React-jsiexecutor 1525 - - React-jsinspector 1526 - - React-performancetimeline 1527 - - React-runtimeexecutor 1528 - - React-runtimescheduler 1529 - - React-utils 1530 - - React-runtimeexecutor (0.76.5): 1531 - - React-jsi (= 0.76.5) 1532 - - React-RuntimeHermes (0.76.5): 1533 - - hermes-engine 1534 - - RCT-Folly/Fabric (= 2024.01.01.00) 1535 - - React-featureflags 1536 - - React-hermes 1537 - - React-jsi 1538 - - React-jsinspector 1539 - - React-jsitracing 1540 - - React-nativeconfig 1541 - - React-RuntimeCore 1542 - - React-utils 1543 - - React-runtimescheduler (0.76.5): 1544 - - glog 1545 - - hermes-engine 1546 - - RCT-Folly (= 2024.01.01.00) 1547 - - React-callinvoker 1548 - - React-cxxreact 1549 - - React-debug 1550 - - React-featureflags 1551 - - React-jsi 1552 - - React-performancetimeline 1553 - - React-rendererconsistency 1554 - - React-rendererdebug 1555 - - React-runtimeexecutor 1556 - - React-timing 1557 - - React-utils 1558 - - React-timing (0.76.5) 1559 - - React-utils (0.76.5): 1560 - - glog 1561 - - hermes-engine 1562 - - RCT-Folly (= 2024.01.01.00) 1563 - - React-debug 1564 - - React-jsi (= 0.76.5) 1565 - - ReactCodegen (0.76.5): 1566 - - DoubleConversion 1567 - - glog 1568 - - hermes-engine 1569 - - RCT-Folly 1570 - - RCTRequired 1571 - - RCTTypeSafety 1572 - - React-Core 1573 - - React-debug 1574 - - React-Fabric 1575 - - React-FabricImage 1576 - - React-featureflags 1577 - - React-graphics 1578 - - React-jsi 1579 - - React-jsiexecutor 1580 - - React-NativeModulesApple 1581 - - React-rendererdebug 1582 - - React-utils 1583 - - ReactCommon/turbomodule/bridging 1584 - - ReactCommon/turbomodule/core 1585 - - ReactCommon (0.76.5): 1586 - - ReactCommon/turbomodule (= 0.76.5) 1587 - - ReactCommon/turbomodule (0.76.5): 1588 - - DoubleConversion 1589 - - fmt (= 9.1.0) 1590 - - glog 1591 - - hermes-engine 1592 - - RCT-Folly (= 2024.01.01.00) 1593 - - React-callinvoker (= 0.76.5) 1594 - - React-cxxreact (= 0.76.5) 1595 - - React-jsi (= 0.76.5) 1596 - - React-logger (= 0.76.5) 1597 - - React-perflogger (= 0.76.5) 1598 - - ReactCommon/turbomodule/bridging (= 0.76.5) 1599 - - ReactCommon/turbomodule/core (= 0.76.5) 1600 - - ReactCommon/turbomodule/bridging (0.76.5): 1601 - - DoubleConversion 1602 - - fmt (= 9.1.0) 1603 - - glog 1604 - - hermes-engine 1605 - - RCT-Folly (= 2024.01.01.00) 1606 - - React-callinvoker (= 0.76.5) 1607 - - React-cxxreact (= 0.76.5) 1608 - - React-jsi (= 0.76.5) 1609 - - React-logger (= 0.76.5) 1610 - - React-perflogger (= 0.76.5) 1611 - - ReactCommon/turbomodule/core (0.76.5): 1612 - - DoubleConversion 1613 - - fmt (= 9.1.0) 1614 - - glog 1615 - - hermes-engine 1616 - - RCT-Folly (= 2024.01.01.00) 1617 - - React-callinvoker (= 0.76.5) 1618 - - React-cxxreact (= 0.76.5) 1619 - - React-debug (= 0.76.5) 1620 - - React-featureflags (= 0.76.5) 1621 - - React-jsi (= 0.76.5) 1622 - - React-logger (= 0.76.5) 1623 - - React-perflogger (= 0.76.5) 1624 - - React-utils (= 0.76.5) 1625 - - RNCAsyncStorage (1.23.1): 1626 - - DoubleConversion 1627 - - glog 1628 - - hermes-engine 1629 - - RCT-Folly (= 2024.01.01.00) 1630 - - RCTRequired 1631 - - RCTTypeSafety 1632 - - React-Core 1633 - - React-debug 1634 - - React-Fabric 1635 - - React-featureflags 1636 - - React-graphics 1637 - - React-ImageManager 1638 - - React-NativeModulesApple 1639 - - React-RCTFabric 1640 - - React-rendererdebug 1641 - - React-utils 1642 - - ReactCodegen 1643 - - ReactCommon/turbomodule/bridging 1644 - - ReactCommon/turbomodule/core 1645 - - Yoga 1646 - - RNReanimated (3.16.6): 1647 - - DoubleConversion 1648 - - glog 1649 - - hermes-engine 1650 - - RCT-Folly (= 2024.01.01.00) 1651 - - RCTRequired 1652 - - RCTTypeSafety 1653 - - React-Core 1654 - - React-debug 1655 - - React-Fabric 1656 - - React-featureflags 1657 - - React-graphics 1658 - - React-ImageManager 1659 - - React-NativeModulesApple 1660 - - React-RCTFabric 1661 - - React-rendererdebug 1662 - - React-utils 1663 - - ReactCodegen 1664 - - ReactCommon/turbomodule/bridging 1665 - - ReactCommon/turbomodule/core 1666 - - RNReanimated/reanimated (= 3.16.6) 1667 - - RNReanimated/worklets (= 3.16.6) 1668 - - Yoga 1669 - - RNReanimated/reanimated (3.16.6): 1670 - - DoubleConversion 1671 - - glog 1672 - - hermes-engine 1673 - - RCT-Folly (= 2024.01.01.00) 1674 - - RCTRequired 1675 - - RCTTypeSafety 1676 - - React-Core 1677 - - React-debug 1678 - - React-Fabric 1679 - - React-featureflags 1680 - - React-graphics 1681 - - React-ImageManager 1682 - - React-NativeModulesApple 1683 - - React-RCTFabric 1684 - - React-rendererdebug 1685 - - React-utils 1686 - - ReactCodegen 1687 - - ReactCommon/turbomodule/bridging 1688 - - ReactCommon/turbomodule/core 1689 - - RNReanimated/reanimated/apple (= 3.16.6) 1690 - - Yoga 1691 - - RNReanimated/reanimated/apple (3.16.6): 1692 - - DoubleConversion 1693 - - glog 1694 - - hermes-engine 1695 - - RCT-Folly (= 2024.01.01.00) 1696 - - RCTRequired 1697 - - RCTTypeSafety 1698 - - React-Core 1699 - - React-debug 1700 - - React-Fabric 1701 - - React-featureflags 1702 - - React-graphics 1703 - - React-ImageManager 1704 - - React-NativeModulesApple 1705 - - React-RCTFabric 1706 - - React-rendererdebug 1707 - - React-utils 1708 - - ReactCodegen 1709 - - ReactCommon/turbomodule/bridging 1710 - - ReactCommon/turbomodule/core 1711 - - Yoga 1712 - - RNReanimated/worklets (3.16.6): 1713 - - DoubleConversion 1714 - - glog 1715 - - hermes-engine 1716 - - RCT-Folly (= 2024.01.01.00) 1717 - - RCTRequired 1718 - - RCTTypeSafety 1719 - - React-Core 1720 - - React-debug 1721 - - React-Fabric 1722 - - React-featureflags 1723 - - React-graphics 1724 - - React-ImageManager 1725 - - React-NativeModulesApple 1726 - - React-RCTFabric 1727 - - React-rendererdebug 1728 - - React-utils 1729 - - ReactCodegen 1730 - - ReactCommon/turbomodule/bridging 1731 - - ReactCommon/turbomodule/core 1732 - - Yoga 1733 - - RNScreens (4.1.0): 1734 - - DoubleConversion 1735 - - glog 1736 - - hermes-engine 1737 - - RCT-Folly (= 2024.01.01.00) 1738 - - RCTRequired 1739 - - RCTTypeSafety 1740 - - React-Core 1741 - - React-debug 1742 - - React-Fabric 1743 - - React-featureflags 1744 - - React-graphics 1745 - - React-ImageManager 1746 - - React-NativeModulesApple 1747 - - React-RCTFabric 1748 - - React-RCTImage 1749 - - React-rendererdebug 1750 - - React-utils 1751 - - ReactCodegen 1752 - - ReactCommon/turbomodule/bridging 1753 - - ReactCommon/turbomodule/core 1754 - - RNScreens/common (= 4.1.0) 1755 - - Yoga 1756 - - RNScreens/common (4.1.0): 1757 - - DoubleConversion 1758 - - glog 1759 - - hermes-engine 1760 - - RCT-Folly (= 2024.01.01.00) 1761 - - RCTRequired 1762 - - RCTTypeSafety 1763 - - React-Core 1764 - - React-debug 1765 - - React-Fabric 1766 - - React-featureflags 1767 - - React-graphics 1768 - - React-ImageManager 1769 - - React-NativeModulesApple 1770 - - React-RCTFabric 1771 - - React-RCTImage 1772 - - React-rendererdebug 1773 - - React-utils 1774 - - ReactCodegen 1775 - - ReactCommon/turbomodule/bridging 1776 - - ReactCommon/turbomodule/core 1777 - - Yoga 1778 - - RNSVG (15.8.0): 1779 - - DoubleConversion 1780 - - glog 1781 - - hermes-engine 1782 - - RCT-Folly (= 2024.01.01.00) 1783 - - RCTRequired 1784 - - RCTTypeSafety 1785 - - React-Core 1786 - - React-debug 1787 - - React-Fabric 1788 - - React-featureflags 1789 - - React-graphics 1790 - - React-ImageManager 1791 - - React-NativeModulesApple 1792 - - React-RCTFabric 1793 - - React-rendererdebug 1794 - - React-utils 1795 - - ReactCodegen 1796 - - ReactCommon/turbomodule/bridging 1797 - - ReactCommon/turbomodule/core 1798 - - RNSVG/common (= 15.8.0) 1799 - - Yoga 1800 - - RNSVG/common (15.8.0): 1801 - - DoubleConversion 1802 - - glog 1803 - - hermes-engine 1804 - - RCT-Folly (= 2024.01.01.00) 1805 - - RCTRequired 1806 - - RCTTypeSafety 1807 - - React-Core 1808 - - React-debug 1809 - - React-Fabric 1810 - - React-featureflags 1811 - - React-graphics 1812 - - React-ImageManager 1813 - - React-NativeModulesApple 1814 - - React-RCTFabric 1815 - - React-rendererdebug 1816 - - React-utils 1817 - - ReactCodegen 1818 - - ReactCommon/turbomodule/bridging 1819 - - ReactCommon/turbomodule/core 1820 - - Yoga 1821 - - SocketRocket (0.7.1) 1822 - - Yoga (0.0.0) 1823 - 1824 - DEPENDENCIES: 1825 - - boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`) 1826 - - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`) 1827 - - "EXConstants (from `../../../node_modules/.pnpm/expo-constants@17.0.3_expo@52.0.23_@babel+core@7.26.0_@babel+preset-env@7.26.0_@babel+core@7._otn5fxidkjs47ah7wtr6cz3m5q/node_modules/expo-constants/ios`)" 1828 - - "Expo (from `../../../node_modules/.pnpm/expo@52.0.23_@babel+core@7.26.0_@babel+preset-env@7.26.0_@babel+core@7.26.0__@expo+metro-runt_xay6n4an55r2a6hbz2mbisrsoq/node_modules/expo`)" 1829 - - "ExpoAsset (from `../../../node_modules/.pnpm/expo-asset@11.0.1_expo@52.0.23_@babel+core@7.26.0_@babel+preset-env@7.26.0_@babel+core@7.26.0_a5ktyi7gma75cqwkt2rr6zu7ve/node_modules/expo-asset/ios`)" 1830 - - "ExpoFileSystem (from `../../../node_modules/.pnpm/expo-file-system@18.0.6_expo@52.0.23_@babel+core@7.26.0_@babel+preset-env@7.26.0_@babel+core@_lqyd4jlvahq732y76j4kblch4y/node_modules/expo-file-system/ios`)" 1831 - - "ExpoFont (from `../../../node_modules/.pnpm/expo-font@13.0.2_expo@52.0.23_@babel+core@7.26.0_@babel+preset-env@7.26.0_@babel+core@7.26.0__tf64kpfoyeapqyua55asuvokou/node_modules/expo-font/ios`)" 1832 - - "ExpoHead (from `../../../node_modules/.pnpm/expo-router@4.0.15_gotfvpjgdda64332thj6zgv2gq/node_modules/expo-router/ios`)" 1833 - - "ExpoKeepAwake (from `../../../node_modules/.pnpm/expo-keep-awake@14.0.1_expo@52.0.23_@babel+core@7.26.0_@babel+preset-env@7.26.0_@babel+core@7_llmllcocktu5gfidj73ekpukt4/node_modules/expo-keep-awake/ios`)" 1834 - - "ExpoLinking (from `../../../node_modules/.pnpm/expo-linking@7.0.3_expo@52.0.23_@babel+core@7.26.0_@babel+preset-env@7.26.0_@babel+core@7.26._fagfuodv3id46rjp3m2zqvkfdu/node_modules/expo-linking/ios`)" 1835 - - "ExpoModulesCore (from `../../../node_modules/.pnpm/expo-modules-core@2.1.2/node_modules/expo-modules-core`)" 1836 - - "ExpoSplashScreen (from `../../../node_modules/.pnpm/expo-splash-screen@0.29.18_expo@52.0.23_@babel+core@7.26.0_@babel+preset-env@7.26.0_@babel+co_b5yrpe43nlsue73qi24ipw6jmi/node_modules/expo-splash-screen/ios`)" 1837 - - "ExpoSQLite (from `../../../node_modules/.pnpm/expo-sqlite@15.0.5_expo@52.0.23_@babel+core@7.26.0_@babel+preset-env@7.26.0_@babel+core@7.26._p4pkicoaeki7wsafxjxqrpn56e/node_modules/expo-sqlite/ios`)" 1838 - - "ExpoSystemUI (from `../../../node_modules/.pnpm/expo-system-ui@4.0.6_expo@52.0.23_@babel+core@7.26.0_@babel+preset-env@7.26.0_@babel+core@7.2_fw7i4nsyhhjuvhhibylx65hnbe/node_modules/expo-system-ui/ios`)" 1839 - - "ExpoWebBrowser (from `../../../node_modules/.pnpm/expo-web-browser@14.0.1_expo@52.0.23_@babel+core@7.26.0_@babel+preset-env@7.26.0_@babel+core@_iuwj5nmzojdwrjudwwinfqrimq/node_modules/expo-web-browser/ios`)" 1840 - - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`) 1841 - - fmt (from `../node_modules/react-native/third-party-podspecs/fmt.podspec`) 1842 - - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`) 1843 - - hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`) 1844 - - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`) 1845 - - RCT-Folly/Fabric (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`) 1846 - - RCTDeprecation (from `../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation`) 1847 - - RCTRequired (from `../node_modules/react-native/Libraries/Required`) 1848 - - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`) 1849 - - React (from `../node_modules/react-native/`) 1850 - - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`) 1851 - - React-Core (from `../node_modules/react-native/`) 1852 - - React-Core/RCTWebSocket (from `../node_modules/react-native/`) 1853 - - React-CoreModules (from `../node_modules/react-native/React/CoreModules`) 1854 - - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`) 1855 - - React-debug (from `../node_modules/react-native/ReactCommon/react/debug`) 1856 - - React-defaultsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/defaults`) 1857 - - React-domnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/dom`) 1858 - - React-Fabric (from `../node_modules/react-native/ReactCommon`) 1859 - - React-FabricComponents (from `../node_modules/react-native/ReactCommon`) 1860 - - React-FabricImage (from `../node_modules/react-native/ReactCommon`) 1861 - - React-featureflags (from `../node_modules/react-native/ReactCommon/react/featureflags`) 1862 - - React-featureflagsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/featureflags`) 1863 - - React-graphics (from `../node_modules/react-native/ReactCommon/react/renderer/graphics`) 1864 - - React-hermes (from `../node_modules/react-native/ReactCommon/hermes`) 1865 - - React-idlecallbacksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks`) 1866 - - React-ImageManager (from `../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios`) 1867 - - React-jserrorhandler (from `../node_modules/react-native/ReactCommon/jserrorhandler`) 1868 - - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`) 1869 - - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`) 1870 - - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector-modern`) 1871 - - React-jsitracing (from `../node_modules/react-native/ReactCommon/hermes/executor/`) 1872 - - React-logger (from `../node_modules/react-native/ReactCommon/logger`) 1873 - - React-Mapbuffer (from `../node_modules/react-native/ReactCommon`) 1874 - - React-microtasksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/microtasks`) 1875 - - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`) 1876 - - React-nativeconfig (from `../node_modules/react-native/ReactCommon`) 1877 - - React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`) 1878 - - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`) 1879 - - React-performancetimeline (from `../node_modules/react-native/ReactCommon/react/performance/timeline`) 1880 - - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`) 1881 - - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`) 1882 - - React-RCTAppDelegate (from `../node_modules/react-native/Libraries/AppDelegate`) 1883 - - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`) 1884 - - React-RCTFabric (from `../node_modules/react-native/React`) 1885 - - React-RCTImage (from `../node_modules/react-native/Libraries/Image`) 1886 - - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`) 1887 - - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`) 1888 - - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`) 1889 - - React-RCTText (from `../node_modules/react-native/Libraries/Text`) 1890 - - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`) 1891 - - React-rendererconsistency (from `../node_modules/react-native/ReactCommon/react/renderer/consistency`) 1892 - - React-rendererdebug (from `../node_modules/react-native/ReactCommon/react/renderer/debug`) 1893 - - React-rncore (from `../node_modules/react-native/ReactCommon`) 1894 - - React-RuntimeApple (from `../node_modules/react-native/ReactCommon/react/runtime/platform/ios`) 1895 - - React-RuntimeCore (from `../node_modules/react-native/ReactCommon/react/runtime`) 1896 - - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`) 1897 - - React-RuntimeHermes (from `../node_modules/react-native/ReactCommon/react/runtime`) 1898 - - React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`) 1899 - - React-timing (from `../node_modules/react-native/ReactCommon/react/timing`) 1900 - - React-utils (from `../node_modules/react-native/ReactCommon/react/utils`) 1901 - - ReactCodegen (from `build/generated/ios`) 1902 - - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`) 1903 - - "RNCAsyncStorage (from `../node_modules/@react-native-async-storage/async-storage`)" 1904 - - RNReanimated (from `../node_modules/react-native-reanimated`) 1905 - - RNScreens (from `../node_modules/react-native-screens`) 1906 - - RNSVG (from `../node_modules/react-native-svg`) 1907 - - Yoga (from `../node_modules/react-native/ReactCommon/yoga`) 1908 - 1909 - SPEC REPOS: 1910 - trunk: 1911 - - SocketRocket 1912 - 1913 - EXTERNAL SOURCES: 1914 - boost: 1915 - :podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec" 1916 - DoubleConversion: 1917 - :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec" 1918 - EXConstants: 1919 - :path: "../../../node_modules/.pnpm/expo-constants@17.0.3_expo@52.0.23_@babel+core@7.26.0_@babel+preset-env@7.26.0_@babel+core@7._otn5fxidkjs47ah7wtr6cz3m5q/node_modules/expo-constants/ios" 1920 - Expo: 1921 - :path: "../../../node_modules/.pnpm/expo@52.0.23_@babel+core@7.26.0_@babel+preset-env@7.26.0_@babel+core@7.26.0__@expo+metro-runt_xay6n4an55r2a6hbz2mbisrsoq/node_modules/expo" 1922 - ExpoAsset: 1923 - :path: "../../../node_modules/.pnpm/expo-asset@11.0.1_expo@52.0.23_@babel+core@7.26.0_@babel+preset-env@7.26.0_@babel+core@7.26.0_a5ktyi7gma75cqwkt2rr6zu7ve/node_modules/expo-asset/ios" 1924 - ExpoFileSystem: 1925 - :path: "../../../node_modules/.pnpm/expo-file-system@18.0.6_expo@52.0.23_@babel+core@7.26.0_@babel+preset-env@7.26.0_@babel+core@_lqyd4jlvahq732y76j4kblch4y/node_modules/expo-file-system/ios" 1926 - ExpoFont: 1927 - :path: "../../../node_modules/.pnpm/expo-font@13.0.2_expo@52.0.23_@babel+core@7.26.0_@babel+preset-env@7.26.0_@babel+core@7.26.0__tf64kpfoyeapqyua55asuvokou/node_modules/expo-font/ios" 1928 - ExpoHead: 1929 - :path: "../../../node_modules/.pnpm/expo-router@4.0.15_gotfvpjgdda64332thj6zgv2gq/node_modules/expo-router/ios" 1930 - ExpoKeepAwake: 1931 - :path: "../../../node_modules/.pnpm/expo-keep-awake@14.0.1_expo@52.0.23_@babel+core@7.26.0_@babel+preset-env@7.26.0_@babel+core@7_llmllcocktu5gfidj73ekpukt4/node_modules/expo-keep-awake/ios" 1932 - ExpoLinking: 1933 - :path: "../../../node_modules/.pnpm/expo-linking@7.0.3_expo@52.0.23_@babel+core@7.26.0_@babel+preset-env@7.26.0_@babel+core@7.26._fagfuodv3id46rjp3m2zqvkfdu/node_modules/expo-linking/ios" 1934 - ExpoModulesCore: 1935 - :path: "../../../node_modules/.pnpm/expo-modules-core@2.1.2/node_modules/expo-modules-core" 1936 - ExpoSplashScreen: 1937 - :path: "../../../node_modules/.pnpm/expo-splash-screen@0.29.18_expo@52.0.23_@babel+core@7.26.0_@babel+preset-env@7.26.0_@babel+co_b5yrpe43nlsue73qi24ipw6jmi/node_modules/expo-splash-screen/ios" 1938 - ExpoSQLite: 1939 - :path: "../../../node_modules/.pnpm/expo-sqlite@15.0.5_expo@52.0.23_@babel+core@7.26.0_@babel+preset-env@7.26.0_@babel+core@7.26._p4pkicoaeki7wsafxjxqrpn56e/node_modules/expo-sqlite/ios" 1940 - ExpoSystemUI: 1941 - :path: "../../../node_modules/.pnpm/expo-system-ui@4.0.6_expo@52.0.23_@babel+core@7.26.0_@babel+preset-env@7.26.0_@babel+core@7.2_fw7i4nsyhhjuvhhibylx65hnbe/node_modules/expo-system-ui/ios" 1942 - ExpoWebBrowser: 1943 - :path: "../../../node_modules/.pnpm/expo-web-browser@14.0.1_expo@52.0.23_@babel+core@7.26.0_@babel+preset-env@7.26.0_@babel+core@_iuwj5nmzojdwrjudwwinfqrimq/node_modules/expo-web-browser/ios" 1944 - FBLazyVector: 1945 - :path: "../node_modules/react-native/Libraries/FBLazyVector" 1946 - fmt: 1947 - :podspec: "../node_modules/react-native/third-party-podspecs/fmt.podspec" 1948 - glog: 1949 - :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec" 1950 - hermes-engine: 1951 - :podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec" 1952 - :tag: hermes-2024-11-12-RNv0.76.2-5b4aa20c719830dcf5684832b89a6edb95ac3d64 1953 - RCT-Folly: 1954 - :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec" 1955 - RCTDeprecation: 1956 - :path: "../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation" 1957 - RCTRequired: 1958 - :path: "../node_modules/react-native/Libraries/Required" 1959 - RCTTypeSafety: 1960 - :path: "../node_modules/react-native/Libraries/TypeSafety" 1961 - React: 1962 - :path: "../node_modules/react-native/" 1963 - React-callinvoker: 1964 - :path: "../node_modules/react-native/ReactCommon/callinvoker" 1965 - React-Core: 1966 - :path: "../node_modules/react-native/" 1967 - React-CoreModules: 1968 - :path: "../node_modules/react-native/React/CoreModules" 1969 - React-cxxreact: 1970 - :path: "../node_modules/react-native/ReactCommon/cxxreact" 1971 - React-debug: 1972 - :path: "../node_modules/react-native/ReactCommon/react/debug" 1973 - React-defaultsnativemodule: 1974 - :path: "../node_modules/react-native/ReactCommon/react/nativemodule/defaults" 1975 - React-domnativemodule: 1976 - :path: "../node_modules/react-native/ReactCommon/react/nativemodule/dom" 1977 - React-Fabric: 1978 - :path: "../node_modules/react-native/ReactCommon" 1979 - React-FabricComponents: 1980 - :path: "../node_modules/react-native/ReactCommon" 1981 - React-FabricImage: 1982 - :path: "../node_modules/react-native/ReactCommon" 1983 - React-featureflags: 1984 - :path: "../node_modules/react-native/ReactCommon/react/featureflags" 1985 - React-featureflagsnativemodule: 1986 - :path: "../node_modules/react-native/ReactCommon/react/nativemodule/featureflags" 1987 - React-graphics: 1988 - :path: "../node_modules/react-native/ReactCommon/react/renderer/graphics" 1989 - React-hermes: 1990 - :path: "../node_modules/react-native/ReactCommon/hermes" 1991 - React-idlecallbacksnativemodule: 1992 - :path: "../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks" 1993 - React-ImageManager: 1994 - :path: "../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios" 1995 - React-jserrorhandler: 1996 - :path: "../node_modules/react-native/ReactCommon/jserrorhandler" 1997 - React-jsi: 1998 - :path: "../node_modules/react-native/ReactCommon/jsi" 1999 - React-jsiexecutor: 2000 - :path: "../node_modules/react-native/ReactCommon/jsiexecutor" 2001 - React-jsinspector: 2002 - :path: "../node_modules/react-native/ReactCommon/jsinspector-modern" 2003 - React-jsitracing: 2004 - :path: "../node_modules/react-native/ReactCommon/hermes/executor/" 2005 - React-logger: 2006 - :path: "../node_modules/react-native/ReactCommon/logger" 2007 - React-Mapbuffer: 2008 - :path: "../node_modules/react-native/ReactCommon" 2009 - React-microtasksnativemodule: 2010 - :path: "../node_modules/react-native/ReactCommon/react/nativemodule/microtasks" 2011 - react-native-safe-area-context: 2012 - :path: "../node_modules/react-native-safe-area-context" 2013 - React-nativeconfig: 2014 - :path: "../node_modules/react-native/ReactCommon" 2015 - React-NativeModulesApple: 2016 - :path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios" 2017 - React-perflogger: 2018 - :path: "../node_modules/react-native/ReactCommon/reactperflogger" 2019 - React-performancetimeline: 2020 - :path: "../node_modules/react-native/ReactCommon/react/performance/timeline" 2021 - React-RCTActionSheet: 2022 - :path: "../node_modules/react-native/Libraries/ActionSheetIOS" 2023 - React-RCTAnimation: 2024 - :path: "../node_modules/react-native/Libraries/NativeAnimation" 2025 - React-RCTAppDelegate: 2026 - :path: "../node_modules/react-native/Libraries/AppDelegate" 2027 - React-RCTBlob: 2028 - :path: "../node_modules/react-native/Libraries/Blob" 2029 - React-RCTFabric: 2030 - :path: "../node_modules/react-native/React" 2031 - React-RCTImage: 2032 - :path: "../node_modules/react-native/Libraries/Image" 2033 - React-RCTLinking: 2034 - :path: "../node_modules/react-native/Libraries/LinkingIOS" 2035 - React-RCTNetwork: 2036 - :path: "../node_modules/react-native/Libraries/Network" 2037 - React-RCTSettings: 2038 - :path: "../node_modules/react-native/Libraries/Settings" 2039 - React-RCTText: 2040 - :path: "../node_modules/react-native/Libraries/Text" 2041 - React-RCTVibration: 2042 - :path: "../node_modules/react-native/Libraries/Vibration" 2043 - React-rendererconsistency: 2044 - :path: "../node_modules/react-native/ReactCommon/react/renderer/consistency" 2045 - React-rendererdebug: 2046 - :path: "../node_modules/react-native/ReactCommon/react/renderer/debug" 2047 - React-rncore: 2048 - :path: "../node_modules/react-native/ReactCommon" 2049 - React-RuntimeApple: 2050 - :path: "../node_modules/react-native/ReactCommon/react/runtime/platform/ios" 2051 - React-RuntimeCore: 2052 - :path: "../node_modules/react-native/ReactCommon/react/runtime" 2053 - React-runtimeexecutor: 2054 - :path: "../node_modules/react-native/ReactCommon/runtimeexecutor" 2055 - React-RuntimeHermes: 2056 - :path: "../node_modules/react-native/ReactCommon/react/runtime" 2057 - React-runtimescheduler: 2058 - :path: "../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler" 2059 - React-timing: 2060 - :path: "../node_modules/react-native/ReactCommon/react/timing" 2061 - React-utils: 2062 - :path: "../node_modules/react-native/ReactCommon/react/utils" 2063 - ReactCodegen: 2064 - :path: build/generated/ios 2065 - ReactCommon: 2066 - :path: "../node_modules/react-native/ReactCommon" 2067 - RNCAsyncStorage: 2068 - :path: "../node_modules/@react-native-async-storage/async-storage" 2069 - RNReanimated: 2070 - :path: "../node_modules/react-native-reanimated" 2071 - RNScreens: 2072 - :path: "../node_modules/react-native-screens" 2073 - RNSVG: 2074 - :path: "../node_modules/react-native-svg" 2075 - Yoga: 2076 - :path: "../node_modules/react-native/ReactCommon/yoga" 2077 - 2078 - SPEC CHECKSUMS: 2079 - boost: 1dca942403ed9342f98334bf4c3621f011aa7946 2080 - DoubleConversion: f16ae600a246532c4020132d54af21d0ddb2a385 2081 - EXConstants: dd2fe64c6cdb1383b694c309a63028a8e9f2be6d 2082 - Expo: 37cea4167605a3a1b88fa0caf8349ae76c0d389c 2083 - ExpoAsset: 8138f2a9ec55ae1ad7c3871448379f7d97692d15 2084 - ExpoFileSystem: 179a0661fd6d3c4e5d7e500a99a9cd8b295d9566 2085 - ExpoFont: 260fb85279912421894060d9aea453cee4ffc01c 2086 - ExpoHead: 83465614d1af3df77a0db724a24a43648e3daefa 2087 - ExpoKeepAwake: 783e68647b969b210a786047c3daa7b753dcac1f 2088 - ExpoLinking: a8332a219379ba80f8e612d5a5de4a3da446886e 2089 - ExpoModulesCore: 41844ce131433b266261b44012d5b41ac0513999 2090 - ExpoSplashScreen: 5818efe67bdbcc862b97fef589571c5b4d53fa7d 2091 - ExpoSQLite: 8b0cb9436f22136cb9dbfe483c3f80d025fad43a 2092 - ExpoSystemUI: 2d729aea8219f03af1b1996c1d14488a01fea94a 2093 - ExpoWebBrowser: f08aaf1c8a02af8a768d83793186cb6d2c69f529 2094 - FBLazyVector: 1bf99bb46c6af9a2712592e707347315f23947aa 2095 - fmt: 10c6e61f4be25dc963c36bd73fc7b1705fe975be 2096 - glog: 08b301085f15bcbb6ff8632a8ebaf239aae04e6a 2097 - hermes-engine: 06a9c6900587420b90accc394199527c64259db4 2098 - RCT-Folly: bf5c0376ffe4dd2cf438dcf86db385df9fdce648 2099 - RCTDeprecation: fb7d408617e25d7f537940000d766d60149c5fea 2100 - RCTRequired: 9aaf0ffcc1f41f0c671af863970ef25c422a9920 2101 - RCTTypeSafety: e9a6e7d48184646eb0610295b74c0dd02768cbb2 2102 - React: fffb3cf1b0d7aee03c4eb4952b2d58783615e9fa 2103 - React-callinvoker: 3c6ecc0315d42924e01b3ddc25cf2e49d33da169 2104 - React-Core: d2143ba58d0c8563cf397f96f699c6069eba951c 2105 - React-CoreModules: b3cbc5e3090a8c23116c0c7dd8998e0637e29619 2106 - React-cxxreact: 68fb9193582c4a411ce99d0b23f7b3d8da1c2e4a 2107 - React-debug: 297ed67868a76e8384669ea9b5c65c5d9d9d15d9 2108 - React-defaultsnativemodule: 9726dafb3b20bb49f9eac5993418aaa7ddb6a80d 2109 - React-domnativemodule: ff049da74cb1be08b7cd71cdbc7bb5b335e04d8e 2110 - React-Fabric: 2e33816098a5a29d2f4ae7eb2de3cfbc361b6922 2111 - React-FabricComponents: bb2d6b89321bf79653ae3d4ec890ba7cb9fe51c8 2112 - React-FabricImage: 019a5e834378e460ef39bf19cb506fd36491ae74 2113 - React-featureflags: cb3dca1c74ba813f2e578c8c635989d01d14739f 2114 - React-featureflagsnativemodule: 4a1eaf7a29e48ddd60bce9a2f4c4ef74dc3b9e53 2115 - React-graphics: e626f3b24227a3a8323ed89476c8f0927c0264c7 2116 - React-hermes: 63678d262d94835f986fa2fac1c835188f14160b 2117 - React-idlecallbacksnativemodule: 7a25d2bff611677bbc2eab428e7bfd02f7418b42 2118 - React-ImageManager: 223709133aa644bc1e74d354308cf2ed4c9d0f00 2119 - React-jserrorhandler: 212d88de95b23965fdff91c1a20da30e29cdfbbb 2120 - React-jsi: d189a2a826fe6700ea1194e1c2b15535d06c8d75 2121 - React-jsiexecutor: b75a12d37f2bf84f74b5c05131afdef243cfc69d 2122 - React-jsinspector: c3402468ae1fbca79e3d8cc11e7a0fc2c8ffafb1 2123 - React-jsitracing: 1f46c2ec0c5ace3fe959b1aa0f8535ef1c021161 2124 - React-logger: 697873f06b8ba436e3cddf28018ab4741e8071b6 2125 - React-Mapbuffer: c174e11bdea12dce07df8669d6c0dc97eb0c7706 2126 - React-microtasksnativemodule: 8a80099ad7391f4e13a48b12796d96680f120dc6 2127 - react-native-safe-area-context: 458f6b948437afcb59198016b26bbd02ff9c3b47 2128 - React-nativeconfig: f7ab6c152e780b99a8c17448f2d99cf5f69a2311 2129 - React-NativeModulesApple: 70600f7edfc2c2a01e39ab13a20fd59f4c60df0b 2130 - React-perflogger: ceb97dd4e5ca6ff20eebb5a6f9e00312dcdea872 2131 - React-performancetimeline: e39f038509c2a6b2ddb85087ba7cb8bd9caf977d 2132 - React-RCTActionSheet: a4388035260b01ac38d3647da0433b0455da9bae 2133 - React-RCTAnimation: 84117cb3521c40e95a4edfeab1c1cb159bc9a7c3 2134 - React-RCTAppDelegate: df039dffb7adbc2e4a8ce951d1b2842f1846f43e 2135 - React-RCTBlob: 947cbb49842c9141e2b21f719e83e9197a06e453 2136 - React-RCTFabric: 8f8afe72401ddfca2bd8b488d2d9eb0deee0b4bf 2137 - React-RCTImage: 367a7dcca1d37b04e28918c025a0101494fb2a19 2138 - React-RCTLinking: b9dc797e49683a98ee4f703f1f01ec2bd69ceb7f 2139 - React-RCTNetwork: 16e92fb59b9cd1e1175ecb2e90aa9e06e82db7a3 2140 - React-RCTSettings: 20a1c3316956fae137d8178b4c23b7a1d56674cc 2141 - React-RCTText: 59d8792076b6010f7305f2558d868025004e108b 2142 - React-RCTVibration: 597d5aba0212d709ec79d12e76285c3d94dc0658 2143 - React-rendererconsistency: 42f182fe910ad6c9b449cc62adae8d0eaba76f0a 2144 - React-rendererdebug: f36daf9f79831c8785215048fad4ef6453834430 2145 - React-rncore: 85ed76036ff56e2e9c369155027cbbd84db86006 2146 - React-RuntimeApple: 6ca44fc23bb00474f9387c0709f23d4dade79800 2147 - React-RuntimeCore: b4d723e516e2e24616eb72de5b41a68b0736cc02 2148 - React-runtimeexecutor: 10fae9492194097c99f6e34cedbb42a308922d32 2149 - React-RuntimeHermes: 93437bfc028ba48122276e2748c7cd0f9bbcdb40 2150 - React-runtimescheduler: 72bbb4bd4774a0f4f9a7e84dbf133213197a0828 2151 - React-timing: 1050c6fa44c327f2d7538e10c548fdf521fabdb8 2152 - React-utils: 541c6cca08f32597d4183f00e83eef2ed20d4c54 2153 - ReactCodegen: daa13d9e48c9bdb1daac4bd694b9dd54e06681df 2154 - ReactCommon: a6b87a7591591f7a52d9c0fec3aa05e0620d5dd3 2155 - RNCAsyncStorage: a927b768986f83467b635cf6d7559e6edb46db7a 2156 - RNReanimated: 53575312d5d5096bcd7f29a59be496b78641bfaa 2157 - RNScreens: 27587018b2e6082f5172b1ecf158c14a0e8842d6 2158 - RNSVG: 536cd3c866c878faf72beaba166c8b02fe2b762b 2159 - SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748 2160 - Yoga: fcc198acd4a55599b3468cfb6ebc526baff5f06e 2161 - 2162 - PODFILE CHECKSUM: b88105215d90ecaa4e7c01b50111730358240c38 2163 - 2164 - COCOAPODS: 1.16.2
-6
apps/amethyst/ios/Podfile.properties.json
··· 1 - { 2 - "expo.jsEngine": "hermes", 3 - "EX_DEV_CLIENT_NETWORK_INSPECTOR": "true", 4 - "newArchEnabled": "true", 5 - "expo.sqlite.useSQLCipher": "true" 6 - }
-7
apps/amethyst/ios/amethyst/AppDelegate.h
··· 1 - #import <RCTAppDelegate.h> 2 - #import <UIKit/UIKit.h> 3 - #import <Expo/Expo.h> 4 - 5 - @interface AppDelegate : EXAppDelegateWrapper 6 - 7 - @end
-62
apps/amethyst/ios/amethyst/AppDelegate.mm
··· 1 - #import "AppDelegate.h" 2 - 3 - #import <React/RCTBundleURLProvider.h> 4 - #import <React/RCTLinkingManager.h> 5 - 6 - @implementation AppDelegate 7 - 8 - - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 9 - { 10 - self.moduleName = @"main"; 11 - 12 - // You can add your custom initial props in the dictionary below. 13 - // They will be passed down to the ViewController used by React Native. 14 - self.initialProps = @{}; 15 - 16 - return [super application:application didFinishLaunchingWithOptions:launchOptions]; 17 - } 18 - 19 - - (NSURL *)sourceURLForBridge:(RCTBridge *)bridge 20 - { 21 - return [self bundleURL]; 22 - } 23 - 24 - - (NSURL *)bundleURL 25 - { 26 - #if DEBUG 27 - return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@".expo/.virtual-metro-entry"]; 28 - #else 29 - return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"]; 30 - #endif 31 - } 32 - 33 - // Linking API 34 - - (BOOL)application:(UIApplication *)application openURL:(NSURL *)url options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options { 35 - return [super application:application openURL:url options:options] || [RCTLinkingManager application:application openURL:url options:options]; 36 - } 37 - 38 - // Universal Links 39 - - (BOOL)application:(UIApplication *)application continueUserActivity:(nonnull NSUserActivity *)userActivity restorationHandler:(nonnull void (^)(NSArray<id<UIUserActivityRestoring>> * _Nullable))restorationHandler { 40 - BOOL result = [RCTLinkingManager application:application continueUserActivity:userActivity restorationHandler:restorationHandler]; 41 - return [super application:application continueUserActivity:userActivity restorationHandler:restorationHandler] || result; 42 - } 43 - 44 - // Explicitly define remote notification delegates to ensure compatibility with some third-party libraries 45 - - (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken 46 - { 47 - return [super application:application didRegisterForRemoteNotificationsWithDeviceToken:deviceToken]; 48 - } 49 - 50 - // Explicitly define remote notification delegates to ensure compatibility with some third-party libraries 51 - - (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error 52 - { 53 - return [super application:application didFailToRegisterForRemoteNotificationsWithError:error]; 54 - } 55 - 56 - // Explicitly define remote notification delegates to ensure compatibility with some third-party libraries 57 - - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler 58 - { 59 - return [super application:application didReceiveRemoteNotification:userInfo fetchCompletionHandler:completionHandler]; 60 - } 61 - 62 - @end
apps/amethyst/ios/amethyst/Images.xcassets/AppIcon.appiconset/App-Icon-1024x1024@1x.png

This is a binary file and will not be displayed.

-14
apps/amethyst/ios/amethyst/Images.xcassets/AppIcon.appiconset/Contents.json
··· 1 - { 2 - "images": [ 3 - { 4 - "filename": "App-Icon-1024x1024@1x.png", 5 - "idiom": "universal", 6 - "platform": "ios", 7 - "size": "1024x1024" 8 - } 9 - ], 10 - "info": { 11 - "version": 1, 12 - "author": "expo" 13 - } 14 - }
-6
apps/amethyst/ios/amethyst/Images.xcassets/Contents.json
··· 1 - { 2 - "info": { 3 - "version": 1, 4 - "author": "expo" 5 - } 6 - }
-20
apps/amethyst/ios/amethyst/Images.xcassets/SplashScreenBackground.colorset/Contents.json
··· 1 - { 2 - "colors": [ 3 - { 4 - "color": { 5 - "components": { 6 - "alpha": "1.000", 7 - "blue": "1.00000000000000", 8 - "green": "1.00000000000000", 9 - "red": "1.00000000000000" 10 - }, 11 - "color-space": "srgb" 12 - }, 13 - "idiom": "universal" 14 - } 15 - ], 16 - "info": { 17 - "version": 1, 18 - "author": "expo" 19 - } 20 - }
-41
apps/amethyst/ios/amethyst/Images.xcassets/SplashScreenLogo.imageset/Contents.json
··· 1 - { 2 - "images": [ 3 - { 4 - "idiom": "universal", 5 - "appearances": [ 6 - { 7 - "appearance": "luminosity", 8 - "value": "light" 9 - } 10 - ], 11 - "filename": "image.png", 12 - "scale": "1x" 13 - }, 14 - { 15 - "idiom": "universal", 16 - "appearances": [ 17 - { 18 - "appearance": "luminosity", 19 - "value": "light" 20 - } 21 - ], 22 - "filename": "image@2x.png", 23 - "scale": "2x" 24 - }, 25 - { 26 - "idiom": "universal", 27 - "appearances": [ 28 - { 29 - "appearance": "luminosity", 30 - "value": "light" 31 - } 32 - ], 33 - "filename": "image@3x.png", 34 - "scale": "3x" 35 - } 36 - ], 37 - "info": { 38 - "version": 1, 39 - "author": "expo" 40 - } 41 - }
apps/amethyst/ios/amethyst/Images.xcassets/SplashScreenLogo.imageset/image.png

This is a binary file and will not be displayed.

apps/amethyst/ios/amethyst/Images.xcassets/SplashScreenLogo.imageset/image@2x.png

This is a binary file and will not be displayed.

apps/amethyst/ios/amethyst/Images.xcassets/SplashScreenLogo.imageset/image@3x.png

This is a binary file and will not be displayed.

-75
apps/amethyst/ios/amethyst/Info.plist
··· 1 - <?xml version="1.0" encoding="UTF-8"?> 2 - <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> 3 - <plist version="1.0"> 4 - <dict> 5 - <key>CADisableMinimumFrameDurationOnPhone</key> 6 - <true/> 7 - <key>CFBundleDevelopmentRegion</key> 8 - <string>$(DEVELOPMENT_LANGUAGE)</string> 9 - <key>CFBundleDisplayName</key> 10 - <string>amethyst</string> 11 - <key>CFBundleExecutable</key> 12 - <string>$(EXECUTABLE_NAME)</string> 13 - <key>CFBundleIdentifier</key> 14 - <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string> 15 - <key>CFBundleInfoDictionaryVersion</key> 16 - <string>6.0</string> 17 - <key>CFBundleName</key> 18 - <string>$(PRODUCT_NAME)</string> 19 - <key>CFBundlePackageType</key> 20 - <string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string> 21 - <key>CFBundleShortVersionString</key> 22 - <string>1.0.0</string> 23 - <key>CFBundleSignature</key> 24 - <string>????</string> 25 - <key>CFBundleURLTypes</key> 26 - <array> 27 - <dict> 28 - <key>CFBundleURLSchemes</key> 29 - <array> 30 - <string>fm.teal.amethyst</string> 31 - <string>fm.teal.amethyst</string> 32 - </array> 33 - </dict> 34 - </array> 35 - <key>CFBundleVersion</key> 36 - <string>1</string> 37 - <key>LSMinimumSystemVersion</key> 38 - <string>12.0</string> 39 - <key>LSRequiresIPhoneOS</key> 40 - <true/> 41 - <key>NSAppTransportSecurity</key> 42 - <dict> 43 - <key>NSAllowsArbitraryLoads</key> 44 - <false/> 45 - <key>NSAllowsLocalNetworking</key> 46 - <true/> 47 - </dict> 48 - <key>UILaunchStoryboardName</key> 49 - <string>SplashScreen</string> 50 - <key>UIRequiredDeviceCapabilities</key> 51 - <array> 52 - <string>arm64</string> 53 - </array> 54 - <key>UIRequiresFullScreen</key> 55 - <false/> 56 - <key>UIStatusBarStyle</key> 57 - <string>UIStatusBarStyleDefault</string> 58 - <key>UISupportedInterfaceOrientations</key> 59 - <array> 60 - <string>UIInterfaceOrientationPortrait</string> 61 - <string>UIInterfaceOrientationPortraitUpsideDown</string> 62 - </array> 63 - <key>UISupportedInterfaceOrientations~ipad</key> 64 - <array> 65 - <string>UIInterfaceOrientationPortrait</string> 66 - <string>UIInterfaceOrientationPortraitUpsideDown</string> 67 - <string>UIInterfaceOrientationLandscapeLeft</string> 68 - <string>UIInterfaceOrientationLandscapeRight</string> 69 - </array> 70 - <key>UIUserInterfaceStyle</key> 71 - <string>Automatic</string> 72 - <key>UIViewControllerBasedStatusBarAppearance</key> 73 - <false/> 74 - </dict> 75 - </plist>
-48
apps/amethyst/ios/amethyst/PrivacyInfo.xcprivacy
··· 1 - <?xml version="1.0" encoding="UTF-8"?> 2 - <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> 3 - <plist version="1.0"> 4 - <dict> 5 - <key>NSPrivacyAccessedAPITypes</key> 6 - <array> 7 - <dict> 8 - <key>NSPrivacyAccessedAPIType</key> 9 - <string>NSPrivacyAccessedAPICategoryUserDefaults</string> 10 - <key>NSPrivacyAccessedAPITypeReasons</key> 11 - <array> 12 - <string>CA92.1</string> 13 - </array> 14 - </dict> 15 - <dict> 16 - <key>NSPrivacyAccessedAPIType</key> 17 - <string>NSPrivacyAccessedAPICategoryFileTimestamp</string> 18 - <key>NSPrivacyAccessedAPITypeReasons</key> 19 - <array> 20 - <string>0A2A.1</string> 21 - <string>3B52.1</string> 22 - <string>C617.1</string> 23 - </array> 24 - </dict> 25 - <dict> 26 - <key>NSPrivacyAccessedAPIType</key> 27 - <string>NSPrivacyAccessedAPICategoryDiskSpace</string> 28 - <key>NSPrivacyAccessedAPITypeReasons</key> 29 - <array> 30 - <string>E174.1</string> 31 - <string>85F4.1</string> 32 - </array> 33 - </dict> 34 - <dict> 35 - <key>NSPrivacyAccessedAPIType</key> 36 - <string>NSPrivacyAccessedAPICategorySystemBootTime</string> 37 - <key>NSPrivacyAccessedAPITypeReasons</key> 38 - <array> 39 - <string>35F9.1</string> 40 - </array> 41 - </dict> 42 - </array> 43 - <key>NSPrivacyCollectedDataTypes</key> 44 - <array/> 45 - <key>NSPrivacyTracking</key> 46 - <false/> 47 - </dict> 48 - </plist>
-44
apps/amethyst/ios/amethyst/SplashScreen.storyboard
··· 1 - <?xml version="1.0" encoding="UTF-8"?> 2 - <document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="32700.99.1234" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="EXPO-VIEWCONTROLLER-1"> 3 - <device id="retina6_12" orientation="portrait" appearance="light"/> 4 - <dependencies> 5 - <deployment identifier="iOS"/> 6 - <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="22685"/> 7 - <capability name="Named colors" minToolsVersion="9.0"/> 8 - <capability name="Safe area layout guides" minToolsVersion="9.0"/> 9 - <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/> 10 - </dependencies> 11 - <scenes> 12 - <scene sceneID="EXPO-SCENE-1"> 13 - <objects> 14 - <viewController storyboardIdentifier="SplashScreenViewController" id="EXPO-VIEWCONTROLLER-1" sceneMemberID="viewController"> 15 - <view key="view" userInteractionEnabled="NO" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" id="EXPO-ContainerView" userLabel="ContainerView"> 16 - <rect key="frame" x="0.0" y="0.0" width="393" height="852"/> 17 - <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> 18 - <subviews> 19 - <imageView id="EXPO-SplashScreen" userLabel="SplashScreenLogo" image="SplashScreenLogo" contentMode="scaleAspectFit" clipsSubviews="true" userInteractionEnabled="false" translatesAutoresizingMaskIntoConstraints="false"> 20 - <rect key="frame" x="0" y="0" width="414" height="736"/> 21 - </imageView> 22 - </subviews> 23 - <viewLayoutGuide key="safeArea" id="Rmq-lb-GrQ"/> 24 - <constraints> 25 - <constraint firstItem="EXPO-SplashScreen" firstAttribute="top" secondItem="EXPO-ContainerView" secondAttribute="top" id="83fcb9b545b870ba44c24f0feeb116490c499c52"/> 26 - <constraint firstItem="EXPO-SplashScreen" firstAttribute="leading" secondItem="EXPO-ContainerView" secondAttribute="leading" id="61d16215e44b98e39d0a2c74fdbfaaa22601b12c"/> 27 - <constraint firstItem="EXPO-SplashScreen" firstAttribute="trailing" secondItem="EXPO-ContainerView" secondAttribute="trailing" id="f934da460e9ab5acae3ad9987d5b676a108796c1"/> 28 - <constraint firstItem="EXPO-SplashScreen" firstAttribute="bottom" secondItem="EXPO-ContainerView" secondAttribute="bottom" id="d6a0be88096b36fb132659aa90203d39139deda9"/> 29 - </constraints> 30 - <color key="backgroundColor" name="SplashScreenBackground"/> 31 - </view> 32 - </viewController> 33 - <placeholder placeholderIdentifier="IBFirstResponder" id="EXPO-PLACEHOLDER-1" userLabel="First Responder" sceneMemberID="firstResponder"/> 34 - </objects> 35 - <point key="canvasLocation" x="0.0" y="0.0"/> 36 - </scene> 37 - </scenes> 38 - <resources> 39 - <image name="SplashScreenLogo" width="414" height="736"/> 40 - <namedColor name="SplashScreenBackground"> 41 - <color alpha="1.000" blue="1.00000000000000" green="1.00000000000000" red="1.00000000000000" customColorSpace="sRGB" colorSpace="custom"/> 42 - </namedColor> 43 - </resources> 44 - </document>
-12
apps/amethyst/ios/amethyst/Supporting/Expo.plist
··· 1 - <?xml version="1.0" encoding="UTF-8"?> 2 - <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> 3 - <plist version="1.0"> 4 - <dict> 5 - <key>EXUpdatesCheckOnLaunch</key> 6 - <string>ALWAYS</string> 7 - <key>EXUpdatesEnabled</key> 8 - <false/> 9 - <key>EXUpdatesLaunchWaitMs</key> 10 - <integer>0</integer> 11 - </dict> 12 - </plist>
-3
apps/amethyst/ios/amethyst/amethyst-Bridging-Header.h
··· 1 - // 2 - // Use this file to import your target's public headers that you would like to expose to Swift. 3 - //
-5
apps/amethyst/ios/amethyst/amethyst.entitlements
··· 1 - <?xml version="1.0" encoding="UTF-8"?> 2 - <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> 3 - <plist version="1.0"> 4 - <dict/> 5 - </plist>
-10
apps/amethyst/ios/amethyst/main.m
··· 1 - #import <UIKit/UIKit.h> 2 - 3 - #import "AppDelegate.h" 4 - 5 - int main(int argc, char * argv[]) { 6 - @autoreleasepool { 7 - return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 8 - } 9 - } 10 -
-4
apps/amethyst/ios/amethyst/noop-file.swift
··· 1 - // 2 - // @generated 3 - // A blank Swift file must be created for native modules with Swift files to work correctly. 4 - //
-544
apps/amethyst/ios/amethyst.xcodeproj/project.pbxproj
··· 1 - // !$*UTF8*$! 2 - { 3 - archiveVersion = 1; 4 - classes = { 5 - }; 6 - objectVersion = 46; 7 - objects = { 8 - 9 - /* Begin PBXBuildFile section */ 10 - 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; }; 11 - 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 12 - 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 13 - 3E461D99554A48A4959DE609 /* SplashScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */; }; 14 - 77E69B64F83C470199FA6BFD /* noop-file.swift in Sources */ = {isa = PBXBuildFile; fileRef = F4766AAF53884444B9177E52 /* noop-file.swift */; }; 15 - 96905EF65AED1B983A6B3ABC /* libPods-amethyst.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 58EEBF8E8E6FB1BC6CAF49B5 /* libPods-amethyst.a */; }; 16 - A5A1D9F9D851B34594D8C445 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = DC2C06C758BFD7EBDC16CAC3 /* PrivacyInfo.xcprivacy */; }; 17 - B18059E884C0ABDD17F3DC3D /* ExpoModulesProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = FAC715A2D49A985799AEE119 /* ExpoModulesProvider.swift */; }; 18 - BB2F792D24A3F905000567C9 /* Expo.plist in Resources */ = {isa = PBXBuildFile; fileRef = BB2F792C24A3F905000567C9 /* Expo.plist */; }; 19 - /* End PBXBuildFile section */ 20 - 21 - /* Begin PBXFileReference section */ 22 - 13B07F961A680F5B00A75B9A /* amethyst.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = amethyst.app; sourceTree = BUILT_PRODUCTS_DIR; }; 23 - 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = amethyst/AppDelegate.h; sourceTree = "<group>"; }; 24 - 13B07FB01A68108700A75B9A /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = amethyst/AppDelegate.mm; sourceTree = "<group>"; }; 25 - 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = amethyst/Images.xcassets; sourceTree = "<group>"; }; 26 - 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = amethyst/Info.plist; sourceTree = "<group>"; }; 27 - 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = amethyst/main.m; sourceTree = "<group>"; }; 28 - 58EEBF8E8E6FB1BC6CAF49B5 /* libPods-amethyst.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-amethyst.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 29 - 62E630185CAF45FBA8505D7F /* amethyst-Bridging-Header.h */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 4; includeInIndex = 0; lastKnownFileType = sourcecode.c.h; name = "amethyst-Bridging-Header.h"; path = "amethyst/amethyst-Bridging-Header.h"; sourceTree = "<group>"; }; 30 - 6C2E3173556A471DD304B334 /* Pods-amethyst.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-amethyst.debug.xcconfig"; path = "Target Support Files/Pods-amethyst/Pods-amethyst.debug.xcconfig"; sourceTree = "<group>"; }; 31 - 7A4D352CD337FB3A3BF06240 /* Pods-amethyst.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-amethyst.release.xcconfig"; path = "Target Support Files/Pods-amethyst/Pods-amethyst.release.xcconfig"; sourceTree = "<group>"; }; 32 - AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = SplashScreen.storyboard; path = amethyst/SplashScreen.storyboard; sourceTree = "<group>"; }; 33 - BB2F792C24A3F905000567C9 /* Expo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Expo.plist; sourceTree = "<group>"; }; 34 - DC2C06C758BFD7EBDC16CAC3 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = amethyst/PrivacyInfo.xcprivacy; sourceTree = "<group>"; }; 35 - ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; }; 36 - F4766AAF53884444B9177E52 /* noop-file.swift */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 4; includeInIndex = 0; lastKnownFileType = sourcecode.swift; name = "noop-file.swift"; path = "amethyst/noop-file.swift"; sourceTree = "<group>"; }; 37 - FAC715A2D49A985799AEE119 /* ExpoModulesProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExpoModulesProvider.swift; path = "Pods/Target Support Files/Pods-amethyst/ExpoModulesProvider.swift"; sourceTree = "<group>"; }; 38 - /* End PBXFileReference section */ 39 - 40 - /* Begin PBXFrameworksBuildPhase section */ 41 - 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 42 - isa = PBXFrameworksBuildPhase; 43 - buildActionMask = 2147483647; 44 - files = ( 45 - 96905EF65AED1B983A6B3ABC /* libPods-amethyst.a in Frameworks */, 46 - ); 47 - runOnlyForDeploymentPostprocessing = 0; 48 - }; 49 - /* End PBXFrameworksBuildPhase section */ 50 - 51 - /* Begin PBXGroup section */ 52 - 13B07FAE1A68108700A75B9A /* amethyst */ = { 53 - isa = PBXGroup; 54 - children = ( 55 - BB2F792B24A3F905000567C9 /* Supporting */, 56 - 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 57 - 13B07FB01A68108700A75B9A /* AppDelegate.mm */, 58 - 13B07FB51A68108700A75B9A /* Images.xcassets */, 59 - 13B07FB61A68108700A75B9A /* Info.plist */, 60 - 13B07FB71A68108700A75B9A /* main.m */, 61 - AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */, 62 - F4766AAF53884444B9177E52 /* noop-file.swift */, 63 - 62E630185CAF45FBA8505D7F /* amethyst-Bridging-Header.h */, 64 - DC2C06C758BFD7EBDC16CAC3 /* PrivacyInfo.xcprivacy */, 65 - ); 66 - name = amethyst; 67 - sourceTree = "<group>"; 68 - }; 69 - 2D16E6871FA4F8E400B85C8A /* Frameworks */ = { 70 - isa = PBXGroup; 71 - children = ( 72 - ED297162215061F000B7C4FE /* JavaScriptCore.framework */, 73 - 58EEBF8E8E6FB1BC6CAF49B5 /* libPods-amethyst.a */, 74 - ); 75 - name = Frameworks; 76 - sourceTree = "<group>"; 77 - }; 78 - 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 79 - isa = PBXGroup; 80 - children = ( 81 - ); 82 - name = Libraries; 83 - sourceTree = "<group>"; 84 - }; 85 - 83CBB9F61A601CBA00E9B192 = { 86 - isa = PBXGroup; 87 - children = ( 88 - 13B07FAE1A68108700A75B9A /* amethyst */, 89 - 832341AE1AAA6A7D00B99B32 /* Libraries */, 90 - 83CBBA001A601CBA00E9B192 /* Products */, 91 - 2D16E6871FA4F8E400B85C8A /* Frameworks */, 92 - D65327D7A22EEC0BE12398D9 /* Pods */, 93 - D7E4C46ADA2E9064B798F356 /* ExpoModulesProviders */, 94 - ); 95 - indentWidth = 2; 96 - sourceTree = "<group>"; 97 - tabWidth = 2; 98 - usesTabs = 0; 99 - }; 100 - 83CBBA001A601CBA00E9B192 /* Products */ = { 101 - isa = PBXGroup; 102 - children = ( 103 - 13B07F961A680F5B00A75B9A /* amethyst.app */, 104 - ); 105 - name = Products; 106 - sourceTree = "<group>"; 107 - }; 108 - 92DBD88DE9BF7D494EA9DA96 /* amethyst */ = { 109 - isa = PBXGroup; 110 - children = ( 111 - FAC715A2D49A985799AEE119 /* ExpoModulesProvider.swift */, 112 - ); 113 - name = amethyst; 114 - sourceTree = "<group>"; 115 - }; 116 - BB2F792B24A3F905000567C9 /* Supporting */ = { 117 - isa = PBXGroup; 118 - children = ( 119 - BB2F792C24A3F905000567C9 /* Expo.plist */, 120 - ); 121 - name = Supporting; 122 - path = amethyst/Supporting; 123 - sourceTree = "<group>"; 124 - }; 125 - D65327D7A22EEC0BE12398D9 /* Pods */ = { 126 - isa = PBXGroup; 127 - children = ( 128 - 6C2E3173556A471DD304B334 /* Pods-amethyst.debug.xcconfig */, 129 - 7A4D352CD337FB3A3BF06240 /* Pods-amethyst.release.xcconfig */, 130 - ); 131 - path = Pods; 132 - sourceTree = "<group>"; 133 - }; 134 - D7E4C46ADA2E9064B798F356 /* ExpoModulesProviders */ = { 135 - isa = PBXGroup; 136 - children = ( 137 - 92DBD88DE9BF7D494EA9DA96 /* amethyst */, 138 - ); 139 - name = ExpoModulesProviders; 140 - sourceTree = "<group>"; 141 - }; 142 - /* End PBXGroup section */ 143 - 144 - /* Begin PBXNativeTarget section */ 145 - 13B07F861A680F5B00A75B9A /* amethyst */ = { 146 - isa = PBXNativeTarget; 147 - buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "amethyst" */; 148 - buildPhases = ( 149 - 08A4A3CD28434E44B6B9DE2E /* [CP] Check Pods Manifest.lock */, 150 - 9D6CBCDD973B9B3A46F3921B /* [Expo] Configure project */, 151 - 13B07F871A680F5B00A75B9A /* Sources */, 152 - 13B07F8C1A680F5B00A75B9A /* Frameworks */, 153 - 13B07F8E1A680F5B00A75B9A /* Resources */, 154 - 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 155 - 800E24972A6A228C8D4807E9 /* [CP] Copy Pods Resources */, 156 - EAC8C70F66234A96095290E7 /* [CP] Embed Pods Frameworks */, 157 - ); 158 - buildRules = ( 159 - ); 160 - dependencies = ( 161 - ); 162 - name = amethyst; 163 - productName = amethyst; 164 - productReference = 13B07F961A680F5B00A75B9A /* amethyst.app */; 165 - productType = "com.apple.product-type.application"; 166 - }; 167 - /* End PBXNativeTarget section */ 168 - 169 - /* Begin PBXProject section */ 170 - 83CBB9F71A601CBA00E9B192 /* Project object */ = { 171 - isa = PBXProject; 172 - attributes = { 173 - LastUpgradeCheck = 1130; 174 - TargetAttributes = { 175 - 13B07F861A680F5B00A75B9A = { 176 - LastSwiftMigration = 1250; 177 - }; 178 - }; 179 - }; 180 - buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "amethyst" */; 181 - compatibilityVersion = "Xcode 3.2"; 182 - developmentRegion = en; 183 - hasScannedForEncodings = 0; 184 - knownRegions = ( 185 - en, 186 - Base, 187 - ); 188 - mainGroup = 83CBB9F61A601CBA00E9B192; 189 - productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 190 - projectDirPath = ""; 191 - projectRoot = ""; 192 - targets = ( 193 - 13B07F861A680F5B00A75B9A /* amethyst */, 194 - ); 195 - }; 196 - /* End PBXProject section */ 197 - 198 - /* Begin PBXResourcesBuildPhase section */ 199 - 13B07F8E1A680F5B00A75B9A /* Resources */ = { 200 - isa = PBXResourcesBuildPhase; 201 - buildActionMask = 2147483647; 202 - files = ( 203 - BB2F792D24A3F905000567C9 /* Expo.plist in Resources */, 204 - 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 205 - 3E461D99554A48A4959DE609 /* SplashScreen.storyboard in Resources */, 206 - A5A1D9F9D851B34594D8C445 /* PrivacyInfo.xcprivacy in Resources */, 207 - ); 208 - runOnlyForDeploymentPostprocessing = 0; 209 - }; 210 - /* End PBXResourcesBuildPhase section */ 211 - 212 - /* Begin PBXShellScriptBuildPhase section */ 213 - 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 214 - isa = PBXShellScriptBuildPhase; 215 - alwaysOutOfDate = 1; 216 - buildActionMask = 2147483647; 217 - files = ( 218 - ); 219 - inputPaths = ( 220 - ); 221 - name = "Bundle React Native code and images"; 222 - outputPaths = ( 223 - ); 224 - runOnlyForDeploymentPostprocessing = 0; 225 - shellPath = /bin/sh; 226 - shellScript = "if [[ -f \"$PODS_ROOT/../.xcode.env\" ]]; then\n source \"$PODS_ROOT/../.xcode.env\"\nfi\nif [[ -f \"$PODS_ROOT/../.xcode.env.local\" ]]; then\n source \"$PODS_ROOT/../.xcode.env.local\"\nfi\n\n# The project root by default is one level up from the ios directory\nexport PROJECT_ROOT=\"$PROJECT_DIR\"/..\n\nif [[ \"$CONFIGURATION\" = *Debug* ]]; then\n export SKIP_BUNDLING=1\nfi\nif [[ -z \"$ENTRY_FILE\" ]]; then\n # Set the entry JS file using the bundler's entry resolution.\n export ENTRY_FILE=\"$(\"$NODE_BINARY\" -e \"require('expo/scripts/resolveAppEntry')\" \"$PROJECT_ROOT\" ios absolute | tail -n 1)\"\nfi\n\nif [[ -z \"$CLI_PATH\" ]]; then\n # Use Expo CLI\n export CLI_PATH=\"$(\"$NODE_BINARY\" --print \"require.resolve('@expo/cli', { paths: [require.resolve('expo/package.json')] })\")\"\nfi\nif [[ -z \"$BUNDLE_COMMAND\" ]]; then\n # Default Expo CLI command for bundling\n export BUNDLE_COMMAND=\"export:embed\"\nfi\n\n# Source .xcode.env.updates if it exists to allow\n# SKIP_BUNDLING to be unset if needed\nif [[ -f \"$PODS_ROOT/../.xcode.env.updates\" ]]; then\n source \"$PODS_ROOT/../.xcode.env.updates\"\nfi\n# Source local changes to allow overrides\n# if needed\nif [[ -f \"$PODS_ROOT/../.xcode.env.local\" ]]; then\n source \"$PODS_ROOT/../.xcode.env.local\"\nfi\n\n`\"$NODE_BINARY\" --print \"require('path').dirname(require.resolve('react-native/package.json')) + '/scripts/react-native-xcode.sh'\"`\n\n"; 227 - }; 228 - 08A4A3CD28434E44B6B9DE2E /* [CP] Check Pods Manifest.lock */ = { 229 - isa = PBXShellScriptBuildPhase; 230 - buildActionMask = 2147483647; 231 - files = ( 232 - ); 233 - inputFileListPaths = ( 234 - ); 235 - inputPaths = ( 236 - "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 237 - "${PODS_ROOT}/Manifest.lock", 238 - ); 239 - name = "[CP] Check Pods Manifest.lock"; 240 - outputFileListPaths = ( 241 - ); 242 - outputPaths = ( 243 - "$(DERIVED_FILE_DIR)/Pods-amethyst-checkManifestLockResult.txt", 244 - ); 245 - runOnlyForDeploymentPostprocessing = 0; 246 - shellPath = /bin/sh; 247 - shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 248 - showEnvVarsInLog = 0; 249 - }; 250 - 800E24972A6A228C8D4807E9 /* [CP] Copy Pods Resources */ = { 251 - isa = PBXShellScriptBuildPhase; 252 - buildActionMask = 2147483647; 253 - files = ( 254 - ); 255 - inputPaths = ( 256 - "${PODS_ROOT}/Target Support Files/Pods-amethyst/Pods-amethyst-resources.sh", 257 - "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants/EXConstants.bundle", 258 - "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants/ExpoConstants_privacy.bundle", 259 - "${PODS_CONFIGURATION_BUILD_DIR}/ExpoFileSystem/ExpoFileSystem_privacy.bundle", 260 - "${PODS_CONFIGURATION_BUILD_DIR}/ExpoSystemUI/ExpoSystemUI_privacy.bundle", 261 - "${PODS_CONFIGURATION_BUILD_DIR}/RCT-Folly/RCT-Folly_privacy.bundle", 262 - "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage/RNCAsyncStorage_resources.bundle", 263 - "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/React-Core_privacy.bundle", 264 - "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact/React-cxxreact_privacy.bundle", 265 - "${PODS_CONFIGURATION_BUILD_DIR}/boost/boost_privacy.bundle", 266 - "${PODS_CONFIGURATION_BUILD_DIR}/glog/glog_privacy.bundle", 267 - ); 268 - name = "[CP] Copy Pods Resources"; 269 - outputPaths = ( 270 - "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EXConstants.bundle", 271 - "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/ExpoConstants_privacy.bundle", 272 - "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/ExpoFileSystem_privacy.bundle", 273 - "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/ExpoSystemUI_privacy.bundle", 274 - "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RCT-Folly_privacy.bundle", 275 - "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RNCAsyncStorage_resources.bundle", 276 - "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/React-Core_privacy.bundle", 277 - "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/React-cxxreact_privacy.bundle", 278 - "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/boost_privacy.bundle", 279 - "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/glog_privacy.bundle", 280 - ); 281 - runOnlyForDeploymentPostprocessing = 0; 282 - shellPath = /bin/sh; 283 - shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-amethyst/Pods-amethyst-resources.sh\"\n"; 284 - showEnvVarsInLog = 0; 285 - }; 286 - 9D6CBCDD973B9B3A46F3921B /* [Expo] Configure project */ = { 287 - isa = PBXShellScriptBuildPhase; 288 - alwaysOutOfDate = 1; 289 - buildActionMask = 2147483647; 290 - files = ( 291 - ); 292 - inputFileListPaths = ( 293 - ); 294 - inputPaths = ( 295 - ); 296 - name = "[Expo] Configure project"; 297 - outputFileListPaths = ( 298 - ); 299 - outputPaths = ( 300 - ); 301 - runOnlyForDeploymentPostprocessing = 0; 302 - shellPath = /bin/sh; 303 - shellScript = "# This script configures Expo modules and generates the modules provider file.\nbash -l -c \"./Pods/Target\\ Support\\ Files/Pods-amethyst/expo-configure-project.sh\"\n"; 304 - }; 305 - EAC8C70F66234A96095290E7 /* [CP] Embed Pods Frameworks */ = { 306 - isa = PBXShellScriptBuildPhase; 307 - buildActionMask = 2147483647; 308 - files = ( 309 - ); 310 - inputPaths = ( 311 - "${PODS_ROOT}/Target Support Files/Pods-amethyst/Pods-amethyst-frameworks.sh", 312 - "${PODS_XCFRAMEWORKS_BUILD_DIR}/ExpoSQLite/crsqlite.framework/crsqlite", 313 - "${PODS_XCFRAMEWORKS_BUILD_DIR}/hermes-engine/Pre-built/hermes.framework/hermes", 314 - ); 315 - name = "[CP] Embed Pods Frameworks"; 316 - outputPaths = ( 317 - "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/crsqlite.framework", 318 - "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/hermes.framework", 319 - ); 320 - runOnlyForDeploymentPostprocessing = 0; 321 - shellPath = /bin/sh; 322 - shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-amethyst/Pods-amethyst-frameworks.sh\"\n"; 323 - showEnvVarsInLog = 0; 324 - }; 325 - /* End PBXShellScriptBuildPhase section */ 326 - 327 - /* Begin PBXSourcesBuildPhase section */ 328 - 13B07F871A680F5B00A75B9A /* Sources */ = { 329 - isa = PBXSourcesBuildPhase; 330 - buildActionMask = 2147483647; 331 - files = ( 332 - 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */, 333 - 13B07FC11A68108700A75B9A /* main.m in Sources */, 334 - B18059E884C0ABDD17F3DC3D /* ExpoModulesProvider.swift in Sources */, 335 - 77E69B64F83C470199FA6BFD /* noop-file.swift in Sources */, 336 - ); 337 - runOnlyForDeploymentPostprocessing = 0; 338 - }; 339 - /* End PBXSourcesBuildPhase section */ 340 - 341 - /* Begin XCBuildConfiguration section */ 342 - 13B07F941A680F5B00A75B9A /* Debug */ = { 343 - isa = XCBuildConfiguration; 344 - baseConfigurationReference = 6C2E3173556A471DD304B334 /* Pods-amethyst.debug.xcconfig */; 345 - buildSettings = { 346 - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 347 - CLANG_ENABLE_MODULES = YES; 348 - CODE_SIGN_ENTITLEMENTS = amethyst/amethyst.entitlements; 349 - CURRENT_PROJECT_VERSION = 1; 350 - ENABLE_BITCODE = NO; 351 - GCC_PREPROCESSOR_DEFINITIONS = ( 352 - "$(inherited)", 353 - "FB_SONARKIT_ENABLED=1", 354 - ); 355 - INFOPLIST_FILE = amethyst/Info.plist; 356 - IPHONEOS_DEPLOYMENT_TARGET = 15.1; 357 - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 358 - MARKETING_VERSION = 1.0; 359 - OTHER_LDFLAGS = ( 360 - "$(inherited)", 361 - "-ObjC", 362 - "-lc++", 363 - ); 364 - OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_DEBUG"; 365 - PRODUCT_BUNDLE_IDENTIFIER = fm.teal.amethyst; 366 - PRODUCT_NAME = amethyst; 367 - SWIFT_OBJC_BRIDGING_HEADER = "amethyst/amethyst-Bridging-Header.h"; 368 - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 369 - SWIFT_VERSION = 5.0; 370 - TARGETED_DEVICE_FAMILY = "1,2"; 371 - VERSIONING_SYSTEM = "apple-generic"; 372 - }; 373 - name = Debug; 374 - }; 375 - 13B07F951A680F5B00A75B9A /* Release */ = { 376 - isa = XCBuildConfiguration; 377 - baseConfigurationReference = 7A4D352CD337FB3A3BF06240 /* Pods-amethyst.release.xcconfig */; 378 - buildSettings = { 379 - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 380 - CLANG_ENABLE_MODULES = YES; 381 - CODE_SIGN_ENTITLEMENTS = amethyst/amethyst.entitlements; 382 - CURRENT_PROJECT_VERSION = 1; 383 - INFOPLIST_FILE = amethyst/Info.plist; 384 - IPHONEOS_DEPLOYMENT_TARGET = 15.1; 385 - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 386 - MARKETING_VERSION = 1.0; 387 - OTHER_LDFLAGS = ( 388 - "$(inherited)", 389 - "-ObjC", 390 - "-lc++", 391 - ); 392 - OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_RELEASE"; 393 - PRODUCT_BUNDLE_IDENTIFIER = fm.teal.amethyst; 394 - PRODUCT_NAME = amethyst; 395 - SWIFT_OBJC_BRIDGING_HEADER = "amethyst/amethyst-Bridging-Header.h"; 396 - SWIFT_VERSION = 5.0; 397 - TARGETED_DEVICE_FAMILY = "1,2"; 398 - VERSIONING_SYSTEM = "apple-generic"; 399 - }; 400 - name = Release; 401 - }; 402 - 83CBBA201A601CBA00E9B192 /* Debug */ = { 403 - isa = XCBuildConfiguration; 404 - buildSettings = { 405 - ALWAYS_SEARCH_USER_PATHS = NO; 406 - CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 407 - CLANG_CXX_LANGUAGE_STANDARD = "c++20"; 408 - CLANG_CXX_LIBRARY = "libc++"; 409 - CLANG_ENABLE_MODULES = YES; 410 - CLANG_ENABLE_OBJC_ARC = YES; 411 - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 412 - CLANG_WARN_BOOL_CONVERSION = YES; 413 - CLANG_WARN_COMMA = YES; 414 - CLANG_WARN_CONSTANT_CONVERSION = YES; 415 - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 416 - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 417 - CLANG_WARN_EMPTY_BODY = YES; 418 - CLANG_WARN_ENUM_CONVERSION = YES; 419 - CLANG_WARN_INFINITE_RECURSION = YES; 420 - CLANG_WARN_INT_CONVERSION = YES; 421 - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 422 - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 423 - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 424 - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 425 - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 426 - CLANG_WARN_STRICT_PROTOTYPES = YES; 427 - CLANG_WARN_SUSPICIOUS_MOVE = YES; 428 - CLANG_WARN_UNREACHABLE_CODE = YES; 429 - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 430 - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 431 - COPY_PHASE_STRIP = NO; 432 - ENABLE_STRICT_OBJC_MSGSEND = YES; 433 - ENABLE_TESTABILITY = YES; 434 - GCC_C_LANGUAGE_STANDARD = gnu99; 435 - GCC_DYNAMIC_NO_PIC = NO; 436 - GCC_NO_COMMON_BLOCKS = YES; 437 - GCC_OPTIMIZATION_LEVEL = 0; 438 - GCC_PREPROCESSOR_DEFINITIONS = ( 439 - "DEBUG=1", 440 - "$(inherited)", 441 - ); 442 - GCC_SYMBOLS_PRIVATE_EXTERN = NO; 443 - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 444 - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 445 - GCC_WARN_UNDECLARED_SELECTOR = YES; 446 - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 447 - GCC_WARN_UNUSED_FUNCTION = YES; 448 - GCC_WARN_UNUSED_VARIABLE = YES; 449 - IPHONEOS_DEPLOYMENT_TARGET = 15.1; 450 - LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)"; 451 - LIBRARY_SEARCH_PATHS = "$(SDKROOT)/usr/lib/swift\"$(inherited)\""; 452 - MTL_ENABLE_DEBUG_INFO = YES; 453 - ONLY_ACTIVE_ARCH = YES; 454 - OTHER_LDFLAGS = ( 455 - "$(inherited)", 456 - " ", 457 - ); 458 - REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native"; 459 - SDKROOT = iphoneos; 460 - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG"; 461 - USE_HERMES = true; 462 - }; 463 - name = Debug; 464 - }; 465 - 83CBBA211A601CBA00E9B192 /* Release */ = { 466 - isa = XCBuildConfiguration; 467 - buildSettings = { 468 - ALWAYS_SEARCH_USER_PATHS = NO; 469 - CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 470 - CLANG_CXX_LANGUAGE_STANDARD = "c++20"; 471 - CLANG_CXX_LIBRARY = "libc++"; 472 - CLANG_ENABLE_MODULES = YES; 473 - CLANG_ENABLE_OBJC_ARC = YES; 474 - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 475 - CLANG_WARN_BOOL_CONVERSION = YES; 476 - CLANG_WARN_COMMA = YES; 477 - CLANG_WARN_CONSTANT_CONVERSION = YES; 478 - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 479 - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 480 - CLANG_WARN_EMPTY_BODY = YES; 481 - CLANG_WARN_ENUM_CONVERSION = YES; 482 - CLANG_WARN_INFINITE_RECURSION = YES; 483 - CLANG_WARN_INT_CONVERSION = YES; 484 - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 485 - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 486 - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 487 - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 488 - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 489 - CLANG_WARN_STRICT_PROTOTYPES = YES; 490 - CLANG_WARN_SUSPICIOUS_MOVE = YES; 491 - CLANG_WARN_UNREACHABLE_CODE = YES; 492 - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 493 - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 494 - COPY_PHASE_STRIP = YES; 495 - ENABLE_NS_ASSERTIONS = NO; 496 - ENABLE_STRICT_OBJC_MSGSEND = YES; 497 - GCC_C_LANGUAGE_STANDARD = gnu99; 498 - GCC_NO_COMMON_BLOCKS = YES; 499 - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 500 - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 501 - GCC_WARN_UNDECLARED_SELECTOR = YES; 502 - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 503 - GCC_WARN_UNUSED_FUNCTION = YES; 504 - GCC_WARN_UNUSED_VARIABLE = YES; 505 - IPHONEOS_DEPLOYMENT_TARGET = 15.1; 506 - LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)"; 507 - LIBRARY_SEARCH_PATHS = "$(SDKROOT)/usr/lib/swift\"$(inherited)\""; 508 - MTL_ENABLE_DEBUG_INFO = NO; 509 - OTHER_LDFLAGS = ( 510 - "$(inherited)", 511 - " ", 512 - ); 513 - REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native"; 514 - SDKROOT = iphoneos; 515 - USE_HERMES = true; 516 - VALIDATE_PRODUCT = YES; 517 - }; 518 - name = Release; 519 - }; 520 - /* End XCBuildConfiguration section */ 521 - 522 - /* Begin XCConfigurationList section */ 523 - 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "amethyst" */ = { 524 - isa = XCConfigurationList; 525 - buildConfigurations = ( 526 - 13B07F941A680F5B00A75B9A /* Debug */, 527 - 13B07F951A680F5B00A75B9A /* Release */, 528 - ); 529 - defaultConfigurationIsVisible = 0; 530 - defaultConfigurationName = Release; 531 - }; 532 - 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "amethyst" */ = { 533 - isa = XCConfigurationList; 534 - buildConfigurations = ( 535 - 83CBBA201A601CBA00E9B192 /* Debug */, 536 - 83CBBA211A601CBA00E9B192 /* Release */, 537 - ); 538 - defaultConfigurationIsVisible = 0; 539 - defaultConfigurationName = Release; 540 - }; 541 - /* End XCConfigurationList section */ 542 - }; 543 - rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 544 - }
-88
apps/amethyst/ios/amethyst.xcodeproj/xcshareddata/xcschemes/amethyst.xcscheme
··· 1 - <?xml version="1.0" encoding="UTF-8"?> 2 - <Scheme 3 - LastUpgradeVersion = "1130" 4 - version = "1.3"> 5 - <BuildAction 6 - parallelizeBuildables = "YES" 7 - buildImplicitDependencies = "YES"> 8 - <BuildActionEntries> 9 - <BuildActionEntry 10 - buildForTesting = "YES" 11 - buildForRunning = "YES" 12 - buildForProfiling = "YES" 13 - buildForArchiving = "YES" 14 - buildForAnalyzing = "YES"> 15 - <BuildableReference 16 - BuildableIdentifier = "primary" 17 - BlueprintIdentifier = "13B07F861A680F5B00A75B9A" 18 - BuildableName = "amethyst.app" 19 - BlueprintName = "amethyst" 20 - ReferencedContainer = "container:amethyst.xcodeproj"> 21 - </BuildableReference> 22 - </BuildActionEntry> 23 - </BuildActionEntries> 24 - </BuildAction> 25 - <TestAction 26 - buildConfiguration = "Debug" 27 - selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" 28 - selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" 29 - shouldUseLaunchSchemeArgsEnv = "YES"> 30 - <Testables> 31 - <TestableReference 32 - skipped = "NO"> 33 - <BuildableReference 34 - BuildableIdentifier = "primary" 35 - BlueprintIdentifier = "00E356ED1AD99517003FC87E" 36 - BuildableName = "amethystTests.xctest" 37 - BlueprintName = "amethystTests" 38 - ReferencedContainer = "container:amethyst.xcodeproj"> 39 - </BuildableReference> 40 - </TestableReference> 41 - </Testables> 42 - </TestAction> 43 - <LaunchAction 44 - buildConfiguration = "Debug" 45 - selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" 46 - selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" 47 - launchStyle = "0" 48 - useCustomWorkingDirectory = "NO" 49 - ignoresPersistentStateOnLaunch = "NO" 50 - debugDocumentVersioning = "YES" 51 - debugServiceExtension = "internal" 52 - allowLocationSimulation = "YES"> 53 - <BuildableProductRunnable 54 - runnableDebuggingMode = "0"> 55 - <BuildableReference 56 - BuildableIdentifier = "primary" 57 - BlueprintIdentifier = "13B07F861A680F5B00A75B9A" 58 - BuildableName = "amethyst.app" 59 - BlueprintName = "amethyst" 60 - ReferencedContainer = "container:amethyst.xcodeproj"> 61 - </BuildableReference> 62 - </BuildableProductRunnable> 63 - </LaunchAction> 64 - <ProfileAction 65 - buildConfiguration = "Release" 66 - shouldUseLaunchSchemeArgsEnv = "YES" 67 - savedToolIdentifier = "" 68 - useCustomWorkingDirectory = "NO" 69 - debugDocumentVersioning = "YES"> 70 - <BuildableProductRunnable 71 - runnableDebuggingMode = "0"> 72 - <BuildableReference 73 - BuildableIdentifier = "primary" 74 - BlueprintIdentifier = "13B07F861A680F5B00A75B9A" 75 - BuildableName = "amethyst.app" 76 - BlueprintName = "amethyst" 77 - ReferencedContainer = "container:amethyst.xcodeproj"> 78 - </BuildableReference> 79 - </BuildableProductRunnable> 80 - </ProfileAction> 81 - <AnalyzeAction 82 - buildConfiguration = "Debug"> 83 - </AnalyzeAction> 84 - <ArchiveAction 85 - buildConfiguration = "Release" 86 - revealArchiveInOrganizer = "YES"> 87 - </ArchiveAction> 88 - </Scheme>
-10
apps/amethyst/ios/amethyst.xcworkspace/contents.xcworkspacedata
··· 1 - <?xml version="1.0" encoding="UTF-8"?> 2 - <Workspace 3 - version = "1.0"> 4 - <FileRef 5 - location = "group:amethyst.xcodeproj"> 6 - </FileRef> 7 - <FileRef 8 - location = "group:Pods/Pods.xcodeproj"> 9 - </FileRef> 10 - </Workspace>
+1
apps/amethyst/jest-setup.ts
··· 1 + import "@testing-library/jest-native/extend-expect";
+48 -34
apps/amethyst/package.json
··· 11 11 "build": "expo export --output-dir ./build --platform all", 12 12 "build:web": "expo export --output-dir ./build --platform web --clear", 13 13 "build:ios": "expo export --output-dir ./build --platform ios --clear", 14 - "test": "jest --watchAll", 15 - "lexgen": "lex gen-server ./lexicons/generated/server/ ./lexicons/src/" 14 + "test": "jest", 15 + "lexgen": "lex gen-server ./lexicons/generated/server/ ./lexicons/src/", 16 + "install": "expo prebuild" 16 17 }, 17 18 "jest": { 18 - "preset": "jest-expo" 19 + "preset": "jest-expo", 20 + "setupFilesAfterEnv": [ 21 + "<rootDir>/jest-setup.ts" 22 + ], 23 + "transformIgnorePatterns": [ 24 + "node_modules/(?!((jest-)?react-native|@react-native(-community)?|expo(nent)?|@expo(nent)?/.*|@expo-google-fonts/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base|react-native-svg|@rn-primitives/.*))" 25 + ] 19 26 }, 20 27 "dependencies": { 21 28 "@aquareum/atproto-oauth-client-react-native": "^0.0.1", ··· 23 30 "@atproto/lex-cli": "^0.8.1", 24 31 "@atproto/oauth-client": "^0.3.16", 25 32 "@babel/plugin-transform-export-namespace-from": "^7.27.1", 26 - "@expo/vector-icons": "^14.1.0", 33 + "@expo/vector-icons": "^15.0.2", 27 34 "@gorhom/bottom-sheet": "^5.1.3", 28 - "@react-native-async-storage/async-storage": "2.1.2", 29 - "@react-native-picker/picker": "^2.11.0", 30 - "@react-navigation/native": "^7.1.8", 35 + "@react-native-async-storage/async-storage": "2.2.0", 36 + "@react-native-picker/picker": "^2.11.1", 37 + "@react-navigation/native": "^7.1.10", 31 38 "@rn-primitives/avatar": "^1.1.0", 32 39 "@rn-primitives/hover-card": "^1.1.0", 33 40 "@rn-primitives/portal": "^1.2.0", ··· 39 46 "class-variance-authority": "^0.7.1", 40 47 "clsx": "^2.1.1", 41 48 "eslint-plugin-react-compiler": "19.0.0-beta-37ed2a7-20241206", 42 - "expo": "~53.0.20", 43 - "expo-constants": "^17.1.6", 44 - "expo-font": "~13.3.1", 45 - "expo-image-picker": "^16.1.4", 46 - "expo-linking": "~7.1.4", 47 - "expo-router": "~5.0.6", 48 - "expo-splash-screen": "~0.30.8", 49 - "expo-sqlite": "^15.2.9", 50 - "expo-status-bar": "~2.2.3", 51 - "expo-system-ui": "~5.0.7", 52 - "expo-web-browser": "~14.1.6", 53 - "jest": "^30.2.0", 49 + "expo": "~54.0.12", 50 + "expo-constants": "^18.0.9", 51 + "expo-dev-client": "^6.0.13", 52 + "expo-font": "~14.0.8", 53 + "expo-image-picker": "^17.0.8", 54 + "expo-linking": "~8.0.8", 55 + "expo-router": "~6.0.10", 56 + "expo-splash-screen": "~31.0.10", 57 + "expo-sqlite": "^16.0.8", 58 + "expo-status-bar": "~3.0.8", 59 + "expo-system-ui": "~6.0.7", 60 + "expo-web-browser": "~15.0.8", 61 + "jest": "^29.7.0", 54 62 "lucide-react-native": "^0.507.0", 55 63 "nativewind": "^4.1.23", 56 - "react": "19.0.0", 64 + "react": "19.1.0", 57 65 "react-compiler-runtime": "19.0.0-beta-37ed2a7-20241206", 58 - "react-dom": "19.0.0", 59 - "react-native": "0.79.2", 66 + "react-dom": "19.1.0", 67 + "react-native": "0.81.4", 60 68 "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", 65 - "react-native-svg": "15.11.2", 66 - "react-native-web": "~0.20.0", 69 + "react-native-gesture-handler": "~2.28.0", 70 + "react-native-quick-crypto": "^0.7.17", 71 + "react-native-reanimated": "~4.1.2", 72 + "react-native-safe-area-context": "5.6.1", 73 + "react-native-screens": "~4.16.0", 74 + "react-native-svg": "15.12.1", 75 + "react-native-web": "~0.21.1", 67 76 "tailwind-merge": "^2.5.5", 68 77 "zustand": "^5.0.4" 69 78 }, 70 79 "devDependencies": { 71 80 "@babel/core": "^7.26.0", 72 81 "@babel/runtime": "^7.26.0", 73 - "@expo/metro-runtime": "~5.0.4", 74 - "@expo/prebuild-config": "^9.0.5", 82 + "@expo/metro-runtime": "~6.1.2", 83 + "@expo/prebuild-config": "^54.0.4", 75 84 "@pmmmwh/react-refresh-webpack-plugin": "^0.5.15", 76 85 "@react-native/typescript-config": "^0.76.5", 86 + "@testing-library/jest-native": "^5.4.3", 87 + "@testing-library/react-native": "^13.3.3", 88 + "@types/jest": "^30.0.0", 77 89 "@types/node": "^22.10.1", 78 - "@types/react": "19.0.14", 79 - "@types/react-dom": "18.3.1", 90 + "@types/react": "19.1.17", 91 + "@types/react-dom": "19.1.11", 92 + "@types/react-test-renderer": "^19.1.0", 80 93 "babel-plugin-module-resolver": "^5.0.2", 81 94 "babel-plugin-react-compiler": "19.0.0-beta-37ed2a7-20241206", 82 95 "eslint": "^8", 83 - "eslint-config-expo": "~9.2.0", 96 + "eslint-config-expo": "~7.1.2", 97 + "eslint-plugin-expo": "^1.0.0", 84 98 "react-refresh": "^0.16.0", 85 99 "tailwindcss": "^3.4.17", 86 100 "tailwindcss-animate": "^1.0.7", 87 101 "ts-node": "^10.9.2", 88 - "typescript": "^5.8.3" 102 + "typescript": "^5.9.3" 89 103 }, 90 104 "private": true 91 105 }
+1 -1
compose.dev.yml
··· 37 37 cadet: 38 38 build: 39 39 context: . 40 - dockerfile: apps/cadet/Dockerfile 40 + dockerfile: services/cadet/Dockerfile 41 41 container_name: cadet-app 42 42 ports: 43 43 - "3001:3000"
+4243 -3123
pnpm-lock.yaml
··· 10 10 dependencies: 11 11 '@atproto/oauth-client': 12 12 specifier: ^0.3.8 13 - version: 0.3.16 13 + version: 0.3.22 14 14 '@ianvs/prettier-plugin-sort-imports': 15 15 specifier: ^4.4.1 16 - version: 4.5.1(prettier@3.5.3) 16 + version: 4.7.0(prettier@3.6.2) 17 17 prettier: 18 18 specifier: ^3.5.3 19 - version: 3.5.3 19 + version: 3.6.2 20 20 prettier-plugin-tailwindcss: 21 21 specifier: ^0.6.11 22 - version: 0.6.12(@ianvs/prettier-plugin-sort-imports@4.5.1(prettier@3.5.3))(prettier@3.5.3) 22 + version: 0.6.14(@ianvs/prettier-plugin-sort-imports@4.7.0(prettier@3.6.2))(prettier@3.6.2) 23 23 devDependencies: 24 24 '@types/node': 25 25 specifier: ^20.17.10 26 - version: 20.17.10 26 + version: 20.19.19 27 27 biome: 28 28 specifier: ^0.3.3 29 29 version: 0.3.3 ··· 32 32 version: 6.0.1 33 33 turbo: 34 34 specifier: ^2.3.3 35 - version: 2.3.3 35 + version: 2.5.8 36 36 37 37 apps/amethyst: 38 38 dependencies: 39 39 '@aquareum/atproto-oauth-client-react-native': 40 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) 41 + version: 0.0.1(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 42 42 '@atproto/api': 43 43 specifier: ^0.15.14 44 44 version: 0.15.27 45 45 '@atproto/lex-cli': 46 46 specifier: ^0.8.1 47 - version: 0.8.2 47 + version: 0.8.3 48 48 '@atproto/oauth-client': 49 49 specifier: ^0.3.16 50 - version: 0.3.16 50 + version: 0.3.22 51 51 '@babel/plugin-transform-export-namespace-from': 52 52 specifier: ^7.27.1 53 - version: 7.27.1(@babel/core@7.26.0) 53 + version: 7.27.1(@babel/core@7.28.4) 54 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) 55 + specifier: ^15.0.2 56 + version: 15.0.2(expo-font@14.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 57 57 '@gorhom/bottom-sheet': 58 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) 59 + version: 5.2.6(@types/react@19.1.17)(react-native-gesture-handler@2.28.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-reanimated@4.1.2(@babel/core@7.28.4)(react-native-worklets@0.6.0(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 60 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)) 61 + specifier: 2.2.0 62 + version: 2.2.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)) 63 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) 64 + specifier: ^2.11.1 65 + version: 2.11.2(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 66 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) 67 + specifier: ^7.1.10 68 + version: 7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 69 69 '@rn-primitives/avatar': 70 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) 71 + version: 1.2.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 72 72 '@rn-primitives/hover-card': 73 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) 74 + version: 1.2.0(@rn-primitives/portal@1.3.0(@types/react@19.1.17)(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(use-sync-external-store@1.6.0(react@19.1.0)))(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 75 75 '@rn-primitives/portal': 76 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)) 77 + version: 1.3.0(@types/react@19.1.17)(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(use-sync-external-store@1.6.0(react@19.1.0)) 78 78 '@rn-primitives/progress': 79 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) 80 + version: 1.2.0(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 81 81 '@rn-primitives/slot': 82 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) 83 + version: 1.2.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 84 84 '@rn-primitives/tooltip': 85 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) 86 + version: 1.2.0(@rn-primitives/portal@1.3.0(@types/react@19.1.17)(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(use-sync-external-store@1.6.0(react@19.1.0)))(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 87 87 '@rn-primitives/types': 88 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) 89 + version: 1.2.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 90 90 '@teal/lexicons': 91 91 specifier: workspace:* 92 92 version: link:../../packages/lexicons ··· 100 100 specifier: 19.0.0-beta-37ed2a7-20241206 101 101 version: 19.0.0-beta-37ed2a7-20241206(eslint@8.57.1) 102 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) 103 + specifier: ~54.0.12 104 + version: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 105 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)) 106 + specifier: ^18.0.9 107 + version: 18.0.9(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)) 108 + expo-dev-client: 109 + specifier: ^6.0.13 110 + version: 6.0.13(expo@54.0.12) 108 111 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) 112 + specifier: ~14.0.8 113 + version: 14.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 111 114 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)) 115 + specifier: ^17.0.8 116 + version: 17.0.8(expo@54.0.12) 114 117 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) 118 + specifier: ~8.0.8 119 + version: 8.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 117 120 expo-router: 118 - specifier: ~5.0.6 119 - version: 5.0.6(swn7sosa2qiea4b4emiyaeta54) 121 + specifier: ~6.0.10 122 + version: 6.0.10(dyms6en36i74il5wcg7sgjxr3a) 120 123 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)) 124 + specifier: ~31.0.10 125 + version: 31.0.10(expo@54.0.12) 123 126 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) 127 + specifier: ^16.0.8 128 + version: 16.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 126 129 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) 130 + specifier: ~3.0.8 131 + version: 3.0.8(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 129 132 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)) 133 + specifier: ~6.0.7 134 + version: 6.0.7(expo@54.0.12)(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)) 132 135 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)) 136 + specifier: ~15.0.8 137 + version: 15.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)) 135 138 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)) 139 + specifier: ^29.7.0 140 + version: 29.7.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3)) 138 141 lucide-react-native: 139 142 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) 143 + version: 0.507.0(react-native-svg@15.12.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 141 144 nativewind: 142 145 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))) 146 + version: 4.2.1(react-native-reanimated@4.1.2(@babel/core@7.28.4)(react-native-worklets@0.6.0(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-svg@15.12.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(tailwindcss@3.4.18) 144 147 react: 145 - specifier: 19.0.0 146 - version: 19.0.0 148 + specifier: 19.1.0 149 + version: 19.1.0 147 150 react-compiler-runtime: 148 151 specifier: 19.0.0-beta-37ed2a7-20241206 149 - version: 19.0.0-beta-37ed2a7-20241206(react@19.0.0) 152 + version: 19.0.0-beta-37ed2a7-20241206(react@19.1.0) 150 153 react-dom: 151 - specifier: 19.0.0 152 - version: 19.0.0(react@19.0.0) 154 + specifier: 19.1.0 155 + version: 19.1.0(react@19.1.0) 153 156 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) 157 + specifier: 0.81.4 158 + version: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 156 159 react-native-css-interop: 157 160 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))) 161 + version: 0.1.22(react-native-reanimated@4.1.2(@babel/core@7.28.4)(react-native-worklets@0.6.0(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-svg@15.12.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(tailwindcss@3.4.18) 159 162 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) 163 + specifier: ~2.28.0 164 + version: 2.28.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 165 + react-native-quick-crypto: 166 + specifier: ^0.7.17 167 + version: 0.7.17(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 162 168 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) 169 + specifier: ~4.1.2 170 + version: 4.1.2(@babel/core@7.28.4)(react-native-worklets@0.6.0(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 165 171 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) 172 + specifier: 5.6.1 173 + version: 5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 168 174 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) 175 + specifier: ~4.16.0 176 + version: 4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 171 177 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) 178 + specifier: 15.12.1 179 + version: 15.12.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 174 180 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) 181 + specifier: ~0.21.1 182 + version: 0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 177 183 tailwind-merge: 178 184 specifier: ^2.5.5 179 185 version: 2.6.0 180 186 zustand: 181 187 specifier: ^5.0.4 182 - version: 5.0.5(@types/react@19.0.14)(react@19.0.0)(use-sync-external-store@1.5.0(react@19.0.0)) 188 + version: 5.0.8(@types/react@19.1.17)(react@19.1.0)(use-sync-external-store@1.6.0(react@19.1.0)) 183 189 devDependencies: 184 190 '@babel/core': 185 191 specifier: ^7.26.0 186 - version: 7.26.0 192 + version: 7.28.4 187 193 '@babel/runtime': 188 194 specifier: ^7.26.0 189 - version: 7.26.0 195 + version: 7.28.4 190 196 '@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)) 197 + specifier: ~6.1.2 198 + version: 6.1.2(expo@54.0.12)(react-dom@19.1.0(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 193 199 '@expo/prebuild-config': 194 - specifier: ^9.0.5 195 - version: 9.0.11 200 + specifier: ^54.0.4 201 + version: 54.0.4(expo@54.0.12) 196 202 '@pmmmwh/react-refresh-webpack-plugin': 197 203 specifier: ^0.5.15 198 - version: 0.5.15(react-refresh@0.16.0)(type-fest@0.21.3)(webpack@5.97.1) 204 + version: 0.5.17(react-refresh@0.16.0)(type-fest@0.21.3)(webpack@5.97.1) 199 205 '@react-native/typescript-config': 200 206 specifier: ^0.76.5 201 - version: 0.76.5 207 + version: 0.76.9 208 + '@testing-library/jest-native': 209 + specifier: ^5.4.3 210 + version: 5.4.3(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react-test-renderer@19.1.0(react@19.1.0))(react@19.1.0) 211 + '@testing-library/react-native': 212 + specifier: ^13.3.3 213 + version: 13.3.3(jest@29.7.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3)))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react-test-renderer@19.1.0(react@19.1.0))(react@19.1.0) 214 + '@types/jest': 215 + specifier: ^30.0.0 216 + version: 30.0.0 202 217 '@types/node': 203 218 specifier: ^22.10.1 204 - version: 22.10.2 219 + version: 22.18.8 205 220 '@types/react': 206 - specifier: 19.0.14 207 - version: 19.0.14 221 + specifier: 19.1.17 222 + version: 19.1.17 208 223 '@types/react-dom': 209 - specifier: 18.3.1 210 - version: 18.3.1 224 + specifier: 19.1.11 225 + version: 19.1.11(@types/react@19.1.17) 226 + '@types/react-test-renderer': 227 + specifier: ^19.1.0 228 + version: 19.1.0 211 229 babel-plugin-module-resolver: 212 230 specifier: ^5.0.2 213 231 version: 5.0.2 ··· 218 236 specifier: ^8 219 237 version: 8.57.1 220 238 eslint-config-expo: 221 - specifier: ~9.2.0 222 - version: 9.2.0(eslint@8.57.1)(typescript@5.8.3) 239 + specifier: ~7.1.2 240 + version: 7.1.2(eslint@8.57.1)(typescript@5.9.3) 241 + eslint-plugin-expo: 242 + specifier: ^1.0.0 243 + version: 1.0.0(eslint@8.57.1)(typescript@5.9.3) 223 244 react-refresh: 224 245 specifier: ^0.16.0 225 246 version: 0.16.0 226 247 tailwindcss: 227 248 specifier: ^3.4.17 228 - version: 3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)) 249 + version: 3.4.18 229 250 tailwindcss-animate: 230 251 specifier: ^1.0.7 231 - version: 1.0.7(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3))) 252 + version: 1.0.7(tailwindcss@3.4.18) 232 253 ts-node: 233 254 specifier: ^10.9.2 234 - version: 10.9.2(@types/node@22.10.2)(typescript@5.8.3) 255 + version: 10.9.2(@types/node@22.18.8)(typescript@5.9.3) 235 256 typescript: 236 - specifier: ^5.8.3 237 - version: 5.8.3 257 + specifier: ^5.9.3 258 + version: 5.9.3 238 259 239 260 apps/aqua: 240 261 dependencies: 241 262 jest-expo: 242 263 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) 264 + version: 54.0.12(@babel/core@7.28.4)(expo@54.0.12)(jest@30.2.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3)))(react-dom@19.2.0(react@19.2.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)(webpack@5.97.1) 244 265 245 266 packages/lexicons: 246 267 dependencies: 247 268 '@atproto/lex-cli': 248 269 specifier: ^0.5.4 249 - version: 0.5.4 270 + version: 0.5.7 250 271 '@atproto/lexicon': 251 272 specifier: ^0.4.2 252 - version: 0.4.3 273 + version: 0.4.14 253 274 '@atproto/xrpc-server': 254 275 specifier: ^0.7.4 255 - version: 0.7.4 276 + version: 0.7.19 256 277 '@teal/tsconfig': 257 278 specifier: workspace:* 258 279 version: link:../tsconfig ··· 267 288 dependencies: 268 289 '@atproto/lex-cli': 269 290 specifier: ^0.5.4 270 - version: 0.5.4 291 + version: 0.5.7 271 292 chokidar: 272 293 specifier: ^4.0.1 273 - version: 4.0.1 294 + version: 4.0.3 274 295 commander: 275 296 specifier: ^12.1.0 276 297 version: 12.1.0 ··· 279 300 version: 9.6.0 280 301 glob: 281 302 specifier: ^11.0.0 282 - version: 11.0.0 303 + version: 11.0.3 283 304 picocolors: 284 305 specifier: ^1.1.1 285 306 version: 1.1.1 286 307 devDependencies: 287 308 '@types/node': 288 309 specifier: ^20.17.10 289 - version: 20.17.10 310 + version: 20.19.19 290 311 typescript: 291 312 specifier: ^5.7.2 292 - version: 5.8.3 313 + version: 5.9.3 293 314 294 315 packages: 295 316 ··· 305 326 resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} 306 327 engines: {node: '>=10'} 307 328 308 - '@ampproject/remapping@2.3.0': 309 - resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} 310 - engines: {node: '>=6.0.0'} 311 - 312 329 '@aquareum/atproto-oauth-client-react-native@0.0.1': 313 330 resolution: {integrity: sha512-IoIcUuX2rKs/AS2u+72m9UWc0mldPTR4GgBHn4LIWtHLWjGTGdECwkw6iwshCM39KA15UhKGbByNQRG415hyfQ==} 314 331 deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. 315 332 316 - '@atproto-labs/did-resolver@0.1.12': 317 - resolution: {integrity: sha512-criWN7o21C5TFsauB+bGTlkqqerOU6gT2TbxdQVgZUWqNcfazUmUjT4gJAY02i+O4d3QmZa27fv9CcaRKWkSug==} 333 + '@atproto-labs/did-resolver@0.1.13': 334 + resolution: {integrity: sha512-DG3YNaCKc6PAIv1Gsz3E1Kufw2t14OBxe4LdKK7KKLCNoex51hm+A5yMevShe3BSll+QosqWYIEgkPSc5xBoGQ==} 318 335 319 336 '@atproto-labs/did-resolver@0.1.5': 320 337 resolution: {integrity: sha512-uoCb+P0N4du5NiZt6ohVEbSDdijXBJlQwSlWLHX0rUDtEVV+g3aEGe7jUW94lWpqQmRlQ5xcyd9owleMibNxZw==} ··· 325 342 '@atproto-labs/fetch@0.1.1': 326 343 resolution: {integrity: sha512-X1zO1MDoJzEurbWXMAe1H8EZ995Xam/aXdxhGVrXmOMyPDuvBa1oxwh/kQNZRCKcMQUbiwkk+Jfq6ZkTuvGbww==} 327 344 328 - '@atproto-labs/fetch@0.2.2': 329 - resolution: {integrity: sha512-QyafkedbFeVaN20DYUpnY2hcArYxjdThPXbYMqOSoZhcvkrUqaw4xDND4wZB5TBD9cq2yqe9V6mcw9P4XQKQuQ==} 345 + '@atproto-labs/fetch@0.2.3': 346 + resolution: {integrity: sha512-NZtbJOCbxKUFRFKMpamT38PUQMY0hX0p7TG5AEYOPhZKZEP7dHZ1K2s1aB8MdVH0qxmqX7nQleNrrvLf09Zfdw==} 330 347 331 348 '@atproto-labs/handle-resolver-node@0.1.7': 332 349 resolution: {integrity: sha512-3pXUB8/twMPXUz+zMjSVTA5acxnizC7PF+EsjLKwirwVzLRrTcFQkyHXGTrdUfIQq+S1eLq7b6H7ZKqMOX9VQQ==} ··· 337 354 '@atproto-labs/handle-resolver@0.1.8': 338 355 resolution: {integrity: sha512-Y0ckccoCGDo/3g4thPkgp9QcORmc+qqEaCBCYCZYtfLIQp4775u22wd+4fyEyJP4DqoReKacninkICgRGfs3dQ==} 339 356 340 - '@atproto-labs/identity-resolver@0.1.16': 341 - resolution: {integrity: sha512-pFrtKT49cYBhCDd2U1t/CcUBiMmQzaNQxh8oSkDUlGs/K3P8rJFTAGAMm8UjokfGEKwF4hX9oo7O8Kn+GkyExw==} 357 + '@atproto-labs/identity-resolver@0.1.18': 358 + resolution: {integrity: sha512-DArYXP1hzZJIBcojun0CWEF+TjAhlGKcVq/RwLiGfY1mKq2yPjCiXyHj+5L0+z9jBSZiAB7L65JgcjI2+MFiRg==} 342 359 343 360 '@atproto-labs/identity-resolver@0.1.6': 344 361 resolution: {integrity: sha512-kq1yhpImGG1IUE8QEKj2IjSfNrkG2VailZRuiFLYdcszDEBDzr9HN3ElV42ebxhofuSFgKOCrYWJIUiLuXo6Uw==} 345 362 346 363 '@atproto-labs/pipe@0.1.0': 347 364 resolution: {integrity: sha512-ghOqHFyJlQVFPESzlVHjKroP0tPzbmG5Jms0dNI9yLDEfL8xp4OFPWLX4f6T8mRq69wWs4nIDM3sSsFbFqLa1w==} 365 + 366 + '@atproto-labs/pipe@0.1.1': 367 + resolution: {integrity: sha512-hdNw2oUs2B6BN1lp+32pF7cp8EMKuIN5Qok2Vvv/aOpG/3tNSJ9YkvfI0k6Zd188LeDDYRUpYpxcoFIcGH/FNg==} 348 368 349 369 '@atproto-labs/simple-store-memory@0.1.1': 350 370 resolution: {integrity: sha512-PCRqhnZ8NBNBvLku53O56T0lsVOtclfIrQU/rwLCc4+p45/SBPrRYNBi6YFq5rxZbK6Njos9MCmILV/KLQxrWA==} ··· 361 381 '@atproto/api@0.15.27': 362 382 resolution: {integrity: sha512-ok/WGafh1nz4t8pEQGtAF/32x2E2VDWU4af6BajkO5Gky2jp2q6cv6aB2A5yuvNNcc3XkYMYipsqVHVwLPMF9g==} 363 383 364 - '@atproto/common-web@0.3.1': 365 - resolution: {integrity: sha512-N7wiTnus5vAr+lT//0y8m/FaHHLJ9LpGuEwkwDAeV3LCiPif4m/FS8x/QOYrx1PdZQwKso95RAPzCGWQBH5j6Q==} 384 + '@atproto/common-web@0.4.3': 385 + resolution: {integrity: sha512-nRDINmSe4VycJzPo6fP/hEltBcULFxt9Kw7fQk6405FyAWZiTluYHlXOnU7GkQfeUK44OENG1qFTBcmCJ7e8pg==} 366 386 367 - '@atproto/common-web@0.4.2': 368 - resolution: {integrity: sha512-vrXwGNoFGogodjQvJDxAeP3QbGtawgZute2ed1XdRO0wMixLk3qewtikZm06H259QDJVu6voKC5mubml+WgQUw==} 369 - 370 - '@atproto/common@0.4.5': 371 - resolution: {integrity: sha512-LFAGqHcxCI5+b31Xgk+VQQtZU258iGPpHJzNeHVcdh6teIKZi4C2l6YV+m+3CEz+yYcfP7jjUmgqesx7l9Arsg==} 387 + '@atproto/common@0.4.12': 388 + resolution: {integrity: sha512-NC+TULLQiqs6MvNymhQS5WDms3SlbIKGLf4n33tpftRJcalh507rI+snbcUb7TLIkKw7VO17qMqxEXtIdd5auQ==} 389 + engines: {node: '>=18.7.0'} 372 390 373 - '@atproto/crypto@0.4.2': 374 - resolution: {integrity: sha512-aeOfPQYCDbhn2hV06oBF2KXrWjf/BK4yL8lfANJKSmKl3tKWCkiW/moi643rUXXxSE72KtWtQeqvNFYnnFJ0ig==} 391 + '@atproto/crypto@0.4.4': 392 + resolution: {integrity: sha512-Yq9+crJ7WQl7sxStVpHgie5Z51R05etaK9DLWYG/7bR5T4bhdcIgF6IfklLShtZwLYdVVj+K15s0BqW9a8PSDA==} 393 + engines: {node: '>=18.7.0'} 375 394 376 395 '@atproto/did@0.1.3': 377 396 resolution: {integrity: sha512-ULD8Gw/KRRwLFZ2Z2L4DjmdOMrg8IYYlcjdSc+GQ2/QJSVnD2zaJJVTLd3vls121wGt/583rNaiZTT2DpBze4w==} ··· 388 407 '@atproto/jwk@0.1.1': 389 408 resolution: {integrity: sha512-6h/bj1APUk7QcV9t/oA6+9DB5NZx9SZru9x+/pV5oHFI9Xz4ZuM5+dq1PfsJV54pZyqdnZ6W6M717cxoC7q7og==} 390 409 391 - '@atproto/jwk@0.1.5': 392 - resolution: {integrity: sha512-OzZFLhX41TOcMeanP3aZlL5bLeaUIZT15MI4aU5cwflNq/rwpGOpz3uwDjZc8ytgUjuTQ8LabSz5jMmwoTSWFg==} 410 + '@atproto/jwk@0.2.0': 411 + resolution: {integrity: sha512-foOxExbw04XCaoLaGdv9BQj0Ac7snZsk6IpQjOsjYatf+i62Pi9bUkZ0MAoA75HPk8ZmKoDnbA60uBMmiOPPHQ==} 393 412 394 - '@atproto/lex-cli@0.5.4': 395 - resolution: {integrity: sha512-mNEPeQLXl3iCXPO/FSo0BTfP00lx+9xEQpf9LEpDuKA6WCWjIB7WHzU2VLk26NSftzH3sf6zf+A2yZ+WWRbYpw==} 413 + '@atproto/lex-cli@0.5.7': 414 + resolution: {integrity: sha512-V5rsU95Th57KICxUGwTjudN5wmFBHL/fLkl7banl6izsQBiUrVvrj3EScNW/Wx2PnwlJwxtTpa1rTnP30+i5/A==} 415 + engines: {node: '>=18.7.0'} 396 416 hasBin: true 397 417 398 - '@atproto/lex-cli@0.8.2': 399 - resolution: {integrity: sha512-yNQFYBV3tBBLnVrRUtUBlx/WIF4ypMFsvOsCLjA7pHL1SyW9JbczSEAoiNtoDmPc4UXCjMtXggz0ovBG8lynNA==} 418 + '@atproto/lex-cli@0.8.3': 419 + resolution: {integrity: sha512-QXqJl25obi74Cr0vp2RslZsbcsTV8Bq+5+kZnQgzIb2XH9/KJhoS32jKJNbrbKY097K4HOXyDsHi6j3+xCWJcQ==} 400 420 engines: {node: '>=18.7.0'} 401 421 hasBin: true 402 422 403 - '@atproto/lexicon@0.4.11': 404 - resolution: {integrity: sha512-btefdnvNz2Ao2I+qbmj0F06HC8IlrM/IBz6qOBS50r0S6uDf5tOO+Mv2tSVdimFkdzyDdLtBI1sV36ONxz2cOw==} 405 - 406 - '@atproto/lexicon@0.4.12': 407 - resolution: {integrity: sha512-fcEvEQ1GpQYF5igZ4IZjPWEoWVpsEF22L9RexxLS3ptfySXLflEyH384e7HITzO/73McDeaJx3lqHIuqn9ulnw==} 408 - 409 - '@atproto/lexicon@0.4.3': 410 - resolution: {integrity: sha512-lFVZXe1S1pJP0dcxvJuHP3r/a+EAIBwwU7jUK+r8iLhIja+ml6NmYv8KeFHmIJATh03spEQ9s02duDmFVdCoXg==} 423 + '@atproto/lexicon@0.4.14': 424 + resolution: {integrity: sha512-jiKpmH1QER3Gvc7JVY5brwrfo+etFoe57tKPQX/SmPwjvUsFnJAow5xLIryuBaJgFAhnTZViXKs41t//pahGHQ==} 411 425 412 - '@atproto/lexicon@0.4.4': 413 - resolution: {integrity: sha512-QFEmr3rpj/RoAmfX9ALU/asBG/rsVtQZnw+9nOB1/AuIwoxXd+ZyndR6lVUc2+DL4GEjl6W2yvBru5xbQIZWyA==} 426 + '@atproto/lexicon@0.5.1': 427 + resolution: {integrity: sha512-y8AEtYmfgVl4fqFxqXAeGvhesiGkxiy3CWoJIfsFDDdTlZUC8DFnZrYhcqkIop3OlCkkljvpSJi1hbeC1tbi8A==} 414 428 415 429 '@atproto/oauth-client-browser@0.3.2': 416 430 resolution: {integrity: sha512-Nt9tPxeJTwsX8i6du0dSMonymHHpOVnt67bfA49LpwAS39nNd9zY6yjOrqj0suRwFhoGpvO2e+I35lqe30L+Ig==} 417 431 418 - '@atproto/oauth-client@0.3.16': 419 - resolution: {integrity: sha512-AEtGLOXRJzBcBa8LyUXwFf/M7cZc+CcOBjLsiqmVQriSwccfyTkALgiyM0UcRHJqlwtLPuf9RYtgKPc8rW5F/w==} 420 - 421 432 '@atproto/oauth-client@0.3.2': 422 433 resolution: {integrity: sha512-/HUlv5dnR1am4BQlVYSuevGf4mKJ5RMkElnum8lbwRDewKyzqHwdtJWeNcfcPFtDhUKg0U2pWfRv8ZZd6kk9dQ==} 423 434 435 + '@atproto/oauth-client@0.3.22': 436 + resolution: {integrity: sha512-IJYkUSGGklV7tQ0S2+5smh8Xmu5MwfxBUNXMtqiooeU2nj+UcNk3/b0nE4MS05JNfwh2BXgHv3P8hrhVG2+RAA==} 437 + 424 438 '@atproto/oauth-types@0.2.1': 425 439 resolution: {integrity: sha512-hDisUXzcq5KU1HMuCYZ8Kcz7BePl7V11bFjjgZvND3mdSphiyBpJ8MCNn3QzAa6cXpFo0w9PDcYMAlCCRZHdVw==} 426 440 427 - '@atproto/oauth-types@0.2.7': 428 - resolution: {integrity: sha512-2SlDveiSI0oowC+sfuNd/npV8jw/FhokSS26qyUyldTg1g9ZlhxXUfMP4IZOPeZcVn9EszzQRHs1H9ZJqVQIew==} 441 + '@atproto/oauth-types@0.2.8': 442 + resolution: {integrity: sha512-xcYI2JmhrWwscePDoaKeDawVCCZkcvBqrBFMpMk4gf/OujH0pNSKBD/aWsayc6WvujVbTqwrG2hwPLfRqzJbwg==} 429 443 430 444 '@atproto/syntax@0.3.1': 431 445 resolution: {integrity: sha512-fzW0Mg1QUOVCWUD3RgEsDt6d1OZ6DdFmbKcDdbzUfh0t4rhtRAC05KbZYmxuMPWDAiJ4BbbQ5dkAc/mNypMXkw==} 446 + 447 + '@atproto/syntax@0.3.4': 448 + resolution: {integrity: sha512-8CNmi5DipOLaVeSMPggMe7FCksVag0aO6XZy9WflbduTKM4dFZVCs4686UeMLfGRXX+X966XgwECHoLYrovMMg==} 432 449 433 450 '@atproto/syntax@0.4.0': 434 451 resolution: {integrity: sha512-b9y5ceHS8YKOfP3mdKmwAx5yVj9294UN7FG2XzP6V5aKUdFazEYRnR9m5n5ZQFKa3GNvz7de9guZCJ/sUTcOAA==} 435 452 436 - '@atproto/xrpc-server@0.7.4': 437 - resolution: {integrity: sha512-MrAwxfJBQm/kCol3D8qc+vpQzBMzLqvtUbauSSfVVJ10PlGtxg4LlXqcjkAuhrjyrqp3dQH9LHuhDpgVQK+G3w==} 453 + '@atproto/syntax@0.4.1': 454 + resolution: {integrity: sha512-CJdImtLAiFO+0z3BWTtxwk6aY5w4t8orHTMVJgkf++QRJWTxPbIFko/0hrkADB7n2EruDxDSeAgfUGehpH6ngw==} 455 + 456 + '@atproto/xrpc-server@0.7.19': 457 + resolution: {integrity: sha512-YSCl/tU2NDykgDYslFSOYCr96esUgDwncFiADKL59/fyIFPLoT0qY8Uq/budpxUh0qPzjow4HHgVWESOaOpUmA==} 458 + engines: {node: '>=18.7.0'} 438 459 439 460 '@atproto/xrpc@0.6.4': 440 461 resolution: {integrity: sha512-9ZAJ8nsXTqC4XFyS0E1Wlg7bAvonhXQNQ3Ocs1L1LIwFLXvsw/4fNpIHXxvXvqTCVeyHLbImOnE9UiO1c/qIYA==} 441 462 442 - '@atproto/xrpc@0.6.7': 443 - resolution: {integrity: sha512-pbzZIONIskyGKxxG3s2wB7rQ2W1xu3ycfeYhKwk/E/ippeJFVxcof64iSC7f22+7JSKUJcxBeZ1piBB82vLj7g==} 444 - 445 463 '@atproto/xrpc@0.7.0': 446 464 resolution: {integrity: sha512-SfhP9dGx2qclaScFDb58Jnrmim5nk4geZXCqg6sB0I/KZhZEkr9iIx1hLCp+sxkIfEsmEJjeWO4B0rjUIJW5cw==} 447 465 448 - '@atproto/xrpc@0.7.1': 449 - resolution: {integrity: sha512-ANHEzlskYlMEdH18m+Itp3a8d0pEJao2qoDybDoMupTnoeNkya4VKIaOgAi6ERQnqatBBZyn9asW+7rJmSt/8g==} 466 + '@atproto/xrpc@0.7.5': 467 + resolution: {integrity: sha512-MUYNn5d2hv8yVegRL0ccHvTHAVj5JSnW07bkbiaz96UH45lvYNRVwt44z+yYVnb0/mvBzyD3/ZQ55TRGt7fHkA==} 450 468 451 469 '@babel/code-frame@7.10.4': 452 470 resolution: {integrity: sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==} 453 471 454 - '@babel/code-frame@7.26.2': 455 - resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==} 456 - engines: {node: '>=6.9.0'} 457 - 458 472 '@babel/code-frame@7.27.1': 459 473 resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==} 460 474 engines: {node: '>=6.9.0'} 461 475 462 - '@babel/compat-data@7.26.3': 463 - resolution: {integrity: sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g==} 464 - engines: {node: '>=6.9.0'} 465 - 466 476 '@babel/compat-data@7.28.4': 467 477 resolution: {integrity: sha512-YsmSKC29MJwf0gF8Rjjrg5LQCmyh+j/nD8/eP7f+BeoQTKYqs9RoWbjGOdy0+1Ekr68RJZMUOPVQaQisnIo4Rw==} 468 - engines: {node: '>=6.9.0'} 469 - 470 - '@babel/core@7.26.0': 471 - resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==} 472 478 engines: {node: '>=6.9.0'} 473 479 474 480 '@babel/core@7.28.4': ··· 487 493 resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==} 488 494 engines: {node: '>=6.9.0'} 489 495 490 - '@babel/helper-compilation-targets@7.25.9': 491 - resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==} 496 + '@babel/helper-annotate-as-pure@7.27.3': 497 + resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==} 492 498 engines: {node: '>=6.9.0'} 493 499 494 500 '@babel/helper-compilation-targets@7.27.2': ··· 501 507 peerDependencies: 502 508 '@babel/core': ^7.0.0 503 509 510 + '@babel/helper-create-class-features-plugin@7.28.3': 511 + resolution: {integrity: sha512-V9f6ZFIYSLNEbuGA/92uOvYsGCJNsuA8ESZ4ldc09bWk/j8H8TKiPw8Mk1eG6olpnO0ALHJmYfZvF4MEE4gajg==} 512 + engines: {node: '>=6.9.0'} 513 + peerDependencies: 514 + '@babel/core': ^7.0.0 515 + 504 516 '@babel/helper-create-regexp-features-plugin@7.26.3': 505 517 resolution: {integrity: sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong==} 518 + engines: {node: '>=6.9.0'} 519 + peerDependencies: 520 + '@babel/core': ^7.0.0 521 + 522 + '@babel/helper-create-regexp-features-plugin@7.27.1': 523 + resolution: {integrity: sha512-uVDC72XVf8UbrH5qQTc18Agb8emwjTiZrQE11Nv3CuBEZmVvTwwE9CBUEvHku06gQCAyYf8Nv6ja1IN+6LMbxQ==} 506 524 engines: {node: '>=6.9.0'} 507 525 peerDependencies: 508 526 '@babel/core': ^7.0.0 ··· 520 538 resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==} 521 539 engines: {node: '>=6.9.0'} 522 540 541 + '@babel/helper-member-expression-to-functions@7.27.1': 542 + resolution: {integrity: sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==} 543 + engines: {node: '>=6.9.0'} 544 + 523 545 '@babel/helper-module-imports@7.25.9': 524 546 resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==} 525 547 engines: {node: '>=6.9.0'} ··· 527 549 '@babel/helper-module-imports@7.27.1': 528 550 resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==} 529 551 engines: {node: '>=6.9.0'} 530 - 531 - '@babel/helper-module-transforms@7.26.0': 532 - resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==} 533 - engines: {node: '>=6.9.0'} 534 - peerDependencies: 535 - '@babel/core': ^7.0.0 536 552 537 553 '@babel/helper-module-transforms@7.28.3': 538 554 resolution: {integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==} ··· 544 560 resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==} 545 561 engines: {node: '>=6.9.0'} 546 562 563 + '@babel/helper-optimise-call-expression@7.27.1': 564 + resolution: {integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==} 565 + engines: {node: '>=6.9.0'} 566 + 547 567 '@babel/helper-plugin-utils@7.25.9': 548 568 resolution: {integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==} 549 569 engines: {node: '>=6.9.0'} ··· 564 584 peerDependencies: 565 585 '@babel/core': ^7.0.0 566 586 587 + '@babel/helper-replace-supers@7.27.1': 588 + resolution: {integrity: sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==} 589 + engines: {node: '>=6.9.0'} 590 + peerDependencies: 591 + '@babel/core': ^7.0.0 592 + 567 593 '@babel/helper-skip-transparent-expression-wrappers@7.25.9': 568 594 resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==} 595 + engines: {node: '>=6.9.0'} 596 + 597 + '@babel/helper-skip-transparent-expression-wrappers@7.27.1': 598 + resolution: {integrity: sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==} 569 599 engines: {node: '>=6.9.0'} 570 600 571 601 '@babel/helper-string-parser@7.25.9': ··· 584 614 resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==} 585 615 engines: {node: '>=6.9.0'} 586 616 587 - '@babel/helper-validator-option@7.25.9': 588 - resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==} 589 - engines: {node: '>=6.9.0'} 590 - 591 617 '@babel/helper-validator-option@7.27.1': 592 618 resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==} 593 619 engines: {node: '>=6.9.0'} ··· 596 622 resolution: {integrity: sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==} 597 623 engines: {node: '>=6.9.0'} 598 624 599 - '@babel/helpers@7.26.0': 600 - resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==} 601 - engines: {node: '>=6.9.0'} 602 - 603 625 '@babel/helpers@7.28.4': 604 626 resolution: {integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==} 605 627 engines: {node: '>=6.9.0'} ··· 769 791 peerDependencies: 770 792 '@babel/core': ^7.0.0-0 771 793 794 + '@babel/plugin-transform-arrow-functions@7.27.1': 795 + resolution: {integrity: sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==} 796 + engines: {node: '>=6.9.0'} 797 + peerDependencies: 798 + '@babel/core': ^7.0.0-0 799 + 772 800 '@babel/plugin-transform-async-generator-functions@7.25.9': 773 801 resolution: {integrity: sha512-RXV6QAzTBbhDMO9fWwOmwwTuYaiPbggWQ9INdZqAYeSHyG7FzQ+nOZaUUjNwKv9pV3aE4WFqFm1Hnbci5tBCAw==} 774 802 engines: {node: '>=6.9.0'} ··· 793 821 peerDependencies: 794 822 '@babel/core': ^7.0.0-0 795 823 824 + '@babel/plugin-transform-class-properties@7.27.1': 825 + resolution: {integrity: sha512-D0VcalChDMtuRvJIu3U/fwWjf8ZMykz5iZsg77Nuj821vCKI3zCyRLwRdWbsuJ/uRwZhZ002QtCqIkwC/ZkvbA==} 826 + engines: {node: '>=6.9.0'} 827 + peerDependencies: 828 + '@babel/core': ^7.0.0-0 829 + 830 + '@babel/plugin-transform-class-static-block@7.28.3': 831 + resolution: {integrity: sha512-LtPXlBbRoc4Njl/oh1CeD/3jC+atytbnf/UqLoqTDcEYGUPj022+rvfkbDYieUrSj3CaV4yHDByPE+T2HwfsJg==} 832 + engines: {node: '>=6.9.0'} 833 + peerDependencies: 834 + '@babel/core': ^7.12.0 835 + 796 836 '@babel/plugin-transform-classes@7.25.9': 797 837 resolution: {integrity: sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==} 838 + engines: {node: '>=6.9.0'} 839 + peerDependencies: 840 + '@babel/core': ^7.0.0-0 841 + 842 + '@babel/plugin-transform-classes@7.28.4': 843 + resolution: {integrity: sha512-cFOlhIYPBv/iBoc+KS3M6et2XPtbT2HiCRfBXWtfpc9OAyostldxIf9YAYB6ypURBBbx+Qv6nyrLzASfJe+hBA==} 798 844 engines: {node: '>=6.9.0'} 799 845 peerDependencies: 800 846 '@babel/core': ^7.0.0-0 ··· 853 899 peerDependencies: 854 900 '@babel/core': ^7.0.0-0 855 901 902 + '@babel/plugin-transform-modules-commonjs@7.27.1': 903 + resolution: {integrity: sha512-OJguuwlTYlN0gBZFRPqwOGNWssZjfIUdS7HMYtN8c1KmwpwHFBwTeFZrg9XZa+DFTitWOW5iTAG7tyCUPsCCyw==} 904 + engines: {node: '>=6.9.0'} 905 + peerDependencies: 906 + '@babel/core': ^7.0.0-0 907 + 856 908 '@babel/plugin-transform-named-capturing-groups-regex@7.25.9': 857 909 resolution: {integrity: sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==} 858 910 engines: {node: '>=6.9.0'} ··· 861 913 862 914 '@babel/plugin-transform-nullish-coalescing-operator@7.25.9': 863 915 resolution: {integrity: sha512-ENfftpLZw5EItALAD4WsY/KUWvhUlZndm5GC7G3evUsVeSJB6p0pBeLQUnRnBCBx7zV0RKQjR9kCuwrsIrjWog==} 916 + engines: {node: '>=6.9.0'} 917 + peerDependencies: 918 + '@babel/core': ^7.0.0-0 919 + 920 + '@babel/plugin-transform-nullish-coalescing-operator@7.27.1': 921 + resolution: {integrity: sha512-aGZh6xMo6q9vq1JGcw58lZ1Z0+i0xB2x0XaauNIUXd6O1xXc3RwoWEBlsTQrY4KQ9Jf0s5rgD6SiNkaUdJegTA==} 864 922 engines: {node: '>=6.9.0'} 865 923 peerDependencies: 866 924 '@babel/core': ^7.0.0-0 ··· 885 943 886 944 '@babel/plugin-transform-optional-chaining@7.25.9': 887 945 resolution: {integrity: sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==} 946 + engines: {node: '>=6.9.0'} 947 + peerDependencies: 948 + '@babel/core': ^7.0.0-0 949 + 950 + '@babel/plugin-transform-optional-chaining@7.27.1': 951 + resolution: {integrity: sha512-BQmKPPIuc8EkZgNKsv0X4bPmOoayeu4F1YCwx2/CfmDSXDbp7GnzlUH+/ul5VGfRg1AoFPsrIThlEBj2xb4CAg==} 888 952 engines: {node: '>=6.9.0'} 889 953 peerDependencies: 890 954 '@babel/core': ^7.0.0-0 ··· 961 1025 peerDependencies: 962 1026 '@babel/core': ^7.0.0-0 963 1027 1028 + '@babel/plugin-transform-shorthand-properties@7.27.1': 1029 + resolution: {integrity: sha512-N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ==} 1030 + engines: {node: '>=6.9.0'} 1031 + peerDependencies: 1032 + '@babel/core': ^7.0.0-0 1033 + 964 1034 '@babel/plugin-transform-spread@7.25.9': 965 1035 resolution: {integrity: sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==} 966 1036 engines: {node: '>=6.9.0'} ··· 973 1043 peerDependencies: 974 1044 '@babel/core': ^7.0.0-0 975 1045 976 - '@babel/plugin-transform-template-literals@7.25.9': 977 - resolution: {integrity: sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw==} 1046 + '@babel/plugin-transform-template-literals@7.27.1': 1047 + resolution: {integrity: sha512-fBJKiV7F2DxZUkg5EtHKXQdbsbURW3DZKQUWphDum0uRP6eHGGa/He9mc0mypL680pb+e/lDIthRohlv8NCHkg==} 978 1048 engines: {node: '>=6.9.0'} 979 1049 peerDependencies: 980 1050 '@babel/core': ^7.0.0-0 ··· 985 1055 peerDependencies: 986 1056 '@babel/core': ^7.0.0-0 987 1057 1058 + '@babel/plugin-transform-typescript@7.28.0': 1059 + resolution: {integrity: sha512-4AEiDEBPIZvLQaWlc9liCavE0xRM0dNca41WtBeM3jgFptfUOSG9z0uteLhq6+3rq+WB6jIvUwKDTpXEHPJ2Vg==} 1060 + engines: {node: '>=6.9.0'} 1061 + peerDependencies: 1062 + '@babel/core': ^7.0.0-0 1063 + 988 1064 '@babel/plugin-transform-unicode-regex@7.25.9': 989 1065 resolution: {integrity: sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==} 1066 + engines: {node: '>=6.9.0'} 1067 + peerDependencies: 1068 + '@babel/core': ^7.0.0-0 1069 + 1070 + '@babel/plugin-transform-unicode-regex@7.27.1': 1071 + resolution: {integrity: sha512-xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw==} 990 1072 engines: {node: '>=6.9.0'} 991 1073 peerDependencies: 992 1074 '@babel/core': ^7.0.0-0 ··· 1003 1085 peerDependencies: 1004 1086 '@babel/core': ^7.0.0-0 1005 1087 1006 - '@babel/runtime@7.26.0': 1007 - resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==} 1088 + '@babel/preset-typescript@7.27.1': 1089 + resolution: {integrity: sha512-l7WfQfX0WK4M0v2RudjuQK4u99BS6yLHYEmdtVPP7lKV013zr9DygFuWNlnbvQ9LR+LS0Egz/XAvGx5U9MX0fQ==} 1008 1090 engines: {node: '>=6.9.0'} 1091 + peerDependencies: 1092 + '@babel/core': ^7.0.0-0 1009 1093 1010 - '@babel/template@7.25.9': 1011 - resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==} 1094 + '@babel/runtime@7.28.4': 1095 + resolution: {integrity: sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==} 1012 1096 engines: {node: '>=6.9.0'} 1013 1097 1014 1098 '@babel/template@7.27.2': ··· 1084 1168 '@emnapi/wasi-threads@1.1.0': 1085 1169 resolution: {integrity: sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==} 1086 1170 1087 - '@eslint-community/eslint-utils@4.4.1': 1088 - resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==} 1089 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1090 - peerDependencies: 1091 - eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 1092 - 1093 - '@eslint-community/eslint-utils@4.7.0': 1094 - resolution: {integrity: sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==} 1171 + '@eslint-community/eslint-utils@4.9.0': 1172 + resolution: {integrity: sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==} 1095 1173 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1096 1174 peerDependencies: 1097 1175 eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 ··· 1108 1186 resolution: {integrity: sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==} 1109 1187 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1110 1188 1111 - '@expo/cli@0.24.20': 1112 - resolution: {integrity: sha512-uF1pOVcd+xizNtVTuZqNGzy7I6IJon5YMmQidsURds1Ww96AFDxrR/NEACqeATNAmY60m8wy1VZZpSg5zLNkpw==} 1189 + '@expo/cli@54.0.10': 1190 + resolution: {integrity: sha512-iw9gAnN6+PKWWLIyYmiskY/wzZjuFMctunqGXuC8BGATWgtr/HpzjVqWbcL3KIX/GvEBCCh74Tkckrh+Ylxh5Q==} 1113 1191 hasBin: true 1192 + peerDependencies: 1193 + expo: '*' 1194 + expo-router: '*' 1195 + react-native: '*' 1196 + peerDependenciesMeta: 1197 + expo-router: 1198 + optional: true 1199 + react-native: 1200 + optional: true 1114 1201 1115 1202 '@expo/code-signing-certificates@0.0.5': 1116 1203 resolution: {integrity: sha512-BNhXkY1bblxKZpltzAx98G2Egj9g1Q+JRcvR7E99DOj862FTCX+ZPsAUtPTr7aHxwtrL7+fL3r0JSmM9kBm+Bw==} 1117 1204 1118 - '@expo/config-plugins@10.0.2': 1119 - resolution: {integrity: sha512-TzUn3pPdpwCS0yYaSlZOClgDmCX8N4I2lfgitX5oStqmvpPtB+vqtdyqsVM02fQ2tlJIAqwBW+NHaHqqy8Jv7g==} 1120 - 1121 - '@expo/config-plugins@10.1.2': 1122 - resolution: {integrity: sha512-IMYCxBOcnuFStuK0Ay+FzEIBKrwW8OVUMc65+v0+i7YFIIe8aL342l7T4F8lR4oCfhXn7d6M5QPgXvjtc/gAcw==} 1123 - 1124 1205 '@expo/config-plugins@54.0.2': 1125 1206 resolution: {integrity: sha512-jD4qxFcURQUVsUFGMcbo63a/AnviK8WUGard+yrdQE3ZrB/aurn68SlApjirQQLEizhjI5Ar2ufqflOBlNpyPg==} 1126 1207 1127 - '@expo/config-types@53.0.4': 1128 - resolution: {integrity: sha512-0s+9vFx83WIToEr0Iwy4CcmiUXa5BgwBmEjylBB2eojX5XAMm9mJvw9KpjAb8m7zq2G0Q6bRbeufkzgbipuNQg==} 1129 - 1130 - '@expo/config-types@53.0.5': 1131 - resolution: {integrity: sha512-kqZ0w44E+HEGBjy+Lpyn0BVL5UANg/tmNixxaRMLS6nf37YsDrLk2VMAmeKMMk5CKG0NmOdVv3ngeUjRQMsy9g==} 1132 - 1133 1208 '@expo/config-types@54.0.8': 1134 1209 resolution: {integrity: sha512-lyIn/x/Yz0SgHL7IGWtgTLg6TJWC9vL7489++0hzCHZ4iGjVcfZmPTUfiragZ3HycFFj899qN0jlhl49IHa94A==} 1135 1210 1136 - '@expo/config@11.0.10': 1137 - resolution: {integrity: sha512-8S8Krr/c5lnl0eF03tA2UGY9rGBhZcbWKz2UWw5dpL/+zstwUmog8oyuuC8aRcn7GiTQLlbBkxcMeT8sOGlhbA==} 1138 - 1139 - '@expo/config@11.0.13': 1140 - resolution: {integrity: sha512-TnGb4u/zUZetpav9sx/3fWK71oCPaOjZHoVED9NaEncktAd0Eonhq5NUghiJmkUGt3gGSjRAEBXiBbbY9/B1LA==} 1141 - 1142 1211 '@expo/config@12.0.10': 1143 1212 resolution: {integrity: sha512-lJMof5Nqakq1DxGYlghYB/ogSBjmv4Fxn1ovyDmcjlRsQdFCXgu06gEUogkhPtc9wBt9WlTTfqENln5HHyLW6w==} 1144 1213 1145 1214 '@expo/devcert@1.1.4': 1146 1215 resolution: {integrity: sha512-fqBODr8c72+gBSX5Ty3SIzaY4bXainlpab78+vEYEKL3fXmsOswMLf0+KE36mUEAa36BYabX7K3EiXOXX5OPMw==} 1147 1216 1148 - '@expo/env@1.0.5': 1149 - resolution: {integrity: sha512-dtEZ4CAMaVrFu2+tezhU3FoGWtbzQl50xV+rNJE5lYVRjUflWiZkVHlHkWUlPAwDPifLy4TuissVfScGGPWR5g==} 1217 + '@expo/devtools@0.1.7': 1218 + resolution: {integrity: sha512-dfIa9qMyXN+0RfU6SN4rKeXZyzKWsnz6xBSDccjL4IRiE+fQ0t84zg0yxgN4t/WK2JU5v6v4fby7W7Crv9gJvA==} 1219 + peerDependencies: 1220 + react: '*' 1221 + react-native: '*' 1222 + peerDependenciesMeta: 1223 + react: 1224 + optional: true 1225 + react-native: 1226 + optional: true 1150 1227 1151 - '@expo/env@1.0.7': 1152 - resolution: {integrity: sha512-qSTEnwvuYJ3umapO9XJtrb1fAqiPlmUUg78N0IZXXGwQRt+bkp0OBls+Y5Mxw/Owj8waAM0Z3huKKskRADR5ow==} 1228 + '@expo/env@2.0.7': 1229 + resolution: {integrity: sha512-BNETbLEohk3HQ2LxwwezpG8pq+h7Fs7/vAMP3eAtFT1BCpprLYoBBFZH7gW4aqGfqOcVP4Lc91j014verrYNGg==} 1153 1230 1154 - '@expo/fingerprint@0.13.4': 1155 - resolution: {integrity: sha512-MYfPYBTMfrrNr07DALuLhG6EaLVNVrY/PXjEzsjWdWE4ZFn0yqI0IdHNkJG7t1gePT8iztHc7qnsx+oo/rDo6w==} 1231 + '@expo/fingerprint@0.15.1': 1232 + resolution: {integrity: sha512-U1S9DwiapCHQjHdHDDyO/oXsl/1oEHSHZRRkWDDrHgXRUDiAVIySw9Unvvcr118Ee6/x4NmKSZY1X0VagrqmFg==} 1156 1233 hasBin: true 1157 1234 1158 - '@expo/image-utils@0.7.6': 1159 - resolution: {integrity: sha512-GKnMqC79+mo/1AFrmAcUcGfbsXXTRqOMNS1umebuevl3aaw+ztsYEFEiuNhHZW7PQ3Xs3URNT513ZxKhznDscw==} 1235 + '@expo/image-utils@0.8.7': 1236 + resolution: {integrity: sha512-SXOww4Wq3RVXLyOaXiCCuQFguCDh8mmaHBv54h/R29wGl4jRY8GEyQEx8SypV/iHt1FbzsU/X3Qbcd9afm2W2w==} 1160 1237 1161 1238 '@expo/json-file@10.0.7': 1162 1239 resolution: {integrity: sha512-z2OTC0XNO6riZu98EjdNHC05l51ySeTto6GP7oSQrCvQgG9ARBwD1YvMQaVZ9wU7p/4LzSf1O7tckL3B45fPpw==} 1163 1240 1164 - '@expo/json-file@9.1.4': 1165 - resolution: {integrity: sha512-7Bv86X27fPERGhw8aJEZvRcH9sk+9BenDnEmrI3ZpywKodYSBgc8lX9Y32faNVQ/p0YbDK9zdJ0BfAKNAOyi0A==} 1241 + '@expo/mcp-tunnel@0.0.8': 1242 + resolution: {integrity: sha512-6261obzt6h9TQb6clET7Fw4Ig4AY2hfTNKI3gBt0gcTNxZipwMg8wER7ssDYieA9feD/FfPTuCPYFcR280aaWA==} 1243 + peerDependencies: 1244 + '@modelcontextprotocol/sdk': ^1.13.2 1245 + peerDependenciesMeta: 1246 + '@modelcontextprotocol/sdk': 1247 + optional: true 1166 1248 1167 - '@expo/json-file@9.1.5': 1168 - resolution: {integrity: sha512-prWBhLUlmcQtvN6Y7BpW2k9zXGd3ySa3R6rAguMJkp1z22nunLN64KYTUWfijFlprFoxm9r2VNnGkcbndAlgKA==} 1249 + '@expo/metro-config@54.0.6': 1250 + resolution: {integrity: sha512-z3wufTr1skM03PI6Dr1ZsrvjAiGKf/w0VQvdZL+mEnKNqRA7Q4bhJDGk1+nzs+WWRWz4vS488uad9ERmSclBmg==} 1251 + peerDependencies: 1252 + expo: '*' 1253 + peerDependenciesMeta: 1254 + expo: 1255 + optional: true 1169 1256 1170 - '@expo/metro-config@0.20.17': 1171 - resolution: {integrity: sha512-lpntF2UZn5bTwrPK6guUv00Xv3X9mkN3YYla+IhEHiYXWyG7WKOtDU0U4KR8h3ubkZ6SPH3snDyRyAzMsWtZFA==} 1172 - 1173 - '@expo/metro-runtime@5.0.4': 1174 - resolution: {integrity: sha512-r694MeO+7Vi8IwOsDIDzH/Q5RPMt1kUDYbiTJwnO15nIqiDwlE8HU55UlRhffKZy6s5FmxQsZ8HA+T8DqUW8cQ==} 1257 + '@expo/metro-runtime@6.1.2': 1258 + resolution: {integrity: sha512-nvM+Qv45QH7pmYvP8JB1G8JpScrWND3KrMA6ZKe62cwwNiX/BjHU28Ear0v/4bQWXlOY0mv6B8CDIm8JxXde9g==} 1175 1259 peerDependencies: 1260 + expo: '*' 1261 + react: '*' 1262 + react-dom: '*' 1176 1263 react-native: '*' 1264 + peerDependenciesMeta: 1265 + react-dom: 1266 + optional: true 1177 1267 1178 - '@expo/osascript@2.2.5': 1179 - resolution: {integrity: sha512-Bpp/n5rZ0UmpBOnl7Li3LtM7la0AR3H9NNesqL+ytW5UiqV/TbonYW3rDZY38u4u/lG7TnYflVIVQPD+iqZJ5w==} 1180 - engines: {node: '>=12'} 1268 + '@expo/metro@54.0.0': 1269 + resolution: {integrity: sha512-x2HlliepLJVLSe0Fl/LuPT83Mn2EXpPlb1ngVtcawlz4IfbkYJo16/Zfsfrn1t9d8LpN5dD44Dc55Q1/fO05Nw==} 1181 1270 1182 - '@expo/package-manager@1.8.6': 1183 - resolution: {integrity: sha512-gcdICLuL+nHKZagPIDC5tX8UoDDB8vNA5/+SaQEqz8D+T2C4KrEJc2Vi1gPAlDnKif834QS6YluHWyxjk0yZlQ==} 1184 - 1185 - '@expo/plist@0.3.4': 1186 - resolution: {integrity: sha512-MhBLaUJNe9FQDDU2xhSNS4SAolr6K2wuyi4+A79vYuXLkAoICsbTwcGEQJN5jPY6D9izO/jsXh5k0h+mIWQMdw==} 1271 + '@expo/osascript@2.3.7': 1272 + resolution: {integrity: sha512-IClSOXxR0YUFxIriUJVqyYki7lLMIHrrzOaP01yxAL1G8pj2DWV5eW1y5jSzIcIfSCNhtGsshGd1tU/AYup5iQ==} 1273 + engines: {node: '>=12'} 1187 1274 1188 - '@expo/plist@0.3.5': 1189 - resolution: {integrity: sha512-9RYVU1iGyCJ7vWfg3e7c/NVyMFs8wbl+dMWZphtFtsqyN9zppGREU3ctlD3i8KUE0sCUTVnLjCWr+VeUIDep2g==} 1275 + '@expo/package-manager@1.9.8': 1276 + resolution: {integrity: sha512-4/I6OWquKXYnzo38pkISHCOCOXxfeEmu4uDoERq1Ei/9Ur/s9y3kLbAamEkitUkDC7gHk1INxRWEfFNzGbmOrA==} 1190 1277 1191 1278 '@expo/plist@0.4.7': 1192 1279 resolution: {integrity: sha512-dGxqHPvCZKeRKDU1sJZMmuyVtcASuSYh1LPFVaM1DuffqPL36n6FMEL0iUqq2Tx3xhWk8wCnWl34IKplUjJDdA==} 1193 1280 1194 - '@expo/prebuild-config@9.0.11': 1195 - resolution: {integrity: sha512-0DsxhhixRbCCvmYskBTq8czsU0YOBsntYURhWPNpkl0IPVpeP9haE5W4OwtHGzXEbmHdzaoDwNmVcWjS/mqbDw==} 1281 + '@expo/prebuild-config@54.0.4': 1282 + resolution: {integrity: sha512-X+oTbmclWf2kfWIEkjagOzPZNg2SkiWW+JoRX6CWxKpDTQKfsi/bf22Ymv5Zxe1Q/aGjOuFL5useStm3iNi+PA==} 1283 + peerDependencies: 1284 + expo: '*' 1285 + 1286 + '@expo/schema-utils@0.1.7': 1287 + resolution: {integrity: sha512-jWHoSuwRb5ZczjahrychMJ3GWZu54jK9ulNdh1d4OzAEq672K9E5yOlnlBsfIHWHGzUAT+0CL7Yt1INiXTz68g==} 1196 1288 1197 1289 '@expo/sdk-runtime-versions@1.0.0': 1198 1290 resolution: {integrity: sha512-Doz2bfiPndXYFPMRwPyGa1k5QaKDVpY806UJj570epIiMzWaYyCtobasyfC++qfIXVb5Ocy7r3tP9d62hAQ7IQ==} 1199 1291 1200 - '@expo/server@0.6.2': 1201 - resolution: {integrity: sha512-ko+dq+1WEC126/iGVv3g+ChFCs9wGyKtGlnYphwrOQbFBBqX19sn6UV0oUks6UdhD+MyzUv+w/TOdktdcI0Cgg==} 1202 - 1203 1292 '@expo/spawn-async@1.7.2': 1204 1293 resolution: {integrity: sha512-QdWi16+CHB9JYP7gma19OVVg0BFkvU8zNj9GjWorYI8Iv8FUxjOCcYRuAmX4s/h91e4e7BPsskc8cSrZYho9Ew==} 1205 1294 engines: {node: '>=12'} 1206 1295 1207 - '@expo/vector-icons@14.1.0': 1208 - resolution: {integrity: sha512-7T09UE9h8QDTsUeMGymB4i+iqvtEeaO5VvUjryFB4tugDTG/bkzViWA74hm5pfjjDEhYMXWaX112mcvhccmIwQ==} 1296 + '@expo/vector-icons@15.0.2': 1297 + resolution: {integrity: sha512-IiBjg7ZikueuHNf40wSGCf0zS73a3guJLdZzKnDUxsauB8VWPLMeWnRIupc+7cFhLUkqyvyo0jLNlcxG5xPOuQ==} 1209 1298 peerDependencies: 1210 - expo-font: '*' 1299 + expo-font: '>=14.0.4' 1211 1300 react: '*' 1212 1301 react-native: '*' 1213 1302 ··· 1218 1307 resolution: {integrity: sha512-ReZxZ8pdnoI3tP/dNnJdnmAk7uLT4FjsKDGW7YeDdvdOMz2XCQSmSCM9IWlrXuWtMF9zeSB6WJtEhCQ41gQOfw==} 1219 1308 hasBin: true 1220 1309 1221 - '@floating-ui/core@1.6.8': 1222 - resolution: {integrity: sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==} 1310 + '@floating-ui/core@1.7.3': 1311 + resolution: {integrity: sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==} 1223 1312 1224 - '@floating-ui/dom@1.6.12': 1225 - resolution: {integrity: sha512-NP83c0HjokcGVEMeoStg317VD9W7eDlGK7457dMBANbKA6GJZdc7rjujdgqzTaz93jkGgc5P/jeWbaCHnMNc+w==} 1313 + '@floating-ui/dom@1.7.4': 1314 + resolution: {integrity: sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==} 1226 1315 1227 - '@floating-ui/react-dom@2.1.2': 1228 - resolution: {integrity: sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A==} 1316 + '@floating-ui/react-dom@2.1.6': 1317 + resolution: {integrity: sha512-4JX6rEatQEvlmgU80wZyq9RT96HZJa88q8hp0pBd+LrczeDI4o6uA2M+uvxngVHo4Ihr8uibXxH6+70zhAFrVw==} 1229 1318 peerDependencies: 1230 1319 react: '>=16.8.0' 1231 1320 react-dom: '>=16.8.0' 1232 1321 1233 - '@floating-ui/utils@0.2.8': 1234 - resolution: {integrity: sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==} 1322 + '@floating-ui/utils@0.2.10': 1323 + resolution: {integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==} 1235 1324 1236 - '@gorhom/bottom-sheet@5.1.6': 1237 - resolution: {integrity: sha512-0b5tQj4fTaZAjST1PnkCp0p7d8iRqMezibTcqc8Kkn3N23Vn6upORNTD1fH0bLfwRt6e0WnZ7DjAmq315lrcKQ==} 1325 + '@gorhom/bottom-sheet@5.2.6': 1326 + resolution: {integrity: sha512-vmruJxdiUGDg+ZYcDmS30XDhq/h/+QkINOI5LY/uGjx8cPGwgJW0H6AB902gNTKtccbiKe/rr94EwdmIEz+LAQ==} 1238 1327 peerDependencies: 1239 1328 '@types/react': '*' 1240 1329 '@types/react-native': '*' 1241 1330 react: '*' 1242 1331 react-native: '*' 1243 1332 react-native-gesture-handler: '>=2.16.1' 1244 - react-native-reanimated: '>=3.16.0' 1333 + react-native-reanimated: '>=3.16.0 || >=4.0.0-' 1245 1334 peerDependenciesMeta: 1246 1335 '@types/react': 1247 1336 optional: true ··· 1267 1356 resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==} 1268 1357 deprecated: Use @eslint/object-schema instead 1269 1358 1270 - '@ianvs/prettier-plugin-sort-imports@4.5.1': 1271 - resolution: {integrity: sha512-vOQwIyQHnHz0ikvHEQDzwUkNfX74o/7qNEpm9LiPtyBvCg/AU/DOkhwe1o92chPS1QzS6G7HeiO+OwIt8a358A==} 1359 + '@ianvs/prettier-plugin-sort-imports@4.7.0': 1360 + resolution: {integrity: sha512-soa2bPUJAFruLL4z/CnMfSEKGznm5ebz29fIa9PxYtu8HHyLKNE1NXAs6dylfw1jn/ilEIfO2oLLN6uAafb7DA==} 1272 1361 peerDependencies: 1273 1362 '@prettier/plugin-oxc': ^0.0.4 1274 1363 '@vue/compiler-sfc': 2.7.x || 3.x 1364 + content-tag: ^4.0.0 1275 1365 prettier: 2 || 3 || ^4.0.0-0 1366 + prettier-plugin-ember-template-tag: ^2.1.0 1276 1367 peerDependenciesMeta: 1277 1368 '@prettier/plugin-oxc': 1278 1369 optional: true 1279 1370 '@vue/compiler-sfc': 1371 + optional: true 1372 + content-tag: 1373 + optional: true 1374 + prettier-plugin-ember-template-tag: 1280 1375 optional: true 1281 1376 1282 1377 '@ipld/dag-cbor@7.0.3': 1283 1378 resolution: {integrity: sha512-1VVh2huHsuohdXC1bGJNE8WR72slZ9XE2T3wbBBq31dm7ZBatmKLLxrB+XAqafxfRFjv08RZmj/W/ZqaM13AuA==} 1284 1379 1380 + '@isaacs/balanced-match@4.0.1': 1381 + resolution: {integrity: sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==} 1382 + engines: {node: 20 || >=22} 1383 + 1384 + '@isaacs/brace-expansion@5.0.0': 1385 + resolution: {integrity: sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==} 1386 + engines: {node: 20 || >=22} 1387 + 1285 1388 '@isaacs/cliui@8.0.2': 1286 1389 resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} 1287 1390 engines: {node: '>=12'} ··· 1309 1412 '@jest/console@30.2.0': 1310 1413 resolution: {integrity: sha512-+O1ifRjkvYIkBqASKWgLxrpEhQAAE7hY77ALLUufSk5717KfOShg6IbqLmdsLMPdUiFvA2kTs0R7YZy+l0IzZQ==} 1311 1414 engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} 1415 + 1416 + '@jest/core@29.7.0': 1417 + resolution: {integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==} 1418 + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 1419 + peerDependencies: 1420 + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 1421 + peerDependenciesMeta: 1422 + node-notifier: 1423 + optional: true 1312 1424 1313 1425 '@jest/core@30.2.0': 1314 1426 resolution: {integrity: sha512-03W6IhuhjqTlpzh/ojut/pDB2LPRygyWX8ExpgHtQA8H/3K7+1vKmcINx5UzeOX1se6YEsBsOHQ1CRzf3fOwTQ==} ··· 1375 1487 resolution: {integrity: sha512-gWp7NfQW27LaBQz3TITS8L7ZCQ0TLvtmI//4OwlQRx4rnWxcPNIYjxZpDcN4+UlGxgm3jS5QPz8IPTCkb59wZA==} 1376 1488 engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} 1377 1489 1490 + '@jest/reporters@29.7.0': 1491 + resolution: {integrity: sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==} 1492 + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 1493 + peerDependencies: 1494 + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 1495 + peerDependenciesMeta: 1496 + node-notifier: 1497 + optional: true 1498 + 1378 1499 '@jest/reporters@30.2.0': 1379 1500 resolution: {integrity: sha512-DRyW6baWPqKMa9CzeiBjHwjd8XeAyco2Vt8XbcLFjiwCOEKOvy82GJ8QQnJE9ofsxCMPjH4MfH8fCWIHHDKpAQ==} 1380 1501 engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} ··· 1396 1517 resolution: {integrity: sha512-0aVxM3RH6DaiLcjj/b0KrIBZhSX1373Xci4l3cW5xiUWPctZ59zQ7jj4rqcJQ/Z8JuN/4wX3FpJSa3RssVvCug==} 1397 1518 engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} 1398 1519 1520 + '@jest/source-map@29.6.3': 1521 + resolution: {integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==} 1522 + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 1523 + 1399 1524 '@jest/source-map@30.0.1': 1400 1525 resolution: {integrity: sha512-MIRWMUUR3sdbP36oyNyhbThLHyJ2eEDClPCiHVbrYAe5g3CHRArIVpBw7cdSB5fr+ofSfIb2Tnsw8iEHL0PYQg==} 1401 1526 engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} ··· 1407 1532 '@jest/test-result@30.2.0': 1408 1533 resolution: {integrity: sha512-RF+Z+0CCHkARz5HT9mcQCBulb1wgCP3FBvl9VFokMX27acKphwyQsNuWH3c+ojd1LeWBLoTYoxF0zm6S/66mjg==} 1409 1534 engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} 1535 + 1536 + '@jest/test-sequencer@29.7.0': 1537 + resolution: {integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==} 1538 + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 1410 1539 1411 1540 '@jest/test-sequencer@30.2.0': 1412 1541 resolution: {integrity: sha512-wXKgU/lk8fKXMu/l5Hog1R61bL4q5GCdT6OJvdAFz1P+QrpoFuLU68eoKuVc4RbrTtNnTL5FByhWdLgOPSph+Q==} ··· 1446 1575 resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} 1447 1576 engines: {node: '>=6.0.0'} 1448 1577 1578 + '@jridgewell/source-map@0.3.11': 1579 + resolution: {integrity: sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==} 1580 + 1449 1581 '@jridgewell/source-map@0.3.6': 1450 1582 resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==} 1451 1583 1452 1584 '@jridgewell/sourcemap-codec@1.5.0': 1453 1585 resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} 1586 + 1587 + '@jridgewell/sourcemap-codec@1.5.5': 1588 + resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==} 1454 1589 1455 1590 '@jridgewell/trace-mapping@0.3.25': 1456 1591 resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} ··· 1464 1599 '@napi-rs/wasm-runtime@0.2.12': 1465 1600 resolution: {integrity: sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==} 1466 1601 1467 - '@noble/curves@1.8.1': 1468 - resolution: {integrity: sha512-warwspo+UYUPep0Q+vtdVB4Ugn8GGQj8iyB3gnRWsztmUHTI3S1nhdiWNsPUGL0vud7JlRRk1XEu7Lq1KGTnMQ==} 1602 + '@noble/curves@1.9.7': 1603 + resolution: {integrity: sha512-gbKGcRUYIjA3/zCCNaWDciTMFI0dCkvou3TL8Zmy5Nc7sJ47a0jtOeZoTaMxkuqRo9cRhjOdZJXegxYE5FN/xw==} 1469 1604 engines: {node: ^14.21.3 || >=16} 1470 1605 1471 - '@noble/hashes@1.6.1': 1472 - resolution: {integrity: sha512-pq5D8h10hHBjyqX+cfBm0i8JUXJ0UhczFc4r74zbuT9XgewFo2E3J1cOaGtdZynILNmQ685YWGzGE1Zv6io50w==} 1473 - engines: {node: ^14.21.3 || >=16} 1474 - 1475 - '@noble/hashes@1.7.1': 1476 - resolution: {integrity: sha512-B8XBPsn4vT/KJAGqDzbwztd+6Yte3P4V7iafm24bxgDe/mlRuK6xmWPuCNrKt2vDafZ8MfJLlchDG/vYafQEjQ==} 1606 + '@noble/hashes@1.8.0': 1607 + resolution: {integrity: sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A==} 1477 1608 engines: {node: ^14.21.3 || >=16} 1478 1609 1479 1610 '@nodelib/fs.scandir@2.1.5': ··· 1500 1631 resolution: {integrity: sha512-QNqXyfVS2wm9hweSYD2O7F0G06uurj9kZ96TRQE5Y9hU7+tgdZwIkbAKc5Ocy1HxEY2kuDQa6cQ1WRs/O5LFKA==} 1501 1632 engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} 1502 1633 1503 - '@pmmmwh/react-refresh-webpack-plugin@0.5.15': 1504 - resolution: {integrity: sha512-LFWllMA55pzB9D34w/wXUCf8+c+IYKuJDgxiZ3qMhl64KRMBHYM1I3VdGaD2BV5FNPV2/S2596bppxHbv2ZydQ==} 1634 + '@pmmmwh/react-refresh-webpack-plugin@0.5.17': 1635 + resolution: {integrity: sha512-tXDyE1/jzFsHXjhRZQ3hMl0IVhYe5qula43LDWIhVfjp9G/nT5OQY5AORVOrkEGAUltBJOfOWeETbmhm6kHhuQ==} 1505 1636 engines: {node: '>= 10.13'} 1506 1637 peerDependencies: 1507 1638 '@types/webpack': 4.x || 5.x ··· 1526 1657 webpack-plugin-serve: 1527 1658 optional: true 1528 1659 1529 - '@radix-ui/primitive@1.1.1': 1530 - resolution: {integrity: sha512-SJ31y+Q/zAyShtXJc8x83i9TYdbAfHZ++tUZnvjJJqFjzsdUnKsxPL6IEtBlxKkU7yzer//GQtZSV4GbldL3YA==} 1660 + '@radix-ui/primitive@1.1.3': 1661 + resolution: {integrity: sha512-JTF99U/6XIjCBo0wqkU5sK10glYe27MRRsfwoiq5zzOEZLHU3A3KCMa5X/azekYRCJ0HlwI0crAXS/5dEHTzDg==} 1531 1662 1532 - '@radix-ui/react-arrow@1.1.1': 1533 - resolution: {integrity: sha512-NaVpZfmv8SKeZbn4ijN2V3jlHA9ngBG16VnIIm22nUR0Yk8KUALyBxT3KYEUnNuch9sTE8UTsS3whzBgKOL30w==} 1663 + '@radix-ui/react-arrow@1.1.7': 1664 + resolution: {integrity: sha512-F+M1tLhO+mlQaOWspE8Wstg+z6PwxwRd8oQ8IXceWz92kfAmalTRf0EjrouQeo7QssEPfCn05B4Ihs1K9WQ/7w==} 1534 1665 peerDependencies: 1535 1666 '@types/react': '*' 1536 1667 '@types/react-dom': '*' ··· 1542 1673 '@types/react-dom': 1543 1674 optional: true 1544 1675 1545 - '@radix-ui/react-compose-refs@1.1.1': 1546 - resolution: {integrity: sha512-Y9VzoRDSJtgFMUCoiZBDVo084VQ5hfpXxVE+NgkdNsjiDBByiImMZKKhxMwCbdHvhlENG6a833CbFkOQvTricw==} 1676 + '@radix-ui/react-collection@1.1.7': 1677 + resolution: {integrity: sha512-Fh9rGN0MoI4ZFUNyfFVNU4y9LUz93u9/0K+yLgA2bwRojxM8JU1DyvvMBabnZPBgMWREAJvU2jjVzq+LrFUglw==} 1547 1678 peerDependencies: 1548 1679 '@types/react': '*' 1680 + '@types/react-dom': '*' 1549 1681 react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc 1682 + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc 1550 1683 peerDependenciesMeta: 1551 1684 '@types/react': 1552 1685 optional: true 1686 + '@types/react-dom': 1687 + optional: true 1553 1688 1554 1689 '@radix-ui/react-compose-refs@1.1.2': 1555 1690 resolution: {integrity: sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==} ··· 1560 1695 '@types/react': 1561 1696 optional: true 1562 1697 1563 - '@radix-ui/react-context@1.1.1': 1564 - resolution: {integrity: sha512-UASk9zi+crv9WteK/NU4PLvOoL3OuE6BWVKNF6hPRBtYBDXQ2u5iu3O59zUlJiTVvkyuycnqrztsHVJwcK9K+Q==} 1698 + '@radix-ui/react-context@1.1.2': 1699 + resolution: {integrity: sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==} 1565 1700 peerDependencies: 1566 1701 '@types/react': '*' 1567 1702 react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc ··· 1569 1704 '@types/react': 1570 1705 optional: true 1571 1706 1572 - '@radix-ui/react-dismissable-layer@1.1.3': 1573 - resolution: {integrity: sha512-onrWn/72lQoEucDmJnr8uczSNTujT0vJnA/X5+3AkChVPowr8n1yvIKIabhWyMQeMvvmdpsvcyDqx3X1LEXCPg==} 1707 + '@radix-ui/react-dialog@1.1.15': 1708 + resolution: {integrity: sha512-TCglVRtzlffRNxRMEyR36DGBLJpeusFcgMVD9PZEzAKnUs1lKCgX5u9BmC2Yg+LL9MgZDugFFs1Vl+Jp4t/PGw==} 1574 1709 peerDependencies: 1575 1710 '@types/react': '*' 1576 1711 '@types/react-dom': '*' ··· 1582 1717 '@types/react-dom': 1583 1718 optional: true 1584 1719 1585 - '@radix-ui/react-focus-guards@1.1.1': 1586 - resolution: {integrity: sha512-pSIwfrT1a6sIoDASCSpFwOasEwKTZWDw/iBdtnqKO7v6FeOzYJ7U53cPzYFVR3geGGXgVHaH+CdngrrAzqUGxg==} 1720 + '@radix-ui/react-direction@1.1.1': 1721 + resolution: {integrity: sha512-1UEWRX6jnOA2y4H5WczZ44gOOjTEmlqv1uNW4GAJEO5+bauCBhv8snY65Iw5/VOS/ghKN9gr2KjnLKxrsvoMVw==} 1587 1722 peerDependencies: 1588 1723 '@types/react': '*' 1589 1724 react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc ··· 1591 1726 '@types/react': 1592 1727 optional: true 1593 1728 1594 - '@radix-ui/react-focus-scope@1.1.1': 1595 - resolution: {integrity: sha512-01omzJAYRxXdG2/he/+xy+c8a8gCydoQ1yOxnWNcRhrrBW5W+RQJ22EK1SaO8tb3WoUsuEw7mJjBozPzihDFjA==} 1729 + '@radix-ui/react-dismissable-layer@1.1.11': 1730 + resolution: {integrity: sha512-Nqcp+t5cTB8BinFkZgXiMJniQH0PsUt2k51FUhbdfeKvc4ACcG2uQniY/8+h1Yv6Kza4Q7lD7PQV0z0oicE0Mg==} 1596 1731 peerDependencies: 1597 1732 '@types/react': '*' 1598 1733 '@types/react-dom': '*' ··· 1604 1739 '@types/react-dom': 1605 1740 optional: true 1606 1741 1607 - '@radix-ui/react-hover-card@1.1.4': 1608 - resolution: {integrity: sha512-QSUUnRA3PQ2UhvoCv3eYvMnCAgGQW+sTu86QPuNb+ZMi+ZENd6UWpiXbcWDQ4AEaKF9KKpCHBeaJz9Rw6lRlaQ==} 1742 + '@radix-ui/react-focus-guards@1.1.3': 1743 + resolution: {integrity: sha512-0rFg/Rj2Q62NCm62jZw0QX7a3sz6QCQU0LpZdNrJX8byRGaGVTqbrW9jAoIAHyMQqsNpeZ81YgSizOt5WXq0Pw==} 1744 + peerDependencies: 1745 + '@types/react': '*' 1746 + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc 1747 + peerDependenciesMeta: 1748 + '@types/react': 1749 + optional: true 1750 + 1751 + '@radix-ui/react-focus-scope@1.1.7': 1752 + resolution: {integrity: sha512-t2ODlkXBQyn7jkl6TNaw/MtVEVvIGelJDCG41Okq/KwUsJBwQ4XVZsHAVUkK4mBv3ewiAS3PGuUWuY2BoK4ZUw==} 1609 1753 peerDependencies: 1610 1754 '@types/react': '*' 1611 1755 '@types/react-dom': '*' ··· 1617 1761 '@types/react-dom': 1618 1762 optional: true 1619 1763 1620 - '@radix-ui/react-id@1.1.0': 1621 - resolution: {integrity: sha512-EJUrI8yYh7WOjNOqpoJaf1jlFIH2LvtgAl+YcFqNCa+4hj64ZXmPkAKOFs/ukjz3byN6bdb/AVUqHkI8/uWWMA==} 1764 + '@radix-ui/react-hover-card@1.1.15': 1765 + resolution: {integrity: sha512-qgTkjNT1CfKMoP0rcasmlH2r1DAiYicWsDsufxl940sT2wHNEWWv6FMWIQXWhVdmC1d/HYfbhQx60KYyAtKxjg==} 1622 1766 peerDependencies: 1623 1767 '@types/react': '*' 1768 + '@types/react-dom': '*' 1624 1769 react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc 1770 + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc 1625 1771 peerDependenciesMeta: 1626 1772 '@types/react': 1627 1773 optional: true 1774 + '@types/react-dom': 1775 + optional: true 1628 1776 1629 - '@radix-ui/react-popover@1.1.4': 1630 - resolution: {integrity: sha512-aUACAkXx8LaFymDma+HQVji7WhvEhpFJ7+qPz17Nf4lLZqtreGOFRiNQWQmhzp7kEWg9cOyyQJpdIMUMPc/CPw==} 1777 + '@radix-ui/react-id@1.1.1': 1778 + resolution: {integrity: sha512-kGkGegYIdQsOb4XjsfM97rXsiHaBwco+hFI66oO4s9LU+PLAC5oJ7khdOVFxkhsmlbpUqDAvXw11CluXP+jkHg==} 1779 + peerDependencies: 1780 + '@types/react': '*' 1781 + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc 1782 + peerDependenciesMeta: 1783 + '@types/react': 1784 + optional: true 1785 + 1786 + '@radix-ui/react-popover@1.1.15': 1787 + resolution: {integrity: sha512-kr0X2+6Yy/vJzLYJUPCZEc8SfQcf+1COFoAqauJm74umQhta9M7lNJHP7QQS3vkvcGLQUbWpMzwrXYwrYztHKA==} 1631 1788 peerDependencies: 1632 1789 '@types/react': '*' 1633 1790 '@types/react-dom': '*' ··· 1639 1796 '@types/react-dom': 1640 1797 optional: true 1641 1798 1642 - '@radix-ui/react-popper@1.2.1': 1643 - resolution: {integrity: sha512-3kn5Me69L+jv82EKRuQCXdYyf1DqHwD2U/sxoNgBGCB7K9TRc3bQamQ+5EPM9EvyPdli0W41sROd+ZU1dTCztw==} 1799 + '@radix-ui/react-popper@1.2.8': 1800 + resolution: {integrity: sha512-0NJQ4LFFUuWkE7Oxf0htBKS6zLkkjBH+hM1uk7Ng705ReR8m/uelduy1DBo0PyBXPKVnBA6YBlU94MBGXrSBCw==} 1644 1801 peerDependencies: 1645 1802 '@types/react': '*' 1646 1803 '@types/react-dom': '*' ··· 1652 1809 '@types/react-dom': 1653 1810 optional: true 1654 1811 1655 - '@radix-ui/react-portal@1.1.3': 1656 - resolution: {integrity: sha512-NciRqhXnGojhT93RPyDaMPfLH3ZSl4jjIFbZQ1b/vxvZEdHsBZ49wP9w8L3HzUQwep01LcWtkUvm0OVB5JAHTw==} 1812 + '@radix-ui/react-portal@1.1.9': 1813 + resolution: {integrity: sha512-bpIxvq03if6UNwXZ+HTK71JLh4APvnXntDc6XOX8UVq4XQOVl7lwok0AvIl+b8zgCw3fSaVTZMpAPPagXbKmHQ==} 1657 1814 peerDependencies: 1658 1815 '@types/react': '*' 1659 1816 '@types/react-dom': '*' ··· 1665 1822 '@types/react-dom': 1666 1823 optional: true 1667 1824 1668 - '@radix-ui/react-presence@1.1.2': 1669 - resolution: {integrity: sha512-18TFr80t5EVgL9x1SwF/YGtfG+l0BS0PRAlCWBDoBEiDQjeKgnNZRVJp/oVBl24sr3Gbfwc/Qpj4OcWTQMsAEg==} 1825 + '@radix-ui/react-presence@1.1.5': 1826 + resolution: {integrity: sha512-/jfEwNDdQVBCNvjkGit4h6pMOzq8bHkopq458dPt2lMjx+eBQUohZNG9A7DtO/O5ukSbxuaNGXMjHicgwy6rQQ==} 1670 1827 peerDependencies: 1671 1828 '@types/react': '*' 1672 1829 '@types/react-dom': '*' ··· 1678 1835 '@types/react-dom': 1679 1836 optional: true 1680 1837 1681 - '@radix-ui/react-primitive@2.0.1': 1682 - resolution: {integrity: sha512-sHCWTtxwNn3L3fH8qAfnF3WbUZycW93SM1j3NFDzXBiz8D6F5UTTy8G1+WFEaiCdvCVRJWj6N2R4Xq6HdiHmDg==} 1838 + '@radix-ui/react-primitive@2.1.3': 1839 + resolution: {integrity: sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==} 1683 1840 peerDependencies: 1684 1841 '@types/react': '*' 1685 1842 '@types/react-dom': '*' ··· 1691 1848 '@types/react-dom': 1692 1849 optional: true 1693 1850 1694 - '@radix-ui/react-progress@1.1.1': 1695 - resolution: {integrity: sha512-6diOawA84f/eMxFHcWut0aE1C2kyE9dOyCTQOMRR2C/qPiXz/X0SaiA/RLbapQaXUCmy0/hLMf9meSccD1N0pA==} 1851 + '@radix-ui/react-progress@1.1.7': 1852 + resolution: {integrity: sha512-vPdg/tF6YC/ynuBIJlk1mm7Le0VgW6ub6J2UWnTQ7/D23KXcPI1qy+0vBkgKgd38RCMJavBXpB83HPNFMTb0Fg==} 1696 1853 peerDependencies: 1697 1854 '@types/react': '*' 1698 1855 '@types/react-dom': '*' ··· 1704 1861 '@types/react-dom': 1705 1862 optional: true 1706 1863 1707 - '@radix-ui/react-slot@1.1.1': 1708 - resolution: {integrity: sha512-RApLLOcINYJA+dMVbOju7MYv1Mb2EBp2nH4HdDzXTSyaR5optlm6Otrz1euW3HbdOR8UmmFK06TD+A9frYWv+g==} 1864 + '@radix-ui/react-roving-focus@1.1.11': 1865 + resolution: {integrity: sha512-7A6S9jSgm/S+7MdtNDSb+IU859vQqJ/QAtcYQcfFC6W8RS4IxIZDldLR0xqCFZ6DCyrQLjLPsxtTNch5jVA4lA==} 1709 1866 peerDependencies: 1710 1867 '@types/react': '*' 1868 + '@types/react-dom': '*' 1711 1869 react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc 1870 + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc 1712 1871 peerDependenciesMeta: 1713 1872 '@types/react': 1873 + optional: true 1874 + '@types/react-dom': 1714 1875 optional: true 1715 1876 1716 1877 '@radix-ui/react-slot@1.2.0': ··· 1722 1883 '@types/react': 1723 1884 optional: true 1724 1885 1725 - '@radix-ui/react-tooltip@1.1.6': 1726 - resolution: {integrity: sha512-TLB5D8QLExS1uDn7+wH/bjEmRurNMTzNrtq7IjaS4kjion9NtzsTGkvR5+i7yc9q01Pi2KMM2cN3f8UG4IvvXA==} 1886 + '@radix-ui/react-slot@1.2.3': 1887 + resolution: {integrity: sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==} 1888 + peerDependencies: 1889 + '@types/react': '*' 1890 + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc 1891 + peerDependenciesMeta: 1892 + '@types/react': 1893 + optional: true 1894 + 1895 + '@radix-ui/react-tabs@1.1.13': 1896 + resolution: {integrity: sha512-7xdcatg7/U+7+Udyoj2zodtI9H/IIopqo+YOIcZOq1nJwXWBZ9p8xiu5llXlekDbZkca79a/fozEYQXIA4sW6A==} 1727 1897 peerDependencies: 1728 1898 '@types/react': '*' 1729 1899 '@types/react-dom': '*' ··· 1735 1905 '@types/react-dom': 1736 1906 optional: true 1737 1907 1738 - '@radix-ui/react-use-callback-ref@1.1.0': 1739 - resolution: {integrity: sha512-CasTfvsy+frcFkbXtSJ2Zu9JHpN8TYKxkgJGWbjiZhFivxaeW7rMeZt7QELGVLaYVfFMsKHjb7Ak0nMEe+2Vfw==} 1908 + '@radix-ui/react-tooltip@1.2.8': 1909 + resolution: {integrity: sha512-tY7sVt1yL9ozIxvmbtN5qtmH2krXcBCfjEiCgKGLqunJHvgvZG2Pcl2oQ3kbcZARb1BGEHdkLzcYGO8ynVlieg==} 1740 1910 peerDependencies: 1741 1911 '@types/react': '*' 1912 + '@types/react-dom': '*' 1742 1913 react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc 1914 + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc 1743 1915 peerDependenciesMeta: 1744 1916 '@types/react': 1745 1917 optional: true 1918 + '@types/react-dom': 1919 + optional: true 1746 1920 1747 - '@radix-ui/react-use-controllable-state@1.1.0': 1748 - resolution: {integrity: sha512-MtfMVJiSr2NjzS0Aa90NPTnvTSg6C/JLCV7ma0W6+OMV78vd8OyRpID+Ng9LxzsPbLeuBnWBA1Nq30AtBIDChw==} 1921 + '@radix-ui/react-use-callback-ref@1.1.1': 1922 + resolution: {integrity: sha512-FkBMwD+qbGQeMu1cOHnuGB6x4yzPjho8ap5WtbEJ26umhgqVXbhekKUQO+hZEL1vU92a3wHwdp0HAcqAUF5iDg==} 1749 1923 peerDependencies: 1750 1924 '@types/react': '*' 1751 1925 react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc ··· 1753 1927 '@types/react': 1754 1928 optional: true 1755 1929 1756 - '@radix-ui/react-use-escape-keydown@1.1.0': 1757 - resolution: {integrity: sha512-L7vwWlR1kTTQ3oh7g1O0CBF3YCyyTj8NmhLR+phShpyA50HCfBFKVJTpshm9PzLiKmehsrQzTYTpX9HvmC9rhw==} 1930 + '@radix-ui/react-use-controllable-state@1.2.2': 1931 + resolution: {integrity: sha512-BjasUjixPFdS+NKkypcyyN5Pmg83Olst0+c6vGov0diwTEo6mgdqVR6hxcEgFuh4QrAs7Rc+9KuGJ9TVCj0Zzg==} 1758 1932 peerDependencies: 1759 1933 '@types/react': '*' 1760 1934 react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc ··· 1762 1936 '@types/react': 1763 1937 optional: true 1764 1938 1765 - '@radix-ui/react-use-layout-effect@1.1.0': 1766 - resolution: {integrity: sha512-+FPE0rOdziWSrH9athwI1R0HDVbWlEhd+FR+aSDk4uWGmSJ9Z54sdZVDQPZAinJhJXwfT+qnj969mCsT2gfm5w==} 1939 + '@radix-ui/react-use-effect-event@0.0.2': 1940 + resolution: {integrity: sha512-Qp8WbZOBe+blgpuUT+lw2xheLP8q0oatc9UpmiemEICxGvFLYmHm9QowVZGHtJlGbS6A6yJ3iViad/2cVjnOiA==} 1767 1941 peerDependencies: 1768 1942 '@types/react': '*' 1769 1943 react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc ··· 1771 1945 '@types/react': 1772 1946 optional: true 1773 1947 1774 - '@radix-ui/react-use-rect@1.1.0': 1775 - resolution: {integrity: sha512-0Fmkebhr6PiseyZlYAOtLS+nb7jLmpqTrJyv61Pe68MKYW6OWdRE2kI70TaYY27u7H0lajqM3hSMMLFq18Z7nQ==} 1948 + '@radix-ui/react-use-escape-keydown@1.1.1': 1949 + resolution: {integrity: sha512-Il0+boE7w/XebUHyBjroE+DbByORGR9KKmITzbR7MyQ4akpORYP/ZmbhAr0DG7RmmBqoOnZdy2QlvajJ2QA59g==} 1776 1950 peerDependencies: 1777 1951 '@types/react': '*' 1778 1952 react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc ··· 1780 1954 '@types/react': 1781 1955 optional: true 1782 1956 1783 - '@radix-ui/react-use-size@1.1.0': 1784 - resolution: {integrity: sha512-XW3/vWuIXHa+2Uwcc2ABSfcCledmXhhQPlGbfcRXbiUQI5Icjcg19BGCZVKKInYbvUCut/ufbbLLPFC5cbb1hw==} 1957 + '@radix-ui/react-use-layout-effect@1.1.1': 1958 + resolution: {integrity: sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==} 1785 1959 peerDependencies: 1786 1960 '@types/react': '*' 1787 1961 react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc ··· 1789 1963 '@types/react': 1790 1964 optional: true 1791 1965 1792 - '@radix-ui/react-visually-hidden@1.1.1': 1793 - resolution: {integrity: sha512-vVfA2IZ9q/J+gEamvj761Oq1FpWgCDaNOOIfbPVp2MVPLEomUr5+Vf7kJGwQ24YxZSlQVar7Bes8kyTo5Dshpg==} 1966 + '@radix-ui/react-use-rect@1.1.1': 1967 + resolution: {integrity: sha512-QTYuDesS0VtuHNNvMh+CjlKJ4LJickCMUAqjlE3+j8w+RlRpwyX3apEQKGFzbZGdo7XNG1tXa+bQqIE7HIXT2w==} 1968 + peerDependencies: 1969 + '@types/react': '*' 1970 + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc 1971 + peerDependenciesMeta: 1972 + '@types/react': 1973 + optional: true 1974 + 1975 + '@radix-ui/react-use-size@1.1.1': 1976 + resolution: {integrity: sha512-ewrXRDTAqAXlkl6t/fkXWNAhFX9I+CkKlw6zjEwk86RSPKwZr3xpBRso655aqYafwtnbpHLj6toFzmd6xdVptQ==} 1977 + peerDependencies: 1978 + '@types/react': '*' 1979 + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc 1980 + peerDependenciesMeta: 1981 + '@types/react': 1982 + optional: true 1983 + 1984 + '@radix-ui/react-visually-hidden@1.2.3': 1985 + resolution: {integrity: sha512-pzJq12tEaaIhqjbzpCuv/OypJY/BPavOofm+dbab+MHLajy277+1lLm6JFcGgF5eskJ6mquGirhXY2GD/8u8Ug==} 1794 1986 peerDependencies: 1795 1987 '@types/react': '*' 1796 1988 '@types/react-dom': '*' ··· 1802 1994 '@types/react-dom': 1803 1995 optional: true 1804 1996 1805 - '@radix-ui/rect@1.1.0': 1806 - resolution: {integrity: sha512-A9+lCBZoaMJlVKcRBz2YByCG+Cp2t6nAnMnNba+XiWxnj6r4JUFqfsgwocMBZU9LPtdxC6wB56ySYpc7LQIoJg==} 1997 + '@radix-ui/rect@1.1.1': 1998 + resolution: {integrity: sha512-HPwpGIzkl28mWyZqG52jiqDJ12waP11Pa1lGoiyUkIEuMLBP0oeK/C89esbXrxsky5we7dfd8U58nm0SgAWpVw==} 1807 1999 1808 - '@react-native-async-storage/async-storage@2.1.2': 1809 - resolution: {integrity: sha512-dvlNq4AlGWC+ehtH12p65+17V0Dx7IecOWl6WanF2ja38O1Dcjjvn7jVzkUHJ5oWkQBlyASurTPlTHgKXyYiow==} 2000 + '@react-native-async-storage/async-storage@2.2.0': 2001 + resolution: {integrity: sha512-gvRvjR5JAaUZF8tv2Kcq/Gbt3JHwbKFYfmb445rhOj6NUMx3qPLixmDx5pZAyb9at1bYvJ4/eTUipU5aki45xw==} 1810 2002 peerDependencies: 1811 2003 react-native: ^0.0.0-0 || >=0.65 <1.0 1812 2004 1813 - '@react-native-picker/picker@2.11.0': 1814 - resolution: {integrity: sha512-QuZU6gbxmOID5zZgd/H90NgBnbJ3VV6qVzp6c7/dDrmWdX8S0X5YFYgDcQFjE3dRen9wB9FWnj2VVdPU64adSg==} 2005 + '@react-native-picker/picker@2.11.2': 2006 + resolution: {integrity: sha512-2zyFdW4jgHjF+NeuDZ4nl3hJ+8suey69bI3yljqhNyowfklW2NwNrdDUaJ2iwtPCpk2pt7834aPF8TI6iyZRhA==} 1815 2007 peerDependencies: 1816 2008 react: '*' 1817 2009 react-native: '*' 1818 2010 1819 - '@react-native/assets-registry@0.79.2': 1820 - resolution: {integrity: sha512-5h2Z7/+/HL/0h88s0JHOdRCW4CXMCJoROxqzHqxdrjGL6EBD1DdaB4ZqkCOEVSW4Vjhir5Qb97C8i/MPWEYPtg==} 1821 - engines: {node: '>=18'} 2011 + '@react-native/assets-registry@0.81.4': 2012 + resolution: {integrity: sha512-AMcDadefBIjD10BRqkWw+W/VdvXEomR6aEZ0fhQRAv7igrBzb4PTn4vHKYg+sUK0e3wa74kcMy2DLc/HtnGcMA==} 2013 + engines: {node: '>= 20.19.4'} 1822 2014 1823 - '@react-native/babel-plugin-codegen@0.79.5': 1824 - resolution: {integrity: sha512-Rt/imdfqXihD/sn0xnV4flxxb1aLLjPtMF1QleQjEhJsTUPpH4TFlfOpoCvsrXoDl4OIcB1k4FVM24Ez92zf5w==} 1825 - engines: {node: '>=18'} 2015 + '@react-native/babel-plugin-codegen@0.81.4': 2016 + resolution: {integrity: sha512-6ztXf2Tl2iWznyI/Da/N2Eqymt0Mnn69GCLnEFxFbNdk0HxHPZBNWU9shTXhsLWOL7HATSqwg/bB1+3kY1q+mA==} 2017 + engines: {node: '>= 20.19.4'} 1826 2018 1827 - '@react-native/babel-preset@0.79.5': 1828 - resolution: {integrity: sha512-GDUYIWslMLbdJHEgKNfrOzXk8EDKxKzbwmBXUugoiSlr6TyepVZsj3GZDLEFarOcTwH1EXXHJsixihk8DCRQDA==} 1829 - engines: {node: '>=18'} 2019 + '@react-native/babel-preset@0.81.4': 2020 + resolution: {integrity: sha512-VYj0c/cTjQJn/RJ5G6P0L9wuYSbU9yGbPYDHCKstlQZQWkk+L9V8ZDbxdJBTIei9Xl3KPQ1odQ4QaeW+4v+AZg==} 2021 + engines: {node: '>= 20.19.4'} 1830 2022 peerDependencies: 1831 2023 '@babel/core': '*' 1832 2024 1833 - '@react-native/codegen@0.79.2': 1834 - resolution: {integrity: sha512-8JTlGLuLi1p8Jx2N/enwwEd7/2CfrqJpv90Cp77QLRX3VHF2hdyavRIxAmXMwN95k+Me7CUuPtqn2X3IBXOWYg==} 1835 - engines: {node: '>=18'} 2025 + '@react-native/codegen@0.81.4': 2026 + resolution: {integrity: sha512-LWTGUTzFu+qOQnvkzBP52B90Ym3stZT8IFCzzUrppz8Iwglg83FCtDZAR4yLHI29VY/x/+pkcWAMCl3739XHdw==} 2027 + engines: {node: '>= 20.19.4'} 1836 2028 peerDependencies: 1837 2029 '@babel/core': '*' 1838 2030 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'} 2031 + '@react-native/community-cli-plugin@0.81.4': 2032 + resolution: {integrity: sha512-8mpnvfcLcnVh+t1ok6V9eozWo8Ut+TZhz8ylJ6gF9d6q9EGDQX6s8jenan5Yv/pzN4vQEKI4ib2pTf/FELw+SA==} 2033 + engines: {node: '>= 20.19.4'} 1848 2034 peerDependencies: 1849 2035 '@react-native-community/cli': '*' 2036 + '@react-native/metro-config': '*' 1850 2037 peerDependenciesMeta: 1851 2038 '@react-native-community/cli': 1852 2039 optional: true 2040 + '@react-native/metro-config': 2041 + optional: true 1853 2042 1854 - '@react-native/debugger-frontend@0.79.2': 1855 - resolution: {integrity: sha512-cGmC7X6kju76DopSBNc+PRAEetbd7TWF9J9o84hOp/xL3ahxR2kuxJy0oJX8Eg8oehhGGEXTuMKHzNa3rDBeSg==} 1856 - engines: {node: '>=18'} 2043 + '@react-native/debugger-frontend@0.81.4': 2044 + resolution: {integrity: sha512-SU05w1wD0nKdQFcuNC9D6De0ITnINCi8MEnx9RsTD2e4wN83ukoC7FpXaPCYyP6+VjFt5tUKDPgP1O7iaNXCqg==} 2045 + engines: {node: '>= 20.19.4'} 1857 2046 1858 - '@react-native/debugger-frontend@0.79.5': 1859 - resolution: {integrity: sha512-WQ49TRpCwhgUYo5/n+6GGykXmnumpOkl4Lr2l2o2buWU9qPOwoiBqJAtmWEXsAug4ciw3eLiVfthn5ufs0VB0A==} 1860 - engines: {node: '>=18'} 2047 + '@react-native/dev-middleware@0.81.4': 2048 + resolution: {integrity: sha512-hu1Wu5R28FT7nHXs2wWXvQ++7W7zq5GPY83llajgPlYKznyPLAY/7bArc5rAzNB7b0kwnlaoPQKlvD/VP9LZug==} 2049 + engines: {node: '>= 20.19.4'} 1861 2050 1862 - '@react-native/dev-middleware@0.79.2': 1863 - resolution: {integrity: sha512-9q4CpkklsAs1L0Bw8XYCoqqyBSrfRALGEw4/r0EkR38Y/6fVfNfdsjSns0pTLO6h0VpxswK34L/hm4uK3MoLHw==} 1864 - engines: {node: '>=18'} 2051 + '@react-native/gradle-plugin@0.81.4': 2052 + resolution: {integrity: sha512-T7fPcQvDDCSusZFVSg6H1oVDKb/NnVYLnsqkcHsAF2C2KGXyo3J7slH/tJAwNfj/7EOA2OgcWxfC1frgn9TQvw==} 2053 + engines: {node: '>= 20.19.4'} 1865 2054 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'} 2055 + '@react-native/js-polyfills@0.81.4': 2056 + resolution: {integrity: sha512-sr42FaypKXJHMVHhgSbu2f/ZJfrLzgaoQ+HdpRvKEiEh2mhFf6XzZwecyLBvWqf2pMPZa+CpPfNPiejXjKEy8w==} 2057 + engines: {node: '>= 20.19.4'} 1877 2058 1878 2059 '@react-native/normalize-colors@0.74.88': 1879 2060 resolution: {integrity: sha512-He5oTwPBxvXrxJ91dZzpxR7P+VYmc9IkJfhuH8zUiU50ckrt+xWNjtVugPdUv4LuVjmZ36Vk2EX8bl1gVn2dVA==} 1880 2061 1881 - '@react-native/normalize-colors@0.79.2': 1882 - resolution: {integrity: sha512-+b+GNrupWrWw1okHnEENz63j7NSMqhKeFMOyzYLBwKcprG8fqJQhDIGXfizKdxeIa5NnGSAevKL1Ev1zJ56X8w==} 1883 - 1884 - '@react-native/normalize-colors@0.79.5': 1885 - resolution: {integrity: sha512-nGXMNMclZgzLUxijQQ38Dm3IAEhgxuySAWQHnljFtfB0JdaMwpe0Ox9H7Tp2OgrEA+EMEv+Od9ElKlHwGKmmvQ==} 2062 + '@react-native/normalize-colors@0.81.4': 2063 + resolution: {integrity: sha512-9nRRHO1H+tcFqjb9gAM105Urtgcanbta2tuqCVY0NATHeFPDEAB7gPyiLxCHKMi1NbhP6TH0kxgSWXKZl1cyRg==} 1886 2064 1887 - '@react-native/typescript-config@0.76.5': 1888 - resolution: {integrity: sha512-dRbY4XQTUUxR5Oq+S+2/5JQVU6WL0qvNnAz51jiXllC+hp5L4bljSxlzaj5CJ9vzGNFzm56m5Y9Q6MltoIU4Cw==} 2065 + '@react-native/typescript-config@0.76.9': 2066 + resolution: {integrity: sha512-68xGswpZOrCvDd1Wu6H7ZdluIDmNbN0Uq8RVnm+IQMnYx90fVHL+iNW4hClgoY/TIcsWnQQL6shES4n/1kz/fg==} 1889 2067 1890 - '@react-native/virtualized-lists@0.79.2': 1891 - resolution: {integrity: sha512-9G6ROJeP+rdw9Bvr5ruOlag11ET7j1z/En1riFFNo6W3xZvJY+alCuH1ttm12y9+zBm4n8jwCk4lGhjYaV4dKw==} 1892 - engines: {node: '>=18'} 2068 + '@react-native/virtualized-lists@0.81.4': 2069 + resolution: {integrity: sha512-hBM+rMyL6Wm1Q4f/WpqGsaCojKSNUBqAXLABNGoWm1vabZ7cSnARMxBvA/2vo3hLcoR4v7zDK8tkKm9+O0LjVA==} 2070 + engines: {node: '>= 20.19.4'} 1893 2071 peerDependencies: 1894 - '@types/react': ^19.0.0 2072 + '@types/react': ^19.1.0 1895 2073 react: '*' 1896 2074 react-native: '*' 1897 2075 peerDependenciesMeta: 1898 2076 '@types/react': 1899 2077 optional: true 1900 2078 1901 - '@react-navigation/bottom-tabs@7.3.14': 1902 - resolution: {integrity: sha512-s2qinJggS2HYZdCOey9A+fN+bNpWeEKwiL/FjAVOTcv+uofxPWN6CtEZUZGPEjfRjis/srURBmCmpNZSI6sQ9Q==} 2079 + '@react-navigation/bottom-tabs@7.4.8': 2080 + resolution: {integrity: sha512-W85T9f5sPA2zNnkxBO0PF0Jg9CRAMYqD9hY20dAhuVM5I+qiCqhW7qLveK59mlbtdXuGmieit6FK3inKmXzL7A==} 1903 2081 peerDependencies: 1904 - '@react-navigation/native': ^7.1.10 2082 + '@react-navigation/native': ^7.1.18 1905 2083 react: '>= 18.2.0' 1906 2084 react-native: '*' 1907 2085 react-native-safe-area-context: '>= 4.0.0' 1908 2086 react-native-screens: '>= 4.0.0' 1909 2087 1910 - '@react-navigation/core@7.10.0': 1911 - resolution: {integrity: sha512-qZBA5gGm+9liT4+EHk+kl9apwvqh7HqhLF1XeX6SQRmC/n2QI0u1B8OevKc+EPUDEM9Od15IuwT/GRbSs7/Umw==} 2088 + '@react-navigation/core@7.12.4': 2089 + resolution: {integrity: sha512-xLFho76FA7v500XID5z/8YfGTvjQPw7/fXsq4BIrVSqetNe/o/v+KAocEw4ots6kyv3XvSTyiWKh2g3pN6xZ9Q==} 1912 2090 peerDependencies: 1913 2091 react: '>= 18.2.0' 1914 2092 1915 - '@react-navigation/elements@2.4.3': 1916 - resolution: {integrity: sha512-psoNmnZ0DQIt9nxxPITVLtYW04PGCAfnmd/Pcd3yhiBs93aj+HYKH+SDZDpUnXMf3BN7Wvo4+jPI+/Xjqb+m9w==} 2093 + '@react-navigation/elements@2.6.5': 2094 + resolution: {integrity: sha512-HOaekvFeoqKyaSKP2hakL7OUnw0jIhk/1wMjcovUKblT76LMTumZpriqsc30m/Vnyy1a8zgp4VsuA1xftcalgQ==} 1917 2095 peerDependencies: 1918 2096 '@react-native-masked-view/masked-view': '>= 0.2.0' 1919 - '@react-navigation/native': ^7.1.10 2097 + '@react-navigation/native': ^7.1.18 1920 2098 react: '>= 18.2.0' 1921 2099 react-native: '*' 1922 2100 react-native-safe-area-context: '>= 4.0.0' ··· 1924 2102 '@react-native-masked-view/masked-view': 1925 2103 optional: true 1926 2104 1927 - '@react-navigation/native-stack@7.3.14': 1928 - resolution: {integrity: sha512-45Sf7ReqSCIySXS5nrKtLGmNlFXm5x+u32YQMwKDONCqVGOBCfo4ryKqeQq1EMJ7Py6IDyOwHMhA+jhNOxnfPw==} 2105 + '@react-navigation/native-stack@7.3.27': 2106 + resolution: {integrity: sha512-bbbud0pT63tGh706hQD/A3Z9gF1O2HtQ0dJqaiYzHzPy9wSOi82i721530tJkmccevAemUrZbEeEC5mxVo1DzQ==} 1929 2107 peerDependencies: 1930 - '@react-navigation/native': ^7.1.10 2108 + '@react-navigation/native': ^7.1.18 1931 2109 react: '>= 18.2.0' 1932 2110 react-native: '*' 1933 2111 react-native-safe-area-context: '>= 4.0.0' 1934 2112 react-native-screens: '>= 4.0.0' 1935 2113 1936 - '@react-navigation/native@7.1.10': 1937 - resolution: {integrity: sha512-Ug4IML0DkAxZTMF/E7lyyLXSclkGAYElY2cxZWITwfBjtlVeda0NjsdnTWY5EGjnd7bwvhTIUC+CO6qSlrDn5A==} 2114 + '@react-navigation/native@7.1.18': 2115 + resolution: {integrity: sha512-DZgd6860dxcq3YX7UzIXeBr6m3UgXvo9acxp5jiJyIZXdR00Br9JwVkO7e0bUeTA2d3Z8dsmtAR84Y86NnH64Q==} 1938 2116 peerDependencies: 1939 2117 react: '>= 18.2.0' 1940 2118 react-native: '*' 1941 2119 1942 - '@react-navigation/routers@7.4.0': 1943 - resolution: {integrity: sha512-th5THnuWKJlmr7GGHiicy979di11ycDWub9iIXbEDvQwmwmsRzppmVbfs2nD8bC/MgyMgqWu/gxfys+HqN+kcw==} 2120 + '@react-navigation/routers@7.5.1': 2121 + resolution: {integrity: sha512-pxipMW/iEBSUrjxz2cDD7fNwkqR4xoi0E/PcfTQGCcdJwLoaxzab5kSadBLj1MTJyT0YRrOXL9umHpXtp+Dv4w==} 1944 2122 1945 - '@rn-primitives/avatar@1.1.0': 1946 - resolution: {integrity: sha512-GqhsQHeY7OP9oe3MZkl1Z0IbhIiuQX4+FxafoRK/Aes2m5386nMGK0NBaZBJy06WnFQBN52C8yq+LYv27sA86A==} 2123 + '@rn-primitives/avatar@1.2.0': 2124 + resolution: {integrity: sha512-ic029KaJRADdjmjPzpaSaZ9QrtgGF8DnAA7TcQ/gYqUfLXjkbfzsjARKv7NtEoJLjWAcjIAK6R8JkcbMfPtYig==} 1947 2125 peerDependencies: 1948 2126 react: '*' 1949 2127 react-native: '*' ··· 1954 2132 react-native-web: 1955 2133 optional: true 1956 2134 1957 - '@rn-primitives/hooks@1.1.0': 1958 - resolution: {integrity: sha512-+WP4i395UDXZueL6PE0PiyLgheD4EbZ0ONgVaHjbrWjGKalfXuCyVNeaN79y3Aw9sY+SYQm7P9RckBAgi0C5xQ==} 2135 + '@rn-primitives/hooks@1.3.0': 2136 + resolution: {integrity: sha512-BR97reSu7uVDpyMeQdRJHT0w8KdS6jdYnOL6xQtqS2q3H6N7vXBlX4LFERqJZphD+aziJFIAJ3HJF1vtt6XlpQ==} 1959 2137 peerDependencies: 1960 2138 react: '*' 1961 2139 react-native: '*' ··· 1966 2144 react-native-web: 1967 2145 optional: true 1968 2146 1969 - '@rn-primitives/hover-card@1.1.0': 1970 - resolution: {integrity: sha512-djnts2OqZPNup2n6gnvO+ndOcDNBBeMVzf1U1kp3V2DNsk+63D8/gj8kBygMk33/EzjtxyvIIZrqGe1/8HrGlw==} 2147 + '@rn-primitives/hover-card@1.2.0': 2148 + resolution: {integrity: sha512-YesqV3rEIhvsarA1Aq6pmkNlmQn5rWpmjHP4s4JIrceaQjSwl9Rmnvzp7qHg0CN3AOd803hNyplMn9vn8Z3g6Q==} 1971 2149 peerDependencies: 1972 2150 '@rn-primitives/portal': '*' 1973 2151 react: '*' ··· 1979 2157 react-native-web: 1980 2158 optional: true 1981 2159 1982 - '@rn-primitives/popover@1.1.0': 1983 - resolution: {integrity: sha512-2LU6sGdITvmRtKJwfGDHZ5pFz0eOySlw2lJERqrfAmMiiYWhq4WItkBh386u/IzlAyAoPVQVDmIrYgQVH1rkfA==} 2160 + '@rn-primitives/popover@1.2.0': 2161 + resolution: {integrity: sha512-QJ2T+RcF1FyTQy58Nz8Bwy5lnan5Rt7xQPl8rB2n7DBCGOnZNhEub5LoHm+gjmskGo9t1JyNKoEAD7I4j/7jQQ==} 1984 2162 peerDependencies: 1985 2163 '@rn-primitives/portal': '*' 1986 2164 react: '*' ··· 2004 2182 react-native-web: 2005 2183 optional: true 2006 2184 2007 - '@rn-primitives/progress@1.1.0': 2008 - resolution: {integrity: sha512-TeiQQhH983UkueOybjia4qy3JAI9qsx2s3Tge3ldQpe7K00ql8mDDhand+LR4/uEHtQHjLI6Z/rIGrh7Xdld/Q==} 2185 + '@rn-primitives/progress@1.2.0': 2186 + resolution: {integrity: sha512-bbO4WGSNAd2idYDW0ma4xCX9UFOjNK3U4F4hLRhMKglz3c/QVYfpKvlGQ0Y0d7kpelA7MQizvFeqGGYfxSuisw==} 2009 2187 peerDependencies: 2010 2188 react: '*' 2011 2189 react-native: '*' ··· 2016 2194 react-native-web: 2017 2195 optional: true 2018 2196 2019 - '@rn-primitives/slot@1.1.0': 2020 - resolution: {integrity: sha512-/6LkEPMoGGyJiCAYo3MTCy9letbH6SIm5Dw6wal/ypq3Jvar9llYJstIP2KSZNhx3PmZMN1a581KVgNZ2Jyt5g==} 2197 + '@rn-primitives/slot@1.2.0': 2198 + resolution: {integrity: sha512-cpbn+JLjSeq3wcA4uqgFsUimMrWYWx2Ks7r5rkwd1ds1utxynsGkLOKpYVQkATwWrYhtcoF1raxIKEqXuMN+/w==} 2021 2199 peerDependencies: 2022 2200 react: '*' 2023 2201 react-native: '*' ··· 2028 2206 react-native-web: 2029 2207 optional: true 2030 2208 2031 - '@rn-primitives/tooltip@1.1.0': 2032 - resolution: {integrity: sha512-uNMLCqDOueYv2//nh19RiYqYRdytn86K+2rmBStz1u7PFbsqfUJE1Q3FxKm/yvFXK2loHJAoHkzRQCClqA3InA==} 2209 + '@rn-primitives/tooltip@1.2.0': 2210 + resolution: {integrity: sha512-Fn1Y/maW1o64QI+nmBj2jBI/KdCEXv8kVGbDjjDFI68KUxDjuig/hACLiD7fEbLBhZqB/QnHUSRsnPUUOOVGdA==} 2033 2211 peerDependencies: 2034 2212 '@rn-primitives/portal': '*' 2035 2213 react: '*' ··· 2041 2219 react-native-web: 2042 2220 optional: true 2043 2221 2044 - '@rn-primitives/types@1.1.0': 2045 - resolution: {integrity: sha512-duS4La965KsVVAeytcSFDJUafw6ZScvejgxlFkwqzW06pDBRMxwfunmZmf3JZ82P/2xaEVPIGseeyblertC/+g==} 2222 + '@rn-primitives/types@1.2.0': 2223 + resolution: {integrity: sha512-b+6zKgdKVqAfaFPSfhwlQL0dnPQXPpW890m3eguC0VDI1eOsoEvUfVb6lmgH4bum9MmI0xymq4tOUI/fsKLoCQ==} 2046 2224 peerDependencies: 2047 2225 react: '*' 2048 2226 react-native: '*' ··· 2078 2256 '@sinonjs/fake-timers@13.0.5': 2079 2257 resolution: {integrity: sha512-36/hTbH2uaWuGVERyC6da9YwGWnzUZXuPro/F2LfsdOsLnCojz/iSH8MxUt/FD2S5XBSVPhmArFUXcpCQ2Hkiw==} 2080 2258 2259 + '@testing-library/jest-native@5.4.3': 2260 + resolution: {integrity: sha512-/sSDGaOuE+PJ1Z9Kp4u7PQScSVVXGud59I/qsBFFJvIbcn4P6yYw6cBnBmbPF+X9aRIsTJRDl6gzw5ZkJNm66w==} 2261 + deprecated: |- 2262 + DEPRECATED: This package is no longer maintained. 2263 + Please use the built-in Jest matchers available in @testing-library/react-native v12.4+. 2264 + 2265 + See migration guide: https://callstack.github.io/react-native-testing-library/docs/migration/jest-matchers 2266 + peerDependencies: 2267 + react: '>=16.0.0' 2268 + react-native: '>=0.59' 2269 + react-test-renderer: '>=16.0.0' 2270 + 2271 + '@testing-library/react-native@13.3.3': 2272 + resolution: {integrity: sha512-k6Mjsd9dbZgvY4Bl7P1NIpePQNi+dfYtlJ5voi9KQlynxSyQkfOgJmYGCYmw/aSgH/rUcFvG8u5gd4npzgRDyg==} 2273 + engines: {node: '>=18'} 2274 + peerDependencies: 2275 + jest: '>=29.0.0' 2276 + react: '>=18.2.0' 2277 + react-native: '>=0.71' 2278 + react-test-renderer: '>=18.2.0' 2279 + peerDependenciesMeta: 2280 + jest: 2281 + optional: true 2282 + 2081 2283 '@tootallnate/once@2.0.0': 2082 2284 resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} 2083 2285 engines: {node: '>= 10'} ··· 2121 2323 '@types/eslint@9.6.1': 2122 2324 resolution: {integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==} 2123 2325 2124 - '@types/estree@1.0.6': 2125 - resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} 2326 + '@types/estree@1.0.8': 2327 + resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} 2126 2328 2127 2329 '@types/graceful-fs@4.1.9': 2128 2330 resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==} ··· 2139 2341 '@types/istanbul-reports@3.0.4': 2140 2342 resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==} 2141 2343 2344 + '@types/jest@30.0.0': 2345 + resolution: {integrity: sha512-XTYugzhuwqWjws0CVz8QpM36+T+Dz5mTEBKhNs/esGLnCIlGdRy+Dq78NRjd7ls7r8BC8ZRMOrKlkO1hU0JOwA==} 2346 + 2142 2347 '@types/jsdom@20.0.1': 2143 2348 resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==} 2144 2349 ··· 2148 2353 '@types/json5@0.0.29': 2149 2354 resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} 2150 2355 2151 - '@types/node@20.17.10': 2152 - resolution: {integrity: sha512-/jrvh5h6NXhEauFFexRin69nA0uHJ5gwk4iDivp/DeoEua3uwCUto6PC86IpRITBOs4+6i2I56K5x5b6WYGXHA==} 2356 + '@types/node@20.19.19': 2357 + resolution: {integrity: sha512-pb1Uqj5WJP7wrcbLU7Ru4QtA0+3kAXrkutGiD26wUKzSMgNNaPARTUDQmElUXp64kh3cWdou3Q0C7qwwxqSFmg==} 2358 + 2359 + '@types/node@22.18.8': 2360 + resolution: {integrity: sha512-pAZSHMiagDR7cARo/cch1f3rXy0AEXwsVsVH09FcyeJVAzCnGgmYis7P3JidtTUjyadhTeSo8TgRPswstghDaw==} 2361 + 2362 + '@types/react-dom@19.1.11': 2363 + resolution: {integrity: sha512-3BKc/yGdNTYQVVw4idqHtSOcFsgGuBbMveKCOgF8wQ5QtrYOc3jDIlzg3jef04zcXFIHLelyGlj0T+BJ8+KN+w==} 2364 + peerDependencies: 2365 + '@types/react': ^19.0.0 2366 + 2367 + '@types/react-dom@19.2.0': 2368 + resolution: {integrity: sha512-brtBs0MnE9SMx7px208g39lRmC5uHZs96caOJfTjFcYSLHNamvaSMfJNagChVNkup2SdtOxKX1FDBkRSJe1ZAg==} 2369 + peerDependencies: 2370 + '@types/react': ^19.2.0 2153 2371 2154 - '@types/node@22.10.2': 2155 - resolution: {integrity: sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ==} 2372 + '@types/react-test-renderer@19.1.0': 2373 + resolution: {integrity: sha512-XD0WZrHqjNrxA/MaR9O22w/RNidWR9YZmBdRGI7wcnWGrv/3dA8wKCJ8m63Sn+tLJhcjmuhOi629N66W6kgWzQ==} 2156 2374 2157 - '@types/react-dom@18.3.1': 2158 - resolution: {integrity: sha512-qW1Mfv8taImTthu4KoXgDfLuk4bydU6Q/TkADnDWWHwi4NX4BR+LWfTp2sVmTqRrsHvyDDTelgelxJ+SsejKKQ==} 2375 + '@types/react@19.1.17': 2376 + resolution: {integrity: sha512-Qec1E3mhALmaspIrhWt9jkQMNdw6bReVu64mjvhbhq2NFPftLPVr+l1SZgmw/66WwBNpDh7ao5AT6gF5v41PFA==} 2159 2377 2160 - '@types/react@19.0.14': 2161 - resolution: {integrity: sha512-ixLZ7zG7j1fM0DijL9hDArwhwcCb4vqmePgwtV0GfnkHRSCUEv4LvzarcTdhoqgyMznUx/EhoTUv31CKZzkQlw==} 2378 + '@types/react@19.2.0': 2379 + resolution: {integrity: sha512-1LOH8xovvsKsCBq1wnT4ntDUdCJKmnEakhsuoUSy6ExlHCkGP2hqnatagYTgFk6oeL0VU31u7SNjunPN+GchtA==} 2162 2380 2163 2381 '@types/stack-utils@2.0.3': 2164 2382 resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} ··· 2172 2390 '@types/yargs@17.0.33': 2173 2391 resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==} 2174 2392 2175 - '@typescript-eslint/eslint-plugin@8.19.0': 2176 - resolution: {integrity: sha512-NggSaEZCdSrFddbctrVjkVZvFC6KGfKfNK0CU7mNK/iKHGKbzT4Wmgm08dKpcZECBu9f5FypndoMyRHkdqfT1Q==} 2177 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 2393 + '@typescript-eslint/eslint-plugin@7.18.0': 2394 + resolution: {integrity: sha512-94EQTWZ40mzBc42ATNIBimBEDltSJ9RQHCC8vc/PDbxi4k8dVwUAv4o98dk50M1zB+JGFxp43FP7f8+FP8R6Sw==} 2395 + engines: {node: ^18.18.0 || >=20.0.0} 2178 2396 peerDependencies: 2179 - '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 2180 - eslint: ^8.57.0 || ^9.0.0 2181 - typescript: '>=4.8.4 <5.8.0' 2397 + '@typescript-eslint/parser': ^7.0.0 2398 + eslint: ^8.56.0 2399 + typescript: '*' 2400 + peerDependenciesMeta: 2401 + typescript: 2402 + optional: true 2182 2403 2183 - '@typescript-eslint/parser@8.19.0': 2184 - resolution: {integrity: sha512-6M8taKyOETY1TKHp0x8ndycipTVgmp4xtg5QpEZzXxDhNvvHOJi5rLRkLr8SK3jTgD5l4fTlvBiRdfsuWydxBw==} 2185 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 2404 + '@typescript-eslint/parser@7.18.0': 2405 + resolution: {integrity: sha512-4Z+L8I2OqhZV8qA132M4wNL30ypZGYOQVBfMgxDH/K5UX0PNqTu1c6za9ST5r9+tavvHiTWmBnKzpCJ/GlVFtg==} 2406 + engines: {node: ^18.18.0 || >=20.0.0} 2186 2407 peerDependencies: 2187 - eslint: ^8.57.0 || ^9.0.0 2188 - typescript: '>=4.8.4 <5.8.0' 2408 + eslint: ^8.56.0 2409 + typescript: '*' 2410 + peerDependenciesMeta: 2411 + typescript: 2412 + optional: true 2189 2413 2190 - '@typescript-eslint/project-service@8.33.1': 2191 - resolution: {integrity: sha512-DZR0efeNklDIHHGRpMpR5gJITQpu6tLr9lDJnKdONTC7vvzOlLAG/wcfxcdxEWrbiZApcoBCzXqU/Z458Za5Iw==} 2414 + '@typescript-eslint/project-service@8.45.0': 2415 + resolution: {integrity: sha512-3pcVHwMG/iA8afdGLMuTibGR7pDsn9RjDev6CCB+naRsSYs2pns5QbinF4Xqw6YC/Sj3lMrm/Im0eMfaa61WUg==} 2192 2416 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 2193 2417 peerDependencies: 2194 - typescript: '>=4.8.4 <5.9.0' 2418 + typescript: '>=4.8.4 <6.0.0' 2195 2419 2196 - '@typescript-eslint/scope-manager@8.19.0': 2197 - resolution: {integrity: sha512-hkoJiKQS3GQ13TSMEiuNmSCvhz7ujyqD1x3ShbaETATHrck+9RaDdUbt+osXaUuns9OFwrDTTrjtwsU8gJyyRA==} 2198 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 2420 + '@typescript-eslint/scope-manager@7.18.0': 2421 + resolution: {integrity: sha512-jjhdIE/FPF2B7Z1uzc6i3oWKbGcHb87Qw7AWj6jmEqNOfDFbJWtjt/XfwCpvNkpGWlcJaog5vTR+VV8+w9JflA==} 2422 + engines: {node: ^18.18.0 || >=20.0.0} 2199 2423 2200 - '@typescript-eslint/scope-manager@8.33.1': 2201 - resolution: {integrity: sha512-dM4UBtgmzHR9bS0Rv09JST0RcHYearoEoo3pG5B6GoTR9XcyeqX87FEhPo+5kTvVfKCvfHaHrcgeJQc6mrDKrA==} 2424 + '@typescript-eslint/scope-manager@8.45.0': 2425 + resolution: {integrity: sha512-clmm8XSNj/1dGvJeO6VGH7EUSeA0FMs+5au/u3lrA3KfG8iJ4u8ym9/j2tTEoacAffdW1TVUzXO30W1JTJS7dA==} 2202 2426 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 2203 2427 2204 - '@typescript-eslint/tsconfig-utils@8.33.1': 2205 - resolution: {integrity: sha512-STAQsGYbHCF0/e+ShUQ4EatXQ7ceh3fBCXkNU7/MZVKulrlq1usH7t2FhxvCpuCi5O5oi1vmVaAjrGeL71OK1g==} 2428 + '@typescript-eslint/tsconfig-utils@8.45.0': 2429 + resolution: {integrity: sha512-aFdr+c37sc+jqNMGhH+ajxPXwjv9UtFZk79k8pLoJ6p4y0snmYpPA52GuWHgt2ZF4gRRW6odsEj41uZLojDt5w==} 2206 2430 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 2207 2431 peerDependencies: 2208 - typescript: '>=4.8.4 <5.9.0' 2432 + typescript: '>=4.8.4 <6.0.0' 2209 2433 2210 - '@typescript-eslint/type-utils@8.19.0': 2211 - resolution: {integrity: sha512-TZs0I0OSbd5Aza4qAMpp1cdCYVnER94IziudE3JU328YUHgWu9gwiwhag+fuLeJ2LkWLXI+F/182TbG+JaBdTg==} 2212 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 2434 + '@typescript-eslint/type-utils@7.18.0': 2435 + resolution: {integrity: sha512-XL0FJXuCLaDuX2sYqZUUSOJ2sG5/i1AAze+axqmLnSkNEVMVYLF+cbwlB2w8D1tinFuSikHmFta+P+HOofrLeA==} 2436 + engines: {node: ^18.18.0 || >=20.0.0} 2213 2437 peerDependencies: 2214 - eslint: ^8.57.0 || ^9.0.0 2215 - typescript: '>=4.8.4 <5.8.0' 2438 + eslint: ^8.56.0 2439 + typescript: '*' 2440 + peerDependenciesMeta: 2441 + typescript: 2442 + optional: true 2216 2443 2217 - '@typescript-eslint/types@8.19.0': 2218 - resolution: {integrity: sha512-8XQ4Ss7G9WX8oaYvD4OOLCjIQYgRQxO+qCiR2V2s2GxI9AUpo7riNwo6jDhKtTcaJjT8PY54j2Yb33kWtSJsmA==} 2219 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 2444 + '@typescript-eslint/types@7.18.0': 2445 + resolution: {integrity: sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==} 2446 + engines: {node: ^18.18.0 || >=20.0.0} 2220 2447 2221 - '@typescript-eslint/types@8.33.1': 2222 - resolution: {integrity: sha512-xid1WfizGhy/TKMTwhtVOgalHwPtV8T32MS9MaH50Cwvz6x6YqRIPdD2WvW0XaqOzTV9p5xdLY0h/ZusU5Lokg==} 2448 + '@typescript-eslint/types@8.45.0': 2449 + resolution: {integrity: sha512-WugXLuOIq67BMgQInIxxnsSyRLFxdkJEJu8r4ngLR56q/4Q5LrbfkFRH27vMTjxEK8Pyz7QfzuZe/G15qQnVRA==} 2223 2450 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 2224 2451 2225 - '@typescript-eslint/typescript-estree@8.19.0': 2226 - resolution: {integrity: sha512-WW9PpDaLIFW9LCbucMSdYUuGeFUz1OkWYS/5fwZwTA+l2RwlWFdJvReQqMUMBw4yJWJOfqd7An9uwut2Oj8sLw==} 2227 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 2452 + '@typescript-eslint/typescript-estree@7.18.0': 2453 + resolution: {integrity: sha512-aP1v/BSPnnyhMHts8cf1qQ6Q1IFwwRvAQGRvBFkWlo3/lH29OXA3Pts+c10nxRxIBrDnoMqzhgdwVe5f2D6OzA==} 2454 + engines: {node: ^18.18.0 || >=20.0.0} 2228 2455 peerDependencies: 2229 - typescript: '>=4.8.4 <5.8.0' 2456 + typescript: '*' 2457 + peerDependenciesMeta: 2458 + typescript: 2459 + optional: true 2230 2460 2231 - '@typescript-eslint/typescript-estree@8.33.1': 2232 - resolution: {integrity: sha512-+s9LYcT8LWjdYWu7IWs7FvUxpQ/DGkdjZeE/GGulHvv8rvYwQvVaUZ6DE+j5x/prADUgSbbCWZ2nPI3usuVeOA==} 2461 + '@typescript-eslint/typescript-estree@8.45.0': 2462 + resolution: {integrity: sha512-GfE1NfVbLam6XQ0LcERKwdTTPlLvHvXXhOeUGC1OXi4eQBoyy1iVsW+uzJ/J9jtCz6/7GCQ9MtrQ0fml/jWCnA==} 2233 2463 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 2234 2464 peerDependencies: 2235 - typescript: '>=4.8.4 <5.9.0' 2465 + typescript: '>=4.8.4 <6.0.0' 2236 2466 2237 - '@typescript-eslint/utils@8.19.0': 2238 - resolution: {integrity: sha512-PTBG+0oEMPH9jCZlfg07LCB2nYI0I317yyvXGfxnvGvw4SHIOuRnQ3kadyyXY6tGdChusIHIbM5zfIbp4M6tCg==} 2239 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 2467 + '@typescript-eslint/utils@7.18.0': 2468 + resolution: {integrity: sha512-kK0/rNa2j74XuHVcoCZxdFBMF+aq/vH83CXAOHieC+2Gis4mF8jJXT5eAfyD3K0sAxtPuwxaIOIOvhwzVDt/kw==} 2469 + engines: {node: ^18.18.0 || >=20.0.0} 2240 2470 peerDependencies: 2241 - eslint: ^8.57.0 || ^9.0.0 2242 - typescript: '>=4.8.4 <5.8.0' 2471 + eslint: ^8.56.0 2243 2472 2244 - '@typescript-eslint/utils@8.33.1': 2245 - resolution: {integrity: sha512-52HaBiEQUaRYqAXpfzWSR2U3gxk92Kw006+xZpElaPMg3C4PgM+A5LqwoQI1f9E5aZ/qlxAZxzm42WX+vn92SQ==} 2473 + '@typescript-eslint/utils@8.45.0': 2474 + resolution: {integrity: sha512-bxi1ht+tLYg4+XV2knz/F7RVhU0k6VrSMc9sb8DQ6fyCTrGQLHfo7lDtN0QJjZjKkLA2ThrKuCdHEvLReqtIGg==} 2246 2475 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 2247 2476 peerDependencies: 2248 2477 eslint: ^8.57.0 || ^9.0.0 2249 - typescript: '>=4.8.4 <5.9.0' 2478 + typescript: '>=4.8.4 <6.0.0' 2250 2479 2251 - '@typescript-eslint/visitor-keys@8.19.0': 2252 - resolution: {integrity: sha512-mCFtBbFBJDCNCWUl5y6sZSCHXw1DEFEk3c/M3nRK2a4XUB8StGFtmcEMizdjKuBzB6e/smJAAWYug3VrdLMr1w==} 2253 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 2480 + '@typescript-eslint/visitor-keys@7.18.0': 2481 + resolution: {integrity: sha512-cDF0/Gf81QpY3xYyJKDV14Zwdmid5+uuENhjH2EqFaF0ni+yAyq/LzMaIJdhNJXZI7uLzwIlA+V7oWoyn6Curg==} 2482 + engines: {node: ^18.18.0 || >=20.0.0} 2254 2483 2255 - '@typescript-eslint/visitor-keys@8.33.1': 2256 - resolution: {integrity: sha512-3i8NrFcZeeDHJ+7ZUuDkGT+UHq+XoFGsymNK2jZCOHcfEzRQ0BdpRtdpSx/Iyf3MHLWIcLS0COuOPibKQboIiQ==} 2484 + '@typescript-eslint/visitor-keys@8.45.0': 2485 + resolution: {integrity: sha512-qsaFBA3e09MIDAGFUrTk+dzqtfv1XPVz8t8d1f0ybTzrCY7BKiMC5cjrl1O/P7UmHsNyW90EYSkU/ZWpmXelag==} 2257 2486 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 2258 - 2259 - '@ungap/structured-clone@1.2.1': 2260 - resolution: {integrity: sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA==} 2261 2487 2262 2488 '@ungap/structured-clone@1.3.0': 2263 2489 resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==} ··· 2525 2751 resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 2526 2752 engines: {node: '>=8'} 2527 2753 2528 - ansi-regex@6.1.0: 2529 - resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==} 2754 + ansi-regex@6.2.2: 2755 + resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==} 2530 2756 engines: {node: '>=12'} 2531 2757 2532 2758 ansi-styles@2.2.1: ··· 2545 2771 resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} 2546 2772 engines: {node: '>=10'} 2547 2773 2548 - ansi-styles@6.2.1: 2549 - resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} 2774 + ansi-styles@6.2.3: 2775 + resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==} 2550 2776 engines: {node: '>=12'} 2551 2777 2552 2778 any-promise@1.3.0: ··· 2575 2801 resolution: {integrity: sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==} 2576 2802 engines: {node: '>=10'} 2577 2803 2804 + aria-hidden@1.2.6: 2805 + resolution: {integrity: sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA==} 2806 + engines: {node: '>=10'} 2807 + 2578 2808 array-buffer-byte-length@1.0.2: 2579 2809 resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==} 2580 2810 engines: {node: '>= 0.4'} ··· 2582 2812 array-flatten@1.1.1: 2583 2813 resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} 2584 2814 2585 - array-includes@3.1.8: 2586 - resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==} 2815 + array-includes@3.1.9: 2816 + resolution: {integrity: sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==} 2587 2817 engines: {node: '>= 0.4'} 2588 2818 2589 2819 array-timsort@1.0.3: 2590 2820 resolution: {integrity: sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ==} 2591 2821 2822 + array-union@2.1.0: 2823 + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} 2824 + engines: {node: '>=8'} 2825 + 2592 2826 array.prototype.findlast@1.2.5: 2593 2827 resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==} 2594 2828 engines: {node: '>= 0.4'} 2595 2829 2596 - array.prototype.findlastindex@1.2.5: 2597 - resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==} 2830 + array.prototype.findlastindex@1.2.6: 2831 + resolution: {integrity: sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ==} 2598 2832 engines: {node: '>= 0.4'} 2599 2833 2600 2834 array.prototype.flat@1.3.3: ··· 2622 2856 assert-plus@1.0.0: 2623 2857 resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==} 2624 2858 engines: {node: '>=0.8'} 2859 + 2860 + async-function@1.0.0: 2861 + resolution: {integrity: sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==} 2862 + engines: {node: '>= 0.4'} 2625 2863 2626 2864 async-limiter@1.0.1: 2627 2865 resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==} ··· 2695 2933 babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206: 2696 2934 resolution: {integrity: sha512-nnkrHpeDKM8A5laq9tmFvvGbbDQ7laGfQLp50cvCkCXmWrPcZdCtaQpNh8UJS/yLREJnv2R4JDL5ADfxyAn+yQ==} 2697 2935 2698 - babel-plugin-react-native-web@0.19.13: 2699 - resolution: {integrity: sha512-4hHoto6xaN23LCyZgL9LJZc3olmAxd7b6jDzlZnKXAh4rRAbZRKNBJoOOdp46OBqgy+K0t0guTj5/mhA8inymQ==} 2936 + babel-plugin-react-compiler@19.1.0-rc.3: 2937 + resolution: {integrity: sha512-mjRn69WuTz4adL0bXGx8Rsyk1086zFJeKmes6aK0xPuK3aaXmDJdLHqwKKMrpm6KAI1MCoUK72d2VeqQbu8YIA==} 2700 2938 2701 - babel-plugin-syntax-hermes-parser@0.25.1: 2702 - resolution: {integrity: sha512-IVNpGzboFLfXZUAwkLFcI/bnqVbwky0jP3eBno4HKtqvQJAHBLdgxiG6lQ4to0+Q/YCN3PO0od5NZwIKyY4REQ==} 2939 + babel-plugin-react-native-web@0.21.1: 2940 + resolution: {integrity: sha512-7XywfJ5QIRMwjOL+pwJt2w47Jmi5fFLvK7/So4fV4jIN6PcRbylCp9/l3cJY4VJbSz3lnWTeHDTD1LKIc1C09Q==} 2941 + 2942 + babel-plugin-syntax-hermes-parser@0.29.1: 2943 + resolution: {integrity: sha512-2WFYnoWGdmih1I1J5eIqxATOeycOqRwYxAQBu3cUu/rhwInwHUg7k60AFNbuGjSDL8tje5GDrAnxzRLcu2pYcA==} 2703 2944 2704 2945 babel-plugin-transform-flow-enums@0.0.2: 2705 2946 resolution: {integrity: sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==} ··· 2709 2950 peerDependencies: 2710 2951 '@babel/core': ^7.0.0 || ^8.0.0-0 2711 2952 2712 - babel-preset-expo@13.2.3: 2713 - resolution: {integrity: sha512-wQJn92lqj8GKR7Ojg/aW4+GkqI6ZdDNTDyOqhhl7A9bAqk6t0ukUOWLDXQb4p0qKJjMDV1F6gNWasI2KUbuVTQ==} 2953 + babel-preset-expo@54.0.3: 2954 + resolution: {integrity: sha512-zC6g96Mbf1bofnCI8yI0VKAp8/ER/gpfTsWOpQvStbHU+E4jFZ294n3unW8Hf6nNP4NoeNq9Zc6Prp0vwhxbow==} 2714 2955 peerDependencies: 2715 - babel-plugin-react-compiler: ^19.0.0-beta-e993439-20250405 2956 + '@babel/runtime': ^7.20.0 2957 + expo: '*' 2958 + react-refresh: '>=0.14.0 <1.0.0' 2716 2959 peerDependenciesMeta: 2717 - babel-plugin-react-compiler: 2960 + '@babel/runtime': 2961 + optional: true 2962 + expo: 2718 2963 optional: true 2719 2964 2720 2965 babel-preset-jest@29.6.3: ··· 2734 2979 2735 2980 base64-js@1.5.1: 2736 2981 resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} 2982 + 2983 + baseline-browser-mapping@2.8.12: 2984 + resolution: {integrity: sha512-vAPMQdnyKCBtkmQA6FMCBvU9qFIppS3nzyXnEM+Lo2IAhG4Mpjv9cCxMudhgV3YdNNJv6TNqXy97dfRVL2LmaQ==} 2985 + hasBin: true 2737 2986 2738 2987 bcrypt-pbkdf@1.0.2: 2739 2988 resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==} ··· 2788 3037 resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} 2789 3038 engines: {node: '>=8'} 2790 3039 2791 - browserslist@4.24.3: 2792 - resolution: {integrity: sha512-1CPmv8iobE2fyRMV97dAcMVegvvWKxmq94hkLiAkUGwKVTyDLw33K+ZxiFrREKmmps4rIw6grcCFCnTMSZ/YiA==} 3040 + browserslist@4.26.3: 3041 + resolution: {integrity: sha512-lAUU+02RFBuCKQPj/P6NgjlbCnLBMp4UtgTx7vNHd3XSIJF87s9a5rA3aH2yw3GS9DqZAUbOtZdCCiZeVRqt0w==} 2793 3042 engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 2794 3043 hasBin: true 2795 3044 ··· 2813 3062 resolution: {integrity: sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==} 2814 3063 engines: {node: '>= 0.4'} 2815 3064 3065 + call-bind-apply-helpers@1.0.2: 3066 + resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==} 3067 + engines: {node: '>= 0.4'} 3068 + 2816 3069 call-bind@1.0.8: 2817 3070 resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==} 2818 3071 engines: {node: '>= 0.4'} ··· 2821 3074 resolution: {integrity: sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==} 2822 3075 engines: {node: '>= 0.4'} 2823 3076 3077 + call-bound@1.0.4: 3078 + resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==} 3079 + engines: {node: '>= 0.4'} 3080 + 2824 3081 caller-callsite@2.0.0: 2825 3082 resolution: {integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==} 2826 3083 engines: {node: '>=4'} ··· 2849 3106 resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} 2850 3107 engines: {node: '>=10'} 2851 3108 2852 - caniuse-lite@1.0.30001690: 2853 - resolution: {integrity: sha512-5ExiE3qQN6oF8Clf8ifIDcMRCRE/dMGcETG/XGMD8/XiXm6HXQgQTh1yZYLXXpSOsEUlJm1Xr7kGULZTuGtP/w==} 3109 + caniuse-lite@1.0.30001747: 3110 + resolution: {integrity: sha512-mzFa2DGIhuc5490Nd/G31xN1pnBnYMadtkyTjefPI7wzypqgCEpeWu9bJr0OnDsyKrW75zA9ZAt7pbQFmwLsQg==} 2854 3111 2855 3112 caseless@0.12.0: 2856 3113 resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} ··· 2894 3151 resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} 2895 3152 engines: {node: '>= 8.10.0'} 2896 3153 2897 - chokidar@4.0.1: 2898 - resolution: {integrity: sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==} 3154 + chokidar@4.0.3: 3155 + resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==} 2899 3156 engines: {node: '>= 14.16.0'} 2900 3157 2901 3158 chownr@3.0.0: ··· 2924 3181 ci-info@4.3.0: 2925 3182 resolution: {integrity: sha512-l+2bNRMiQgcfILUi33labAZYIWlH1kWDp+ecNo5iisRKrbm0xcRyCww71/YU0Fkw0mAFpz9bJayXPjey6vkmaQ==} 2926 3183 engines: {node: '>=8'} 3184 + 3185 + cjs-module-lexer@1.4.3: 3186 + resolution: {integrity: sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==} 2927 3187 2928 3188 cjs-module-lexer@2.1.0: 2929 3189 resolution: {integrity: sha512-UX0OwmYRYQQetfrLEZeewIFFI+wSTofC+pMBLNuH3RUuu/xzG1oz84UCEDOSoQlN3fZ4+AzmV50ZYvGqkMh9yA==} ··· 3081 3341 resolution: {integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==} 3082 3342 engines: {node: '>=4'} 3083 3343 3344 + create-jest@29.7.0: 3345 + resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==} 3346 + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 3347 + hasBin: true 3348 + 3084 3349 create-require@1.1.1: 3085 3350 resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} 3086 3351 ··· 3172 3437 supports-color: 3173 3438 optional: true 3174 3439 3440 + debug@4.4.3: 3441 + resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==} 3442 + engines: {node: '>=6.0'} 3443 + peerDependencies: 3444 + supports-color: '*' 3445 + peerDependenciesMeta: 3446 + supports-color: 3447 + optional: true 3448 + 3175 3449 decimal.js@10.6.0: 3176 3450 resolution: {integrity: sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==} 3177 3451 ··· 3252 3526 resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} 3253 3527 engines: {node: '>=0.3.1'} 3254 3528 3529 + dir-glob@3.0.1: 3530 + resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} 3531 + engines: {node: '>=8'} 3532 + 3255 3533 dlv@1.1.3: 3256 3534 resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} 3257 3535 ··· 3289 3567 resolution: {integrity: sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==} 3290 3568 engines: {node: '>=12'} 3291 3569 3292 - dunder-proto@1.0.0: 3293 - resolution: {integrity: sha512-9+Sj30DIu+4KvHqMfLUGLFYL2PkURSYMVXJyXe92nFRvlYq5hBjLEhblKB+vkd/WVlUYMWigiY07T91Fkk0+4A==} 3294 - engines: {node: '>= 0.4'} 3295 - 3296 3570 dunder-proto@1.0.1: 3297 3571 resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} 3298 3572 engines: {node: '>= 0.4'} ··· 3312 3586 ee-first@1.1.1: 3313 3587 resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} 3314 3588 3315 - electron-to-chromium@1.5.76: 3316 - resolution: {integrity: sha512-CjVQyG7n7Sr+eBXE86HIulnL5N8xZY1sgmOPGuq/F0Rr0FJq63lg0kEtOIDfZBk44FnDLf6FUJ+dsJcuiUDdDQ==} 3589 + electron-to-chromium@1.5.230: 3590 + resolution: {integrity: sha512-A6A6Fd3+gMdaed9wX83CvHYJb4UuapPD5X5SLq72VZJzxHSY0/LUweGXRWmQlh2ln7KV7iw7jnwXK7dlPoOnHQ==} 3317 3591 3318 3592 emittery@0.13.1: 3319 3593 resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} ··· 3337 3611 resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==} 3338 3612 engines: {node: '>= 0.8'} 3339 3613 3340 - enhanced-resolve@5.17.1: 3341 - resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==} 3614 + enhanced-resolve@5.18.3: 3615 + resolution: {integrity: sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==} 3342 3616 engines: {node: '>=10.13.0'} 3343 3617 3344 3618 entities@4.5.0: ··· 3359 3633 error-ex@1.3.2: 3360 3634 resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} 3361 3635 3636 + error-ex@1.3.4: 3637 + resolution: {integrity: sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==} 3638 + 3362 3639 error-stack-parser@2.1.4: 3363 3640 resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==} 3364 3641 3365 - es-abstract@1.23.8: 3366 - resolution: {integrity: sha512-lfab8IzDn6EpI1ibZakcgS6WsfEBiB+43cuJo+wgylx1xKXf+Sp+YR3vFuQwC/u3sxYwV8Cxe3B0DpVUu/WiJQ==} 3642 + es-abstract@1.24.0: 3643 + resolution: {integrity: sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==} 3367 3644 engines: {node: '>= 0.4'} 3368 3645 3369 3646 es-define-property@1.0.1: ··· 3378 3655 resolution: {integrity: sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w==} 3379 3656 engines: {node: '>= 0.4'} 3380 3657 3381 - es-module-lexer@1.6.0: 3382 - resolution: {integrity: sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==} 3383 - 3384 - es-object-atoms@1.0.0: 3385 - resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==} 3386 - engines: {node: '>= 0.4'} 3658 + es-module-lexer@1.7.0: 3659 + resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==} 3387 3660 3388 - es-set-tostringtag@2.0.3: 3389 - resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} 3661 + es-object-atoms@1.1.1: 3662 + resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==} 3390 3663 engines: {node: '>= 0.4'} 3391 3664 3392 3665 es-set-tostringtag@2.1.0: 3393 3666 resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==} 3394 3667 engines: {node: '>= 0.4'} 3395 3668 3396 - es-shim-unscopables@1.0.2: 3397 - resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} 3669 + es-shim-unscopables@1.1.0: 3670 + resolution: {integrity: sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==} 3671 + engines: {node: '>= 0.4'} 3398 3672 3399 3673 es-to-primitive@1.3.0: 3400 3674 resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==} ··· 3424 3698 engines: {node: '>=6.0'} 3425 3699 hasBin: true 3426 3700 3427 - eslint-config-expo@9.2.0: 3428 - resolution: {integrity: sha512-TQgmSx+2mRM7qUS0hB5kTDrHcSC35rA1UzOSgK5YRLmSkSMlKLmXkUrhwOpnyo9D/nHdf4ERRAySRYxgA6dlrw==} 3701 + eslint-config-expo@7.1.2: 3702 + resolution: {integrity: sha512-WxrDVNklN43Op0v3fglQfzL2bC7vqacUq9oVwJcGCUEDzdM7kGOR6pfEJiz3i3dQv3cFjHtct0CFEExep5c/dA==} 3429 3703 peerDependencies: 3430 3704 eslint: '>=8.10' 3431 3705 3432 3706 eslint-import-resolver-node@0.3.9: 3433 3707 resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} 3434 3708 3435 - eslint-import-resolver-typescript@3.7.0: 3436 - resolution: {integrity: sha512-Vrwyi8HHxY97K5ebydMtffsWAn1SCR9eol49eCd5fJS4O1WV7PaAjbcjmbfJJSMz/t4Mal212Uz/fQZrOB8mow==} 3709 + eslint-import-resolver-typescript@3.10.1: 3710 + resolution: {integrity: sha512-A1rHYb06zjMGAxdLSkN2fXPBwuSaQ0iO5M/hdyS0Ajj1VBaRp0sPD3dn1FhME3c/JluGFbwSxyCfqdSbtQLAHQ==} 3437 3711 engines: {node: ^14.18.0 || >=16.0.0} 3438 3712 peerDependencies: 3439 3713 eslint: '*' ··· 3445 3719 eslint-plugin-import-x: 3446 3720 optional: true 3447 3721 3448 - eslint-module-utils@2.12.0: 3449 - resolution: {integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==} 3722 + eslint-module-utils@2.12.1: 3723 + resolution: {integrity: sha512-L8jSWTze7K2mTg0vos/RuLRS5soomksDPoJLXIslC7c8Wmut3bx7CPpJijDcBZtxQ5lrbUdM+s0OlNbz0DCDNw==} 3450 3724 engines: {node: '>=4'} 3451 3725 peerDependencies: 3452 3726 '@typescript-eslint/parser': '*' ··· 3466 3740 eslint-import-resolver-webpack: 3467 3741 optional: true 3468 3742 3469 - eslint-plugin-expo@0.1.4: 3470 - resolution: {integrity: sha512-YA7yiMacQbLJySuyJA0Eb5V65obqp6fVOWtw1JdYDRWC5MeToPrnNvhGDpk01Bv3Vm4ownuzUfvi89MXi1d6cg==} 3743 + eslint-plugin-expo@0.0.1: 3744 + resolution: {integrity: sha512-dNri81vunJ3T+N1YWWxjLU6ux6KiukwZ4ECXCOPp8hG7M4kuvPAb9YQSIM63AT0pbtfYH/a6htikhaQcRPjhRA==} 3745 + engines: {node: '>=18.0.0'} 3746 + peerDependencies: 3747 + eslint: '>=8' 3748 + 3749 + eslint-plugin-expo@1.0.0: 3750 + resolution: {integrity: sha512-qLtunR+cNFtC+jwYCBia5c/PJurMjSLMOV78KrEOyQK02ohZapU4dCFFnS2hfrJuw0zxfsjVkjqg3QBqi933QA==} 3471 3751 engines: {node: '>=18.0.0'} 3472 3752 peerDependencies: 3473 3753 eslint: '>=8.10' 3474 3754 3475 - eslint-plugin-import@2.31.0: 3476 - resolution: {integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==} 3755 + eslint-plugin-import@2.32.0: 3756 + resolution: {integrity: sha512-whOE1HFo/qJDyX4SnXzP4N6zOWn79WhnCUY/iDR0mPfQZO8wcYE4JClzI2oZrhBnnMUCBCHZhO6VQyoBU95mZA==} 3477 3757 engines: {node: '>=4'} 3478 3758 peerDependencies: 3479 3759 '@typescript-eslint/parser': '*' ··· 3488 3768 peerDependencies: 3489 3769 eslint: '>=7' 3490 3770 3491 - eslint-plugin-react-hooks@5.2.0: 3492 - resolution: {integrity: sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg==} 3771 + eslint-plugin-react-hooks@4.6.2: 3772 + resolution: {integrity: sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==} 3493 3773 engines: {node: '>=10'} 3494 3774 peerDependencies: 3495 - eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 3775 + eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 3496 3776 3497 - eslint-plugin-react@7.37.3: 3498 - resolution: {integrity: sha512-DomWuTQPFYZwF/7c9W2fkKkStqZmBd3uugfqBYLdkZ3Hii23WzZuOLUskGxB8qkSKqftxEeGL1TB2kMhrce0jA==} 3777 + eslint-plugin-react@7.37.5: 3778 + resolution: {integrity: sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==} 3499 3779 engines: {node: '>=4'} 3500 3780 peerDependencies: 3501 3781 eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7 ··· 3512 3792 resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} 3513 3793 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 3514 3794 3515 - eslint-visitor-keys@4.2.0: 3516 - resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==} 3795 + eslint-visitor-keys@4.2.1: 3796 + resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==} 3517 3797 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 3518 3798 3519 3799 eslint@8.57.1: ··· 3586 3866 resolution: {integrity: sha512-+I6B/IkJc1o/2tiURyz/ivu/O0nKNEArIUB5O7zBrlDVJr22SCLH3xTeEry428LvFhRzIA1g8izguxJ/gbNcVQ==} 3587 3867 engines: {node: '>= 0.8.0'} 3588 3868 3869 + exit@0.1.2: 3870 + resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} 3871 + engines: {node: '>= 0.8.0'} 3872 + 3589 3873 expect@29.7.0: 3590 3874 resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==} 3591 3875 engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} ··· 3594 3878 resolution: {integrity: sha512-u/feCi0GPsI+988gU2FLcsHyAHTU0MX1Wg68NhAnN7z/+C5wqG+CY8J53N9ioe8RXgaoz0nBR/TYMf3AycUuPw==} 3595 3879 engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} 3596 3880 3597 - expo-asset@11.1.7: 3598 - resolution: {integrity: sha512-b5P8GpjUh08fRCf6m5XPVAh7ra42cQrHBIMgH2UXP+xsj4Wufl6pLy6jRF5w6U7DranUMbsXm8TOyq4EHy7ADg==} 3881 + expo-asset@12.0.9: 3882 + resolution: {integrity: sha512-vrdRoyhGhBmd0nJcssTSk1Ypx3Mbn/eXaaBCQVkL0MJ8IOZpAObAjfD5CTy8+8RofcHEQdh3wwZVCs7crvfOeg==} 3599 3883 peerDependencies: 3600 3884 expo: '*' 3601 3885 react: '*' 3602 3886 react-native: '*' 3603 3887 3604 - expo-constants@17.1.6: 3605 - resolution: {integrity: sha512-q5mLvJiLtPcaZ7t2diSOlQ2AyxIO8YMVEJsEfI/ExkGj15JrflNQ7CALEW6IF/uNae/76qI/XcjEuuAyjdaCNw==} 3888 + expo-constants@18.0.9: 3889 + resolution: {integrity: sha512-sqoXHAOGDcr+M9NlXzj1tGoZyd3zxYDy215W6E0Z0n8fgBaqce9FAYQE2bu5X4G629AYig5go7U6sQz7Pjcm8A==} 3606 3890 peerDependencies: 3607 3891 expo: '*' 3608 3892 react-native: '*' 3609 3893 3610 - expo-constants@17.1.7: 3611 - resolution: {integrity: sha512-byBjGsJ6T6FrLlhOBxw4EaiMXrZEn/MlUYIj/JAd+FS7ll5X/S4qVRbIimSJtdW47hXMq0zxPfJX6njtA56hHA==} 3894 + expo-dev-client@6.0.13: 3895 + resolution: {integrity: sha512-zW3uLx4fBk5jhUafxJcrmbCbhcIMN6Vy7ebUTzLWkHuB0uEh2qwI2bJpeHgXCY+9OzA8HGjT8EUsA5sPKEATfA==} 3612 3896 peerDependencies: 3613 3897 expo: '*' 3614 - react-native: '*' 3615 3898 3616 - expo-file-system@18.1.11: 3617 - resolution: {integrity: sha512-HJw/m0nVOKeqeRjPjGdvm+zBi5/NxcdPf8M8P3G2JFvH5Z8vBWqVDic2O58jnT1OFEy0XXzoH9UqFu7cHg9DTQ==} 3899 + expo-dev-launcher@6.0.13: 3900 + resolution: {integrity: sha512-NmUOXKpSN0HaRneY4jeBgLpEYradw/uNHNGYVlE6bPTUXBw2P6cLChGqeclzq/Dj5eHoSCfSOgyFRfvfH1BcfQ==} 3618 3901 peerDependencies: 3619 3902 expo: '*' 3620 - react-native: '*' 3621 3903 3622 - expo-font@13.3.1: 3623 - resolution: {integrity: sha512-d+xrHYvSM9WB42wj8vP9OOFWyxed5R1evphfDb6zYBmC1dA9Hf89FpT7TNFtj2Bk3clTnpmVqQTCYbbA2P3CLg==} 3904 + expo-dev-menu-interface@2.0.0: 3905 + resolution: {integrity: sha512-BvAMPt6x+vyXpThsyjjOYyjwfjREV4OOpQkZ0tNl+nGpsPfcY9mc6DRACoWnH9KpLzyIt3BOgh3cuy/h/OxQjw==} 3624 3906 peerDependencies: 3625 3907 expo: '*' 3626 - react: '*' 3627 3908 3628 - expo-font@13.3.2: 3629 - resolution: {integrity: sha512-wUlMdpqURmQ/CNKK/+BIHkDA5nGjMqNlYmW0pJFXY/KE/OG80Qcavdu2sHsL4efAIiNGvYdBS10WztuQYU4X0A==} 3909 + expo-dev-menu@7.0.13: 3910 + resolution: {integrity: sha512-jxT19gqgCCGhi8AhoVTULwEPZK1PaaevLnLRzCo/1fKVM4YaEV0RgJPPuSe4xVloUWYVkCmfn0t32IPBHp2SSA==} 3911 + peerDependencies: 3912 + expo: '*' 3913 + 3914 + expo-file-system@19.0.16: 3915 + resolution: {integrity: sha512-9Ee6HpcUEfO7dOet/on9yAg7ysegBua35Q0oGrJzoRc+xW6IlTxoSFbmK8QhjA3MZpkukP3DhaiYENYOzkw9SQ==} 3916 + peerDependencies: 3917 + expo: '*' 3918 + react-native: '*' 3919 + 3920 + expo-font@14.0.8: 3921 + resolution: {integrity: sha512-bTUHaJWRZ7ywP8dg3f+wfOwv6RwMV3mWT2CDUIhsK70GjNGlCtiWOCoHsA5Od/esPaVxqc37cCBvQGQRFStRlA==} 3630 3922 peerDependencies: 3631 3923 expo: '*' 3632 3924 react: '*' 3925 + react-native: '*' 3633 3926 3634 - expo-image-loader@5.1.0: 3635 - resolution: {integrity: sha512-sEBx3zDQIODWbB5JwzE7ZL5FJD+DK3LVLWBVJy6VzsqIA6nDEnSFnsnWyCfCTSvbGigMATs1lgkC2nz3Jpve1Q==} 3927 + expo-image-loader@6.0.0: 3928 + resolution: {integrity: sha512-nKs/xnOGw6ACb4g26xceBD57FKLFkSwEUTDXEDF3Gtcu3MqF3ZIYd3YM+sSb1/z9AKV1dYT7rMSGVNgsveXLIQ==} 3636 3929 peerDependencies: 3637 3930 expo: '*' 3638 3931 3639 - expo-image-picker@16.1.4: 3640 - resolution: {integrity: sha512-bTmmxtw1AohUT+HxEBn2vYwdeOrj1CLpMXKjvi9FKSoSbpcarT4xxI0z7YyGwDGHbrJqyyic3I9TTdP2J2b4YA==} 3932 + expo-image-picker@17.0.8: 3933 + resolution: {integrity: sha512-489ByhVs2XPoAu9zodivAKLv7hG4S/FOe8hO/C2U6jVxmRjpAKakKNjMml0IwWjf1+c/RYBqm1XxKaZ+vq/fDQ==} 3641 3934 peerDependencies: 3642 3935 expo: '*' 3643 3936 3644 - expo-keep-awake@14.1.4: 3645 - resolution: {integrity: sha512-wU9qOnosy4+U4z/o4h8W9PjPvcFMfZXrlUoKTMBW7F4pLqhkkP/5G4EviPZixv4XWFMjn1ExQ5rV6BX8GwJsWA==} 3937 + expo-json-utils@0.15.0: 3938 + resolution: {integrity: sha512-duRT6oGl80IDzH2LD2yEFWNwGIC2WkozsB6HF3cDYNoNNdUvFk6uN3YiwsTsqVM/D0z6LEAQ01/SlYvN+Fw0JQ==} 3939 + 3940 + expo-keep-awake@15.0.7: 3941 + resolution: {integrity: sha512-CgBNcWVPnrIVII5G54QDqoE125l+zmqR4HR8q+MQaCfHet+dYpS5vX5zii/RMayzGN4jPgA4XYIQ28ePKFjHoA==} 3646 3942 peerDependencies: 3647 3943 expo: '*' 3648 3944 react: '*' 3649 3945 3650 - expo-linking@7.1.4: 3651 - resolution: {integrity: sha512-zLAbUzTB3+KGjqqLeIdhhkXayyN0qulHGjRI24X7W/0Mq/4oPbPZklKtCP0k7XOn/k4553m8OgJ7GPC03PlV9g==} 3946 + expo-linking@8.0.8: 3947 + resolution: {integrity: sha512-MyeMcbFDKhXh4sDD1EHwd0uxFQNAc6VCrwBkNvvvufUsTYFq3glTA9Y8a+x78CPpjNqwNAamu74yIaIz7IEJyg==} 3652 3948 peerDependencies: 3653 3949 react: '*' 3654 3950 react-native: '*' 3655 3951 3656 - expo-modules-autolinking@2.1.14: 3657 - resolution: {integrity: sha512-nT5ERXwc+0ZT/pozDoJjYZyUQu5RnXMk9jDGm5lg+PiKvsrCTSA/2/eftJGMxLkTjVI2MXp5WjSz3JRjbA7UXA==} 3952 + expo-manifests@1.0.8: 3953 + resolution: {integrity: sha512-nA5PwU2uiUd+2nkDWf9e71AuFAtbrb330g/ecvuu52bmaXtN8J8oiilc9BDvAX0gg2fbtOaZdEdjBYopt1jdlQ==} 3954 + peerDependencies: 3955 + expo: '*' 3956 + 3957 + expo-modules-autolinking@3.0.14: 3958 + resolution: {integrity: sha512-/qh1ru2kGPOycGvE9dXEKJZbPmYA5U5UcAlWWFbcq9+VhhWdZWZ0zs7V2JCdl+OvpBDo1y9WbqPP5VHQSYqT+Q==} 3658 3959 hasBin: true 3659 3960 3660 - expo-modules-core@2.5.0: 3661 - resolution: {integrity: sha512-aIbQxZE2vdCKsolQUl6Q9Farlf8tjh/ROR4hfN1qT7QBGPl1XrJGnaOKkcgYaGrlzCPg/7IBe0Np67GzKMZKKQ==} 3961 + expo-modules-core@3.0.20: 3962 + resolution: {integrity: sha512-AnC7VG8k8ZAAKoNFP5zyCiTlwppp6U3A/z63KtuSjMWlxn5w45FOf2LuyF1SNUqkiARdckuPVNvLGO/I/5vkrg==} 3963 + peerDependencies: 3964 + react: '*' 3965 + react-native: '*' 3662 3966 3663 - expo-router@5.0.6: 3664 - resolution: {integrity: sha512-/44G3liB7LMMDoUO+lN5TS8XvZrAhLtq7cVGoilO2QkoSBjFQfxFA9VYOVWVlu2R80tN6dM3cgsEuoA275FGQg==} 3967 + expo-router@6.0.10: 3968 + resolution: {integrity: sha512-QdMvNgjpH5L1ndE2KcYk14CjfulQTZNJNjM24/NigF+2cwkE7Ixdkw2EdpslcXPCgwcoJmvJIJtySsGhoPTNdg==} 3665 3969 peerDependencies: 3666 - '@react-navigation/drawer': ^7.3.9 3667 - '@testing-library/jest-native': '*' 3970 + '@expo/metro-runtime': ^6.1.2 3971 + '@react-navigation/drawer': ^7.5.0 3972 + '@testing-library/react-native': '>= 12.0.0' 3668 3973 expo: '*' 3669 - expo-constants: '*' 3670 - expo-linking: '*' 3974 + expo-constants: ^18.0.9 3975 + expo-linking: ^8.0.8 3976 + react: '*' 3977 + react-dom: '*' 3978 + react-native: '*' 3979 + react-native-gesture-handler: '*' 3671 3980 react-native-reanimated: '*' 3672 - react-native-safe-area-context: '*' 3981 + react-native-safe-area-context: '>= 5.4.0' 3673 3982 react-native-screens: '*' 3983 + react-native-web: '*' 3984 + react-server-dom-webpack: '>= 19.0.0' 3674 3985 peerDependenciesMeta: 3675 3986 '@react-navigation/drawer': 3676 3987 optional: true 3677 - '@testing-library/jest-native': 3988 + '@testing-library/react-native': 3989 + optional: true 3990 + react-dom: 3991 + optional: true 3992 + react-native-gesture-handler: 3678 3993 optional: true 3679 3994 react-native-reanimated: 3680 3995 optional: true 3996 + react-native-web: 3997 + optional: true 3998 + react-server-dom-webpack: 3999 + optional: true 3681 4000 3682 - expo-splash-screen@0.30.8: 3683 - resolution: {integrity: sha512-2eh+uA543brfeG5HILXmtNKA7E2/pfywKzNumzy3Ef6OtDjYy6zJUGNSbhnZRbVEjUZo3/QNRs0JRBfY80okZg==} 4001 + expo-server@1.0.0: 4002 + resolution: {integrity: sha512-fAAI0ZXxayc2Rt5KfQjULv+TFreuLRZ+hdpc5TxZJ7CDpW1ZIqaVzELHh1rYTRVEBDFDiCBXtioS9WWTEAX+fg==} 4003 + engines: {node: '>=20.16.0'} 4004 + 4005 + expo-splash-screen@31.0.10: 4006 + resolution: {integrity: sha512-i6g9IK798mae4yvflstQ1HkgahIJ6exzTCTw4vEdxV0J2SwiW3Tj+CwRjf0te7Zsb+7dDQhBTmGZwdv00VER2A==} 3684 4007 peerDependencies: 3685 4008 expo: '*' 3686 4009 ··· 3691 4014 react: '*' 3692 4015 react-native: '*' 3693 4016 3694 - expo-status-bar@2.2.3: 3695 - resolution: {integrity: sha512-+c8R3AESBoduunxTJ8353SqKAKpxL6DvcD8VKBuh81zzJyUUbfB4CVjr1GufSJEKsMzNPXZU+HJwXx7Xh7lx8Q==} 4017 + expo-sqlite@16.0.8: 4018 + resolution: {integrity: sha512-xw776gFgH4ZM5oGs0spSLNmkHO/kJ/EuRXGzE4/22yII9EmG84vm7aM/M2aEb8taBTqwhSGYUpkwkRT5YFFmsg==} 3696 4019 peerDependencies: 4020 + expo: '*' 3697 4021 react: '*' 3698 4022 react-native: '*' 3699 4023 3700 - expo-system-ui@5.0.7: 3701 - resolution: {integrity: sha512-ijSnSFA4VfuQc84N6WyCUNsKKTIyQb6QuC8q2zGvYC/sBXTMrOtZg0zrisQGzCRW+WhritQTiVqHlp3Ix9xDmQ==} 4024 + expo-status-bar@3.0.8: 4025 + resolution: {integrity: sha512-L248XKPhum7tvREoS1VfE0H6dPCaGtoUWzRsUv7hGKdiB4cus33Rc0sxkWkoQ77wE8stlnUlL5lvmT0oqZ3ZBw==} 4026 + peerDependencies: 4027 + react: '*' 4028 + react-native: '*' 4029 + 4030 + expo-system-ui@6.0.7: 4031 + resolution: {integrity: sha512-NT+/r/BOg08lFI9SZO2WFi9X1ZmawkVStknioWzQq6Mt4KinoMS6yl3eLbyOLM3LoptN13Ywfo4W5KHA6TV9Ow==} 3702 4032 peerDependencies: 3703 4033 expo: '*' 3704 4034 react-native: '*' ··· 3707 4037 react-native-web: 3708 4038 optional: true 3709 4039 3710 - expo-web-browser@14.1.6: 3711 - resolution: {integrity: sha512-/4P8eWqRyfXIMZna3acg320LXNA+P2cwyEVbjDX8vHnWU+UnOtyRKWy3XaAIyMPQ9hVjBNUQTh4MPvtnPRzakw==} 4040 + expo-updates-interface@2.0.0: 4041 + resolution: {integrity: sha512-pTzAIufEZdVPKql6iMi5ylVSPqV1qbEopz9G6TSECQmnNde2nwq42PxdFBaUEd8IZJ/fdJLQnOT3m6+XJ5s7jg==} 4042 + peerDependencies: 4043 + expo: '*' 4044 + 4045 + expo-web-browser@15.0.8: 4046 + resolution: {integrity: sha512-gn+Y2ABQr6/EvFN/XSjTuzwsSPLU1vNVVV0wNe4xXkcSnYGdHxt9kHxs9uLfoCyPByoaGF4VxzAhHIMI7yDcSg==} 3712 4047 peerDependencies: 3713 4048 expo: '*' 3714 4049 react-native: '*' 3715 4050 3716 - expo@53.0.20: 3717 - resolution: {integrity: sha512-Nh+HIywVy9KxT/LtH08QcXqrxtUOA9BZhsXn3KCsAYA+kNb80M8VKN8/jfQF+I6CgeKyFKJoPNsWgI0y0VBGrA==} 4051 + expo@54.0.12: 4052 + resolution: {integrity: sha512-BVvG1A9BlKAOBwczMi7XThOLzI3TUShkV/yRnAMGvQP5SQFDq7UojkZLLG285gg3OvkoqjMUE0tZvVXbvuI4tA==} 3718 4053 hasBin: true 3719 4054 peerDependencies: 3720 4055 '@expo/dom-webview': '*' ··· 3747 4082 fast-deep-equal@3.1.3: 3748 4083 resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 3749 4084 3750 - fast-glob@3.3.2: 3751 - resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} 4085 + fast-glob@3.3.3: 4086 + resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} 3752 4087 engines: {node: '>=8.6.0'} 3753 4088 3754 4089 fast-json-stable-stringify@2.1.0: ··· 3764 4099 fast-uri@3.0.3: 3765 4100 resolution: {integrity: sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw==} 3766 4101 3767 - fastq@1.17.1: 3768 - resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} 4102 + fastq@1.19.1: 4103 + resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==} 3769 4104 3770 4105 fb-watchman@2.0.2: 3771 4106 resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} ··· 3776 4111 fbjs@3.0.5: 3777 4112 resolution: {integrity: sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg==} 3778 4113 3779 - fdir@6.4.2: 3780 - resolution: {integrity: sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ==} 4114 + fdir@6.5.0: 4115 + resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==} 4116 + engines: {node: '>=12.0.0'} 3781 4117 peerDependencies: 3782 4118 picomatch: ^3 || ^4 3783 4119 peerDependenciesMeta: ··· 3831 4167 resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} 3832 4168 engines: {node: ^10.12.0 || >=12.0.0} 3833 4169 3834 - flatted@3.3.2: 3835 - resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==} 4170 + flatted@3.3.3: 4171 + resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==} 3836 4172 3837 4173 flow-enums-runtime@0.0.6: 3838 4174 resolution: {integrity: sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw==} ··· 3843 4179 for-each@0.3.3: 3844 4180 resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} 3845 4181 4182 + for-each@0.3.5: 4183 + resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==} 4184 + engines: {node: '>= 0.4'} 4185 + 3846 4186 foreground-child@3.3.0: 3847 4187 resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==} 4188 + engines: {node: '>=14'} 4189 + 4190 + foreground-child@3.3.1: 4191 + resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==} 3848 4192 engines: {node: '>=14'} 3849 4193 3850 4194 forever-agent@0.6.1: ··· 3895 4239 functions-have-names@1.2.3: 3896 4240 resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} 3897 4241 4242 + generator-function@2.0.1: 4243 + resolution: {integrity: sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==} 4244 + engines: {node: '>= 0.4'} 4245 + 3898 4246 gensync@1.0.0-beta.2: 3899 4247 resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} 3900 4248 engines: {node: '>=6.9.0'} ··· 3903 4251 resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} 3904 4252 engines: {node: 6.* || 8.* || >= 10.*} 3905 4253 3906 - get-intrinsic@1.2.5: 3907 - resolution: {integrity: sha512-Y4+pKa7XeRUPWFNvOOYHkRYrfzW07oraURSvjDmRVOJ748OrVmeXtpE4+GCEHncjCjkTxPNRt8kEbxDhsn6VTg==} 3908 - engines: {node: '>= 0.4'} 3909 - 3910 4254 get-intrinsic@1.2.6: 3911 4255 resolution: {integrity: sha512-qxsEs+9A+u85HhllWJJFicJfPDhRmjzoYdl64aMWW9yRIJmSyxdn8IEkuIM530/7T+lv0TIHd8L6Q/ra0tEoeA==} 3912 4256 engines: {node: '>= 0.4'} 3913 4257 4258 + get-intrinsic@1.3.0: 4259 + resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==} 4260 + engines: {node: '>= 0.4'} 4261 + 3914 4262 get-nonce@1.0.1: 3915 4263 resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==} 3916 4264 engines: {node: '>=6'} ··· 3922 4270 get-port@3.2.0: 3923 4271 resolution: {integrity: sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==} 3924 4272 engines: {node: '>=4'} 4273 + 4274 + get-proto@1.0.1: 4275 + resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==} 4276 + engines: {node: '>= 0.4'} 3925 4277 3926 4278 get-stream@6.0.1: 3927 4279 resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} ··· 3935 4287 resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==} 3936 4288 engines: {node: '>= 0.4'} 3937 4289 3938 - get-tsconfig@4.8.1: 3939 - resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==} 3940 - 3941 - getenv@1.0.0: 3942 - resolution: {integrity: sha512-7yetJWqbS9sbn0vIfliPsFgoXMKn/YMF+Wuiog97x+urnSRRRZ7xB+uVkwGKzRgq9CDFfMQnE9ruL5DHv9c6Xg==} 3943 - engines: {node: '>=6'} 4290 + get-tsconfig@4.10.1: 4291 + resolution: {integrity: sha512-auHyJ4AgMz7vgS8Hp3N6HXSmlMdUyhSUrfBF16w153rxtLIEOE+HGqaBppczZvnHLqQJfiHotCYpNhl0lUROFQ==} 3944 4292 3945 4293 getenv@2.0.0: 3946 4294 resolution: {integrity: sha512-VilgtJj/ALgGY77fiLam5iD336eSWi96Q15JSAG1zi8NRBysm3LXKdGnHb4m5cuyxvOLQQKWpBZAT6ni4FI2iQ==} ··· 3969 4317 engines: {node: 20 || >=22} 3970 4318 hasBin: true 3971 4319 4320 + glob@11.0.3: 4321 + resolution: {integrity: sha512-2Nim7dha1KVkaiF4q6Dj+ngPPMdfvLJEOpZk/jKiUAkqKebpGAWQXAq9z1xu9HKu5lWfqw/FASuccEjyznjPaA==} 4322 + engines: {node: 20 || >=22} 4323 + hasBin: true 4324 + 3972 4325 glob@7.2.3: 3973 4326 resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} 3974 4327 deprecated: Glob versions prior to v9 are no longer supported ··· 3977 4330 resolution: {integrity: sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==} 3978 4331 engines: {node: '>=16 || 14 >=14.17'} 3979 4332 4333 + global-dirs@0.1.1: 4334 + resolution: {integrity: sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==} 4335 + engines: {node: '>=4'} 4336 + 3980 4337 globals@11.12.0: 3981 4338 resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} 3982 4339 engines: {node: '>=4'} ··· 3985 4342 resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} 3986 4343 engines: {node: '>=8'} 3987 4344 3988 - globals@16.2.0: 3989 - resolution: {integrity: sha512-O+7l9tPdHCU320IigZZPj5zmRCFG9xHmx9cU8FqU2Rp+JN714seHV+2S9+JslCpY4gJwU2vOGox0wzgae/MCEg==} 3990 - engines: {node: '>=18'} 3991 - 3992 4345 globalthis@1.0.4: 3993 4346 resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} 3994 4347 engines: {node: '>= 0.4'} 4348 + 4349 + globby@11.1.0: 4350 + resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} 4351 + engines: {node: '>=10'} 3995 4352 3996 4353 gopd@1.2.0: 3997 4354 resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==} ··· 4054 4411 hermes-estree@0.25.1: 4055 4412 resolution: {integrity: sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==} 4056 4413 4057 - hermes-estree@0.28.1: 4058 - resolution: {integrity: sha512-w3nxl/RGM7LBae0v8LH2o36+8VqwOZGv9rX1wyoWT6YaKZLqpJZ0YQ5P0LVr3tuRpf7vCx0iIG4i/VmBJejxTQ==} 4414 + hermes-estree@0.29.1: 4415 + resolution: {integrity: sha512-jl+x31n4/w+wEqm0I2r4CMimukLbLQEYpisys5oCre611CI5fc9TxhqkBBCJ1edDG4Kza0f7CgNz8xVMLZQOmQ==} 4059 4416 4060 4417 hermes-parser@0.25.1: 4061 4418 resolution: {integrity: sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==} 4062 4419 4063 - hermes-parser@0.28.1: 4064 - resolution: {integrity: sha512-nf8o+hE8g7UJWParnccljHumE9Vlq8F7MqIdeahl+4x0tvCUJYRrT0L7h0MMg/X9YJmkNwsfbaNNrzPtFXOscg==} 4420 + hermes-parser@0.29.1: 4421 + resolution: {integrity: sha512-xBHWmUtRC5e/UL0tI7Ivt2riA/YBq9+SiYFU7C1oBa/j2jYGlIF9043oak1F47ihuDIxQ5nbsKueYJDRY02UgA==} 4065 4422 4066 4423 hoist-non-react-statics@3.3.2: 4067 4424 resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} ··· 4135 4492 resolution: {integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==} 4136 4493 engines: {node: '>=4'} 4137 4494 4138 - import-fresh@3.3.0: 4139 - resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 4495 + import-fresh@3.3.1: 4496 + resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==} 4140 4497 engines: {node: '>=6'} 4141 4498 4142 4499 import-local@3.2.0: ··· 4147 4504 imurmurhash@0.1.4: 4148 4505 resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 4149 4506 engines: {node: '>=0.8.19'} 4507 + 4508 + indent-string@4.0.0: 4509 + resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} 4510 + engines: {node: '>=8'} 4150 4511 4151 4512 inflight@1.0.6: 4152 4513 resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} ··· 4196 4557 is-arrayish@0.3.2: 4197 4558 resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} 4198 4559 4199 - is-async-function@2.0.0: 4200 - resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} 4560 + is-async-function@2.1.1: 4561 + resolution: {integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==} 4201 4562 engines: {node: '>= 0.4'} 4202 4563 4203 4564 is-bigint@1.1.0: ··· 4208 4569 resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} 4209 4570 engines: {node: '>=8'} 4210 4571 4211 - is-boolean-object@1.2.1: 4212 - resolution: {integrity: sha512-l9qO6eFlUETHtuihLcYOaLKByJ1f+N4kthcU9YjHy3N+B3hWv0y/2Nd0mu/7lTFnRQHTrSdXF50HQ3bl5fEnng==} 4572 + is-boolean-object@1.2.2: 4573 + resolution: {integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==} 4213 4574 engines: {node: '>= 0.4'} 4214 4575 4215 - is-bun-module@1.3.0: 4216 - resolution: {integrity: sha512-DgXeu5UWI0IsMQundYb5UAOzm6G2eVnarJ0byP6Tm55iZNKceD59LNPA2L4VvsScTtHcw0yEkVwSf7PC+QoLSA==} 4576 + is-bun-module@2.0.0: 4577 + resolution: {integrity: sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==} 4217 4578 4218 4579 is-callable@1.2.7: 4219 4580 resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} ··· 4264 4625 resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} 4265 4626 engines: {node: '>= 0.4'} 4266 4627 4628 + is-generator-function@1.1.2: 4629 + resolution: {integrity: sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==} 4630 + engines: {node: '>= 0.4'} 4631 + 4267 4632 is-glob@4.0.3: 4268 4633 resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 4269 4634 engines: {node: '>=0.10.0'} ··· 4272 4637 resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} 4273 4638 engines: {node: '>= 0.4'} 4274 4639 4640 + is-negative-zero@2.0.3: 4641 + resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} 4642 + engines: {node: '>= 0.4'} 4643 + 4275 4644 is-number-object@1.1.1: 4276 4645 resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==} 4277 4646 engines: {node: '>= 0.4'} ··· 4338 4707 resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} 4339 4708 engines: {node: '>= 0.4'} 4340 4709 4341 - is-weakref@1.1.0: 4342 - resolution: {integrity: sha512-SXM8Nwyys6nT5WP6pltOwKytLV7FqQ4UiibxVmW+EIosHcmCqkkjViTb5SNssDlkCiEYRP1/pdWUKVvZBmsR2Q==} 4710 + is-weakref@1.1.1: 4711 + resolution: {integrity: sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==} 4343 4712 engines: {node: '>= 0.4'} 4344 4713 4345 4714 is-weakset@2.0.4: ··· 4378 4747 resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==} 4379 4748 engines: {node: '>=10'} 4380 4749 4750 + istanbul-lib-source-maps@4.0.1: 4751 + resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} 4752 + engines: {node: '>=10'} 4753 + 4381 4754 istanbul-lib-source-maps@5.0.6: 4382 4755 resolution: {integrity: sha512-yg2d+Em4KizZC5niWhQaIomgf5WlL4vOOjZ5xGCmF8SnPE/mDWWXgvRExdcpCgh9lLRRa1/fSYp2ymmbJ1pI+A==} 4383 4756 engines: {node: '>=10'} ··· 4386 4759 resolution: {integrity: sha512-HGYWWS/ehqTV3xN10i23tkPkpH46MLCIMFNCaaKNavAXTF1RkqxawEPtnjnGZ6XKSInBKkiOA5BKS+aZiY3AvA==} 4387 4760 engines: {node: '>=8'} 4388 4761 4389 - iterator.prototype@1.1.4: 4390 - resolution: {integrity: sha512-x4WH0BWmrMmg4oHHl+duwubhrvczGlyuGAZu3nvrf0UXOfPu8IhZObFEr7DE/iv01YgVZrsOiRcqw2srkKEDIA==} 4762 + iterator.prototype@1.1.5: 4763 + resolution: {integrity: sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==} 4391 4764 engines: {node: '>= 0.4'} 4392 4765 4393 4766 jackspeak@3.4.3: ··· 4397 4770 resolution: {integrity: sha512-bZsjR/iRjl1Nk1UkjGpAzLNfQtzuijhn2g+pbZb98HQ1Gk8vM9hfbxeMBP+M2/UUdwj0RqGG3mlvk2MsAqwvEw==} 4398 4771 engines: {node: 20 || >=22} 4399 4772 4773 + jackspeak@4.1.1: 4774 + resolution: {integrity: sha512-zptv57P3GpL+O0I7VdMJNBZCu+BPHVQUk55Ft8/QCJjTVxrnJHuVuX/0Bl2A6/+2oyR/ZMEuFKwmzqqZ/U5nPQ==} 4775 + engines: {node: 20 || >=22} 4776 + 4777 + jest-changed-files@29.7.0: 4778 + resolution: {integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==} 4779 + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 4780 + 4400 4781 jest-changed-files@30.2.0: 4401 4782 resolution: {integrity: sha512-L8lR1ChrRnSdfeOvTrwZMlnWV8G/LLjQ0nG9MBclwWZidA2N5FviRki0Bvh20WRMOX31/JYvzdqTJrk5oBdydQ==} 4402 4783 engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} 4403 4784 4785 + jest-circus@29.7.0: 4786 + resolution: {integrity: sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==} 4787 + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 4788 + 4404 4789 jest-circus@30.2.0: 4405 4790 resolution: {integrity: sha512-Fh0096NC3ZkFx05EP2OXCxJAREVxj1BcW/i6EWqqymcgYKWjyyDpral3fMxVcHXg6oZM7iULer9wGRFvfpl+Tg==} 4406 4791 engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} 4407 4792 4793 + jest-cli@29.7.0: 4794 + resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==} 4795 + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 4796 + hasBin: true 4797 + peerDependencies: 4798 + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 4799 + peerDependenciesMeta: 4800 + node-notifier: 4801 + optional: true 4802 + 4408 4803 jest-cli@30.2.0: 4409 4804 resolution: {integrity: sha512-Os9ukIvADX/A9sLt6Zse3+nmHtHaE6hqOsjQtNiugFTbKRHYIYtZXNGNK9NChseXy7djFPjndX1tL0sCTlfpAA==} 4410 4805 engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} ··· 4415 4810 node-notifier: 4416 4811 optional: true 4417 4812 4813 + jest-config@29.7.0: 4814 + resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==} 4815 + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 4816 + peerDependencies: 4817 + '@types/node': '*' 4818 + ts-node: '>=9.0.0' 4819 + peerDependenciesMeta: 4820 + '@types/node': 4821 + optional: true 4822 + ts-node: 4823 + optional: true 4824 + 4418 4825 jest-config@30.2.0: 4419 4826 resolution: {integrity: sha512-g4WkyzFQVWHtu6uqGmQR4CQxz/CH3yDSlhzXMWzNjDx843gYjReZnMRanjRCq5XZFuQrGDxgUaiYWE8BRfVckA==} 4420 4827 engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} ··· 4438 4845 resolution: {integrity: sha512-dQHFo3Pt4/NLlG5z4PxZ/3yZTZ1C7s9hveiOj+GCN+uT109NC2QgsoVZsVOAvbJ3RgKkvyLGXZV9+piDpWbm6A==} 4439 4846 engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} 4440 4847 4848 + jest-docblock@29.7.0: 4849 + resolution: {integrity: sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==} 4850 + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 4851 + 4441 4852 jest-docblock@30.2.0: 4442 4853 resolution: {integrity: sha512-tR/FFgZKS1CXluOQzZvNH3+0z9jXr3ldGSD8bhyuxvlVUwbeLOGynkunvlTMxchC5urrKndYiwCFC0DLVjpOCA==} 4443 4854 engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} 4855 + 4856 + jest-each@29.7.0: 4857 + resolution: {integrity: sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==} 4858 + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 4444 4859 4445 4860 jest-each@30.2.0: 4446 4861 resolution: {integrity: sha512-lpWlJlM7bCUf1mfmuqTA8+j2lNURW9eNafOy99knBM01i5CQeY5UH1vZjgT9071nDJac1M4XsbyI44oNOdhlDQ==} ··· 4482 4897 resolution: {integrity: sha512-sQA/jCb9kNt+neM0anSj6eZhLZUIhQgwDt7cPGjumgLM4rXsfb9kpnlacmvZz3Q5tb80nS+oG/if+NBKrHC+Xw==} 4483 4898 engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} 4484 4899 4900 + jest-leak-detector@29.7.0: 4901 + resolution: {integrity: sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==} 4902 + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 4903 + 4485 4904 jest-leak-detector@30.2.0: 4486 4905 resolution: {integrity: sha512-M6jKAjyzjHG0SrQgwhgZGy9hFazcudwCNovY/9HPIicmNSBuockPSedAP9vlPK6ONFJ1zfyH/M2/YYJxOz5cdQ==} 4487 4906 engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} ··· 4527 4946 resolution: {integrity: sha512-jHEQgBXAgc+Gh4g0p3bCevgRCVRkB4VB70zhoAE48gxeSr1hfUOsM/C2WoJgVL7Eyg//hudYENbm3Ne+/dRVVA==} 4528 4947 engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} 4529 4948 4949 + jest-resolve-dependencies@29.7.0: 4950 + resolution: {integrity: sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==} 4951 + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 4952 + 4530 4953 jest-resolve-dependencies@30.2.0: 4531 4954 resolution: {integrity: sha512-xTOIGug/0RmIe3mmCqCT95yO0vj6JURrn1TKWlNbhiAefJRWINNPgwVkrVgt/YaerPzY3iItufd80v3lOrFJ2w==} 4532 4955 engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} 4533 4956 4957 + jest-resolve@29.7.0: 4958 + resolution: {integrity: sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==} 4959 + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 4960 + 4534 4961 jest-resolve@30.2.0: 4535 4962 resolution: {integrity: sha512-TCrHSxPlx3tBY3hWNtRQKbtgLhsXa1WmbJEqBlTBrGafd5fiQFByy2GNCEoGR+Tns8d15GaL9cxEzKOO3GEb2A==} 4536 4963 engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} 4537 4964 4965 + jest-runner@29.7.0: 4966 + resolution: {integrity: sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==} 4967 + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 4968 + 4538 4969 jest-runner@30.2.0: 4539 4970 resolution: {integrity: sha512-PqvZ2B2XEyPEbclp+gV6KO/F1FIFSbIwewRgmROCMBo/aZ6J1w8Qypoj2pEOcg3G2HzLlaP6VUtvwCI8dM3oqQ==} 4540 4971 engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} 4972 + 4973 + jest-runtime@29.7.0: 4974 + resolution: {integrity: sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==} 4975 + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 4541 4976 4542 4977 jest-runtime@30.2.0: 4543 4978 resolution: {integrity: sha512-p1+GVX/PJqTucvsmERPMgCPvQJpFt4hFbM+VN3n8TMo47decMUcJbt+rgzwrEme0MQUA/R+1de2axftTHkKckg==} ··· 4596 5031 resolution: {integrity: sha512-0Q4Uk8WF7BUwqXHuAjc23vmopWJw5WH7w2tqBoUOZpOjW/ZnR44GXXd1r82RvnmI2GZge3ivrYXk/BE2+VtW2g==} 4597 5032 engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} 4598 5033 5034 + jest@29.7.0: 5035 + resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==} 5036 + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 5037 + hasBin: true 5038 + peerDependencies: 5039 + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 5040 + peerDependenciesMeta: 5041 + node-notifier: 5042 + optional: true 5043 + 4599 5044 jest@30.2.0: 4600 5045 resolution: {integrity: sha512-F26gjC0yWN8uAA5m5Ss8ZQf5nDHWGlN/xWZIh8S5SRbsEKBovwZhxGd6LJlbZYxBgCYOtreSUyb8hpXyGC5O4A==} 4601 5046 engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} ··· 4724 5169 lighthouse-logger@1.4.2: 4725 5170 resolution: {integrity: sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==} 4726 5171 5172 + lightningcss-android-arm64@1.30.2: 5173 + resolution: {integrity: sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A==} 5174 + engines: {node: '>= 12.0.0'} 5175 + cpu: [arm64] 5176 + os: [android] 5177 + 4727 5178 lightningcss-darwin-arm64@1.27.0: 4728 5179 resolution: {integrity: sha512-Gl/lqIXY+d+ySmMbgDf0pgaWSqrWYxVHoc88q+Vhf2YNzZ8DwoRzGt5NZDVqqIW5ScpSnmmjcgXP87Dn2ylSSQ==} 4729 5180 engines: {node: '>= 12.0.0'} 4730 5181 cpu: [arm64] 4731 5182 os: [darwin] 4732 5183 4733 - lightningcss-darwin-arm64@1.28.2: 4734 - resolution: {integrity: sha512-/8cPSqZiusHSS+WQz0W4NuaqFjquys1x+NsdN/XOHb+idGHJSoJ7SoQTVl3DZuAgtPZwFZgRfb/vd1oi8uX6+g==} 5184 + lightningcss-darwin-arm64@1.30.2: 5185 + resolution: {integrity: sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==} 4735 5186 engines: {node: '>= 12.0.0'} 4736 5187 cpu: [arm64] 4737 5188 os: [darwin] ··· 4742 5193 cpu: [x64] 4743 5194 os: [darwin] 4744 5195 4745 - lightningcss-darwin-x64@1.28.2: 4746 - resolution: {integrity: sha512-R7sFrXlgKjvoEG8umpVt/yutjxOL0z8KWf0bfPT3cYMOW4470xu5qSHpFdIOpRWwl3FKNMUdbKtMUjYt0h2j4g==} 5196 + lightningcss-darwin-x64@1.30.2: 5197 + resolution: {integrity: sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==} 4747 5198 engines: {node: '>= 12.0.0'} 4748 5199 cpu: [x64] 4749 5200 os: [darwin] ··· 4754 5205 cpu: [x64] 4755 5206 os: [freebsd] 4756 5207 4757 - lightningcss-freebsd-x64@1.28.2: 4758 - resolution: {integrity: sha512-l2qrCT+x7crAY+lMIxtgvV10R8VurzHAoUZJaVFSlHrN8kRLTvEg9ObojIDIexqWJQvJcVVV3vfzsEynpiuvgA==} 5208 + lightningcss-freebsd-x64@1.30.2: 5209 + resolution: {integrity: sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==} 4759 5210 engines: {node: '>= 12.0.0'} 4760 5211 cpu: [x64] 4761 5212 os: [freebsd] ··· 4766 5217 cpu: [arm] 4767 5218 os: [linux] 4768 5219 4769 - lightningcss-linux-arm-gnueabihf@1.28.2: 4770 - resolution: {integrity: sha512-DKMzpICBEKnL53X14rF7hFDu8KKALUJtcKdFUCW5YOlGSiwRSgVoRjM97wUm/E0NMPkzrTi/rxfvt7ruNK8meg==} 5220 + lightningcss-linux-arm-gnueabihf@1.30.2: 5221 + resolution: {integrity: sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==} 4771 5222 engines: {node: '>= 12.0.0'} 4772 5223 cpu: [arm] 4773 5224 os: [linux] ··· 4778 5229 cpu: [arm64] 4779 5230 os: [linux] 4780 5231 4781 - lightningcss-linux-arm64-gnu@1.28.2: 4782 - resolution: {integrity: sha512-nhfjYkfymWZSxdtTNMWyhFk2ImUm0X7NAgJWFwnsYPOfmtWQEapzG/DXZTfEfMjSzERNUNJoQjPAbdqgB+sjiw==} 5232 + lightningcss-linux-arm64-gnu@1.30.2: 5233 + resolution: {integrity: sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==} 4783 5234 engines: {node: '>= 12.0.0'} 4784 5235 cpu: [arm64] 4785 5236 os: [linux] ··· 4790 5241 cpu: [arm64] 4791 5242 os: [linux] 4792 5243 4793 - lightningcss-linux-arm64-musl@1.28.2: 4794 - resolution: {integrity: sha512-1SPG1ZTNnphWvAv8RVOymlZ8BDtAg69Hbo7n4QxARvkFVCJAt0cgjAw1Fox0WEhf4PwnyoOBaVH0Z5YNgzt4dA==} 5244 + lightningcss-linux-arm64-musl@1.30.2: 5245 + resolution: {integrity: sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==} 4795 5246 engines: {node: '>= 12.0.0'} 4796 5247 cpu: [arm64] 4797 5248 os: [linux] ··· 4802 5253 cpu: [x64] 4803 5254 os: [linux] 4804 5255 4805 - lightningcss-linux-x64-gnu@1.28.2: 4806 - resolution: {integrity: sha512-ZhQy0FcO//INWUdo/iEdbefntTdpPVQ0XJwwtdbBuMQe+uxqZoytm9M+iqR9O5noWFaxK+nbS2iR/I80Q2Ofpg==} 5256 + lightningcss-linux-x64-gnu@1.30.2: 5257 + resolution: {integrity: sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==} 4807 5258 engines: {node: '>= 12.0.0'} 4808 5259 cpu: [x64] 4809 5260 os: [linux] ··· 4814 5265 cpu: [x64] 4815 5266 os: [linux] 4816 5267 4817 - lightningcss-linux-x64-musl@1.28.2: 4818 - resolution: {integrity: sha512-alb/j1NMrgQmSFyzTbN1/pvMPM+gdDw7YBuQ5VSgcFDypN3Ah0BzC2dTZbzwzaMdUVDszX6zH5MzjfVN1oGuww==} 5268 + lightningcss-linux-x64-musl@1.30.2: 5269 + resolution: {integrity: sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==} 4819 5270 engines: {node: '>= 12.0.0'} 4820 5271 cpu: [x64] 4821 5272 os: [linux] ··· 4826 5277 cpu: [arm64] 4827 5278 os: [win32] 4828 5279 4829 - lightningcss-win32-arm64-msvc@1.28.2: 4830 - resolution: {integrity: sha512-WnwcjcBeAt0jGdjlgbT9ANf30pF0C/QMb1XnLnH272DQU8QXh+kmpi24R55wmWBwaTtNAETZ+m35ohyeMiNt+g==} 5280 + lightningcss-win32-arm64-msvc@1.30.2: 5281 + resolution: {integrity: sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==} 4831 5282 engines: {node: '>= 12.0.0'} 4832 5283 cpu: [arm64] 4833 5284 os: [win32] ··· 4838 5289 cpu: [x64] 4839 5290 os: [win32] 4840 5291 4841 - lightningcss-win32-x64-msvc@1.28.2: 4842 - resolution: {integrity: sha512-3piBifyT3avz22o6mDKywQC/OisH2yDK+caHWkiMsF82i3m5wDBadyCjlCQ5VNgzYkxrWZgiaxHDdd5uxsi0/A==} 5292 + lightningcss-win32-x64-msvc@1.30.2: 5293 + resolution: {integrity: sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==} 4843 5294 engines: {node: '>= 12.0.0'} 4844 5295 cpu: [x64] 4845 5296 os: [win32] ··· 4848 5299 resolution: {integrity: sha512-8f7aNmS1+etYSLHht0fQApPc2kNO8qGRutifN5rVIc6Xo6ABsEbqOr758UwI7ALVbTt4x1fllKt0PYgzD9S3yQ==} 4849 5300 engines: {node: '>= 12.0.0'} 4850 5301 4851 - lightningcss@1.28.2: 4852 - resolution: {integrity: sha512-ePLRrbt3fgjXI5VFZOLbvkLD5ZRuxGKm+wJ3ujCqBtL3NanDHPo/5zicR5uEKAPiIjBYF99BM4K4okvMznjkVA==} 5302 + lightningcss@1.30.2: 5303 + resolution: {integrity: sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==} 4853 5304 engines: {node: '>= 12.0.0'} 4854 5305 4855 5306 lilconfig@3.1.3: ··· 4967 5418 resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} 4968 5419 engines: {node: '>= 0.6'} 4969 5420 4970 - metro-babel-transformer@0.82.4: 4971 - resolution: {integrity: sha512-4juJahGRb1gmNbQq48lNinB6WFNfb6m0BQqi/RQibEltNiqTCxew/dBspI2EWA4xVCd3mQWGfw0TML4KurQZnQ==} 4972 - engines: {node: '>=18.18'} 5421 + metro-babel-transformer@0.83.1: 5422 + resolution: {integrity: sha512-r3xAD3964E8dwDBaZNSO2aIIvWXjIK80uO2xo0/pi3WI8XWT9h5SCjtGWtMtE5PRWw+t20TN0q1WMRsjvhC1rQ==} 5423 + engines: {node: '>=20.19.4'} 4973 5424 4974 - metro-cache-key@0.82.4: 4975 - resolution: {integrity: sha512-2JCTqcpF+f2OghOpe/+x+JywfzDkrHdAqinPFWmK2ezNAU/qX0jBFaTETogPibFivxZJil37w9Yp6syX8rFUng==} 4976 - engines: {node: '>=18.18'} 5425 + metro-cache-key@0.83.1: 5426 + resolution: {integrity: sha512-ZUs+GD5CNeDLxx5UUWmfg26IL+Dnbryd+TLqTlZnDEgehkIa11kUSvgF92OFfJhONeXzV4rZDRGNXoo6JT+8Gg==} 5427 + engines: {node: '>=20.19.4'} 4977 5428 4978 - metro-cache@0.82.4: 4979 - resolution: {integrity: sha512-vX0ylSMGtORKiZ4G8uP6fgfPdDiCWvLZUGZ5zIblSGylOX6JYhvExl0Zg4UA9pix/SSQu5Pnp9vdODMFsNIxhw==} 4980 - engines: {node: '>=18.18'} 5429 + metro-cache@0.83.1: 5430 + resolution: {integrity: sha512-7N/Ad1PHa1YMWDNiyynTPq34Op2qIE68NWryGEQ4TSE3Zy6a8GpsYnEEZE4Qi6aHgsE+yZHKkRczeBgxhnFIxQ==} 5431 + engines: {node: '>=20.19.4'} 4981 5432 4982 - metro-config@0.82.4: 4983 - resolution: {integrity: sha512-Ki3Wumr3hKHGDS7RrHsygmmRNc/PCJrvkLn0+BWWxmbOmOcMMJDSmSI+WRlT8jd5VPZFxIi4wg+sAt5yBXAK0g==} 4984 - engines: {node: '>=18.18'} 5433 + metro-config@0.83.1: 5434 + resolution: {integrity: sha512-HJhpZx3wyOkux/jeF1o7akFJzZFdbn6Zf7UQqWrvp7gqFqNulQ8Mju09raBgPmmSxKDl4LbbNeigkX0/nKY1QA==} 5435 + engines: {node: '>=20.19.4'} 4985 5436 4986 - metro-core@0.82.4: 4987 - resolution: {integrity: sha512-Xo4ozbxPg2vfgJGCgXZ8sVhC2M0lhTqD+tsKO2q9aelq/dCjnnSb26xZKcQO80CQOQUL7e3QWB7pLFGPjZm31A==} 4988 - engines: {node: '>=18.18'} 5437 + metro-core@0.83.1: 5438 + resolution: {integrity: sha512-uVL1eAJcMFd2o2Q7dsbpg8COaxjZBBGaXqO2OHnivpCdfanraVL8dPmY6It9ZeqWLOihUKZ2yHW4b6soVCzH/Q==} 5439 + engines: {node: '>=20.19.4'} 4989 5440 4990 - metro-file-map@0.82.4: 4991 - resolution: {integrity: sha512-eO7HD1O3aeNsbEe6NBZvx1lLJUrxgyATjnDmb7bm4eyF6yWOQot9XVtxTDLNifECuvsZ4jzRiTInrbmIHkTdGA==} 4992 - engines: {node: '>=18.18'} 5441 + metro-file-map@0.83.1: 5442 + resolution: {integrity: sha512-Yu429lnexKl44PttKw3nhqgmpBR+6UQ/tRaYcxPeEShtcza9DWakCn7cjqDTQZtWR2A8xSNv139izJMyQ4CG+w==} 5443 + engines: {node: '>=20.19.4'} 4993 5444 4994 - metro-minify-terser@0.82.4: 4995 - resolution: {integrity: sha512-W79Mi6BUwWVaM8Mc5XepcqkG+TSsCyyo//dmTsgYfJcsmReQorRFodil3bbJInETvjzdnS1mCsUo9pllNjT1Hg==} 4996 - engines: {node: '>=18.18'} 5445 + metro-minify-terser@0.83.1: 5446 + resolution: {integrity: sha512-kmooOxXLvKVxkh80IVSYO4weBdJDhCpg5NSPkjzzAnPJP43u6+usGXobkTWxxrAlq900bhzqKek4pBsUchlX6A==} 5447 + engines: {node: '>=20.19.4'} 4997 5448 4998 - metro-resolver@0.82.4: 4999 - resolution: {integrity: sha512-uWoHzOBGQTPT5PjippB8rRT3iI9CTgFA9tRiLMzrseA5o7YAlgvfTdY9vFk2qyk3lW3aQfFKWkmqENryPRpu+Q==} 5000 - engines: {node: '>=18.18'} 5449 + metro-resolver@0.83.1: 5450 + resolution: {integrity: sha512-t8j46kiILAqqFS5RNa+xpQyVjULxRxlvMidqUswPEk5nQVNdlJslqizDm/Et3v/JKwOtQGkYAQCHxP1zGStR/g==} 5451 + engines: {node: '>=20.19.4'} 5001 5452 5002 - metro-runtime@0.82.4: 5003 - resolution: {integrity: sha512-vVyFO7H+eLXRV2E7YAUYA7aMGBECGagqxmFvC2hmErS7oq90BbPVENfAHbUWq1vWH+MRiivoRxdxlN8gBoF/dw==} 5004 - engines: {node: '>=18.18'} 5453 + metro-runtime@0.83.1: 5454 + resolution: {integrity: sha512-3Ag8ZS4IwafL/JUKlaeM6/CbkooY+WcVeqdNlBG0m4S0Qz0om3rdFdy1y6fYBpl6AwXJwWeMuXrvZdMuByTcRA==} 5455 + engines: {node: '>=20.19.4'} 5005 5456 5006 - metro-source-map@0.82.4: 5007 - resolution: {integrity: sha512-9jzDQJ0FPas1FuQFtwmBHsez2BfhFNufMowbOMeG3ZaFvzeziE8A0aJwILDS3U+V5039ssCQFiQeqDgENWvquA==} 5008 - engines: {node: '>=18.18'} 5457 + metro-source-map@0.83.1: 5458 + resolution: {integrity: sha512-De7Vbeo96fFZ2cqmI0fWwVJbtHIwPZv++LYlWSwzTiCzxBDJORncN0LcT48Vi2UlQLzXJg+/CuTAcy7NBVh69A==} 5459 + engines: {node: '>=20.19.4'} 5009 5460 5010 - metro-symbolicate@0.82.4: 5011 - resolution: {integrity: sha512-LwEwAtdsx7z8rYjxjpLWxuFa2U0J6TS6ljlQM4WAATKa4uzV8unmnRuN2iNBWTmRqgNR77mzmI2vhwD4QSCo+w==} 5012 - engines: {node: '>=18.18'} 5461 + metro-symbolicate@0.83.1: 5462 + resolution: {integrity: sha512-wPxYkONlq/Sv8Ji7vHEx5OzFouXAMQJjpcPW41ySKMLP/Ir18SsiJK2h4YkdKpYrTS1+0xf8oqF6nxCsT3uWtg==} 5463 + engines: {node: '>=20.19.4'} 5013 5464 hasBin: true 5014 5465 5015 - metro-transform-plugins@0.82.4: 5016 - resolution: {integrity: sha512-NoWQRPHupVpnDgYguiEcm7YwDhnqW02iWWQjO2O8NsNP09rEMSq99nPjARWfukN7+KDh6YjLvTIN20mj3dk9kw==} 5017 - engines: {node: '>=18.18'} 5466 + metro-transform-plugins@0.83.1: 5467 + resolution: {integrity: sha512-1Y+I8oozXwhuS0qwC+ezaHXBf0jXW4oeYn4X39XWbZt9X2HfjodqY9bH9r6RUTsoiK7S4j8Ni2C91bUC+sktJQ==} 5468 + engines: {node: '>=20.19.4'} 5018 5469 5019 - metro-transform-worker@0.82.4: 5020 - resolution: {integrity: sha512-kPI7Ad/tdAnI9PY4T+2H0cdgGeSWWdiPRKuytI806UcN4VhFL6OmYa19/4abYVYF+Cd2jo57CDuwbaxRfmXDhw==} 5021 - engines: {node: '>=18.18'} 5470 + metro-transform-worker@0.83.1: 5471 + resolution: {integrity: sha512-owCrhPyUxdLgXEEEAL2b14GWTPZ2zYuab1VQXcfEy0sJE71iciD7fuMcrngoufh7e7UHDZ56q4ktXg8wgiYA1Q==} 5472 + engines: {node: '>=20.19.4'} 5022 5473 5023 - metro@0.82.4: 5024 - resolution: {integrity: sha512-/gFmw3ux9CPG5WUmygY35hpyno28zi/7OUn6+OFfbweA8l0B+PPqXXLr0/T6cf5nclCcH0d22o+02fICaShVxw==} 5025 - engines: {node: '>=18.18'} 5474 + metro@0.83.1: 5475 + resolution: {integrity: sha512-UGKepmTxoGD4HkQV8YWvpvwef7fUujNtTgG4Ygf7m/M0qjvb9VuDmAsEU+UdriRX7F61pnVK/opz89hjKlYTXA==} 5476 + engines: {node: '>=20.19.4'} 5026 5477 hasBin: true 5027 5478 5028 5479 micromatch@4.0.8: ··· 5050 5501 resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} 5051 5502 engines: {node: '>=6'} 5052 5503 5053 - minimatch@10.0.1: 5054 - resolution: {integrity: sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==} 5504 + min-indent@1.0.1: 5505 + resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} 5506 + engines: {node: '>=4'} 5507 + 5508 + minimatch@10.0.3: 5509 + resolution: {integrity: sha512-IPZ167aShDZZUMdRk66cyQAW3qr0WzbHkPdMYa8bzZhlHhO3jALbKdxcaak7W9FfT2rZNpQuUu4Od7ILEpXSaw==} 5055 5510 engines: {node: 20 || >=22} 5056 5511 5057 5512 minimatch@3.1.2: ··· 5118 5573 engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 5119 5574 hasBin: true 5120 5575 5121 - nanoid@3.3.8: 5122 - resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==} 5123 - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 5124 - hasBin: true 5125 - 5126 5576 napi-postinstall@0.3.4: 5127 5577 resolution: {integrity: sha512-PHI5f1O0EP5xJ9gQmFGMS6IZcrVvTjpXjz7Na41gTE7eE2hK11lg04CECCYEEjdc17EV4DO+fkGEtt7TpTaTiQ==} 5128 5578 engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} 5129 5579 hasBin: true 5130 5580 5131 - nativewind@4.1.23: 5132 - resolution: {integrity: sha512-oLX3suGI6ojQqWxdQezOSM5GmJ4KvMnMtmaSMN9Ggb5j7ysFt4nHxb1xs8RDjZR7BWc+bsetNJU8IQdQMHqRpg==} 5581 + nativewind@4.2.1: 5582 + resolution: {integrity: sha512-10uUB2Dlli3MH3NDL5nMHqJHz1A3e/E6mzjTj6cl7hHECClJ7HpE6v+xZL+GXdbwQSnWE+UWMIMsNz7yOQkAJQ==} 5133 5583 engines: {node: '>=16'} 5134 5584 peerDependencies: 5135 5585 tailwindcss: '>3.3.0' ··· 5171 5621 node-int64@0.4.0: 5172 5622 resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} 5173 5623 5174 - node-releases@2.0.19: 5175 - resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==} 5624 + node-releases@2.0.23: 5625 + resolution: {integrity: sha512-cCmFDMSm26S6tQSDpBCg/NR8NENrVPhAJSf+XbxBG4rPFaaonlEoE9wHQmun+cls499TQGSb7ZyPBRlzgKfpeg==} 5176 5626 5177 5627 normalize-path@3.0.0: 5178 5628 resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} ··· 5206 5656 oauth-sign@0.9.0: 5207 5657 resolution: {integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==} 5208 5658 5209 - ob1@0.82.4: 5210 - resolution: {integrity: sha512-n9S8e4l5TvkrequEAMDidl4yXesruWTNTzVkeaHSGywoTOIwTzZzKw7Z670H3eaXDZui5MJXjWGNzYowVZIxCA==} 5211 - engines: {node: '>=18.18'} 5659 + ob1@0.83.1: 5660 + resolution: {integrity: sha512-ngwqewtdUzFyycomdbdIhFLjePPSOt1awKMUXQ0L7iLHgWEPF3DsCerblzjzfAUHaXuvE9ccJymWQ/4PNNqvnQ==} 5661 + engines: {node: '>=20.19.4'} 5212 5662 5213 5663 object-assign@4.1.1: 5214 5664 resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} ··· 5218 5668 resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} 5219 5669 engines: {node: '>= 6'} 5220 5670 5221 - object-inspect@1.13.3: 5222 - resolution: {integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==} 5671 + object-inspect@1.13.4: 5672 + resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==} 5223 5673 engines: {node: '>= 0.4'} 5224 5674 5225 5675 object-keys@1.1.1: ··· 5230 5680 resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==} 5231 5681 engines: {node: '>= 0.4'} 5232 5682 5233 - object.entries@1.1.8: 5234 - resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==} 5683 + object.entries@1.1.9: 5684 + resolution: {integrity: sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==} 5235 5685 engines: {node: '>= 0.4'} 5236 5686 5237 5687 object.fromentries@2.0.8: ··· 5399 5849 path-to-regexp@0.1.12: 5400 5850 resolution: {integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==} 5401 5851 5852 + path-type@4.0.0: 5853 + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} 5854 + engines: {node: '>=8'} 5855 + 5402 5856 performance-now@2.1.0: 5403 5857 resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==} 5404 5858 ··· 5413 5867 resolution: {integrity: sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==} 5414 5868 engines: {node: '>=10'} 5415 5869 5416 - picomatch@4.0.2: 5417 - resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} 5870 + picomatch@4.0.3: 5871 + resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==} 5418 5872 engines: {node: '>=12'} 5419 5873 5420 5874 pify@2.3.0: ··· 5431 5885 resolution: {integrity: sha512-ip4qdzjkAyDDZklUaZkcRFb2iA118H9SgRh8yzTkSQK8HilsOJF7rSY8HoW5+I0M46AZgX/pxbprf2vvzQCE0Q==} 5432 5886 hasBin: true 5433 5887 5434 - pirates@4.0.6: 5435 - resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} 5436 - engines: {node: '>= 6'} 5437 - 5438 5888 pirates@4.0.7: 5439 5889 resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==} 5440 5890 engines: {node: '>= 6'} ··· 5459 5909 resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} 5460 5910 engines: {node: '>= 0.4'} 5461 5911 5912 + possible-typed-array-names@1.1.0: 5913 + resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==} 5914 + engines: {node: '>= 0.4'} 5915 + 5462 5916 postcss-import@15.1.0: 5463 5917 resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} 5464 5918 engines: {node: '>=14.0.0'} 5465 5919 peerDependencies: 5466 5920 postcss: ^8.0.0 5467 5921 5468 - postcss-js@4.0.1: 5469 - resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} 5922 + postcss-js@4.1.0: 5923 + resolution: {integrity: sha512-oIAOTqgIo7q2EOwbhb8UalYePMvYoIeRY2YKntdpFQXNosSu3vLrniGgmH9OKs/qAkfoj5oB3le/7mINW1LCfw==} 5470 5924 engines: {node: ^12 || ^14 || >= 16} 5471 5925 peerDependencies: 5472 5926 postcss: ^8.4.21 5473 5927 5474 - postcss-load-config@4.0.2: 5475 - resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==} 5476 - engines: {node: '>= 14'} 5928 + postcss-load-config@6.0.1: 5929 + resolution: {integrity: sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==} 5930 + engines: {node: '>= 18'} 5477 5931 peerDependencies: 5932 + jiti: '>=1.21.0' 5478 5933 postcss: '>=8.0.9' 5479 - ts-node: '>=9.0.0' 5934 + tsx: ^4.8.1 5935 + yaml: ^2.4.2 5480 5936 peerDependenciesMeta: 5937 + jiti: 5938 + optional: true 5481 5939 postcss: 5482 5940 optional: true 5483 - ts-node: 5941 + tsx: 5942 + optional: true 5943 + yaml: 5484 5944 optional: true 5485 5945 5486 5946 postcss-nested@6.2.0: ··· 5504 5964 resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 5505 5965 engines: {node: '>= 0.8.0'} 5506 5966 5507 - prettier-plugin-tailwindcss@0.6.12: 5508 - resolution: {integrity: sha512-OuTQKoqNwV7RnxTPwXWzOFXy6Jc4z8oeRZYGuMpRyG3WbuR3jjXdQFK8qFBMBx8UHWdHrddARz2fgUenild6aw==} 5967 + prettier-plugin-tailwindcss@0.6.14: 5968 + resolution: {integrity: sha512-pi2e/+ZygeIqntN+vC573BcW5Cve8zUB0SSAGxqpB4f96boZF4M3phPVoOFCeypwkpRYdi7+jQ5YJJUwrkGUAg==} 5509 5969 engines: {node: '>=14.21.3'} 5510 5970 peerDependencies: 5511 5971 '@ianvs/prettier-plugin-sort-imports': '*' 5972 + '@prettier/plugin-hermes': '*' 5973 + '@prettier/plugin-oxc': '*' 5512 5974 '@prettier/plugin-pug': '*' 5513 5975 '@shopify/prettier-plugin-liquid': '*' 5514 5976 '@trivago/prettier-plugin-sort-imports': '*' ··· 5527 5989 prettier-plugin-svelte: '*' 5528 5990 peerDependenciesMeta: 5529 5991 '@ianvs/prettier-plugin-sort-imports': 5992 + optional: true 5993 + '@prettier/plugin-hermes': 5994 + optional: true 5995 + '@prettier/plugin-oxc': 5530 5996 optional: true 5531 5997 '@prettier/plugin-pug': 5532 5998 optional: true ··· 5559 6025 prettier-plugin-svelte: 5560 6026 optional: true 5561 6027 5562 - prettier@3.4.2: 5563 - resolution: {integrity: sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==} 5564 - engines: {node: '>=14'} 5565 - hasBin: true 5566 - 5567 - prettier@3.5.3: 5568 - resolution: {integrity: sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==} 6028 + prettier@3.6.2: 6029 + resolution: {integrity: sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==} 5569 6030 engines: {node: '>=14'} 5570 6031 hasBin: true 5571 6032 ··· 5624 6085 resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} 5625 6086 engines: {node: '>=6'} 5626 6087 6088 + pure-rand@6.1.0: 6089 + resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==} 6090 + 5627 6091 pure-rand@7.0.1: 5628 6092 resolution: {integrity: sha512-oTUZM/NAZS8p7ANR3SHh30kXB+zK2r2BPcEn/awJIbOvq82WoMN4p62AWWp3Hhw50G0xMsw1mhIBLqHw64EcNQ==} 5629 6093 ··· 5678 6142 peerDependencies: 5679 6143 react: ^17.0.0 || ^18.0.0 || ^19.0.0 5680 6144 5681 - react-devtools-core@6.1.2: 5682 - resolution: {integrity: sha512-ldFwzufLletzCikNJVYaxlxMLu7swJ3T2VrGfzXlMsVhZhPDKXA38DEROidaYZVgMAmQnIjymrmqto5pyfrwPA==} 6145 + react-devtools-core@6.1.5: 6146 + resolution: {integrity: sha512-ePrwPfxAnB+7hgnEr8vpKxL9cmnp7F322t8oqcPshbIQQhDKgFDW4tjhF2wjVbdXF9O/nyuy3sQWd9JGpiLPvA==} 6147 + 6148 + react-dom@19.1.0: 6149 + resolution: {integrity: sha512-Xs1hdnE+DyKgeHJeJznQmYMIBG3TKIHJJT95Q58nHLSrElKlGQqDTR2HQ9fx5CN/Gk6Vh/kupBTDLU11/nDk/g==} 6150 + peerDependencies: 6151 + react: ^19.1.0 5683 6152 5684 - react-dom@19.0.0: 5685 - resolution: {integrity: sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==} 6153 + react-dom@19.2.0: 6154 + resolution: {integrity: sha512-UlbRu4cAiGaIewkPyiRGJk0imDN2T3JjieT6spoL2UeSf5od4n5LB/mQ4ejmxhCFT1tYe8IvaFulzynWovsEFQ==} 5686 6155 peerDependencies: 5687 - react: ^19.0.0 6156 + react: ^19.2.0 5688 6157 5689 6158 react-fast-compare@3.2.2: 5690 6159 resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==} ··· 5704 6173 react-is@19.1.0: 5705 6174 resolution: {integrity: sha512-Oe56aUPnkHyyDxxkvqtd7KkdQP5uIUfHxd5XTb3wE9d/kRnZLmKbDB0GWk919tdQ+mxxPtG6EAs6RMT6i1qtHg==} 5706 6175 5707 - react-native-css-interop@0.1.18: 5708 - resolution: {integrity: sha512-ZDA52ZOr1YQyq9iWncEsbCe1luuAqLX4XeRX9r3XAdHYGc3YpJ5xcL2A6X9wHF39/icISMs3/0OMSnQJe/Flhg==} 6176 + react-is@19.2.0: 6177 + resolution: {integrity: sha512-x3Ax3kNSMIIkyVYhWPyO09bu0uttcAIoecO/um/rKGQ4EltYWVYtyiGkS/3xMynrbVQdS69Jhlv8FXUEZehlzA==} 6178 + 6179 + react-native-css-interop@0.1.22: 6180 + resolution: {integrity: sha512-Mu01e+H9G+fxSWvwtgWlF5MJBJC4VszTCBXopIpeR171lbeBInHb8aHqoqRPxmJpi3xIHryzqKFOJYAdk7PBxg==} 5709 6181 engines: {node: '>=18'} 5710 6182 peerDependencies: 5711 6183 react: '>=18' ··· 5720 6192 react-native-svg: 5721 6193 optional: true 5722 6194 5723 - react-native-css-interop@0.1.22: 5724 - resolution: {integrity: sha512-Mu01e+H9G+fxSWvwtgWlF5MJBJC4VszTCBXopIpeR171lbeBInHb8aHqoqRPxmJpi3xIHryzqKFOJYAdk7PBxg==} 6195 + react-native-css-interop@0.2.1: 6196 + resolution: {integrity: sha512-B88f5rIymJXmy1sNC/MhTkb3xxBej1KkuAt7TiT9iM7oXz3RM8Bn+7GUrfR02TvSgKm4cg2XiSuLEKYfKwNsjA==} 5725 6197 engines: {node: '>=18'} 5726 6198 peerDependencies: 5727 6199 react: '>=18' ··· 5736 6208 react-native-svg: 5737 6209 optional: true 5738 6210 5739 - react-native-edge-to-edge@1.6.0: 5740 - resolution: {integrity: sha512-2WCNdE3Qd6Fwg9+4BpbATUxCLcouF6YRY7K+J36KJ4l3y+tWN6XCqAC4DuoGblAAbb2sLkhEDp4FOlbOIot2Og==} 6211 + react-native-gesture-handler@2.28.0: 6212 + resolution: {integrity: sha512-0msfJ1vRxXKVgTgvL+1ZOoYw3/0z1R+Ked0+udoJhyplC2jbVKIJ8Z1bzWdpQRCV3QcQ87Op0zJVE5DhKK2A0A==} 5741 6213 peerDependencies: 5742 6214 react: '*' 5743 6215 react-native: '*' 5744 6216 5745 - react-native-gesture-handler@2.24.0: 5746 - resolution: {integrity: sha512-ZdWyOd1C8axKJHIfYxjJKCcxjWEpUtUWgTOVY2wynbiveSQDm8X/PDyAKXSer/GOtIpjudUbACOndZXCN3vHsw==} 6217 + react-native-is-edge-to-edge@1.1.7: 6218 + resolution: {integrity: sha512-EH6i7E8epJGIcu7KpfXYXiV2JFIYITtq+rVS8uEb+92naMRBdxhTuS8Wn2Q7j9sqyO0B+Xbaaf9VdipIAmGW4w==} 5747 6219 peerDependencies: 5748 6220 react: '*' 5749 6221 react-native: '*' 5750 6222 5751 - react-native-is-edge-to-edge@1.1.6: 5752 - resolution: {integrity: sha512-1pHnFTlBahins6UAajXUqeCOHew9l9C2C8tErnpGC3IyLJzvxD+TpYAixnCbrVS52f7+NvMttbiSI290XfwN0w==} 5753 - peerDependencies: 5754 - react: '>=18.2.0' 5755 - react-native: '>=0.73.0' 5756 - 5757 - react-native-is-edge-to-edge@1.1.7: 5758 - resolution: {integrity: sha512-EH6i7E8epJGIcu7KpfXYXiV2JFIYITtq+rVS8uEb+92naMRBdxhTuS8Wn2Q7j9sqyO0B+Xbaaf9VdipIAmGW4w==} 6223 + react-native-is-edge-to-edge@1.2.1: 6224 + resolution: {integrity: sha512-FLbPWl/MyYQWz+KwqOZsSyj2JmLKglHatd3xLZWskXOpRaio4LfEDEz8E/A6uD8QoTHW6Aobw1jbEwK7KMgR7Q==} 5759 6225 peerDependencies: 5760 6226 react: '*' 5761 6227 react-native: '*' ··· 5766 6232 react: '*' 5767 6233 react-native: '*' 5768 6234 5769 - react-native-quick-crypto@0.7.10: 5770 - resolution: {integrity: sha512-ziupKopD1o58v+ywL8aTvJMXBpGf89xLQc3JKG5CRSdEUfTUu5e4ru43KIXrG6uleCX8pcgD6e6RsMqrdEy0zw==} 5771 - peerDependencies: 5772 - react: '*' 5773 - react-native: '*' 6235 + react-native-quick-crypto@0.7.17: 6236 + resolution: {integrity: sha512-cJzp6oA/dM1lujt+Rwtn46Mgcs3w9F/0oQvNz1jcADc/AXktveAOUTzzKrDMxyg6YPziCYnoqMDzHBo6OLSU1g==} 5774 6237 5775 - react-native-reanimated@3.17.5: 5776 - resolution: {integrity: sha512-SxBK7wQfJ4UoWoJqQnmIC7ZjuNgVb9rcY5Xc67upXAFKftWg0rnkknTw6vgwnjRcvYThrjzUVti66XoZdDJGtw==} 6238 + react-native-reanimated@4.1.2: 6239 + resolution: {integrity: sha512-qzmQiFrvjm62pRBcj97QI9Xckc3EjgHQoY1F2yjktd0kpjhoyePeuTEXjYRCAVIy7IV/1cfeSup34+zFThFoHQ==} 5777 6240 peerDependencies: 5778 6241 '@babel/core': ^7.0.0-0 5779 6242 react: '*' 5780 6243 react-native: '*' 6244 + react-native-worklets: '>=0.5.0' 5781 6245 5782 - react-native-safe-area-context@5.4.0: 5783 - resolution: {integrity: sha512-JaEThVyJcLhA+vU0NU8bZ0a1ih6GiF4faZ+ArZLqpYbL6j7R3caRqj+mE3lEtKCuHgwjLg3bCxLL1GPUJZVqUA==} 6246 + react-native-safe-area-context@5.6.1: 6247 + resolution: {integrity: sha512-/wJE58HLEAkATzhhX1xSr+fostLsK8Q97EfpfMDKo8jlOc1QKESSX/FQrhk7HhQH/2uSaox4Y86sNaI02kteiA==} 5784 6248 peerDependencies: 5785 6249 react: '*' 5786 6250 react-native: '*' 5787 6251 5788 - react-native-screens@4.10.0: 5789 - resolution: {integrity: sha512-Tw21NGuXm3PbiUGtZd0AnXirUixaAbPXDjNR0baBH7/WJDaDTTELLcQ7QRXuqAWbmr/EVCrKj1348ei1KFIr8A==} 6252 + react-native-screens@4.16.0: 6253 + resolution: {integrity: sha512-yIAyh7F/9uWkOzCi1/2FqvNvK6Wb9Y1+Kzn16SuGfN9YFJDTbwlzGRvePCNTOX0recpLQF3kc2FmvMUhyTCH1Q==} 5790 6254 peerDependencies: 5791 6255 react: '*' 5792 6256 react-native: '*' 5793 6257 5794 - react-native-svg@15.11.2: 5795 - resolution: {integrity: sha512-+YfF72IbWQUKzCIydlijV1fLuBsQNGMT6Da2kFlo1sh+LE3BIm/2Q7AR1zAAR6L0BFLi1WaQPLfFUC9bNZpOmw==} 6258 + react-native-svg@15.12.1: 6259 + resolution: {integrity: sha512-vCuZJDf8a5aNC2dlMovEv4Z0jjEUET53lm/iILFnFewa15b4atjVxU6Wirm6O9y6dEsdjDZVD7Q3QM4T1wlI8g==} 5796 6260 peerDependencies: 5797 6261 react: '*' 5798 6262 react-native: '*' 5799 6263 5800 - react-native-web@0.20.0: 5801 - resolution: {integrity: sha512-OOSgrw+aON6R3hRosCau/xVxdLzbjEcsLysYedka0ZON4ZZe6n9xgeN9ZkoejhARM36oTlUgHIQqxGutEJ9Wxg==} 6264 + react-native-web@0.21.1: 6265 + resolution: {integrity: sha512-BeNsgwwe4AXUFPAoFU+DKjJ+CVQa3h54zYX77p7GVZrXiiNo3vl03WYDYVEy5R2J2HOPInXtQZB5gmj3vuzrKg==} 5802 6266 peerDependencies: 5803 6267 react: ^18.0.0 || ^19.0.0 5804 6268 react-dom: ^18.0.0 || ^19.0.0 5805 6269 5806 - react-native@0.79.2: 5807 - resolution: {integrity: sha512-AnGzb56JvU5YCL7cAwg10+ewDquzvmgrMddiBM0GAWLwQM/6DJfGd2ZKrMuKKehHerpDDZgG+EY64gk3x3dEkw==} 5808 - engines: {node: '>=18'} 6270 + react-native-worklets@0.6.0: 6271 + resolution: {integrity: sha512-yETMNuCcivdYWteuG4eRqgiAk2DzRCrVAaEBIEWPo4emrf3BNjadFo85L5QvyEusrX9QKE3ZEAx8U5A/nbyFgg==} 6272 + peerDependencies: 6273 + '@babel/core': ^7.0.0-0 6274 + react: '*' 6275 + react-native: '*' 6276 + 6277 + react-native@0.81.4: 6278 + resolution: {integrity: sha512-bt5bz3A/+Cv46KcjV0VQa+fo7MKxs17RCcpzjftINlen4ZDUl0I6Ut+brQ2FToa5oD0IB0xvQHfmsg2EDqsZdQ==} 6279 + engines: {node: '>= 20.19.4'} 5809 6280 hasBin: true 5810 6281 peerDependencies: 5811 - '@types/react': ^19.0.0 5812 - react: ^19.0.0 6282 + '@types/react': ^19.1.0 6283 + react: ^19.1.0 5813 6284 peerDependenciesMeta: 5814 6285 '@types/react': 5815 6286 optional: true ··· 5832 6303 '@types/react': 5833 6304 optional: true 5834 6305 5835 - react-remove-scroll@2.6.2: 5836 - resolution: {integrity: sha512-KmONPx5fnlXYJQqC62Q+lwIeAk64ws/cUw6omIumRzMRPqgnYqhSSti99nbj0Ry13bv7dF+BKn7NB+OqkdZGTw==} 6306 + react-remove-scroll@2.7.1: 6307 + resolution: {integrity: sha512-HpMh8+oahmIdOuS5aFKKY6Pyog+FNaZV/XyJOq7b4YFwsFHe5yYfdbIalI4k3vU2nSDql7YskmUseHsRrJqIPA==} 5837 6308 engines: {node: '>=10'} 5838 6309 peerDependencies: 5839 6310 '@types/react': '*' ··· 5865 6336 peerDependencies: 5866 6337 react: ^19.1.0 5867 6338 5868 - react@19.0.0: 5869 - resolution: {integrity: sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==} 6339 + react@19.1.0: 6340 + resolution: {integrity: sha512-FS+XFBNvn3GTAWq26joslQgWNoFu08F4kl0J4CgdNKADkdSGXQyTCnKteIAJy96Br6YbpEU1LSzV5dYtjMkMDg==} 6341 + engines: {node: '>=0.10.0'} 6342 + 6343 + react@19.2.0: 6344 + resolution: {integrity: sha512-tmbWg6W31tQLeB5cdIBOicJDJRR2KzXsV7uSK9iNfLWQ5bIZfxuPEHp7M8wiHyHnn0DD1i7w3Zmin0FtkrwoCQ==} 5870 6345 engines: {node: '>=0.10.0'} 5871 6346 5872 6347 read-cache@1.0.0: ··· 5876 6351 resolution: {integrity: sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==} 5877 6352 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 5878 6353 6354 + readable-stream@4.7.0: 6355 + resolution: {integrity: sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==} 6356 + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 6357 + 5879 6358 readdirp@3.6.0: 5880 6359 resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} 5881 6360 engines: {node: '>=8.10.0'} ··· 5891 6370 resolution: {integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==} 5892 6371 engines: {node: '>= 12.13.0'} 5893 6372 5894 - reflect.getprototypeof@1.0.9: 5895 - resolution: {integrity: sha512-r0Ay04Snci87djAsI4U+WNRcSw5S4pOH7qFjd/veA5gC7TbqESR3tcj28ia95L/fYUDw11JKP7uqUKUAfVvV5Q==} 6373 + redent@3.0.0: 6374 + resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} 6375 + engines: {node: '>=8'} 6376 + 6377 + reflect.getprototypeof@1.0.10: 6378 + resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==} 5896 6379 engines: {node: '>= 0.4'} 5897 6380 5898 6381 regenerate-unicode-properties@10.2.0: 5899 6382 resolution: {integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==} 5900 6383 engines: {node: '>=4'} 5901 6384 6385 + regenerate-unicode-properties@10.2.2: 6386 + resolution: {integrity: sha512-m03P+zhBeQd1RGnYxrGyDAPpWX/epKirLrp8e3qevZdVkKtnCrjjWczIbYc8+xd6vcTStVlqfycTx1KR4LOr0g==} 6387 + engines: {node: '>=4'} 6388 + 5902 6389 regenerate@1.4.2: 5903 6390 resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} 5904 6391 5905 6392 regenerator-runtime@0.13.11: 5906 6393 resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} 5907 6394 5908 - regenerator-runtime@0.14.1: 5909 - resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} 5910 - 5911 6395 regenerator-runtime@0.9.6: 5912 6396 resolution: {integrity: sha512-D0Y/JJ4VhusyMOd/o25a3jdUqN/bC85EFsaoL9Oqmy/O4efCh+xhp7yj2EEOsj974qvMkcW8AwUzJ1jB/MbxCw==} 5913 6397 5914 6398 regenerator-transform@0.15.2: 5915 6399 resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} 5916 6400 5917 - regexp.prototype.flags@1.5.3: 5918 - resolution: {integrity: sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==} 6401 + regexp.prototype.flags@1.5.4: 6402 + resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==} 5919 6403 engines: {node: '>= 0.4'} 5920 6404 5921 6405 regexpu-core@6.2.0: 5922 6406 resolution: {integrity: sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==} 5923 6407 engines: {node: '>=4'} 5924 6408 6409 + regexpu-core@6.4.0: 6410 + resolution: {integrity: sha512-0ghuzq67LI9bLXpOX/ISfve/Mq33a4aFRzoQYhnnok1JOFpmE/A2TBGkNVenOGEeSBCjIiWcc6MVOG5HEQv0sA==} 6411 + engines: {node: '>=4'} 6412 + 5925 6413 regjsgen@0.8.0: 5926 6414 resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==} 5927 6415 5928 6416 regjsparser@0.12.0: 5929 6417 resolution: {integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==} 6418 + hasBin: true 6419 + 6420 + regjsparser@0.13.0: 6421 + resolution: {integrity: sha512-NZQZdC5wOE/H3UT28fVGL+ikOZcEzfMGk/c3iN9UGxzWHMa1op7274oyiUVrAG4B2EuFhus8SvkaYnhvW92p9Q==} 5930 6422 hasBin: true 5931 6423 5932 6424 repeat-string@1.6.1: ··· 5977 6469 resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} 5978 6470 engines: {node: '>=8'} 5979 6471 6472 + resolve-global@1.0.0: 6473 + resolution: {integrity: sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==} 6474 + engines: {node: '>=8'} 6475 + 5980 6476 resolve-pkg-maps@1.0.0: 5981 6477 resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} 5982 6478 ··· 6007 6503 resolution: {integrity: sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==} 6008 6504 engines: {node: '>=4'} 6009 6505 6010 - reusify@1.0.4: 6011 - resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 6506 + reusify@1.1.0: 6507 + resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==} 6012 6508 engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 6013 6509 6014 6510 rimraf@2.7.1: ··· 6064 6560 resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} 6065 6561 engines: {node: '>=v12.22.7'} 6066 6562 6067 - scheduler@0.25.0: 6068 - resolution: {integrity: sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==} 6069 - 6070 6563 scheduler@0.26.0: 6071 6564 resolution: {integrity: sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA==} 6072 6565 6566 + scheduler@0.27.0: 6567 + resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==} 6568 + 6073 6569 schema-utils@3.3.0: 6074 6570 resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==} 6075 6571 engines: {node: '>= 10.13.0'} 6076 6572 6077 - schema-utils@4.3.0: 6078 - resolution: {integrity: sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==} 6573 + schema-utils@4.3.3: 6574 + resolution: {integrity: sha512-eflK8wEtyOE6+hsaRVPxvUKYCpRgzLqDTb8krvAsRIwOGlHoSgYLgBXoubGgLd2fT41/OUYdb48v4k4WWHQurA==} 6079 6575 engines: {node: '>= 10.13.0'} 6080 6576 6081 6577 semver@6.3.1: ··· 6118 6614 resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} 6119 6615 engines: {node: '>= 0.4'} 6120 6616 6617 + set-proto@1.0.0: 6618 + resolution: {integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==} 6619 + engines: {node: '>= 0.4'} 6620 + 6121 6621 setimmediate@1.0.5: 6122 6622 resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==} 6123 6623 6124 6624 setprototypeof@1.2.0: 6125 6625 resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} 6626 + 6627 + sf-symbols-typescript@2.1.0: 6628 + resolution: {integrity: sha512-ezT7gu/SHTPIOEEoG6TF+O0m5eewl0ZDAO4AtdBi5HjsrUI6JdCG17+Q8+aKp0heM06wZKApRCn5olNbs0Wb/A==} 6629 + engines: {node: '>=10'} 6126 6630 6127 6631 shallowequal@1.1.0: 6128 6632 resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==} ··· 6151 6655 resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==} 6152 6656 engines: {node: '>= 0.4'} 6153 6657 6154 - side-channel@1.0.6: 6155 - resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} 6156 - engines: {node: '>= 0.4'} 6157 - 6158 6658 side-channel@1.1.0: 6159 6659 resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==} 6160 6660 engines: {node: '>= 0.4'} ··· 6232 6732 engines: {node: '>=0.10.0'} 6233 6733 hasBin: true 6234 6734 6235 - stable-hash@0.0.4: 6236 - resolution: {integrity: sha512-LjdcbuBeLcdETCrPn9i8AYAZ1eCtu4ECAWtP7UleOiZ9LzVxRzzUZEoZ8zB24nhkQnDWyET0I+3sWokSDS3E7g==} 6735 + stable-hash@0.0.5: 6736 + resolution: {integrity: sha512-+L3ccpzibovGXFK+Ap/f8LOS0ahMrHTf3xu7mMLSpEGU0EO9ucaysSylKo9eRDFNhWve/y275iPmIZ4z39a9iA==} 6237 6737 6238 6738 stack-generator@2.0.10: 6239 6739 resolution: {integrity: sha512-mwnua/hkqM6pF4k8SnmZ2zfETsRUpWXREfA/goT8SLCV4iOFa4bzOX2nDipWAZFPTjLvQB82f5yaodMVhK0yJQ==} ··· 6263 6763 resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} 6264 6764 engines: {node: '>= 0.8'} 6265 6765 6766 + stop-iteration-iterator@1.1.0: 6767 + resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==} 6768 + engines: {node: '>= 0.4'} 6769 + 6266 6770 stream-buffers@2.2.0: 6267 6771 resolution: {integrity: sha512-uyQK/mx5QjHun80FLJTfaWE7JtwfRMKBLkMne6udYOmvH0CawotVa7TfgYHzAnpphn4+TweIx1QKMnRIbipmUg==} 6268 6772 engines: {node: '>= 0.10.0'} ··· 6325 6829 resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 6326 6830 engines: {node: '>=8'} 6327 6831 6328 - strip-ansi@7.1.0: 6329 - resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} 6832 + strip-ansi@7.1.2: 6833 + resolution: {integrity: sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==} 6330 6834 engines: {node: '>=12'} 6331 6835 6332 6836 strip-bom@3.0.0: ··· 6345 6849 resolution: {integrity: sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==} 6346 6850 engines: {node: '>=18'} 6347 6851 6852 + strip-indent@3.0.0: 6853 + resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} 6854 + engines: {node: '>=8'} 6855 + 6348 6856 strip-json-comments@2.0.1: 6349 6857 resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} 6350 6858 engines: {node: '>=0.10.0'} ··· 6407 6915 peerDependencies: 6408 6916 tailwindcss: '>=3.0.0 || insiders' 6409 6917 6410 - tailwindcss@3.4.17: 6411 - resolution: {integrity: sha512-w33E2aCvSDP0tW9RZuNXadXlkHXqFzSkQew/aIa2i/Sj8fThxwovwlXHSPXTbAHwEIhBFXAedUhP2tueAKP8Og==} 6918 + tailwindcss@3.4.18: 6919 + resolution: {integrity: sha512-6A2rnmW5xZMdw11LYjhcI5846rt9pbLSabY5XPxo+XWdxwZaFEn47Go4NzFiHu9sNNmr/kXivP1vStfvMaK1GQ==} 6412 6920 engines: {node: '>=14.0.0'} 6413 6921 hasBin: true 6414 6922 6415 - tapable@2.2.1: 6416 - resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} 6923 + tapable@2.3.0: 6924 + resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==} 6417 6925 engines: {node: '>=6'} 6418 6926 6419 6927 tar@7.4.3: ··· 6428 6936 resolution: {integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==} 6429 6937 engines: {node: '>=8'} 6430 6938 6431 - terser-webpack-plugin@5.3.11: 6432 - resolution: {integrity: sha512-RVCsMfuD0+cTt3EwX8hSl2Ks56EbFHWmhluwcqoPKtBnfjiT6olaq7PRIRfhyU8nnC2MrnDrBLfrD/RGE+cVXQ==} 6939 + terser-webpack-plugin@5.3.14: 6940 + resolution: {integrity: sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==} 6433 6941 engines: {node: '>= 10.13.0'} 6434 6942 peerDependencies: 6435 6943 '@swc/core': '*' ··· 6449 6957 engines: {node: '>=10'} 6450 6958 hasBin: true 6451 6959 6960 + terser@5.44.0: 6961 + resolution: {integrity: sha512-nIVck8DK+GM/0Frwd+nIhZ84pR/BX7rmXMfYwyg+Sri5oGVE99/E3KvXqpC2xHFxyqXyGHTKBSioxxplrO4I4w==} 6962 + engines: {node: '>=10'} 6963 + hasBin: true 6964 + 6452 6965 test-exclude@6.0.0: 6453 6966 resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} 6454 6967 engines: {node: '>=8'} ··· 6472 6985 through@2.3.8: 6473 6986 resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} 6474 6987 6475 - tinyglobby@0.2.10: 6476 - resolution: {integrity: sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==} 6988 + tinyglobby@0.2.15: 6989 + resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==} 6477 6990 engines: {node: '>=12.0.0'} 6478 6991 6479 6992 tlds@1.255.0: ··· 6554 7067 tunnel-agent@0.6.0: 6555 7068 resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} 6556 7069 6557 - turbo-darwin-64@2.3.3: 6558 - resolution: {integrity: sha512-bxX82xe6du/3rPmm4aCC5RdEilIN99VUld4HkFQuw+mvFg6darNBuQxyWSHZTtc25XgYjQrjsV05888w1grpaA==} 7070 + turbo-darwin-64@2.5.8: 7071 + resolution: {integrity: sha512-Dh5bCACiHO8rUXZLpKw+m3FiHtAp2CkanSyJre+SInEvEr5kIxjGvCK/8MFX8SFRjQuhjtvpIvYYZJB4AGCxNQ==} 6559 7072 cpu: [x64] 6560 7073 os: [darwin] 6561 7074 6562 - turbo-darwin-arm64@2.3.3: 6563 - resolution: {integrity: sha512-DYbQwa3NsAuWkCUYVzfOUBbSUBVQzH5HWUFy2Kgi3fGjIWVZOFk86ss+xsWu//rlEAfYwEmopigsPYSmW4X15A==} 7075 + turbo-darwin-arm64@2.5.8: 7076 + resolution: {integrity: sha512-f1H/tQC9px7+hmXn6Kx/w8Jd/FneIUnvLlcI/7RGHunxfOkKJKvsoiNzySkoHQ8uq1pJnhJ0xNGTlYM48ZaJOQ==} 6564 7077 cpu: [arm64] 6565 7078 os: [darwin] 6566 7079 6567 - turbo-linux-64@2.3.3: 6568 - resolution: {integrity: sha512-eHj9OIB0dFaP6BxB88jSuaCLsOQSYWBgmhy2ErCu6D2GG6xW3b6e2UWHl/1Ho9FsTg4uVgo4DB9wGsKa5erjUA==} 7080 + turbo-linux-64@2.5.8: 7081 + resolution: {integrity: sha512-hMyvc7w7yadBlZBGl/bnR6O+dJTx3XkTeyTTH4zEjERO6ChEs0SrN8jTFj1lueNXKIHh1SnALmy6VctKMGnWfw==} 6569 7082 cpu: [x64] 6570 7083 os: [linux] 6571 7084 6572 - turbo-linux-arm64@2.3.3: 6573 - resolution: {integrity: sha512-NmDE/NjZoDj1UWBhMtOPmqFLEBKhzGS61KObfrDEbXvU3lekwHeoPvAMfcovzswzch+kN2DrtbNIlz+/rp8OCg==} 7085 + turbo-linux-arm64@2.5.8: 7086 + resolution: {integrity: sha512-LQELGa7bAqV2f+3rTMRPnj5G/OHAe2U+0N9BwsZvfMvHSUbsQ3bBMWdSQaYNicok7wOZcHjz2TkESn1hYK6xIQ==} 6574 7087 cpu: [arm64] 6575 7088 os: [linux] 6576 7089 6577 - turbo-windows-64@2.3.3: 6578 - resolution: {integrity: sha512-O2+BS4QqjK3dOERscXqv7N2GXNcqHr9hXumkMxDj/oGx9oCatIwnnwx34UmzodloSnJpgSqjl8iRWiY65SmYoQ==} 7090 + turbo-windows-64@2.5.8: 7091 + resolution: {integrity: sha512-3YdcaW34TrN1AWwqgYL9gUqmZsMT4T7g8Y5Azz+uwwEJW+4sgcJkIi9pYFyU4ZBSjBvkfuPZkGgfStir5BBDJQ==} 6579 7092 cpu: [x64] 6580 7093 os: [win32] 6581 7094 6582 - turbo-windows-arm64@2.3.3: 6583 - resolution: {integrity: sha512-dW4ZK1r6XLPNYLIKjC4o87HxYidtRRcBeo/hZ9Wng2XM/MqqYkAyzJXJGgRMsc0MMEN9z4+ZIfnSNBrA0b08ag==} 7095 + turbo-windows-arm64@2.5.8: 7096 + resolution: {integrity: sha512-eFC5XzLmgXJfnAK3UMTmVECCwuBcORrWdewoiXBnUm934DY6QN8YowC/srhNnROMpaKaqNeRpoB5FxCww3eteQ==} 6584 7097 cpu: [arm64] 6585 7098 os: [win32] 6586 7099 6587 - turbo@2.3.3: 6588 - resolution: {integrity: sha512-DUHWQAcC8BTiUZDRzAYGvpSpGLiaOQPfYXlCieQbwUvmml/LRGIe3raKdrOPOoiX0DYlzxs2nH6BoWJoZrj8hA==} 7100 + turbo@2.5.8: 7101 + resolution: {integrity: sha512-5c9Fdsr9qfpT3hA0EyYSFRZj1dVVsb6KIWubA9JBYZ/9ZEAijgUEae0BBR/Xl/wekt4w65/lYLTFaP3JmwSO8w==} 6589 7102 hasBin: true 6590 7103 6591 7104 tweetnacl@0.14.5: ··· 6631 7144 resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==} 6632 7145 engines: {node: '>= 0.4'} 6633 7146 6634 - typescript@5.8.3: 6635 - resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==} 7147 + typescript@5.9.3: 7148 + resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==} 6636 7149 engines: {node: '>=14.17'} 6637 7150 hasBin: true 6638 7151 ··· 6647 7160 resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==} 6648 7161 engines: {node: '>= 0.4'} 6649 7162 6650 - undici-types@6.19.8: 6651 - resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==} 6652 - 6653 - undici-types@6.20.0: 6654 - resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==} 7163 + undici-types@6.21.0: 7164 + resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==} 6655 7165 6656 7166 undici@6.21.0: 6657 7167 resolution: {integrity: sha512-BUgJXc752Kou3oOIuU1i+yZZypyZRqNPW0vqoMPl8VaoalSfeR0D8/t4iAS3yirs79SSMTxTag+ZC86uswv+Cw==} ··· 6669 7179 resolution: {integrity: sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==} 6670 7180 engines: {node: '>=4'} 6671 7181 7182 + unicode-match-property-value-ecmascript@2.2.1: 7183 + resolution: {integrity: sha512-JQ84qTuMg4nVkx8ga4A16a1epI9H6uTXAknqxkGF/aFfRLw1xC/Bp24HNLaZhHSkWd3+84t8iXnp1J0kYcZHhg==} 7184 + engines: {node: '>=4'} 7185 + 6672 7186 unicode-property-aliases-ecmascript@2.1.0: 6673 7187 resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} 6674 7188 engines: {node: '>=4'} ··· 6696 7210 resolution: {integrity: sha512-iSk/J8efr8uPT/Z4eSUywnqyrQU7DSdMfdqK4iWEaUVVmcP5JcnpRqmVMwcwcnmI1ATFNgC5V90u09tBynNFKA==} 6697 7211 engines: {node: '>=4'} 6698 7212 6699 - update-browserslist-db@1.1.1: 6700 - resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==} 7213 + update-browserslist-db@1.1.3: 7214 + resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==} 6701 7215 hasBin: true 6702 7216 peerDependencies: 6703 7217 browserslist: '>= 4.21.0' ··· 6723 7237 peerDependencies: 6724 7238 react: '>=16.8' 6725 7239 7240 + use-latest-callback@0.2.4: 7241 + resolution: {integrity: sha512-LS2s2n1usUUnDq4oVh1ca6JFX9uSqUncTfAm44WMg0v6TxL7POUTk1B044NH8TeLkFbNajIsgDHcgNpNzZucdg==} 7242 + peerDependencies: 7243 + react: '>=16.8' 7244 + 6726 7245 use-sidecar@1.1.3: 6727 7246 resolution: {integrity: sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==} 6728 7247 engines: {node: '>=10'} ··· 6735 7254 6736 7255 use-sync-external-store@1.5.0: 6737 7256 resolution: {integrity: sha512-Rb46I4cGGVBmjamjphe8L/UnvJD+uPPtTkNvX5mZgqdbavhI4EbgIWJiIHXJ8bc/i9EQGPRh4DwEURJ552Do0A==} 7257 + peerDependencies: 7258 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 7259 + 7260 + use-sync-external-store@1.6.0: 7261 + resolution: {integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==} 6738 7262 peerDependencies: 6739 7263 react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 6740 7264 ··· 6775 7299 vary@1.1.2: 6776 7300 resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} 6777 7301 engines: {node: '>= 0.8'} 7302 + 7303 + vaul@1.1.2: 7304 + resolution: {integrity: sha512-ZFkClGpWyI2WUQjdLJ/BaGuV6AVQiJ3uELGk3OYtP+B6yCO7Cmn9vPFXVJkRaGkOJu3m8bQMgtyzNHixULceQA==} 7305 + peerDependencies: 7306 + react: ^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc 7307 + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc 6778 7308 6779 7309 verror@1.10.0: 6780 7310 resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==} ··· 6793 7323 warn-once@0.1.1: 6794 7324 resolution: {integrity: sha512-VkQZJbO8zVImzYFteBXvBOZEl1qL175WH8VmZcxF2fZAoudNhNDvHi+doCaAEdU2l2vtcIwa2zn0QK5+I1HQ3Q==} 6795 7325 6796 - watchpack@2.4.2: 6797 - resolution: {integrity: sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==} 7326 + watchpack@2.4.4: 7327 + resolution: {integrity: sha512-c5EGNOiyxxV5qmTtAB7rbiXxi1ooX1pQKMLX/MIabJjRA0SJBQOjKF+KSVfHkr9U1cADPon0mRiVe/riyaiDUA==} 6798 7328 engines: {node: '>=10.13.0'} 6799 7329 6800 7330 wcwidth@1.0.1: ··· 6815 7345 resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==} 6816 7346 engines: {node: '>=10.13.0'} 6817 7347 7348 + webpack-sources@3.3.3: 7349 + resolution: {integrity: sha512-yd1RBzSGanHkitROoPFd6qsrxt+oFhg/129YzheDGqeustzX0vTZJZsSsQjVQC4yzBQ56K55XU8gaNCtIzOnTg==} 7350 + engines: {node: '>=10.13.0'} 7351 + 6818 7352 webpack@5.97.1: 6819 7353 resolution: {integrity: sha512-EksG6gFY3L1eFMROS/7Wzgrii5mBAFe4rIr3r2BTfo7bcc+DWwFZ4OJ/miOuHJO/A85HwyI4eQ0F6IKXesO7Fg==} 6820 7354 engines: {node: '>=10.13.0'} ··· 6861 7395 6862 7396 which-typed-array@1.1.18: 6863 7397 resolution: {integrity: sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==} 7398 + engines: {node: '>= 0.4'} 7399 + 7400 + which-typed-array@1.1.19: 7401 + resolution: {integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==} 6864 7402 engines: {node: '>= 0.4'} 6865 7403 6866 7404 which@2.0.2: ··· 6929 7467 utf-8-validate: 6930 7468 optional: true 6931 7469 7470 + ws@8.18.3: 7471 + resolution: {integrity: sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==} 7472 + engines: {node: '>=10.0.0'} 7473 + peerDependencies: 7474 + bufferutil: ^4.0.1 7475 + utf-8-validate: '>=5.0.2' 7476 + peerDependenciesMeta: 7477 + bufferutil: 7478 + optional: true 7479 + utf-8-validate: 7480 + optional: true 7481 + 6932 7482 xcode@3.0.1: 6933 7483 resolution: {integrity: sha512-kCz5k7J7XbJtjABOvkc5lJmkiDh8VhjVCGNiqdKCscmVpdVUpEAyXv1xmCLkQJ5dsHqx3IPO4XW+NTDhU/fatA==} 6934 7484 engines: {node: '>=10.0.0'} ··· 6963 7513 resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==} 6964 7514 engines: {node: '>=18'} 6965 7515 6966 - yaml@2.6.1: 6967 - resolution: {integrity: sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==} 6968 - engines: {node: '>= 14'} 6969 - hasBin: true 6970 - 6971 7516 yargs-parser@21.1.1: 6972 7517 resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} 6973 7518 engines: {node: '>=12'} ··· 6991 7536 resolution: {integrity: sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==} 6992 7537 engines: {node: '>=18'} 6993 7538 7539 + zod-to-json-schema@3.24.6: 7540 + resolution: {integrity: sha512-h/z3PKvcTcTetyjl1fkj79MHNEjm+HpD6NXheWjzOekY7kV+lwDYnHw+ivHkijnCSMz1yJaWBD9vu/Fcmk+vEg==} 7541 + peerDependencies: 7542 + zod: ^3.24.1 7543 + 6994 7544 zod-validation-error@3.4.0: 6995 7545 resolution: {integrity: sha512-ZOPR9SVY6Pb2qqO5XHt+MkkTRxGXb4EVtnjc9JpXUOtUB1T9Ru7mZOT361AN3MsetVe7R0a1KZshJDZdgp9miQ==} 6996 7546 engines: {node: '>=18.0.0'} ··· 7000 7550 zod@3.23.8: 7001 7551 resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==} 7002 7552 7003 - zustand@5.0.5: 7004 - resolution: {integrity: sha512-mILtRfKW9xM47hqxGIxCv12gXusoY/xTSHBYApXozR0HmQv299whhBeeAcRy+KrPPybzosvJBCOmVjq6x12fCg==} 7553 + zod@3.25.76: 7554 + resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==} 7555 + 7556 + zustand@5.0.8: 7557 + resolution: {integrity: sha512-gyPKpIaxY9XcO2vSMrLbiER7QMAMGOQZVRdJ6Zi782jkbzZygq5GI9nG8g+sMgitRtndwaBSl7uiqC49o1SSiw==} 7005 7558 engines: {node: '>=12.20.0'} 7006 7559 peerDependencies: 7007 7560 '@types/react': '>=18.0.0' ··· 7024 7577 7025 7578 '@alloc/quick-lru@5.2.0': {} 7026 7579 7027 - '@ampproject/remapping@2.3.0': 7028 - dependencies: 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)': 7580 + '@aquareum/atproto-oauth-client-react-native@0.0.1(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': 7033 7581 dependencies: 7034 7582 '@atproto-labs/did-resolver': 0.1.5 7035 7583 '@atproto-labs/handle-resolver-node': 0.1.7 ··· 7044 7592 '@atproto/oauth-types': 0.2.1 7045 7593 abortcontroller-polyfill: 1.7.8 7046 7594 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) 7595 + expo-sqlite: 15.2.9(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 7048 7596 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) 7597 + react-native-quick-crypto: 0.7.17(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 7050 7598 transitivePeerDependencies: 7051 7599 - expo 7052 7600 - react 7053 7601 - react-native 7054 7602 7055 - '@atproto-labs/did-resolver@0.1.12': 7603 + '@atproto-labs/did-resolver@0.1.13': 7056 7604 dependencies: 7057 - '@atproto-labs/fetch': 0.2.2 7058 - '@atproto-labs/pipe': 0.1.0 7605 + '@atproto-labs/fetch': 0.2.3 7606 + '@atproto-labs/pipe': 0.1.1 7059 7607 '@atproto-labs/simple-store': 0.2.0 7060 7608 '@atproto-labs/simple-store-memory': 0.1.3 7061 7609 '@atproto/did': 0.1.5 7062 - zod: 3.23.8 7610 + zod: 3.25.76 7063 7611 7064 7612 '@atproto-labs/did-resolver@0.1.5': 7065 7613 dependencies: ··· 7082 7630 dependencies: 7083 7631 '@atproto-labs/pipe': 0.1.0 7084 7632 optionalDependencies: 7085 - zod: 3.23.8 7633 + zod: 3.25.76 7086 7634 7087 - '@atproto-labs/fetch@0.2.2': 7635 + '@atproto-labs/fetch@0.2.3': 7088 7636 dependencies: 7089 - '@atproto-labs/pipe': 0.1.0 7637 + '@atproto-labs/pipe': 0.1.1 7090 7638 7091 7639 '@atproto-labs/handle-resolver-node@0.1.7': 7092 7640 dependencies: ··· 7099 7647 '@atproto-labs/simple-store': 0.1.1 7100 7648 '@atproto-labs/simple-store-memory': 0.1.1 7101 7649 '@atproto/did': 0.1.3 7102 - zod: 3.23.8 7650 + zod: 3.25.76 7103 7651 7104 7652 '@atproto-labs/handle-resolver@0.1.8': 7105 7653 dependencies: 7106 7654 '@atproto-labs/simple-store': 0.2.0 7107 7655 '@atproto-labs/simple-store-memory': 0.1.3 7108 7656 '@atproto/did': 0.1.5 7109 - zod: 3.23.8 7657 + zod: 3.25.76 7110 7658 7111 - '@atproto-labs/identity-resolver@0.1.16': 7659 + '@atproto-labs/identity-resolver@0.1.18': 7112 7660 dependencies: 7113 - '@atproto-labs/did-resolver': 0.1.12 7661 + '@atproto-labs/did-resolver': 0.1.13 7114 7662 '@atproto-labs/handle-resolver': 0.1.8 7115 7663 '@atproto/syntax': 0.4.0 7116 7664 ··· 7121 7669 '@atproto/syntax': 0.3.1 7122 7670 7123 7671 '@atproto-labs/pipe@0.1.0': {} 7672 + 7673 + '@atproto-labs/pipe@0.1.1': {} 7124 7674 7125 7675 '@atproto-labs/simple-store-memory@0.1.1': 7126 7676 dependencies: ··· 7138 7688 7139 7689 '@atproto/api@0.15.27': 7140 7690 dependencies: 7141 - '@atproto/common-web': 0.4.2 7142 - '@atproto/lexicon': 0.4.12 7143 - '@atproto/syntax': 0.4.0 7144 - '@atproto/xrpc': 0.7.1 7691 + '@atproto/common-web': 0.4.3 7692 + '@atproto/lexicon': 0.4.14 7693 + '@atproto/syntax': 0.4.1 7694 + '@atproto/xrpc': 0.7.5 7145 7695 await-lock: 2.2.2 7146 7696 multiformats: 9.9.0 7147 7697 tlds: 1.255.0 7148 - zod: 3.23.8 7698 + zod: 3.25.76 7149 7699 7150 - '@atproto/common-web@0.3.1': 7700 + '@atproto/common-web@0.4.3': 7151 7701 dependencies: 7152 7702 graphemer: 1.4.0 7153 7703 multiformats: 9.9.0 7154 7704 uint8arrays: 3.0.0 7155 - zod: 3.23.8 7705 + zod: 3.25.76 7156 7706 7157 - '@atproto/common-web@0.4.2': 7707 + '@atproto/common@0.4.12': 7158 7708 dependencies: 7159 - graphemer: 1.4.0 7160 - multiformats: 9.9.0 7161 - uint8arrays: 3.0.0 7162 - zod: 3.23.8 7163 - 7164 - '@atproto/common@0.4.5': 7165 - dependencies: 7166 - '@atproto/common-web': 0.3.1 7709 + '@atproto/common-web': 0.4.3 7167 7710 '@ipld/dag-cbor': 7.0.3 7168 7711 cbor-x: 1.6.0 7169 7712 iso-datestring-validator: 2.2.2 7170 7713 multiformats: 9.9.0 7171 7714 pino: 8.21.0 7172 7715 7173 - '@atproto/crypto@0.4.2': 7716 + '@atproto/crypto@0.4.4': 7174 7717 dependencies: 7175 - '@noble/curves': 1.8.1 7176 - '@noble/hashes': 1.6.1 7718 + '@noble/curves': 1.9.7 7719 + '@noble/hashes': 1.8.0 7177 7720 uint8arrays: 3.0.0 7178 7721 7179 7722 '@atproto/did@0.1.3': ··· 7182 7725 7183 7726 '@atproto/did@0.1.5': 7184 7727 dependencies: 7185 - zod: 3.23.8 7728 + zod: 3.25.76 7186 7729 7187 7730 '@atproto/jwk-jose@0.1.2': 7188 7731 dependencies: ··· 7199 7742 multiformats: 9.9.0 7200 7743 zod: 3.23.8 7201 7744 7202 - '@atproto/jwk@0.1.5': 7745 + '@atproto/jwk@0.2.0': 7203 7746 dependencies: 7204 7747 multiformats: 9.9.0 7205 - zod: 3.23.8 7748 + zod: 3.25.76 7206 7749 7207 - '@atproto/lex-cli@0.5.4': 7750 + '@atproto/lex-cli@0.5.7': 7208 7751 dependencies: 7209 - '@atproto/lexicon': 0.4.4 7210 - '@atproto/syntax': 0.3.1 7752 + '@atproto/lexicon': 0.4.14 7753 + '@atproto/syntax': 0.3.4 7211 7754 chalk: 4.1.2 7212 7755 commander: 9.5.0 7213 - prettier: 3.4.2 7756 + prettier: 3.6.2 7214 7757 ts-morph: 16.0.0 7215 7758 yesno: 0.4.0 7216 - zod: 3.23.8 7759 + zod: 3.25.76 7217 7760 7218 - '@atproto/lex-cli@0.8.2': 7761 + '@atproto/lex-cli@0.8.3': 7219 7762 dependencies: 7220 - '@atproto/lexicon': 0.4.11 7221 - '@atproto/syntax': 0.4.0 7763 + '@atproto/lexicon': 0.4.14 7764 + '@atproto/syntax': 0.4.1 7222 7765 chalk: 4.1.2 7223 7766 commander: 9.5.0 7224 - prettier: 3.5.3 7767 + prettier: 3.6.2 7225 7768 ts-morph: 24.0.0 7226 7769 yesno: 0.4.0 7227 - zod: 3.23.8 7770 + zod: 3.25.76 7228 7771 7229 - '@atproto/lexicon@0.4.11': 7772 + '@atproto/lexicon@0.4.14': 7230 7773 dependencies: 7231 - '@atproto/common-web': 0.4.2 7232 - '@atproto/syntax': 0.4.0 7774 + '@atproto/common-web': 0.4.3 7775 + '@atproto/syntax': 0.4.1 7233 7776 iso-datestring-validator: 2.2.2 7234 7777 multiformats: 9.9.0 7235 - zod: 3.23.8 7778 + zod: 3.25.76 7236 7779 7237 - '@atproto/lexicon@0.4.12': 7780 + '@atproto/lexicon@0.5.1': 7238 7781 dependencies: 7239 - '@atproto/common-web': 0.4.2 7240 - '@atproto/syntax': 0.4.0 7782 + '@atproto/common-web': 0.4.3 7783 + '@atproto/syntax': 0.4.1 7241 7784 iso-datestring-validator: 2.2.2 7242 7785 multiformats: 9.9.0 7243 - zod: 3.23.8 7244 - 7245 - '@atproto/lexicon@0.4.3': 7246 - dependencies: 7247 - '@atproto/common-web': 0.3.1 7248 - '@atproto/syntax': 0.3.1 7249 - iso-datestring-validator: 2.2.2 7250 - multiformats: 9.9.0 7251 - zod: 3.23.8 7252 - 7253 - '@atproto/lexicon@0.4.4': 7254 - dependencies: 7255 - '@atproto/common-web': 0.3.1 7256 - '@atproto/syntax': 0.3.1 7257 - iso-datestring-validator: 2.2.2 7258 - multiformats: 9.9.0 7259 - zod: 3.23.8 7786 + zod: 3.25.76 7260 7787 7261 7788 '@atproto/oauth-client-browser@0.3.2': 7262 7789 dependencies: ··· 7269 7796 '@atproto/oauth-client': 0.3.2 7270 7797 '@atproto/oauth-types': 0.2.1 7271 7798 7272 - '@atproto/oauth-client@0.3.16': 7273 - dependencies: 7274 - '@atproto-labs/did-resolver': 0.1.12 7275 - '@atproto-labs/fetch': 0.2.2 7276 - '@atproto-labs/handle-resolver': 0.1.8 7277 - '@atproto-labs/identity-resolver': 0.1.16 7278 - '@atproto-labs/simple-store': 0.2.0 7279 - '@atproto-labs/simple-store-memory': 0.1.3 7280 - '@atproto/did': 0.1.5 7281 - '@atproto/jwk': 0.1.5 7282 - '@atproto/oauth-types': 0.2.7 7283 - '@atproto/xrpc': 0.7.0 7284 - multiformats: 9.9.0 7285 - zod: 3.23.8 7286 - 7287 7799 '@atproto/oauth-client@0.3.2': 7288 7800 dependencies: 7289 7801 '@atproto-labs/did-resolver': 0.1.5 ··· 7299 7811 multiformats: 9.9.0 7300 7812 zod: 3.23.8 7301 7813 7814 + '@atproto/oauth-client@0.3.22': 7815 + dependencies: 7816 + '@atproto-labs/did-resolver': 0.1.13 7817 + '@atproto-labs/fetch': 0.2.3 7818 + '@atproto-labs/handle-resolver': 0.1.8 7819 + '@atproto-labs/identity-resolver': 0.1.18 7820 + '@atproto-labs/simple-store': 0.2.0 7821 + '@atproto-labs/simple-store-memory': 0.1.3 7822 + '@atproto/did': 0.1.5 7823 + '@atproto/jwk': 0.2.0 7824 + '@atproto/oauth-types': 0.2.8 7825 + '@atproto/xrpc': 0.7.0 7826 + multiformats: 9.9.0 7827 + zod: 3.25.76 7828 + 7302 7829 '@atproto/oauth-types@0.2.1': 7303 7830 dependencies: 7304 7831 '@atproto/jwk': 0.1.1 7305 7832 zod: 3.23.8 7306 7833 7307 - '@atproto/oauth-types@0.2.7': 7834 + '@atproto/oauth-types@0.2.8': 7308 7835 dependencies: 7309 - '@atproto/jwk': 0.1.5 7310 - zod: 3.23.8 7836 + '@atproto/jwk': 0.2.0 7837 + zod: 3.25.76 7311 7838 7312 7839 '@atproto/syntax@0.3.1': {} 7313 7840 7841 + '@atproto/syntax@0.3.4': {} 7842 + 7314 7843 '@atproto/syntax@0.4.0': {} 7315 7844 7316 - '@atproto/xrpc-server@0.7.4': 7845 + '@atproto/syntax@0.4.1': {} 7846 + 7847 + '@atproto/xrpc-server@0.7.19': 7317 7848 dependencies: 7318 - '@atproto/common': 0.4.5 7319 - '@atproto/crypto': 0.4.2 7320 - '@atproto/lexicon': 0.4.4 7321 - '@atproto/xrpc': 0.6.7 7849 + '@atproto/common': 0.4.12 7850 + '@atproto/crypto': 0.4.4 7851 + '@atproto/lexicon': 0.4.14 7852 + '@atproto/xrpc': 0.7.5 7322 7853 cbor-x: 1.6.0 7323 7854 express: 4.21.2 7324 7855 http-errors: 2.0.0 7325 7856 mime-types: 2.1.35 7326 7857 rate-limiter-flexible: 2.4.2 7327 7858 uint8arrays: 3.0.0 7328 - ws: 8.18.0 7329 - zod: 3.23.8 7859 + ws: 8.18.3 7860 + zod: 3.25.76 7330 7861 transitivePeerDependencies: 7331 7862 - bufferutil 7332 7863 - supports-color ··· 7334 7865 7335 7866 '@atproto/xrpc@0.6.4': 7336 7867 dependencies: 7337 - '@atproto/lexicon': 0.4.3 7338 - zod: 3.23.8 7339 - 7340 - '@atproto/xrpc@0.6.7': 7341 - dependencies: 7342 - '@atproto/lexicon': 0.4.11 7343 - zod: 3.23.8 7868 + '@atproto/lexicon': 0.4.14 7869 + zod: 3.25.76 7344 7870 7345 7871 '@atproto/xrpc@0.7.0': 7346 7872 dependencies: 7347 - '@atproto/lexicon': 0.4.11 7348 - zod: 3.23.8 7873 + '@atproto/lexicon': 0.4.14 7874 + zod: 3.25.76 7349 7875 7350 - '@atproto/xrpc@0.7.1': 7876 + '@atproto/xrpc@0.7.5': 7351 7877 dependencies: 7352 - '@atproto/lexicon': 0.4.12 7353 - zod: 3.23.8 7878 + '@atproto/lexicon': 0.5.1 7879 + zod: 3.25.76 7354 7880 7355 7881 '@babel/code-frame@7.10.4': 7356 7882 dependencies: 7357 7883 '@babel/highlight': 7.25.9 7358 - 7359 - '@babel/code-frame@7.26.2': 7360 - dependencies: 7361 - '@babel/helper-validator-identifier': 7.25.9 7362 - js-tokens: 4.0.0 7363 - picocolors: 1.1.1 7364 7884 7365 7885 '@babel/code-frame@7.27.1': 7366 7886 dependencies: ··· 7368 7888 js-tokens: 4.0.0 7369 7889 picocolors: 1.1.1 7370 7890 7371 - '@babel/compat-data@7.26.3': {} 7372 - 7373 7891 '@babel/compat-data@7.28.4': {} 7374 7892 7375 - '@babel/core@7.26.0': 7376 - dependencies: 7377 - '@ampproject/remapping': 2.3.0 7378 - '@babel/code-frame': 7.26.2 7379 - '@babel/generator': 7.26.3 7380 - '@babel/helper-compilation-targets': 7.25.9 7381 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0) 7382 - '@babel/helpers': 7.26.0 7383 - '@babel/parser': 7.26.3 7384 - '@babel/template': 7.25.9 7385 - '@babel/traverse': 7.26.4 7386 - '@babel/types': 7.26.3 7387 - convert-source-map: 2.0.0 7388 - debug: 4.4.0 7389 - gensync: 1.0.0-beta.2 7390 - json5: 2.2.3 7391 - semver: 6.3.1 7392 - transitivePeerDependencies: 7393 - - supports-color 7394 - 7395 7893 '@babel/core@7.28.4': 7396 7894 dependencies: 7397 7895 '@babel/code-frame': 7.27.1 ··· 7414 7912 7415 7913 '@babel/generator@7.26.3': 7416 7914 dependencies: 7417 - '@babel/parser': 7.26.3 7418 - '@babel/types': 7.26.3 7915 + '@babel/parser': 7.28.4 7916 + '@babel/types': 7.28.4 7419 7917 '@jridgewell/gen-mapping': 0.3.5 7420 7918 '@jridgewell/trace-mapping': 0.3.25 7421 7919 jsesc: 3.1.0 ··· 7430 7928 7431 7929 '@babel/helper-annotate-as-pure@7.25.9': 7432 7930 dependencies: 7433 - '@babel/types': 7.26.3 7931 + '@babel/types': 7.28.4 7434 7932 7435 - '@babel/helper-compilation-targets@7.25.9': 7933 + '@babel/helper-annotate-as-pure@7.27.3': 7436 7934 dependencies: 7437 - '@babel/compat-data': 7.26.3 7438 - '@babel/helper-validator-option': 7.25.9 7439 - browserslist: 4.24.3 7440 - lru-cache: 5.1.1 7441 - semver: 6.3.1 7935 + '@babel/types': 7.28.4 7442 7936 7443 7937 '@babel/helper-compilation-targets@7.27.2': 7444 7938 dependencies: 7445 7939 '@babel/compat-data': 7.28.4 7446 7940 '@babel/helper-validator-option': 7.27.1 7447 - browserslist: 4.24.3 7941 + browserslist: 4.26.3 7448 7942 lru-cache: 5.1.1 7449 7943 semver: 6.3.1 7450 7944 7451 - '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.0)': 7945 + '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.28.4)': 7452 7946 dependencies: 7453 - '@babel/core': 7.26.0 7947 + '@babel/core': 7.28.4 7454 7948 '@babel/helper-annotate-as-pure': 7.25.9 7455 7949 '@babel/helper-member-expression-to-functions': 7.25.9 7456 7950 '@babel/helper-optimise-call-expression': 7.25.9 7457 - '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0) 7951 + '@babel/helper-replace-supers': 7.25.9(@babel/core@7.28.4) 7458 7952 '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 7459 - '@babel/traverse': 7.26.4 7953 + '@babel/traverse': 7.28.4 7460 7954 semver: 6.3.1 7461 7955 transitivePeerDependencies: 7462 7956 - supports-color 7463 7957 7464 - '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.28.4)': 7958 + '@babel/helper-create-class-features-plugin@7.28.3(@babel/core@7.28.4)': 7465 7959 dependencies: 7466 7960 '@babel/core': 7.28.4 7467 - '@babel/helper-annotate-as-pure': 7.25.9 7468 - '@babel/helper-member-expression-to-functions': 7.25.9 7469 - '@babel/helper-optimise-call-expression': 7.25.9 7470 - '@babel/helper-replace-supers': 7.25.9(@babel/core@7.28.4) 7471 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 7472 - '@babel/traverse': 7.26.4 7961 + '@babel/helper-annotate-as-pure': 7.27.3 7962 + '@babel/helper-member-expression-to-functions': 7.27.1 7963 + '@babel/helper-optimise-call-expression': 7.27.1 7964 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.4) 7965 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 7966 + '@babel/traverse': 7.28.4 7473 7967 semver: 6.3.1 7474 7968 transitivePeerDependencies: 7475 7969 - supports-color 7476 7970 7477 - '@babel/helper-create-regexp-features-plugin@7.26.3(@babel/core@7.26.0)': 7971 + '@babel/helper-create-regexp-features-plugin@7.26.3(@babel/core@7.28.4)': 7478 7972 dependencies: 7479 - '@babel/core': 7.26.0 7480 - '@babel/helper-annotate-as-pure': 7.25.9 7973 + '@babel/core': 7.28.4 7974 + '@babel/helper-annotate-as-pure': 7.27.3 7481 7975 regexpu-core: 6.2.0 7482 7976 semver: 6.3.1 7483 7977 7484 - '@babel/helper-create-regexp-features-plugin@7.26.3(@babel/core@7.28.4)': 7978 + '@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.28.4)': 7485 7979 dependencies: 7486 7980 '@babel/core': 7.28.4 7487 - '@babel/helper-annotate-as-pure': 7.25.9 7488 - regexpu-core: 6.2.0 7981 + '@babel/helper-annotate-as-pure': 7.27.3 7982 + regexpu-core: 6.4.0 7489 7983 semver: 6.3.1 7490 7984 7491 - '@babel/helper-define-polyfill-provider@0.6.3(@babel/core@7.26.0)': 7492 - dependencies: 7493 - '@babel/core': 7.26.0 7494 - '@babel/helper-compilation-targets': 7.27.2 7495 - '@babel/helper-plugin-utils': 7.27.1 7496 - debug: 4.4.0 7497 - lodash.debounce: 4.0.8 7498 - resolve: 1.22.10 7499 - transitivePeerDependencies: 7500 - - supports-color 7501 - 7502 7985 '@babel/helper-define-polyfill-provider@0.6.3(@babel/core@7.28.4)': 7503 7986 dependencies: 7504 7987 '@babel/core': 7.28.4 7505 7988 '@babel/helper-compilation-targets': 7.27.2 7506 7989 '@babel/helper-plugin-utils': 7.27.1 7507 - debug: 4.4.0 7990 + debug: 4.4.3 7508 7991 lodash.debounce: 4.0.8 7509 7992 resolve: 1.22.10 7510 7993 transitivePeerDependencies: ··· 7514 7997 7515 7998 '@babel/helper-member-expression-to-functions@7.25.9': 7516 7999 dependencies: 7517 - '@babel/traverse': 7.26.4 8000 + '@babel/traverse': 7.28.4 7518 8001 '@babel/types': 7.28.4 7519 8002 transitivePeerDependencies: 7520 8003 - supports-color 7521 8004 7522 - '@babel/helper-module-imports@7.25.9': 8005 + '@babel/helper-member-expression-to-functions@7.27.1': 7523 8006 dependencies: 7524 - '@babel/traverse': 7.26.4 7525 - '@babel/types': 7.26.3 8007 + '@babel/traverse': 7.28.4 8008 + '@babel/types': 7.28.4 7526 8009 transitivePeerDependencies: 7527 8010 - supports-color 7528 8011 7529 - '@babel/helper-module-imports@7.27.1': 8012 + '@babel/helper-module-imports@7.25.9': 7530 8013 dependencies: 7531 8014 '@babel/traverse': 7.28.4 7532 8015 '@babel/types': 7.28.4 7533 8016 transitivePeerDependencies: 7534 8017 - supports-color 7535 8018 7536 - '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)': 8019 + '@babel/helper-module-imports@7.27.1': 7537 8020 dependencies: 7538 - '@babel/core': 7.26.0 7539 - '@babel/helper-module-imports': 7.25.9 7540 - '@babel/helper-validator-identifier': 7.25.9 7541 - '@babel/traverse': 7.26.4 7542 - transitivePeerDependencies: 7543 - - supports-color 7544 - 7545 - '@babel/helper-module-transforms@7.26.0(@babel/core@7.28.4)': 7546 - dependencies: 7547 - '@babel/core': 7.28.4 7548 - '@babel/helper-module-imports': 7.25.9 7549 - '@babel/helper-validator-identifier': 7.25.9 7550 - '@babel/traverse': 7.26.4 8021 + '@babel/traverse': 7.28.4 8022 + '@babel/types': 7.28.4 7551 8023 transitivePeerDependencies: 7552 8024 - supports-color 7553 8025 ··· 7564 8036 dependencies: 7565 8037 '@babel/types': 7.28.4 7566 8038 8039 + '@babel/helper-optimise-call-expression@7.27.1': 8040 + dependencies: 8041 + '@babel/types': 7.28.4 8042 + 7567 8043 '@babel/helper-plugin-utils@7.25.9': {} 7568 8044 7569 8045 '@babel/helper-plugin-utils@7.27.1': {} 7570 8046 7571 - '@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.26.0)': 8047 + '@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.28.4)': 7572 8048 dependencies: 7573 - '@babel/core': 7.26.0 7574 - '@babel/helper-annotate-as-pure': 7.25.9 8049 + '@babel/core': 7.28.4 8050 + '@babel/helper-annotate-as-pure': 7.27.3 7575 8051 '@babel/helper-wrap-function': 7.25.9 7576 8052 '@babel/traverse': 7.28.4 7577 8053 transitivePeerDependencies: 7578 8054 - supports-color 7579 8055 7580 - '@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.28.4)': 8056 + '@babel/helper-replace-supers@7.25.9(@babel/core@7.28.4)': 7581 8057 dependencies: 7582 8058 '@babel/core': 7.28.4 7583 - '@babel/helper-annotate-as-pure': 7.25.9 7584 - '@babel/helper-wrap-function': 7.25.9 8059 + '@babel/helper-member-expression-to-functions': 7.27.1 8060 + '@babel/helper-optimise-call-expression': 7.27.1 7585 8061 '@babel/traverse': 7.28.4 7586 8062 transitivePeerDependencies: 7587 8063 - supports-color 7588 8064 7589 - '@babel/helper-replace-supers@7.25.9(@babel/core@7.26.0)': 8065 + '@babel/helper-replace-supers@7.27.1(@babel/core@7.28.4)': 7590 8066 dependencies: 7591 - '@babel/core': 7.26.0 7592 - '@babel/helper-member-expression-to-functions': 7.25.9 7593 - '@babel/helper-optimise-call-expression': 7.25.9 7594 - '@babel/traverse': 7.26.4 8067 + '@babel/core': 7.28.4 8068 + '@babel/helper-member-expression-to-functions': 7.27.1 8069 + '@babel/helper-optimise-call-expression': 7.27.1 8070 + '@babel/traverse': 7.28.4 7595 8071 transitivePeerDependencies: 7596 8072 - supports-color 7597 8073 7598 - '@babel/helper-replace-supers@7.25.9(@babel/core@7.28.4)': 8074 + '@babel/helper-skip-transparent-expression-wrappers@7.25.9': 7599 8075 dependencies: 7600 - '@babel/core': 7.28.4 7601 - '@babel/helper-member-expression-to-functions': 7.25.9 7602 - '@babel/helper-optimise-call-expression': 7.25.9 7603 - '@babel/traverse': 7.26.4 8076 + '@babel/traverse': 7.28.4 8077 + '@babel/types': 7.28.4 7604 8078 transitivePeerDependencies: 7605 8079 - supports-color 7606 8080 7607 - '@babel/helper-skip-transparent-expression-wrappers@7.25.9': 8081 + '@babel/helper-skip-transparent-expression-wrappers@7.27.1': 7608 8082 dependencies: 7609 - '@babel/traverse': 7.26.4 7610 - '@babel/types': 7.26.3 8083 + '@babel/traverse': 7.28.4 8084 + '@babel/types': 7.28.4 7611 8085 transitivePeerDependencies: 7612 8086 - supports-color 7613 8087 ··· 7619 8093 7620 8094 '@babel/helper-validator-identifier@7.27.1': {} 7621 8095 7622 - '@babel/helper-validator-option@7.25.9': {} 7623 - 7624 8096 '@babel/helper-validator-option@7.27.1': {} 7625 8097 7626 8098 '@babel/helper-wrap-function@7.25.9': ··· 7631 8103 transitivePeerDependencies: 7632 8104 - supports-color 7633 8105 7634 - '@babel/helpers@7.26.0': 7635 - dependencies: 7636 - '@babel/template': 7.25.9 7637 - '@babel/types': 7.26.3 7638 - 7639 8106 '@babel/helpers@7.28.4': 7640 8107 dependencies: 7641 8108 '@babel/template': 7.27.2 ··· 7643 8110 7644 8111 '@babel/highlight@7.25.9': 7645 8112 dependencies: 7646 - '@babel/helper-validator-identifier': 7.25.9 8113 + '@babel/helper-validator-identifier': 7.27.1 7647 8114 chalk: 2.4.2 7648 8115 js-tokens: 4.0.0 7649 8116 picocolors: 1.1.1 7650 8117 7651 8118 '@babel/parser@7.26.3': 7652 8119 dependencies: 7653 - '@babel/types': 7.26.3 8120 + '@babel/types': 7.28.4 7654 8121 7655 8122 '@babel/parser@7.28.4': 7656 8123 dependencies: 7657 8124 '@babel/types': 7.28.4 7658 8125 7659 - '@babel/plugin-proposal-decorators@7.25.9(@babel/core@7.26.0)': 7660 - dependencies: 7661 - '@babel/core': 7.26.0 7662 - '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0) 7663 - '@babel/helper-plugin-utils': 7.25.9 7664 - '@babel/plugin-syntax-decorators': 7.25.9(@babel/core@7.26.0) 7665 - transitivePeerDependencies: 7666 - - supports-color 7667 - 7668 8126 '@babel/plugin-proposal-decorators@7.25.9(@babel/core@7.28.4)': 7669 8127 dependencies: 7670 8128 '@babel/core': 7.28.4 7671 8129 '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.28.4) 7672 - '@babel/helper-plugin-utils': 7.25.9 8130 + '@babel/helper-plugin-utils': 7.27.1 7673 8131 '@babel/plugin-syntax-decorators': 7.25.9(@babel/core@7.28.4) 7674 8132 transitivePeerDependencies: 7675 8133 - supports-color 7676 8134 7677 - '@babel/plugin-proposal-export-default-from@7.25.9(@babel/core@7.26.0)': 7678 - dependencies: 7679 - '@babel/core': 7.26.0 7680 - '@babel/helper-plugin-utils': 7.25.9 7681 - 7682 8135 '@babel/plugin-proposal-export-default-from@7.25.9(@babel/core@7.28.4)': 7683 8136 dependencies: 7684 8137 '@babel/core': 7.28.4 7685 - '@babel/helper-plugin-utils': 7.25.9 8138 + '@babel/helper-plugin-utils': 7.27.1 7686 8139 7687 - '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.26.0)': 8140 + '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.28.4)': 7688 8141 dependencies: 7689 - '@babel/core': 7.26.0 7690 - '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0) 7691 - '@babel/helper-plugin-utils': 7.25.9 8142 + '@babel/core': 7.28.4 8143 + '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4) 8144 + '@babel/helper-plugin-utils': 7.27.1 7692 8145 transitivePeerDependencies: 7693 8146 - supports-color 7694 8147 7695 - '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.26.0)': 7696 - dependencies: 7697 - '@babel/core': 7.26.0 7698 - '@babel/helper-plugin-utils': 7.27.1 7699 - 7700 8148 '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.28.4)': 7701 8149 dependencies: 7702 8150 '@babel/core': 7.28.4 7703 8151 '@babel/helper-plugin-utils': 7.27.1 7704 8152 7705 - '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.26.0)': 7706 - dependencies: 7707 - '@babel/core': 7.26.0 7708 - '@babel/helper-plugin-utils': 7.27.1 7709 - 7710 8153 '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.28.4)': 7711 8154 dependencies: 7712 8155 '@babel/core': 7.28.4 7713 8156 '@babel/helper-plugin-utils': 7.27.1 7714 8157 7715 - '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.26.0)': 7716 - dependencies: 7717 - '@babel/core': 7.26.0 7718 - '@babel/helper-plugin-utils': 7.27.1 7719 - 7720 8158 '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.28.4)': 7721 8159 dependencies: 7722 8160 '@babel/core': 7.28.4 7723 - '@babel/helper-plugin-utils': 7.27.1 7724 - 7725 - '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.26.0)': 7726 - dependencies: 7727 - '@babel/core': 7.26.0 7728 8161 '@babel/helper-plugin-utils': 7.27.1 7729 8162 7730 8163 '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.28.4)': ··· 7732 8165 '@babel/core': 7.28.4 7733 8166 '@babel/helper-plugin-utils': 7.27.1 7734 8167 7735 - '@babel/plugin-syntax-decorators@7.25.9(@babel/core@7.26.0)': 7736 - dependencies: 7737 - '@babel/core': 7.26.0 7738 - '@babel/helper-plugin-utils': 7.25.9 7739 - 7740 8168 '@babel/plugin-syntax-decorators@7.25.9(@babel/core@7.28.4)': 7741 8169 dependencies: 7742 8170 '@babel/core': 7.28.4 7743 - '@babel/helper-plugin-utils': 7.25.9 7744 - 7745 - '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.26.0)': 7746 - dependencies: 7747 - '@babel/core': 7.26.0 7748 - '@babel/helper-plugin-utils': 7.25.9 8171 + '@babel/helper-plugin-utils': 7.27.1 7749 8172 7750 8173 '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.28.4)': 7751 8174 dependencies: 7752 8175 '@babel/core': 7.28.4 7753 - '@babel/helper-plugin-utils': 7.25.9 7754 - 7755 - '@babel/plugin-syntax-export-default-from@7.25.9(@babel/core@7.26.0)': 7756 - dependencies: 7757 - '@babel/core': 7.26.0 7758 - '@babel/helper-plugin-utils': 7.25.9 8176 + '@babel/helper-plugin-utils': 7.27.1 7759 8177 7760 8178 '@babel/plugin-syntax-export-default-from@7.25.9(@babel/core@7.28.4)': 7761 8179 dependencies: 7762 8180 '@babel/core': 7.28.4 7763 - '@babel/helper-plugin-utils': 7.25.9 7764 - 7765 - '@babel/plugin-syntax-flow@7.26.0(@babel/core@7.26.0)': 7766 - dependencies: 7767 - '@babel/core': 7.26.0 7768 - '@babel/helper-plugin-utils': 7.25.9 8181 + '@babel/helper-plugin-utils': 7.27.1 7769 8182 7770 8183 '@babel/plugin-syntax-flow@7.26.0(@babel/core@7.28.4)': 7771 8184 dependencies: 7772 8185 '@babel/core': 7.28.4 7773 - '@babel/helper-plugin-utils': 7.25.9 7774 - 7775 - '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.0)': 7776 - dependencies: 7777 - '@babel/core': 7.26.0 7778 8186 '@babel/helper-plugin-utils': 7.27.1 7779 8187 7780 8188 '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.28.4)': ··· 7782 8190 '@babel/core': 7.28.4 7783 8191 '@babel/helper-plugin-utils': 7.27.1 7784 8192 7785 - '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.26.0)': 7786 - dependencies: 7787 - '@babel/core': 7.26.0 7788 - '@babel/helper-plugin-utils': 7.27.1 7789 - 7790 8193 '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.28.4)': 7791 8194 dependencies: 7792 8195 '@babel/core': 7.28.4 7793 8196 '@babel/helper-plugin-utils': 7.27.1 7794 8197 7795 - '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.26.0)': 7796 - dependencies: 7797 - '@babel/core': 7.26.0 7798 - '@babel/helper-plugin-utils': 7.27.1 7799 - 7800 8198 '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.28.4)': 7801 8199 dependencies: 7802 8200 '@babel/core': 7.28.4 7803 8201 '@babel/helper-plugin-utils': 7.27.1 7804 8202 7805 - '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.0)': 7806 - dependencies: 7807 - '@babel/core': 7.26.0 7808 - '@babel/helper-plugin-utils': 7.25.9 7809 - 7810 8203 '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.28.4)': 7811 8204 dependencies: 7812 8205 '@babel/core': 7.28.4 7813 - '@babel/helper-plugin-utils': 7.25.9 7814 - 7815 - '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.26.0)': 7816 - dependencies: 7817 - '@babel/core': 7.26.0 7818 8206 '@babel/helper-plugin-utils': 7.27.1 7819 8207 7820 8208 '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.28.4)': ··· 7822 8210 '@babel/core': 7.28.4 7823 8211 '@babel/helper-plugin-utils': 7.27.1 7824 8212 7825 - '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.26.0)': 7826 - dependencies: 7827 - '@babel/core': 7.26.0 7828 - '@babel/helper-plugin-utils': 7.27.1 7829 - 7830 8213 '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.28.4)': 7831 8214 dependencies: 7832 8215 '@babel/core': 7.28.4 7833 8216 '@babel/helper-plugin-utils': 7.27.1 7834 8217 7835 - '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.26.0)': 7836 - dependencies: 7837 - '@babel/core': 7.26.0 7838 - '@babel/helper-plugin-utils': 7.25.9 7839 - 7840 8218 '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.28.4)': 7841 8219 dependencies: 7842 8220 '@babel/core': 7.28.4 7843 - '@babel/helper-plugin-utils': 7.25.9 7844 - 7845 - '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.26.0)': 7846 - dependencies: 7847 - '@babel/core': 7.26.0 7848 8221 '@babel/helper-plugin-utils': 7.27.1 7849 8222 7850 8223 '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.28.4)': ··· 7852 8225 '@babel/core': 7.28.4 7853 8226 '@babel/helper-plugin-utils': 7.27.1 7854 8227 7855 - '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.26.0)': 7856 - dependencies: 7857 - '@babel/core': 7.26.0 7858 - '@babel/helper-plugin-utils': 7.27.1 7859 - 7860 8228 '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.28.4)': 7861 8229 dependencies: 7862 8230 '@babel/core': 7.28.4 7863 8231 '@babel/helper-plugin-utils': 7.27.1 7864 8232 7865 - '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.26.0)': 7866 - dependencies: 7867 - '@babel/core': 7.26.0 7868 - '@babel/helper-plugin-utils': 7.27.1 7869 - 7870 8233 '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.28.4)': 7871 8234 dependencies: 7872 8235 '@babel/core': 7.28.4 7873 8236 '@babel/helper-plugin-utils': 7.27.1 7874 8237 7875 - '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.26.0)': 7876 - dependencies: 7877 - '@babel/core': 7.26.0 7878 - '@babel/helper-plugin-utils': 7.25.9 7879 - 7880 8238 '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.28.4)': 7881 8239 dependencies: 7882 8240 '@babel/core': 7.28.4 7883 - '@babel/helper-plugin-utils': 7.25.9 7884 - 7885 - '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.26.0)': 7886 - dependencies: 7887 - '@babel/core': 7.26.0 7888 8241 '@babel/helper-plugin-utils': 7.27.1 7889 8242 7890 8243 '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.28.4)': ··· 7892 8245 '@babel/core': 7.28.4 7893 8246 '@babel/helper-plugin-utils': 7.27.1 7894 8247 7895 - '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.26.0)': 7896 - dependencies: 7897 - '@babel/core': 7.26.0 7898 - '@babel/helper-plugin-utils': 7.27.1 7899 - 7900 8248 '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.28.4)': 7901 8249 dependencies: 7902 8250 '@babel/core': 7.28.4 7903 8251 '@babel/helper-plugin-utils': 7.27.1 7904 8252 7905 - '@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.0)': 7906 - dependencies: 7907 - '@babel/core': 7.26.0 7908 - '@babel/helper-plugin-utils': 7.25.9 7909 - 7910 8253 '@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.28.4)': 7911 8254 dependencies: 7912 8255 '@babel/core': 7.28.4 7913 - '@babel/helper-plugin-utils': 7.25.9 8256 + '@babel/helper-plugin-utils': 7.27.1 7914 8257 7915 8258 '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.28.4)': 7916 8259 dependencies: 7917 8260 '@babel/core': 7.28.4 7918 8261 '@babel/helper-plugin-utils': 7.27.1 7919 8262 7920 - '@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.0)': 7921 - dependencies: 7922 - '@babel/core': 7.26.0 7923 - '@babel/helper-plugin-utils': 7.25.9 7924 - 7925 8263 '@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.28.4)': 7926 8264 dependencies: 7927 8265 '@babel/core': 7.28.4 7928 - '@babel/helper-plugin-utils': 7.25.9 8266 + '@babel/helper-plugin-utils': 7.27.1 7929 8267 7930 - '@babel/plugin-transform-async-generator-functions@7.25.9(@babel/core@7.26.0)': 8268 + '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.28.4)': 7931 8269 dependencies: 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 8270 + '@babel/core': 7.28.4 8271 + '@babel/helper-plugin-utils': 7.27.1 7938 8272 7939 8273 '@babel/plugin-transform-async-generator-functions@7.25.9(@babel/core@7.28.4)': 7940 8274 dependencies: 7941 8275 '@babel/core': 7.28.4 7942 - '@babel/helper-plugin-utils': 7.25.9 8276 + '@babel/helper-plugin-utils': 7.27.1 7943 8277 '@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 - 7948 - '@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.26.0)': 7949 - dependencies: 7950 - '@babel/core': 7.26.0 7951 - '@babel/helper-module-imports': 7.25.9 7952 - '@babel/helper-plugin-utils': 7.25.9 7953 - '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0) 8278 + '@babel/traverse': 7.28.4 7954 8279 transitivePeerDependencies: 7955 8280 - supports-color 7956 8281 7957 8282 '@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.28.4)': 7958 8283 dependencies: 7959 8284 '@babel/core': 7.28.4 7960 - '@babel/helper-module-imports': 7.25.9 7961 - '@babel/helper-plugin-utils': 7.25.9 8285 + '@babel/helper-module-imports': 7.27.1 8286 + '@babel/helper-plugin-utils': 7.27.1 7962 8287 '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.28.4) 7963 8288 transitivePeerDependencies: 7964 8289 - supports-color 7965 8290 7966 - '@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.26.0)': 7967 - dependencies: 7968 - '@babel/core': 7.26.0 7969 - '@babel/helper-plugin-utils': 7.25.9 7970 - 7971 8291 '@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.28.4)': 7972 8292 dependencies: 7973 8293 '@babel/core': 7.28.4 7974 - '@babel/helper-plugin-utils': 7.25.9 8294 + '@babel/helper-plugin-utils': 7.27.1 7975 8295 7976 - '@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.0)': 8296 + '@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.28.4)': 7977 8297 dependencies: 7978 - '@babel/core': 7.26.0 7979 - '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0) 7980 - '@babel/helper-plugin-utils': 7.25.9 8298 + '@babel/core': 7.28.4 8299 + '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4) 8300 + '@babel/helper-plugin-utils': 7.27.1 7981 8301 transitivePeerDependencies: 7982 8302 - supports-color 7983 8303 7984 - '@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.28.4)': 8304 + '@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.28.4)': 7985 8305 dependencies: 7986 8306 '@babel/core': 7.28.4 7987 - '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.28.4) 7988 - '@babel/helper-plugin-utils': 7.25.9 8307 + '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4) 8308 + '@babel/helper-plugin-utils': 7.27.1 7989 8309 transitivePeerDependencies: 7990 8310 - supports-color 7991 8311 7992 - '@babel/plugin-transform-classes@7.25.9(@babel/core@7.26.0)': 8312 + '@babel/plugin-transform-class-static-block@7.28.3(@babel/core@7.28.4)': 7993 8313 dependencies: 7994 - '@babel/core': 7.26.0 7995 - '@babel/helper-annotate-as-pure': 7.25.9 7996 - '@babel/helper-compilation-targets': 7.25.9 7997 - '@babel/helper-plugin-utils': 7.25.9 7998 - '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0) 7999 - '@babel/traverse': 7.26.4 8000 - globals: 11.12.0 8314 + '@babel/core': 7.28.4 8315 + '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4) 8316 + '@babel/helper-plugin-utils': 7.27.1 8001 8317 transitivePeerDependencies: 8002 8318 - supports-color 8003 8319 ··· 8005 8321 dependencies: 8006 8322 '@babel/core': 7.28.4 8007 8323 '@babel/helper-annotate-as-pure': 7.25.9 8008 - '@babel/helper-compilation-targets': 7.25.9 8009 - '@babel/helper-plugin-utils': 7.25.9 8324 + '@babel/helper-compilation-targets': 7.27.2 8325 + '@babel/helper-plugin-utils': 7.27.1 8010 8326 '@babel/helper-replace-supers': 7.25.9(@babel/core@7.28.4) 8011 - '@babel/traverse': 7.26.4 8327 + '@babel/traverse': 7.28.4 8012 8328 globals: 11.12.0 8013 8329 transitivePeerDependencies: 8014 8330 - supports-color 8015 8331 8016 - '@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.0)': 8332 + '@babel/plugin-transform-classes@7.28.4(@babel/core@7.28.4)': 8017 8333 dependencies: 8018 - '@babel/core': 7.26.0 8019 - '@babel/helper-plugin-utils': 7.25.9 8020 - '@babel/template': 7.25.9 8334 + '@babel/core': 7.28.4 8335 + '@babel/helper-annotate-as-pure': 7.27.3 8336 + '@babel/helper-compilation-targets': 7.27.2 8337 + '@babel/helper-globals': 7.28.0 8338 + '@babel/helper-plugin-utils': 7.27.1 8339 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.4) 8340 + '@babel/traverse': 7.28.4 8341 + transitivePeerDependencies: 8342 + - supports-color 8021 8343 8022 8344 '@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.28.4)': 8023 8345 dependencies: 8024 8346 '@babel/core': 7.28.4 8025 - '@babel/helper-plugin-utils': 7.25.9 8026 - '@babel/template': 7.25.9 8027 - 8028 - '@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.0)': 8029 - dependencies: 8030 - '@babel/core': 7.26.0 8031 - '@babel/helper-plugin-utils': 7.25.9 8347 + '@babel/helper-plugin-utils': 7.27.1 8348 + '@babel/template': 7.27.2 8032 8349 8033 8350 '@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.28.4)': 8034 8351 dependencies: 8035 8352 '@babel/core': 7.28.4 8036 - '@babel/helper-plugin-utils': 7.25.9 8037 - 8038 - '@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.26.0)': 8039 - dependencies: 8040 - '@babel/core': 7.26.0 8041 8353 '@babel/helper-plugin-utils': 7.27.1 8042 8354 8043 8355 '@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.28.4)': ··· 8045 8357 '@babel/core': 7.28.4 8046 8358 '@babel/helper-plugin-utils': 7.27.1 8047 8359 8048 - '@babel/plugin-transform-flow-strip-types@7.25.9(@babel/core@7.26.0)': 8049 - dependencies: 8050 - '@babel/core': 7.26.0 8051 - '@babel/helper-plugin-utils': 7.25.9 8052 - '@babel/plugin-syntax-flow': 7.26.0(@babel/core@7.26.0) 8053 - 8054 8360 '@babel/plugin-transform-flow-strip-types@7.25.9(@babel/core@7.28.4)': 8055 8361 dependencies: 8056 8362 '@babel/core': 7.28.4 8057 - '@babel/helper-plugin-utils': 7.25.9 8363 + '@babel/helper-plugin-utils': 7.27.1 8058 8364 '@babel/plugin-syntax-flow': 7.26.0(@babel/core@7.28.4) 8059 8365 8060 - '@babel/plugin-transform-for-of@7.25.9(@babel/core@7.26.0)': 8061 - dependencies: 8062 - '@babel/core': 7.26.0 8063 - '@babel/helper-plugin-utils': 7.25.9 8064 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 8065 - transitivePeerDependencies: 8066 - - supports-color 8067 - 8068 8366 '@babel/plugin-transform-for-of@7.25.9(@babel/core@7.28.4)': 8069 8367 dependencies: 8070 8368 '@babel/core': 7.28.4 8071 - '@babel/helper-plugin-utils': 7.25.9 8369 + '@babel/helper-plugin-utils': 7.27.1 8072 8370 '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 8073 8371 transitivePeerDependencies: 8074 8372 - supports-color 8075 8373 8076 - '@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.0)': 8077 - dependencies: 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 - 8085 8374 '@babel/plugin-transform-function-name@7.25.9(@babel/core@7.28.4)': 8086 8375 dependencies: 8087 8376 '@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 8377 + '@babel/helper-compilation-targets': 7.27.2 8378 + '@babel/helper-plugin-utils': 7.27.1 8379 + '@babel/traverse': 7.28.4 8091 8380 transitivePeerDependencies: 8092 8381 - supports-color 8093 - 8094 - '@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.0)': 8095 - dependencies: 8096 - '@babel/core': 7.26.0 8097 - '@babel/helper-plugin-utils': 7.25.9 8098 8382 8099 8383 '@babel/plugin-transform-literals@7.25.9(@babel/core@7.28.4)': 8100 8384 dependencies: 8101 8385 '@babel/core': 7.28.4 8102 - '@babel/helper-plugin-utils': 7.25.9 8103 - 8104 - '@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.26.0)': 8105 - dependencies: 8106 - '@babel/core': 7.26.0 8107 - '@babel/helper-plugin-utils': 7.25.9 8386 + '@babel/helper-plugin-utils': 7.27.1 8108 8387 8109 8388 '@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.28.4)': 8110 8389 dependencies: 8111 8390 '@babel/core': 7.28.4 8112 - '@babel/helper-plugin-utils': 7.25.9 8391 + '@babel/helper-plugin-utils': 7.27.1 8113 8392 8114 - '@babel/plugin-transform-modules-commonjs@7.26.3(@babel/core@7.26.0)': 8393 + '@babel/plugin-transform-modules-commonjs@7.26.3(@babel/core@7.28.4)': 8115 8394 dependencies: 8116 - '@babel/core': 7.26.0 8117 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0) 8395 + '@babel/core': 7.28.4 8396 + '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4) 8118 8397 '@babel/helper-plugin-utils': 7.25.9 8119 8398 transitivePeerDependencies: 8120 8399 - supports-color 8121 8400 8122 - '@babel/plugin-transform-modules-commonjs@7.26.3(@babel/core@7.28.4)': 8401 + '@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.28.4)': 8123 8402 dependencies: 8124 8403 '@babel/core': 7.28.4 8125 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.28.4) 8126 - '@babel/helper-plugin-utils': 7.25.9 8404 + '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4) 8405 + '@babel/helper-plugin-utils': 7.27.1 8127 8406 transitivePeerDependencies: 8128 8407 - supports-color 8129 8408 8130 - '@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0)': 8131 - dependencies: 8132 - '@babel/core': 7.26.0 8133 - '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) 8134 - '@babel/helper-plugin-utils': 7.25.9 8135 - 8136 8409 '@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.28.4)': 8137 8410 dependencies: 8138 8411 '@babel/core': 7.28.4 8139 8412 '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.28.4) 8140 - '@babel/helper-plugin-utils': 7.25.9 8141 - 8142 - '@babel/plugin-transform-nullish-coalescing-operator@7.25.9(@babel/core@7.26.0)': 8143 - dependencies: 8144 - '@babel/core': 7.26.0 8145 - '@babel/helper-plugin-utils': 7.25.9 8413 + '@babel/helper-plugin-utils': 7.27.1 8146 8414 8147 8415 '@babel/plugin-transform-nullish-coalescing-operator@7.25.9(@babel/core@7.28.4)': 8148 8416 dependencies: 8149 8417 '@babel/core': 7.28.4 8150 - '@babel/helper-plugin-utils': 7.25.9 8418 + '@babel/helper-plugin-utils': 7.27.1 8151 8419 8152 - '@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.26.0)': 8420 + '@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.28.4)': 8153 8421 dependencies: 8154 - '@babel/core': 7.26.0 8155 - '@babel/helper-plugin-utils': 7.25.9 8422 + '@babel/core': 7.28.4 8423 + '@babel/helper-plugin-utils': 7.27.1 8156 8424 8157 8425 '@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.28.4)': 8158 8426 dependencies: 8159 8427 '@babel/core': 7.28.4 8160 - '@babel/helper-plugin-utils': 7.25.9 8161 - 8162 - '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.0)': 8163 - dependencies: 8164 - '@babel/core': 7.26.0 8165 - '@babel/helper-compilation-targets': 7.25.9 8166 - '@babel/helper-plugin-utils': 7.25.9 8167 - '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0) 8428 + '@babel/helper-plugin-utils': 7.27.1 8168 8429 8169 8430 '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.28.4)': 8170 8431 dependencies: 8171 8432 '@babel/core': 7.28.4 8172 - '@babel/helper-compilation-targets': 7.25.9 8173 - '@babel/helper-plugin-utils': 7.25.9 8433 + '@babel/helper-compilation-targets': 7.27.2 8434 + '@babel/helper-plugin-utils': 7.27.1 8174 8435 '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.28.4) 8175 8436 8176 - '@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.26.0)': 8177 - dependencies: 8178 - '@babel/core': 7.26.0 8179 - '@babel/helper-plugin-utils': 7.25.9 8180 - 8181 8437 '@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.28.4)': 8182 8438 dependencies: 8183 8439 '@babel/core': 7.28.4 8184 - '@babel/helper-plugin-utils': 7.25.9 8440 + '@babel/helper-plugin-utils': 7.27.1 8185 8441 8186 - '@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.26.0)': 8442 + '@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.28.4)': 8187 8443 dependencies: 8188 - '@babel/core': 7.26.0 8189 - '@babel/helper-plugin-utils': 7.25.9 8444 + '@babel/core': 7.28.4 8445 + '@babel/helper-plugin-utils': 7.27.1 8190 8446 '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 8191 8447 transitivePeerDependencies: 8192 8448 - supports-color 8193 8449 8194 - '@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.28.4)': 8450 + '@babel/plugin-transform-optional-chaining@7.27.1(@babel/core@7.28.4)': 8195 8451 dependencies: 8196 8452 '@babel/core': 7.28.4 8197 - '@babel/helper-plugin-utils': 7.25.9 8198 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 8453 + '@babel/helper-plugin-utils': 7.27.1 8454 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 8199 8455 transitivePeerDependencies: 8200 8456 - supports-color 8201 - 8202 - '@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.0)': 8203 - dependencies: 8204 - '@babel/core': 7.26.0 8205 - '@babel/helper-plugin-utils': 7.25.9 8206 8457 8207 8458 '@babel/plugin-transform-parameters@7.25.9(@babel/core@7.28.4)': 8208 8459 dependencies: 8209 8460 '@babel/core': 7.28.4 8210 - '@babel/helper-plugin-utils': 7.25.9 8211 - 8212 - '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.0)': 8213 - dependencies: 8214 - '@babel/core': 7.26.0 8215 - '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0) 8216 - '@babel/helper-plugin-utils': 7.25.9 8217 - transitivePeerDependencies: 8218 - - supports-color 8461 + '@babel/helper-plugin-utils': 7.27.1 8219 8462 8220 8463 '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.28.4)': 8221 8464 dependencies: 8222 8465 '@babel/core': 7.28.4 8223 8466 '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.28.4) 8224 - '@babel/helper-plugin-utils': 7.25.9 8225 - transitivePeerDependencies: 8226 - - supports-color 8227 - 8228 - '@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.26.0)': 8229 - dependencies: 8230 - '@babel/core': 7.26.0 8231 - '@babel/helper-annotate-as-pure': 7.25.9 8232 - '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0) 8233 - '@babel/helper-plugin-utils': 7.25.9 8467 + '@babel/helper-plugin-utils': 7.27.1 8234 8468 transitivePeerDependencies: 8235 8469 - supports-color 8236 8470 ··· 8239 8473 '@babel/core': 7.28.4 8240 8474 '@babel/helper-annotate-as-pure': 7.25.9 8241 8475 '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.28.4) 8242 - '@babel/helper-plugin-utils': 7.25.9 8476 + '@babel/helper-plugin-utils': 7.27.1 8243 8477 transitivePeerDependencies: 8244 8478 - supports-color 8245 8479 8246 - '@babel/plugin-transform-react-display-name@7.25.9(@babel/core@7.26.0)': 8247 - dependencies: 8248 - '@babel/core': 7.26.0 8249 - '@babel/helper-plugin-utils': 7.25.9 8250 - 8251 8480 '@babel/plugin-transform-react-display-name@7.25.9(@babel/core@7.28.4)': 8252 8481 dependencies: 8253 8482 '@babel/core': 7.28.4 8254 - '@babel/helper-plugin-utils': 7.25.9 8255 - 8256 - '@babel/plugin-transform-react-jsx-development@7.25.9(@babel/core@7.26.0)': 8257 - dependencies: 8258 - '@babel/core': 7.26.0 8259 - '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.0) 8260 - transitivePeerDependencies: 8261 - - supports-color 8483 + '@babel/helper-plugin-utils': 7.27.1 8262 8484 8263 8485 '@babel/plugin-transform-react-jsx-development@7.25.9(@babel/core@7.28.4)': 8264 8486 dependencies: ··· 8267 8489 transitivePeerDependencies: 8268 8490 - supports-color 8269 8491 8270 - '@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.26.0)': 8271 - dependencies: 8272 - '@babel/core': 7.26.0 8273 - '@babel/helper-plugin-utils': 7.25.9 8274 - 8275 8492 '@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.28.4)': 8276 8493 dependencies: 8277 8494 '@babel/core': 7.28.4 8278 - '@babel/helper-plugin-utils': 7.25.9 8279 - 8280 - '@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.26.0)': 8281 - dependencies: 8282 - '@babel/core': 7.26.0 8283 - '@babel/helper-plugin-utils': 7.25.9 8495 + '@babel/helper-plugin-utils': 7.27.1 8284 8496 8285 8497 '@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.28.4)': 8286 8498 dependencies: 8287 8499 '@babel/core': 7.28.4 8288 - '@babel/helper-plugin-utils': 7.25.9 8289 - 8290 - '@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.26.0)': 8291 - dependencies: 8292 - '@babel/core': 7.26.0 8293 - '@babel/helper-annotate-as-pure': 7.25.9 8294 - '@babel/helper-module-imports': 7.25.9 8295 - '@babel/helper-plugin-utils': 7.25.9 8296 - '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.26.0) 8297 - '@babel/types': 7.28.4 8298 - transitivePeerDependencies: 8299 - - supports-color 8500 + '@babel/helper-plugin-utils': 7.27.1 8300 8501 8301 8502 '@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.28.4)': 8302 8503 dependencies: 8303 8504 '@babel/core': 7.28.4 8304 8505 '@babel/helper-annotate-as-pure': 7.25.9 8305 - '@babel/helper-module-imports': 7.25.9 8306 - '@babel/helper-plugin-utils': 7.25.9 8506 + '@babel/helper-module-imports': 7.27.1 8507 + '@babel/helper-plugin-utils': 7.27.1 8307 8508 '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.4) 8308 8509 '@babel/types': 7.28.4 8309 8510 transitivePeerDependencies: 8310 8511 - supports-color 8311 - 8312 - '@babel/plugin-transform-react-pure-annotations@7.25.9(@babel/core@7.26.0)': 8313 - dependencies: 8314 - '@babel/core': 7.26.0 8315 - '@babel/helper-annotate-as-pure': 7.25.9 8316 - '@babel/helper-plugin-utils': 7.25.9 8317 8512 8318 8513 '@babel/plugin-transform-react-pure-annotations@7.25.9(@babel/core@7.28.4)': 8319 8514 dependencies: 8320 8515 '@babel/core': 7.28.4 8321 8516 '@babel/helper-annotate-as-pure': 7.25.9 8322 - '@babel/helper-plugin-utils': 7.25.9 8323 - 8324 - '@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.26.0)': 8325 - dependencies: 8326 - '@babel/core': 7.26.0 8327 - '@babel/helper-plugin-utils': 7.25.9 8328 - regenerator-transform: 0.15.2 8517 + '@babel/helper-plugin-utils': 7.27.1 8329 8518 8330 8519 '@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.28.4)': 8331 8520 dependencies: 8332 8521 '@babel/core': 7.28.4 8333 - '@babel/helper-plugin-utils': 7.25.9 8522 + '@babel/helper-plugin-utils': 7.27.1 8334 8523 regenerator-transform: 0.15.2 8335 8524 8336 - '@babel/plugin-transform-runtime@7.25.9(@babel/core@7.26.0)': 8337 - dependencies: 8338 - '@babel/core': 7.26.0 8339 - '@babel/helper-module-imports': 7.25.9 8340 - '@babel/helper-plugin-utils': 7.25.9 8341 - babel-plugin-polyfill-corejs2: 0.4.12(@babel/core@7.26.0) 8342 - babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.0) 8343 - babel-plugin-polyfill-regenerator: 0.6.3(@babel/core@7.26.0) 8344 - semver: 6.3.1 8345 - transitivePeerDependencies: 8346 - - supports-color 8347 - 8348 8525 '@babel/plugin-transform-runtime@7.25.9(@babel/core@7.28.4)': 8349 8526 dependencies: 8350 8527 '@babel/core': 7.28.4 8351 - '@babel/helper-module-imports': 7.25.9 8352 - '@babel/helper-plugin-utils': 7.25.9 8528 + '@babel/helper-module-imports': 7.27.1 8529 + '@babel/helper-plugin-utils': 7.27.1 8353 8530 babel-plugin-polyfill-corejs2: 0.4.12(@babel/core@7.28.4) 8354 8531 babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.28.4) 8355 8532 babel-plugin-polyfill-regenerator: 0.6.3(@babel/core@7.28.4) ··· 8357 8534 transitivePeerDependencies: 8358 8535 - supports-color 8359 8536 8360 - '@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.26.0)': 8361 - dependencies: 8362 - '@babel/core': 7.26.0 8363 - '@babel/helper-plugin-utils': 7.25.9 8364 - 8365 8537 '@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.28.4)': 8366 8538 dependencies: 8367 8539 '@babel/core': 7.28.4 8368 - '@babel/helper-plugin-utils': 7.25.9 8540 + '@babel/helper-plugin-utils': 7.27.1 8369 8541 8370 - '@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.0)': 8542 + '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.28.4)': 8371 8543 dependencies: 8372 - '@babel/core': 7.26.0 8373 - '@babel/helper-plugin-utils': 7.25.9 8374 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 8375 - transitivePeerDependencies: 8376 - - supports-color 8544 + '@babel/core': 7.28.4 8545 + '@babel/helper-plugin-utils': 7.27.1 8377 8546 8378 8547 '@babel/plugin-transform-spread@7.25.9(@babel/core@7.28.4)': 8379 8548 dependencies: 8380 8549 '@babel/core': 7.28.4 8381 - '@babel/helper-plugin-utils': 7.25.9 8550 + '@babel/helper-plugin-utils': 7.27.1 8382 8551 '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 8383 8552 transitivePeerDependencies: 8384 8553 - supports-color 8385 8554 8386 - '@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.26.0)': 8387 - dependencies: 8388 - '@babel/core': 7.26.0 8389 - '@babel/helper-plugin-utils': 7.25.9 8390 - 8391 8555 '@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.28.4)': 8392 8556 dependencies: 8393 8557 '@babel/core': 7.28.4 8394 - '@babel/helper-plugin-utils': 7.25.9 8558 + '@babel/helper-plugin-utils': 7.27.1 8395 8559 8396 - '@babel/plugin-transform-template-literals@7.25.9(@babel/core@7.26.0)': 8560 + '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.28.4)': 8397 8561 dependencies: 8398 - '@babel/core': 7.26.0 8399 - '@babel/helper-plugin-utils': 7.25.9 8562 + '@babel/core': 7.28.4 8563 + '@babel/helper-plugin-utils': 7.27.1 8400 8564 8401 - '@babel/plugin-transform-typescript@7.26.3(@babel/core@7.26.0)': 8565 + '@babel/plugin-transform-typescript@7.26.3(@babel/core@7.28.4)': 8402 8566 dependencies: 8403 - '@babel/core': 7.26.0 8567 + '@babel/core': 7.28.4 8404 8568 '@babel/helper-annotate-as-pure': 7.25.9 8405 - '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0) 8406 - '@babel/helper-plugin-utils': 7.25.9 8569 + '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4) 8570 + '@babel/helper-plugin-utils': 7.27.1 8407 8571 '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 8408 - '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0) 8572 + '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.28.4) 8409 8573 transitivePeerDependencies: 8410 8574 - supports-color 8411 8575 8412 - '@babel/plugin-transform-typescript@7.26.3(@babel/core@7.28.4)': 8576 + '@babel/plugin-transform-typescript@7.28.0(@babel/core@7.28.4)': 8413 8577 dependencies: 8414 8578 '@babel/core': 7.28.4 8415 - '@babel/helper-annotate-as-pure': 7.25.9 8416 - '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.28.4) 8417 - '@babel/helper-plugin-utils': 7.25.9 8418 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 8419 - '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.28.4) 8579 + '@babel/helper-annotate-as-pure': 7.27.3 8580 + '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4) 8581 + '@babel/helper-plugin-utils': 7.27.1 8582 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 8583 + '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.4) 8420 8584 transitivePeerDependencies: 8421 8585 - supports-color 8422 8586 8423 - '@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.0)': 8424 - dependencies: 8425 - '@babel/core': 7.26.0 8426 - '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) 8427 - '@babel/helper-plugin-utils': 7.25.9 8428 - 8429 8587 '@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.28.4)': 8430 8588 dependencies: 8431 8589 '@babel/core': 7.28.4 8432 8590 '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.28.4) 8433 - '@babel/helper-plugin-utils': 7.25.9 8591 + '@babel/helper-plugin-utils': 7.27.1 8434 8592 8435 - '@babel/preset-react@7.26.3(@babel/core@7.26.0)': 8593 + '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.28.4)': 8436 8594 dependencies: 8437 - '@babel/core': 7.26.0 8438 - '@babel/helper-plugin-utils': 7.25.9 8439 - '@babel/helper-validator-option': 7.25.9 8440 - '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.26.0) 8441 - '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.0) 8442 - '@babel/plugin-transform-react-jsx-development': 7.25.9(@babel/core@7.26.0) 8443 - '@babel/plugin-transform-react-pure-annotations': 7.25.9(@babel/core@7.26.0) 8444 - transitivePeerDependencies: 8445 - - supports-color 8595 + '@babel/core': 7.28.4 8596 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4) 8597 + '@babel/helper-plugin-utils': 7.27.1 8446 8598 8447 8599 '@babel/preset-react@7.26.3(@babel/core@7.28.4)': 8448 8600 dependencies: 8449 8601 '@babel/core': 7.28.4 8450 - '@babel/helper-plugin-utils': 7.25.9 8451 - '@babel/helper-validator-option': 7.25.9 8602 + '@babel/helper-plugin-utils': 7.27.1 8603 + '@babel/helper-validator-option': 7.27.1 8452 8604 '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.28.4) 8453 8605 '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.28.4) 8454 8606 '@babel/plugin-transform-react-jsx-development': 7.25.9(@babel/core@7.28.4) ··· 8456 8608 transitivePeerDependencies: 8457 8609 - supports-color 8458 8610 8459 - '@babel/preset-typescript@7.26.0(@babel/core@7.26.0)': 8460 - dependencies: 8461 - '@babel/core': 7.26.0 8462 - '@babel/helper-plugin-utils': 7.25.9 8463 - '@babel/helper-validator-option': 7.25.9 8464 - '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0) 8465 - '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.0) 8466 - '@babel/plugin-transform-typescript': 7.26.3(@babel/core@7.26.0) 8467 - transitivePeerDependencies: 8468 - - supports-color 8469 - 8470 8611 '@babel/preset-typescript@7.26.0(@babel/core@7.28.4)': 8471 8612 dependencies: 8472 8613 '@babel/core': 7.28.4 8473 8614 '@babel/helper-plugin-utils': 7.25.9 8474 - '@babel/helper-validator-option': 7.25.9 8615 + '@babel/helper-validator-option': 7.27.1 8475 8616 '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.28.4) 8476 8617 '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.28.4) 8477 8618 '@babel/plugin-transform-typescript': 7.26.3(@babel/core@7.28.4) 8478 8619 transitivePeerDependencies: 8479 8620 - supports-color 8480 8621 8481 - '@babel/runtime@7.26.0': 8622 + '@babel/preset-typescript@7.27.1(@babel/core@7.28.4)': 8482 8623 dependencies: 8483 - regenerator-runtime: 0.14.1 8624 + '@babel/core': 7.28.4 8625 + '@babel/helper-plugin-utils': 7.27.1 8626 + '@babel/helper-validator-option': 7.27.1 8627 + '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.4) 8628 + '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.4) 8629 + '@babel/plugin-transform-typescript': 7.28.0(@babel/core@7.28.4) 8630 + transitivePeerDependencies: 8631 + - supports-color 8484 8632 8485 - '@babel/template@7.25.9': 8486 - dependencies: 8487 - '@babel/code-frame': 7.26.2 8488 - '@babel/parser': 7.26.3 8489 - '@babel/types': 7.26.3 8633 + '@babel/runtime@7.28.4': {} 8490 8634 8491 8635 '@babel/template@7.27.2': 8492 8636 dependencies: ··· 8496 8640 8497 8641 '@babel/traverse@7.26.4': 8498 8642 dependencies: 8499 - '@babel/code-frame': 7.26.2 8500 - '@babel/generator': 7.26.3 8501 - '@babel/parser': 7.26.3 8502 - '@babel/template': 7.25.9 8503 - '@babel/types': 7.26.3 8504 - debug: 4.4.0 8643 + '@babel/code-frame': 7.27.1 8644 + '@babel/generator': 7.28.3 8645 + '@babel/parser': 7.28.4 8646 + '@babel/template': 7.27.2 8647 + '@babel/types': 7.28.4 8648 + debug: 4.4.3 8505 8649 globals: 11.12.0 8506 8650 transitivePeerDependencies: 8507 8651 - supports-color ··· 8548 8692 '@cbor-extract/cbor-extract-win32-x64@2.2.0': 8549 8693 optional: true 8550 8694 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)': 8695 + '@craftzdog/react-native-buffer@6.0.5(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': 8552 8696 dependencies: 8553 8697 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) 8698 + react-native-quick-base64: 2.1.2(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 8555 8699 transitivePeerDependencies: 8556 8700 - react 8557 8701 - react-native ··· 8580 8724 tslib: 2.8.1 8581 8725 optional: true 8582 8726 8583 - '@eslint-community/eslint-utils@4.4.1(eslint@8.57.1)': 8584 - dependencies: 8585 - eslint: 8.57.1 8586 - eslint-visitor-keys: 3.4.3 8587 - 8588 - '@eslint-community/eslint-utils@4.7.0(eslint@8.57.1)': 8727 + '@eslint-community/eslint-utils@4.9.0(eslint@8.57.1)': 8589 8728 dependencies: 8590 8729 eslint: 8.57.1 8591 8730 eslint-visitor-keys: 3.4.3 ··· 8595 8734 '@eslint/eslintrc@2.1.4': 8596 8735 dependencies: 8597 8736 ajv: 6.12.6 8598 - debug: 4.4.0 8737 + debug: 4.4.3 8599 8738 espree: 9.6.1 8600 8739 globals: 13.24.0 8601 8740 ignore: 5.3.2 8602 - import-fresh: 3.3.0 8741 + import-fresh: 3.3.1 8603 8742 js-yaml: 4.1.0 8604 8743 minimatch: 3.1.2 8605 8744 strip-json-comments: 3.1.1 ··· 8608 8747 8609 8748 '@eslint/js@8.57.1': {} 8610 8749 8611 - '@expo/cli@0.24.20': 8750 + '@expo/cli@54.0.10(expo-router@6.0.10)(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))': 8612 8751 dependencies: 8613 8752 '@0no-co/graphql.web': 1.0.12 8614 - '@babel/runtime': 7.26.0 8615 8753 '@expo/code-signing-certificates': 0.0.5 8616 - '@expo/config': 11.0.13 8617 - '@expo/config-plugins': 10.1.2 8754 + '@expo/config': 12.0.10 8755 + '@expo/config-plugins': 54.0.2 8618 8756 '@expo/devcert': 1.1.4 8619 - '@expo/env': 1.0.7 8620 - '@expo/image-utils': 0.7.6 8621 - '@expo/json-file': 9.1.5 8622 - '@expo/metro-config': 0.20.17 8623 - '@expo/osascript': 2.2.5 8624 - '@expo/package-manager': 1.8.6 8625 - '@expo/plist': 0.3.5 8626 - '@expo/prebuild-config': 9.0.11 8757 + '@expo/env': 2.0.7 8758 + '@expo/image-utils': 0.8.7 8759 + '@expo/json-file': 10.0.7 8760 + '@expo/mcp-tunnel': 0.0.8 8761 + '@expo/metro': 54.0.0 8762 + '@expo/metro-config': 54.0.6(expo@54.0.12) 8763 + '@expo/osascript': 2.3.7 8764 + '@expo/package-manager': 1.9.8 8765 + '@expo/plist': 0.4.7 8766 + '@expo/prebuild-config': 54.0.4(expo@54.0.12) 8767 + '@expo/schema-utils': 0.1.7 8627 8768 '@expo/spawn-async': 1.7.2 8628 8769 '@expo/ws-tunnel': 1.0.6 8629 8770 '@expo/xcpretty': 4.3.2 8630 - '@react-native/dev-middleware': 0.79.5 8771 + '@react-native/dev-middleware': 0.81.4 8631 8772 '@urql/core': 5.1.0 8632 8773 '@urql/exchange-retry': 1.3.0(@urql/core@5.1.0) 8633 8774 accepts: 1.3.8 ··· 8639 8780 ci-info: 3.9.0 8640 8781 compression: 1.7.5 8641 8782 connect: 3.7.0 8642 - debug: 4.4.0 8783 + debug: 4.4.3 8643 8784 env-editor: 0.4.2 8785 + expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 8786 + expo-server: 1.0.0 8644 8787 freeport-async: 2.0.0 8645 8788 getenv: 2.0.0 8646 8789 glob: 10.4.5 ··· 8660 8803 resolve: 1.22.10 8661 8804 resolve-from: 5.0.0 8662 8805 resolve.exports: 2.0.3 8663 - semver: 7.6.3 8806 + semver: 7.7.2 8664 8807 send: 0.19.0 8665 8808 slugify: 1.6.6 8666 8809 source-map-support: 0.5.21 ··· 8671 8814 undici: 6.21.0 8672 8815 wrap-ansi: 7.0.0 8673 8816 ws: 8.18.0 8817 + optionalDependencies: 8818 + expo-router: 6.0.10(dyms6en36i74il5wcg7sgjxr3a) 8819 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 8674 8820 transitivePeerDependencies: 8821 + - '@modelcontextprotocol/sdk' 8675 8822 - bufferutil 8676 8823 - graphql 8677 8824 - supports-color 8678 8825 - utf-8-validate 8679 8826 8680 - '@expo/code-signing-certificates@0.0.5': 8827 + '@expo/cli@54.0.10(expo-router@6.0.10)(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))': 8681 8828 dependencies: 8682 - node-forge: 1.3.1 8683 - nullthrows: 1.1.1 8684 - 8685 - '@expo/config-plugins@10.0.2': 8686 - dependencies: 8687 - '@expo/config-types': 53.0.5 8688 - '@expo/json-file': 9.1.5 8689 - '@expo/plist': 0.3.4 8690 - '@expo/sdk-runtime-versions': 1.0.0 8829 + '@0no-co/graphql.web': 1.0.12 8830 + '@expo/code-signing-certificates': 0.0.5 8831 + '@expo/config': 12.0.10 8832 + '@expo/config-plugins': 54.0.2 8833 + '@expo/devcert': 1.1.4 8834 + '@expo/env': 2.0.7 8835 + '@expo/image-utils': 0.8.7 8836 + '@expo/json-file': 10.0.7 8837 + '@expo/mcp-tunnel': 0.0.8 8838 + '@expo/metro': 54.0.0 8839 + '@expo/metro-config': 54.0.6(expo@54.0.12) 8840 + '@expo/osascript': 2.3.7 8841 + '@expo/package-manager': 1.9.8 8842 + '@expo/plist': 0.4.7 8843 + '@expo/prebuild-config': 54.0.4(expo@54.0.12) 8844 + '@expo/schema-utils': 0.1.7 8845 + '@expo/spawn-async': 1.7.2 8846 + '@expo/ws-tunnel': 1.0.6 8847 + '@expo/xcpretty': 4.3.2 8848 + '@react-native/dev-middleware': 0.81.4 8849 + '@urql/core': 5.1.0 8850 + '@urql/exchange-retry': 1.3.0(@urql/core@5.1.0) 8851 + accepts: 1.3.8 8852 + arg: 5.0.2 8853 + better-opn: 3.0.2 8854 + bplist-creator: 0.1.0 8855 + bplist-parser: 0.3.2 8691 8856 chalk: 4.1.2 8692 - debug: 4.4.0 8693 - getenv: 1.0.0 8857 + ci-info: 3.9.0 8858 + compression: 1.7.5 8859 + connect: 3.7.0 8860 + debug: 4.4.3 8861 + env-editor: 0.4.2 8862 + expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0) 8863 + expo-server: 1.0.0 8864 + freeport-async: 2.0.0 8865 + getenv: 2.0.0 8694 8866 glob: 10.4.5 8867 + lan-network: 0.1.7 8868 + minimatch: 9.0.5 8869 + node-forge: 1.3.1 8870 + npm-package-arg: 11.0.3 8871 + ora: 3.4.0 8872 + picomatch: 3.0.1 8873 + pretty-bytes: 5.6.0 8874 + pretty-format: 29.7.0 8875 + progress: 2.0.3 8876 + prompts: 2.4.2 8877 + qrcode-terminal: 0.11.0 8878 + require-from-string: 2.0.2 8879 + requireg: 0.2.2 8880 + resolve: 1.22.10 8695 8881 resolve-from: 5.0.0 8696 - semver: 7.6.3 8697 - slash: 3.0.0 8882 + resolve.exports: 2.0.3 8883 + semver: 7.7.2 8884 + send: 0.19.0 8698 8885 slugify: 1.6.6 8699 - xcode: 3.0.1 8700 - xml2js: 0.6.0 8886 + source-map-support: 0.5.21 8887 + stacktrace-parser: 0.1.10 8888 + structured-headers: 0.4.1 8889 + tar: 7.4.3 8890 + terminal-link: 2.1.1 8891 + undici: 6.21.0 8892 + wrap-ansi: 7.0.0 8893 + ws: 8.18.0 8894 + optionalDependencies: 8895 + expo-router: 6.0.10(5ksirenzi7d22pfewzdrt6o6y4) 8896 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0) 8701 8897 transitivePeerDependencies: 8898 + - '@modelcontextprotocol/sdk' 8899 + - bufferutil 8900 + - graphql 8702 8901 - supports-color 8902 + - utf-8-validate 8703 8903 8704 - '@expo/config-plugins@10.1.2': 8904 + '@expo/code-signing-certificates@0.0.5': 8705 8905 dependencies: 8706 - '@expo/config-types': 53.0.5 8707 - '@expo/json-file': 9.1.5 8708 - '@expo/plist': 0.3.5 8709 - '@expo/sdk-runtime-versions': 1.0.0 8710 - chalk: 4.1.2 8711 - debug: 4.4.0 8712 - getenv: 2.0.0 8713 - glob: 10.4.5 8714 - resolve-from: 5.0.0 8715 - semver: 7.6.3 8716 - slash: 3.0.0 8717 - slugify: 1.6.6 8718 - xcode: 3.0.1 8719 - xml2js: 0.6.0 8720 - transitivePeerDependencies: 8721 - - supports-color 8906 + node-forge: 1.3.1 8907 + nullthrows: 1.1.1 8722 8908 8723 8909 '@expo/config-plugins@54.0.2': 8724 8910 dependencies: ··· 8738 8924 xml2js: 0.6.0 8739 8925 transitivePeerDependencies: 8740 8926 - supports-color 8741 - 8742 - '@expo/config-types@53.0.4': {} 8743 - 8744 - '@expo/config-types@53.0.5': {} 8745 8927 8746 8928 '@expo/config-types@54.0.8': {} 8747 8929 8748 - '@expo/config@11.0.10': 8749 - dependencies: 8750 - '@babel/code-frame': 7.10.4 8751 - '@expo/config-plugins': 10.0.2 8752 - '@expo/config-types': 53.0.4 8753 - '@expo/json-file': 9.1.4 8754 - deepmerge: 4.3.1 8755 - getenv: 1.0.0 8756 - glob: 10.4.5 8757 - require-from-string: 2.0.2 8758 - resolve-from: 5.0.0 8759 - resolve-workspace-root: 2.0.0 8760 - semver: 7.6.3 8761 - slugify: 1.6.6 8762 - sucrase: 3.35.0 8763 - transitivePeerDependencies: 8764 - - supports-color 8765 - 8766 - '@expo/config@11.0.13': 8767 - dependencies: 8768 - '@babel/code-frame': 7.10.4 8769 - '@expo/config-plugins': 10.1.2 8770 - '@expo/config-types': 53.0.5 8771 - '@expo/json-file': 9.1.5 8772 - deepmerge: 4.3.1 8773 - getenv: 2.0.0 8774 - glob: 10.4.5 8775 - require-from-string: 2.0.2 8776 - resolve-from: 5.0.0 8777 - resolve-workspace-root: 2.0.0 8778 - semver: 7.6.3 8779 - slugify: 1.6.6 8780 - sucrase: 3.35.0 8781 - transitivePeerDependencies: 8782 - - supports-color 8783 - 8784 8930 '@expo/config@12.0.10': 8785 8931 dependencies: 8786 8932 '@babel/code-frame': 7.10.4 ··· 8816 8962 transitivePeerDependencies: 8817 8963 - supports-color 8818 8964 8819 - '@expo/env@1.0.5': 8965 + '@expo/devtools@0.1.7(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': 8966 + dependencies: 8967 + chalk: 4.1.2 8968 + optionalDependencies: 8969 + react: 19.1.0 8970 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 8971 + 8972 + '@expo/devtools@0.1.7(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)': 8820 8973 dependencies: 8821 8974 chalk: 4.1.2 8822 - debug: 4.4.0 8823 - dotenv: 16.4.7 8824 - dotenv-expand: 11.0.7 8825 - getenv: 1.0.0 8826 - transitivePeerDependencies: 8827 - - supports-color 8975 + optionalDependencies: 8976 + react: 19.2.0 8977 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0) 8828 8978 8829 - '@expo/env@1.0.7': 8979 + '@expo/env@2.0.7': 8830 8980 dependencies: 8831 8981 chalk: 4.1.2 8832 - debug: 4.4.0 8982 + debug: 4.4.3 8833 8983 dotenv: 16.4.7 8834 8984 dotenv-expand: 11.0.7 8835 8985 getenv: 2.0.0 8836 8986 transitivePeerDependencies: 8837 8987 - supports-color 8838 8988 8839 - '@expo/fingerprint@0.13.4': 8989 + '@expo/fingerprint@0.15.1': 8840 8990 dependencies: 8841 8991 '@expo/spawn-async': 1.7.2 8842 8992 arg: 5.0.2 8843 8993 chalk: 4.1.2 8844 - debug: 4.4.0 8845 - find-up: 5.0.0 8994 + debug: 4.4.3 8846 8995 getenv: 2.0.0 8847 8996 glob: 10.4.5 8848 8997 ignore: 5.3.2 8849 8998 minimatch: 9.0.5 8850 8999 p-limit: 3.1.0 8851 9000 resolve-from: 5.0.0 8852 - semver: 7.6.3 9001 + semver: 7.7.2 8853 9002 transitivePeerDependencies: 8854 9003 - supports-color 8855 9004 8856 - '@expo/image-utils@0.7.6': 9005 + '@expo/image-utils@0.8.7': 8857 9006 dependencies: 8858 9007 '@expo/spawn-async': 1.7.2 8859 9008 chalk: 4.1.2 ··· 8861 9010 jimp-compact: 0.16.1 8862 9011 parse-png: 2.1.0 8863 9012 resolve-from: 5.0.0 8864 - semver: 7.6.3 9013 + resolve-global: 1.0.0 9014 + semver: 7.7.2 8865 9015 temp-dir: 2.0.0 8866 9016 unique-string: 2.0.0 8867 9017 ··· 8870 9020 '@babel/code-frame': 7.10.4 8871 9021 json5: 2.2.3 8872 9022 8873 - '@expo/json-file@9.1.4': 9023 + '@expo/mcp-tunnel@0.0.8': 8874 9024 dependencies: 8875 - '@babel/code-frame': 7.10.4 8876 - json5: 2.2.3 9025 + ws: 8.18.3 9026 + zod: 3.25.76 9027 + zod-to-json-schema: 3.24.6(zod@3.25.76) 9028 + transitivePeerDependencies: 9029 + - bufferutil 9030 + - utf-8-validate 8877 9031 8878 - '@expo/json-file@9.1.5': 9032 + '@expo/metro-config@54.0.6(expo@54.0.12)': 8879 9033 dependencies: 8880 - '@babel/code-frame': 7.10.4 8881 - json5: 2.2.3 8882 - 8883 - '@expo/metro-config@0.20.17': 8884 - dependencies: 8885 - '@babel/core': 7.26.0 8886 - '@babel/generator': 7.26.3 8887 - '@babel/parser': 7.26.3 8888 - '@babel/types': 7.26.3 8889 - '@expo/config': 11.0.13 8890 - '@expo/env': 1.0.7 8891 - '@expo/json-file': 9.1.5 9034 + '@babel/code-frame': 7.27.1 9035 + '@babel/core': 7.28.4 9036 + '@babel/generator': 7.28.3 9037 + '@expo/config': 12.0.10 9038 + '@expo/env': 2.0.7 9039 + '@expo/json-file': 10.0.7 9040 + '@expo/metro': 54.0.0 8892 9041 '@expo/spawn-async': 1.7.2 9042 + browserslist: 4.26.3 8893 9043 chalk: 4.1.2 8894 - debug: 4.4.0 9044 + debug: 4.4.3 8895 9045 dotenv: 16.4.7 8896 9046 dotenv-expand: 11.0.7 8897 9047 getenv: 2.0.0 8898 9048 glob: 10.4.5 9049 + hermes-parser: 0.29.1 8899 9050 jsc-safe-url: 0.2.4 8900 - lightningcss: 1.27.0 9051 + lightningcss: 1.30.2 8901 9052 minimatch: 9.0.5 8902 9053 postcss: 8.4.49 8903 9054 resolve-from: 5.0.0 9055 + optionalDependencies: 9056 + expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 8904 9057 transitivePeerDependencies: 9058 + - bufferutil 8905 9059 - supports-color 9060 + - utf-8-validate 8906 9061 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))': 9062 + '@expo/metro-runtime@6.1.2(expo@54.0.12)(react-dom@19.1.0(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': 8908 9063 dependencies: 8909 - react-native: 0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0) 9064 + anser: 1.4.10 9065 + expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 9066 + pretty-format: 29.7.0 9067 + react: 19.1.0 9068 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 9069 + stacktrace-parser: 0.1.10 9070 + whatwg-fetch: 3.6.20 9071 + optionalDependencies: 9072 + react-dom: 19.1.0(react@19.1.0) 8910 9073 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))': 9074 + '@expo/metro-runtime@6.1.2(expo@54.0.12)(react-dom@19.2.0(react@19.2.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)': 8912 9075 dependencies: 8913 - react-native: 0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0) 9076 + anser: 1.4.10 9077 + expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0) 9078 + pretty-format: 29.7.0 9079 + react: 19.2.0 9080 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0) 9081 + stacktrace-parser: 0.1.10 9082 + whatwg-fetch: 3.6.20 9083 + optionalDependencies: 9084 + react-dom: 19.2.0(react@19.2.0) 8914 9085 optional: true 8915 9086 8916 - '@expo/osascript@2.2.5': 9087 + '@expo/metro@54.0.0': 9088 + dependencies: 9089 + metro: 0.83.1 9090 + metro-babel-transformer: 0.83.1 9091 + metro-cache: 0.83.1 9092 + metro-cache-key: 0.83.1 9093 + metro-config: 0.83.1 9094 + metro-core: 0.83.1 9095 + metro-file-map: 0.83.1 9096 + metro-resolver: 0.83.1 9097 + metro-runtime: 0.83.1 9098 + metro-source-map: 0.83.1 9099 + metro-transform-plugins: 0.83.1 9100 + metro-transform-worker: 0.83.1 9101 + transitivePeerDependencies: 9102 + - bufferutil 9103 + - supports-color 9104 + - utf-8-validate 9105 + 9106 + '@expo/osascript@2.3.7': 8917 9107 dependencies: 8918 9108 '@expo/spawn-async': 1.7.2 8919 9109 exec-async: 2.2.0 8920 9110 8921 - '@expo/package-manager@1.8.6': 9111 + '@expo/package-manager@1.9.8': 8922 9112 dependencies: 8923 - '@expo/json-file': 9.1.5 9113 + '@expo/json-file': 10.0.7 8924 9114 '@expo/spawn-async': 1.7.2 8925 9115 chalk: 4.1.2 8926 9116 npm-package-arg: 11.0.3 8927 9117 ora: 3.4.0 8928 9118 resolve-workspace-root: 2.0.0 8929 - 8930 - '@expo/plist@0.3.4': 8931 - dependencies: 8932 - '@xmldom/xmldom': 0.8.10 8933 - base64-js: 1.5.1 8934 - xmlbuilder: 15.1.1 8935 - 8936 - '@expo/plist@0.3.5': 8937 - dependencies: 8938 - '@xmldom/xmldom': 0.8.10 8939 - base64-js: 1.5.1 8940 - xmlbuilder: 15.1.1 8941 9119 8942 9120 '@expo/plist@0.4.7': 8943 9121 dependencies: ··· 8945 9123 base64-js: 1.5.1 8946 9124 xmlbuilder: 15.1.1 8947 9125 8948 - '@expo/prebuild-config@9.0.11': 9126 + '@expo/prebuild-config@54.0.4(expo@54.0.12)': 8949 9127 dependencies: 8950 - '@expo/config': 11.0.13 8951 - '@expo/config-plugins': 10.1.2 8952 - '@expo/config-types': 53.0.5 8953 - '@expo/image-utils': 0.7.6 8954 - '@expo/json-file': 9.1.5 8955 - '@react-native/normalize-colors': 0.79.5 9128 + '@expo/config': 12.0.10 9129 + '@expo/config-plugins': 54.0.2 9130 + '@expo/config-types': 54.0.8 9131 + '@expo/image-utils': 0.8.7 9132 + '@expo/json-file': 10.0.7 9133 + '@react-native/normalize-colors': 0.81.4 8956 9134 debug: 4.4.0 9135 + expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 8957 9136 resolve-from: 5.0.0 8958 - semver: 7.6.3 9137 + semver: 7.7.2 8959 9138 xml2js: 0.6.0 8960 9139 transitivePeerDependencies: 8961 9140 - supports-color 8962 9141 8963 - '@expo/sdk-runtime-versions@1.0.0': {} 9142 + '@expo/schema-utils@0.1.7': {} 8964 9143 8965 - '@expo/server@0.6.2': 8966 - dependencies: 8967 - abort-controller: 3.0.0 8968 - debug: 4.4.0 8969 - source-map-support: 0.5.21 8970 - undici: 6.21.0 8971 - transitivePeerDependencies: 8972 - - supports-color 9144 + '@expo/sdk-runtime-versions@1.0.0': {} 8973 9145 8974 9146 '@expo/spawn-async@1.7.2': 8975 9147 dependencies: 8976 9148 cross-spawn: 7.0.6 8977 9149 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)': 9150 + '@expo/vector-icons@15.0.2(expo-font@14.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': 8979 9151 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) 9152 + expo-font: 14.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 9153 + react: 19.1.0 9154 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 8983 9155 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)': 9156 + '@expo/vector-icons@15.0.2(expo-font@14.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)': 8985 9157 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) 9158 + expo-font: 14.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0) 9159 + react: 19.2.0 9160 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0) 8995 9161 8996 9162 '@expo/ws-tunnel@1.0.6': {} 8997 9163 ··· 9002 9168 find-up: 5.0.0 9003 9169 js-yaml: 4.1.0 9004 9170 9005 - '@floating-ui/core@1.6.8': 9171 + '@floating-ui/core@1.7.3': 9006 9172 dependencies: 9007 - '@floating-ui/utils': 0.2.8 9173 + '@floating-ui/utils': 0.2.10 9008 9174 9009 - '@floating-ui/dom@1.6.12': 9175 + '@floating-ui/dom@1.7.4': 9010 9176 dependencies: 9011 - '@floating-ui/core': 1.6.8 9012 - '@floating-ui/utils': 0.2.8 9177 + '@floating-ui/core': 1.7.3 9178 + '@floating-ui/utils': 0.2.10 9013 9179 9014 - '@floating-ui/react-dom@2.1.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 9180 + '@floating-ui/react-dom@2.1.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 9015 9181 dependencies: 9016 - '@floating-ui/dom': 1.6.12 9017 - react: 19.0.0 9018 - react-dom: 19.0.0(react@19.0.0) 9182 + '@floating-ui/dom': 1.7.4 9183 + react: 19.1.0 9184 + react-dom: 19.1.0(react@19.1.0) 9019 9185 9020 - '@floating-ui/utils@0.2.8': {} 9186 + '@floating-ui/utils@0.2.10': {} 9021 9187 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)': 9188 + '@gorhom/bottom-sheet@5.2.6(@types/react@19.1.17)(react-native-gesture-handler@2.28.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-reanimated@4.1.2(@babel/core@7.28.4)(react-native-worklets@0.6.0(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': 9023 9189 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) 9190 + '@gorhom/portal': 1.0.14(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 9025 9191 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) 9192 + react: 19.1.0 9193 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 9194 + react-native-gesture-handler: 2.28.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 9195 + react-native-reanimated: 4.1.2(@babel/core@7.28.4)(react-native-worklets@0.6.0(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 9030 9196 optionalDependencies: 9031 - '@types/react': 19.0.14 9197 + '@types/react': 19.1.17 9032 9198 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)': 9199 + '@gorhom/portal@1.0.14(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': 9034 9200 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) 9201 + nanoid: 3.3.11 9202 + react: 19.1.0 9203 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 9038 9204 9039 9205 '@humanwhocodes/config-array@0.13.0': 9040 9206 dependencies: 9041 9207 '@humanwhocodes/object-schema': 2.0.3 9042 - debug: 4.4.0 9208 + debug: 4.4.3 9043 9209 minimatch: 3.1.2 9044 9210 transitivePeerDependencies: 9045 9211 - supports-color ··· 9048 9214 9049 9215 '@humanwhocodes/object-schema@2.0.3': {} 9050 9216 9051 - '@ianvs/prettier-plugin-sort-imports@4.5.1(prettier@3.5.3)': 9217 + '@ianvs/prettier-plugin-sort-imports@4.7.0(prettier@3.6.2)': 9052 9218 dependencies: 9053 9219 '@babel/generator': 7.26.3 9054 9220 '@babel/parser': 7.26.3 9055 9221 '@babel/traverse': 7.26.4 9056 9222 '@babel/types': 7.26.3 9057 - prettier: 3.5.3 9223 + prettier: 3.6.2 9058 9224 semver: 7.6.3 9059 9225 transitivePeerDependencies: 9060 9226 - supports-color ··· 9064 9230 cborg: 1.10.2 9065 9231 multiformats: 9.9.0 9066 9232 9233 + '@isaacs/balanced-match@4.0.1': {} 9234 + 9235 + '@isaacs/brace-expansion@5.0.0': 9236 + dependencies: 9237 + '@isaacs/balanced-match': 4.0.1 9238 + 9067 9239 '@isaacs/cliui@8.0.2': 9068 9240 dependencies: 9069 9241 string-width: 5.1.2 9070 9242 string-width-cjs: string-width@4.2.3 9071 - strip-ansi: 7.1.0 9243 + strip-ansi: 7.1.2 9072 9244 strip-ansi-cjs: strip-ansi@6.0.1 9073 9245 wrap-ansi: 8.1.0 9074 9246 wrap-ansi-cjs: wrap-ansi@7.0.0 ··· 9092 9264 '@jest/console@29.7.0': 9093 9265 dependencies: 9094 9266 '@jest/types': 29.6.3 9095 - '@types/node': 22.10.2 9267 + '@types/node': 22.18.8 9096 9268 chalk: 4.1.2 9097 9269 jest-message-util: 29.7.0 9098 9270 jest-util: 29.7.0 ··· 9101 9273 '@jest/console@30.2.0': 9102 9274 dependencies: 9103 9275 '@jest/types': 30.2.0 9104 - '@types/node': 22.10.2 9276 + '@types/node': 22.18.8 9105 9277 chalk: 4.1.2 9106 9278 jest-message-util: 30.2.0 9107 9279 jest-util: 30.2.0 9108 9280 slash: 3.0.0 9109 9281 9110 - '@jest/core@30.2.0(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3))': 9282 + '@jest/core@29.7.0(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3))': 9283 + dependencies: 9284 + '@jest/console': 29.7.0 9285 + '@jest/reporters': 29.7.0 9286 + '@jest/test-result': 29.7.0 9287 + '@jest/transform': 29.7.0 9288 + '@jest/types': 29.6.3 9289 + '@types/node': 22.18.8 9290 + ansi-escapes: 4.3.2 9291 + chalk: 4.1.2 9292 + ci-info: 3.9.0 9293 + exit: 0.1.2 9294 + graceful-fs: 4.2.11 9295 + jest-changed-files: 29.7.0 9296 + jest-config: 29.7.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3)) 9297 + jest-haste-map: 29.7.0 9298 + jest-message-util: 29.7.0 9299 + jest-regex-util: 29.6.3 9300 + jest-resolve: 29.7.0 9301 + jest-resolve-dependencies: 29.7.0 9302 + jest-runner: 29.7.0 9303 + jest-runtime: 29.7.0 9304 + jest-snapshot: 29.7.0 9305 + jest-util: 29.7.0 9306 + jest-validate: 29.7.0 9307 + jest-watcher: 29.7.0 9308 + micromatch: 4.0.8 9309 + pretty-format: 29.7.0 9310 + slash: 3.0.0 9311 + strip-ansi: 6.0.1 9312 + transitivePeerDependencies: 9313 + - babel-plugin-macros 9314 + - supports-color 9315 + - ts-node 9316 + 9317 + '@jest/core@30.2.0(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3))': 9111 9318 dependencies: 9112 9319 '@jest/console': 30.2.0 9113 9320 '@jest/pattern': 30.0.1 ··· 9115 9322 '@jest/test-result': 30.2.0 9116 9323 '@jest/transform': 30.2.0 9117 9324 '@jest/types': 30.2.0 9118 - '@types/node': 22.10.2 9325 + '@types/node': 22.18.8 9119 9326 ansi-escapes: 4.3.2 9120 9327 chalk: 4.1.2 9121 9328 ci-info: 4.3.0 9122 9329 exit-x: 0.2.2 9123 9330 graceful-fs: 4.2.11 9124 9331 jest-changed-files: 30.2.0 9125 - jest-config: 30.2.0(@types/node@22.10.2)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)) 9332 + jest-config: 30.2.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3)) 9126 9333 jest-haste-map: 30.2.0 9127 9334 jest-message-util: 30.2.0 9128 9335 jest-regex-util: 30.0.1 ··· 9153 9360 dependencies: 9154 9361 '@jest/fake-timers': 29.7.0 9155 9362 '@jest/types': 29.6.3 9156 - '@types/node': 22.10.2 9363 + '@types/node': 22.18.8 9157 9364 jest-mock: 29.7.0 9158 9365 9159 9366 '@jest/environment@30.2.0': 9160 9367 dependencies: 9161 9368 '@jest/fake-timers': 30.2.0 9162 9369 '@jest/types': 30.2.0 9163 - '@types/node': 22.10.2 9370 + '@types/node': 22.18.8 9164 9371 jest-mock: 30.2.0 9165 9372 9166 9373 '@jest/expect-utils@29.7.0': ··· 9189 9396 dependencies: 9190 9397 '@jest/types': 29.6.3 9191 9398 '@sinonjs/fake-timers': 10.3.0 9192 - '@types/node': 22.10.2 9399 + '@types/node': 22.18.8 9193 9400 jest-message-util: 29.7.0 9194 9401 jest-mock: 29.7.0 9195 9402 jest-util: 29.7.0 ··· 9198 9405 dependencies: 9199 9406 '@jest/types': 30.2.0 9200 9407 '@sinonjs/fake-timers': 13.0.5 9201 - '@types/node': 22.10.2 9408 + '@types/node': 22.18.8 9202 9409 jest-message-util: 30.2.0 9203 9410 jest-mock: 30.2.0 9204 9411 jest-util: 30.2.0 ··· 9225 9432 9226 9433 '@jest/pattern@30.0.1': 9227 9434 dependencies: 9228 - '@types/node': 22.10.2 9435 + '@types/node': 22.18.8 9229 9436 jest-regex-util: 30.0.1 9230 9437 9438 + '@jest/reporters@29.7.0': 9439 + dependencies: 9440 + '@bcoe/v8-coverage': 0.2.3 9441 + '@jest/console': 29.7.0 9442 + '@jest/test-result': 29.7.0 9443 + '@jest/transform': 29.7.0 9444 + '@jest/types': 29.6.3 9445 + '@jridgewell/trace-mapping': 0.3.31 9446 + '@types/node': 22.18.8 9447 + chalk: 4.1.2 9448 + collect-v8-coverage: 1.0.2 9449 + exit: 0.1.2 9450 + glob: 7.2.3 9451 + graceful-fs: 4.2.11 9452 + istanbul-lib-coverage: 3.2.2 9453 + istanbul-lib-instrument: 6.0.3 9454 + istanbul-lib-report: 3.0.1 9455 + istanbul-lib-source-maps: 4.0.1 9456 + istanbul-reports: 3.2.0 9457 + jest-message-util: 29.7.0 9458 + jest-util: 29.7.0 9459 + jest-worker: 29.7.0 9460 + slash: 3.0.0 9461 + string-length: 4.0.2 9462 + strip-ansi: 6.0.1 9463 + v8-to-istanbul: 9.3.0 9464 + transitivePeerDependencies: 9465 + - supports-color 9466 + 9231 9467 '@jest/reporters@30.2.0': 9232 9468 dependencies: 9233 9469 '@bcoe/v8-coverage': 0.2.3 ··· 9235 9471 '@jest/test-result': 30.2.0 9236 9472 '@jest/transform': 30.2.0 9237 9473 '@jest/types': 30.2.0 9238 - '@jridgewell/trace-mapping': 0.3.25 9239 - '@types/node': 22.10.2 9474 + '@jridgewell/trace-mapping': 0.3.31 9475 + '@types/node': 22.18.8 9240 9476 chalk: 4.1.2 9241 9477 collect-v8-coverage: 1.0.2 9242 9478 exit-x: 0.2.2 ··· 9271 9507 graceful-fs: 4.2.11 9272 9508 natural-compare: 1.4.0 9273 9509 9510 + '@jest/source-map@29.6.3': 9511 + dependencies: 9512 + '@jridgewell/trace-mapping': 0.3.31 9513 + callsites: 3.1.0 9514 + graceful-fs: 4.2.11 9515 + 9274 9516 '@jest/source-map@30.0.1': 9275 9517 dependencies: 9276 - '@jridgewell/trace-mapping': 0.3.25 9518 + '@jridgewell/trace-mapping': 0.3.31 9277 9519 callsites: 3.1.0 9278 9520 graceful-fs: 4.2.11 9279 9521 ··· 9290 9532 '@jest/types': 30.2.0 9291 9533 '@types/istanbul-lib-coverage': 2.0.6 9292 9534 collect-v8-coverage: 1.0.2 9535 + 9536 + '@jest/test-sequencer@29.7.0': 9537 + dependencies: 9538 + '@jest/test-result': 29.7.0 9539 + graceful-fs: 4.2.11 9540 + jest-haste-map: 29.7.0 9541 + slash: 3.0.0 9293 9542 9294 9543 '@jest/test-sequencer@30.2.0': 9295 9544 dependencies: ··· 9322 9571 dependencies: 9323 9572 '@babel/core': 7.28.4 9324 9573 '@jest/types': 30.2.0 9325 - '@jridgewell/trace-mapping': 0.3.25 9574 + '@jridgewell/trace-mapping': 0.3.31 9326 9575 babel-plugin-istanbul: 7.0.1 9327 9576 chalk: 4.1.2 9328 9577 convert-source-map: 2.0.0 ··· 9343 9592 '@jest/schemas': 29.6.3 9344 9593 '@types/istanbul-lib-coverage': 2.0.6 9345 9594 '@types/istanbul-reports': 3.0.4 9346 - '@types/node': 22.10.2 9595 + '@types/node': 22.18.8 9347 9596 '@types/yargs': 17.0.33 9348 9597 chalk: 4.1.2 9349 9598 ··· 9353 9602 '@jest/schemas': 30.0.5 9354 9603 '@types/istanbul-lib-coverage': 2.0.6 9355 9604 '@types/istanbul-reports': 3.0.4 9356 - '@types/node': 22.10.2 9605 + '@types/node': 22.18.8 9357 9606 '@types/yargs': 17.0.33 9358 9607 chalk: 4.1.2 9359 9608 9360 9609 '@jridgewell/gen-mapping@0.3.13': 9361 9610 dependencies: 9362 - '@jridgewell/sourcemap-codec': 1.5.0 9611 + '@jridgewell/sourcemap-codec': 1.5.5 9363 9612 '@jridgewell/trace-mapping': 0.3.31 9364 9613 9365 9614 '@jridgewell/gen-mapping@0.3.5': ··· 9377 9626 9378 9627 '@jridgewell/set-array@1.2.1': {} 9379 9628 9629 + '@jridgewell/source-map@0.3.11': 9630 + dependencies: 9631 + '@jridgewell/gen-mapping': 0.3.13 9632 + '@jridgewell/trace-mapping': 0.3.31 9633 + 9380 9634 '@jridgewell/source-map@0.3.6': 9381 9635 dependencies: 9382 9636 '@jridgewell/gen-mapping': 0.3.13 ··· 9384 9638 9385 9639 '@jridgewell/sourcemap-codec@1.5.0': {} 9386 9640 9641 + '@jridgewell/sourcemap-codec@1.5.5': {} 9642 + 9387 9643 '@jridgewell/trace-mapping@0.3.25': 9388 9644 dependencies: 9389 9645 '@jridgewell/resolve-uri': 3.1.2 ··· 9392 9648 '@jridgewell/trace-mapping@0.3.31': 9393 9649 dependencies: 9394 9650 '@jridgewell/resolve-uri': 3.1.2 9395 - '@jridgewell/sourcemap-codec': 1.5.0 9651 + '@jridgewell/sourcemap-codec': 1.5.5 9396 9652 9397 9653 '@jridgewell/trace-mapping@0.3.9': 9398 9654 dependencies: ··· 9406 9662 '@tybys/wasm-util': 0.10.1 9407 9663 optional: true 9408 9664 9409 - '@noble/curves@1.8.1': 9665 + '@noble/curves@1.9.7': 9410 9666 dependencies: 9411 - '@noble/hashes': 1.7.1 9412 - 9413 - '@noble/hashes@1.6.1': {} 9667 + '@noble/hashes': 1.8.0 9414 9668 9415 - '@noble/hashes@1.7.1': {} 9669 + '@noble/hashes@1.8.0': {} 9416 9670 9417 9671 '@nodelib/fs.scandir@2.1.5': 9418 9672 dependencies: ··· 9424 9678 '@nodelib/fs.walk@1.2.8': 9425 9679 dependencies: 9426 9680 '@nodelib/fs.scandir': 2.1.5 9427 - fastq: 1.17.1 9681 + fastq: 1.19.1 9428 9682 9429 9683 '@nolyfill/is-core-module@1.0.39': {} 9430 9684 ··· 9433 9687 9434 9688 '@pkgr/core@0.2.9': {} 9435 9689 9436 - '@pmmmwh/react-refresh-webpack-plugin@0.5.15(react-refresh@0.16.0)(type-fest@0.21.3)(webpack@5.97.1)': 9690 + '@pmmmwh/react-refresh-webpack-plugin@0.5.17(react-refresh@0.16.0)(type-fest@0.21.3)(webpack@5.97.1)': 9437 9691 dependencies: 9438 9692 ansi-html: 0.0.9 9439 9693 core-js-pure: 3.39.0 ··· 9441 9695 html-entities: 2.5.2 9442 9696 loader-utils: 2.0.4 9443 9697 react-refresh: 0.16.0 9444 - schema-utils: 4.3.0 9698 + schema-utils: 4.3.3 9445 9699 source-map: 0.7.4 9446 9700 webpack: 5.97.1 9447 9701 optionalDependencies: 9448 9702 type-fest: 0.21.3 9449 9703 9450 - '@radix-ui/primitive@1.1.1': {} 9704 + '@radix-ui/primitive@1.1.3': {} 9705 + 9706 + '@radix-ui/react-arrow@1.1.7(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 9707 + dependencies: 9708 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 9709 + react: 19.1.0 9710 + react-dom: 19.1.0(react@19.1.0) 9711 + optionalDependencies: 9712 + '@types/react': 19.1.17 9713 + '@types/react-dom': 19.1.11(@types/react@19.1.17) 9714 + 9715 + '@radix-ui/react-collection@1.1.7(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 9716 + dependencies: 9717 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.17)(react@19.1.0) 9718 + '@radix-ui/react-context': 1.1.2(@types/react@19.1.17)(react@19.1.0) 9719 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 9720 + '@radix-ui/react-slot': 1.2.3(@types/react@19.1.17)(react@19.1.0) 9721 + react: 19.1.0 9722 + react-dom: 19.1.0(react@19.1.0) 9723 + optionalDependencies: 9724 + '@types/react': 19.1.17 9725 + '@types/react-dom': 19.1.11(@types/react@19.1.17) 9726 + 9727 + '@radix-ui/react-collection@1.1.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': 9728 + dependencies: 9729 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.0)(react@19.2.0) 9730 + '@radix-ui/react-context': 1.1.2(@types/react@19.2.0)(react@19.2.0) 9731 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) 9732 + '@radix-ui/react-slot': 1.2.3(@types/react@19.2.0)(react@19.2.0) 9733 + react: 19.2.0 9734 + react-dom: 19.2.0(react@19.2.0) 9735 + optionalDependencies: 9736 + '@types/react': 19.2.0 9737 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 9738 + optional: true 9739 + 9740 + '@radix-ui/react-compose-refs@1.1.2(@types/react@19.1.17)(react@19.1.0)': 9741 + dependencies: 9742 + react: 19.1.0 9743 + optionalDependencies: 9744 + '@types/react': 19.1.17 9745 + 9746 + '@radix-ui/react-compose-refs@1.1.2(@types/react@19.2.0)(react@19.2.0)': 9747 + dependencies: 9748 + react: 19.2.0 9749 + optionalDependencies: 9750 + '@types/react': 19.2.0 9751 + optional: true 9752 + 9753 + '@radix-ui/react-context@1.1.2(@types/react@19.1.17)(react@19.1.0)': 9754 + dependencies: 9755 + react: 19.1.0 9756 + optionalDependencies: 9757 + '@types/react': 19.1.17 9758 + 9759 + '@radix-ui/react-context@1.1.2(@types/react@19.2.0)(react@19.2.0)': 9760 + dependencies: 9761 + react: 19.2.0 9762 + optionalDependencies: 9763 + '@types/react': 19.2.0 9764 + optional: true 9765 + 9766 + '@radix-ui/react-dialog@1.1.15(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 9767 + dependencies: 9768 + '@radix-ui/primitive': 1.1.3 9769 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.17)(react@19.1.0) 9770 + '@radix-ui/react-context': 1.1.2(@types/react@19.1.17)(react@19.1.0) 9771 + '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 9772 + '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.1.17)(react@19.1.0) 9773 + '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 9774 + '@radix-ui/react-id': 1.1.1(@types/react@19.1.17)(react@19.1.0) 9775 + '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 9776 + '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 9777 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 9778 + '@radix-ui/react-slot': 1.2.3(@types/react@19.1.17)(react@19.1.0) 9779 + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.17)(react@19.1.0) 9780 + aria-hidden: 1.2.4 9781 + react: 19.1.0 9782 + react-dom: 19.1.0(react@19.1.0) 9783 + react-remove-scroll: 2.7.1(@types/react@19.1.17)(react@19.1.0) 9784 + optionalDependencies: 9785 + '@types/react': 19.1.17 9786 + '@types/react-dom': 19.1.11(@types/react@19.1.17) 9787 + 9788 + '@radix-ui/react-dialog@1.1.15(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': 9789 + dependencies: 9790 + '@radix-ui/primitive': 1.1.3 9791 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.0)(react@19.2.0) 9792 + '@radix-ui/react-context': 1.1.2(@types/react@19.2.0)(react@19.2.0) 9793 + '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) 9794 + '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.2.0)(react@19.2.0) 9795 + '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) 9796 + '@radix-ui/react-id': 1.1.1(@types/react@19.2.0)(react@19.2.0) 9797 + '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) 9798 + '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) 9799 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) 9800 + '@radix-ui/react-slot': 1.2.3(@types/react@19.2.0)(react@19.2.0) 9801 + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.0)(react@19.2.0) 9802 + aria-hidden: 1.2.4 9803 + react: 19.2.0 9804 + react-dom: 19.2.0(react@19.2.0) 9805 + react-remove-scroll: 2.7.1(@types/react@19.2.0)(react@19.2.0) 9806 + optionalDependencies: 9807 + '@types/react': 19.2.0 9808 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 9809 + optional: true 9810 + 9811 + '@radix-ui/react-direction@1.1.1(@types/react@19.1.17)(react@19.1.0)': 9812 + dependencies: 9813 + react: 19.1.0 9814 + optionalDependencies: 9815 + '@types/react': 19.1.17 9816 + 9817 + '@radix-ui/react-direction@1.1.1(@types/react@19.2.0)(react@19.2.0)': 9818 + dependencies: 9819 + react: 19.2.0 9820 + optionalDependencies: 9821 + '@types/react': 19.2.0 9822 + optional: true 9823 + 9824 + '@radix-ui/react-dismissable-layer@1.1.11(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 9825 + dependencies: 9826 + '@radix-ui/primitive': 1.1.3 9827 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.17)(react@19.1.0) 9828 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 9829 + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.17)(react@19.1.0) 9830 + '@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.1.17)(react@19.1.0) 9831 + react: 19.1.0 9832 + react-dom: 19.1.0(react@19.1.0) 9833 + optionalDependencies: 9834 + '@types/react': 19.1.17 9835 + '@types/react-dom': 19.1.11(@types/react@19.1.17) 9836 + 9837 + '@radix-ui/react-dismissable-layer@1.1.11(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': 9838 + dependencies: 9839 + '@radix-ui/primitive': 1.1.3 9840 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.0)(react@19.2.0) 9841 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) 9842 + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.0)(react@19.2.0) 9843 + '@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.2.0)(react@19.2.0) 9844 + react: 19.2.0 9845 + react-dom: 19.2.0(react@19.2.0) 9846 + optionalDependencies: 9847 + '@types/react': 19.2.0 9848 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 9849 + optional: true 9850 + 9851 + '@radix-ui/react-focus-guards@1.1.3(@types/react@19.1.17)(react@19.1.0)': 9852 + dependencies: 9853 + react: 19.1.0 9854 + optionalDependencies: 9855 + '@types/react': 19.1.17 9856 + 9857 + '@radix-ui/react-focus-guards@1.1.3(@types/react@19.2.0)(react@19.2.0)': 9858 + dependencies: 9859 + react: 19.2.0 9860 + optionalDependencies: 9861 + '@types/react': 19.2.0 9862 + optional: true 9863 + 9864 + '@radix-ui/react-focus-scope@1.1.7(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 9865 + dependencies: 9866 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.17)(react@19.1.0) 9867 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 9868 + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.17)(react@19.1.0) 9869 + react: 19.1.0 9870 + react-dom: 19.1.0(react@19.1.0) 9871 + optionalDependencies: 9872 + '@types/react': 19.1.17 9873 + '@types/react-dom': 19.1.11(@types/react@19.1.17) 9874 + 9875 + '@radix-ui/react-focus-scope@1.1.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': 9876 + dependencies: 9877 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.0)(react@19.2.0) 9878 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) 9879 + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.0)(react@19.2.0) 9880 + react: 19.2.0 9881 + react-dom: 19.2.0(react@19.2.0) 9882 + optionalDependencies: 9883 + '@types/react': 19.2.0 9884 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 9885 + optional: true 9886 + 9887 + '@radix-ui/react-hover-card@1.1.15(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 9888 + dependencies: 9889 + '@radix-ui/primitive': 1.1.3 9890 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.17)(react@19.1.0) 9891 + '@radix-ui/react-context': 1.1.2(@types/react@19.1.17)(react@19.1.0) 9892 + '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 9893 + '@radix-ui/react-popper': 1.2.8(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 9894 + '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 9895 + '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 9896 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 9897 + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.17)(react@19.1.0) 9898 + react: 19.1.0 9899 + react-dom: 19.1.0(react@19.1.0) 9900 + optionalDependencies: 9901 + '@types/react': 19.1.17 9902 + '@types/react-dom': 19.1.11(@types/react@19.1.17) 9451 9903 9452 - '@radix-ui/react-arrow@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)': 9904 + '@radix-ui/react-id@1.1.1(@types/react@19.1.17)(react@19.1.0)': 9453 9905 dependencies: 9454 - '@radix-ui/react-primitive': 2.0.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) 9455 - react: 19.0.0 9456 - react-dom: 19.0.0(react@19.0.0) 9906 + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.17)(react@19.1.0) 9907 + react: 19.1.0 9457 9908 optionalDependencies: 9458 - '@types/react': 19.0.14 9459 - '@types/react-dom': 18.3.1 9909 + '@types/react': 19.1.17 9460 9910 9461 - '@radix-ui/react-compose-refs@1.1.1(@types/react@19.0.14)(react@19.0.0)': 9911 + '@radix-ui/react-id@1.1.1(@types/react@19.2.0)(react@19.2.0)': 9462 9912 dependencies: 9463 - react: 19.0.0 9913 + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.0)(react@19.2.0) 9914 + react: 19.2.0 9464 9915 optionalDependencies: 9465 - '@types/react': 19.0.14 9916 + '@types/react': 19.2.0 9917 + optional: true 9466 9918 9467 - '@radix-ui/react-compose-refs@1.1.2(@types/react@19.0.14)(react@19.0.0)': 9919 + '@radix-ui/react-popover@1.1.15(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 9468 9920 dependencies: 9469 - react: 19.0.0 9921 + '@radix-ui/primitive': 1.1.3 9922 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.17)(react@19.1.0) 9923 + '@radix-ui/react-context': 1.1.2(@types/react@19.1.17)(react@19.1.0) 9924 + '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 9925 + '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.1.17)(react@19.1.0) 9926 + '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 9927 + '@radix-ui/react-id': 1.1.1(@types/react@19.1.17)(react@19.1.0) 9928 + '@radix-ui/react-popper': 1.2.8(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 9929 + '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 9930 + '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 9931 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 9932 + '@radix-ui/react-slot': 1.2.3(@types/react@19.1.17)(react@19.1.0) 9933 + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.17)(react@19.1.0) 9934 + aria-hidden: 1.2.6 9935 + react: 19.1.0 9936 + react-dom: 19.1.0(react@19.1.0) 9937 + react-remove-scroll: 2.7.1(@types/react@19.1.17)(react@19.1.0) 9470 9938 optionalDependencies: 9471 - '@types/react': 19.0.14 9939 + '@types/react': 19.1.17 9940 + '@types/react-dom': 19.1.11(@types/react@19.1.17) 9472 9941 9473 - '@radix-ui/react-context@1.1.1(@types/react@19.0.14)(react@19.0.0)': 9942 + '@radix-ui/react-popper@1.2.8(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 9474 9943 dependencies: 9475 - react: 19.0.0 9944 + '@floating-ui/react-dom': 2.1.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 9945 + '@radix-ui/react-arrow': 1.1.7(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 9946 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.17)(react@19.1.0) 9947 + '@radix-ui/react-context': 1.1.2(@types/react@19.1.17)(react@19.1.0) 9948 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 9949 + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.17)(react@19.1.0) 9950 + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.17)(react@19.1.0) 9951 + '@radix-ui/react-use-rect': 1.1.1(@types/react@19.1.17)(react@19.1.0) 9952 + '@radix-ui/react-use-size': 1.1.1(@types/react@19.1.17)(react@19.1.0) 9953 + '@radix-ui/rect': 1.1.1 9954 + react: 19.1.0 9955 + react-dom: 19.1.0(react@19.1.0) 9476 9956 optionalDependencies: 9477 - '@types/react': 19.0.14 9957 + '@types/react': 19.1.17 9958 + '@types/react-dom': 19.1.11(@types/react@19.1.17) 9478 9959 9479 - '@radix-ui/react-dismissable-layer@1.1.3(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 9960 + '@radix-ui/react-portal@1.1.9(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 9480 9961 dependencies: 9481 - '@radix-ui/primitive': 1.1.1 9482 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.14)(react@19.0.0) 9483 - '@radix-ui/react-primitive': 2.0.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) 9484 - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.14)(react@19.0.0) 9485 - '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@19.0.14)(react@19.0.0) 9486 - react: 19.0.0 9487 - react-dom: 19.0.0(react@19.0.0) 9962 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 9963 + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.17)(react@19.1.0) 9964 + react: 19.1.0 9965 + react-dom: 19.1.0(react@19.1.0) 9488 9966 optionalDependencies: 9489 - '@types/react': 19.0.14 9490 - '@types/react-dom': 18.3.1 9967 + '@types/react': 19.1.17 9968 + '@types/react-dom': 19.1.11(@types/react@19.1.17) 9491 9969 9492 - '@radix-ui/react-focus-guards@1.1.1(@types/react@19.0.14)(react@19.0.0)': 9970 + '@radix-ui/react-portal@1.1.9(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': 9493 9971 dependencies: 9494 - react: 19.0.0 9972 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) 9973 + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.0)(react@19.2.0) 9974 + react: 19.2.0 9975 + react-dom: 19.2.0(react@19.2.0) 9495 9976 optionalDependencies: 9496 - '@types/react': 19.0.14 9977 + '@types/react': 19.2.0 9978 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 9979 + optional: true 9497 9980 9498 - '@radix-ui/react-focus-scope@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)': 9981 + '@radix-ui/react-presence@1.1.5(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 9499 9982 dependencies: 9500 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.14)(react@19.0.0) 9501 - '@radix-ui/react-primitive': 2.0.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) 9502 - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.14)(react@19.0.0) 9503 - react: 19.0.0 9504 - react-dom: 19.0.0(react@19.0.0) 9983 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.17)(react@19.1.0) 9984 + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.17)(react@19.1.0) 9985 + react: 19.1.0 9986 + react-dom: 19.1.0(react@19.1.0) 9505 9987 optionalDependencies: 9506 - '@types/react': 19.0.14 9507 - '@types/react-dom': 18.3.1 9988 + '@types/react': 19.1.17 9989 + '@types/react-dom': 19.1.11(@types/react@19.1.17) 9508 9990 9509 - '@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)': 9991 + '@radix-ui/react-presence@1.1.5(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': 9510 9992 dependencies: 9511 - '@radix-ui/primitive': 1.1.1 9512 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.14)(react@19.0.0) 9513 - '@radix-ui/react-context': 1.1.1(@types/react@19.0.14)(react@19.0.0) 9514 - '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 9515 - '@radix-ui/react-popper': 1.2.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) 9516 - '@radix-ui/react-portal': 1.1.3(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 9517 - '@radix-ui/react-presence': 1.1.2(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 9518 - '@radix-ui/react-primitive': 2.0.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) 9519 - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.14)(react@19.0.0) 9520 - react: 19.0.0 9521 - react-dom: 19.0.0(react@19.0.0) 9993 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.0)(react@19.2.0) 9994 + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.0)(react@19.2.0) 9995 + react: 19.2.0 9996 + react-dom: 19.2.0(react@19.2.0) 9997 + optionalDependencies: 9998 + '@types/react': 19.2.0 9999 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 10000 + optional: true 10001 + 10002 + '@radix-ui/react-primitive@2.1.3(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 10003 + dependencies: 10004 + '@radix-ui/react-slot': 1.2.3(@types/react@19.1.17)(react@19.1.0) 10005 + react: 19.1.0 10006 + react-dom: 19.1.0(react@19.1.0) 10007 + optionalDependencies: 10008 + '@types/react': 19.1.17 10009 + '@types/react-dom': 19.1.11(@types/react@19.1.17) 10010 + 10011 + '@radix-ui/react-primitive@2.1.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': 10012 + dependencies: 10013 + '@radix-ui/react-slot': 1.2.3(@types/react@19.2.0)(react@19.2.0) 10014 + react: 19.2.0 10015 + react-dom: 19.2.0(react@19.2.0) 10016 + optionalDependencies: 10017 + '@types/react': 19.2.0 10018 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 10019 + optional: true 10020 + 10021 + '@radix-ui/react-progress@1.1.7(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 10022 + dependencies: 10023 + '@radix-ui/react-context': 1.1.2(@types/react@19.1.17)(react@19.1.0) 10024 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 10025 + react: 19.1.0 10026 + react-dom: 19.1.0(react@19.1.0) 10027 + optionalDependencies: 10028 + '@types/react': 19.1.17 10029 + '@types/react-dom': 19.1.11(@types/react@19.1.17) 10030 + 10031 + '@radix-ui/react-roving-focus@1.1.11(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 10032 + dependencies: 10033 + '@radix-ui/primitive': 1.1.3 10034 + '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 10035 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.17)(react@19.1.0) 10036 + '@radix-ui/react-context': 1.1.2(@types/react@19.1.17)(react@19.1.0) 10037 + '@radix-ui/react-direction': 1.1.1(@types/react@19.1.17)(react@19.1.0) 10038 + '@radix-ui/react-id': 1.1.1(@types/react@19.1.17)(react@19.1.0) 10039 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 10040 + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.17)(react@19.1.0) 10041 + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.17)(react@19.1.0) 10042 + react: 19.1.0 10043 + react-dom: 19.1.0(react@19.1.0) 10044 + optionalDependencies: 10045 + '@types/react': 19.1.17 10046 + '@types/react-dom': 19.1.11(@types/react@19.1.17) 10047 + 10048 + '@radix-ui/react-roving-focus@1.1.11(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': 10049 + dependencies: 10050 + '@radix-ui/primitive': 1.1.3 10051 + '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) 10052 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.0)(react@19.2.0) 10053 + '@radix-ui/react-context': 1.1.2(@types/react@19.2.0)(react@19.2.0) 10054 + '@radix-ui/react-direction': 1.1.1(@types/react@19.2.0)(react@19.2.0) 10055 + '@radix-ui/react-id': 1.1.1(@types/react@19.2.0)(react@19.2.0) 10056 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) 10057 + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.0)(react@19.2.0) 10058 + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.0)(react@19.2.0) 10059 + react: 19.2.0 10060 + react-dom: 19.2.0(react@19.2.0) 9522 10061 optionalDependencies: 9523 - '@types/react': 19.0.14 9524 - '@types/react-dom': 18.3.1 10062 + '@types/react': 19.2.0 10063 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 10064 + optional: true 9525 10065 9526 - '@radix-ui/react-id@1.1.0(@types/react@19.0.14)(react@19.0.0)': 10066 + '@radix-ui/react-slot@1.2.0(@types/react@19.1.17)(react@19.1.0)': 9527 10067 dependencies: 9528 - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.14)(react@19.0.0) 9529 - react: 19.0.0 10068 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.17)(react@19.1.0) 10069 + react: 19.1.0 9530 10070 optionalDependencies: 9531 - '@types/react': 19.0.14 10071 + '@types/react': 19.1.17 9532 10072 9533 - '@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)': 10073 + '@radix-ui/react-slot@1.2.0(@types/react@19.2.0)(react@19.2.0)': 9534 10074 dependencies: 9535 - '@radix-ui/primitive': 1.1.1 9536 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.14)(react@19.0.0) 9537 - '@radix-ui/react-context': 1.1.1(@types/react@19.0.14)(react@19.0.0) 9538 - '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 9539 - '@radix-ui/react-focus-guards': 1.1.1(@types/react@19.0.14)(react@19.0.0) 9540 - '@radix-ui/react-focus-scope': 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) 9541 - '@radix-ui/react-id': 1.1.0(@types/react@19.0.14)(react@19.0.0) 9542 - '@radix-ui/react-popper': 1.2.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) 9543 - '@radix-ui/react-portal': 1.1.3(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 9544 - '@radix-ui/react-presence': 1.1.2(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 9545 - '@radix-ui/react-primitive': 2.0.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) 9546 - '@radix-ui/react-slot': 1.1.1(@types/react@19.0.14)(react@19.0.0) 9547 - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.14)(react@19.0.0) 9548 - aria-hidden: 1.2.4 9549 - react: 19.0.0 9550 - react-dom: 19.0.0(react@19.0.0) 9551 - react-remove-scroll: 2.6.2(@types/react@19.0.14)(react@19.0.0) 10075 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.0)(react@19.2.0) 10076 + react: 19.2.0 9552 10077 optionalDependencies: 9553 - '@types/react': 19.0.14 9554 - '@types/react-dom': 18.3.1 10078 + '@types/react': 19.2.0 10079 + optional: true 9555 10080 9556 - '@radix-ui/react-popper@1.2.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)': 10081 + '@radix-ui/react-slot@1.2.3(@types/react@19.1.17)(react@19.1.0)': 9557 10082 dependencies: 9558 - '@floating-ui/react-dom': 2.1.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 9559 - '@radix-ui/react-arrow': 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) 9560 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.14)(react@19.0.0) 9561 - '@radix-ui/react-context': 1.1.1(@types/react@19.0.14)(react@19.0.0) 9562 - '@radix-ui/react-primitive': 2.0.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) 9563 - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.14)(react@19.0.0) 9564 - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.14)(react@19.0.0) 9565 - '@radix-ui/react-use-rect': 1.1.0(@types/react@19.0.14)(react@19.0.0) 9566 - '@radix-ui/react-use-size': 1.1.0(@types/react@19.0.14)(react@19.0.0) 9567 - '@radix-ui/rect': 1.1.0 9568 - react: 19.0.0 9569 - react-dom: 19.0.0(react@19.0.0) 10083 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.17)(react@19.1.0) 10084 + react: 19.1.0 9570 10085 optionalDependencies: 9571 - '@types/react': 19.0.14 9572 - '@types/react-dom': 18.3.1 10086 + '@types/react': 19.1.17 9573 10087 9574 - '@radix-ui/react-portal@1.1.3(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 10088 + '@radix-ui/react-slot@1.2.3(@types/react@19.2.0)(react@19.2.0)': 9575 10089 dependencies: 9576 - '@radix-ui/react-primitive': 2.0.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) 9577 - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.14)(react@19.0.0) 9578 - react: 19.0.0 9579 - react-dom: 19.0.0(react@19.0.0) 10090 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.0)(react@19.2.0) 10091 + react: 19.2.0 9580 10092 optionalDependencies: 9581 - '@types/react': 19.0.14 9582 - '@types/react-dom': 18.3.1 10093 + '@types/react': 19.2.0 10094 + optional: true 9583 10095 9584 - '@radix-ui/react-presence@1.1.2(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 10096 + '@radix-ui/react-tabs@1.1.13(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 9585 10097 dependencies: 9586 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.14)(react@19.0.0) 9587 - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.14)(react@19.0.0) 9588 - react: 19.0.0 9589 - react-dom: 19.0.0(react@19.0.0) 10098 + '@radix-ui/primitive': 1.1.3 10099 + '@radix-ui/react-context': 1.1.2(@types/react@19.1.17)(react@19.1.0) 10100 + '@radix-ui/react-direction': 1.1.1(@types/react@19.1.17)(react@19.1.0) 10101 + '@radix-ui/react-id': 1.1.1(@types/react@19.1.17)(react@19.1.0) 10102 + '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 10103 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 10104 + '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 10105 + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.17)(react@19.1.0) 10106 + react: 19.1.0 10107 + react-dom: 19.1.0(react@19.1.0) 9590 10108 optionalDependencies: 9591 - '@types/react': 19.0.14 9592 - '@types/react-dom': 18.3.1 10109 + '@types/react': 19.1.17 10110 + '@types/react-dom': 19.1.11(@types/react@19.1.17) 9593 10111 9594 - '@radix-ui/react-primitive@2.0.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)': 10112 + '@radix-ui/react-tabs@1.1.13(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': 9595 10113 dependencies: 9596 - '@radix-ui/react-slot': 1.1.1(@types/react@19.0.14)(react@19.0.0) 9597 - react: 19.0.0 9598 - react-dom: 19.0.0(react@19.0.0) 10114 + '@radix-ui/primitive': 1.1.3 10115 + '@radix-ui/react-context': 1.1.2(@types/react@19.2.0)(react@19.2.0) 10116 + '@radix-ui/react-direction': 1.1.1(@types/react@19.2.0)(react@19.2.0) 10117 + '@radix-ui/react-id': 1.1.1(@types/react@19.2.0)(react@19.2.0) 10118 + '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) 10119 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) 10120 + '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) 10121 + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.0)(react@19.2.0) 10122 + react: 19.2.0 10123 + react-dom: 19.2.0(react@19.2.0) 9599 10124 optionalDependencies: 9600 - '@types/react': 19.0.14 9601 - '@types/react-dom': 18.3.1 10125 + '@types/react': 19.2.0 10126 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 10127 + optional: true 9602 10128 9603 - '@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)': 10129 + '@radix-ui/react-tooltip@1.2.8(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 9604 10130 dependencies: 9605 - '@radix-ui/react-context': 1.1.1(@types/react@19.0.14)(react@19.0.0) 9606 - '@radix-ui/react-primitive': 2.0.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) 9607 - react: 19.0.0 9608 - react-dom: 19.0.0(react@19.0.0) 10131 + '@radix-ui/primitive': 1.1.3 10132 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.17)(react@19.1.0) 10133 + '@radix-ui/react-context': 1.1.2(@types/react@19.1.17)(react@19.1.0) 10134 + '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 10135 + '@radix-ui/react-id': 1.1.1(@types/react@19.1.17)(react@19.1.0) 10136 + '@radix-ui/react-popper': 1.2.8(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 10137 + '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 10138 + '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 10139 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 10140 + '@radix-ui/react-slot': 1.2.3(@types/react@19.1.17)(react@19.1.0) 10141 + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.17)(react@19.1.0) 10142 + '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 10143 + react: 19.1.0 10144 + react-dom: 19.1.0(react@19.1.0) 9609 10145 optionalDependencies: 9610 - '@types/react': 19.0.14 9611 - '@types/react-dom': 18.3.1 10146 + '@types/react': 19.1.17 10147 + '@types/react-dom': 19.1.11(@types/react@19.1.17) 9612 10148 9613 - '@radix-ui/react-slot@1.1.1(@types/react@19.0.14)(react@19.0.0)': 10149 + '@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.1.17)(react@19.1.0)': 9614 10150 dependencies: 9615 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.14)(react@19.0.0) 9616 - react: 19.0.0 10151 + react: 19.1.0 9617 10152 optionalDependencies: 9618 - '@types/react': 19.0.14 10153 + '@types/react': 19.1.17 9619 10154 9620 - '@radix-ui/react-slot@1.2.0(@types/react@19.0.14)(react@19.0.0)': 10155 + '@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.2.0)(react@19.2.0)': 9621 10156 dependencies: 9622 - '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.0.14)(react@19.0.0) 9623 - react: 19.0.0 10157 + react: 19.2.0 9624 10158 optionalDependencies: 9625 - '@types/react': 19.0.14 10159 + '@types/react': 19.2.0 10160 + optional: true 9626 10161 9627 - '@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)': 10162 + '@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.1.17)(react@19.1.0)': 9628 10163 dependencies: 9629 - '@radix-ui/primitive': 1.1.1 9630 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.14)(react@19.0.0) 9631 - '@radix-ui/react-context': 1.1.1(@types/react@19.0.14)(react@19.0.0) 9632 - '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 9633 - '@radix-ui/react-id': 1.1.0(@types/react@19.0.14)(react@19.0.0) 9634 - '@radix-ui/react-popper': 1.2.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) 9635 - '@radix-ui/react-portal': 1.1.3(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 9636 - '@radix-ui/react-presence': 1.1.2(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 9637 - '@radix-ui/react-primitive': 2.0.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) 9638 - '@radix-ui/react-slot': 1.1.1(@types/react@19.0.14)(react@19.0.0) 9639 - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.14)(react@19.0.0) 9640 - '@radix-ui/react-visually-hidden': 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) 9641 - react: 19.0.0 9642 - react-dom: 19.0.0(react@19.0.0) 10164 + '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.1.17)(react@19.1.0) 10165 + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.17)(react@19.1.0) 10166 + react: 19.1.0 9643 10167 optionalDependencies: 9644 - '@types/react': 19.0.14 9645 - '@types/react-dom': 18.3.1 10168 + '@types/react': 19.1.17 9646 10169 9647 - '@radix-ui/react-use-callback-ref@1.1.0(@types/react@19.0.14)(react@19.0.0)': 10170 + '@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.2.0)(react@19.2.0)': 9648 10171 dependencies: 9649 - react: 19.0.0 10172 + '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.2.0)(react@19.2.0) 10173 + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.0)(react@19.2.0) 10174 + react: 19.2.0 9650 10175 optionalDependencies: 9651 - '@types/react': 19.0.14 10176 + '@types/react': 19.2.0 10177 + optional: true 9652 10178 9653 - '@radix-ui/react-use-controllable-state@1.1.0(@types/react@19.0.14)(react@19.0.0)': 10179 + '@radix-ui/react-use-effect-event@0.0.2(@types/react@19.1.17)(react@19.1.0)': 9654 10180 dependencies: 9655 - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.14)(react@19.0.0) 9656 - react: 19.0.0 10181 + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.17)(react@19.1.0) 10182 + react: 19.1.0 9657 10183 optionalDependencies: 9658 - '@types/react': 19.0.14 10184 + '@types/react': 19.1.17 9659 10185 9660 - '@radix-ui/react-use-escape-keydown@1.1.0(@types/react@19.0.14)(react@19.0.0)': 10186 + '@radix-ui/react-use-effect-event@0.0.2(@types/react@19.2.0)(react@19.2.0)': 9661 10187 dependencies: 9662 - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.14)(react@19.0.0) 9663 - react: 19.0.0 10188 + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.0)(react@19.2.0) 10189 + react: 19.2.0 9664 10190 optionalDependencies: 9665 - '@types/react': 19.0.14 10191 + '@types/react': 19.2.0 10192 + optional: true 9666 10193 9667 - '@radix-ui/react-use-layout-effect@1.1.0(@types/react@19.0.14)(react@19.0.0)': 10194 + '@radix-ui/react-use-escape-keydown@1.1.1(@types/react@19.1.17)(react@19.1.0)': 9668 10195 dependencies: 9669 - react: 19.0.0 10196 + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.17)(react@19.1.0) 10197 + react: 19.1.0 9670 10198 optionalDependencies: 9671 - '@types/react': 19.0.14 10199 + '@types/react': 19.1.17 9672 10200 9673 - '@radix-ui/react-use-rect@1.1.0(@types/react@19.0.14)(react@19.0.0)': 10201 + '@radix-ui/react-use-escape-keydown@1.1.1(@types/react@19.2.0)(react@19.2.0)': 9674 10202 dependencies: 9675 - '@radix-ui/rect': 1.1.0 9676 - react: 19.0.0 10203 + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.0)(react@19.2.0) 10204 + react: 19.2.0 9677 10205 optionalDependencies: 9678 - '@types/react': 19.0.14 10206 + '@types/react': 19.2.0 10207 + optional: true 9679 10208 9680 - '@radix-ui/react-use-size@1.1.0(@types/react@19.0.14)(react@19.0.0)': 10209 + '@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.1.17)(react@19.1.0)': 9681 10210 dependencies: 9682 - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.14)(react@19.0.0) 9683 - react: 19.0.0 10211 + react: 19.1.0 9684 10212 optionalDependencies: 9685 - '@types/react': 19.0.14 10213 + '@types/react': 19.1.17 9686 10214 9687 - '@radix-ui/react-visually-hidden@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)': 10215 + '@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.2.0)(react@19.2.0)': 9688 10216 dependencies: 9689 - '@radix-ui/react-primitive': 2.0.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) 9690 - react: 19.0.0 9691 - react-dom: 19.0.0(react@19.0.0) 10217 + react: 19.2.0 9692 10218 optionalDependencies: 9693 - '@types/react': 19.0.14 9694 - '@types/react-dom': 18.3.1 10219 + '@types/react': 19.2.0 10220 + optional: true 9695 10221 9696 - '@radix-ui/rect@1.1.0': {} 10222 + '@radix-ui/react-use-rect@1.1.1(@types/react@19.1.17)(react@19.1.0)': 10223 + dependencies: 10224 + '@radix-ui/rect': 1.1.1 10225 + react: 19.1.0 10226 + optionalDependencies: 10227 + '@types/react': 19.1.17 9697 10228 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))': 10229 + '@radix-ui/react-use-size@1.1.1(@types/react@19.1.17)(react@19.1.0)': 9699 10230 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) 10231 + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.17)(react@19.1.0) 10232 + react: 19.1.0 10233 + optionalDependencies: 10234 + '@types/react': 19.1.17 9702 10235 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)': 10236 + '@radix-ui/react-visually-hidden@1.2.3(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 9704 10237 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) 10238 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 10239 + react: 19.1.0 10240 + react-dom: 19.1.0(react@19.1.0) 10241 + optionalDependencies: 10242 + '@types/react': 19.1.17 10243 + '@types/react-dom': 19.1.11(@types/react@19.1.17) 9707 10244 9708 - '@react-native/assets-registry@0.79.2': {} 10245 + '@radix-ui/rect@1.1.1': {} 9709 10246 9710 - '@react-native/babel-plugin-codegen@0.79.5(@babel/core@7.26.0)': 10247 + '@react-native-async-storage/async-storage@2.2.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))': 9711 10248 dependencies: 9712 - '@babel/traverse': 7.26.4 9713 - '@react-native/codegen': 0.79.5(@babel/core@7.26.0) 9714 - transitivePeerDependencies: 9715 - - '@babel/core' 9716 - - supports-color 10249 + merge-options: 3.0.4 10250 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 9717 10251 9718 - '@react-native/babel-plugin-codegen@0.79.5(@babel/core@7.28.4)': 10252 + '@react-native-picker/picker@2.11.2(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': 9719 10253 dependencies: 9720 - '@babel/traverse': 7.26.4 9721 - '@react-native/codegen': 0.79.5(@babel/core@7.28.4) 9722 - transitivePeerDependencies: 9723 - - '@babel/core' 9724 - - supports-color 10254 + react: 19.1.0 10255 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 9725 10256 9726 - '@react-native/babel-preset@0.79.5(@babel/core@7.26.0)': 10257 + '@react-native/assets-registry@0.81.4': {} 10258 + 10259 + '@react-native/babel-plugin-codegen@0.81.4(@babel/core@7.28.4)': 9727 10260 dependencies: 9728 - '@babel/core': 7.26.0 9729 - '@babel/plugin-proposal-export-default-from': 7.25.9(@babel/core@7.26.0) 9730 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.0) 9731 - '@babel/plugin-syntax-export-default-from': 7.25.9(@babel/core@7.26.0) 9732 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.0) 9733 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.0) 9734 - '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.0) 9735 - '@babel/plugin-transform-async-generator-functions': 7.25.9(@babel/core@7.26.0) 9736 - '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.0) 9737 - '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.26.0) 9738 - '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.0) 9739 - '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.0) 9740 - '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.0) 9741 - '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.0) 9742 - '@babel/plugin-transform-flow-strip-types': 7.25.9(@babel/core@7.26.0) 9743 - '@babel/plugin-transform-for-of': 7.25.9(@babel/core@7.26.0) 9744 - '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.0) 9745 - '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.26.0) 9746 - '@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.26.0) 9747 - '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.0) 9748 - '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.0) 9749 - '@babel/plugin-transform-nullish-coalescing-operator': 7.25.9(@babel/core@7.26.0) 9750 - '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.26.0) 9751 - '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.26.0) 9752 - '@babel/plugin-transform-optional-catch-binding': 7.25.9(@babel/core@7.26.0) 9753 - '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.0) 9754 - '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0) 9755 - '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.0) 9756 - '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.26.0) 9757 - '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.26.0) 9758 - '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.0) 9759 - '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.0) 9760 - '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.0) 9761 - '@babel/plugin-transform-regenerator': 7.25.9(@babel/core@7.26.0) 9762 - '@babel/plugin-transform-runtime': 7.25.9(@babel/core@7.26.0) 9763 - '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.0) 9764 - '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.0) 9765 - '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.26.0) 9766 - '@babel/plugin-transform-typescript': 7.26.3(@babel/core@7.26.0) 9767 - '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.0) 9768 - '@babel/template': 7.25.9 9769 - '@react-native/babel-plugin-codegen': 0.79.5(@babel/core@7.26.0) 9770 - babel-plugin-syntax-hermes-parser: 0.25.1 9771 - babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.26.0) 9772 - react-refresh: 0.14.2 10261 + '@babel/traverse': 7.28.4 10262 + '@react-native/codegen': 0.81.4(@babel/core@7.28.4) 9773 10263 transitivePeerDependencies: 10264 + - '@babel/core' 9774 10265 - supports-color 9775 10266 9776 - '@react-native/babel-preset@0.79.5(@babel/core@7.28.4)': 10267 + '@react-native/babel-preset@0.81.4(@babel/core@7.28.4)': 9777 10268 dependencies: 9778 10269 '@babel/core': 7.28.4 9779 10270 '@babel/plugin-proposal-export-default-from': 7.25.9(@babel/core@7.28.4) ··· 9815 10306 '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.28.4) 9816 10307 '@babel/plugin-transform-typescript': 7.26.3(@babel/core@7.28.4) 9817 10308 '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.28.4) 9818 - '@babel/template': 7.25.9 9819 - '@react-native/babel-plugin-codegen': 0.79.5(@babel/core@7.28.4) 9820 - babel-plugin-syntax-hermes-parser: 0.25.1 10309 + '@babel/template': 7.27.2 10310 + '@react-native/babel-plugin-codegen': 0.81.4(@babel/core@7.28.4) 10311 + babel-plugin-syntax-hermes-parser: 0.29.1 9821 10312 babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.28.4) 9822 10313 react-refresh: 0.14.2 9823 10314 transitivePeerDependencies: 9824 10315 - supports-color 9825 10316 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 9830 - hermes-parser: 0.25.1 9831 - invariant: 2.2.4 9832 - nullthrows: 1.1.1 9833 - yargs: 17.7.2 9834 - 9835 - '@react-native/codegen@0.79.2(@babel/core@7.28.4)': 10317 + '@react-native/codegen@0.81.4(@babel/core@7.28.4)': 9836 10318 dependencies: 9837 10319 '@babel/core': 7.28.4 10320 + '@babel/parser': 7.28.4 9838 10321 glob: 7.2.3 9839 - hermes-parser: 0.25.1 10322 + hermes-parser: 0.29.1 9840 10323 invariant: 2.2.4 9841 10324 nullthrows: 1.1.1 9842 10325 yargs: 17.7.2 9843 10326 9844 - '@react-native/codegen@0.79.5(@babel/core@7.26.0)': 10327 + '@react-native/community-cli-plugin@0.81.4': 9845 10328 dependencies: 9846 - '@babel/core': 7.26.0 9847 - glob: 7.2.3 9848 - hermes-parser: 0.25.1 10329 + '@react-native/dev-middleware': 0.81.4 10330 + debug: 4.4.3 9849 10331 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 10332 + metro: 0.83.1 10333 + metro-config: 0.83.1 10334 + metro-core: 0.83.1 10335 + semver: 7.7.2 9872 10336 transitivePeerDependencies: 9873 10337 - bufferutil 9874 10338 - supports-color 9875 10339 - utf-8-validate 9876 10340 9877 - '@react-native/debugger-frontend@0.79.2': {} 9878 - 9879 - '@react-native/debugger-frontend@0.79.5': {} 10341 + '@react-native/debugger-frontend@0.81.4': {} 9880 10342 9881 - '@react-native/dev-middleware@0.79.2': 10343 + '@react-native/dev-middleware@0.81.4': 9882 10344 dependencies: 9883 10345 '@isaacs/ttlcache': 1.4.1 9884 - '@react-native/debugger-frontend': 0.79.2 10346 + '@react-native/debugger-frontend': 0.81.4 9885 10347 chrome-launcher: 0.15.2 9886 10348 chromium-edge-launcher: 0.2.0 9887 10349 connect: 3.7.0 9888 - debug: 2.6.9 10350 + debug: 4.4.3 9889 10351 invariant: 2.2.4 9890 10352 nullthrows: 1.1.1 9891 10353 open: 7.4.2 ··· 9896 10358 - supports-color 9897 10359 - utf-8-validate 9898 10360 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 9906 - debug: 2.6.9 9907 - invariant: 2.2.4 9908 - nullthrows: 1.1.1 9909 - open: 7.4.2 9910 - serve-static: 1.16.2 9911 - ws: 6.2.3 9912 - transitivePeerDependencies: 9913 - - bufferutil 9914 - - supports-color 9915 - - utf-8-validate 10361 + '@react-native/gradle-plugin@0.81.4': {} 9916 10362 9917 - '@react-native/gradle-plugin@0.79.2': {} 9918 - 9919 - '@react-native/js-polyfills@0.79.2': {} 10363 + '@react-native/js-polyfills@0.81.4': {} 9920 10364 9921 10365 '@react-native/normalize-colors@0.74.88': {} 9922 10366 9923 - '@react-native/normalize-colors@0.79.2': {} 9924 - 9925 - '@react-native/normalize-colors@0.79.5': {} 10367 + '@react-native/normalize-colors@0.81.4': {} 9926 10368 9927 - '@react-native/typescript-config@0.76.5': {} 10369 + '@react-native/typescript-config@0.76.9': {} 9928 10370 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)': 10371 + '@react-native/virtualized-lists@0.81.4(@types/react@19.1.17)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': 9930 10372 dependencies: 9931 10373 invariant: 2.2.4 9932 10374 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) 10375 + react: 19.1.0 10376 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 9935 10377 optionalDependencies: 9936 - '@types/react': 19.0.14 10378 + '@types/react': 19.1.17 9937 10379 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)': 10380 + '@react-native/virtualized-lists@0.81.4(@types/react@19.2.0)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)': 9939 10381 dependencies: 9940 10382 invariant: 2.2.4 9941 10383 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) 10384 + react: 19.2.0 10385 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0) 9944 10386 optionalDependencies: 9945 - '@types/react': 19.0.14 10387 + '@types/react': 19.2.0 10388 + 10389 + '@react-navigation/bottom-tabs@7.4.8(@react-navigation/native@7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-screens@4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': 10390 + dependencies: 10391 + '@react-navigation/elements': 2.6.5(@react-navigation/native@7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 10392 + '@react-navigation/native': 7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 10393 + color: 4.2.3 10394 + react: 19.1.0 10395 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 10396 + react-native-safe-area-context: 5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 10397 + react-native-screens: 4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 10398 + transitivePeerDependencies: 10399 + - '@react-native-masked-view/masked-view' 9946 10400 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)': 10401 + '@react-navigation/bottom-tabs@7.4.8(@react-navigation/native@7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native-screens@4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)': 9948 10402 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) 10403 + '@react-navigation/elements': 2.6.5(@react-navigation/native@7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0) 10404 + '@react-navigation/native': 7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0) 9951 10405 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) 10406 + react: 19.2.0 10407 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0) 10408 + react-native-safe-area-context: 5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0) 10409 + react-native-screens: 4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0) 9956 10410 transitivePeerDependencies: 9957 10411 - '@react-native-masked-view/masked-view' 10412 + optional: true 9958 10413 9959 - '@react-navigation/core@7.10.0(react@19.0.0)': 10414 + '@react-navigation/core@7.12.4(react@19.1.0)': 10415 + dependencies: 10416 + '@react-navigation/routers': 7.5.1 10417 + escape-string-regexp: 4.0.0 10418 + nanoid: 3.3.11 10419 + query-string: 7.1.3 10420 + react: 19.1.0 10421 + react-is: 19.2.0 10422 + use-latest-callback: 0.2.4(react@19.1.0) 10423 + use-sync-external-store: 1.6.0(react@19.1.0) 10424 + 10425 + '@react-navigation/core@7.12.4(react@19.2.0)': 9960 10426 dependencies: 9961 - '@react-navigation/routers': 7.4.0 10427 + '@react-navigation/routers': 7.5.1 9962 10428 escape-string-regexp: 4.0.0 9963 10429 nanoid: 3.3.11 9964 10430 query-string: 7.1.3 9965 - react: 19.0.0 9966 - react-is: 19.1.0 9967 - use-latest-callback: 0.2.3(react@19.0.0) 9968 - use-sync-external-store: 1.5.0(react@19.0.0) 10431 + react: 19.2.0 10432 + react-is: 19.2.0 10433 + use-latest-callback: 0.2.4(react@19.2.0) 10434 + use-sync-external-store: 1.6.0(react@19.2.0) 10435 + optional: true 9969 10436 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)': 10437 + '@react-navigation/elements@2.6.5(@react-navigation/native@7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': 9971 10438 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) 10439 + '@react-navigation/native': 7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 9973 10440 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) 10441 + react: 19.1.0 10442 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 10443 + react-native-safe-area-context: 5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 10444 + use-latest-callback: 0.2.4(react@19.1.0) 10445 + use-sync-external-store: 1.5.0(react@19.1.0) 9977 10446 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)': 10447 + '@react-navigation/elements@2.6.5(@react-navigation/native@7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)': 9979 10448 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) 10449 + '@react-navigation/native': 7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0) 10450 + color: 4.2.3 10451 + react: 19.2.0 10452 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0) 10453 + react-native-safe-area-context: 5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0) 10454 + use-latest-callback: 0.2.4(react@19.2.0) 10455 + use-sync-external-store: 1.5.0(react@19.2.0) 10456 + optional: true 10457 + 10458 + '@react-navigation/native-stack@7.3.27(@react-navigation/native@7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-screens@4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': 10459 + dependencies: 10460 + '@react-navigation/elements': 2.6.5(@react-navigation/native@7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 10461 + '@react-navigation/native': 7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 10462 + react: 19.1.0 10463 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 10464 + react-native-safe-area-context: 5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 10465 + react-native-screens: 4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 9986 10466 warn-once: 0.1.1 9987 10467 transitivePeerDependencies: 9988 10468 - '@react-native-masked-view/masked-view' 9989 10469 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)': 10470 + '@react-navigation/native-stack@7.3.27(@react-navigation/native@7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native-screens@4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)': 9991 10471 dependencies: 9992 - '@react-navigation/core': 7.10.0(react@19.0.0) 10472 + '@react-navigation/elements': 2.6.5(@react-navigation/native@7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0) 10473 + '@react-navigation/native': 7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0) 10474 + react: 19.2.0 10475 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0) 10476 + react-native-safe-area-context: 5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0) 10477 + react-native-screens: 4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0) 10478 + warn-once: 0.1.1 10479 + transitivePeerDependencies: 10480 + - '@react-native-masked-view/masked-view' 10481 + optional: true 10482 + 10483 + '@react-navigation/native@7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': 10484 + dependencies: 10485 + '@react-navigation/core': 7.12.4(react@19.1.0) 9993 10486 escape-string-regexp: 4.0.0 9994 10487 fast-deep-equal: 3.1.3 9995 10488 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) 10489 + react: 19.1.0 10490 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 10491 + use-latest-callback: 0.2.4(react@19.1.0) 9999 10492 10000 - '@react-navigation/routers@7.4.0': 10493 + '@react-navigation/native@7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)': 10001 10494 dependencies: 10495 + '@react-navigation/core': 7.12.4(react@19.2.0) 10496 + escape-string-regexp: 4.0.0 10497 + fast-deep-equal: 3.1.3 10002 10498 nanoid: 3.3.11 10499 + react: 19.2.0 10500 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0) 10501 + use-latest-callback: 0.2.4(react@19.2.0) 10502 + optional: true 10003 10503 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)': 10504 + '@react-navigation/routers@7.5.1': 10005 10505 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 10506 + nanoid: 3.3.11 10507 + 10508 + '@rn-primitives/avatar@1.2.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': 10509 + dependencies: 10510 + '@rn-primitives/hooks': 1.3.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 10511 + '@rn-primitives/slot': 1.2.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 10512 + '@rn-primitives/types': 1.2.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 10513 + react: 19.1.0 10010 10514 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) 10515 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 10516 + react-native-web: 0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 10013 10517 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)': 10518 + '@rn-primitives/hooks@1.3.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': 10015 10519 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 10520 + '@rn-primitives/types': 1.2.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 10521 + react: 19.1.0 10018 10522 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) 10523 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 10524 + react-native-web: 0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 10021 10525 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)': 10526 + '@rn-primitives/hover-card@1.2.0(@rn-primitives/portal@1.3.0(@types/react@19.1.17)(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(use-sync-external-store@1.6.0(react@19.1.0)))(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': 10023 10527 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 10528 + '@radix-ui/react-hover-card': 1.1.15(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 10529 + '@rn-primitives/hooks': 1.3.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 10530 + '@rn-primitives/popover': 1.2.0(@rn-primitives/portal@1.3.0(@types/react@19.1.17)(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(use-sync-external-store@1.6.0(react@19.1.0)))(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 10531 + '@rn-primitives/portal': 1.3.0(@types/react@19.1.17)(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(use-sync-external-store@1.6.0(react@19.1.0)) 10532 + '@rn-primitives/slot': 1.2.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 10533 + '@rn-primitives/types': 1.2.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 10534 + react: 19.1.0 10031 10535 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) 10536 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 10537 + react-native-web: 0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 10034 10538 transitivePeerDependencies: 10035 10539 - '@types/react' 10036 10540 - '@types/react-dom' 10037 10541 - react-dom 10038 10542 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)': 10543 + '@rn-primitives/popover@1.2.0(@rn-primitives/portal@1.3.0(@types/react@19.1.17)(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(use-sync-external-store@1.6.0(react@19.1.0)))(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': 10040 10544 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 10545 + '@radix-ui/react-popover': 1.1.15(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 10546 + '@rn-primitives/hooks': 1.3.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 10547 + '@rn-primitives/portal': 1.3.0(@types/react@19.1.17)(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(use-sync-external-store@1.6.0(react@19.1.0)) 10548 + '@rn-primitives/slot': 1.2.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 10549 + '@rn-primitives/types': 1.2.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 10550 + react: 19.1.0 10047 10551 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) 10552 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 10553 + react-native-web: 0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 10050 10554 transitivePeerDependencies: 10051 10555 - '@types/react' 10052 10556 - '@types/react-dom' 10053 10557 - react-dom 10054 10558 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))': 10559 + '@rn-primitives/portal@1.3.0(@types/react@19.1.17)(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(use-sync-external-store@1.6.0(react@19.1.0))': 10056 10560 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)) 10561 + react: 19.1.0 10562 + zustand: 5.0.8(@types/react@19.1.17)(react@19.1.0)(use-sync-external-store@1.6.0(react@19.1.0)) 10059 10563 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) 10564 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 10565 + react-native-web: 0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 10062 10566 transitivePeerDependencies: 10063 10567 - '@types/react' 10064 10568 - immer 10065 10569 - use-sync-external-store 10066 10570 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)': 10571 + '@rn-primitives/progress@1.2.0(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': 10068 10572 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 10573 + '@radix-ui/react-progress': 1.1.7(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 10574 + '@rn-primitives/slot': 1.2.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 10575 + '@rn-primitives/types': 1.2.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 10576 + react: 19.1.0 10073 10577 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) 10578 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 10579 + react-native-web: 0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 10076 10580 transitivePeerDependencies: 10077 10581 - '@types/react' 10078 10582 - '@types/react-dom' 10079 10583 - react-dom 10080 10584 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)': 10585 + '@rn-primitives/slot@1.2.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': 10082 10586 dependencies: 10083 - react: 19.0.0 10587 + react: 19.1.0 10084 10588 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) 10589 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 10590 + react-native-web: 0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 10087 10591 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)': 10592 + '@rn-primitives/tooltip@1.2.0(@rn-primitives/portal@1.3.0(@types/react@19.1.17)(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(use-sync-external-store@1.6.0(react@19.1.0)))(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': 10089 10593 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 10594 + '@radix-ui/react-tooltip': 1.2.8(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 10595 + '@rn-primitives/hooks': 1.3.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 10596 + '@rn-primitives/portal': 1.3.0(@types/react@19.1.17)(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(use-sync-external-store@1.6.0(react@19.1.0)) 10597 + '@rn-primitives/slot': 1.2.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 10598 + '@rn-primitives/types': 1.2.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 10599 + react: 19.1.0 10096 10600 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) 10601 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 10602 + react-native-web: 0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 10099 10603 transitivePeerDependencies: 10100 10604 - '@types/react' 10101 10605 - '@types/react-dom' 10102 10606 - react-dom 10103 10607 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)': 10608 + '@rn-primitives/types@1.2.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': 10105 10609 dependencies: 10106 - react: 19.0.0 10610 + react: 19.1.0 10107 10611 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) 10612 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 10613 + react-native-web: 0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 10110 10614 10111 10615 '@rtsao/scc@1.1.0': {} 10112 10616 ··· 10130 10634 dependencies: 10131 10635 '@sinonjs/commons': 3.0.1 10132 10636 10637 + '@testing-library/jest-native@5.4.3(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react-test-renderer@19.1.0(react@19.1.0))(react@19.1.0)': 10638 + dependencies: 10639 + chalk: 4.1.2 10640 + jest-diff: 29.7.0 10641 + jest-matcher-utils: 29.7.0 10642 + pretty-format: 29.7.0 10643 + react: 19.1.0 10644 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 10645 + react-test-renderer: 19.1.0(react@19.1.0) 10646 + redent: 3.0.0 10647 + 10648 + '@testing-library/react-native@13.3.3(jest@29.7.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3)))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react-test-renderer@19.1.0(react@19.1.0))(react@19.1.0)': 10649 + dependencies: 10650 + jest-matcher-utils: 30.2.0 10651 + picocolors: 1.1.1 10652 + pretty-format: 30.2.0 10653 + react: 19.1.0 10654 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 10655 + react-test-renderer: 19.1.0(react@19.1.0) 10656 + redent: 3.0.0 10657 + optionalDependencies: 10658 + jest: 29.7.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3)) 10659 + 10660 + '@testing-library/react-native@13.3.3(jest@30.2.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3)))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react-test-renderer@19.1.0(react@19.2.0))(react@19.2.0)': 10661 + dependencies: 10662 + jest-matcher-utils: 30.2.0 10663 + picocolors: 1.1.1 10664 + pretty-format: 30.2.0 10665 + react: 19.2.0 10666 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0) 10667 + react-test-renderer: 19.1.0(react@19.2.0) 10668 + redent: 3.0.0 10669 + optionalDependencies: 10670 + jest: 30.2.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3)) 10671 + optional: true 10672 + 10133 10673 '@tootallnate/once@2.0.0': {} 10134 10674 10135 10675 '@ts-morph/common@0.17.0': 10136 10676 dependencies: 10137 - fast-glob: 3.3.2 10677 + fast-glob: 3.3.3 10138 10678 minimatch: 5.1.6 10139 10679 mkdirp: 1.0.4 10140 10680 path-browserify: 1.0.1 ··· 10143 10683 dependencies: 10144 10684 minimatch: 9.0.5 10145 10685 path-browserify: 1.0.1 10146 - tinyglobby: 0.2.10 10686 + tinyglobby: 0.2.15 10147 10687 10148 10688 '@tsconfig/node10@1.0.11': {} 10149 10689 ··· 10182 10722 '@types/eslint-scope@3.7.7': 10183 10723 dependencies: 10184 10724 '@types/eslint': 9.6.1 10185 - '@types/estree': 1.0.6 10725 + '@types/estree': 1.0.8 10186 10726 10187 10727 '@types/eslint@9.6.1': 10188 10728 dependencies: 10189 - '@types/estree': 1.0.6 10729 + '@types/estree': 1.0.8 10190 10730 '@types/json-schema': 7.0.15 10191 10731 10192 - '@types/estree@1.0.6': {} 10732 + '@types/estree@1.0.8': {} 10193 10733 10194 10734 '@types/graceful-fs@4.1.9': 10195 10735 dependencies: 10196 - '@types/node': 22.10.2 10736 + '@types/node': 22.18.8 10197 10737 10198 10738 '@types/hammerjs@2.0.46': {} 10199 10739 ··· 10207 10747 dependencies: 10208 10748 '@types/istanbul-lib-report': 3.0.3 10209 10749 10750 + '@types/jest@30.0.0': 10751 + dependencies: 10752 + expect: 30.2.0 10753 + pretty-format: 30.2.0 10754 + 10210 10755 '@types/jsdom@20.0.1': 10211 10756 dependencies: 10212 - '@types/node': 22.10.2 10757 + '@types/node': 22.18.8 10213 10758 '@types/tough-cookie': 4.0.5 10214 10759 parse5: 7.3.0 10215 10760 ··· 10217 10762 10218 10763 '@types/json5@0.0.29': {} 10219 10764 10220 - '@types/node@20.17.10': 10765 + '@types/node@20.19.19': 10766 + dependencies: 10767 + undici-types: 6.21.0 10768 + 10769 + '@types/node@22.18.8': 10770 + dependencies: 10771 + undici-types: 6.21.0 10772 + 10773 + '@types/react-dom@19.1.11(@types/react@19.1.17)': 10221 10774 dependencies: 10222 - undici-types: 6.19.8 10775 + '@types/react': 19.1.17 10223 10776 10224 - '@types/node@22.10.2': 10777 + '@types/react-dom@19.2.0(@types/react@19.2.0)': 10225 10778 dependencies: 10226 - undici-types: 6.20.0 10779 + '@types/react': 19.2.0 10780 + optional: true 10227 10781 10228 - '@types/react-dom@18.3.1': 10782 + '@types/react-test-renderer@19.1.0': 10229 10783 dependencies: 10230 - '@types/react': 19.0.14 10784 + '@types/react': 19.1.17 10231 10785 10232 - '@types/react@19.0.14': 10786 + '@types/react@19.1.17': 10233 10787 dependencies: 10234 10788 csstype: 3.1.3 10235 10789 10790 + '@types/react@19.2.0': 10791 + dependencies: 10792 + csstype: 3.1.3 10793 + optional: true 10794 + 10236 10795 '@types/stack-utils@2.0.3': {} 10237 10796 10238 10797 '@types/tough-cookie@4.0.5': {} ··· 10243 10802 dependencies: 10244 10803 '@types/yargs-parser': 21.0.3 10245 10804 10246 - '@typescript-eslint/eslint-plugin@8.19.0(@typescript-eslint/parser@8.19.0(eslint@8.57.1)(typescript@5.8.3))(eslint@8.57.1)(typescript@5.8.3)': 10805 + '@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1)(typescript@5.9.3)': 10247 10806 dependencies: 10248 10807 '@eslint-community/regexpp': 4.12.1 10249 - '@typescript-eslint/parser': 8.19.0(eslint@8.57.1)(typescript@5.8.3) 10250 - '@typescript-eslint/scope-manager': 8.19.0 10251 - '@typescript-eslint/type-utils': 8.19.0(eslint@8.57.1)(typescript@5.8.3) 10252 - '@typescript-eslint/utils': 8.19.0(eslint@8.57.1)(typescript@5.8.3) 10253 - '@typescript-eslint/visitor-keys': 8.19.0 10808 + '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.9.3) 10809 + '@typescript-eslint/scope-manager': 7.18.0 10810 + '@typescript-eslint/type-utils': 7.18.0(eslint@8.57.1)(typescript@5.9.3) 10811 + '@typescript-eslint/utils': 7.18.0(eslint@8.57.1)(typescript@5.9.3) 10812 + '@typescript-eslint/visitor-keys': 7.18.0 10254 10813 eslint: 8.57.1 10255 10814 graphemer: 1.4.0 10256 10815 ignore: 5.3.2 10257 10816 natural-compare: 1.4.0 10258 - ts-api-utils: 1.4.3(typescript@5.8.3) 10259 - typescript: 5.8.3 10817 + ts-api-utils: 1.4.3(typescript@5.9.3) 10818 + optionalDependencies: 10819 + typescript: 5.9.3 10260 10820 transitivePeerDependencies: 10261 10821 - supports-color 10262 10822 10263 - '@typescript-eslint/parser@8.19.0(eslint@8.57.1)(typescript@5.8.3)': 10823 + '@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.9.3)': 10264 10824 dependencies: 10265 - '@typescript-eslint/scope-manager': 8.19.0 10266 - '@typescript-eslint/types': 8.19.0 10267 - '@typescript-eslint/typescript-estree': 8.19.0(typescript@5.8.3) 10268 - '@typescript-eslint/visitor-keys': 8.19.0 10269 - debug: 4.4.0 10825 + '@typescript-eslint/scope-manager': 7.18.0 10826 + '@typescript-eslint/types': 7.18.0 10827 + '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.9.3) 10828 + '@typescript-eslint/visitor-keys': 7.18.0 10829 + debug: 4.4.3 10270 10830 eslint: 8.57.1 10271 - typescript: 5.8.3 10831 + optionalDependencies: 10832 + typescript: 5.9.3 10272 10833 transitivePeerDependencies: 10273 10834 - supports-color 10274 10835 10275 - '@typescript-eslint/project-service@8.33.1(typescript@5.8.3)': 10836 + '@typescript-eslint/project-service@8.45.0(typescript@5.9.3)': 10276 10837 dependencies: 10277 - '@typescript-eslint/tsconfig-utils': 8.33.1(typescript@5.8.3) 10278 - '@typescript-eslint/types': 8.33.1 10279 - debug: 4.4.0 10280 - typescript: 5.8.3 10838 + '@typescript-eslint/tsconfig-utils': 8.45.0(typescript@5.9.3) 10839 + '@typescript-eslint/types': 8.45.0 10840 + debug: 4.4.3 10841 + typescript: 5.9.3 10281 10842 transitivePeerDependencies: 10282 10843 - supports-color 10283 10844 10284 - '@typescript-eslint/scope-manager@8.19.0': 10845 + '@typescript-eslint/scope-manager@7.18.0': 10285 10846 dependencies: 10286 - '@typescript-eslint/types': 8.19.0 10287 - '@typescript-eslint/visitor-keys': 8.19.0 10847 + '@typescript-eslint/types': 7.18.0 10848 + '@typescript-eslint/visitor-keys': 7.18.0 10288 10849 10289 - '@typescript-eslint/scope-manager@8.33.1': 10850 + '@typescript-eslint/scope-manager@8.45.0': 10290 10851 dependencies: 10291 - '@typescript-eslint/types': 8.33.1 10292 - '@typescript-eslint/visitor-keys': 8.33.1 10852 + '@typescript-eslint/types': 8.45.0 10853 + '@typescript-eslint/visitor-keys': 8.45.0 10293 10854 10294 - '@typescript-eslint/tsconfig-utils@8.33.1(typescript@5.8.3)': 10855 + '@typescript-eslint/tsconfig-utils@8.45.0(typescript@5.9.3)': 10295 10856 dependencies: 10296 - typescript: 5.8.3 10857 + typescript: 5.9.3 10297 10858 10298 - '@typescript-eslint/type-utils@8.19.0(eslint@8.57.1)(typescript@5.8.3)': 10859 + '@typescript-eslint/type-utils@7.18.0(eslint@8.57.1)(typescript@5.9.3)': 10299 10860 dependencies: 10300 - '@typescript-eslint/typescript-estree': 8.19.0(typescript@5.8.3) 10301 - '@typescript-eslint/utils': 8.19.0(eslint@8.57.1)(typescript@5.8.3) 10302 - debug: 4.4.0 10861 + '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.9.3) 10862 + '@typescript-eslint/utils': 7.18.0(eslint@8.57.1)(typescript@5.9.3) 10863 + debug: 4.4.3 10303 10864 eslint: 8.57.1 10304 - ts-api-utils: 1.4.3(typescript@5.8.3) 10305 - typescript: 5.8.3 10865 + ts-api-utils: 1.4.3(typescript@5.9.3) 10866 + optionalDependencies: 10867 + typescript: 5.9.3 10306 10868 transitivePeerDependencies: 10307 10869 - supports-color 10308 10870 10309 - '@typescript-eslint/types@8.19.0': {} 10871 + '@typescript-eslint/types@7.18.0': {} 10310 10872 10311 - '@typescript-eslint/types@8.33.1': {} 10873 + '@typescript-eslint/types@8.45.0': {} 10312 10874 10313 - '@typescript-eslint/typescript-estree@8.19.0(typescript@5.8.3)': 10875 + '@typescript-eslint/typescript-estree@7.18.0(typescript@5.9.3)': 10314 10876 dependencies: 10315 - '@typescript-eslint/types': 8.19.0 10316 - '@typescript-eslint/visitor-keys': 8.19.0 10317 - debug: 4.4.0 10318 - fast-glob: 3.3.2 10877 + '@typescript-eslint/types': 7.18.0 10878 + '@typescript-eslint/visitor-keys': 7.18.0 10879 + debug: 4.4.3 10880 + globby: 11.1.0 10319 10881 is-glob: 4.0.3 10320 10882 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 10883 + semver: 7.7.2 10884 + ts-api-utils: 1.4.3(typescript@5.9.3) 10885 + optionalDependencies: 10886 + typescript: 5.9.3 10324 10887 transitivePeerDependencies: 10325 10888 - supports-color 10326 10889 10327 - '@typescript-eslint/typescript-estree@8.33.1(typescript@5.8.3)': 10890 + '@typescript-eslint/typescript-estree@8.45.0(typescript@5.9.3)': 10328 10891 dependencies: 10329 - '@typescript-eslint/project-service': 8.33.1(typescript@5.8.3) 10330 - '@typescript-eslint/tsconfig-utils': 8.33.1(typescript@5.8.3) 10331 - '@typescript-eslint/types': 8.33.1 10332 - '@typescript-eslint/visitor-keys': 8.33.1 10333 - debug: 4.4.0 10334 - fast-glob: 3.3.2 10892 + '@typescript-eslint/project-service': 8.45.0(typescript@5.9.3) 10893 + '@typescript-eslint/tsconfig-utils': 8.45.0(typescript@5.9.3) 10894 + '@typescript-eslint/types': 8.45.0 10895 + '@typescript-eslint/visitor-keys': 8.45.0 10896 + debug: 4.4.3 10897 + fast-glob: 3.3.3 10335 10898 is-glob: 4.0.3 10336 10899 minimatch: 9.0.5 10337 10900 semver: 7.7.2 10338 - ts-api-utils: 2.1.0(typescript@5.8.3) 10339 - typescript: 5.8.3 10901 + ts-api-utils: 2.1.0(typescript@5.9.3) 10902 + typescript: 5.9.3 10340 10903 transitivePeerDependencies: 10341 10904 - supports-color 10342 10905 10343 - '@typescript-eslint/utils@8.19.0(eslint@8.57.1)(typescript@5.8.3)': 10906 + '@typescript-eslint/utils@7.18.0(eslint@8.57.1)(typescript@5.9.3)': 10344 10907 dependencies: 10345 - '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1) 10346 - '@typescript-eslint/scope-manager': 8.19.0 10347 - '@typescript-eslint/types': 8.19.0 10348 - '@typescript-eslint/typescript-estree': 8.19.0(typescript@5.8.3) 10908 + '@eslint-community/eslint-utils': 4.9.0(eslint@8.57.1) 10909 + '@typescript-eslint/scope-manager': 7.18.0 10910 + '@typescript-eslint/types': 7.18.0 10911 + '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.9.3) 10349 10912 eslint: 8.57.1 10350 - typescript: 5.8.3 10351 10913 transitivePeerDependencies: 10352 10914 - supports-color 10915 + - typescript 10353 10916 10354 - '@typescript-eslint/utils@8.33.1(eslint@8.57.1)(typescript@5.8.3)': 10917 + '@typescript-eslint/utils@8.45.0(eslint@8.57.1)(typescript@5.9.3)': 10355 10918 dependencies: 10356 - '@eslint-community/eslint-utils': 4.7.0(eslint@8.57.1) 10357 - '@typescript-eslint/scope-manager': 8.33.1 10358 - '@typescript-eslint/types': 8.33.1 10359 - '@typescript-eslint/typescript-estree': 8.33.1(typescript@5.8.3) 10919 + '@eslint-community/eslint-utils': 4.9.0(eslint@8.57.1) 10920 + '@typescript-eslint/scope-manager': 8.45.0 10921 + '@typescript-eslint/types': 8.45.0 10922 + '@typescript-eslint/typescript-estree': 8.45.0(typescript@5.9.3) 10360 10923 eslint: 8.57.1 10361 - typescript: 5.8.3 10924 + typescript: 5.9.3 10362 10925 transitivePeerDependencies: 10363 10926 - supports-color 10364 10927 10365 - '@typescript-eslint/visitor-keys@8.19.0': 10928 + '@typescript-eslint/visitor-keys@7.18.0': 10366 10929 dependencies: 10367 - '@typescript-eslint/types': 8.19.0 10368 - eslint-visitor-keys: 4.2.0 10930 + '@typescript-eslint/types': 7.18.0 10931 + eslint-visitor-keys: 3.4.3 10369 10932 10370 - '@typescript-eslint/visitor-keys@8.33.1': 10933 + '@typescript-eslint/visitor-keys@8.45.0': 10371 10934 dependencies: 10372 - '@typescript-eslint/types': 8.33.1 10373 - eslint-visitor-keys: 4.2.0 10374 - 10375 - '@ungap/structured-clone@1.2.1': {} 10935 + '@typescript-eslint/types': 8.45.0 10936 + eslint-visitor-keys: 4.2.1 10376 10937 10377 10938 '@ungap/structured-clone@1.3.0': {} 10378 10939 ··· 10544 11105 10545 11106 acorn-globals@7.0.1: 10546 11107 dependencies: 10547 - acorn: 8.14.0 11108 + acorn: 8.15.0 10548 11109 acorn-walk: 8.3.4 10549 11110 10550 - acorn-jsx@5.3.2(acorn@8.14.0): 11111 + acorn-jsx@5.3.2(acorn@8.15.0): 10551 11112 dependencies: 10552 - acorn: 8.14.0 11113 + acorn: 8.15.0 10553 11114 10554 11115 acorn-loose@8.5.2: 10555 11116 dependencies: ··· 10565 11126 10566 11127 agent-base@6.0.2: 10567 11128 dependencies: 10568 - debug: 4.4.0 11129 + debug: 4.4.3 10569 11130 transitivePeerDependencies: 10570 11131 - supports-color 10571 11132 ··· 10616 11177 10617 11178 ansi-regex@5.0.1: {} 10618 11179 10619 - ansi-regex@6.1.0: {} 11180 + ansi-regex@6.2.2: {} 10620 11181 10621 11182 ansi-styles@2.2.1: {} 10622 11183 ··· 10630 11191 10631 11192 ansi-styles@5.2.0: {} 10632 11193 10633 - ansi-styles@6.2.1: {} 11194 + ansi-styles@6.2.3: {} 10634 11195 10635 11196 any-promise@1.3.0: {} 10636 11197 ··· 10655 11216 dependencies: 10656 11217 tslib: 2.8.1 10657 11218 11219 + aria-hidden@1.2.6: 11220 + dependencies: 11221 + tslib: 2.8.1 11222 + 10658 11223 array-buffer-byte-length@1.0.2: 10659 11224 dependencies: 10660 - call-bound: 1.0.3 11225 + call-bound: 1.0.4 10661 11226 is-array-buffer: 3.0.5 10662 11227 10663 11228 array-flatten@1.1.1: {} 10664 11229 10665 - array-includes@3.1.8: 11230 + array-includes@3.1.9: 10666 11231 dependencies: 10667 11232 call-bind: 1.0.8 11233 + call-bound: 1.0.4 10668 11234 define-properties: 1.2.1 10669 - es-abstract: 1.23.8 10670 - es-object-atoms: 1.0.0 10671 - get-intrinsic: 1.2.6 11235 + es-abstract: 1.24.0 11236 + es-object-atoms: 1.1.1 11237 + get-intrinsic: 1.3.0 10672 11238 is-string: 1.1.1 11239 + math-intrinsics: 1.1.0 10673 11240 10674 11241 array-timsort@1.0.3: {} 10675 11242 11243 + array-union@2.1.0: {} 11244 + 10676 11245 array.prototype.findlast@1.2.5: 10677 11246 dependencies: 10678 11247 call-bind: 1.0.8 10679 11248 define-properties: 1.2.1 10680 - es-abstract: 1.23.8 11249 + es-abstract: 1.24.0 10681 11250 es-errors: 1.3.0 10682 - es-object-atoms: 1.0.0 10683 - es-shim-unscopables: 1.0.2 11251 + es-object-atoms: 1.1.1 11252 + es-shim-unscopables: 1.1.0 10684 11253 10685 - array.prototype.findlastindex@1.2.5: 11254 + array.prototype.findlastindex@1.2.6: 10686 11255 dependencies: 10687 11256 call-bind: 1.0.8 11257 + call-bound: 1.0.4 10688 11258 define-properties: 1.2.1 10689 - es-abstract: 1.23.8 11259 + es-abstract: 1.24.0 10690 11260 es-errors: 1.3.0 10691 - es-object-atoms: 1.0.0 10692 - es-shim-unscopables: 1.0.2 11261 + es-object-atoms: 1.1.1 11262 + es-shim-unscopables: 1.1.0 10693 11263 10694 11264 array.prototype.flat@1.3.3: 10695 11265 dependencies: 10696 11266 call-bind: 1.0.8 10697 11267 define-properties: 1.2.1 10698 - es-abstract: 1.23.8 10699 - es-shim-unscopables: 1.0.2 11268 + es-abstract: 1.24.0 11269 + es-shim-unscopables: 1.1.0 10700 11270 10701 11271 array.prototype.flatmap@1.3.3: 10702 11272 dependencies: 10703 11273 call-bind: 1.0.8 10704 11274 define-properties: 1.2.1 10705 - es-abstract: 1.23.8 10706 - es-shim-unscopables: 1.0.2 11275 + es-abstract: 1.24.0 11276 + es-shim-unscopables: 1.1.0 10707 11277 10708 11278 array.prototype.tosorted@1.1.4: 10709 11279 dependencies: 10710 11280 call-bind: 1.0.8 10711 11281 define-properties: 1.2.1 10712 - es-abstract: 1.23.8 11282 + es-abstract: 1.24.0 10713 11283 es-errors: 1.3.0 10714 - es-shim-unscopables: 1.0.2 11284 + es-shim-unscopables: 1.1.0 10715 11285 10716 11286 arraybuffer.prototype.slice@1.0.4: 10717 11287 dependencies: 10718 11288 array-buffer-byte-length: 1.0.2 10719 11289 call-bind: 1.0.8 10720 11290 define-properties: 1.2.1 10721 - es-abstract: 1.23.8 11291 + es-abstract: 1.24.0 10722 11292 es-errors: 1.3.0 10723 - get-intrinsic: 1.2.6 11293 + get-intrinsic: 1.3.0 10724 11294 is-array-buffer: 3.0.5 10725 11295 10726 11296 asap@2.0.6: {} ··· 10730 11300 safer-buffer: 2.1.2 10731 11301 10732 11302 assert-plus@1.0.0: {} 11303 + 11304 + async-function@1.0.0: {} 10733 11305 10734 11306 async-limiter@1.0.1: {} 10735 11307 ··· 10746 11318 aws-sign2@0.7.0: {} 10747 11319 10748 11320 aws4@1.13.2: {} 10749 - 10750 - babel-jest@29.7.0(@babel/core@7.26.0): 10751 - dependencies: 10752 - '@babel/core': 7.26.0 10753 - '@jest/transform': 29.7.0 10754 - '@types/babel__core': 7.20.5 10755 - babel-plugin-istanbul: 6.1.1 10756 - babel-preset-jest: 29.6.3(@babel/core@7.26.0) 10757 - chalk: 4.1.2 10758 - graceful-fs: 4.2.11 10759 - slash: 3.0.0 10760 - transitivePeerDependencies: 10761 - - supports-color 10762 11321 10763 11322 babel-jest@29.7.0(@babel/core@7.28.4): 10764 11323 dependencies: ··· 10825 11384 reselect: 4.1.8 10826 11385 resolve: 1.22.10 10827 11386 10828 - babel-plugin-polyfill-corejs2@0.4.12(@babel/core@7.26.0): 10829 - dependencies: 10830 - '@babel/compat-data': 7.26.3 10831 - '@babel/core': 7.26.0 10832 - '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0) 10833 - semver: 6.3.1 10834 - transitivePeerDependencies: 10835 - - supports-color 10836 - 10837 11387 babel-plugin-polyfill-corejs2@0.4.12(@babel/core@7.28.4): 10838 11388 dependencies: 10839 - '@babel/compat-data': 7.26.3 11389 + '@babel/compat-data': 7.28.4 10840 11390 '@babel/core': 7.28.4 10841 11391 '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.28.4) 10842 11392 semver: 6.3.1 10843 11393 transitivePeerDependencies: 10844 11394 - supports-color 10845 11395 10846 - babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.26.0): 10847 - dependencies: 10848 - '@babel/core': 7.26.0 10849 - '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0) 10850 - core-js-compat: 3.39.0 10851 - transitivePeerDependencies: 10852 - - supports-color 10853 - 10854 11396 babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.28.4): 10855 11397 dependencies: 10856 11398 '@babel/core': 7.28.4 ··· 10859 11401 transitivePeerDependencies: 10860 11402 - supports-color 10861 11403 10862 - babel-plugin-polyfill-regenerator@0.6.3(@babel/core@7.26.0): 10863 - dependencies: 10864 - '@babel/core': 7.26.0 10865 - '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0) 10866 - transitivePeerDependencies: 10867 - - supports-color 10868 - 10869 11404 babel-plugin-polyfill-regenerator@0.6.3(@babel/core@7.28.4): 10870 11405 dependencies: 10871 11406 '@babel/core': 7.28.4 ··· 10875 11410 10876 11411 babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206: 10877 11412 dependencies: 10878 - '@babel/types': 7.26.3 11413 + '@babel/types': 7.28.4 10879 11414 10880 - babel-plugin-react-native-web@0.19.13: {} 11415 + babel-plugin-react-compiler@19.1.0-rc.3: 11416 + dependencies: 11417 + '@babel/types': 7.28.4 10881 11418 10882 - babel-plugin-syntax-hermes-parser@0.25.1: 10883 - dependencies: 10884 - hermes-parser: 0.25.1 11419 + babel-plugin-react-native-web@0.21.1: {} 10885 11420 10886 - babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.26.0): 11421 + babel-plugin-syntax-hermes-parser@0.29.1: 10887 11422 dependencies: 10888 - '@babel/plugin-syntax-flow': 7.26.0(@babel/core@7.26.0) 10889 - transitivePeerDependencies: 10890 - - '@babel/core' 11423 + hermes-parser: 0.29.1 10891 11424 10892 11425 babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.28.4): 10893 11426 dependencies: 10894 11427 '@babel/plugin-syntax-flow': 7.26.0(@babel/core@7.28.4) 10895 11428 transitivePeerDependencies: 10896 11429 - '@babel/core' 10897 - 10898 - babel-preset-current-node-syntax@1.2.0(@babel/core@7.26.0): 10899 - dependencies: 10900 - '@babel/core': 7.26.0 10901 - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.26.0) 10902 - '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.26.0) 10903 - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.26.0) 10904 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.26.0) 10905 - '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.0) 10906 - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.0) 10907 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.26.0) 10908 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.0) 10909 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.0) 10910 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.26.0) 10911 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.0) 10912 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.26.0) 10913 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.0) 10914 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.26.0) 10915 - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.26.0) 10916 11430 10917 11431 babel-preset-current-node-syntax@1.2.0(@babel/core@7.28.4): 10918 11432 dependencies: ··· 10933 11447 '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.28.4) 10934 11448 '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.28.4) 10935 11449 10936 - babel-preset-expo@13.2.3(@babel/core@7.26.0)(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206): 10937 - dependencies: 10938 - '@babel/helper-module-imports': 7.25.9 10939 - '@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.0) 10940 - '@babel/plugin-proposal-export-default-from': 7.25.9(@babel/core@7.26.0) 10941 - '@babel/plugin-syntax-export-default-from': 7.25.9(@babel/core@7.26.0) 10942 - '@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.26.0) 10943 - '@babel/plugin-transform-flow-strip-types': 7.25.9(@babel/core@7.26.0) 10944 - '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.0) 10945 - '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.26.0) 10946 - '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0) 10947 - '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.0) 10948 - '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.26.0) 10949 - '@babel/plugin-transform-runtime': 7.25.9(@babel/core@7.26.0) 10950 - '@babel/preset-react': 7.26.3(@babel/core@7.26.0) 10951 - '@babel/preset-typescript': 7.26.0(@babel/core@7.26.0) 10952 - '@react-native/babel-preset': 0.79.5(@babel/core@7.26.0) 10953 - babel-plugin-react-native-web: 0.19.13 10954 - babel-plugin-syntax-hermes-parser: 0.25.1 10955 - babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.26.0) 10956 - debug: 4.4.0 10957 - react-refresh: 0.14.2 10958 - resolve-from: 5.0.0 10959 - optionalDependencies: 10960 - babel-plugin-react-compiler: 19.0.0-beta-37ed2a7-20241206 10961 - transitivePeerDependencies: 10962 - - '@babel/core' 10963 - - supports-color 10964 - 10965 - babel-preset-expo@13.2.3(@babel/core@7.28.4): 11450 + babel-preset-expo@54.0.3(@babel/core@7.28.4)(@babel/runtime@7.28.4)(expo@54.0.12)(react-refresh@0.14.2): 10966 11451 dependencies: 10967 - '@babel/helper-module-imports': 7.25.9 11452 + '@babel/helper-module-imports': 7.27.1 10968 11453 '@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.28.4) 10969 11454 '@babel/plugin-proposal-export-default-from': 7.25.9(@babel/core@7.28.4) 10970 11455 '@babel/plugin-syntax-export-default-from': 7.25.9(@babel/core@7.28.4) 11456 + '@babel/plugin-transform-class-static-block': 7.28.3(@babel/core@7.28.4) 10971 11457 '@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.28.4) 10972 11458 '@babel/plugin-transform-flow-strip-types': 7.25.9(@babel/core@7.28.4) 10973 11459 '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.28.4) ··· 10978 11464 '@babel/plugin-transform-runtime': 7.25.9(@babel/core@7.28.4) 10979 11465 '@babel/preset-react': 7.26.3(@babel/core@7.28.4) 10980 11466 '@babel/preset-typescript': 7.26.0(@babel/core@7.28.4) 10981 - '@react-native/babel-preset': 0.79.5(@babel/core@7.28.4) 10982 - babel-plugin-react-native-web: 0.19.13 10983 - babel-plugin-syntax-hermes-parser: 0.25.1 11467 + '@react-native/babel-preset': 0.81.4(@babel/core@7.28.4) 11468 + babel-plugin-react-compiler: 19.1.0-rc.3 11469 + babel-plugin-react-native-web: 0.21.1 11470 + babel-plugin-syntax-hermes-parser: 0.29.1 10984 11471 babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.28.4) 10985 - debug: 4.4.0 11472 + debug: 4.4.3 10986 11473 react-refresh: 0.14.2 10987 11474 resolve-from: 5.0.0 11475 + optionalDependencies: 11476 + '@babel/runtime': 7.28.4 11477 + expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 10988 11478 transitivePeerDependencies: 10989 11479 - '@babel/core' 10990 11480 - supports-color 10991 - 10992 - babel-preset-jest@29.6.3(@babel/core@7.26.0): 10993 - dependencies: 10994 - '@babel/core': 7.26.0 10995 - babel-plugin-jest-hoist: 29.6.3 10996 - babel-preset-current-node-syntax: 1.2.0(@babel/core@7.26.0) 10997 11481 10998 11482 babel-preset-jest@29.6.3(@babel/core@7.28.4): 10999 11483 dependencies: ··· 11010 11494 balanced-match@1.0.2: {} 11011 11495 11012 11496 base64-js@1.5.1: {} 11497 + 11498 + baseline-browser-mapping@2.8.12: {} 11013 11499 11014 11500 bcrypt-pbkdf@1.0.2: 11015 11501 dependencies: ··· 11083 11569 dependencies: 11084 11570 fill-range: 7.1.1 11085 11571 11086 - browserslist@4.24.3: 11572 + browserslist@4.26.3: 11087 11573 dependencies: 11088 - caniuse-lite: 1.0.30001690 11089 - electron-to-chromium: 1.5.76 11090 - node-releases: 2.0.19 11091 - update-browserslist-db: 1.1.1(browserslist@4.24.3) 11574 + baseline-browser-mapping: 2.8.12 11575 + caniuse-lite: 1.0.30001747 11576 + electron-to-chromium: 1.5.230 11577 + node-releases: 2.0.23 11578 + update-browserslist-db: 1.1.3(browserslist@4.26.3) 11092 11579 11093 11580 bser@2.1.1: 11094 11581 dependencies: ··· 11113 11600 es-errors: 1.3.0 11114 11601 function-bind: 1.1.2 11115 11602 11603 + call-bind-apply-helpers@1.0.2: 11604 + dependencies: 11605 + es-errors: 1.3.0 11606 + function-bind: 1.1.2 11607 + 11116 11608 call-bind@1.0.8: 11117 11609 dependencies: 11118 11610 call-bind-apply-helpers: 1.0.1 ··· 11125 11617 call-bind-apply-helpers: 1.0.1 11126 11618 get-intrinsic: 1.2.6 11127 11619 11620 + call-bound@1.0.4: 11621 + dependencies: 11622 + call-bind-apply-helpers: 1.0.2 11623 + get-intrinsic: 1.3.0 11624 + 11128 11625 caller-callsite@2.0.0: 11129 11626 dependencies: 11130 11627 callsites: 2.0.0 ··· 11143 11640 11144 11641 camelcase@6.3.0: {} 11145 11642 11146 - caniuse-lite@1.0.30001690: {} 11643 + caniuse-lite@1.0.30001747: {} 11147 11644 11148 11645 caseless@0.12.0: {} 11149 11646 ··· 11205 11702 optionalDependencies: 11206 11703 fsevents: 2.3.3 11207 11704 11208 - chokidar@4.0.1: 11705 + chokidar@4.0.3: 11209 11706 dependencies: 11210 11707 readdirp: 4.0.2 11211 11708 ··· 11213 11710 11214 11711 chrome-launcher@0.15.2: 11215 11712 dependencies: 11216 - '@types/node': 22.10.2 11713 + '@types/node': 22.18.8 11217 11714 escape-string-regexp: 4.0.0 11218 11715 is-wsl: 2.2.0 11219 11716 lighthouse-logger: 1.4.2 ··· 11224 11721 11225 11722 chromium-edge-launcher@0.2.0: 11226 11723 dependencies: 11227 - '@types/node': 22.10.2 11724 + '@types/node': 22.18.8 11228 11725 escape-string-regexp: 4.0.0 11229 11726 is-wsl: 2.2.0 11230 11727 lighthouse-logger: 1.4.2 ··· 11238 11735 ci-info@3.9.0: {} 11239 11736 11240 11737 ci-info@4.3.0: {} 11738 + 11739 + cjs-module-lexer@1.4.3: {} 11241 11740 11242 11741 cjs-module-lexer@2.1.0: {} 11243 11742 ··· 11366 11865 11367 11866 core-js-compat@3.39.0: 11368 11867 dependencies: 11369 - browserslist: 4.24.3 11868 + browserslist: 4.26.3 11370 11869 11371 11870 core-js-pure@3.39.0: {} 11372 11871 ··· 11383 11882 js-yaml: 3.14.1 11384 11883 parse-json: 4.0.0 11385 11884 11885 + create-jest@29.7.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3)): 11886 + dependencies: 11887 + '@jest/types': 29.6.3 11888 + chalk: 4.1.2 11889 + exit: 0.1.2 11890 + graceful-fs: 4.2.11 11891 + jest-config: 29.7.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3)) 11892 + jest-util: 29.7.0 11893 + prompts: 2.4.2 11894 + transitivePeerDependencies: 11895 + - '@types/node' 11896 + - babel-plugin-macros 11897 + - supports-color 11898 + - ts-node 11899 + 11386 11900 create-require@1.1.1: {} 11387 11901 11388 11902 cross-fetch@3.2.0: ··· 11442 11956 11443 11957 data-view-buffer@1.0.2: 11444 11958 dependencies: 11445 - call-bound: 1.0.3 11959 + call-bound: 1.0.4 11446 11960 es-errors: 1.3.0 11447 11961 is-data-view: 1.0.2 11448 11962 11449 11963 data-view-byte-length@1.0.2: 11450 11964 dependencies: 11451 - call-bound: 1.0.3 11965 + call-bound: 1.0.4 11452 11966 es-errors: 1.3.0 11453 11967 is-data-view: 1.0.2 11454 11968 11455 11969 data-view-byte-offset@1.0.1: 11456 11970 dependencies: 11457 - call-bound: 1.0.3 11971 + call-bound: 1.0.4 11458 11972 es-errors: 1.3.0 11459 11973 is-data-view: 1.0.2 11460 11974 ··· 11470 11984 dependencies: 11471 11985 ms: 2.1.3 11472 11986 11987 + debug@4.4.3: 11988 + dependencies: 11989 + ms: 2.1.3 11990 + 11473 11991 decimal.js@10.6.0: {} 11474 11992 11475 11993 decode-uri-component@0.2.2: {} ··· 11508 12026 11509 12027 detect-libc@1.0.3: {} 11510 12028 11511 - detect-libc@2.0.3: 11512 - optional: true 12029 + detect-libc@2.0.3: {} 11513 12030 11514 12031 detect-newline@3.1.0: {} 11515 12032 ··· 11521 12038 11522 12039 diff@4.0.2: {} 11523 12040 12041 + dir-glob@3.0.1: 12042 + dependencies: 12043 + path-type: 4.0.0 12044 + 11524 12045 dlv@1.1.3: {} 11525 12046 11526 12047 doctrine@2.1.0: ··· 11559 12080 11560 12081 dotenv@16.4.7: {} 11561 12082 11562 - dunder-proto@1.0.0: 11563 - dependencies: 11564 - call-bind-apply-helpers: 1.0.1 11565 - es-errors: 1.3.0 11566 - gopd: 1.2.0 11567 - 11568 12083 dunder-proto@1.0.1: 11569 12084 dependencies: 11570 - call-bind-apply-helpers: 1.0.1 12085 + call-bind-apply-helpers: 1.0.2 11571 12086 es-errors: 1.3.0 11572 12087 gopd: 1.2.0 11573 12088 ··· 11589 12104 11590 12105 ee-first@1.1.1: {} 11591 12106 11592 - electron-to-chromium@1.5.76: {} 12107 + electron-to-chromium@1.5.230: {} 11593 12108 11594 12109 emittery@0.13.1: {} 11595 12110 ··· 11603 12118 11604 12119 encodeurl@2.0.0: {} 11605 12120 11606 - enhanced-resolve@5.17.1: 12121 + enhanced-resolve@5.18.3: 11607 12122 dependencies: 11608 12123 graceful-fs: 4.2.11 11609 - tapable: 2.2.1 12124 + tapable: 2.3.0 11610 12125 11611 12126 entities@4.5.0: {} 11612 12127 ··· 11620 12135 dependencies: 11621 12136 is-arrayish: 0.2.1 11622 12137 12138 + error-ex@1.3.4: 12139 + dependencies: 12140 + is-arrayish: 0.2.1 12141 + 11623 12142 error-stack-parser@2.1.4: 11624 12143 dependencies: 11625 12144 stackframe: 1.3.4 11626 12145 11627 - es-abstract@1.23.8: 12146 + es-abstract@1.24.0: 11628 12147 dependencies: 11629 12148 array-buffer-byte-length: 1.0.2 11630 12149 arraybuffer.prototype.slice: 1.0.4 11631 12150 available-typed-arrays: 1.0.7 11632 12151 call-bind: 1.0.8 11633 - call-bound: 1.0.3 12152 + call-bound: 1.0.4 11634 12153 data-view-buffer: 1.0.2 11635 12154 data-view-byte-length: 1.0.2 11636 12155 data-view-byte-offset: 1.0.1 11637 12156 es-define-property: 1.0.1 11638 12157 es-errors: 1.3.0 11639 - es-object-atoms: 1.0.0 11640 - es-set-tostringtag: 2.0.3 12158 + es-object-atoms: 1.1.1 12159 + es-set-tostringtag: 2.1.0 11641 12160 es-to-primitive: 1.3.0 11642 12161 function.prototype.name: 1.1.8 11643 - get-intrinsic: 1.2.6 12162 + get-intrinsic: 1.3.0 12163 + get-proto: 1.0.1 11644 12164 get-symbol-description: 1.1.0 11645 12165 globalthis: 1.0.4 11646 12166 gopd: 1.2.0 ··· 11652 12172 is-array-buffer: 3.0.5 11653 12173 is-callable: 1.2.7 11654 12174 is-data-view: 1.0.2 12175 + is-negative-zero: 2.0.3 11655 12176 is-regex: 1.2.1 12177 + is-set: 2.0.3 11656 12178 is-shared-array-buffer: 1.0.4 11657 12179 is-string: 1.1.1 11658 12180 is-typed-array: 1.1.15 11659 - is-weakref: 1.1.0 12181 + is-weakref: 1.1.1 11660 12182 math-intrinsics: 1.1.0 11661 - object-inspect: 1.13.3 12183 + object-inspect: 1.13.4 11662 12184 object-keys: 1.1.1 11663 12185 object.assign: 4.1.7 11664 12186 own-keys: 1.0.1 11665 - regexp.prototype.flags: 1.5.3 12187 + regexp.prototype.flags: 1.5.4 11666 12188 safe-array-concat: 1.1.3 11667 12189 safe-push-apply: 1.0.0 11668 12190 safe-regex-test: 1.1.0 12191 + set-proto: 1.0.0 12192 + stop-iteration-iterator: 1.1.0 11669 12193 string.prototype.trim: 1.2.10 11670 12194 string.prototype.trimend: 1.0.9 11671 12195 string.prototype.trimstart: 1.0.8 ··· 11674 12198 typed-array-byte-offset: 1.0.4 11675 12199 typed-array-length: 1.0.7 11676 12200 unbox-primitive: 1.1.0 11677 - which-typed-array: 1.1.18 12201 + which-typed-array: 1.1.19 11678 12202 11679 12203 es-define-property@1.0.1: {} 11680 12204 ··· 11683 12207 es-iterator-helpers@1.2.1: 11684 12208 dependencies: 11685 12209 call-bind: 1.0.8 11686 - call-bound: 1.0.3 12210 + call-bound: 1.0.4 11687 12211 define-properties: 1.2.1 11688 - es-abstract: 1.23.8 12212 + es-abstract: 1.24.0 11689 12213 es-errors: 1.3.0 11690 - es-set-tostringtag: 2.0.3 12214 + es-set-tostringtag: 2.1.0 11691 12215 function-bind: 1.1.2 11692 - get-intrinsic: 1.2.6 12216 + get-intrinsic: 1.3.0 11693 12217 globalthis: 1.0.4 11694 12218 gopd: 1.2.0 11695 12219 has-property-descriptors: 1.0.2 11696 12220 has-proto: 1.2.0 11697 12221 has-symbols: 1.1.0 11698 12222 internal-slot: 1.1.0 11699 - iterator.prototype: 1.1.4 12223 + iterator.prototype: 1.1.5 11700 12224 safe-array-concat: 1.1.3 11701 12225 11702 - es-module-lexer@1.6.0: {} 12226 + es-module-lexer@1.7.0: {} 11703 12227 11704 - es-object-atoms@1.0.0: 12228 + es-object-atoms@1.1.1: 11705 12229 dependencies: 11706 12230 es-errors: 1.3.0 11707 12231 11708 - es-set-tostringtag@2.0.3: 11709 - dependencies: 11710 - get-intrinsic: 1.2.6 11711 - has-tostringtag: 1.0.2 11712 - hasown: 2.0.2 11713 - 11714 12232 es-set-tostringtag@2.1.0: 11715 12233 dependencies: 11716 12234 es-errors: 1.3.0 11717 - get-intrinsic: 1.2.6 12235 + get-intrinsic: 1.3.0 11718 12236 has-tostringtag: 1.0.2 11719 12237 hasown: 2.0.2 11720 12238 11721 - es-shim-unscopables@1.0.2: 12239 + es-shim-unscopables@1.1.0: 11722 12240 dependencies: 11723 12241 hasown: 2.0.2 11724 12242 ··· 11746 12264 optionalDependencies: 11747 12265 source-map: 0.6.1 11748 12266 11749 - eslint-config-expo@9.2.0(eslint@8.57.1)(typescript@5.8.3): 12267 + eslint-config-expo@7.1.2(eslint@8.57.1)(typescript@5.9.3): 11750 12268 dependencies: 11751 - '@typescript-eslint/eslint-plugin': 8.19.0(@typescript-eslint/parser@8.19.0(eslint@8.57.1)(typescript@5.8.3))(eslint@8.57.1)(typescript@5.8.3) 11752 - '@typescript-eslint/parser': 8.19.0(eslint@8.57.1)(typescript@5.8.3) 12269 + '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1)(typescript@5.9.3) 12270 + '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.9.3) 11753 12271 eslint: 8.57.1 11754 - eslint-import-resolver-typescript: 3.7.0(eslint-plugin-import@2.31.0)(eslint@8.57.1) 11755 - eslint-plugin-expo: 0.1.4(eslint@8.57.1)(typescript@5.8.3) 11756 - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.19.0(eslint@8.57.1)(typescript@5.8.3))(eslint-import-resolver-typescript@3.7.0)(eslint@8.57.1) 11757 - eslint-plugin-react: 7.37.3(eslint@8.57.1) 11758 - eslint-plugin-react-hooks: 5.2.0(eslint@8.57.1) 11759 - globals: 16.2.0 12272 + eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@8.57.1) 12273 + eslint-plugin-expo: 0.0.1(eslint@8.57.1)(typescript@5.9.3) 12274 + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1) 12275 + eslint-plugin-react: 7.37.5(eslint@8.57.1) 12276 + eslint-plugin-react-hooks: 4.6.2(eslint@8.57.1) 11760 12277 transitivePeerDependencies: 11761 12278 - eslint-import-resolver-webpack 11762 12279 - eslint-plugin-import-x ··· 11771 12288 transitivePeerDependencies: 11772 12289 - supports-color 11773 12290 11774 - eslint-import-resolver-typescript@3.7.0(eslint-plugin-import@2.31.0)(eslint@8.57.1): 12291 + eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0)(eslint@8.57.1): 11775 12292 dependencies: 11776 12293 '@nolyfill/is-core-module': 1.0.39 11777 - debug: 4.4.0 11778 - enhanced-resolve: 5.17.1 12294 + debug: 4.4.3 11779 12295 eslint: 8.57.1 11780 - fast-glob: 3.3.2 11781 - get-tsconfig: 4.8.1 11782 - is-bun-module: 1.3.0 11783 - is-glob: 4.0.3 11784 - stable-hash: 0.0.4 12296 + get-tsconfig: 4.10.1 12297 + is-bun-module: 2.0.0 12298 + stable-hash: 0.0.5 12299 + tinyglobby: 0.2.15 12300 + unrs-resolver: 1.11.1 11785 12301 optionalDependencies: 11786 - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.19.0(eslint@8.57.1)(typescript@5.8.3))(eslint-import-resolver-typescript@3.7.0)(eslint@8.57.1) 12302 + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1) 11787 12303 transitivePeerDependencies: 11788 12304 - supports-color 11789 12305 11790 - eslint-module-utils@2.12.0(@typescript-eslint/parser@8.19.0(eslint@8.57.1)(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.7.0)(eslint@8.57.1): 12306 + eslint-module-utils@2.12.1(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1): 11791 12307 dependencies: 11792 12308 debug: 3.2.7 11793 12309 optionalDependencies: 11794 - '@typescript-eslint/parser': 8.19.0(eslint@8.57.1)(typescript@5.8.3) 12310 + '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.9.3) 11795 12311 eslint: 8.57.1 11796 12312 eslint-import-resolver-node: 0.3.9 11797 - eslint-import-resolver-typescript: 3.7.0(eslint-plugin-import@2.31.0)(eslint@8.57.1) 12313 + eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@8.57.1) 12314 + transitivePeerDependencies: 12315 + - supports-color 12316 + 12317 + eslint-plugin-expo@0.0.1(eslint@8.57.1)(typescript@5.9.3): 12318 + dependencies: 12319 + '@typescript-eslint/types': 7.18.0 12320 + '@typescript-eslint/utils': 7.18.0(eslint@8.57.1)(typescript@5.9.3) 12321 + eslint: 8.57.1 11798 12322 transitivePeerDependencies: 11799 12323 - supports-color 12324 + - typescript 11800 12325 11801 - eslint-plugin-expo@0.1.4(eslint@8.57.1)(typescript@5.8.3): 12326 + eslint-plugin-expo@1.0.0(eslint@8.57.1)(typescript@5.9.3): 11802 12327 dependencies: 11803 - '@typescript-eslint/types': 8.33.1 11804 - '@typescript-eslint/utils': 8.33.1(eslint@8.57.1)(typescript@5.8.3) 12328 + '@typescript-eslint/types': 8.45.0 12329 + '@typescript-eslint/utils': 8.45.0(eslint@8.57.1)(typescript@5.9.3) 11805 12330 eslint: 8.57.1 11806 12331 transitivePeerDependencies: 11807 12332 - supports-color 11808 12333 - typescript 11809 12334 11810 - eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.19.0(eslint@8.57.1)(typescript@5.8.3))(eslint-import-resolver-typescript@3.7.0)(eslint@8.57.1): 12335 + eslint-plugin-import@2.32.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1): 11811 12336 dependencies: 11812 12337 '@rtsao/scc': 1.1.0 11813 - array-includes: 3.1.8 11814 - array.prototype.findlastindex: 1.2.5 12338 + array-includes: 3.1.9 12339 + array.prototype.findlastindex: 1.2.6 11815 12340 array.prototype.flat: 1.3.3 11816 12341 array.prototype.flatmap: 1.3.3 11817 12342 debug: 3.2.7 11818 12343 doctrine: 2.1.0 11819 12344 eslint: 8.57.1 11820 12345 eslint-import-resolver-node: 0.3.9 11821 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.19.0(eslint@8.57.1)(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.7.0)(eslint@8.57.1) 12346 + eslint-module-utils: 2.12.1(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1) 11822 12347 hasown: 2.0.2 11823 12348 is-core-module: 2.16.1 11824 12349 is-glob: 4.0.3 ··· 11830 12355 string.prototype.trimend: 1.0.9 11831 12356 tsconfig-paths: 3.15.0 11832 12357 optionalDependencies: 11833 - '@typescript-eslint/parser': 8.19.0(eslint@8.57.1)(typescript@5.8.3) 12358 + '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.9.3) 11834 12359 transitivePeerDependencies: 11835 12360 - eslint-import-resolver-typescript 11836 12361 - eslint-import-resolver-webpack ··· 11838 12363 11839 12364 eslint-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206(eslint@8.57.1): 11840 12365 dependencies: 11841 - '@babel/core': 7.26.0 11842 - '@babel/parser': 7.26.3 11843 - '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.26.0) 12366 + '@babel/core': 7.28.4 12367 + '@babel/parser': 7.28.4 12368 + '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.28.4) 11844 12369 eslint: 8.57.1 11845 12370 hermes-parser: 0.25.1 11846 - zod: 3.23.8 11847 - zod-validation-error: 3.4.0(zod@3.23.8) 12371 + zod: 3.25.76 12372 + zod-validation-error: 3.4.0(zod@3.25.76) 11848 12373 transitivePeerDependencies: 11849 12374 - supports-color 11850 12375 11851 - eslint-plugin-react-hooks@5.2.0(eslint@8.57.1): 12376 + eslint-plugin-react-hooks@4.6.2(eslint@8.57.1): 11852 12377 dependencies: 11853 12378 eslint: 8.57.1 11854 12379 11855 - eslint-plugin-react@7.37.3(eslint@8.57.1): 12380 + eslint-plugin-react@7.37.5(eslint@8.57.1): 11856 12381 dependencies: 11857 - array-includes: 3.1.8 12382 + array-includes: 3.1.9 11858 12383 array.prototype.findlast: 1.2.5 11859 12384 array.prototype.flatmap: 1.3.3 11860 12385 array.prototype.tosorted: 1.1.4 ··· 11865 12390 hasown: 2.0.2 11866 12391 jsx-ast-utils: 3.3.5 11867 12392 minimatch: 3.1.2 11868 - object.entries: 1.1.8 12393 + object.entries: 1.1.9 11869 12394 object.fromentries: 2.0.8 11870 12395 object.values: 1.2.1 11871 12396 prop-types: 15.8.1 ··· 11886 12411 11887 12412 eslint-visitor-keys@3.4.3: {} 11888 12413 11889 - eslint-visitor-keys@4.2.0: {} 12414 + eslint-visitor-keys@4.2.1: {} 11890 12415 11891 12416 eslint@8.57.1: 11892 12417 dependencies: 11893 - '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1) 12418 + '@eslint-community/eslint-utils': 4.9.0(eslint@8.57.1) 11894 12419 '@eslint-community/regexpp': 4.12.1 11895 12420 '@eslint/eslintrc': 2.1.4 11896 12421 '@eslint/js': 8.57.1 11897 12422 '@humanwhocodes/config-array': 0.13.0 11898 12423 '@humanwhocodes/module-importer': 1.0.1 11899 12424 '@nodelib/fs.walk': 1.2.8 11900 - '@ungap/structured-clone': 1.2.1 12425 + '@ungap/structured-clone': 1.3.0 11901 12426 ajv: 6.12.6 11902 12427 chalk: 4.1.2 11903 12428 cross-spawn: 7.0.6 11904 - debug: 4.4.0 12429 + debug: 4.4.3 11905 12430 doctrine: 3.0.0 11906 12431 escape-string-regexp: 4.0.0 11907 12432 eslint-scope: 7.2.2 ··· 11933 12458 11934 12459 espree@9.6.1: 11935 12460 dependencies: 11936 - acorn: 8.14.0 11937 - acorn-jsx: 5.3.2(acorn@8.14.0) 12461 + acorn: 8.15.0 12462 + acorn-jsx: 5.3.2(acorn@8.15.0) 11938 12463 eslint-visitor-keys: 3.4.3 11939 12464 11940 12465 esprima@4.0.1: {} ··· 11994 12519 11995 12520 exit-x@0.2.2: {} 11996 12521 12522 + exit@0.1.2: {} 12523 + 11997 12524 expect@29.7.0: 11998 12525 dependencies: 11999 12526 '@jest/expect-utils': 29.7.0 ··· 12011 12538 jest-mock: 30.2.0 12012 12539 jest-util: 30.2.0 12013 12540 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): 12541 + expo-asset@12.0.9(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): 12015 12542 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) 12543 + '@expo/image-utils': 0.8.7 12544 + expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 12545 + expo-constants: 18.0.9(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)) 12546 + react: 19.1.0 12547 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 12548 + transitivePeerDependencies: 12549 + - supports-color 12550 + 12551 + expo-asset@12.0.9(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0): 12552 + dependencies: 12553 + '@expo/image-utils': 0.8.7 12554 + expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0) 12555 + expo-constants: 18.0.9(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0)) 12556 + react: 19.2.0 12557 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0) 12021 12558 transitivePeerDependencies: 12022 12559 - supports-color 12023 12560 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): 12561 + expo-constants@18.0.9(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)): 12025 12562 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) 12563 + '@expo/config': 12.0.10 12564 + '@expo/env': 2.0.7 12565 + expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 12566 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 12031 12567 transitivePeerDependencies: 12032 12568 - supports-color 12033 12569 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)): 12570 + expo-constants@18.0.9(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0)): 12035 12571 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) 12572 + '@expo/config': 12.0.10 12573 + '@expo/env': 2.0.7 12574 + expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0) 12575 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0) 12040 12576 transitivePeerDependencies: 12041 12577 - supports-color 12042 12578 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)): 12579 + expo-dev-client@6.0.13(expo@54.0.12): 12044 12580 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) 12581 + expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 12582 + expo-dev-launcher: 6.0.13(expo@54.0.12) 12583 + expo-dev-menu: 7.0.13(expo@54.0.12) 12584 + expo-dev-menu-interface: 2.0.0(expo@54.0.12) 12585 + expo-manifests: 1.0.8(expo@54.0.12) 12586 + expo-updates-interface: 2.0.0(expo@54.0.12) 12049 12587 transitivePeerDependencies: 12050 12588 - supports-color 12051 12589 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)): 12590 + expo-dev-launcher@6.0.13(expo@54.0.12): 12053 12591 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) 12592 + expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 12593 + expo-dev-menu: 7.0.13(expo@54.0.12) 12594 + expo-manifests: 1.0.8(expo@54.0.12) 12058 12595 transitivePeerDependencies: 12059 12596 - supports-color 12060 12597 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)): 12598 + expo-dev-menu-interface@2.0.0(expo@54.0.12): 12062 12599 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) 12600 + expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 12065 12601 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)): 12602 + expo-dev-menu@7.0.13(expo@54.0.12): 12067 12603 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) 12604 + expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 12605 + expo-dev-menu-interface: 2.0.0(expo@54.0.12) 12070 12606 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): 12607 + expo-file-system@19.0.16(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)): 12072 12608 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) 12609 + expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 12610 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 12611 + 12612 + expo-file-system@19.0.16(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0)): 12613 + dependencies: 12614 + expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0) 12615 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0) 12616 + 12617 + expo-font@14.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): 12618 + dependencies: 12619 + expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 12074 12620 fontfaceobserver: 2.3.0 12075 - react: 19.0.0 12621 + react: 19.1.0 12622 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 12076 12623 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): 12624 + expo-font@14.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0): 12078 12625 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) 12626 + expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0) 12080 12627 fontfaceobserver: 2.3.0 12081 - react: 19.0.0 12628 + react: 19.2.0 12629 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0) 12082 12630 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): 12631 + expo-image-loader@6.0.0(expo@54.0.12): 12084 12632 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 12633 + expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 12088 12634 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)): 12635 + expo-image-picker@17.0.8(expo@54.0.12): 12090 12636 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) 12637 + expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 12638 + expo-image-loader: 6.0.0(expo@54.0.12) 12639 + 12640 + expo-json-utils@0.15.0: {} 12092 12641 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)): 12642 + expo-keep-awake@15.0.7(expo@54.0.12)(react@19.1.0): 12094 12643 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)) 12644 + expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 12645 + react: 19.1.0 12097 12646 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): 12647 + expo-keep-awake@15.0.7(expo@54.0.12)(react@19.2.0): 12099 12648 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 12649 + expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0) 12650 + react: 19.2.0 12102 12651 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): 12652 + expo-linking@8.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): 12104 12653 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 12654 + expo-constants: 18.0.9(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)) 12655 + invariant: 2.2.4 12656 + react: 19.1.0 12657 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 12658 + transitivePeerDependencies: 12659 + - expo 12660 + - supports-color 12107 12661 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): 12662 + expo-linking@8.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0): 12109 12663 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)) 12664 + expo-constants: 18.0.9(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0)) 12111 12665 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) 12666 + react: 19.2.0 12667 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0) 12114 12668 transitivePeerDependencies: 12115 12669 - expo 12116 12670 - supports-color 12671 + optional: true 12117 12672 12118 - expo-modules-autolinking@2.1.14: 12673 + expo-manifests@1.0.8(expo@54.0.12): 12674 + dependencies: 12675 + '@expo/config': 12.0.10 12676 + expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 12677 + expo-json-utils: 0.15.0 12678 + transitivePeerDependencies: 12679 + - supports-color 12680 + 12681 + expo-modules-autolinking@3.0.14: 12119 12682 dependencies: 12120 12683 '@expo/spawn-async': 1.7.2 12121 12684 chalk: 4.1.2 12122 12685 commander: 7.2.0 12123 - find-up: 5.0.0 12124 12686 glob: 10.4.5 12125 12687 require-from-string: 2.0.2 12126 12688 resolve-from: 5.0.0 12127 12689 12128 - expo-modules-core@2.5.0: 12690 + expo-modules-core@3.0.20(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): 12691 + dependencies: 12692 + invariant: 2.2.4 12693 + react: 19.1.0 12694 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 12695 + 12696 + expo-modules-core@3.0.20(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0): 12129 12697 dependencies: 12130 12698 invariant: 2.2.4 12699 + react: 19.2.0 12700 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0) 12131 12701 12132 - expo-router@5.0.6(swn7sosa2qiea4b4emiyaeta54): 12702 + expo-router@6.0.10(5ksirenzi7d22pfewzdrt6o6y4): 12703 + dependencies: 12704 + '@expo/metro-runtime': 6.1.2(expo@54.0.12)(react-dom@19.2.0(react@19.2.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0) 12705 + '@expo/schema-utils': 0.1.7 12706 + '@radix-ui/react-slot': 1.2.0(@types/react@19.2.0)(react@19.2.0) 12707 + '@radix-ui/react-tabs': 1.1.13(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) 12708 + '@react-navigation/bottom-tabs': 7.4.8(@react-navigation/native@7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native-screens@4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0) 12709 + '@react-navigation/native': 7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0) 12710 + '@react-navigation/native-stack': 7.3.27(@react-navigation/native@7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native-screens@4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0) 12711 + client-only: 0.0.1 12712 + debug: 4.4.0 12713 + escape-string-regexp: 4.0.0 12714 + expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0) 12715 + expo-constants: 18.0.9(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0)) 12716 + expo-linking: 8.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0) 12717 + expo-server: 1.0.0 12718 + fast-deep-equal: 3.1.3 12719 + invariant: 2.2.4 12720 + nanoid: 3.3.11 12721 + query-string: 7.1.3 12722 + react: 19.2.0 12723 + react-fast-compare: 3.2.2 12724 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0) 12725 + react-native-is-edge-to-edge: 1.1.7(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0) 12726 + react-native-safe-area-context: 5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0) 12727 + react-native-screens: 4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0) 12728 + semver: 7.6.3 12729 + server-only: 0.0.1 12730 + sf-symbols-typescript: 2.1.0 12731 + shallowequal: 1.1.0 12732 + use-latest-callback: 0.2.3(react@19.2.0) 12733 + vaul: 1.1.2(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) 12734 + optionalDependencies: 12735 + '@testing-library/react-native': 13.3.3(jest@30.2.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3)))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react-test-renderer@19.1.0(react@19.2.0))(react@19.2.0) 12736 + react-dom: 19.2.0(react@19.2.0) 12737 + react-native-gesture-handler: 2.28.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0) 12738 + react-native-reanimated: 4.1.2(@babel/core@7.28.4)(react-native-worklets@0.6.0(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0) 12739 + react-native-web: 0.21.1(react-dom@19.2.0(react@19.2.0))(react@19.2.0) 12740 + react-server-dom-webpack: 19.0.0(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(webpack@5.97.1) 12741 + transitivePeerDependencies: 12742 + - '@react-native-masked-view/masked-view' 12743 + - '@types/react' 12744 + - '@types/react-dom' 12745 + - supports-color 12746 + optional: true 12747 + 12748 + expo-router@6.0.10(dyms6en36i74il5wcg7sgjxr3a): 12133 12749 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) 12750 + '@expo/metro-runtime': 6.1.2(expo@54.0.12)(react-dom@19.1.0(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 12751 + '@expo/schema-utils': 0.1.7 12752 + '@radix-ui/react-slot': 1.2.0(@types/react@19.1.17)(react@19.1.0) 12753 + '@radix-ui/react-tabs': 1.1.13(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 12754 + '@react-navigation/bottom-tabs': 7.4.8(@react-navigation/native@7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-screens@4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 12755 + '@react-navigation/native': 7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 12756 + '@react-navigation/native-stack': 7.3.27(@react-navigation/native@7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-screens@4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 12140 12757 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) 12758 + debug: 4.4.0 12759 + escape-string-regexp: 4.0.0 12760 + expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 12761 + expo-constants: 18.0.9(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)) 12762 + expo-linking: 8.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 12763 + expo-server: 1.0.0 12764 + fast-deep-equal: 3.1.3 12144 12765 invariant: 2.2.4 12766 + nanoid: 3.3.11 12767 + query-string: 7.1.3 12768 + react: 19.1.0 12145 12769 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 12770 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 12771 + react-native-is-edge-to-edge: 1.1.7(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 12772 + react-native-safe-area-context: 5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 12773 + react-native-screens: 4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 12150 12774 semver: 7.6.3 12151 12775 server-only: 0.0.1 12776 + sf-symbols-typescript: 2.1.0 12152 12777 shallowequal: 1.1.0 12778 + use-latest-callback: 0.2.3(react@19.1.0) 12779 + vaul: 1.1.2(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 12153 12780 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) 12781 + '@testing-library/react-native': 13.3.3(jest@29.7.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3)))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react-test-renderer@19.1.0(react@19.1.0))(react@19.1.0) 12782 + react-dom: 19.1.0(react@19.1.0) 12783 + react-native-gesture-handler: 2.28.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 12784 + react-native-reanimated: 4.1.2(@babel/core@7.28.4)(react-native-worklets@0.6.0(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 12785 + react-native-web: 0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 12786 + react-server-dom-webpack: 19.0.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(webpack@5.97.1) 12155 12787 transitivePeerDependencies: 12156 12788 - '@react-native-masked-view/masked-view' 12157 12789 - '@types/react' 12158 - - react 12159 - - react-native 12790 + - '@types/react-dom' 12160 12791 - supports-color 12161 12792 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)): 12793 + expo-server@1.0.0: {} 12794 + 12795 + expo-splash-screen@31.0.10(expo@54.0.12): 12163 12796 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) 12797 + '@expo/prebuild-config': 54.0.4(expo@54.0.12) 12798 + expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 12166 12799 transitivePeerDependencies: 12167 12800 - supports-color 12168 12801 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): 12802 + expo-sqlite@15.2.9(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): 12803 + dependencies: 12804 + expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 12805 + react: 19.1.0 12806 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 12807 + 12808 + expo-sqlite@16.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): 12170 12809 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) 12810 + await-lock: 2.2.2 12811 + expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 12812 + react: 19.1.0 12813 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 12174 12814 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): 12815 + expo-status-bar@3.0.8(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): 12176 12816 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) 12817 + react: 19.1.0 12818 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 12819 + react-native-is-edge-to-edge: 1.2.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 12181 12820 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)): 12821 + expo-system-ui@6.0.7(expo@54.0.12)(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)): 12183 12822 dependencies: 12184 - '@react-native/normalize-colors': 0.79.2 12823 + '@react-native/normalize-colors': 0.81.4 12185 12824 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) 12825 + expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 12826 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 12188 12827 optionalDependencies: 12189 - react-native-web: 0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 12828 + react-native-web: 0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 12190 12829 transitivePeerDependencies: 12191 12830 - supports-color 12192 12831 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)): 12832 + expo-updates-interface@2.0.0(expo@54.0.12): 12194 12833 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) 12834 + expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 12197 12835 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): 12836 + expo-web-browser@15.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)): 12199 12837 dependencies: 12200 - '@babel/runtime': 7.26.0 12201 - '@expo/cli': 0.24.20 12202 - '@expo/config': 11.0.13 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) 12838 + expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 12839 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 12840 + 12841 + expo@54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): 12842 + dependencies: 12843 + '@babel/runtime': 7.28.4 12844 + '@expo/cli': 54.0.10(expo-router@6.0.10)(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)) 12845 + '@expo/config': 12.0.10 12846 + '@expo/config-plugins': 54.0.2 12847 + '@expo/devtools': 0.1.7(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 12848 + '@expo/fingerprint': 0.15.1 12849 + '@expo/metro': 54.0.0 12850 + '@expo/metro-config': 54.0.6(expo@54.0.12) 12851 + '@expo/vector-icons': 15.0.2(expo-font@14.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 12852 + '@ungap/structured-clone': 1.3.0 12853 + babel-preset-expo: 54.0.3(@babel/core@7.28.4)(@babel/runtime@7.28.4)(expo@54.0.12)(react-refresh@0.14.2) 12854 + expo-asset: 12.0.9(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 12855 + expo-constants: 18.0.9(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)) 12856 + expo-file-system: 19.0.16(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)) 12857 + expo-font: 14.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 12858 + expo-keep-awake: 15.0.7(expo@54.0.12)(react@19.1.0) 12859 + expo-modules-autolinking: 3.0.14 12860 + expo-modules-core: 3.0.20(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 12861 + pretty-format: 29.7.0 12862 + react: 19.1.0 12863 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 12864 + react-refresh: 0.14.2 12218 12865 whatwg-url-without-unicode: 8.0.0-3 12219 12866 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)) 12867 + '@expo/metro-runtime': 6.1.2(expo@54.0.12)(react-dom@19.1.0(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 12221 12868 transitivePeerDependencies: 12222 12869 - '@babel/core' 12223 - - babel-plugin-react-compiler 12870 + - '@modelcontextprotocol/sdk' 12224 12871 - bufferutil 12872 + - expo-router 12225 12873 - graphql 12226 12874 - supports-color 12227 12875 - utf-8-validate 12228 12876 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): 12877 + expo@54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0): 12230 12878 dependencies: 12231 - '@babel/runtime': 7.26.0 12232 - '@expo/cli': 0.24.20 12233 - '@expo/config': 11.0.13 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) 12879 + '@babel/runtime': 7.28.4 12880 + '@expo/cli': 54.0.10(expo-router@6.0.10)(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0)) 12881 + '@expo/config': 12.0.10 12882 + '@expo/config-plugins': 54.0.2 12883 + '@expo/devtools': 0.1.7(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0) 12884 + '@expo/fingerprint': 0.15.1 12885 + '@expo/metro': 54.0.0 12886 + '@expo/metro-config': 54.0.6(expo@54.0.12) 12887 + '@expo/vector-icons': 15.0.2(expo-font@14.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0) 12888 + '@ungap/structured-clone': 1.3.0 12889 + babel-preset-expo: 54.0.3(@babel/core@7.28.4)(@babel/runtime@7.28.4)(expo@54.0.12)(react-refresh@0.14.2) 12890 + expo-asset: 12.0.9(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0) 12891 + expo-constants: 18.0.9(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0)) 12892 + expo-file-system: 19.0.16(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0)) 12893 + expo-font: 14.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0) 12894 + expo-keep-awake: 15.0.7(expo@54.0.12)(react@19.2.0) 12895 + expo-modules-autolinking: 3.0.14 12896 + expo-modules-core: 3.0.20(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0) 12897 + pretty-format: 29.7.0 12898 + react: 19.2.0 12899 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0) 12900 + react-refresh: 0.14.2 12249 12901 whatwg-url-without-unicode: 8.0.0-3 12250 12902 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)) 12903 + '@expo/metro-runtime': 6.1.2(expo@54.0.12)(react-dom@19.2.0(react@19.2.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0) 12252 12904 transitivePeerDependencies: 12253 12905 - '@babel/core' 12254 - - babel-plugin-react-compiler 12906 + - '@modelcontextprotocol/sdk' 12255 12907 - bufferutil 12908 + - expo-router 12256 12909 - graphql 12257 12910 - supports-color 12258 12911 - utf-8-validate ··· 12301 12954 12302 12955 fast-deep-equal@3.1.3: {} 12303 12956 12304 - fast-glob@3.3.2: 12957 + fast-glob@3.3.3: 12305 12958 dependencies: 12306 12959 '@nodelib/fs.stat': 2.0.5 12307 12960 '@nodelib/fs.walk': 1.2.8 ··· 12317 12970 12318 12971 fast-uri@3.0.3: {} 12319 12972 12320 - fastq@1.17.1: 12973 + fastq@1.19.1: 12321 12974 dependencies: 12322 - reusify: 1.0.4 12975 + reusify: 1.1.0 12323 12976 12324 12977 fb-watchman@2.0.2: 12325 12978 dependencies: ··· 12339 12992 transitivePeerDependencies: 12340 12993 - encoding 12341 12994 12342 - fdir@6.4.2(picomatch@4.0.2): 12995 + fdir@6.5.0(picomatch@4.0.3): 12343 12996 optionalDependencies: 12344 - picomatch: 4.0.2 12997 + picomatch: 4.0.3 12345 12998 12346 12999 figures@1.7.0: 12347 13000 dependencies: ··· 12406 13059 12407 13060 flat-cache@3.2.0: 12408 13061 dependencies: 12409 - flatted: 3.3.2 13062 + flatted: 3.3.3 12410 13063 keyv: 4.5.4 12411 13064 rimraf: 3.0.2 12412 13065 12413 - flatted@3.3.2: {} 13066 + flatted@3.3.3: {} 12414 13067 12415 13068 flow-enums-runtime@0.0.6: {} 12416 13069 12417 13070 fontfaceobserver@2.3.0: {} 12418 13071 12419 13072 for-each@0.3.3: 13073 + dependencies: 13074 + is-callable: 1.2.7 13075 + 13076 + for-each@0.3.5: 12420 13077 dependencies: 12421 13078 is-callable: 1.2.7 12422 13079 ··· 12425 13082 cross-spawn: 7.0.6 12426 13083 signal-exit: 4.1.0 12427 13084 13085 + foreground-child@3.3.1: 13086 + dependencies: 13087 + cross-spawn: 7.0.6 13088 + signal-exit: 4.1.0 13089 + 12428 13090 forever-agent@0.6.1: {} 12429 13091 12430 13092 form-data@2.3.3: ··· 12472 13134 function.prototype.name@1.1.8: 12473 13135 dependencies: 12474 13136 call-bind: 1.0.8 12475 - call-bound: 1.0.3 13137 + call-bound: 1.0.4 12476 13138 define-properties: 1.2.1 12477 13139 functions-have-names: 1.2.3 12478 13140 hasown: 2.0.2 ··· 12480 13142 12481 13143 functions-have-names@1.2.3: {} 12482 13144 13145 + generator-function@2.0.1: {} 13146 + 12483 13147 gensync@1.0.0-beta.2: {} 12484 13148 12485 13149 get-caller-file@2.0.5: {} 12486 13150 12487 - get-intrinsic@1.2.5: 13151 + get-intrinsic@1.2.6: 12488 13152 dependencies: 12489 13153 call-bind-apply-helpers: 1.0.1 12490 - dunder-proto: 1.0.0 13154 + dunder-proto: 1.0.1 12491 13155 es-define-property: 1.0.1 12492 13156 es-errors: 1.3.0 13157 + es-object-atoms: 1.1.1 12493 13158 function-bind: 1.1.2 12494 13159 gopd: 1.2.0 12495 13160 has-symbols: 1.1.0 12496 13161 hasown: 2.0.2 13162 + math-intrinsics: 1.1.0 12497 13163 12498 - get-intrinsic@1.2.6: 13164 + get-intrinsic@1.3.0: 12499 13165 dependencies: 12500 - call-bind-apply-helpers: 1.0.1 12501 - dunder-proto: 1.0.1 13166 + call-bind-apply-helpers: 1.0.2 12502 13167 es-define-property: 1.0.1 12503 13168 es-errors: 1.3.0 12504 - es-object-atoms: 1.0.0 13169 + es-object-atoms: 1.1.1 12505 13170 function-bind: 1.1.2 13171 + get-proto: 1.0.1 12506 13172 gopd: 1.2.0 12507 13173 has-symbols: 1.1.0 12508 13174 hasown: 2.0.2 ··· 12514 13180 12515 13181 get-port@3.2.0: {} 12516 13182 13183 + get-proto@1.0.1: 13184 + dependencies: 13185 + dunder-proto: 1.0.1 13186 + es-object-atoms: 1.1.1 13187 + 12517 13188 get-stream@6.0.1: {} 12518 13189 12519 13190 get-stream@9.0.1: ··· 12523 13194 12524 13195 get-symbol-description@1.1.0: 12525 13196 dependencies: 12526 - call-bound: 1.0.3 13197 + call-bound: 1.0.4 12527 13198 es-errors: 1.3.0 12528 - get-intrinsic: 1.2.6 13199 + get-intrinsic: 1.3.0 12529 13200 12530 - get-tsconfig@4.8.1: 13201 + get-tsconfig@4.10.1: 12531 13202 dependencies: 12532 13203 resolve-pkg-maps: 1.0.0 12533 - 12534 - getenv@1.0.0: {} 12535 13204 12536 13205 getenv@2.0.0: {} 12537 13206 ··· 12562 13231 dependencies: 12563 13232 foreground-child: 3.3.0 12564 13233 jackspeak: 4.0.2 12565 - minimatch: 10.0.1 13234 + minimatch: 10.0.3 13235 + minipass: 7.1.2 13236 + package-json-from-dist: 1.0.1 13237 + path-scurry: 2.0.0 13238 + 13239 + glob@11.0.3: 13240 + dependencies: 13241 + foreground-child: 3.3.1 13242 + jackspeak: 4.1.1 13243 + minimatch: 10.0.3 12566 13244 minipass: 7.1.2 12567 13245 package-json-from-dist: 1.0.1 12568 13246 path-scurry: 2.0.0 ··· 12582 13260 minimatch: 8.0.4 12583 13261 minipass: 4.2.8 12584 13262 path-scurry: 1.11.1 13263 + 13264 + global-dirs@0.1.1: 13265 + dependencies: 13266 + ini: 1.3.8 12585 13267 12586 13268 globals@11.12.0: {} 12587 13269 ··· 12589 13271 dependencies: 12590 13272 type-fest: 0.20.2 12591 13273 12592 - globals@16.2.0: {} 12593 - 12594 13274 globalthis@1.0.4: 12595 13275 dependencies: 12596 13276 define-properties: 1.2.1 12597 13277 gopd: 1.2.0 12598 13278 13279 + globby@11.1.0: 13280 + dependencies: 13281 + array-union: 2.1.0 13282 + dir-glob: 3.0.1 13283 + fast-glob: 3.3.3 13284 + ignore: 5.3.2 13285 + merge2: 1.4.1 13286 + slash: 3.0.0 13287 + 12599 13288 gopd@1.2.0: {} 12600 13289 12601 13290 graceful-fs@4.2.11: {} ··· 12641 13330 12642 13331 hermes-estree@0.25.1: {} 12643 13332 12644 - hermes-estree@0.28.1: {} 13333 + hermes-estree@0.29.1: {} 12645 13334 12646 13335 hermes-parser@0.25.1: 12647 13336 dependencies: 12648 13337 hermes-estree: 0.25.1 12649 13338 12650 - hermes-parser@0.28.1: 13339 + hermes-parser@0.29.1: 12651 13340 dependencies: 12652 - hermes-estree: 0.28.1 13341 + hermes-estree: 0.29.1 12653 13342 12654 13343 hoist-non-react-statics@3.3.2: 12655 13344 dependencies: ··· 12679 13368 dependencies: 12680 13369 '@tootallnate/once': 2.0.0 12681 13370 agent-base: 6.0.2 12682 - debug: 4.4.0 13371 + debug: 4.4.3 12683 13372 transitivePeerDependencies: 12684 13373 - supports-color 12685 13374 ··· 12692 13381 https-proxy-agent@5.0.1: 12693 13382 dependencies: 12694 13383 agent-base: 6.0.2 12695 - debug: 4.4.0 13384 + debug: 4.4.3 12696 13385 transitivePeerDependencies: 12697 13386 - supports-color 12698 13387 12699 13388 https-proxy-agent@7.0.6: 12700 13389 dependencies: 12701 13390 agent-base: 7.1.3 12702 - debug: 4.4.0 13391 + debug: 4.4.3 12703 13392 transitivePeerDependencies: 12704 13393 - supports-color 12705 13394 ··· 12730 13419 caller-path: 2.0.0 12731 13420 resolve-from: 3.0.0 12732 13421 12733 - import-fresh@3.3.0: 13422 + import-fresh@3.3.1: 12734 13423 dependencies: 12735 13424 parent-module: 1.0.1 12736 13425 resolve-from: 4.0.0 ··· 12741 13430 resolve-cwd: 3.0.0 12742 13431 12743 13432 imurmurhash@0.1.4: {} 13433 + 13434 + indent-string@4.0.0: {} 12744 13435 12745 13436 inflight@1.0.6: 12746 13437 dependencies: ··· 12798 13489 is-array-buffer@3.0.5: 12799 13490 dependencies: 12800 13491 call-bind: 1.0.8 12801 - call-bound: 1.0.3 12802 - get-intrinsic: 1.2.6 13492 + call-bound: 1.0.4 13493 + get-intrinsic: 1.3.0 12803 13494 12804 13495 is-arrayish@0.2.1: {} 12805 13496 12806 13497 is-arrayish@0.3.2: {} 12807 13498 12808 - is-async-function@2.0.0: 13499 + is-async-function@2.1.1: 12809 13500 dependencies: 13501 + async-function: 1.0.0 13502 + call-bound: 1.0.4 13503 + get-proto: 1.0.1 12810 13504 has-tostringtag: 1.0.2 13505 + safe-regex-test: 1.1.0 12811 13506 12812 13507 is-bigint@1.1.0: 12813 13508 dependencies: ··· 12817 13512 dependencies: 12818 13513 binary-extensions: 2.3.0 12819 13514 12820 - is-boolean-object@1.2.1: 13515 + is-boolean-object@1.2.2: 12821 13516 dependencies: 12822 - call-bound: 1.0.3 13517 + call-bound: 1.0.4 12823 13518 has-tostringtag: 1.0.2 12824 13519 12825 - is-bun-module@1.3.0: 13520 + is-bun-module@2.0.0: 12826 13521 dependencies: 12827 - semver: 7.6.3 13522 + semver: 7.7.2 12828 13523 12829 13524 is-callable@1.2.7: {} 12830 13525 ··· 12834 13529 12835 13530 is-data-view@1.0.2: 12836 13531 dependencies: 12837 - call-bound: 1.0.3 12838 - get-intrinsic: 1.2.6 13532 + call-bound: 1.0.4 13533 + get-intrinsic: 1.3.0 12839 13534 is-typed-array: 1.1.15 12840 13535 12841 13536 is-date-object@1.1.0: 12842 13537 dependencies: 12843 - call-bound: 1.0.3 13538 + call-bound: 1.0.4 12844 13539 has-tostringtag: 1.0.2 12845 13540 12846 13541 is-directory@0.3.1: {} ··· 12851 13546 12852 13547 is-finalizationregistry@1.1.1: 12853 13548 dependencies: 12854 - call-bound: 1.0.3 13549 + call-bound: 1.0.4 12855 13550 12856 13551 is-fullwidth-code-point@1.0.0: 12857 13552 dependencies: ··· 12865 13560 dependencies: 12866 13561 has-tostringtag: 1.0.2 12867 13562 13563 + is-generator-function@1.1.2: 13564 + dependencies: 13565 + call-bound: 1.0.4 13566 + generator-function: 2.0.1 13567 + get-proto: 1.0.1 13568 + has-tostringtag: 1.0.2 13569 + safe-regex-test: 1.1.0 13570 + 12868 13571 is-glob@4.0.3: 12869 13572 dependencies: 12870 13573 is-extglob: 2.1.1 12871 13574 12872 13575 is-map@2.0.3: {} 12873 13576 13577 + is-negative-zero@2.0.3: {} 13578 + 12874 13579 is-number-object@1.1.1: 12875 13580 dependencies: 12876 - call-bound: 1.0.3 13581 + call-bound: 1.0.4 12877 13582 has-tostringtag: 1.0.2 12878 13583 12879 13584 is-number@7.0.0: {} ··· 12888 13593 12889 13594 is-regex@1.2.1: 12890 13595 dependencies: 12891 - call-bound: 1.0.3 13596 + call-bound: 1.0.4 12892 13597 gopd: 1.2.0 12893 13598 has-tostringtag: 1.0.2 12894 13599 hasown: 2.0.2 ··· 12897 13602 12898 13603 is-shared-array-buffer@1.0.4: 12899 13604 dependencies: 12900 - call-bound: 1.0.3 13605 + call-bound: 1.0.4 12901 13606 12902 13607 is-stream@2.0.1: {} 12903 13608 ··· 12905 13610 12906 13611 is-string@1.1.1: 12907 13612 dependencies: 12908 - call-bound: 1.0.3 13613 + call-bound: 1.0.4 12909 13614 has-tostringtag: 1.0.2 12910 13615 12911 13616 is-symbol@1.1.1: 12912 13617 dependencies: 12913 - call-bound: 1.0.3 13618 + call-bound: 1.0.4 12914 13619 has-symbols: 1.1.0 12915 13620 safe-regex-test: 1.1.0 12916 13621 ··· 12924 13629 12925 13630 is-weakmap@2.0.2: {} 12926 13631 12927 - is-weakref@1.1.0: 13632 + is-weakref@1.1.1: 12928 13633 dependencies: 12929 - call-bound: 1.0.3 13634 + call-bound: 1.0.4 12930 13635 12931 13636 is-weakset@2.0.4: 12932 13637 dependencies: 12933 - call-bound: 1.0.3 12934 - get-intrinsic: 1.2.6 13638 + call-bound: 1.0.4 13639 + get-intrinsic: 1.3.0 12935 13640 12936 13641 is-wsl@2.2.0: 12937 13642 dependencies: ··· 12960 13665 istanbul-lib-instrument@6.0.3: 12961 13666 dependencies: 12962 13667 '@babel/core': 7.28.4 12963 - '@babel/parser': 7.26.3 13668 + '@babel/parser': 7.28.4 12964 13669 '@istanbuljs/schema': 0.1.3 12965 13670 istanbul-lib-coverage: 3.2.2 12966 13671 semver: 7.7.2 ··· 12973 13678 make-dir: 4.0.0 12974 13679 supports-color: 7.2.0 12975 13680 13681 + istanbul-lib-source-maps@4.0.1: 13682 + dependencies: 13683 + debug: 4.4.3 13684 + istanbul-lib-coverage: 3.2.2 13685 + source-map: 0.6.1 13686 + transitivePeerDependencies: 13687 + - supports-color 13688 + 12976 13689 istanbul-lib-source-maps@5.0.6: 12977 13690 dependencies: 12978 - '@jridgewell/trace-mapping': 0.3.25 12979 - debug: 4.4.0 13691 + '@jridgewell/trace-mapping': 0.3.31 13692 + debug: 4.4.3 12980 13693 istanbul-lib-coverage: 3.2.2 12981 13694 transitivePeerDependencies: 12982 13695 - supports-color ··· 12986 13699 html-escaper: 2.0.2 12987 13700 istanbul-lib-report: 3.0.1 12988 13701 12989 - iterator.prototype@1.1.4: 13702 + iterator.prototype@1.1.5: 12990 13703 dependencies: 12991 13704 define-data-property: 1.1.4 12992 - es-object-atoms: 1.0.0 12993 - get-intrinsic: 1.2.6 13705 + es-object-atoms: 1.1.1 13706 + get-intrinsic: 1.3.0 13707 + get-proto: 1.0.1 12994 13708 has-symbols: 1.1.0 12995 - reflect.getprototypeof: 1.0.9 12996 13709 set-function-name: 2.0.2 12997 13710 12998 13711 jackspeak@3.4.3: ··· 13005 13718 dependencies: 13006 13719 '@isaacs/cliui': 8.0.2 13007 13720 13721 + jackspeak@4.1.1: 13722 + dependencies: 13723 + '@isaacs/cliui': 8.0.2 13724 + 13725 + jest-changed-files@29.7.0: 13726 + dependencies: 13727 + execa: 5.1.1 13728 + jest-util: 29.7.0 13729 + p-limit: 3.1.0 13730 + 13008 13731 jest-changed-files@30.2.0: 13009 13732 dependencies: 13010 13733 execa: 5.1.1 13011 13734 jest-util: 30.2.0 13012 13735 p-limit: 3.1.0 13013 13736 13737 + jest-circus@29.7.0: 13738 + dependencies: 13739 + '@jest/environment': 29.7.0 13740 + '@jest/expect': 29.7.0 13741 + '@jest/test-result': 29.7.0 13742 + '@jest/types': 29.6.3 13743 + '@types/node': 22.18.8 13744 + chalk: 4.1.2 13745 + co: 4.6.0 13746 + dedent: 1.7.0 13747 + is-generator-fn: 2.1.0 13748 + jest-each: 29.7.0 13749 + jest-matcher-utils: 29.7.0 13750 + jest-message-util: 29.7.0 13751 + jest-runtime: 29.7.0 13752 + jest-snapshot: 29.7.0 13753 + jest-util: 29.7.0 13754 + p-limit: 3.1.0 13755 + pretty-format: 29.7.0 13756 + pure-rand: 6.1.0 13757 + slash: 3.0.0 13758 + stack-utils: 2.0.6 13759 + transitivePeerDependencies: 13760 + - babel-plugin-macros 13761 + - supports-color 13762 + 13014 13763 jest-circus@30.2.0: 13015 13764 dependencies: 13016 13765 '@jest/environment': 30.2.0 13017 13766 '@jest/expect': 30.2.0 13018 13767 '@jest/test-result': 30.2.0 13019 13768 '@jest/types': 30.2.0 13020 - '@types/node': 22.10.2 13769 + '@types/node': 22.18.8 13021 13770 chalk: 4.1.2 13022 13771 co: 4.6.0 13023 13772 dedent: 1.7.0 ··· 13037 13786 - babel-plugin-macros 13038 13787 - supports-color 13039 13788 13040 - jest-cli@30.2.0(@types/node@20.17.10): 13789 + jest-cli@29.7.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3)): 13041 13790 dependencies: 13042 - '@jest/core': 30.2.0(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)) 13043 - '@jest/test-result': 30.2.0 13044 - '@jest/types': 30.2.0 13791 + '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3)) 13792 + '@jest/test-result': 29.7.0 13793 + '@jest/types': 29.6.3 13045 13794 chalk: 4.1.2 13046 - exit-x: 0.2.2 13795 + create-jest: 29.7.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3)) 13796 + exit: 0.1.2 13047 13797 import-local: 3.2.0 13048 - jest-config: 30.2.0(@types/node@20.17.10) 13049 - jest-util: 30.2.0 13050 - jest-validate: 30.2.0 13798 + jest-config: 29.7.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3)) 13799 + jest-util: 29.7.0 13800 + jest-validate: 29.7.0 13051 13801 yargs: 17.7.2 13052 13802 transitivePeerDependencies: 13053 13803 - '@types/node' 13054 13804 - babel-plugin-macros 13055 - - esbuild-register 13056 13805 - supports-color 13057 13806 - ts-node 13058 13807 13059 - jest-cli@30.2.0(@types/node@22.10.2)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)): 13808 + jest-cli@30.2.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3)): 13060 13809 dependencies: 13061 - '@jest/core': 30.2.0(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)) 13810 + '@jest/core': 30.2.0(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3)) 13062 13811 '@jest/test-result': 30.2.0 13063 13812 '@jest/types': 30.2.0 13064 13813 chalk: 4.1.2 13065 13814 exit-x: 0.2.2 13066 13815 import-local: 3.2.0 13067 - jest-config: 30.2.0(@types/node@22.10.2)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)) 13816 + jest-config: 30.2.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3)) 13068 13817 jest-util: 30.2.0 13069 13818 jest-validate: 30.2.0 13070 13819 yargs: 17.7.2 ··· 13075 13824 - supports-color 13076 13825 - ts-node 13077 13826 13078 - jest-config@30.2.0(@types/node@20.17.10): 13827 + jest-config@29.7.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3)): 13079 13828 dependencies: 13080 13829 '@babel/core': 7.28.4 13081 - '@jest/get-type': 30.1.0 13082 - '@jest/pattern': 30.0.1 13083 - '@jest/test-sequencer': 30.2.0 13084 - '@jest/types': 30.2.0 13085 - babel-jest: 30.2.0(@babel/core@7.28.4) 13830 + '@jest/test-sequencer': 29.7.0 13831 + '@jest/types': 29.6.3 13832 + babel-jest: 29.7.0(@babel/core@7.28.4) 13086 13833 chalk: 4.1.2 13087 - ci-info: 4.3.0 13834 + ci-info: 3.9.0 13088 13835 deepmerge: 4.3.1 13089 - glob: 10.4.5 13836 + glob: 7.2.3 13090 13837 graceful-fs: 4.2.11 13091 - jest-circus: 30.2.0 13092 - jest-docblock: 30.2.0 13093 - jest-environment-node: 30.2.0 13094 - jest-regex-util: 30.0.1 13095 - jest-resolve: 30.2.0 13096 - jest-runner: 30.2.0 13097 - jest-util: 30.2.0 13098 - jest-validate: 30.2.0 13838 + jest-circus: 29.7.0 13839 + jest-environment-node: 29.7.0 13840 + jest-get-type: 29.6.3 13841 + jest-regex-util: 29.6.3 13842 + jest-resolve: 29.7.0 13843 + jest-runner: 29.7.0 13844 + jest-util: 29.7.0 13845 + jest-validate: 29.7.0 13099 13846 micromatch: 4.0.8 13100 13847 parse-json: 5.2.0 13101 - pretty-format: 30.2.0 13848 + pretty-format: 29.7.0 13102 13849 slash: 3.0.0 13103 13850 strip-json-comments: 3.1.1 13104 13851 optionalDependencies: 13105 - '@types/node': 20.17.10 13852 + '@types/node': 22.18.8 13853 + ts-node: 10.9.2(@types/node@22.18.8)(typescript@5.9.3) 13106 13854 transitivePeerDependencies: 13107 13855 - babel-plugin-macros 13108 13856 - supports-color 13109 13857 13110 - jest-config@30.2.0(@types/node@22.10.2)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)): 13858 + jest-config@30.2.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3)): 13111 13859 dependencies: 13112 13860 '@babel/core': 7.28.4 13113 13861 '@jest/get-type': 30.1.0 ··· 13134 13882 slash: 3.0.0 13135 13883 strip-json-comments: 3.1.1 13136 13884 optionalDependencies: 13137 - '@types/node': 22.10.2 13138 - ts-node: 10.9.2(@types/node@22.10.2)(typescript@5.8.3) 13885 + '@types/node': 22.18.8 13886 + ts-node: 10.9.2(@types/node@22.18.8)(typescript@5.9.3) 13139 13887 transitivePeerDependencies: 13140 13888 - babel-plugin-macros 13141 13889 - supports-color ··· 13154 13902 chalk: 4.1.2 13155 13903 pretty-format: 30.2.0 13156 13904 13905 + jest-docblock@29.7.0: 13906 + dependencies: 13907 + detect-newline: 3.1.0 13908 + 13157 13909 jest-docblock@30.2.0: 13158 13910 dependencies: 13159 13911 detect-newline: 3.1.0 13160 13912 13913 + jest-each@29.7.0: 13914 + dependencies: 13915 + '@jest/types': 29.6.3 13916 + chalk: 4.1.2 13917 + jest-get-type: 29.6.3 13918 + jest-util: 29.7.0 13919 + pretty-format: 29.7.0 13920 + 13161 13921 jest-each@30.2.0: 13162 13922 dependencies: 13163 13923 '@jest/get-type': 30.1.0 ··· 13172 13932 '@jest/fake-timers': 29.7.0 13173 13933 '@jest/types': 29.6.3 13174 13934 '@types/jsdom': 20.0.1 13175 - '@types/node': 22.10.2 13935 + '@types/node': 22.18.8 13176 13936 jest-mock: 29.7.0 13177 13937 jest-util: 29.7.0 13178 13938 jsdom: 20.0.3 ··· 13186 13946 '@jest/environment': 29.7.0 13187 13947 '@jest/fake-timers': 29.7.0 13188 13948 '@jest/types': 29.6.3 13189 - '@types/node': 22.10.2 13949 + '@types/node': 22.18.8 13190 13950 jest-mock: 29.7.0 13191 13951 jest-util: 29.7.0 13192 13952 ··· 13195 13955 '@jest/environment': 30.2.0 13196 13956 '@jest/fake-timers': 30.2.0 13197 13957 '@jest/types': 30.2.0 13198 - '@types/node': 22.10.2 13958 + '@types/node': 22.18.8 13199 13959 jest-mock: 30.2.0 13200 13960 jest-util: 30.2.0 13201 13961 jest-validate: 30.2.0 13202 13962 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): 13963 + jest-expo@54.0.12(@babel/core@7.28.4)(expo@54.0.12)(jest@30.2.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3)))(react-dom@19.2.0(react@19.2.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)(webpack@5.97.1): 13204 13964 dependencies: 13205 13965 '@expo/config': 12.0.10 13206 13966 '@expo/json-file': 10.0.7 13207 13967 '@jest/create-cache-key-function': 29.7.0 13208 13968 '@jest/globals': 29.7.0 13209 13969 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) 13970 + expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0) 13211 13971 jest-environment-jsdom: 29.7.0 13212 13972 jest-snapshot: 29.7.0 13213 13973 jest-watch-select-projects: 2.0.0 13214 - jest-watch-typeahead: 2.2.1(jest@30.2.0(@types/node@20.17.10)) 13974 + jest-watch-typeahead: 2.2.1(jest@30.2.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3))) 13215 13975 json5: 2.2.3 13216 13976 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) 13977 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0) 13978 + react-server-dom-webpack: 19.0.0(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(webpack@5.97.1) 13979 + react-test-renderer: 19.1.0(react@19.2.0) 13220 13980 server-only: 0.0.1 13221 13981 stacktrace-js: 2.0.2 13222 13982 transitivePeerDependencies: ··· 13236 13996 dependencies: 13237 13997 '@jest/types': 29.6.3 13238 13998 '@types/graceful-fs': 4.1.9 13239 - '@types/node': 22.10.2 13999 + '@types/node': 22.18.8 13240 14000 anymatch: 3.1.3 13241 14001 fb-watchman: 2.0.2 13242 14002 graceful-fs: 4.2.11 ··· 13251 14011 jest-haste-map@30.2.0: 13252 14012 dependencies: 13253 14013 '@jest/types': 30.2.0 13254 - '@types/node': 22.10.2 14014 + '@types/node': 22.18.8 13255 14015 anymatch: 3.1.3 13256 14016 fb-watchman: 2.0.2 13257 14017 graceful-fs: 4.2.11 ··· 13262 14022 walker: 1.0.8 13263 14023 optionalDependencies: 13264 14024 fsevents: 2.3.3 14025 + 14026 + jest-leak-detector@29.7.0: 14027 + dependencies: 14028 + jest-get-type: 29.6.3 14029 + pretty-format: 29.7.0 13265 14030 13266 14031 jest-leak-detector@30.2.0: 13267 14032 dependencies: ··· 13309 14074 jest-mock@29.7.0: 13310 14075 dependencies: 13311 14076 '@jest/types': 29.6.3 13312 - '@types/node': 22.10.2 14077 + '@types/node': 22.18.8 13313 14078 jest-util: 29.7.0 13314 14079 13315 14080 jest-mock@30.2.0: 13316 14081 dependencies: 13317 14082 '@jest/types': 30.2.0 13318 - '@types/node': 22.10.2 14083 + '@types/node': 22.18.8 13319 14084 jest-util: 30.2.0 13320 14085 14086 + jest-pnp-resolver@1.2.3(jest-resolve@29.7.0): 14087 + optionalDependencies: 14088 + jest-resolve: 29.7.0 14089 + 13321 14090 jest-pnp-resolver@1.2.3(jest-resolve@30.2.0): 13322 14091 optionalDependencies: 13323 14092 jest-resolve: 30.2.0 ··· 13326 14095 13327 14096 jest-regex-util@30.0.1: {} 13328 14097 14098 + jest-resolve-dependencies@29.7.0: 14099 + dependencies: 14100 + jest-regex-util: 29.6.3 14101 + jest-snapshot: 29.7.0 14102 + transitivePeerDependencies: 14103 + - supports-color 14104 + 13329 14105 jest-resolve-dependencies@30.2.0: 13330 14106 dependencies: 13331 14107 jest-regex-util: 30.0.1 ··· 13333 14109 transitivePeerDependencies: 13334 14110 - supports-color 13335 14111 14112 + jest-resolve@29.7.0: 14113 + dependencies: 14114 + chalk: 4.1.2 14115 + graceful-fs: 4.2.11 14116 + jest-haste-map: 29.7.0 14117 + jest-pnp-resolver: 1.2.3(jest-resolve@29.7.0) 14118 + jest-util: 29.7.0 14119 + jest-validate: 29.7.0 14120 + resolve: 1.22.10 14121 + resolve.exports: 2.0.3 14122 + slash: 3.0.0 14123 + 13336 14124 jest-resolve@30.2.0: 13337 14125 dependencies: 13338 14126 chalk: 4.1.2 ··· 13344 14132 slash: 3.0.0 13345 14133 unrs-resolver: 1.11.1 13346 14134 14135 + jest-runner@29.7.0: 14136 + dependencies: 14137 + '@jest/console': 29.7.0 14138 + '@jest/environment': 29.7.0 14139 + '@jest/test-result': 29.7.0 14140 + '@jest/transform': 29.7.0 14141 + '@jest/types': 29.6.3 14142 + '@types/node': 22.18.8 14143 + chalk: 4.1.2 14144 + emittery: 0.13.1 14145 + graceful-fs: 4.2.11 14146 + jest-docblock: 29.7.0 14147 + jest-environment-node: 29.7.0 14148 + jest-haste-map: 29.7.0 14149 + jest-leak-detector: 29.7.0 14150 + jest-message-util: 29.7.0 14151 + jest-resolve: 29.7.0 14152 + jest-runtime: 29.7.0 14153 + jest-util: 29.7.0 14154 + jest-watcher: 29.7.0 14155 + jest-worker: 29.7.0 14156 + p-limit: 3.1.0 14157 + source-map-support: 0.5.13 14158 + transitivePeerDependencies: 14159 + - supports-color 14160 + 13347 14161 jest-runner@30.2.0: 13348 14162 dependencies: 13349 14163 '@jest/console': 30.2.0 ··· 13351 14165 '@jest/test-result': 30.2.0 13352 14166 '@jest/transform': 30.2.0 13353 14167 '@jest/types': 30.2.0 13354 - '@types/node': 22.10.2 14168 + '@types/node': 22.18.8 13355 14169 chalk: 4.1.2 13356 14170 emittery: 0.13.1 13357 14171 exit-x: 0.2.2 ··· 13371 14185 transitivePeerDependencies: 13372 14186 - supports-color 13373 14187 14188 + jest-runtime@29.7.0: 14189 + dependencies: 14190 + '@jest/environment': 29.7.0 14191 + '@jest/fake-timers': 29.7.0 14192 + '@jest/globals': 29.7.0 14193 + '@jest/source-map': 29.6.3 14194 + '@jest/test-result': 29.7.0 14195 + '@jest/transform': 29.7.0 14196 + '@jest/types': 29.6.3 14197 + '@types/node': 22.18.8 14198 + chalk: 4.1.2 14199 + cjs-module-lexer: 1.4.3 14200 + collect-v8-coverage: 1.0.2 14201 + glob: 7.2.3 14202 + graceful-fs: 4.2.11 14203 + jest-haste-map: 29.7.0 14204 + jest-message-util: 29.7.0 14205 + jest-mock: 29.7.0 14206 + jest-regex-util: 29.6.3 14207 + jest-resolve: 29.7.0 14208 + jest-snapshot: 29.7.0 14209 + jest-util: 29.7.0 14210 + slash: 3.0.0 14211 + strip-bom: 4.0.0 14212 + transitivePeerDependencies: 14213 + - supports-color 14214 + 13374 14215 jest-runtime@30.2.0: 13375 14216 dependencies: 13376 14217 '@jest/environment': 30.2.0 ··· 13380 14221 '@jest/test-result': 30.2.0 13381 14222 '@jest/transform': 30.2.0 13382 14223 '@jest/types': 30.2.0 13383 - '@types/node': 22.10.2 14224 + '@types/node': 22.18.8 13384 14225 chalk: 4.1.2 13385 14226 cjs-module-lexer: 2.1.0 13386 14227 collect-v8-coverage: 1.0.2 ··· 13452 14293 jest-util@29.7.0: 13453 14294 dependencies: 13454 14295 '@jest/types': 29.6.3 13455 - '@types/node': 22.10.2 14296 + '@types/node': 22.18.8 13456 14297 chalk: 4.1.2 13457 14298 ci-info: 3.9.0 13458 14299 graceful-fs: 4.2.11 ··· 13461 14302 jest-util@30.2.0: 13462 14303 dependencies: 13463 14304 '@jest/types': 30.2.0 13464 - '@types/node': 22.10.2 14305 + '@types/node': 22.18.8 13465 14306 chalk: 4.1.2 13466 14307 ci-info: 4.3.0 13467 14308 graceful-fs: 4.2.11 13468 - picomatch: 4.0.2 14309 + picomatch: 4.0.3 13469 14310 13470 14311 jest-validate@29.7.0: 13471 14312 dependencies: ··· 13491 14332 chalk: 3.0.0 13492 14333 prompts: 2.4.2 13493 14334 13494 - jest-watch-typeahead@2.2.1(jest@30.2.0(@types/node@20.17.10)): 14335 + jest-watch-typeahead@2.2.1(jest@30.2.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3))): 13495 14336 dependencies: 13496 14337 ansi-escapes: 6.2.1 13497 14338 chalk: 4.1.2 13498 - jest: 30.2.0(@types/node@20.17.10) 14339 + jest: 30.2.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3)) 13499 14340 jest-regex-util: 29.6.3 13500 14341 jest-watcher: 29.7.0 13501 14342 slash: 5.1.0 13502 14343 string-length: 5.0.1 13503 - strip-ansi: 7.1.0 14344 + strip-ansi: 7.1.2 13504 14345 13505 14346 jest-watcher@29.7.0: 13506 14347 dependencies: 13507 14348 '@jest/test-result': 29.7.0 13508 14349 '@jest/types': 29.6.3 13509 - '@types/node': 22.10.2 14350 + '@types/node': 22.18.8 13510 14351 ansi-escapes: 4.3.2 13511 14352 chalk: 4.1.2 13512 14353 emittery: 0.13.1 ··· 13517 14358 dependencies: 13518 14359 '@jest/test-result': 30.2.0 13519 14360 '@jest/types': 30.2.0 13520 - '@types/node': 22.10.2 14361 + '@types/node': 22.18.8 13521 14362 ansi-escapes: 4.3.2 13522 14363 chalk: 4.1.2 13523 14364 emittery: 0.13.1 ··· 13526 14367 13527 14368 jest-worker@27.5.1: 13528 14369 dependencies: 13529 - '@types/node': 22.10.2 14370 + '@types/node': 22.18.8 13530 14371 merge-stream: 2.0.0 13531 14372 supports-color: 8.1.1 13532 14373 13533 14374 jest-worker@29.7.0: 13534 14375 dependencies: 13535 - '@types/node': 22.10.2 14376 + '@types/node': 22.18.8 13536 14377 jest-util: 29.7.0 13537 14378 merge-stream: 2.0.0 13538 14379 supports-color: 8.1.1 13539 14380 13540 14381 jest-worker@30.2.0: 13541 14382 dependencies: 13542 - '@types/node': 22.10.2 14383 + '@types/node': 22.18.8 13543 14384 '@ungap/structured-clone': 1.3.0 13544 14385 jest-util: 30.2.0 13545 14386 merge-stream: 2.0.0 13546 14387 supports-color: 8.1.1 13547 14388 13548 - jest@30.2.0(@types/node@20.17.10): 14389 + jest@29.7.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3)): 13549 14390 dependencies: 13550 - '@jest/core': 30.2.0(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)) 13551 - '@jest/types': 30.2.0 14391 + '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3)) 14392 + '@jest/types': 29.6.3 13552 14393 import-local: 3.2.0 13553 - jest-cli: 30.2.0(@types/node@20.17.10) 14394 + jest-cli: 29.7.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3)) 13554 14395 transitivePeerDependencies: 13555 14396 - '@types/node' 13556 14397 - babel-plugin-macros 13557 - - esbuild-register 13558 14398 - supports-color 13559 14399 - ts-node 13560 14400 13561 - jest@30.2.0(@types/node@22.10.2)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)): 14401 + jest@30.2.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3)): 13562 14402 dependencies: 13563 - '@jest/core': 30.2.0(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)) 14403 + '@jest/core': 30.2.0(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3)) 13564 14404 '@jest/types': 30.2.0 13565 14405 import-local: 3.2.0 13566 - jest-cli: 30.2.0(@types/node@22.10.2)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)) 14406 + jest-cli: 30.2.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3)) 13567 14407 transitivePeerDependencies: 13568 14408 - '@types/node' 13569 14409 - babel-plugin-macros ··· 13595 14435 jsdom@20.0.3: 13596 14436 dependencies: 13597 14437 abab: 2.0.6 13598 - acorn: 8.14.0 14438 + acorn: 8.15.0 13599 14439 acorn-globals: 7.0.1 13600 14440 cssom: 0.5.0 13601 14441 cssstyle: 2.3.0 ··· 13618 14458 whatwg-encoding: 2.0.0 13619 14459 whatwg-mimetype: 3.0.0 13620 14460 whatwg-url: 11.0.0 13621 - ws: 8.18.0 14461 + ws: 8.18.3 13622 14462 xml-name-validator: 4.0.0 13623 14463 transitivePeerDependencies: 13624 14464 - bufferutil ··· 13664 14504 13665 14505 jsx-ast-utils@3.3.5: 13666 14506 dependencies: 13667 - array-includes: 3.1.8 14507 + array-includes: 3.1.9 13668 14508 array.prototype.flat: 1.3.3 13669 14509 object.assign: 4.1.7 13670 14510 object.values: 1.2.1 ··· 13699 14539 transitivePeerDependencies: 13700 14540 - supports-color 13701 14541 14542 + lightningcss-android-arm64@1.30.2: 14543 + optional: true 14544 + 13702 14545 lightningcss-darwin-arm64@1.27.0: 13703 14546 optional: true 13704 14547 13705 - lightningcss-darwin-arm64@1.28.2: 14548 + lightningcss-darwin-arm64@1.30.2: 13706 14549 optional: true 13707 14550 13708 14551 lightningcss-darwin-x64@1.27.0: 13709 14552 optional: true 13710 14553 13711 - lightningcss-darwin-x64@1.28.2: 14554 + lightningcss-darwin-x64@1.30.2: 13712 14555 optional: true 13713 14556 13714 14557 lightningcss-freebsd-x64@1.27.0: 13715 14558 optional: true 13716 14559 13717 - lightningcss-freebsd-x64@1.28.2: 14560 + lightningcss-freebsd-x64@1.30.2: 13718 14561 optional: true 13719 14562 13720 14563 lightningcss-linux-arm-gnueabihf@1.27.0: 13721 14564 optional: true 13722 14565 13723 - lightningcss-linux-arm-gnueabihf@1.28.2: 14566 + lightningcss-linux-arm-gnueabihf@1.30.2: 13724 14567 optional: true 13725 14568 13726 14569 lightningcss-linux-arm64-gnu@1.27.0: 13727 14570 optional: true 13728 14571 13729 - lightningcss-linux-arm64-gnu@1.28.2: 14572 + lightningcss-linux-arm64-gnu@1.30.2: 13730 14573 optional: true 13731 14574 13732 14575 lightningcss-linux-arm64-musl@1.27.0: 13733 14576 optional: true 13734 14577 13735 - lightningcss-linux-arm64-musl@1.28.2: 14578 + lightningcss-linux-arm64-musl@1.30.2: 13736 14579 optional: true 13737 14580 13738 14581 lightningcss-linux-x64-gnu@1.27.0: 13739 14582 optional: true 13740 14583 13741 - lightningcss-linux-x64-gnu@1.28.2: 14584 + lightningcss-linux-x64-gnu@1.30.2: 13742 14585 optional: true 13743 14586 13744 14587 lightningcss-linux-x64-musl@1.27.0: 13745 14588 optional: true 13746 14589 13747 - lightningcss-linux-x64-musl@1.28.2: 14590 + lightningcss-linux-x64-musl@1.30.2: 13748 14591 optional: true 13749 14592 13750 14593 lightningcss-win32-arm64-msvc@1.27.0: 13751 14594 optional: true 13752 14595 13753 - lightningcss-win32-arm64-msvc@1.28.2: 14596 + lightningcss-win32-arm64-msvc@1.30.2: 13754 14597 optional: true 13755 14598 13756 14599 lightningcss-win32-x64-msvc@1.27.0: 13757 14600 optional: true 13758 14601 13759 - lightningcss-win32-x64-msvc@1.28.2: 14602 + lightningcss-win32-x64-msvc@1.30.2: 13760 14603 optional: true 13761 14604 13762 14605 lightningcss@1.27.0: ··· 13774 14617 lightningcss-win32-arm64-msvc: 1.27.0 13775 14618 lightningcss-win32-x64-msvc: 1.27.0 13776 14619 13777 - lightningcss@1.28.2: 14620 + lightningcss@1.30.2: 13778 14621 dependencies: 13779 - detect-libc: 1.0.3 14622 + detect-libc: 2.0.3 13780 14623 optionalDependencies: 13781 - lightningcss-darwin-arm64: 1.28.2 13782 - lightningcss-darwin-x64: 1.28.2 13783 - lightningcss-freebsd-x64: 1.28.2 13784 - lightningcss-linux-arm-gnueabihf: 1.28.2 13785 - lightningcss-linux-arm64-gnu: 1.28.2 13786 - lightningcss-linux-arm64-musl: 1.28.2 13787 - lightningcss-linux-x64-gnu: 1.28.2 13788 - lightningcss-linux-x64-musl: 1.28.2 13789 - lightningcss-win32-arm64-msvc: 1.28.2 13790 - lightningcss-win32-x64-msvc: 1.28.2 14624 + lightningcss-android-arm64: 1.30.2 14625 + lightningcss-darwin-arm64: 1.30.2 14626 + lightningcss-darwin-x64: 1.30.2 14627 + lightningcss-freebsd-x64: 1.30.2 14628 + lightningcss-linux-arm-gnueabihf: 1.30.2 14629 + lightningcss-linux-arm64-gnu: 1.30.2 14630 + lightningcss-linux-arm64-musl: 1.30.2 14631 + lightningcss-linux-x64-gnu: 1.30.2 14632 + lightningcss-linux-x64-musl: 1.30.2 14633 + lightningcss-win32-arm64-msvc: 1.30.2 14634 + lightningcss-win32-x64-msvc: 1.30.2 13791 14635 13792 14636 lilconfig@3.1.3: {} 13793 14637 ··· 13840 14684 dependencies: 13841 14685 yallist: 3.1.1 13842 14686 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): 14687 + lucide-react-native@0.507.0(react-native-svg@15.12.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): 13844 14688 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) 14689 + react: 19.1.0 14690 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 14691 + react-native-svg: 15.12.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 13848 14692 13849 14693 make-dir@4.0.0: 13850 14694 dependencies: ··· 13880 14724 13881 14725 methods@1.1.2: {} 13882 14726 13883 - metro-babel-transformer@0.82.4: 14727 + metro-babel-transformer@0.83.1: 13884 14728 dependencies: 13885 14729 '@babel/core': 7.28.4 13886 14730 flow-enums-runtime: 0.0.6 13887 - hermes-parser: 0.28.1 14731 + hermes-parser: 0.29.1 13888 14732 nullthrows: 1.1.1 13889 14733 transitivePeerDependencies: 13890 14734 - supports-color 13891 14735 13892 - metro-cache-key@0.82.4: 14736 + metro-cache-key@0.83.1: 13893 14737 dependencies: 13894 14738 flow-enums-runtime: 0.0.6 13895 14739 13896 - metro-cache@0.82.4: 14740 + metro-cache@0.83.1: 13897 14741 dependencies: 13898 14742 exponential-backoff: 3.1.1 13899 14743 flow-enums-runtime: 0.0.6 13900 14744 https-proxy-agent: 7.0.6 13901 - metro-core: 0.82.4 14745 + metro-core: 0.83.1 13902 14746 transitivePeerDependencies: 13903 14747 - supports-color 13904 14748 13905 - metro-config@0.82.4: 14749 + metro-config@0.83.1: 13906 14750 dependencies: 13907 14751 connect: 3.7.0 13908 14752 cosmiconfig: 5.2.1 13909 14753 flow-enums-runtime: 0.0.6 13910 14754 jest-validate: 29.7.0 13911 - metro: 0.82.4 13912 - metro-cache: 0.82.4 13913 - metro-core: 0.82.4 13914 - metro-runtime: 0.82.4 14755 + metro: 0.83.1 14756 + metro-cache: 0.83.1 14757 + metro-core: 0.83.1 14758 + metro-runtime: 0.83.1 13915 14759 transitivePeerDependencies: 13916 14760 - bufferutil 13917 14761 - supports-color 13918 14762 - utf-8-validate 13919 14763 13920 - metro-core@0.82.4: 14764 + metro-core@0.83.1: 13921 14765 dependencies: 13922 14766 flow-enums-runtime: 0.0.6 13923 14767 lodash.throttle: 4.1.1 13924 - metro-resolver: 0.82.4 14768 + metro-resolver: 0.83.1 13925 14769 13926 - metro-file-map@0.82.4: 14770 + metro-file-map@0.83.1: 13927 14771 dependencies: 13928 - debug: 4.4.0 14772 + debug: 4.4.3 13929 14773 fb-watchman: 2.0.2 13930 14774 flow-enums-runtime: 0.0.6 13931 14775 graceful-fs: 4.2.11 ··· 13937 14781 transitivePeerDependencies: 13938 14782 - supports-color 13939 14783 13940 - metro-minify-terser@0.82.4: 14784 + metro-minify-terser@0.83.1: 13941 14785 dependencies: 13942 14786 flow-enums-runtime: 0.0.6 13943 14787 terser: 5.37.0 13944 14788 13945 - metro-resolver@0.82.4: 14789 + metro-resolver@0.83.1: 13946 14790 dependencies: 13947 14791 flow-enums-runtime: 0.0.6 13948 14792 13949 - metro-runtime@0.82.4: 14793 + metro-runtime@0.83.1: 13950 14794 dependencies: 13951 - '@babel/runtime': 7.26.0 14795 + '@babel/runtime': 7.28.4 13952 14796 flow-enums-runtime: 0.0.6 13953 14797 13954 - metro-source-map@0.82.4: 14798 + metro-source-map@0.83.1: 13955 14799 dependencies: 13956 - '@babel/traverse': 7.26.4 14800 + '@babel/traverse': 7.28.4 13957 14801 '@babel/traverse--for-generate-function-map': '@babel/traverse@7.28.4' 13958 - '@babel/types': 7.26.3 14802 + '@babel/types': 7.28.4 13959 14803 flow-enums-runtime: 0.0.6 13960 14804 invariant: 2.2.4 13961 - metro-symbolicate: 0.82.4 14805 + metro-symbolicate: 0.83.1 13962 14806 nullthrows: 1.1.1 13963 - ob1: 0.82.4 14807 + ob1: 0.83.1 13964 14808 source-map: 0.5.7 13965 14809 vlq: 1.0.1 13966 14810 transitivePeerDependencies: 13967 14811 - supports-color 13968 14812 13969 - metro-symbolicate@0.82.4: 14813 + metro-symbolicate@0.83.1: 13970 14814 dependencies: 13971 14815 flow-enums-runtime: 0.0.6 13972 14816 invariant: 2.2.4 13973 - metro-source-map: 0.82.4 14817 + metro-source-map: 0.83.1 13974 14818 nullthrows: 1.1.1 13975 14819 source-map: 0.5.7 13976 14820 vlq: 1.0.1 13977 14821 transitivePeerDependencies: 13978 14822 - supports-color 13979 14823 13980 - metro-transform-plugins@0.82.4: 14824 + metro-transform-plugins@0.83.1: 13981 14825 dependencies: 13982 14826 '@babel/core': 7.28.4 13983 14827 '@babel/generator': 7.28.3 13984 - '@babel/template': 7.25.9 13985 - '@babel/traverse': 7.26.4 14828 + '@babel/template': 7.27.2 14829 + '@babel/traverse': 7.28.4 13986 14830 flow-enums-runtime: 0.0.6 13987 14831 nullthrows: 1.1.1 13988 14832 transitivePeerDependencies: 13989 14833 - supports-color 13990 14834 13991 - metro-transform-worker@0.82.4: 14835 + metro-transform-worker@0.83.1: 13992 14836 dependencies: 13993 14837 '@babel/core': 7.28.4 13994 14838 '@babel/generator': 7.28.3 13995 - '@babel/parser': 7.26.3 14839 + '@babel/parser': 7.28.4 13996 14840 '@babel/types': 7.28.4 13997 14841 flow-enums-runtime: 0.0.6 13998 - metro: 0.82.4 13999 - metro-babel-transformer: 0.82.4 14000 - metro-cache: 0.82.4 14001 - metro-cache-key: 0.82.4 14002 - metro-minify-terser: 0.82.4 14003 - metro-source-map: 0.82.4 14004 - metro-transform-plugins: 0.82.4 14842 + metro: 0.83.1 14843 + metro-babel-transformer: 0.83.1 14844 + metro-cache: 0.83.1 14845 + metro-cache-key: 0.83.1 14846 + metro-minify-terser: 0.83.1 14847 + metro-source-map: 0.83.1 14848 + metro-transform-plugins: 0.83.1 14005 14849 nullthrows: 1.1.1 14006 14850 transitivePeerDependencies: 14007 14851 - bufferutil 14008 14852 - supports-color 14009 14853 - utf-8-validate 14010 14854 14011 - metro@0.82.4: 14855 + metro@0.83.1: 14012 14856 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 14857 + '@babel/code-frame': 7.27.1 14858 + '@babel/core': 7.28.4 14859 + '@babel/generator': 7.28.3 14860 + '@babel/parser': 7.28.4 14861 + '@babel/template': 7.27.2 14862 + '@babel/traverse': 7.28.4 14863 + '@babel/types': 7.28.4 14020 14864 accepts: 1.3.8 14021 14865 chalk: 4.1.2 14022 14866 ci-info: 2.0.0 14023 14867 connect: 3.7.0 14024 - debug: 4.4.0 14868 + debug: 4.4.3 14025 14869 error-stack-parser: 2.1.4 14026 14870 flow-enums-runtime: 0.0.6 14027 14871 graceful-fs: 4.2.11 14028 - hermes-parser: 0.28.1 14872 + hermes-parser: 0.29.1 14029 14873 image-size: 1.2.0 14030 14874 invariant: 2.2.4 14031 14875 jest-worker: 29.7.0 14032 14876 jsc-safe-url: 0.2.4 14033 14877 lodash.throttle: 4.1.1 14034 - metro-babel-transformer: 0.82.4 14035 - metro-cache: 0.82.4 14036 - metro-cache-key: 0.82.4 14037 - metro-config: 0.82.4 14038 - metro-core: 0.82.4 14039 - metro-file-map: 0.82.4 14040 - metro-resolver: 0.82.4 14041 - metro-runtime: 0.82.4 14042 - metro-source-map: 0.82.4 14043 - metro-symbolicate: 0.82.4 14044 - metro-transform-plugins: 0.82.4 14045 - metro-transform-worker: 0.82.4 14878 + metro-babel-transformer: 0.83.1 14879 + metro-cache: 0.83.1 14880 + metro-cache-key: 0.83.1 14881 + metro-config: 0.83.1 14882 + metro-core: 0.83.1 14883 + metro-file-map: 0.83.1 14884 + metro-resolver: 0.83.1 14885 + metro-runtime: 0.83.1 14886 + metro-source-map: 0.83.1 14887 + metro-symbolicate: 0.83.1 14888 + metro-transform-plugins: 0.83.1 14889 + metro-transform-worker: 0.83.1 14046 14890 mime-types: 2.1.35 14047 14891 nullthrows: 1.1.1 14048 14892 serialize-error: 2.1.0 ··· 14072 14916 14073 14917 mimic-fn@2.1.0: {} 14074 14918 14075 - minimatch@10.0.1: 14919 + min-indent@1.0.1: {} 14920 + 14921 + minimatch@10.0.3: 14076 14922 dependencies: 14077 - brace-expansion: 2.0.1 14923 + '@isaacs/brace-expansion': 5.0.0 14078 14924 14079 14925 minimatch@3.1.2: 14080 14926 dependencies: ··· 14126 14972 14127 14973 nanoid@3.3.11: {} 14128 14974 14129 - nanoid@3.3.8: {} 14130 - 14131 14975 napi-postinstall@0.3.4: {} 14132 14976 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))): 14977 + nativewind@4.2.1(react-native-reanimated@4.1.2(@babel/core@7.28.4)(react-native-worklets@0.6.0(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-svg@15.12.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(tailwindcss@3.4.18): 14134 14978 dependencies: 14135 14979 comment-json: 4.2.5 14136 14980 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)) 14981 + react-native-css-interop: 0.2.1(react-native-reanimated@4.1.2(@babel/core@7.28.4)(react-native-worklets@0.6.0(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-svg@15.12.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(tailwindcss@3.4.18) 14982 + tailwindcss: 3.4.18 14139 14983 transitivePeerDependencies: 14140 14984 - react 14141 14985 - react-native ··· 14167 15011 14168 15012 node-int64@0.4.0: {} 14169 15013 14170 - node-releases@2.0.19: {} 15014 + node-releases@2.0.23: {} 14171 15015 14172 15016 normalize-path@3.0.0: {} 14173 15017 ··· 14175 15019 dependencies: 14176 15020 hosted-git-info: 7.0.2 14177 15021 proc-log: 4.2.0 14178 - semver: 7.6.3 15022 + semver: 7.7.2 14179 15023 validate-npm-package-name: 5.0.1 14180 15024 14181 15025 npm-run-path@4.0.1: ··· 14199 15043 14200 15044 oauth-sign@0.9.0: {} 14201 15045 14202 - ob1@0.82.4: 15046 + ob1@0.83.1: 14203 15047 dependencies: 14204 15048 flow-enums-runtime: 0.0.6 14205 15049 ··· 14207 15051 14208 15052 object-hash@3.0.0: {} 14209 15053 14210 - object-inspect@1.13.3: {} 15054 + object-inspect@1.13.4: {} 14211 15055 14212 15056 object-keys@1.1.1: {} 14213 15057 14214 15058 object.assign@4.1.7: 14215 15059 dependencies: 14216 15060 call-bind: 1.0.8 14217 - call-bound: 1.0.3 15061 + call-bound: 1.0.4 14218 15062 define-properties: 1.2.1 14219 - es-object-atoms: 1.0.0 15063 + es-object-atoms: 1.1.1 14220 15064 has-symbols: 1.1.0 14221 15065 object-keys: 1.1.1 14222 15066 14223 - object.entries@1.1.8: 15067 + object.entries@1.1.9: 14224 15068 dependencies: 14225 15069 call-bind: 1.0.8 15070 + call-bound: 1.0.4 14226 15071 define-properties: 1.2.1 14227 - es-object-atoms: 1.0.0 15072 + es-object-atoms: 1.1.1 14228 15073 14229 15074 object.fromentries@2.0.8: 14230 15075 dependencies: 14231 15076 call-bind: 1.0.8 14232 15077 define-properties: 1.2.1 14233 - es-abstract: 1.23.8 14234 - es-object-atoms: 1.0.0 15078 + es-abstract: 1.24.0 15079 + es-object-atoms: 1.1.1 14235 15080 14236 15081 object.groupby@1.0.3: 14237 15082 dependencies: 14238 15083 call-bind: 1.0.8 14239 15084 define-properties: 1.2.1 14240 - es-abstract: 1.23.8 15085 + es-abstract: 1.24.0 14241 15086 14242 15087 object.values@1.2.1: 14243 15088 dependencies: 14244 15089 call-bind: 1.0.8 14245 - call-bound: 1.0.3 15090 + call-bound: 1.0.4 14246 15091 define-properties: 1.2.1 14247 - es-object-atoms: 1.0.0 15092 + es-object-atoms: 1.1.1 14248 15093 14249 15094 on-exit-leak-free@2.1.2: {} 14250 15095 ··· 14307 15152 14308 15153 own-keys@1.0.1: 14309 15154 dependencies: 14310 - get-intrinsic: 1.2.6 15155 + get-intrinsic: 1.3.0 14311 15156 object-keys: 1.1.1 14312 15157 safe-push-apply: 1.0.0 14313 15158 ··· 14347 15192 parse-json@5.2.0: 14348 15193 dependencies: 14349 15194 '@babel/code-frame': 7.27.1 14350 - error-ex: 1.3.2 15195 + error-ex: 1.3.4 14351 15196 json-parse-even-better-errors: 2.3.1 14352 15197 lines-and-columns: 1.2.4 14353 15198 ··· 14394 15239 14395 15240 path-to-regexp@0.1.12: {} 14396 15241 15242 + path-type@4.0.0: {} 15243 + 14397 15244 performance-now@2.1.0: {} 14398 15245 14399 15246 picocolors@1.1.1: {} ··· 14402 15249 14403 15250 picomatch@3.0.1: {} 14404 15251 14405 - picomatch@4.0.2: {} 15252 + picomatch@4.0.3: {} 14406 15253 14407 15254 pify@2.3.0: {} 14408 15255 14409 15256 pino-abstract-transport@1.2.0: 14410 15257 dependencies: 14411 - readable-stream: 4.5.2 15258 + readable-stream: 4.7.0 14412 15259 split2: 4.2.0 14413 15260 14414 15261 pino-std-serializers@6.2.2: {} ··· 14426 15273 safe-stable-stringify: 2.5.0 14427 15274 sonic-boom: 3.8.1 14428 15275 thread-stream: 2.7.0 14429 - 14430 - pirates@4.0.6: {} 14431 15276 14432 15277 pirates@4.0.7: {} 14433 15278 ··· 14449 15294 14450 15295 possible-typed-array-names@1.0.0: {} 14451 15296 15297 + possible-typed-array-names@1.1.0: {} 15298 + 14452 15299 postcss-import@15.1.0(postcss@8.4.49): 14453 15300 dependencies: 14454 15301 postcss: 8.4.49 ··· 14456 15303 read-cache: 1.0.0 14457 15304 resolve: 1.22.10 14458 15305 14459 - postcss-js@4.0.1(postcss@8.4.49): 15306 + postcss-js@4.1.0(postcss@8.4.49): 14460 15307 dependencies: 14461 15308 camelcase-css: 2.0.1 14462 15309 postcss: 8.4.49 14463 15310 14464 - postcss-load-config@4.0.2(postcss@8.4.49)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)): 15311 + postcss-load-config@6.0.1(jiti@1.21.7)(postcss@8.4.49): 14465 15312 dependencies: 14466 15313 lilconfig: 3.1.3 14467 - yaml: 2.6.1 14468 15314 optionalDependencies: 15315 + jiti: 1.21.7 14469 15316 postcss: 8.4.49 14470 - ts-node: 10.9.2(@types/node@22.10.2)(typescript@5.8.3) 14471 15317 14472 15318 postcss-nested@6.2.0(postcss@8.4.49): 14473 15319 dependencies: ··· 14483 15329 14484 15330 postcss@8.4.49: 14485 15331 dependencies: 14486 - nanoid: 3.3.8 15332 + nanoid: 3.3.11 14487 15333 picocolors: 1.1.1 14488 15334 source-map-js: 1.2.1 14489 15335 14490 15336 prelude-ls@1.2.1: {} 14491 15337 14492 - prettier-plugin-tailwindcss@0.6.12(@ianvs/prettier-plugin-sort-imports@4.5.1(prettier@3.5.3))(prettier@3.5.3): 15338 + prettier-plugin-tailwindcss@0.6.14(@ianvs/prettier-plugin-sort-imports@4.7.0(prettier@3.6.2))(prettier@3.6.2): 14493 15339 dependencies: 14494 - prettier: 3.5.3 15340 + prettier: 3.6.2 14495 15341 optionalDependencies: 14496 - '@ianvs/prettier-plugin-sort-imports': 4.5.1(prettier@3.5.3) 14497 - 14498 - prettier@3.4.2: {} 15342 + '@ianvs/prettier-plugin-sort-imports': 4.7.0(prettier@3.6.2) 14499 15343 14500 - prettier@3.5.3: {} 15344 + prettier@3.6.2: {} 14501 15345 14502 15346 pretty-bytes@5.6.0: {} 14503 15347 ··· 14555 15399 14556 15400 punycode@2.3.1: {} 14557 15401 15402 + pure-rand@6.1.0: {} 15403 + 14558 15404 pure-rand@7.0.1: {} 14559 15405 14560 15406 qrcode-terminal@0.11.0: {} 14561 15407 14562 15408 qs@6.13.0: 14563 15409 dependencies: 14564 - side-channel: 1.0.6 15410 + side-channel: 1.1.0 14565 15411 14566 15412 qs@6.5.3: {} 14567 15413 ··· 14604 15450 minimist: 1.2.8 14605 15451 strip-json-comments: 2.0.1 14606 15452 14607 - react-compiler-runtime@19.0.0-beta-37ed2a7-20241206(react@19.0.0): 15453 + react-compiler-runtime@19.0.0-beta-37ed2a7-20241206(react@19.1.0): 14608 15454 dependencies: 14609 - react: 19.0.0 15455 + react: 19.1.0 14610 15456 14611 - react-devtools-core@6.1.2: 15457 + react-devtools-core@6.1.5: 14612 15458 dependencies: 14613 15459 shell-quote: 1.8.2 14614 15460 ws: 7.5.10 ··· 14616 15462 - bufferutil 14617 15463 - utf-8-validate 14618 15464 14619 - react-dom@19.0.0(react@19.0.0): 15465 + react-dom@19.1.0(react@19.1.0): 14620 15466 dependencies: 14621 - react: 19.0.0 14622 - scheduler: 0.25.0 15467 + react: 19.1.0 15468 + scheduler: 0.26.0 15469 + 15470 + react-dom@19.2.0(react@19.2.0): 15471 + dependencies: 15472 + react: 19.2.0 15473 + scheduler: 0.27.0 14623 15474 14624 15475 react-fast-compare@3.2.2: {} 14625 15476 14626 - react-freeze@1.0.4(react@19.0.0): 15477 + react-freeze@1.0.4(react@19.1.0): 14627 15478 dependencies: 14628 - react: 19.0.0 15479 + react: 19.1.0 15480 + 15481 + react-freeze@1.0.4(react@19.2.0): 15482 + dependencies: 15483 + react: 19.2.0 15484 + optional: true 14629 15485 14630 15486 react-is@16.13.1: {} 14631 15487 ··· 14633 15489 14634 15490 react-is@19.1.0: {} 14635 15491 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))): 15492 + react-is@19.2.0: {} 15493 + 15494 + react-native-css-interop@0.1.22(react-native-reanimated@4.1.2(@babel/core@7.28.4)(react-native-worklets@0.6.0(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-svg@15.12.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(tailwindcss@3.4.18): 14637 15495 dependencies: 14638 - '@babel/helper-module-imports': 7.25.9 14639 - '@babel/traverse': 7.26.4 14640 - '@babel/types': 7.26.3 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)) 15496 + '@babel/helper-module-imports': 7.27.1 15497 + '@babel/traverse': 7.28.4 15498 + '@babel/types': 7.28.4 15499 + debug: 4.4.3 15500 + lightningcss: 1.30.2 15501 + react: 19.1.0 15502 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 15503 + react-native-reanimated: 4.1.2(@babel/core@7.28.4)(react-native-worklets@0.6.0(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 15504 + semver: 7.7.2 15505 + tailwindcss: 3.4.18 14648 15506 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) 15507 + react-native-safe-area-context: 5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 15508 + react-native-svg: 15.12.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 14651 15509 transitivePeerDependencies: 14652 15510 - supports-color 14653 15511 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))): 15512 + react-native-css-interop@0.2.1(react-native-reanimated@4.1.2(@babel/core@7.28.4)(react-native-worklets@0.6.0(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-svg@15.12.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(tailwindcss@3.4.18): 14655 15513 dependencies: 14656 15514 '@babel/helper-module-imports': 7.25.9 14657 15515 '@babel/traverse': 7.26.4 14658 - '@babel/types': 7.26.3 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) 15516 + '@babel/types': 7.28.4 15517 + debug: 4.4.3 15518 + lightningcss: 1.27.0 15519 + react: 19.1.0 15520 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 15521 + react-native-reanimated: 4.1.2(@babel/core@7.28.4)(react-native-worklets@0.6.0(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 14664 15522 semver: 7.6.3 14665 - tailwindcss: 3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)) 15523 + tailwindcss: 3.4.18 14666 15524 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) 15525 + react-native-safe-area-context: 5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 15526 + react-native-svg: 15.12.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 14669 15527 transitivePeerDependencies: 14670 15528 - supports-color 14671 15529 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): 15530 + react-native-gesture-handler@2.28.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): 14673 15531 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) 15532 + '@egjs/hammerjs': 2.0.17 15533 + hoist-non-react-statics: 3.3.2 15534 + invariant: 2.2.4 15535 + react: 19.1.0 15536 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 14676 15537 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): 15538 + react-native-gesture-handler@2.28.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0): 14683 15539 dependencies: 14684 15540 '@egjs/hammerjs': 2.0.17 14685 15541 hoist-non-react-statics: 3.3.2 14686 15542 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) 15543 + react: 19.2.0 15544 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0) 15545 + optional: true 15546 + 15547 + react-native-is-edge-to-edge@1.1.7(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): 15548 + dependencies: 15549 + react: 19.1.0 15550 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 15551 + 15552 + react-native-is-edge-to-edge@1.1.7(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0): 15553 + dependencies: 15554 + react: 19.2.0 15555 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0) 15556 + optional: true 14689 15557 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): 15558 + react-native-is-edge-to-edge@1.2.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): 14691 15559 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) 15560 + react: 19.1.0 15561 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 14694 15562 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): 15563 + react-native-is-edge-to-edge@1.2.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0): 14696 15564 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) 15565 + react: 19.2.0 15566 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0) 15567 + optional: true 14699 15568 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): 15569 + react-native-quick-base64@2.1.2(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): 14701 15570 dependencies: 14702 15571 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) 15572 + react: 19.1.0 15573 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 14705 15574 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): 15575 + react-native-quick-crypto@0.7.17(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): 14707 15576 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) 15577 + '@craftzdog/react-native-buffer': 6.0.5(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 14709 15578 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 15579 readable-stream: 4.5.2 14713 15580 string_decoder: 1.3.0 14714 15581 util: 0.12.5 15582 + transitivePeerDependencies: 15583 + - react 15584 + - react-native 14715 15585 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): 15586 + react-native-reanimated@4.1.2(@babel/core@7.28.4)(react-native-worklets@0.6.0(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): 14717 15587 dependencies: 14718 - '@babel/core': 7.26.0 14719 - '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.0) 14720 - '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.0) 14721 - '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.0) 14722 - '@babel/plugin-transform-nullish-coalescing-operator': 7.25.9(@babel/core@7.26.0) 14723 - '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.0) 14724 - '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.0) 14725 - '@babel/plugin-transform-template-literals': 7.25.9(@babel/core@7.26.0) 14726 - '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.0) 14727 - '@babel/preset-typescript': 7.26.0(@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 15588 + '@babel/core': 7.28.4 15589 + react: 19.1.0 15590 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 15591 + react-native-is-edge-to-edge: 1.2.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 15592 + react-native-worklets: 0.6.0(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 15593 + semver: 7.7.2 14735 15594 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): 15595 + react-native-reanimated@4.1.2(@babel/core@7.28.4)(react-native-worklets@0.6.0(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0): 14737 15596 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) 15597 + '@babel/core': 7.28.4 15598 + react: 19.2.0 15599 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0) 15600 + react-native-is-edge-to-edge: 1.2.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0) 15601 + react-native-worklets: 0.6.0(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0) 15602 + semver: 7.7.2 15603 + optional: true 14740 15604 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): 15605 + react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): 14742 15606 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) 15607 + react: 19.1.0 15608 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 15609 + 15610 + react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0): 15611 + dependencies: 15612 + react: 19.2.0 15613 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0) 15614 + optional: true 15615 + 15616 + react-native-screens@4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): 15617 + dependencies: 15618 + react: 19.1.0 15619 + react-freeze: 1.0.4(react@19.1.0) 15620 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 15621 + react-native-is-edge-to-edge: 1.2.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 14746 15622 warn-once: 0.1.1 14747 15623 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): 15624 + react-native-screens@4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0): 15625 + dependencies: 15626 + react: 19.2.0 15627 + react-freeze: 1.0.4(react@19.2.0) 15628 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0) 15629 + react-native-is-edge-to-edge: 1.2.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0) 15630 + warn-once: 0.1.1 15631 + optional: true 15632 + 15633 + react-native-svg@15.12.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): 14749 15634 dependencies: 14750 15635 css-select: 5.1.0 14751 15636 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) 15637 + react: 19.1.0 15638 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 14754 15639 warn-once: 0.1.1 14755 15640 14756 - react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0): 15641 + react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0): 15642 + dependencies: 15643 + '@babel/runtime': 7.28.4 15644 + '@react-native/normalize-colors': 0.74.88 15645 + fbjs: 3.0.5 15646 + inline-style-prefixer: 7.0.1 15647 + memoize-one: 6.0.0 15648 + nullthrows: 1.1.1 15649 + postcss-value-parser: 4.2.0 15650 + react: 19.1.0 15651 + react-dom: 19.1.0(react@19.1.0) 15652 + styleq: 0.1.3 15653 + transitivePeerDependencies: 15654 + - encoding 15655 + 15656 + react-native-web@0.21.1(react-dom@19.2.0(react@19.2.0))(react@19.2.0): 14757 15657 dependencies: 14758 - '@babel/runtime': 7.26.0 15658 + '@babel/runtime': 7.28.4 14759 15659 '@react-native/normalize-colors': 0.74.88 14760 15660 fbjs: 3.0.5 14761 15661 inline-style-prefixer: 7.0.1 14762 15662 memoize-one: 6.0.0 14763 15663 nullthrows: 1.1.1 14764 15664 postcss-value-parser: 4.2.0 14765 - react: 19.0.0 14766 - react-dom: 19.0.0(react@19.0.0) 15665 + react: 19.2.0 15666 + react-dom: 19.2.0(react@19.2.0) 14767 15667 styleq: 0.1.3 14768 15668 transitivePeerDependencies: 14769 15669 - encoding 15670 + optional: true 14770 15671 14771 - react-native@0.79.2(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0): 15672 + react-native-worklets@0.6.0(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): 15673 + dependencies: 15674 + '@babel/core': 7.28.4 15675 + '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.28.4) 15676 + '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.28.4) 15677 + '@babel/plugin-transform-classes': 7.28.4(@babel/core@7.28.4) 15678 + '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.28.4) 15679 + '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.28.4) 15680 + '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.28.4) 15681 + '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.28.4) 15682 + '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.28.4) 15683 + '@babel/preset-typescript': 7.27.1(@babel/core@7.28.4) 15684 + convert-source-map: 2.0.0 15685 + react: 19.1.0 15686 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0) 15687 + semver: 7.7.2 15688 + transitivePeerDependencies: 15689 + - supports-color 15690 + 15691 + react-native-worklets@0.6.0(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0): 15692 + dependencies: 15693 + '@babel/core': 7.28.4 15694 + '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.28.4) 15695 + '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.28.4) 15696 + '@babel/plugin-transform-classes': 7.28.4(@babel/core@7.28.4) 15697 + '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.28.4) 15698 + '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.28.4) 15699 + '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.28.4) 15700 + '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.28.4) 15701 + '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.28.4) 15702 + '@babel/preset-typescript': 7.27.1(@babel/core@7.28.4) 15703 + convert-source-map: 2.0.0 15704 + react: 19.2.0 15705 + react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0) 15706 + semver: 7.7.2 15707 + transitivePeerDependencies: 15708 + - supports-color 15709 + optional: true 15710 + 15711 + react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0): 14772 15712 dependencies: 14773 15713 '@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) 15714 + '@react-native/assets-registry': 0.81.4 15715 + '@react-native/codegen': 0.81.4(@babel/core@7.28.4) 15716 + '@react-native/community-cli-plugin': 0.81.4 15717 + '@react-native/gradle-plugin': 0.81.4 15718 + '@react-native/js-polyfills': 0.81.4 15719 + '@react-native/normalize-colors': 0.81.4 15720 + '@react-native/virtualized-lists': 0.81.4(@types/react@19.1.17)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) 14781 15721 abort-controller: 3.0.0 14782 15722 anser: 1.4.10 14783 15723 ansi-regex: 5.0.1 14784 - babel-jest: 29.7.0(@babel/core@7.26.0) 14785 - babel-plugin-syntax-hermes-parser: 0.25.1 15724 + babel-jest: 29.7.0(@babel/core@7.28.4) 15725 + babel-plugin-syntax-hermes-parser: 0.29.1 14786 15726 base64-js: 1.5.1 14787 - chalk: 4.1.2 14788 15727 commander: 12.1.0 14789 - event-target-shim: 5.0.1 14790 15728 flow-enums-runtime: 0.0.6 14791 15729 glob: 7.2.3 14792 15730 invariant: 2.2.4 14793 15731 jest-environment-node: 29.7.0 14794 15732 memoize-one: 5.2.1 14795 - metro-runtime: 0.82.4 14796 - metro-source-map: 0.82.4 15733 + metro-runtime: 0.83.1 15734 + metro-source-map: 0.83.1 14797 15735 nullthrows: 1.1.1 14798 15736 pretty-format: 29.7.0 14799 15737 promise: 8.3.0 14800 - react: 19.0.0 14801 - react-devtools-core: 6.1.2 15738 + react: 19.1.0 15739 + react-devtools-core: 6.1.5 14802 15740 react-refresh: 0.14.2 14803 15741 regenerator-runtime: 0.13.11 14804 - scheduler: 0.25.0 14805 - semver: 7.6.3 15742 + scheduler: 0.26.0 15743 + semver: 7.7.2 14806 15744 stacktrace-parser: 0.1.10 14807 15745 whatwg-fetch: 3.6.20 14808 15746 ws: 6.2.3 14809 15747 yargs: 17.7.2 14810 15748 optionalDependencies: 14811 - '@types/react': 19.0.14 15749 + '@types/react': 19.1.17 14812 15750 transitivePeerDependencies: 14813 15751 - '@babel/core' 14814 15752 - '@react-native-community/cli' 15753 + - '@react-native/metro-config' 14815 15754 - bufferutil 14816 15755 - supports-color 14817 15756 - utf-8-validate 14818 15757 14819 - react-native@0.79.2(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0): 15758 + react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0): 14820 15759 dependencies: 14821 15760 '@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) 15761 + '@react-native/assets-registry': 0.81.4 15762 + '@react-native/codegen': 0.81.4(@babel/core@7.28.4) 15763 + '@react-native/community-cli-plugin': 0.81.4 15764 + '@react-native/gradle-plugin': 0.81.4 15765 + '@react-native/js-polyfills': 0.81.4 15766 + '@react-native/normalize-colors': 0.81.4 15767 + '@react-native/virtualized-lists': 0.81.4(@types/react@19.2.0)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0) 14829 15768 abort-controller: 3.0.0 14830 15769 anser: 1.4.10 14831 15770 ansi-regex: 5.0.1 14832 15771 babel-jest: 29.7.0(@babel/core@7.28.4) 14833 - babel-plugin-syntax-hermes-parser: 0.25.1 15772 + babel-plugin-syntax-hermes-parser: 0.29.1 14834 15773 base64-js: 1.5.1 14835 - chalk: 4.1.2 14836 15774 commander: 12.1.0 14837 - event-target-shim: 5.0.1 14838 15775 flow-enums-runtime: 0.0.6 14839 15776 glob: 7.2.3 14840 15777 invariant: 2.2.4 14841 15778 jest-environment-node: 29.7.0 14842 15779 memoize-one: 5.2.1 14843 - metro-runtime: 0.82.4 14844 - metro-source-map: 0.82.4 15780 + metro-runtime: 0.83.1 15781 + metro-source-map: 0.83.1 14845 15782 nullthrows: 1.1.1 14846 15783 pretty-format: 29.7.0 14847 15784 promise: 8.3.0 14848 - react: 19.0.0 14849 - react-devtools-core: 6.1.2 15785 + react: 19.2.0 15786 + react-devtools-core: 6.1.5 14850 15787 react-refresh: 0.14.2 14851 15788 regenerator-runtime: 0.13.11 14852 - scheduler: 0.25.0 14853 - semver: 7.6.3 15789 + scheduler: 0.26.0 15790 + semver: 7.7.2 14854 15791 stacktrace-parser: 0.1.10 14855 15792 whatwg-fetch: 3.6.20 14856 15793 ws: 6.2.3 14857 15794 yargs: 17.7.2 14858 15795 optionalDependencies: 14859 - '@types/react': 19.0.14 15796 + '@types/react': 19.2.0 14860 15797 transitivePeerDependencies: 14861 15798 - '@babel/core' 14862 15799 - '@react-native-community/cli' 15800 + - '@react-native/metro-config' 14863 15801 - bufferutil 14864 15802 - supports-color 14865 15803 - utf-8-validate ··· 14868 15806 14869 15807 react-refresh@0.16.0: {} 14870 15808 14871 - react-remove-scroll-bar@2.3.8(@types/react@19.0.14)(react@19.0.0): 15809 + react-remove-scroll-bar@2.3.8(@types/react@19.1.17)(react@19.1.0): 15810 + dependencies: 15811 + react: 19.1.0 15812 + react-style-singleton: 2.2.3(@types/react@19.1.17)(react@19.1.0) 15813 + tslib: 2.8.1 15814 + optionalDependencies: 15815 + '@types/react': 19.1.17 15816 + 15817 + react-remove-scroll-bar@2.3.8(@types/react@19.2.0)(react@19.2.0): 14872 15818 dependencies: 14873 - react: 19.0.0 14874 - react-style-singleton: 2.2.3(@types/react@19.0.14)(react@19.0.0) 15819 + react: 19.2.0 15820 + react-style-singleton: 2.2.3(@types/react@19.2.0)(react@19.2.0) 14875 15821 tslib: 2.8.1 14876 15822 optionalDependencies: 14877 - '@types/react': 19.0.14 15823 + '@types/react': 19.2.0 15824 + optional: true 14878 15825 14879 - react-remove-scroll@2.6.2(@types/react@19.0.14)(react@19.0.0): 15826 + react-remove-scroll@2.7.1(@types/react@19.1.17)(react@19.1.0): 14880 15827 dependencies: 14881 - react: 19.0.0 14882 - react-remove-scroll-bar: 2.3.8(@types/react@19.0.14)(react@19.0.0) 14883 - react-style-singleton: 2.2.3(@types/react@19.0.14)(react@19.0.0) 15828 + react: 19.1.0 15829 + react-remove-scroll-bar: 2.3.8(@types/react@19.1.17)(react@19.1.0) 15830 + react-style-singleton: 2.2.3(@types/react@19.1.17)(react@19.1.0) 14884 15831 tslib: 2.8.1 14885 - use-callback-ref: 1.3.3(@types/react@19.0.14)(react@19.0.0) 14886 - use-sidecar: 1.1.3(@types/react@19.0.14)(react@19.0.0) 15832 + use-callback-ref: 1.3.3(@types/react@19.1.17)(react@19.1.0) 15833 + use-sidecar: 1.1.3(@types/react@19.1.17)(react@19.1.0) 14887 15834 optionalDependencies: 14888 - '@types/react': 19.0.14 15835 + '@types/react': 19.1.17 14889 15836 14890 - react-server-dom-webpack@19.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(webpack@5.97.1): 15837 + react-remove-scroll@2.7.1(@types/react@19.2.0)(react@19.2.0): 15838 + dependencies: 15839 + react: 19.2.0 15840 + react-remove-scroll-bar: 2.3.8(@types/react@19.2.0)(react@19.2.0) 15841 + react-style-singleton: 2.2.3(@types/react@19.2.0)(react@19.2.0) 15842 + tslib: 2.8.1 15843 + use-callback-ref: 1.3.3(@types/react@19.2.0)(react@19.2.0) 15844 + use-sidecar: 1.1.3(@types/react@19.2.0)(react@19.2.0) 15845 + optionalDependencies: 15846 + '@types/react': 19.2.0 15847 + optional: true 15848 + 15849 + react-server-dom-webpack@19.0.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(webpack@5.97.1): 14891 15850 dependencies: 14892 15851 acorn-loose: 8.5.2 14893 15852 neo-async: 2.6.2 14894 - react: 19.0.0 14895 - react-dom: 19.0.0(react@19.0.0) 15853 + react: 19.1.0 15854 + react-dom: 19.1.0(react@19.1.0) 15855 + webpack: 5.97.1 15856 + webpack-sources: 3.2.3 15857 + optional: true 15858 + 15859 + react-server-dom-webpack@19.0.0(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(webpack@5.97.1): 15860 + dependencies: 15861 + acorn-loose: 8.5.2 15862 + neo-async: 2.6.2 15863 + react: 19.2.0 15864 + react-dom: 19.2.0(react@19.2.0) 14896 15865 webpack: 5.97.1 14897 15866 webpack-sources: 3.2.3 14898 15867 14899 - react-style-singleton@2.2.3(@types/react@19.0.14)(react@19.0.0): 15868 + react-style-singleton@2.2.3(@types/react@19.1.17)(react@19.1.0): 14900 15869 dependencies: 14901 15870 get-nonce: 1.0.1 14902 - react: 19.0.0 15871 + react: 19.1.0 14903 15872 tslib: 2.8.1 14904 15873 optionalDependencies: 14905 - '@types/react': 19.0.14 15874 + '@types/react': 19.1.17 15875 + 15876 + react-style-singleton@2.2.3(@types/react@19.2.0)(react@19.2.0): 15877 + dependencies: 15878 + get-nonce: 1.0.1 15879 + react: 19.2.0 15880 + tslib: 2.8.1 15881 + optionalDependencies: 15882 + '@types/react': 19.2.0 15883 + optional: true 15884 + 15885 + react-test-renderer@19.1.0(react@19.1.0): 15886 + dependencies: 15887 + react: 19.1.0 15888 + react-is: 19.1.0 15889 + scheduler: 0.26.0 14906 15890 14907 - react-test-renderer@19.1.0(react@19.0.0): 15891 + react-test-renderer@19.1.0(react@19.2.0): 14908 15892 dependencies: 14909 - react: 19.0.0 15893 + react: 19.2.0 14910 15894 react-is: 19.1.0 14911 15895 scheduler: 0.26.0 14912 15896 14913 - react@19.0.0: {} 15897 + react@19.1.0: {} 15898 + 15899 + react@19.2.0: {} 14914 15900 14915 15901 read-cache@1.0.0: 14916 15902 dependencies: ··· 14924 15910 process: 0.11.10 14925 15911 string_decoder: 1.3.0 14926 15912 15913 + readable-stream@4.7.0: 15914 + dependencies: 15915 + abort-controller: 3.0.0 15916 + buffer: 6.0.3 15917 + events: 3.3.0 15918 + process: 0.11.10 15919 + string_decoder: 1.3.0 15920 + 14927 15921 readdirp@3.6.0: 14928 15922 dependencies: 14929 15923 picomatch: 2.3.1 ··· 14938 15932 14939 15933 real-require@0.2.0: {} 14940 15934 14941 - reflect.getprototypeof@1.0.9: 15935 + redent@3.0.0: 15936 + dependencies: 15937 + indent-string: 4.0.0 15938 + strip-indent: 3.0.0 15939 + 15940 + reflect.getprototypeof@1.0.10: 14942 15941 dependencies: 14943 15942 call-bind: 1.0.8 14944 15943 define-properties: 1.2.1 14945 - dunder-proto: 1.0.1 14946 - es-abstract: 1.23.8 15944 + es-abstract: 1.24.0 14947 15945 es-errors: 1.3.0 14948 - get-intrinsic: 1.2.6 14949 - gopd: 1.2.0 15946 + es-object-atoms: 1.1.1 15947 + get-intrinsic: 1.3.0 15948 + get-proto: 1.0.1 14950 15949 which-builtin-type: 1.2.1 14951 15950 14952 15951 regenerate-unicode-properties@10.2.0: 14953 15952 dependencies: 14954 15953 regenerate: 1.4.2 14955 15954 15955 + regenerate-unicode-properties@10.2.2: 15956 + dependencies: 15957 + regenerate: 1.4.2 15958 + 14956 15959 regenerate@1.4.2: {} 14957 15960 14958 15961 regenerator-runtime@0.13.11: {} 14959 - 14960 - regenerator-runtime@0.14.1: {} 14961 15962 14962 15963 regenerator-runtime@0.9.6: {} 14963 15964 14964 15965 regenerator-transform@0.15.2: 14965 15966 dependencies: 14966 - '@babel/runtime': 7.26.0 15967 + '@babel/runtime': 7.28.4 14967 15968 14968 - regexp.prototype.flags@1.5.3: 15969 + regexp.prototype.flags@1.5.4: 14969 15970 dependencies: 14970 15971 call-bind: 1.0.8 14971 15972 define-properties: 1.2.1 14972 15973 es-errors: 1.3.0 15974 + get-proto: 1.0.1 15975 + gopd: 1.2.0 14973 15976 set-function-name: 2.0.2 14974 15977 14975 15978 regexpu-core@6.2.0: ··· 14981 15984 unicode-match-property-ecmascript: 2.0.0 14982 15985 unicode-match-property-value-ecmascript: 2.2.0 14983 15986 15987 + regexpu-core@6.4.0: 15988 + dependencies: 15989 + regenerate: 1.4.2 15990 + regenerate-unicode-properties: 10.2.2 15991 + regjsgen: 0.8.0 15992 + regjsparser: 0.13.0 15993 + unicode-match-property-ecmascript: 2.0.0 15994 + unicode-match-property-value-ecmascript: 2.2.1 15995 + 14984 15996 regjsgen@0.8.0: {} 14985 15997 14986 15998 regjsparser@0.12.0: 14987 15999 dependencies: 14988 16000 jsesc: 3.0.2 14989 16001 16002 + regjsparser@0.13.0: 16003 + dependencies: 16004 + jsesc: 3.1.0 16005 + 14990 16006 repeat-string@1.6.1: {} 14991 16007 14992 16008 request-promise@3.0.0: ··· 15042 16058 15043 16059 resolve-from@5.0.0: {} 15044 16060 16061 + resolve-global@1.0.0: 16062 + dependencies: 16063 + global-dirs: 0.1.1 16064 + 15045 16065 resolve-pkg-maps@1.0.0: {} 15046 16066 15047 16067 resolve-workspace-root@2.0.0: {} ··· 15074 16094 onetime: 2.0.1 15075 16095 signal-exit: 3.0.7 15076 16096 15077 - reusify@1.0.4: {} 16097 + reusify@1.1.0: {} 15078 16098 15079 16099 rimraf@2.7.1: 15080 16100 dependencies: ··· 15102 16122 safe-array-concat@1.1.3: 15103 16123 dependencies: 15104 16124 call-bind: 1.0.8 15105 - call-bound: 1.0.3 15106 - get-intrinsic: 1.2.6 16125 + call-bound: 1.0.4 16126 + get-intrinsic: 1.3.0 15107 16127 has-symbols: 1.1.0 15108 16128 isarray: 2.0.5 15109 16129 ··· 15116 16136 15117 16137 safe-regex-test@1.1.0: 15118 16138 dependencies: 15119 - call-bound: 1.0.3 16139 + call-bound: 1.0.4 15120 16140 es-errors: 1.3.0 15121 16141 is-regex: 1.2.1 15122 16142 ··· 15130 16150 dependencies: 15131 16151 xmlchars: 2.2.0 15132 16152 15133 - scheduler@0.25.0: {} 16153 + scheduler@0.26.0: {} 15134 16154 15135 - scheduler@0.26.0: {} 16155 + scheduler@0.27.0: {} 15136 16156 15137 16157 schema-utils@3.3.0: 15138 16158 dependencies: ··· 15140 16160 ajv: 6.12.6 15141 16161 ajv-keywords: 3.5.2(ajv@6.12.6) 15142 16162 15143 - schema-utils@4.3.0: 16163 + schema-utils@4.3.3: 15144 16164 dependencies: 15145 16165 '@types/json-schema': 7.0.15 15146 16166 ajv: 8.17.1 ··· 15204 16224 functions-have-names: 1.2.3 15205 16225 has-property-descriptors: 1.0.2 15206 16226 16227 + set-proto@1.0.0: 16228 + dependencies: 16229 + dunder-proto: 1.0.1 16230 + es-errors: 1.3.0 16231 + es-object-atoms: 1.1.1 16232 + 15207 16233 setimmediate@1.0.5: {} 15208 16234 15209 16235 setprototypeof@1.2.0: {} 15210 16236 16237 + sf-symbols-typescript@2.1.0: {} 16238 + 15211 16239 shallowequal@1.1.0: {} 15212 16240 15213 16241 shebang-command@2.0.0: ··· 15221 16249 side-channel-list@1.0.0: 15222 16250 dependencies: 15223 16251 es-errors: 1.3.0 15224 - object-inspect: 1.13.3 16252 + object-inspect: 1.13.4 15225 16253 15226 16254 side-channel-map@1.0.1: 15227 16255 dependencies: 15228 - call-bound: 1.0.3 16256 + call-bound: 1.0.4 15229 16257 es-errors: 1.3.0 15230 - get-intrinsic: 1.2.6 15231 - object-inspect: 1.13.3 16258 + get-intrinsic: 1.3.0 16259 + object-inspect: 1.13.4 15232 16260 15233 16261 side-channel-weakmap@1.0.2: 15234 16262 dependencies: 15235 - call-bound: 1.0.3 16263 + call-bound: 1.0.4 15236 16264 es-errors: 1.3.0 15237 - get-intrinsic: 1.2.6 15238 - object-inspect: 1.13.3 16265 + get-intrinsic: 1.3.0 16266 + object-inspect: 1.13.4 15239 16267 side-channel-map: 1.0.1 15240 16268 15241 - side-channel@1.0.6: 15242 - dependencies: 15243 - call-bind: 1.0.8 15244 - es-errors: 1.3.0 15245 - get-intrinsic: 1.2.5 15246 - object-inspect: 1.13.3 15247 - 15248 16269 side-channel@1.1.0: 15249 16270 dependencies: 15250 16271 es-errors: 1.3.0 15251 - object-inspect: 1.13.3 16272 + object-inspect: 1.13.4 15252 16273 side-channel-list: 1.0.0 15253 16274 side-channel-map: 1.0.1 15254 16275 side-channel-weakmap: 1.0.2 ··· 15317 16338 safer-buffer: 2.1.2 15318 16339 tweetnacl: 0.14.5 15319 16340 15320 - stable-hash@0.0.4: {} 16341 + stable-hash@0.0.5: {} 15321 16342 15322 16343 stack-generator@2.0.10: 15323 16344 dependencies: ··· 15348 16369 15349 16370 statuses@2.0.1: {} 15350 16371 16372 + stop-iteration-iterator@1.1.0: 16373 + dependencies: 16374 + es-errors: 1.3.0 16375 + internal-slot: 1.1.0 16376 + 15351 16377 stream-buffers@2.2.0: {} 15352 16378 15353 16379 strict-uri-encode@2.0.0: {} ··· 15360 16386 string-length@5.0.1: 15361 16387 dependencies: 15362 16388 char-regex: 2.0.2 15363 - strip-ansi: 7.1.0 16389 + strip-ansi: 7.1.2 15364 16390 15365 16391 string-width@1.0.2: 15366 16392 dependencies: ··· 15378 16404 dependencies: 15379 16405 eastasianwidth: 0.2.0 15380 16406 emoji-regex: 9.2.2 15381 - strip-ansi: 7.1.0 16407 + strip-ansi: 7.1.2 15382 16408 15383 16409 string.prototype.matchall@4.0.12: 15384 16410 dependencies: 15385 16411 call-bind: 1.0.8 15386 - call-bound: 1.0.3 16412 + call-bound: 1.0.4 15387 16413 define-properties: 1.2.1 15388 - es-abstract: 1.23.8 16414 + es-abstract: 1.24.0 15389 16415 es-errors: 1.3.0 15390 - es-object-atoms: 1.0.0 15391 - get-intrinsic: 1.2.6 16416 + es-object-atoms: 1.1.1 16417 + get-intrinsic: 1.3.0 15392 16418 gopd: 1.2.0 15393 16419 has-symbols: 1.1.0 15394 16420 internal-slot: 1.1.0 15395 - regexp.prototype.flags: 1.5.3 16421 + regexp.prototype.flags: 1.5.4 15396 16422 set-function-name: 2.0.2 15397 16423 side-channel: 1.1.0 15398 16424 15399 16425 string.prototype.repeat@1.0.0: 15400 16426 dependencies: 15401 16427 define-properties: 1.2.1 15402 - es-abstract: 1.23.8 16428 + es-abstract: 1.24.0 15403 16429 15404 16430 string.prototype.trim@1.2.10: 15405 16431 dependencies: 15406 16432 call-bind: 1.0.8 15407 - call-bound: 1.0.3 16433 + call-bound: 1.0.4 15408 16434 define-data-property: 1.1.4 15409 16435 define-properties: 1.2.1 15410 - es-abstract: 1.23.8 15411 - es-object-atoms: 1.0.0 16436 + es-abstract: 1.24.0 16437 + es-object-atoms: 1.1.1 15412 16438 has-property-descriptors: 1.0.2 15413 16439 15414 16440 string.prototype.trimend@1.0.9: 15415 16441 dependencies: 15416 16442 call-bind: 1.0.8 15417 - call-bound: 1.0.3 16443 + call-bound: 1.0.4 15418 16444 define-properties: 1.2.1 15419 - es-object-atoms: 1.0.0 16445 + es-object-atoms: 1.1.1 15420 16446 15421 16447 string.prototype.trimstart@1.0.8: 15422 16448 dependencies: 15423 16449 call-bind: 1.0.8 15424 16450 define-properties: 1.2.1 15425 - es-object-atoms: 1.0.0 16451 + es-object-atoms: 1.1.1 15426 16452 15427 16453 string_decoder@1.3.0: 15428 16454 dependencies: ··· 15440 16466 dependencies: 15441 16467 ansi-regex: 5.0.1 15442 16468 15443 - strip-ansi@7.1.0: 16469 + strip-ansi@7.1.2: 15444 16470 dependencies: 15445 - ansi-regex: 6.1.0 16471 + ansi-regex: 6.2.2 15446 16472 15447 16473 strip-bom@3.0.0: {} 15448 16474 ··· 15452 16478 15453 16479 strip-final-newline@4.0.0: {} 15454 16480 16481 + strip-indent@3.0.0: 16482 + dependencies: 16483 + min-indent: 1.0.1 16484 + 15455 16485 strip-json-comments@2.0.1: {} 15456 16486 15457 16487 strip-json-comments@3.1.1: {} ··· 15462 16492 15463 16493 sucrase@3.35.0: 15464 16494 dependencies: 15465 - '@jridgewell/gen-mapping': 0.3.5 16495 + '@jridgewell/gen-mapping': 0.3.13 15466 16496 commander: 4.1.1 15467 16497 glob: 10.4.5 15468 16498 lines-and-columns: 1.2.4 15469 16499 mz: 2.7.0 15470 - pirates: 4.0.6 16500 + pirates: 4.0.7 15471 16501 ts-interface-checker: 0.1.13 15472 16502 15473 16503 sudo-prompt@8.2.5: {} ··· 15501 16531 15502 16532 tailwind-merge@2.6.0: {} 15503 16533 15504 - tailwindcss-animate@1.0.7(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3))): 16534 + tailwindcss-animate@1.0.7(tailwindcss@3.4.18): 15505 16535 dependencies: 15506 - tailwindcss: 3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)) 16536 + tailwindcss: 3.4.18 15507 16537 15508 - tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)): 16538 + tailwindcss@3.4.18: 15509 16539 dependencies: 15510 16540 '@alloc/quick-lru': 5.2.0 15511 16541 arg: 5.0.2 15512 16542 chokidar: 3.6.0 15513 16543 didyoumean: 1.2.2 15514 16544 dlv: 1.1.3 15515 - fast-glob: 3.3.2 16545 + fast-glob: 3.3.3 15516 16546 glob-parent: 6.0.2 15517 16547 is-glob: 4.0.3 15518 16548 jiti: 1.21.7 ··· 15523 16553 picocolors: 1.1.1 15524 16554 postcss: 8.4.49 15525 16555 postcss-import: 15.1.0(postcss@8.4.49) 15526 - postcss-js: 4.0.1(postcss@8.4.49) 15527 - postcss-load-config: 4.0.2(postcss@8.4.49)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)) 16556 + postcss-js: 4.1.0(postcss@8.4.49) 16557 + postcss-load-config: 6.0.1(jiti@1.21.7)(postcss@8.4.49) 15528 16558 postcss-nested: 6.2.0(postcss@8.4.49) 15529 16559 postcss-selector-parser: 6.1.2 15530 16560 resolve: 1.22.10 15531 16561 sucrase: 3.35.0 15532 16562 transitivePeerDependencies: 15533 - - ts-node 16563 + - tsx 16564 + - yaml 15534 16565 15535 - tapable@2.2.1: {} 16566 + tapable@2.3.0: {} 15536 16567 15537 16568 tar@7.4.3: 15538 16569 dependencies: ··· 15550 16581 ansi-escapes: 4.3.2 15551 16582 supports-hyperlinks: 2.3.0 15552 16583 15553 - terser-webpack-plugin@5.3.11(webpack@5.97.1): 16584 + terser-webpack-plugin@5.3.14(webpack@5.97.1): 15554 16585 dependencies: 15555 16586 '@jridgewell/trace-mapping': 0.3.31 15556 16587 jest-worker: 27.5.1 15557 - schema-utils: 4.3.0 16588 + schema-utils: 4.3.3 15558 16589 serialize-javascript: 6.0.2 15559 - terser: 5.37.0 16590 + terser: 5.44.0 15560 16591 webpack: 5.97.1 15561 16592 15562 16593 terser@5.37.0: 15563 16594 dependencies: 15564 16595 '@jridgewell/source-map': 0.3.6 15565 - acorn: 8.14.0 16596 + acorn: 8.15.0 16597 + commander: 2.20.3 16598 + source-map-support: 0.5.21 16599 + 16600 + terser@5.44.0: 16601 + dependencies: 16602 + '@jridgewell/source-map': 0.3.11 16603 + acorn: 8.15.0 15566 16604 commander: 2.20.3 15567 16605 source-map-support: 0.5.21 15568 16606 ··· 15590 16628 15591 16629 through@2.3.8: {} 15592 16630 15593 - tinyglobby@0.2.10: 16631 + tinyglobby@0.2.15: 15594 16632 dependencies: 15595 - fdir: 6.4.2(picomatch@4.0.2) 15596 - picomatch: 4.0.2 16633 + fdir: 6.5.0(picomatch@4.0.3) 16634 + picomatch: 4.0.3 15597 16635 15598 16636 tlds@1.255.0: {} 15599 16637 ··· 15627 16665 dependencies: 15628 16666 punycode: 2.3.1 15629 16667 15630 - ts-api-utils@1.4.3(typescript@5.8.3): 16668 + ts-api-utils@1.4.3(typescript@5.9.3): 15631 16669 dependencies: 15632 - typescript: 5.8.3 16670 + typescript: 5.9.3 15633 16671 15634 - ts-api-utils@2.1.0(typescript@5.8.3): 16672 + ts-api-utils@2.1.0(typescript@5.9.3): 15635 16673 dependencies: 15636 - typescript: 5.8.3 16674 + typescript: 5.9.3 15637 16675 15638 16676 ts-interface-checker@0.1.13: {} 15639 16677 ··· 15647 16685 '@ts-morph/common': 0.25.0 15648 16686 code-block-writer: 13.0.3 15649 16687 15650 - ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3): 16688 + ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3): 15651 16689 dependencies: 15652 16690 '@cspotcode/source-map-support': 0.8.1 15653 16691 '@tsconfig/node10': 1.0.11 15654 16692 '@tsconfig/node12': 1.0.11 15655 16693 '@tsconfig/node14': 1.0.3 15656 16694 '@tsconfig/node16': 1.0.4 15657 - '@types/node': 22.10.2 16695 + '@types/node': 22.18.8 15658 16696 acorn: 8.14.0 15659 16697 acorn-walk: 8.3.4 15660 16698 arg: 4.1.3 15661 16699 create-require: 1.1.1 15662 16700 diff: 4.0.2 15663 16701 make-error: 1.3.6 15664 - typescript: 5.8.3 16702 + typescript: 5.9.3 15665 16703 v8-compile-cache-lib: 3.0.1 15666 16704 yn: 3.1.1 15667 16705 ··· 15678 16716 dependencies: 15679 16717 safe-buffer: 5.2.1 15680 16718 15681 - turbo-darwin-64@2.3.3: 16719 + turbo-darwin-64@2.5.8: 15682 16720 optional: true 15683 16721 15684 - turbo-darwin-arm64@2.3.3: 16722 + turbo-darwin-arm64@2.5.8: 15685 16723 optional: true 15686 16724 15687 - turbo-linux-64@2.3.3: 16725 + turbo-linux-64@2.5.8: 15688 16726 optional: true 15689 16727 15690 - turbo-linux-arm64@2.3.3: 16728 + turbo-linux-arm64@2.5.8: 15691 16729 optional: true 15692 16730 15693 - turbo-windows-64@2.3.3: 16731 + turbo-windows-64@2.5.8: 15694 16732 optional: true 15695 16733 15696 - turbo-windows-arm64@2.3.3: 16734 + turbo-windows-arm64@2.5.8: 15697 16735 optional: true 15698 16736 15699 - turbo@2.3.3: 16737 + turbo@2.5.8: 15700 16738 optionalDependencies: 15701 - turbo-darwin-64: 2.3.3 15702 - turbo-darwin-arm64: 2.3.3 15703 - turbo-linux-64: 2.3.3 15704 - turbo-linux-arm64: 2.3.3 15705 - turbo-windows-64: 2.3.3 15706 - turbo-windows-arm64: 2.3.3 16739 + turbo-darwin-64: 2.5.8 16740 + turbo-darwin-arm64: 2.5.8 16741 + turbo-linux-64: 2.5.8 16742 + turbo-linux-arm64: 2.5.8 16743 + turbo-windows-64: 2.5.8 16744 + turbo-windows-arm64: 2.5.8 15707 16745 15708 16746 tweetnacl@0.14.5: {} 15709 16747 ··· 15726 16764 15727 16765 typed-array-buffer@1.0.3: 15728 16766 dependencies: 15729 - call-bound: 1.0.3 16767 + call-bound: 1.0.4 15730 16768 es-errors: 1.3.0 15731 16769 is-typed-array: 1.1.15 15732 16770 15733 16771 typed-array-byte-length@1.0.3: 15734 16772 dependencies: 15735 16773 call-bind: 1.0.8 15736 - for-each: 0.3.3 16774 + for-each: 0.3.5 15737 16775 gopd: 1.2.0 15738 16776 has-proto: 1.2.0 15739 16777 is-typed-array: 1.1.15 ··· 15742 16780 dependencies: 15743 16781 available-typed-arrays: 1.0.7 15744 16782 call-bind: 1.0.8 15745 - for-each: 0.3.3 16783 + for-each: 0.3.5 15746 16784 gopd: 1.2.0 15747 16785 has-proto: 1.2.0 15748 16786 is-typed-array: 1.1.15 15749 - reflect.getprototypeof: 1.0.9 16787 + reflect.getprototypeof: 1.0.10 15750 16788 15751 16789 typed-array-length@1.0.7: 15752 16790 dependencies: 15753 16791 call-bind: 1.0.8 15754 - for-each: 0.3.3 16792 + for-each: 0.3.5 15755 16793 gopd: 1.2.0 15756 16794 is-typed-array: 1.1.15 15757 - possible-typed-array-names: 1.0.0 15758 - reflect.getprototypeof: 1.0.9 16795 + possible-typed-array-names: 1.1.0 16796 + reflect.getprototypeof: 1.0.10 15759 16797 15760 - typescript@5.8.3: {} 16798 + typescript@5.9.3: {} 15761 16799 15762 16800 ua-parser-js@1.0.40: {} 15763 16801 ··· 15767 16805 15768 16806 unbox-primitive@1.1.0: 15769 16807 dependencies: 15770 - call-bound: 1.0.3 16808 + call-bound: 1.0.4 15771 16809 has-bigints: 1.1.0 15772 16810 has-symbols: 1.1.0 15773 16811 which-boxed-primitive: 1.1.1 15774 16812 15775 - undici-types@6.19.8: {} 15776 - 15777 - undici-types@6.20.0: {} 16813 + undici-types@6.21.0: {} 15778 16814 15779 16815 undici@6.21.0: {} 15780 16816 ··· 15786 16822 unicode-property-aliases-ecmascript: 2.1.0 15787 16823 15788 16824 unicode-match-property-value-ecmascript@2.2.0: {} 16825 + 16826 + unicode-match-property-value-ecmascript@2.2.1: {} 15789 16827 15790 16828 unicode-property-aliases-ecmascript@2.1.0: {} 15791 16829 ··· 15825 16863 15826 16864 untildify@3.0.3: {} 15827 16865 15828 - update-browserslist-db@1.1.1(browserslist@4.24.3): 16866 + update-browserslist-db@1.1.3(browserslist@4.26.3): 15829 16867 dependencies: 15830 - browserslist: 4.24.3 16868 + browserslist: 4.26.3 15831 16869 escalade: 3.2.0 15832 16870 picocolors: 1.1.1 15833 16871 ··· 15840 16878 querystringify: 2.2.0 15841 16879 requires-port: 1.0.0 15842 16880 15843 - use-callback-ref@1.3.3(@types/react@19.0.14)(react@19.0.0): 16881 + use-callback-ref@1.3.3(@types/react@19.1.17)(react@19.1.0): 15844 16882 dependencies: 15845 - react: 19.0.0 16883 + react: 19.1.0 15846 16884 tslib: 2.8.1 15847 16885 optionalDependencies: 15848 - '@types/react': 19.0.14 16886 + '@types/react': 19.1.17 16887 + 16888 + use-callback-ref@1.3.3(@types/react@19.2.0)(react@19.2.0): 16889 + dependencies: 16890 + react: 19.2.0 16891 + tslib: 2.8.1 16892 + optionalDependencies: 16893 + '@types/react': 19.2.0 16894 + optional: true 15849 16895 15850 - use-latest-callback@0.2.3(react@19.0.0): 16896 + use-latest-callback@0.2.3(react@19.1.0): 15851 16897 dependencies: 15852 - react: 19.0.0 16898 + react: 19.1.0 15853 16899 15854 - use-sidecar@1.1.3(@types/react@19.0.14)(react@19.0.0): 16900 + use-latest-callback@0.2.3(react@19.2.0): 16901 + dependencies: 16902 + react: 19.2.0 16903 + optional: true 16904 + 16905 + use-latest-callback@0.2.4(react@19.1.0): 16906 + dependencies: 16907 + react: 19.1.0 16908 + 16909 + use-latest-callback@0.2.4(react@19.2.0): 16910 + dependencies: 16911 + react: 19.2.0 16912 + optional: true 16913 + 16914 + use-sidecar@1.1.3(@types/react@19.1.17)(react@19.1.0): 15855 16915 dependencies: 15856 16916 detect-node-es: 1.1.0 15857 - react: 19.0.0 16917 + react: 19.1.0 15858 16918 tslib: 2.8.1 15859 16919 optionalDependencies: 15860 - '@types/react': 19.0.14 16920 + '@types/react': 19.1.17 15861 16921 15862 - use-sync-external-store@1.5.0(react@19.0.0): 16922 + use-sidecar@1.1.3(@types/react@19.2.0)(react@19.2.0): 15863 16923 dependencies: 15864 - react: 19.0.0 16924 + detect-node-es: 1.1.0 16925 + react: 19.2.0 16926 + tslib: 2.8.1 16927 + optionalDependencies: 16928 + '@types/react': 19.2.0 16929 + optional: true 16930 + 16931 + use-sync-external-store@1.5.0(react@19.1.0): 16932 + dependencies: 16933 + react: 19.1.0 16934 + 16935 + use-sync-external-store@1.5.0(react@19.2.0): 16936 + dependencies: 16937 + react: 19.2.0 16938 + optional: true 16939 + 16940 + use-sync-external-store@1.6.0(react@19.1.0): 16941 + dependencies: 16942 + react: 19.1.0 16943 + 16944 + use-sync-external-store@1.6.0(react@19.2.0): 16945 + dependencies: 16946 + react: 19.2.0 16947 + optional: true 15865 16948 15866 16949 user-home@2.0.0: 15867 16950 dependencies: ··· 15887 16970 15888 16971 v8-to-istanbul@9.3.0: 15889 16972 dependencies: 15890 - '@jridgewell/trace-mapping': 0.3.25 16973 + '@jridgewell/trace-mapping': 0.3.31 15891 16974 '@types/istanbul-lib-coverage': 2.0.6 15892 16975 convert-source-map: 2.0.0 15893 16976 ··· 15895 16978 15896 16979 vary@1.1.2: {} 15897 16980 16981 + vaul@1.1.2(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0): 16982 + dependencies: 16983 + '@radix-ui/react-dialog': 1.1.15(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 16984 + react: 19.1.0 16985 + react-dom: 19.1.0(react@19.1.0) 16986 + transitivePeerDependencies: 16987 + - '@types/react' 16988 + - '@types/react-dom' 16989 + 16990 + vaul@1.1.2(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0): 16991 + dependencies: 16992 + '@radix-ui/react-dialog': 1.1.15(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) 16993 + react: 19.2.0 16994 + react-dom: 19.2.0(react@19.2.0) 16995 + transitivePeerDependencies: 16996 + - '@types/react' 16997 + - '@types/react-dom' 16998 + optional: true 16999 + 15898 17000 verror@1.10.0: 15899 17001 dependencies: 15900 17002 assert-plus: 1.0.0 ··· 15913 17015 15914 17016 warn-once@0.1.1: {} 15915 17017 15916 - watchpack@2.4.2: 17018 + watchpack@2.4.4: 15917 17019 dependencies: 15918 17020 glob-to-regexp: 0.4.1 15919 17021 graceful-fs: 4.2.11 ··· 15930 17032 15931 17033 webpack-sources@3.2.3: {} 15932 17034 17035 + webpack-sources@3.3.3: {} 17036 + 15933 17037 webpack@5.97.1: 15934 17038 dependencies: 15935 17039 '@types/eslint-scope': 3.7.7 15936 - '@types/estree': 1.0.6 17040 + '@types/estree': 1.0.8 15937 17041 '@webassemblyjs/ast': 1.14.1 15938 17042 '@webassemblyjs/wasm-edit': 1.14.1 15939 17043 '@webassemblyjs/wasm-parser': 1.14.1 15940 - acorn: 8.14.0 15941 - browserslist: 4.24.3 17044 + acorn: 8.15.0 17045 + browserslist: 4.26.3 15942 17046 chrome-trace-event: 1.0.4 15943 - enhanced-resolve: 5.17.1 15944 - es-module-lexer: 1.6.0 17047 + enhanced-resolve: 5.18.3 17048 + es-module-lexer: 1.7.0 15945 17049 eslint-scope: 5.1.1 15946 17050 events: 3.3.0 15947 17051 glob-to-regexp: 0.4.1 ··· 15951 17055 mime-types: 2.1.35 15952 17056 neo-async: 2.6.2 15953 17057 schema-utils: 3.3.0 15954 - tapable: 2.2.1 15955 - terser-webpack-plugin: 5.3.11(webpack@5.97.1) 15956 - watchpack: 2.4.2 15957 - webpack-sources: 3.2.3 17058 + tapable: 2.3.0 17059 + terser-webpack-plugin: 5.3.14(webpack@5.97.1) 17060 + watchpack: 2.4.4 17061 + webpack-sources: 3.3.3 15958 17062 transitivePeerDependencies: 15959 17063 - '@swc/core' 15960 17064 - esbuild ··· 15987 17091 which-boxed-primitive@1.1.1: 15988 17092 dependencies: 15989 17093 is-bigint: 1.1.0 15990 - is-boolean-object: 1.2.1 17094 + is-boolean-object: 1.2.2 15991 17095 is-number-object: 1.1.1 15992 17096 is-string: 1.1.1 15993 17097 is-symbol: 1.1.1 15994 17098 15995 17099 which-builtin-type@1.2.1: 15996 17100 dependencies: 15997 - call-bound: 1.0.3 17101 + call-bound: 1.0.4 15998 17102 function.prototype.name: 1.1.8 15999 17103 has-tostringtag: 1.0.2 16000 - is-async-function: 2.0.0 17104 + is-async-function: 2.1.1 16001 17105 is-date-object: 1.1.0 16002 17106 is-finalizationregistry: 1.1.1 16003 - is-generator-function: 1.0.10 17107 + is-generator-function: 1.1.2 16004 17108 is-regex: 1.2.1 16005 - is-weakref: 1.1.0 17109 + is-weakref: 1.1.1 16006 17110 isarray: 2.0.5 16007 17111 which-boxed-primitive: 1.1.1 16008 17112 which-collection: 1.0.2 16009 - which-typed-array: 1.1.18 17113 + which-typed-array: 1.1.19 16010 17114 16011 17115 which-collection@1.0.2: 16012 17116 dependencies: ··· 16024 17128 gopd: 1.2.0 16025 17129 has-tostringtag: 1.0.2 16026 17130 17131 + which-typed-array@1.1.19: 17132 + dependencies: 17133 + available-typed-arrays: 1.0.7 17134 + call-bind: 1.0.8 17135 + call-bound: 1.0.4 17136 + for-each: 0.3.5 17137 + get-proto: 1.0.1 17138 + gopd: 1.2.0 17139 + has-tostringtag: 1.0.2 17140 + 16027 17141 which@2.0.2: 16028 17142 dependencies: 16029 17143 isexe: 2.0.0 ··· 16040 17154 16041 17155 wrap-ansi@8.1.0: 16042 17156 dependencies: 16043 - ansi-styles: 6.2.1 17157 + ansi-styles: 6.2.3 16044 17158 string-width: 5.1.2 16045 - strip-ansi: 7.1.0 17159 + strip-ansi: 7.1.2 16046 17160 16047 17161 wrappy@1.0.2: {} 16048 17162 ··· 16064 17178 16065 17179 ws@8.18.0: {} 16066 17180 17181 + ws@8.18.3: {} 17182 + 16067 17183 xcode@3.0.1: 16068 17184 dependencies: 16069 17185 simple-plist: 1.3.1 ··· 16088 17204 16089 17205 yallist@5.0.0: {} 16090 17206 16091 - yaml@2.6.1: {} 16092 - 16093 17207 yargs-parser@21.1.1: {} 16094 17208 16095 17209 yargs@17.7.2: ··· 16110 17224 16111 17225 yoctocolors@2.1.1: {} 16112 17226 16113 - zod-validation-error@3.4.0(zod@3.23.8): 17227 + zod-to-json-schema@3.24.6(zod@3.25.76): 16114 17228 dependencies: 16115 - zod: 3.23.8 17229 + zod: 3.25.76 17230 + 17231 + zod-validation-error@3.4.0(zod@3.25.76): 17232 + dependencies: 17233 + zod: 3.25.76 16116 17234 16117 17235 zod@3.23.8: {} 16118 17236 16119 - zustand@5.0.5(@types/react@19.0.14)(react@19.0.0)(use-sync-external-store@1.5.0(react@19.0.0)): 17237 + zod@3.25.76: {} 17238 + 17239 + zustand@5.0.8(@types/react@19.1.17)(react@19.1.0)(use-sync-external-store@1.6.0(react@19.1.0)): 16120 17240 optionalDependencies: 16121 - '@types/react': 19.0.14 16122 - react: 19.0.0 16123 - use-sync-external-store: 1.5.0(react@19.0.0) 17241 + '@types/react': 19.1.17 17242 + react: 19.1.0 17243 + use-sync-external-store: 1.6.0(react@19.1.0)
+1 -1
turbo.json
··· 10 10 }, 11 11 "build:rust": { 12 12 "dependsOn": ["^build"], 13 - "outputs": ["../target/**", "./target/**"] 13 + "outputs": ["../../target/**"] 14 14 }, 15 15 "check-types": { 16 16 "dependsOn": ["^check-types"]