diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml
index 33e6b4cb839..6220d2e0fbe 100644
--- a/android/app/src/main/AndroidManifest.xml
+++ b/android/app/src/main/AndroidManifest.xml
@@ -36,7 +36,8 @@
android:roundIcon="@mipmap/ic_launcher_round"
android:allowBackup="false"
android:usesCleartextTraffic="true"
- android:theme="@style/AppTheme">
+ android:theme="@style/AppTheme"
+ android:supportsRtl="true">
diff --git a/android/app/src/main/java/co/edgesecure/app/MainActivity.kt b/android/app/src/main/java/co/edgesecure/app/MainActivity.kt
index 178abd63ef8..670332cad3f 100644
--- a/android/app/src/main/java/co/edgesecure/app/MainActivity.kt
+++ b/android/app/src/main/java/co/edgesecure/app/MainActivity.kt
@@ -8,6 +8,7 @@ import com.facebook.react.ReactActivityDelegate
import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint.fabricEnabled
import com.facebook.react.defaults.DefaultReactActivityDelegate
import com.zoontek.rnbootsplash.RNBootSplash
+import expo.modules.ReactActivityDelegateWrapper
class MainActivity : ReactActivity() {
/**
@@ -21,7 +22,11 @@ class MainActivity : ReactActivity() {
* which allows you to enable New Architecture with a single boolean flags [fabricEnabled]
*/
override fun createReactActivityDelegate(): ReactActivityDelegate =
- DefaultReactActivityDelegate(this, mainComponentName, fabricEnabled)
+ ReactActivityDelegateWrapper(
+ this,
+ BuildConfig.IS_NEW_ARCHITECTURE_ENABLED,
+ DefaultReactActivityDelegate(this, mainComponentName, fabricEnabled),
+ )
// Edge addition
override fun onCreate(savedInstanceState: Bundle?) {
diff --git a/android/app/src/main/java/co/edgesecure/app/MainApplication.kt b/android/app/src/main/java/co/edgesecure/app/MainApplication.kt
index a8b84011564..aab821e31ca 100644
--- a/android/app/src/main/java/co/edgesecure/app/MainApplication.kt
+++ b/android/app/src/main/java/co/edgesecure/app/MainApplication.kt
@@ -5,17 +5,10 @@ import android.content.res.Configuration
import com.facebook.react.PackageList
import com.facebook.react.ReactApplication
import com.facebook.react.ReactHost
-import com.facebook.react.ReactNativeHost
-import com.facebook.react.ReactPackage
-import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint.load
-import com.facebook.react.defaults.DefaultReactHost.getDefaultReactHost
-import com.facebook.react.defaults.DefaultReactNativeHost
+import com.facebook.react.ReactNativeApplicationEntryPoint.loadReactNative
import com.facebook.react.modules.i18nmanager.I18nUtil
-import com.facebook.react.soloader.OpenSourceMergedSoMapping
-import com.facebook.soloader.SoLoader
-import expo.modules.ApplicationLifecycleDispatcher.onApplicationCreate
-import expo.modules.ApplicationLifecycleDispatcher.onConfigurationChanged
-import expo.modules.ReactNativeHostWrapper
+import expo.modules.ApplicationLifecycleDispatcher
+import expo.modules.ExpoReactHostFactory
import io.sentry.Hint
import io.sentry.SentryEvent
import io.sentry.SentryLevel
@@ -26,28 +19,16 @@ import io.sentry.android.core.SentryAndroid
class MainApplication :
Application(),
ReactApplication {
- override val reactNativeHost: ReactNativeHost =
- ReactNativeHostWrapper(
- this,
- object : DefaultReactNativeHost(this) {
- override fun getPackages(): List {
- // Packages that cannot be autolinked yet can be added manually here, for
- // example:
- // packages.add(new MyReactNativePackage());
- return PackageList(this).packages
- }
-
- override fun getJSMainModuleName(): String = "index"
-
- override fun getUseDeveloperSupport(): Boolean = BuildConfig.DEBUG
-
- override val isNewArchEnabled: Boolean = BuildConfig.IS_NEW_ARCHITECTURE_ENABLED
- override val isHermesEnabled: Boolean = BuildConfig.IS_HERMES_ENABLED
- },
+ override val reactHost: ReactHost by lazy {
+ ExpoReactHostFactory.getDefaultReactHost(
+ context = applicationContext,
+ packageList =
+ PackageList(this).packages.apply {
+ // Packages that cannot be autolinked yet can be added manually here, for example:
+ // add(MyReactNativePackage())
+ },
)
-
- override val reactHost: ReactHost
- get() = getDefaultReactHost(applicationContext, reactNativeHost)
+ }
override fun onCreate() {
super.onCreate()
@@ -102,17 +83,18 @@ class MainApplication :
// Background task:
MessagesWorker.ensureScheduled(context)
// MessagesWorker.testRun(context);
- SoLoader.init(this, OpenSourceMergedSoMapping)
- if (BuildConfig.IS_NEW_ARCHITECTURE_ENABLED) {
- // If you opted-in for the New Architecture, we load the native entry point for this
- // app.
- load()
- }
- onApplicationCreate(this)
+
+ // React Native template code:
+ loadReactNative(this)
+
+ // Expo integration:
+ ApplicationLifecycleDispatcher.onApplicationCreate(this)
}
override fun onConfigurationChanged(newConfig: Configuration) {
super.onConfigurationChanged(newConfig)
- onConfigurationChanged(this, newConfig)
+
+ // Expo integration:
+ ApplicationLifecycleDispatcher.onConfigurationChanged(this, newConfig)
}
}
diff --git a/android/build.gradle b/android/build.gradle
index a3d1ea735f4..c5ab730e046 100644
--- a/android/build.gradle
+++ b/android/build.gradle
@@ -2,10 +2,10 @@ buildscript {
ext {
buildToolsVersion = "35.0.0"
minSdkVersion = 28 // Edge modified from 21
- compileSdkVersion = 35
- targetSdkVersion = 35
+ compileSdkVersion = 36
+ targetSdkVersion = 36
ndkVersion = "27.1.12297006"
- kotlinVersion = "2.0.21"
+ kotlinVersion = "2.1.20"
}
repositories {
google()
@@ -29,3 +29,4 @@ buildscript {
}
apply plugin: "com.facebook.react.rootproject"
+apply plugin: "expo-root-project"
diff --git a/android/gradle.properties b/android/gradle.properties
index a19aa0f12e6..f772316a0c4 100644
--- a/android/gradle.properties
+++ b/android/gradle.properties
@@ -24,9 +24,6 @@ android.useAndroidX=true
# Automatically convert third-party libraries to use AndroidX
android.enableJetifier=true
-# Version of flipper SDK to use with React Native
-FLIPPER_VERSION=0.125.0
-
# Use this property to specify which architecture you want to build.
# You can also override it from the CLI using
# ./gradlew -PreactNativeArchitectures=x86_64
@@ -37,10 +34,15 @@ reactNativeArchitectures=armeabi-v7a,arm64-v8a
# your application. You should enable this flag either if you want
# to write custom TurboModules/Fabric components OR use libraries that
# are providing them.
-newArchEnabled=false
+newArchEnabled=true
# Use this property to enable or disable the Hermes JS engine.
# If set to false, you will be using JSC instead.
hermesEnabled=true
+# Use this property to enable edge-to-edge display support.
+# This allows your app to draw behind system bars for an immersive UI.
+# Note: Only works with ReactActivity and should not be used with custom Activity.
+edgeToEdgeEnabled=false
+
VisionCamera_enableCodeScanner=true
diff --git a/android/gradle/wrapper/gradle-wrapper.jar b/android/gradle/wrapper/gradle-wrapper.jar
index 9bbc975c742..1b33c55baab 100644
Binary files a/android/gradle/wrapper/gradle-wrapper.jar and b/android/gradle/wrapper/gradle-wrapper.jar differ
diff --git a/android/gradle/wrapper/gradle-wrapper.properties b/android/gradle/wrapper/gradle-wrapper.properties
index 37f853b1c84..2a84e188b85 100644
--- a/android/gradle/wrapper/gradle-wrapper.properties
+++ b/android/gradle/wrapper/gradle-wrapper.properties
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
-distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
+distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
diff --git a/android/gradlew b/android/gradlew
index faf93008b77..23d15a93670 100755
--- a/android/gradlew
+++ b/android/gradlew
@@ -114,7 +114,7 @@ case "$( uname )" in #(
NONSTOP* ) nonstop=true ;;
esac
-CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
+CLASSPATH="\\\"\\\""
# Determine the Java command to use to start the JVM.
@@ -213,7 +213,7 @@ DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
set -- \
"-Dorg.gradle.appname=$APP_BASE_NAME" \
-classpath "$CLASSPATH" \
- org.gradle.wrapper.GradleWrapperMain \
+ -jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \
"$@"
# Stop when "xargs" is not available.
diff --git a/android/gradlew.bat b/android/gradlew.bat
index 9d21a21834d..dd2b8eedbd5 100644
--- a/android/gradlew.bat
+++ b/android/gradlew.bat
@@ -1,3 +1,8 @@
+@REM Copyright (c) Meta Platforms, Inc. and affiliates.
+@REM
+@REM This source code is licensed under the MIT license found in the
+@REM LICENSE file in the root directory of this source tree.
+
@rem
@rem Copyright 2015 the original author or authors.
@rem
@@ -70,11 +75,11 @@ goto fail
:execute
@rem Setup the command line
-set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
+set CLASSPATH=
@rem Execute Gradle
-"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
+"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %*
:end
@rem End local scope for the variables with windows NT shell
diff --git a/android/settings.gradle b/android/settings.gradle
index f297a99f521..938f17ef24f 100644
--- a/android/settings.gradle
+++ b/android/settings.gradle
@@ -1,9 +1,22 @@
-pluginManagement { includeBuild("../node_modules/@react-native/gradle-plugin") }
-plugins { id("com.facebook.react.settings") }
-extensions.configure(com.facebook.react.ReactSettingsExtension){ ex -> ex.autolinkLibrariesFromCommand() }
+// Expo integration:
+pluginManagement {
+ includeBuild("../node_modules/@react-native/gradle-plugin")
+ includeBuild("../node_modules/expo-modules-autolinking/android/expo-gradle-plugin")
+}
+plugins {
+ id("com.facebook.react.settings")
+ id("expo-autolinking-settings")
+}
+extensions.configure(com.facebook.react.ReactSettingsExtension) {
+ ex -> ex.autolinkLibrariesFromCommand(expoAutolinking.rnConfigCommand)
+}
+
+// React template code:
rootProject.name = 'co.edgesecure.app'
include ':app'
includeBuild('../node_modules/@react-native/gradle-plugin')
-apply from: new File(["node", "--print", "require.resolve('expo/package.json')"].execute(null, rootDir).text.trim(), "../scripts/autolinking.gradle")
-useExpoModules()
+// Expo integration:
+expoAutolinking.useExpoModules()
+expoAutolinking.useExpoVersionCatalog()
+includeBuild(expoAutolinking.reactNativeGradlePlugin)
diff --git a/babel.config.js b/babel.config.js
index 9adf2e4f163..139eeb750c1 100644
--- a/babel.config.js
+++ b/babel.config.js
@@ -1,12 +1,4 @@
-module.exports = function (api) {
- const isAndroid = api.caller(c => c.platform === 'android')
-
- return {
- presets: ['module:@react-native/babel-preset'],
- plugins: [
- isAndroid
- ? './node_modules/r3-hack/node_modules/react-native-reanimated/plugin'
- : 'react-native-worklets/plugin'
- ]
- }
+module.exports = {
+ presets: ['babel-preset-expo'],
+ plugins: ['react-native-worklets/plugin']
}
diff --git a/ios/Podfile.lock b/ios/Podfile.lock
index ba2848fd471..bf0ae73181c 100644
--- a/ios/Podfile.lock
+++ b/ios/Podfile.lock
@@ -25,14 +25,18 @@ PODS:
- React-Core
- edge-login-ui-rn (3.35.0):
- React-Core
- - EXConstants (17.1.7):
+ - EXConstants (55.0.3):
- ExpoModulesCore
- - Expo (53.0.20):
+ - Expo (55.0.0-preview.9):
+ - boost
- DoubleConversion
- ExpoModulesCore
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -40,7 +44,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -53,20 +56,30 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - ExpoAsset (11.1.7):
+ - ExpoAsset (55.0.3):
+ - ExpoModulesCore
+ - ExpoDomWebView (55.0.2):
- ExpoModulesCore
- - ExpoFileSystem (18.1.11):
+ - ExpoFileSystem (55.0.4):
- ExpoModulesCore
- - ExpoFont (13.3.2):
+ - ExpoFont (55.0.3):
- ExpoModulesCore
- - ExpoKeepAwake (14.1.4):
+ - ExpoKeepAwake (55.0.2):
- ExpoModulesCore
- - ExpoModulesCore (2.5.0):
+ - ExpoLogBox (55.0.5):
+ - React-Core
+ - ExpoModulesCore (55.0.7):
+ - boost
- DoubleConversion
+ - ExpoModulesJSI
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -74,7 +87,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-jsinspector
@@ -86,9 +98,15 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - RNWorklets
+ - SocketRocket
- Yoga
- - fast_float (6.1.4)
- - FBLazyVector (0.79.2)
+ - ExpoModulesJSI (55.0.7):
+ - hermes-engine
+ - React-Core
+ - ReactCommon
+ - fast_float (8.0.0)
+ - FBLazyVector (0.83.2)
- Firebase/CoreOnly (10.29.0):
- FirebaseCore (= 10.29.0)
- Firebase/Messaging (10.29.0):
@@ -156,9 +174,9 @@ PODS:
- SwiftNIOSSL (< 3.0.0, >= 2.14.0)
- SwiftNIOTransportServices (< 2.0.0, >= 1.11.1)
- SwiftProtobuf (< 2.0.0, >= 1.19.0)
- - hermes-engine (0.79.2):
- - hermes-engine/Pre-built (= 0.79.2)
- - hermes-engine/Pre-built (0.79.2)
+ - hermes-engine (0.14.1):
+ - hermes-engine/Pre-built (= 0.14.1)
+ - hermes-engine/Pre-built (0.14.1)
- ImageColors (2.4.0):
- ExpoModulesCore
- libwebp (1.5.0):
@@ -185,64 +203,79 @@ PODS:
- RCT-Folly (2024.11.18.00):
- boost
- DoubleConversion
- - fast_float (= 6.1.4)
+ - fast_float (= 8.0.0)
- fmt (= 11.0.2)
- glog
- RCT-Folly/Default (= 2024.11.18.00)
- RCT-Folly/Default (2024.11.18.00):
- boost
- DoubleConversion
- - fast_float (= 6.1.4)
+ - fast_float (= 8.0.0)
- fmt (= 11.0.2)
- glog
- RCT-Folly/Fabric (2024.11.18.00):
- boost
- DoubleConversion
- - fast_float (= 6.1.4)
+ - fast_float (= 8.0.0)
- fmt (= 11.0.2)
- glog
- - RCTDeprecation (0.79.2)
- - RCTRequired (0.79.2)
- - RCTTypeSafety (0.79.2):
- - FBLazyVector (= 0.79.2)
- - RCTRequired (= 0.79.2)
- - React-Core (= 0.79.2)
- - React (0.79.2):
- - React-Core (= 0.79.2)
- - React-Core/DevSupport (= 0.79.2)
- - React-Core/RCTWebSocket (= 0.79.2)
- - React-RCTActionSheet (= 0.79.2)
- - React-RCTAnimation (= 0.79.2)
- - React-RCTBlob (= 0.79.2)
- - React-RCTImage (= 0.79.2)
- - React-RCTLinking (= 0.79.2)
- - React-RCTNetwork (= 0.79.2)
- - React-RCTSettings (= 0.79.2)
- - React-RCTText (= 0.79.2)
- - React-RCTVibration (= 0.79.2)
- - React-callinvoker (0.79.2)
- - React-Core (0.79.2):
- - glog
- - hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCTDeprecation (0.83.2)
+ - RCTRequired (0.83.2)
+ - RCTSwiftUI (0.83.2)
+ - RCTSwiftUIWrapper (0.83.2):
+ - RCTSwiftUI
+ - RCTTypeSafety (0.83.2):
+ - FBLazyVector (= 0.83.2)
+ - RCTRequired (= 0.83.2)
+ - React-Core (= 0.83.2)
+ - React (0.83.2):
+ - React-Core (= 0.83.2)
+ - React-Core/DevSupport (= 0.83.2)
+ - React-Core/RCTWebSocket (= 0.83.2)
+ - React-RCTActionSheet (= 0.83.2)
+ - React-RCTAnimation (= 0.83.2)
+ - React-RCTBlob (= 0.83.2)
+ - React-RCTImage (= 0.83.2)
+ - React-RCTLinking (= 0.83.2)
+ - React-RCTNetwork (= 0.83.2)
+ - React-RCTSettings (= 0.83.2)
+ - React-RCTText (= 0.83.2)
+ - React-RCTVibration (= 0.83.2)
+ - React-callinvoker (0.83.2)
+ - React-Core (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTDeprecation
- - React-Core/Default (= 0.79.2)
+ - React-Core/Default (= 0.83.2)
- React-cxxreact
- React-featureflags
- React-hermes
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsitooling
- React-perflogger
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-Core/CoreModulesHeaders (0.79.2):
+ - React-Core/CoreModulesHeaders (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTDeprecation
- React-Core/Default
- React-cxxreact
@@ -251,16 +284,23 @@ PODS:
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsitooling
- React-perflogger
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-Core/Default (0.79.2):
+ - React-Core/Default (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTDeprecation
- React-cxxreact
- React-featureflags
@@ -268,35 +308,49 @@ PODS:
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsitooling
- React-perflogger
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-Core/DevSupport (0.79.2):
+ - React-Core/DevSupport (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTDeprecation
- - React-Core/Default (= 0.79.2)
- - React-Core/RCTWebSocket (= 0.79.2)
+ - React-Core/Default (= 0.83.2)
+ - React-Core/RCTWebSocket (= 0.83.2)
- React-cxxreact
- React-featureflags
- React-hermes
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsitooling
- React-perflogger
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-Core/RCTActionSheetHeaders (0.79.2):
+ - React-Core/RCTActionSheetHeaders (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTDeprecation
- React-Core/Default
- React-cxxreact
@@ -305,16 +359,23 @@ PODS:
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsitooling
- React-perflogger
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-Core/RCTAnimationHeaders (0.79.2):
+ - React-Core/RCTAnimationHeaders (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTDeprecation
- React-Core/Default
- React-cxxreact
@@ -323,16 +384,23 @@ PODS:
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsitooling
- React-perflogger
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-Core/RCTBlobHeaders (0.79.2):
+ - React-Core/RCTBlobHeaders (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTDeprecation
- React-Core/Default
- React-cxxreact
@@ -341,16 +409,23 @@ PODS:
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsitooling
- React-perflogger
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-Core/RCTImageHeaders (0.79.2):
+ - React-Core/RCTImageHeaders (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTDeprecation
- React-Core/Default
- React-cxxreact
@@ -359,16 +434,23 @@ PODS:
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsitooling
- React-perflogger
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-Core/RCTLinkingHeaders (0.79.2):
+ - React-Core/RCTLinkingHeaders (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTDeprecation
- React-Core/Default
- React-cxxreact
@@ -377,16 +459,23 @@ PODS:
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsitooling
- React-perflogger
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-Core/RCTNetworkHeaders (0.79.2):
+ - React-Core/RCTNetworkHeaders (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTDeprecation
- React-Core/Default
- React-cxxreact
@@ -395,16 +484,23 @@ PODS:
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsitooling
- React-perflogger
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-Core/RCTSettingsHeaders (0.79.2):
+ - React-Core/RCTSettingsHeaders (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTDeprecation
- React-Core/Default
- React-cxxreact
@@ -413,16 +509,23 @@ PODS:
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsitooling
- React-perflogger
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-Core/RCTTextHeaders (0.79.2):
+ - React-Core/RCTTextHeaders (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTDeprecation
- React-Core/Default
- React-cxxreact
@@ -431,16 +534,23 @@ PODS:
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsitooling
- React-perflogger
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-Core/RCTVibrationHeaders (0.79.2):
+ - React-Core/RCTVibrationHeaders (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTDeprecation
- React-Core/Default
- React-cxxreact
@@ -449,132 +559,178 @@ PODS:
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsitooling
- React-perflogger
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-Core/RCTWebSocket (0.79.2):
+ - React-Core/RCTWebSocket (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTDeprecation
- - React-Core/Default (= 0.79.2)
+ - React-Core/Default (= 0.83.2)
- React-cxxreact
- React-featureflags
- React-hermes
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsitooling
- React-perflogger
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-CoreModules (0.79.2):
+ - React-CoreModules (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
- - RCT-Folly (= 2024.11.18.00)
- - RCTTypeSafety (= 0.79.2)
- - React-Core/CoreModulesHeaders (= 0.79.2)
- - React-jsi (= 0.79.2)
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTTypeSafety (= 0.83.2)
+ - React-Core/CoreModulesHeaders (= 0.83.2)
+ - React-debug
+ - React-jsi (= 0.83.2)
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsinspectortracing
- React-NativeModulesApple
- React-RCTBlob
- React-RCTFBReactNativeSpec
- - React-RCTImage (= 0.79.2)
+ - React-RCTImage (= 0.83.2)
+ - React-runtimeexecutor
+ - React-utils
- ReactCommon
- - SocketRocket (= 0.7.1)
- - React-cxxreact (0.79.2):
+ - SocketRocket
+ - React-cxxreact (0.83.2):
- boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
- - React-callinvoker (= 0.79.2)
- - React-debug (= 0.79.2)
- - React-jsi (= 0.79.2)
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-callinvoker (= 0.83.2)
+ - React-debug (= 0.83.2)
+ - React-jsi (= 0.83.2)
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsinspectortracing
- - React-logger (= 0.79.2)
- - React-perflogger (= 0.79.2)
- - React-runtimeexecutor (= 0.79.2)
- - React-timing (= 0.79.2)
- - React-debug (0.79.2)
- - React-defaultsnativemodule (0.79.2):
+ - React-logger (= 0.83.2)
+ - React-perflogger (= 0.83.2)
+ - React-runtimeexecutor
+ - React-timing (= 0.83.2)
+ - React-utils
+ - SocketRocket
+ - React-debug (0.83.2)
+ - React-defaultsnativemodule (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
- hermes-engine
- RCT-Folly
+ - RCT-Folly/Fabric
- React-domnativemodule
+ - React-featureflags
- React-featureflagsnativemodule
- - React-hermes
- React-idlecallbacksnativemodule
+ - React-intersectionobservernativemodule
- React-jsi
- React-jsiexecutor
- React-microtasksnativemodule
- React-RCTFBReactNativeSpec
- - React-domnativemodule (0.79.2):
+ - React-webperformancenativemodule
+ - SocketRocket
+ - Yoga
+ - React-domnativemodule (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
- hermes-engine
- RCT-Folly
+ - RCT-Folly/Fabric
- React-Fabric
+ - React-Fabric/bridging
- React-FabricComponents
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-RCTFBReactNativeSpec
+ - React-runtimeexecutor
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - React-Fabric (0.79.2):
+ - React-Fabric (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
- React-cxxreact
- React-debug
- - React-Fabric/animations (= 0.79.2)
- - React-Fabric/attributedstring (= 0.79.2)
- - React-Fabric/componentregistry (= 0.79.2)
- - React-Fabric/componentregistrynative (= 0.79.2)
- - React-Fabric/components (= 0.79.2)
- - React-Fabric/consistency (= 0.79.2)
- - React-Fabric/core (= 0.79.2)
- - React-Fabric/dom (= 0.79.2)
- - React-Fabric/imagemanager (= 0.79.2)
- - React-Fabric/leakchecker (= 0.79.2)
- - React-Fabric/mounting (= 0.79.2)
- - React-Fabric/observers (= 0.79.2)
- - React-Fabric/scheduler (= 0.79.2)
- - React-Fabric/telemetry (= 0.79.2)
- - React-Fabric/templateprocessor (= 0.79.2)
- - React-Fabric/uimanager (= 0.79.2)
+ - React-Fabric/animated (= 0.83.2)
+ - React-Fabric/animationbackend (= 0.83.2)
+ - React-Fabric/animations (= 0.83.2)
+ - React-Fabric/attributedstring (= 0.83.2)
+ - React-Fabric/bridging (= 0.83.2)
+ - React-Fabric/componentregistry (= 0.83.2)
+ - React-Fabric/componentregistrynative (= 0.83.2)
+ - React-Fabric/components (= 0.83.2)
+ - React-Fabric/consistency (= 0.83.2)
+ - React-Fabric/core (= 0.83.2)
+ - React-Fabric/dom (= 0.83.2)
+ - React-Fabric/imagemanager (= 0.83.2)
+ - React-Fabric/leakchecker (= 0.83.2)
+ - React-Fabric/mounting (= 0.83.2)
+ - React-Fabric/observers (= 0.83.2)
+ - React-Fabric/scheduler (= 0.83.2)
+ - React-Fabric/telemetry (= 0.83.2)
+ - React-Fabric/templateprocessor (= 0.83.2)
+ - React-Fabric/uimanager (= 0.83.2)
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/animations (0.79.2):
+ - SocketRocket
+ - React-Fabric/animated (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -582,21 +738,24 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/attributedstring (0.79.2):
+ - SocketRocket
+ - React-Fabric/animationbackend (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -604,21 +763,24 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/componentregistry (0.79.2):
+ - SocketRocket
+ - React-Fabric/animations (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -626,21 +788,24 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/componentregistrynative (0.79.2):
+ - SocketRocket
+ - React-Fabric/attributedstring (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -648,47 +813,49 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/components (0.79.2):
+ - SocketRocket
+ - React-Fabric/bridging (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
- React-cxxreact
- React-debug
- - React-Fabric/components/legacyviewmanagerinterop (= 0.79.2)
- - React-Fabric/components/root (= 0.79.2)
- - React-Fabric/components/scrollview (= 0.79.2)
- - React-Fabric/components/view (= 0.79.2)
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/components/legacyviewmanagerinterop (0.79.2):
+ - SocketRocket
+ - React-Fabric/componentregistry (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -696,21 +863,24 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/components/root (0.79.2):
+ - SocketRocket
+ - React-Fabric/componentregistrynative (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -718,43 +888,53 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/components/scrollview (0.79.2):
+ - SocketRocket
+ - React-Fabric/components (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
- React-cxxreact
- React-debug
+ - React-Fabric/components/legacyviewmanagerinterop (= 0.83.2)
+ - React-Fabric/components/root (= 0.83.2)
+ - React-Fabric/components/scrollview (= 0.83.2)
+ - React-Fabric/components/view (= 0.83.2)
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/components/view (0.79.2):
+ - SocketRocket
+ - React-Fabric/components/legacyviewmanagerinterop (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -762,23 +942,24 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- - React-renderercss
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - Yoga
- - React-Fabric/consistency (0.79.2):
+ - SocketRocket
+ - React-Fabric/components/root (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -786,21 +967,24 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/core (0.79.2):
+ - SocketRocket
+ - React-Fabric/components/scrollview (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -808,21 +992,24 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/dom (0.79.2):
+ - SocketRocket
+ - React-Fabric/components/view (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -830,21 +1017,26 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
+ - React-renderercss
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/imagemanager (0.79.2):
+ - SocketRocket
+ - Yoga
+ - React-Fabric/consistency (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -852,21 +1044,24 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/leakchecker (0.79.2):
+ - SocketRocket
+ - React-Fabric/core (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -874,21 +1069,24 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/mounting (0.79.2):
+ - SocketRocket
+ - React-Fabric/dom (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -896,44 +1094,49 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/observers (0.79.2):
+ - SocketRocket
+ - React-Fabric/imagemanager (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
- React-cxxreact
- React-debug
- - React-Fabric/observers/events (= 0.79.2)
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/observers/events (0.79.2):
+ - SocketRocket
+ - React-Fabric/leakchecker (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -941,21 +1144,126 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/scheduler (0.79.2):
+ - SocketRocket
+ - React-Fabric/mounting (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - React-Fabric/observers (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric/observers/events (= 0.83.2)
+ - React-Fabric/observers/intersection (= 0.83.2)
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - React-Fabric/observers/events (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - React-Fabric/observers/intersection (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - React-Fabric/scheduler (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -964,22 +1272,26 @@ PODS:
- React-Fabric/observers/events
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
+ - React-performancecdpmetrics
- React-performancetimeline
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/telemetry (0.79.2):
+ - SocketRocket
+ - React-Fabric/telemetry (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -987,21 +1299,24 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/templateprocessor (0.79.2):
+ - SocketRocket
+ - React-Fabric/templateprocessor (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1009,45 +1324,51 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/uimanager (0.79.2):
+ - SocketRocket
+ - React-Fabric/uimanager (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
- React-cxxreact
- React-debug
- - React-Fabric/uimanager/consistency (= 0.79.2)
+ - React-Fabric/uimanager/consistency (= 0.83.2)
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- React-rendererconsistency
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/uimanager/consistency (0.79.2):
+ - SocketRocket
+ - React-Fabric/uimanager/consistency (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1055,81 +1376,93 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- React-rendererconsistency
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-FabricComponents (0.79.2):
+ - SocketRocket
+ - React-FabricComponents (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
- React-cxxreact
- React-debug
- React-Fabric
- - React-FabricComponents/components (= 0.79.2)
- - React-FabricComponents/textlayoutmanager (= 0.79.2)
+ - React-FabricComponents/components (= 0.83.2)
+ - React-FabricComponents/textlayoutmanager (= 0.83.2)
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
+ - React-RCTFBReactNativeSpec
- React-rendererdebug
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - React-FabricComponents/components (0.79.2):
+ - React-FabricComponents/components (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
- React-cxxreact
- React-debug
- React-Fabric
- - React-FabricComponents/components/inputaccessory (= 0.79.2)
- - React-FabricComponents/components/iostextinput (= 0.79.2)
- - React-FabricComponents/components/modal (= 0.79.2)
- - React-FabricComponents/components/rncore (= 0.79.2)
- - React-FabricComponents/components/safeareaview (= 0.79.2)
- - React-FabricComponents/components/scrollview (= 0.79.2)
- - React-FabricComponents/components/text (= 0.79.2)
- - React-FabricComponents/components/textinput (= 0.79.2)
- - React-FabricComponents/components/unimplementedview (= 0.79.2)
+ - React-FabricComponents/components/inputaccessory (= 0.83.2)
+ - React-FabricComponents/components/iostextinput (= 0.83.2)
+ - React-FabricComponents/components/modal (= 0.83.2)
+ - React-FabricComponents/components/rncore (= 0.83.2)
+ - React-FabricComponents/components/safeareaview (= 0.83.2)
+ - React-FabricComponents/components/scrollview (= 0.83.2)
+ - React-FabricComponents/components/switch (= 0.83.2)
+ - React-FabricComponents/components/text (= 0.83.2)
+ - React-FabricComponents/components/textinput (= 0.83.2)
+ - React-FabricComponents/components/unimplementedview (= 0.83.2)
+ - React-FabricComponents/components/virtualview (= 0.83.2)
+ - React-FabricComponents/components/virtualviewexperimental (= 0.83.2)
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
+ - React-RCTFBReactNativeSpec
- React-rendererdebug
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - React-FabricComponents/components/inputaccessory (0.79.2):
+ - React-FabricComponents/components/inputaccessory (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1138,22 +1471,25 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
+ - React-RCTFBReactNativeSpec
- React-rendererdebug
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - React-FabricComponents/components/iostextinput (0.79.2):
+ - React-FabricComponents/components/iostextinput (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1162,22 +1498,25 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
+ - React-RCTFBReactNativeSpec
- React-rendererdebug
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - React-FabricComponents/components/modal (0.79.2):
+ - React-FabricComponents/components/modal (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1186,22 +1525,25 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
+ - React-RCTFBReactNativeSpec
- React-rendererdebug
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - React-FabricComponents/components/rncore (0.79.2):
+ - React-FabricComponents/components/rncore (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1210,22 +1552,25 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
+ - React-RCTFBReactNativeSpec
- React-rendererdebug
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - React-FabricComponents/components/safeareaview (0.79.2):
+ - React-FabricComponents/components/safeareaview (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1234,22 +1579,25 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
+ - React-RCTFBReactNativeSpec
- React-rendererdebug
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - React-FabricComponents/components/scrollview (0.79.2):
+ - React-FabricComponents/components/scrollview (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1258,22 +1606,25 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
+ - React-RCTFBReactNativeSpec
- React-rendererdebug
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - React-FabricComponents/components/text (0.79.2):
+ - React-FabricComponents/components/switch (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1282,22 +1633,25 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
+ - React-RCTFBReactNativeSpec
- React-rendererdebug
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - React-FabricComponents/components/textinput (0.79.2):
+ - React-FabricComponents/components/text (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1306,22 +1660,25 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
+ - React-RCTFBReactNativeSpec
- React-rendererdebug
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - React-FabricComponents/components/unimplementedview (0.79.2):
+ - React-FabricComponents/components/textinput (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1330,22 +1687,106 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
+ - React-RCTFBReactNativeSpec
- React-rendererdebug
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - React-FabricComponents/textlayoutmanager (0.79.2):
+ - React-FabricComponents/components/unimplementedview (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-RCTFBReactNativeSpec
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - Yoga
+ - React-FabricComponents/components/virtualview (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-RCTFBReactNativeSpec
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - Yoga
+ - React-FabricComponents/components/virtualviewexperimental (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-RCTFBReactNativeSpec
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - Yoga
+ - React-FabricComponents/textlayoutmanager (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1354,84 +1795,118 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
+ - React-RCTFBReactNativeSpec
- React-rendererdebug
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - React-FabricImage (0.79.2):
+ - React-FabricImage (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
- - RCTRequired (= 0.79.2)
- - RCTTypeSafety (= 0.79.2)
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired (= 0.83.2)
+ - RCTTypeSafety (= 0.83.2)
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- - React-jsiexecutor (= 0.79.2)
+ - React-jsiexecutor (= 0.83.2)
- React-logger
- React-rendererdebug
- React-utils
- ReactCommon
+ - SocketRocket
- Yoga
- - React-featureflags (0.79.2):
- - RCT-Folly (= 2024.11.18.00)
- - React-featureflagsnativemodule (0.79.2):
+ - React-featureflags (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - SocketRocket
+ - React-featureflagsnativemodule (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
- hermes-engine
- RCT-Folly
+ - RCT-Folly/Fabric
- React-featureflags
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-RCTFBReactNativeSpec
- ReactCommon/turbomodule/core
- - React-graphics (0.79.2):
+ - SocketRocket
+ - React-graphics (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
- - React-hermes
+ - RCT-Folly
+ - RCT-Folly/Fabric
- React-jsi
- React-jsiexecutor
- React-utils
- - React-hermes (0.79.2):
+ - SocketRocket
+ - React-hermes (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
- - React-cxxreact (= 0.79.2)
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-cxxreact (= 0.83.2)
- React-jsi
- - React-jsiexecutor (= 0.79.2)
+ - React-jsiexecutor (= 0.83.2)
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsinspectortracing
- - React-perflogger (= 0.79.2)
+ - React-oscompat
+ - React-perflogger (= 0.83.2)
- React-runtimeexecutor
- - React-idlecallbacksnativemodule (0.79.2):
+ - SocketRocket
+ - React-idlecallbacksnativemodule (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- RCT-Folly
- - React-hermes
+ - RCT-Folly/Fabric
- React-jsi
- React-jsiexecutor
- React-RCTFBReactNativeSpec
+ - React-runtimeexecutor
- React-runtimescheduler
- ReactCommon/turbomodule/core
- - React-ImageManager (0.79.2):
+ - SocketRocket
+ - React-ImageManager (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
+ - RCT-Folly
- RCT-Folly/Fabric
- React-Core/Default
- React-debug
@@ -1439,80 +1914,187 @@ PODS:
- React-graphics
- React-rendererdebug
- React-utils
- - React-jserrorhandler (0.79.2):
+ - SocketRocket
+ - React-intersectionobservernativemodule (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-cxxreact
+ - React-Fabric
+ - React-Fabric/bridging
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-RCTFBReactNativeSpec
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - Yoga
+ - React-jserrorhandler (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- React-cxxreact
- React-debug
- React-featureflags
- React-jsi
- ReactCommon/turbomodule/bridging
- - React-jsi (0.79.2):
+ - SocketRocket
+ - React-jsi (0.83.2):
- boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
- - React-jsiexecutor (0.79.2):
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - SocketRocket
+ - React-jsiexecutor (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
- - React-cxxreact (= 0.79.2)
- - React-jsi (= 0.79.2)
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-cxxreact
+ - React-debug
+ - React-jsi
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsinspectortracing
- - React-perflogger (= 0.79.2)
- - React-jsinspector (0.79.2):
+ - React-perflogger
+ - React-runtimeexecutor
+ - React-utils
+ - SocketRocket
+ - React-jsinspector (0.83.2):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- RCT-Folly
+ - RCT-Folly/Fabric
- React-featureflags
- React-jsi
+ - React-jsinspectorcdp
+ - React-jsinspectornetwork
- React-jsinspectortracing
- - React-perflogger (= 0.79.2)
- - React-runtimeexecutor (= 0.79.2)
- - React-jsinspectortracing (0.79.2):
+ - React-oscompat
+ - React-perflogger (= 0.83.2)
+ - React-runtimeexecutor
+ - React-utils
+ - SocketRocket
+ - React-jsinspectorcdp (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - SocketRocket
+ - React-jsinspectornetwork (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
- RCT-Folly
+ - RCT-Folly/Fabric
+ - React-jsinspectorcdp
+ - SocketRocket
+ - React-jsinspectortracing (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-jsi
+ - React-jsinspectornetwork
- React-oscompat
- - React-jsitooling (0.79.2):
+ - React-timing
+ - SocketRocket
+ - React-jsitooling (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- - RCT-Folly (= 2024.11.18.00)
- - React-cxxreact (= 0.79.2)
- - React-jsi (= 0.79.2)
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-cxxreact (= 0.83.2)
+ - React-debug
+ - React-jsi (= 0.83.2)
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsinspectortracing
- - React-jsitracing (0.79.2):
+ - React-runtimeexecutor
+ - React-utils
+ - SocketRocket
+ - React-jsitracing (0.83.2):
- React-jsi
- - React-logger (0.79.2):
+ - React-logger (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- - React-Mapbuffer (0.79.2):
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - SocketRocket
+ - React-Mapbuffer (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
- React-debug
- - React-microtasksnativemodule (0.79.2):
+ - SocketRocket
+ - React-microtasksnativemodule (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
- hermes-engine
- RCT-Folly
- - React-hermes
+ - RCT-Folly/Fabric
- React-jsi
- React-jsiexecutor
- React-RCTFBReactNativeSpec
- ReactCommon/turbomodule/core
+ - SocketRocket
- react-native-adservices (0.1.3):
- React-Core
- react-native-compat (2.21.6):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1520,7 +2102,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -1531,12 +2112,17 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- react-native-contacts (8.0.10):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1544,7 +2130,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -1555,14 +2140,19 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- react-native-get-random-values (1.11.0):
- React-Core
- react-native-image-picker (8.2.1):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1570,7 +2160,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -1581,14 +2170,19 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- react-native-in-app-review (4.3.5):
- React-Core
- react-native-keyboard-controller (1.19.0):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1596,7 +2190,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- react-native-keyboard-controller/common (= 1.19.0)
@@ -1608,12 +2201,17 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- react-native-keyboard-controller/common (1.19.0):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1621,7 +2219,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -1632,6 +2229,7 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- react-native-mail (6.1.1):
- React-Core
@@ -1640,10 +2238,14 @@ PODS:
- react-native-netinfo (11.4.1):
- React-Core
- react-native-performance (5.1.4):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1651,7 +2253,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -1662,6 +2263,7 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- react-native-piratechain (0.5.20):
- gRPC-Swift (~> 1.8)
@@ -1673,10 +2275,14 @@ PODS:
- react-native-safari-view (1.0.0):
- React
- react-native-safe-area-context (5.6.1):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1684,7 +2290,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- react-native-safe-area-context/common (= 5.6.1)
@@ -1697,12 +2302,17 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- react-native-safe-area-context/common (5.6.1):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1710,7 +2320,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -1721,12 +2330,17 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- react-native-safe-area-context/fabric (5.6.1):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1734,7 +2348,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- react-native-safe-area-context/common
@@ -1746,12 +2359,17 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- react-native-webview (13.15.0):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1759,7 +2377,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -1770,6 +2387,7 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- react-native-zano (0.2.6):
- OpenSSL-Universal
@@ -1779,43 +2397,105 @@ PODS:
- MnemonicSwift (~> 2.2)
- React-Core
- SQLite.swift/standalone (~> 0.14)
- - React-NativeModulesApple (0.79.2):
+ - React-NativeModulesApple (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
- React-callinvoker
- React-Core
- React-cxxreact
+ - React-debug
- React-featureflags
- - React-hermes
- React-jsi
- React-jsinspector
+ - React-jsinspectorcdp
- React-runtimeexecutor
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- - React-oscompat (0.79.2)
- - React-perflogger (0.79.2):
+ - SocketRocket
+ - React-networking (0.83.2):
+ - boost
- DoubleConversion
- - RCT-Folly (= 2024.11.18.00)
- - React-performancetimeline (0.79.2):
- - RCT-Folly (= 2024.11.18.00)
- - React-cxxreact
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-featureflags
+ - React-jsinspectornetwork
+ - React-jsinspectortracing
+ - React-performancetimeline
+ - React-timing
+ - SocketRocket
+ - React-oscompat (0.83.2)
+ - React-perflogger (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - SocketRocket
+ - React-performancecdpmetrics (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-jsi
+ - React-performancetimeline
+ - React-runtimeexecutor
+ - React-timing
+ - SocketRocket
+ - React-performancetimeline (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
- React-featureflags
- React-jsinspectortracing
- React-perflogger
- React-timing
- - React-RCTActionSheet (0.79.2):
- - React-Core/RCTActionSheetHeaders (= 0.79.2)
- - React-RCTAnimation (0.79.2):
- - RCT-Folly (= 2024.11.18.00)
+ - SocketRocket
+ - React-RCTActionSheet (0.83.2):
+ - React-Core/RCTActionSheetHeaders (= 0.83.2)
+ - React-RCTAnimation (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTTypeSafety
- React-Core/RCTAnimationHeaders
+ - React-featureflags
- React-jsi
- React-NativeModulesApple
- React-RCTFBReactNativeSpec
- ReactCommon
- - React-RCTAppDelegate (0.79.2):
+ - SocketRocket
+ - React-RCTAppDelegate (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1836,27 +2516,40 @@ PODS:
- React-rendererdebug
- React-RuntimeApple
- React-RuntimeCore
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
- ReactCommon
- - React-RCTBlob (0.79.2):
+ - SocketRocket
+ - React-RCTBlob (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
+ - glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- React-Core/RCTBlobHeaders
- React-Core/RCTWebSocket
- React-jsi
- React-jsinspector
+ - React-jsinspectorcdp
- React-NativeModulesApple
- React-RCTFBReactNativeSpec
- React-RCTNetwork
- ReactCommon
- - React-RCTFabric (0.79.2):
+ - SocketRocket
+ - React-RCTFabric (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTSwiftUIWrapper
- React-Core
- React-debug
- React-Fabric
@@ -1864,34 +2557,74 @@ PODS:
- React-FabricImage
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsinspectortracing
+ - React-networking
+ - React-performancecdpmetrics
- React-performancetimeline
- React-RCTAnimation
+ - React-RCTFBReactNativeSpec
- React-RCTImage
- React-RCTText
- React-rendererconsistency
- React-renderercss
- React-rendererdebug
+ - React-runtimeexecutor
- React-runtimescheduler
- React-utils
+ - SocketRocket
- Yoga
- - React-RCTFBReactNativeSpec (0.79.2):
+ - React-RCTFBReactNativeSpec (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFBReactNativeSpec/components (= 0.83.2)
+ - ReactCommon
+ - SocketRocket
+ - React-RCTFBReactNativeSpec/components (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
- hermes-engine
- RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
- - React-hermes
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
- React-jsi
- - React-jsiexecutor
- React-NativeModulesApple
+ - React-rendererdebug
+ - React-utils
- ReactCommon
- - React-RCTImage (0.79.2):
- - RCT-Folly (= 2024.11.18.00)
+ - SocketRocket
+ - Yoga
+ - React-RCTImage (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTTypeSafety
- React-Core/RCTImageHeaders
- React-jsi
@@ -1899,66 +2632,111 @@ PODS:
- React-RCTFBReactNativeSpec
- React-RCTNetwork
- ReactCommon
- - React-RCTLinking (0.79.2):
- - React-Core/RCTLinkingHeaders (= 0.79.2)
- - React-jsi (= 0.79.2)
+ - SocketRocket
+ - React-RCTLinking (0.83.2):
+ - React-Core/RCTLinkingHeaders (= 0.83.2)
+ - React-jsi (= 0.83.2)
- React-NativeModulesApple
- React-RCTFBReactNativeSpec
- ReactCommon
- - ReactCommon/turbomodule/core (= 0.79.2)
- - React-RCTNetwork (0.79.2):
- - RCT-Folly (= 2024.11.18.00)
+ - ReactCommon/turbomodule/core (= 0.83.2)
+ - React-RCTNetwork (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTTypeSafety
- React-Core/RCTNetworkHeaders
+ - React-debug
+ - React-featureflags
- React-jsi
+ - React-jsinspectorcdp
+ - React-jsinspectornetwork
- React-NativeModulesApple
+ - React-networking
- React-RCTFBReactNativeSpec
- ReactCommon
- - React-RCTRuntime (0.79.2):
+ - SocketRocket
+ - React-RCTRuntime (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- React-Core
- - React-hermes
+ - React-debug
- React-jsi
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsinspectortracing
- React-jsitooling
- React-RuntimeApple
- React-RuntimeCore
+ - React-runtimeexecutor
- React-RuntimeHermes
- - React-RCTSettings (0.79.2):
- - RCT-Folly (= 2024.11.18.00)
+ - React-utils
+ - SocketRocket
+ - React-RCTSettings (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTTypeSafety
- React-Core/RCTSettingsHeaders
- React-jsi
- React-NativeModulesApple
- React-RCTFBReactNativeSpec
- ReactCommon
- - React-RCTText (0.79.2):
- - React-Core/RCTTextHeaders (= 0.79.2)
+ - SocketRocket
+ - React-RCTText (0.83.2):
+ - React-Core/RCTTextHeaders (= 0.83.2)
- Yoga
- - React-RCTVibration (0.79.2):
- - RCT-Folly (= 2024.11.18.00)
+ - React-RCTVibration (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
- React-Core/RCTVibrationHeaders
- React-jsi
- React-NativeModulesApple
- React-RCTFBReactNativeSpec
- ReactCommon
- - React-rendererconsistency (0.79.2)
- - React-renderercss (0.79.2):
+ - SocketRocket
+ - React-rendererconsistency (0.83.2)
+ - React-renderercss (0.83.2):
- React-debug
- React-utils
- - React-rendererdebug (0.79.2):
+ - React-rendererdebug (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
- - RCT-Folly (= 2024.11.18.00)
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
- React-debug
- - React-rncore (0.79.2)
- - React-RuntimeApple (0.79.2):
+ - SocketRocket
+ - React-RuntimeApple (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- React-callinvoker
- React-Core/Default
- React-CoreModules
@@ -1978,14 +2756,19 @@ PODS:
- React-RuntimeHermes
- React-runtimescheduler
- React-utils
- - React-RuntimeCore (0.79.2):
+ - SocketRocket
+ - React-RuntimeCore (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- React-cxxreact
- React-Fabric
- React-featureflags
- - React-hermes
- React-jserrorhandler
- React-jsi
- React-jsiexecutor
@@ -1995,29 +2778,54 @@ PODS:
- React-runtimeexecutor
- React-runtimescheduler
- React-utils
- - React-runtimeexecutor (0.79.2):
- - React-jsi (= 0.79.2)
- - React-RuntimeHermes (0.79.2):
+ - SocketRocket
+ - React-runtimeexecutor (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-debug
+ - React-featureflags
+ - React-jsi (= 0.83.2)
+ - React-utils
+ - SocketRocket
+ - React-RuntimeHermes (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- React-featureflags
- React-hermes
- React-jsi
- React-jsinspector
+ - React-jsinspectorcdp
- React-jsinspectortracing
- React-jsitooling
- React-jsitracing
- React-RuntimeCore
+ - React-runtimeexecutor
- React-utils
- - React-runtimescheduler (0.79.2):
+ - SocketRocket
+ - React-runtimescheduler (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- React-callinvoker
- React-cxxreact
- React-debug
- React-featureflags
- - React-hermes
- React-jsi
- React-jsinspectortracing
- React-performancetimeline
@@ -2026,21 +2834,49 @@ PODS:
- React-runtimeexecutor
- React-timing
- React-utils
- - React-timing (0.79.2)
- - React-utils (0.79.2):
+ - SocketRocket
+ - React-timing (0.83.2):
+ - React-debug
+ - React-utils (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- React-debug
- - React-hermes
- - React-jsi (= 0.79.2)
- - ReactAppDependencyProvider (0.79.2):
+ - React-jsi (= 0.83.2)
+ - SocketRocket
+ - React-webperformancenativemodule (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-cxxreact
+ - React-jsi
+ - React-jsiexecutor
+ - React-performancetimeline
+ - React-RCTFBReactNativeSpec
+ - React-runtimeexecutor
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - ReactAppDependencyProvider (0.83.2):
- ReactCodegen
- - ReactCodegen (0.79.2):
+ - ReactCodegen (0.83.2):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2049,7 +2885,6 @@ PODS:
- React-FabricImage
- React-featureflags
- React-graphics
- - React-hermes
- React-jsi
- React-jsiexecutor
- React-NativeModulesApple
@@ -2058,54 +2893,76 @@ PODS:
- React-utils
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- - ReactCommon (0.79.2):
- - ReactCommon/turbomodule (= 0.79.2)
- - ReactCommon/turbomodule (0.79.2):
+ - SocketRocket
+ - ReactCommon (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - ReactCommon/turbomodule (= 0.83.2)
+ - SocketRocket
+ - ReactCommon/turbomodule (0.83.2):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
- - React-callinvoker (= 0.79.2)
- - React-cxxreact (= 0.79.2)
- - React-jsi (= 0.79.2)
- - React-logger (= 0.79.2)
- - React-perflogger (= 0.79.2)
- - ReactCommon/turbomodule/bridging (= 0.79.2)
- - ReactCommon/turbomodule/core (= 0.79.2)
- - ReactCommon/turbomodule/bridging (0.79.2):
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-callinvoker (= 0.83.2)
+ - React-cxxreact (= 0.83.2)
+ - React-jsi (= 0.83.2)
+ - React-logger (= 0.83.2)
+ - React-perflogger (= 0.83.2)
+ - ReactCommon/turbomodule/bridging (= 0.83.2)
+ - ReactCommon/turbomodule/core (= 0.83.2)
+ - SocketRocket
+ - ReactCommon/turbomodule/bridging (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
- - React-callinvoker (= 0.79.2)
- - React-cxxreact (= 0.79.2)
- - React-jsi (= 0.79.2)
- - React-logger (= 0.79.2)
- - React-perflogger (= 0.79.2)
- - ReactCommon/turbomodule/core (0.79.2):
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-callinvoker (= 0.83.2)
+ - React-cxxreact (= 0.83.2)
+ - React-jsi (= 0.83.2)
+ - React-logger (= 0.83.2)
+ - React-perflogger (= 0.83.2)
+ - SocketRocket
+ - ReactCommon/turbomodule/core (0.83.2):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
- - React-callinvoker (= 0.79.2)
- - React-cxxreact (= 0.79.2)
- - React-debug (= 0.79.2)
- - React-featureflags (= 0.79.2)
- - React-jsi (= 0.79.2)
- - React-logger (= 0.79.2)
- - React-perflogger (= 0.79.2)
- - React-utils (= 0.79.2)
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-callinvoker (= 0.83.2)
+ - React-cxxreact (= 0.83.2)
+ - React-debug (= 0.83.2)
+ - React-featureflags (= 0.83.2)
+ - React-jsi (= 0.83.2)
+ - React-logger (= 0.83.2)
+ - React-perflogger (= 0.83.2)
+ - React-utils (= 0.83.2)
+ - SocketRocket
- ReactNativeFileAccess (3.1.1):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2113,7 +2970,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -2124,15 +2980,20 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- ZIPFoundation
- rn-id-blurview (1.2.1):
- React
- - RNBootSplash (6.3.8):
+ - RNBootSplash (7.0.2):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2140,7 +3001,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -2151,12 +3011,17 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- RNCAsyncStorage (1.19.4):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2164,7 +3029,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -2175,12 +3039,17 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- RNCClipboard (1.16.3):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2188,7 +3057,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -2199,12 +3067,17 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- RNCPicker (2.11.2):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2212,7 +3085,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -2223,12 +3095,17 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- RNDateTimePicker (8.4.2):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2236,7 +3113,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -2247,6 +3123,7 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- RNDeviceInfo (13.2.0):
- React-Core
@@ -2264,11 +3141,15 @@ PODS:
- RNFBApp
- RNFS (2.20.0):
- React-Core
- - RNGestureHandler (2.28.0):
+ - RNGestureHandler (2.30.0):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2277,7 +3158,6 @@ PODS:
- React-FabricComponents
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -2288,12 +3168,17 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- RNLocalize (3.4.2):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2301,7 +3186,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -2312,12 +3196,17 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- RNPermissions (4.1.5):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2325,7 +3214,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -2336,17 +3224,22 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- RNQrGenerator (1.4.6):
- React
- ZXingObjC
- RNReactNativeHapticFeedback (1.14.0):
- React-Core
- - RNReanimated (4.1.3):
+ - RNReanimated (4.2.1):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2365,14 +3258,19 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- - RNReanimated/reanimated (= 4.1.3)
+ - RNReanimated/reanimated (= 4.2.1)
- RNWorklets
+ - SocketRocket
- Yoga
- - RNReanimated/reanimated (4.1.3):
+ - RNReanimated/reanimated (4.2.1):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2391,14 +3289,19 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- - RNReanimated/reanimated/apple (= 4.1.3)
+ - RNReanimated/reanimated/apple (= 4.2.1)
- RNWorklets
+ - SocketRocket
- Yoga
- - RNReanimated/reanimated/apple (4.1.3):
+ - RNReanimated/reanimated/apple (4.2.1):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2418,12 +3321,17 @@ PODS:
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- RNWorklets
+ - SocketRocket
- Yoga
- RNScreens (4.16.0):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2431,7 +3339,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -2444,12 +3351,17 @@ PODS:
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- RNScreens/common (= 4.16.0)
+ - SocketRocket
- Yoga
- RNScreens/common (4.16.0):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2457,7 +3369,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -2469,14 +3380,19 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- RNSecureRandom (1.0.1):
- React
- RNSentry (7.12.0):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2496,12 +3412,17 @@ PODS:
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- Sentry/HybridSDK (= 8.58.0)
+ - SocketRocket
- Yoga
- RNShare (12.0.11):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2509,7 +3430,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -2520,12 +3440,17 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- RNSound (0.12.0):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2533,7 +3458,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -2544,12 +3468,17 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- RNStoreReview (0.4.3):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2557,7 +3486,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -2568,12 +3496,17 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- RNSVG (15.14.0):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2581,7 +3514,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -2593,12 +3525,17 @@ PODS:
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- RNSVG/common (= 15.14.0)
+ - SocketRocket
- Yoga
- RNSVG/common (15.14.0):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2606,7 +3543,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -2617,12 +3553,17 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- RNVectorIcons (10.1.0):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2630,7 +3571,6 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
- - React-hermes
- React-ImageManager
- React-jsi
- React-NativeModulesApple
@@ -2641,12 +3581,17 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - RNWorklets (0.6.1):
+ - RNWorklets (0.7.2):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2665,13 +3610,18 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- - RNWorklets/worklets (= 0.6.1)
+ - RNWorklets/worklets (= 0.7.2)
+ - SocketRocket
- Yoga
- - RNWorklets/worklets (0.6.1):
+ - RNWorklets/worklets (0.7.2):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2690,13 +3640,18 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- - RNWorklets/worklets/apple (= 0.6.1)
+ - RNWorklets/worklets/apple (= 0.7.2)
+ - SocketRocket
- Yoga
- - RNWorklets/worklets/apple (0.6.1):
+ - RNWorklets/worklets/apple (0.7.2):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -2715,6 +3670,7 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- SDWebImage (5.11.1):
- SDWebImage/Core (= 5.11.1)
@@ -2885,10 +3841,13 @@ DEPENDENCIES:
- EXConstants (from `../node_modules/expo-constants/ios`)
- Expo (from `../node_modules/expo`)
- ExpoAsset (from `../node_modules/expo-asset/ios`)
+ - "ExpoDomWebView (from `../node_modules/@expo/dom-webview/ios`)"
- ExpoFileSystem (from `../node_modules/expo-file-system/ios`)
- ExpoFont (from `../node_modules/expo-font/ios`)
- ExpoKeepAwake (from `../node_modules/expo-keep-awake/ios`)
+ - "ExpoLogBox (from `../node_modules/@expo/log-box`)"
- ExpoModulesCore (from `../node_modules/expo-modules-core`)
+ - ExpoModulesJSI (from `../node_modules/expo-modules-core`)
- fast_float (from `../node_modules/react-native/third-party-podspecs/fast_float.podspec`)
- FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
- fmt (from `../node_modules/react-native/third-party-podspecs/fmt.podspec`)
@@ -2896,9 +3855,10 @@ DEPENDENCIES:
- hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`)
- ImageColors (from `../node_modules/react-native-image-colors/ios`)
- RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
- - RCT-Folly/Fabric (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
- RCTDeprecation (from `../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation`)
- RCTRequired (from `../node_modules/react-native/Libraries/Required`)
+ - RCTSwiftUI (from `../node_modules/react-native/ReactApple/RCTSwiftUI`)
+ - RCTSwiftUIWrapper (from `../node_modules/react-native/ReactApple/RCTSwiftUIWrapper`)
- RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
- React (from `../node_modules/react-native/`)
- React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
@@ -2918,10 +3878,13 @@ DEPENDENCIES:
- React-hermes (from `../node_modules/react-native/ReactCommon/hermes`)
- React-idlecallbacksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks`)
- React-ImageManager (from `../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios`)
+ - React-intersectionobservernativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/intersectionobserver`)
- React-jserrorhandler (from `../node_modules/react-native/ReactCommon/jserrorhandler`)
- React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
- React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
- React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector-modern`)
+ - React-jsinspectorcdp (from `../node_modules/react-native/ReactCommon/jsinspector-modern/cdp`)
+ - React-jsinspectornetwork (from `../node_modules/react-native/ReactCommon/jsinspector-modern/network`)
- React-jsinspectortracing (from `../node_modules/react-native/ReactCommon/jsinspector-modern/tracing`)
- React-jsitooling (from `../node_modules/react-native/ReactCommon/jsitooling`)
- React-jsitracing (from `../node_modules/react-native/ReactCommon/hermes/executor/`)
@@ -2947,8 +3910,10 @@ DEPENDENCIES:
- react-native-zano (from `../node_modules/react-native-zano`)
- react-native-zcash (from `../node_modules/react-native-zcash`)
- React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)
+ - React-networking (from `../node_modules/react-native/ReactCommon/react/networking`)
- React-oscompat (from `../node_modules/react-native/ReactCommon/oscompat`)
- React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
+ - React-performancecdpmetrics (from `../node_modules/react-native/ReactCommon/react/performance/cdpmetrics`)
- React-performancetimeline (from `../node_modules/react-native/ReactCommon/react/performance/timeline`)
- React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
- React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
@@ -2966,7 +3931,6 @@ DEPENDENCIES:
- React-rendererconsistency (from `../node_modules/react-native/ReactCommon/react/renderer/consistency`)
- React-renderercss (from `../node_modules/react-native/ReactCommon/react/renderer/css`)
- React-rendererdebug (from `../node_modules/react-native/ReactCommon/react/renderer/debug`)
- - React-rncore (from `../node_modules/react-native/ReactCommon`)
- React-RuntimeApple (from `../node_modules/react-native/ReactCommon/react/runtime/platform/ios`)
- React-RuntimeCore (from `../node_modules/react-native/ReactCommon/react/runtime`)
- React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
@@ -2974,8 +3938,9 @@ DEPENDENCIES:
- React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`)
- React-timing (from `../node_modules/react-native/ReactCommon/react/timing`)
- React-utils (from `../node_modules/react-native/ReactCommon/react/utils`)
- - ReactAppDependencyProvider (from `build/generated/ios`)
- - ReactCodegen (from `build/generated/ios`)
+ - React-webperformancenativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/webperformance`)
+ - ReactAppDependencyProvider (from `build/generated/ios/ReactAppDependencyProvider`)
+ - ReactCodegen (from `build/generated/ios/ReactCodegen`)
- ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
- ReactNativeFileAccess (from `../node_modules/react-native-file-access`)
- rn-id-blurview (from `../node_modules/rn-id-blurview`)
@@ -3004,6 +3969,7 @@ DEPENDENCIES:
- RNSVG (from `../node_modules/react-native-svg`)
- RNVectorIcons (from `../node_modules/react-native-vector-icons`)
- RNWorklets (from `../node_modules/react-native-worklets`)
+ - SocketRocket (~> 0.7.1)
- VisionCamera (from `../node_modules/react-native-vision-camera`)
- Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
@@ -3081,14 +4047,20 @@ EXTERNAL SOURCES:
:path: "../node_modules/expo"
ExpoAsset:
:path: "../node_modules/expo-asset/ios"
+ ExpoDomWebView:
+ :path: "../node_modules/@expo/dom-webview/ios"
ExpoFileSystem:
:path: "../node_modules/expo-file-system/ios"
ExpoFont:
:path: "../node_modules/expo-font/ios"
ExpoKeepAwake:
:path: "../node_modules/expo-keep-awake/ios"
+ ExpoLogBox:
+ :path: "../node_modules/@expo/log-box"
ExpoModulesCore:
:path: "../node_modules/expo-modules-core"
+ ExpoModulesJSI:
+ :path: "../node_modules/expo-modules-core"
fast_float:
:podspec: "../node_modules/react-native/third-party-podspecs/fast_float.podspec"
FBLazyVector:
@@ -3099,7 +4071,7 @@ EXTERNAL SOURCES:
:podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
hermes-engine:
:podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec"
- :tag: hermes-2025-03-03-RNv0.79.0-bc17d964d03743424823d7dd1a9f37633459c5c5
+ :tag: hermes-v0.14.1
ImageColors:
:path: "../node_modules/react-native-image-colors/ios"
RCT-Folly:
@@ -3108,6 +4080,10 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation"
RCTRequired:
:path: "../node_modules/react-native/Libraries/Required"
+ RCTSwiftUI:
+ :path: "../node_modules/react-native/ReactApple/RCTSwiftUI"
+ RCTSwiftUIWrapper:
+ :path: "../node_modules/react-native/ReactApple/RCTSwiftUIWrapper"
RCTTypeSafety:
:path: "../node_modules/react-native/Libraries/TypeSafety"
React:
@@ -3144,6 +4120,8 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks"
React-ImageManager:
:path: "../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios"
+ React-intersectionobservernativemodule:
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/intersectionobserver"
React-jserrorhandler:
:path: "../node_modules/react-native/ReactCommon/jserrorhandler"
React-jsi:
@@ -3152,6 +4130,10 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native/ReactCommon/jsiexecutor"
React-jsinspector:
:path: "../node_modules/react-native/ReactCommon/jsinspector-modern"
+ React-jsinspectorcdp:
+ :path: "../node_modules/react-native/ReactCommon/jsinspector-modern/cdp"
+ React-jsinspectornetwork:
+ :path: "../node_modules/react-native/ReactCommon/jsinspector-modern/network"
React-jsinspectortracing:
:path: "../node_modules/react-native/ReactCommon/jsinspector-modern/tracing"
React-jsitooling:
@@ -3202,10 +4184,14 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native-zcash"
React-NativeModulesApple:
:path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios"
+ React-networking:
+ :path: "../node_modules/react-native/ReactCommon/react/networking"
React-oscompat:
:path: "../node_modules/react-native/ReactCommon/oscompat"
React-perflogger:
:path: "../node_modules/react-native/ReactCommon/reactperflogger"
+ React-performancecdpmetrics:
+ :path: "../node_modules/react-native/ReactCommon/react/performance/cdpmetrics"
React-performancetimeline:
:path: "../node_modules/react-native/ReactCommon/react/performance/timeline"
React-RCTActionSheet:
@@ -3240,8 +4226,6 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native/ReactCommon/react/renderer/css"
React-rendererdebug:
:path: "../node_modules/react-native/ReactCommon/react/renderer/debug"
- React-rncore:
- :path: "../node_modules/react-native/ReactCommon"
React-RuntimeApple:
:path: "../node_modules/react-native/ReactCommon/react/runtime/platform/ios"
React-RuntimeCore:
@@ -3256,10 +4240,12 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native/ReactCommon/react/timing"
React-utils:
:path: "../node_modules/react-native/ReactCommon/react/utils"
+ React-webperformancenativemodule:
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/webperformance"
ReactAppDependencyProvider:
- :path: build/generated/ios
+ :path: build/generated/ios/ReactAppDependencyProvider
ReactCodegen:
- :path: build/generated/ios
+ :path: build/generated/ios/ReactCodegen
ReactCommon:
:path: "../node_modules/react-native/ReactCommon"
ReactNativeFileAccess:
@@ -3340,15 +4326,18 @@ SPEC CHECKSUMS:
edge-currency-plugins: 002abe3c0d4fb6040046ec779b208c6aa83bee83
edge-exchange-plugins: 0228ac95e3c8d5c06d82f907ac8f67205132256d
edge-login-ui-rn: 74294715a31efa2f79a916a3f89bf47a99cec102
- EXConstants: 98bcf0f22b820f9b28f9fee55ff2daededadd2f8
- Expo: 43d9e0c3108cc3a1c2739743e9b51086144ee4b0
- ExpoAsset: ef06e880126c375f580d4923fdd1cdf4ee6ee7d6
- ExpoFileSystem: 7f92f7be2f5c5ed40a7c9efc8fa30821181d9d63
- ExpoFont: cf508bc2e6b70871e05386d71cab927c8524cc8e
- ExpoKeepAwake: bf0811570c8da182bfb879169437d4de298376e7
- ExpoModulesCore: 471ae18809dc8a5c9a623193a317eef6048a4f8a
- fast_float: 06eeec4fe712a76acc9376682e4808b05ce978b6
- FBLazyVector: 84b955f7b4da8b895faf5946f73748267347c975
+ EXConstants: 9b0ceaa3eb81fc2501ba4f857c1c108a5148c792
+ Expo: 62d99b907188b1cef8c4386d7b75eec50d103119
+ ExpoAsset: 247242c8177e7d9f80ce5590119b5dd09d97db10
+ ExpoDomWebView: c0343b93dabed758db1e14ef1d1e570a1498562a
+ ExpoFileSystem: 134b6426e62c1a4e8a75504a3d01bf79b752dbac
+ ExpoFont: f01db35a4e4efef9c0d06fdbadee21c889cb13cb
+ ExpoKeepAwake: 101e3e70d6e082813949e31c966e10783f87dddb
+ ExpoLogBox: 10ba15b7428e0020da6743a309f53fd553165112
+ ExpoModulesCore: 4c71cf519c8d60ce39a0ea5845bbc26f1745a8f3
+ ExpoModulesJSI: 70f39752b627912b06cae4a2a1f190050b538b33
+ fast_float: b32c788ed9c6a8c584d114d0047beda9664e7cc6
+ FBLazyVector: f1200e6ef6cf24885501668bdbb9eff4cf48843f
Firebase: cec914dab6fd7b1bd8ab56ea07ce4e03dd251c2d
FirebaseCore: 30e9c1cbe3d38f5f5e75f48bfcea87d7c358ec16
FirebaseCoreExtension: 705ca5b14bf71d2564a0ddc677df1fc86ffa600f
@@ -3360,7 +4349,7 @@ SPEC CHECKSUMS:
GoogleDataTransport: 6c09b596d841063d76d4288cc2d2f42cc36e1e2a
GoogleUtilities: ea963c370a38a8069cc5f7ba4ca849a60b6d7d15
gRPC-Swift: 74adcaaa62ac5e0a018938840328cb1fdfb09e7b
- hermes-engine: 314be5250afa5692b57b4dd1705959e1973a8ebe
+ hermes-engine: 82b37b4e5738700a78b0d73faf0f0f5beb5da724
ImageColors: 869f48b27ca2afb347fd0bada3257a5f698ee55e
libwebp: 02b23773aedb6ff1fd38cec7a77b81414c6842a8
Logging: beeb016c9c80cf77042d62e83495816847ef108b
@@ -3368,113 +4357,120 @@ SPEC CHECKSUMS:
nanopb: 438bc412db1928dac798aa6fd75726007be04262
OpenSSL-Universal: 6082b0bf950e5636fe0d78def171184e2b3899c2
PromisesObjC: f5707f49cb48b9636751c5b2e7d227e43fba9f47
- RCT-Folly: e78785aa9ba2ed998ea4151e314036f6c49e6d82
- RCTDeprecation: 83ffb90c23ee5cea353bd32008a7bca100908f8c
- RCTRequired: eb7c0aba998009f47a540bec9e9d69a54f68136e
- RCTTypeSafety: 659ae318c09de0477fd27bbc9e140071c7ea5c93
- React: c2d3aa44c49bb34e4dfd49d3ee92da5ebacc1c1c
- React-callinvoker: 1bdfb7549b5af266d85757193b5069f60659ef9d
- React-Core: 10597593fdbae06f0089881e025a172e51d4a769
- React-CoreModules: 6907b255529dd46895cf687daa67b24484a612c2
- React-cxxreact: a9f5b8180d6955bc3f6a3fcd657c4d9b4d95c1f6
- React-debug: a9861ea2196e886642887e29fd1d86c6eee93454
- React-defaultsnativemodule: 48bed05d5e7a6b90c63775bc042acba50f1ac46c
- React-domnativemodule: 4603dc552b8f2b75cfd708b6175f0f3ab005d661
- React-Fabric: c48e870a557e39fc38c49bf2f43a62f837876318
- React-FabricComponents: d0c0029b9066819e736ee70ce8481fe52632ccad
- React-FabricImage: a843d50c9d21f4a6255c3cd1654cdf16209ac76d
- React-featureflags: 4ef61c283dfae8f327dbae70f41bb0399bd9e0fc
- React-featureflagsnativemodule: 879cdf94179dc7395f28b9bf0fd340fd45c05ab7
- React-graphics: 4e247c50991de6e2c0abd25f8367cfa3113198c0
- React-hermes: 9116d4e6d07abeb519a2852672de087f44da8f12
- React-idlecallbacksnativemodule: 5fd6d838b045d3f5b630a6a0714635bc9c882fdc
- React-ImageManager: ad3f561d76883d6f7f1cf3a97e823fa39ca1b132
- React-jserrorhandler: 35d127a39a5bc16d9ae97edce7ab4c06dc77e3a2
- React-jsi: 753ba30c902f3a41fa7f956aca8eea3317a44ee6
- React-jsiexecutor: 47520714aa7d9589c51c0f3713dfbfca4895d4f9
- React-jsinspector: ec984e95482ee98692ec74f78771447599ed9781
- React-jsinspectortracing: 7bd661f34f08b320bb797dc464d6002116fca145
- React-jsitooling: 90d7ecbb60f70d12f60a4964dfcad0e38d9d970d
- React-jsitracing: a9de0d25bf430574dc01f1fe67f06fd50e8a578c
- React-logger: 8edfcedc100544791cd82692ca5a574240a16219
- React-Mapbuffer: da73f30b000114058d6bc41490dcce204a8ede32
- React-microtasksnativemodule: 444c5701aece79629bb73bd9e7ad8937ae65238c
+ RCT-Folly: 846fda9475e61ec7bcbf8a3fe81edfcaeb090669
+ RCTDeprecation: 3b915a7b166f7d04eaeb4ae30aaf24236a016551
+ RCTRequired: fcfec6ba532cfe4e53c49e0a4061b5eff87f8c64
+ RCTSwiftUI: b2f0c2f2761631b8cd605767536cbb1cbf8d020f
+ RCTSwiftUIWrapper: 02581172ec5db9b67bce917579130c0f1b564b6f
+ RCTTypeSafety: ef5deb31526e96bee85936b2f9fa9ccf8f009e46
+ React: f4edc7518ccb0b54a6f580d89dd91471844b4990
+ React-callinvoker: 55ce59d13846f45dcfb655f03160f54b26b7623e
+ React-Core: d0a03d911ee2424dda52c8699f32ebba46b51de0
+ React-CoreModules: d7fa24a410f5e141720a0eb93584c2f99d49a908
+ React-cxxreact: ea34429da15d0cf04dd4489d59c0587af0ae51b4
+ React-debug: ca259fe5f0bafad00e43708897ffbed5ef02ef9b
+ React-defaultsnativemodule: 9c2b06bc7bc96ef839ea5e6223824a23f6fb3563
+ React-domnativemodule: aa3ae71cefef9b70eea96265b665777be5cd9ae8
+ React-Fabric: 2a9fbf9e81f8dbf6a5e2267932f2258b4baf6ba3
+ React-FabricComponents: 2939605800cc79f64594d975d62c98c3f8aa388c
+ React-FabricImage: 42f2cc4672722b0e82aba67fa62767b02e78655e
+ React-featureflags: e3182c52b7b28ded4ef2f3ad37aa1ab0e7ca8501
+ React-featureflagsnativemodule: 65102c45496610fd31f422f05d6a4c9699366ea3
+ React-graphics: ebbcd053d3fa03c3696989dc376632605dffd126
+ React-hermes: 83e56368753e15a50615365ae70eb0871bfa5e1e
+ React-idlecallbacksnativemodule: 654050622aee6201ea986affc3aa1eb6992e4068
+ React-ImageManager: 8e7c1809c41aa3a847ebe4e2827b5f13970febf6
+ React-intersectionobservernativemodule: 0fd85ec459b355c195a09a011139c46a977eae10
+ React-jserrorhandler: 5e70010ae4a02d47e7e66c8cb8d3359b29e0b6d5
+ React-jsi: 8f701a594d95c65b3ca470f8089dfff48e8902bb
+ React-jsiexecutor: fd6d02d8e5441e358ce652a9271863177871a3a0
+ React-jsinspector: f43f0a9400e5e93d1987b73fbcc114c5c3a685ed
+ React-jsinspectorcdp: 3d5351e81a0bda9f16e797324dff95639daf2e28
+ React-jsinspectornetwork: e81eb5ae9152edacdd32368045ff72ea2f705a8e
+ React-jsinspectortracing: 5824470a5cf2b35024a61decf89864c5cc7771b1
+ React-jsitooling: 55aa72c88f4cdcdbd016608b05314358dc763172
+ React-jsitracing: cf0a24e9629eda95539206155f6913d73d039205
+ React-logger: 49a2029a7c055bf0ef005fec0955c2548fe88f12
+ React-Mapbuffer: 341b7d1814f97c607f95b20976423f7b47a84ad7
+ React-microtasksnativemodule: 3f5e36e093777ff82ce812f54656697418eb8c08
react-native-adservices: 18087a4a5106c5133b0cde73701bf875e3163cfc
- react-native-compat: d39ea5df32baea7a806bb7246444eab86d1c7617
- react-native-contacts: b854a0fabc5d037bb344deb719a1aa03c9ffd88b
+ react-native-compat: 27737494182c68173c422f443fdc26bb0fda9a86
+ react-native-contacts: f80240625ff135a1f395b30e51279a4a851c6218
react-native-get-random-values: d16467cf726c618e9c7a8c3c39c31faa2244bbba
- react-native-image-picker: f6ece66f251f4a17aab08f5add7be6eb9e7f5356
+ react-native-image-picker: 6051cfd030121b880a58f1cc0e5e33e9887804e4
react-native-in-app-review: 668f4c80d7f95945e0ad7833e98c466cb40d6808
- react-native-keyboard-controller: c8968215c7ecdfc43663cfaf9ca991aad4179815
+ react-native-keyboard-controller: 6c84ad97a448da86dae5f5f89419d96839973c77
react-native-mail: 6e83813066984b26403d3fdfe79ac7bb31857e3c
react-native-mymonero-core: 89717c706af7024c9100ccb6c3f22a587ccc8f09
react-native-netinfo: cec9c4e86083cb5b6aba0e0711f563e2fbbff187
- react-native-performance: f0471c84eda0f6625bd42a1f515b1b216f284b12
+ react-native-performance: d77c7992b9ebf63be75f95bcdcafd12048fac487
react-native-piratechain: 82adcbaa6f37993246028ae988840f98ac70e372
react-native-render-html: 5afc4751f1a98621b3009432ef84c47019dcb2bd
react-native-safari-view: 07dc856a2663fef31eaca6beb79b111b8f6cf1f2
- react-native-safe-area-context: 83e0ac3d023997de1c2e035af907cc4dc05f718c
- react-native-webview: 69c118d283fccfbc4fca0cd680e036ff3bf188fa
+ react-native-safe-area-context: ee1e8e2a7abf737a8d4d9d1a5686a7f2e7466236
+ react-native-webview: d73728424a0e24989d71ffdc6fcf15d5f74ff4a2
react-native-zano: dd0967aaa0bbfe347c0ea5af15bc94f2d059fbf7
react-native-zcash: 34b665ed972547f6d09ad47aad706c5daa80bf09
- React-NativeModulesApple: df8e5bc59e78ca3040ffbf41336889f3bd0fad68
- React-oscompat: ef5df1c734f19b8003e149317d041b8ce1f7d29c
- React-perflogger: 9a151e0b4c933c9205fd648c246506a83f31395d
- React-performancetimeline: d6a5fd3640c873875badb33020ebe5af46ef2a12
- React-RCTActionSheet: a499b0d6d9793886b67ba3e16046a3fef2cdbbc3
- React-RCTAnimation: cc64adc259aabc3354b73065e2231d796dfce576
- React-RCTAppDelegate: 9d523da768f1c9e84c5f3b7e3624d097dfb0e16b
- React-RCTBlob: e727f53eeefded7e6432eb76bd22b57bc880e5d1
- React-RCTFabric: a704a0eea3a9a32621ccc79261fe5b010bfcaccb
- React-RCTFBReactNativeSpec: 9064c63d99e467a3893e328ba3612745c3c3a338
- React-RCTImage: 7159cbdbb18a09d97ba1a611416eced75b3ccb29
- React-RCTLinking: 46293afdb859bccc63e1d3dedc6901a3c04ef360
- React-RCTNetwork: 4a6cd18f5bcd0363657789c64043123a896b1170
- React-RCTRuntime: 4b47b6380420e9fbfb4bd3cc16d6ea988640ddc1
- React-RCTSettings: 61e361dc85136d1cb0e148b7541993d2ee950ea7
- React-RCTText: abd1e196c3167175e6baef18199c6d9d8ac54b4e
- React-RCTVibration: 490e0dcb01a3fe4a0dfb7bc51ad5856d8b84f343
- React-rendererconsistency: 68db5a64f0c42b0337e25ba7b0e9513caae1389d
- React-renderercss: 59c892b54a92f2f62b98c2700f5ff7592f0629cb
- React-rendererdebug: f9dfe8ef736c98268f87114d05f49615f7f9af46
- React-rncore: 0f64cacb1becc6f89c99018ca920d012f9044ebd
- React-RuntimeApple: f2bc2dc51b9b3c194c0eec4351ae99d033485792
- React-RuntimeCore: 4e5475d506e7f9c4b3f3c6e6a654b83cba7f1a42
- React-runtimeexecutor: d60846710facedd1edb70c08b738119b3ee2c6c2
- React-RuntimeHermes: 2b238368a56fc50e9372afde7a3f2eeb0cdc63a7
- React-runtimescheduler: c65050ab5c3911dd553bb9223c76543198c5854f
- React-timing: beb0ba912f9ffc1a6758afa767ae5c03302dc9ee
- React-utils: 4b32801a05eff845d316edd59b313a3e25c5fc08
- ReactAppDependencyProvider: 04d5eb15eb46be6720e17a4a7fa92940a776e584
- ReactCodegen: 041559ba76d00f6680dfa0916b3c791f4babe5ea
- ReactCommon: 1511ef100f1afa4c199fe52fe7a8d2529a41429a
- ReactNativeFileAccess: 6c8f0b8a0079d90c524ac1b68c973c70e1293e8a
+ React-NativeModulesApple: b5abec3c13cec8436c802b09cde04fbf70fa3a7b
+ React-networking: 7868e362186628f01f12674e550933736d96f017
+ React-oscompat: 173f032a95ee30e92bbd28cd9b4626de0977f828
+ React-perflogger: 7575736456f16cb73188e3d96fff7694ec536e46
+ React-performancecdpmetrics: 74230f673e06f48c8b0b663ec1e52e71d24eaaec
+ React-performancetimeline: aa5f62109cfee2a85080c6e28b3647568dfc0134
+ React-RCTActionSheet: 238ce94d76d3f43bf8c758520889f1d8bf85f2be
+ React-RCTAnimation: 5a08881a0720a0e7631244235453657b0462de93
+ React-RCTAppDelegate: b6213f1734e62159223579c99e0b3424eb1ec3d4
+ React-RCTBlob: 0b1d5e826e3a7f5fb3a4815fee2b8073c9e26e5d
+ React-RCTFabric: 9202cdde0affea487fb1994478cba1f697e9d38e
+ React-RCTFBReactNativeSpec: e5b864cc72367db8a2701e663943ebdf16a1cbfe
+ React-RCTImage: cf5162fe27524c2e607e4c80ea3e944982c9ec00
+ React-RCTLinking: f934edb38723114957793330e0bb3187037438df
+ React-RCTNetwork: 5a28dc4f1f36e3fb4c8e06155da871ef54bada00
+ React-RCTRuntime: f580e4e993de23b4d09d16516df6baf1ecf62a78
+ React-RCTSettings: 4c064a3f2280ec497f6da494af5c8844bd669cec
+ React-RCTText: a7ec89373602d43f9ef4224a37dcbf33aa98a4a0
+ React-RCTVibration: 05322bcbb94c7dfd0299084532eafb3f35358f06
+ React-rendererconsistency: 2c33da8b7ef5fc547a2e6bb6fa8379dfdb961247
+ React-renderercss: 684e5478bf3498ca689d04aaf3ff67f8ca1b0101
+ React-rendererdebug: 139bb14877c470d335cf095c3d2fb9fb027511aa
+ React-RuntimeApple: 8d011f676e909919e7393ecadb18787520ae06fc
+ React-RuntimeCore: 466ffe9ce33e321979d90edfb40ae364d86c7e74
+ React-runtimeexecutor: c474e85c37a58becb816ce29e41ee24bba259305
+ React-RuntimeHermes: b2eb9cd418e9f842a7c453c7ea85217a6d4bcec5
+ React-runtimescheduler: c1130349e02696269391e371fec4e34b241e52d0
+ React-timing: 3f3d65478fc7cbb36542e5524d90c307e9b8af49
+ React-utils: 4c08b351e05bdbeb1c9a4981b166978154c9d5aa
+ React-webperformancenativemodule: aba670eb1738056d82222627883e78a438e4d14c
+ ReactAppDependencyProvider: d69159b417e8c9d82b8fe4d0a27def4c3e8f767f
+ ReactCodegen: 38a7e572859b574c88edd9f194aee7658033191f
+ ReactCommon: d86bdfcf07cfd551be3f83831ede1b7680dfd4e7
+ ReactNativeFileAccess: 5a3c64dd81f1d1ce7de72638b362f1b7eb4cf1b5
rn-id-blurview: 35bf4f960b8b108d12ed8a8ff14cbc22ed908081
- RNBootSplash: 1280eeb18d887de0a45bb4923d4fc56f25c8b99c
- RNCAsyncStorage: 95c930ec966b842547968e370feced362d8f461c
- RNCClipboard: 45b13251c8938aabfc25b9ecc35b5d42ab4eb0b0
- RNCPicker: e77e886fbfa88f62b3399195a192a24f7ffff709
- RNDateTimePicker: 0e6a0255c82d5ab6eb40a33dda0d8886f249ca9f
+ RNBootSplash: 0df3cd85c49129114c5254f8fd6a283929218aa7
+ RNCAsyncStorage: 599ab720b24d2706e577e4f340667a445e193baa
+ RNCClipboard: e560338bf6cc4656a09ff90610b62ddc0dbdad65
+ RNCPicker: c22d7437181cd4a398d227a182d66ea00c1f847d
+ RNDateTimePicker: 46528c522b81eb9f454af4eeaebb503bc2d62b48
RNDeviceInfo: ae26ae45db3f9937f038a284bcd0a1db8d70db96
RNFastImage: 462a183c4b0b6b26fdfd639e1ed6ba37536c3b87
RNFBApp: 4e6da65e29a144d20bcb5bf264fc8e2055831bab
RNFBMessaging: fb5a9b0a3043d5d3e6e9fe7b27b78fcc3a0f753f
RNFS: 89de7d7f4c0f6bafa05343c578f61118c8282ed8
- RNGestureHandler: c50b05a3941646c4e4098344033ca4609b42be85
- RNLocalize: ae28fc65c1ae7f595c86a926b6beb43790e491c3
- RNPermissions: 60b23d827dc7a4b2e347356fc20206184676637c
+ RNGestureHandler: c6327cf6e2bd384dc90351ccfff0da8142d62f54
+ RNLocalize: 64f3359f6227736b5f570df11166bfa8e1d00468
+ RNPermissions: c702d99c770f636b15cc03959b70711b2a39146b
RNQrGenerator: af2f0888eb81b8ff99517a3929d6399444dcc56d
RNReactNativeHapticFeedback: 8364333ca888b1b7ec9d2daf04b010ee5436366e
- RNReanimated: 0516f7712064007219d296b7788c585ecbf73d52
- RNScreens: eb3800639b236501d2d6487d930b35fe3db68cb0
+ RNReanimated: 927fd84e53ada33970a9bd2a3c897b33fcf55d5b
+ RNScreens: 2e9c41cd099b1ca50136af8d57c3594214d0086a
RNSecureRandom: b64d263529492a6897e236a22a2c4249aa1b53dc
- RNSentry: 0c2660868695668bf93eef20033d0e8bc6016666
- RNShare: 6300b941668273d502ecee9122cade0d5ea966bd
- RNSound: cfeaf6c6a734303c887e04b946cbb7e294bff123
- RNStoreReview: b3cb7df1405d56afd51301ada4660f6c9b970055
- RNSVG: ca807495c5219c05c747254200b89a4e3078db31
- RNVectorIcons: f1bc9e04b6f67ec09ea54e6f092e75a9e205c1d7
- RNWorklets: b1faafefb82d9f29c4018404a0fb33974b494a7b
+ RNSentry: 4597be6a17873bf7c1ec133851593ced79e19db1
+ RNShare: c0f25f3d0ec275239c35cadbc98c94053118bee7
+ RNSound: 9a20f42f674d5cf0aba1dc3c4ac6c4bbf16552e7
+ RNStoreReview: 8e45f4011f017fbc56b9a38d336874bb6b4820c3
+ RNSVG: d9938e7f6ea1616124dd2d64b933322ac2059e05
+ RNVectorIcons: e854a2af85703a08527c2ef6e7b255895aaaad51
+ RNWorklets: 01efdd402d236a13651ea5ea5437ca85a44e7afa
SDWebImage: a7f831e1a65eb5e285e3fb046a23fcfbf08e696d
SDWebImageWebPCoder: 908b83b6adda48effe7667cd2b7f78c897e5111d
Sentry: d587a8fe91ca13503ecd69a1905f3e8a0fcf61be
@@ -3496,7 +4492,7 @@ SPEC CHECKSUMS:
SwiftNIOTransportServices: 0b2b407819d82eb63af558c5396e33c945759503
SwiftProtobuf: e1b437c8e31a4c5577b643249a0bb62ed4f02153
VisionCamera: 30b358b807324c692064f78385e9a732ce1bebfe
- Yoga: 50518ade05048235d91a78b803336dbb5b159d5d
+ Yoga: 89dfd64939cad2d0d2cc2dc48193100cef28bd98
ZIPFoundation: dfd3d681c4053ff7e2f7350bc4e53b5dba3f5351
ZXingObjC: 8898711ab495761b2dbbdec76d90164a6d7e14c5
diff --git a/ios/edge.xcodeproj/project.pbxproj b/ios/edge.xcodeproj/project.pbxproj
index e72c14c8d8b..7a06d2e5ee8 100644
--- a/ios/edge.xcodeproj/project.pbxproj
+++ b/ios/edge.xcodeproj/project.pbxproj
@@ -328,7 +328,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "set -e\nWITH_ENVIRONMENT=\"../node_modules/react-native/scripts/xcode/with-environment.sh\"\nREACT_NATIVE_XCODE=\"../node_modules/react-native/scripts/react-native-xcode.sh\"\nSENTRY_XCODE=\"../node_modules/@sentry/react-native/scripts/sentry-xcode.sh\"\nBUNDLE_REACT_NATIVE=\"/bin/sh $SENTRY_XCODE $REACT_NATIVE_XCODE\"\n\nif grep -q 'SENTRY_MAP_UPLOAD_AUTH_TOKEN' sentry.properties; then\n echo \"Skipping Sentry source-map upload\"\n export SENTRY_DISABLE_AUTO_UPLOAD=true\nfi\n\n/bin/sh -c \"$WITH_ENVIRONMENT \\\"$BUNDLE_REACT_NATIVE\\\"\"\n";
+ shellScript = "set -e\n\nWITH_ENVIRONMENT=\"$REACT_NATIVE_PATH/scripts/xcode/with-environment.sh\"\nREACT_NATIVE_XCODE=\"$REACT_NATIVE_PATH/scripts/react-native-xcode.sh\"\n\n/bin/sh -c \"\\\"$WITH_ENVIRONMENT\\\" \\\"$REACT_NATIVE_XCODE\\\"\"\n";
};
00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */ = {
isa = PBXShellScriptBuildPhase;
@@ -422,11 +422,16 @@
inputFileListPaths = (
);
inputPaths = (
+ "$(SRCROOT)/.xcode.env",
+ "$(SRCROOT)/.xcode.env.local",
+ "$(SRCROOT)/edge/edge.entitlements",
+ "$(SRCROOT)/Pods/Target Support Files/Pods-edge/expo-configure-project.sh",
);
name = "[Expo] Configure project";
outputFileListPaths = (
);
outputPaths = (
+ "$(SRCROOT)/Pods/Target Support Files/Pods-edge/ExpoModulesProvider.swift",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
@@ -593,6 +598,8 @@
"${PODS_CONFIGURATION_BUILD_DIR}/React-NativeModulesApple/React_NativeModulesApple.framework/Headers",
"${PODS_CONFIGURATION_BUILD_DIR}/React-graphics/React_graphics.framework/Headers",
"${PODS_CONFIGURATION_BUILD_DIR}/React-graphics/React_graphics.framework/Headers/react/renderer/graphics/platform/ios",
+ "${PODS_CONFIGURATION_BUILD_DIR}/React-runtimeexecutor/React_runtimeexecutor.framework/Headers",
+ "${PODS_CONFIGURATION_BUILD_DIR}/React-runtimeexecutor/React_runtimeexecutor.framework/Headers/platform/ios",
);
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
LD = "";
@@ -608,6 +615,7 @@
);
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
+ OTHER_CFLAGS = "$(inherited)";
OTHER_CPLUSPLUSFLAGS = (
"$(OTHER_CFLAGS)",
"-DFOLLY_NO_CONFIG",
@@ -682,6 +690,8 @@
"${PODS_CONFIGURATION_BUILD_DIR}/React-NativeModulesApple/React_NativeModulesApple.framework/Headers",
"${PODS_CONFIGURATION_BUILD_DIR}/React-graphics/React_graphics.framework/Headers",
"${PODS_CONFIGURATION_BUILD_DIR}/React-graphics/React_graphics.framework/Headers/react/renderer/graphics/platform/ios",
+ "${PODS_CONFIGURATION_BUILD_DIR}/React-runtimeexecutor/React_runtimeexecutor.framework/Headers",
+ "${PODS_CONFIGURATION_BUILD_DIR}/React-runtimeexecutor/React_runtimeexecutor.framework/Headers/platform/ios",
);
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
LD = "";
@@ -696,6 +706,7 @@
"\"$(inherited)\"",
);
MTL_ENABLE_DEBUG_INFO = NO;
+ OTHER_CFLAGS = "$(inherited)";
OTHER_CPLUSPLUSFLAGS = (
"$(OTHER_CFLAGS)",
"-DFOLLY_NO_CONFIG",
diff --git a/ios/edge/AppDelegate.swift b/ios/edge/AppDelegate.swift
index 9483d70d2ba..103a1d68b34 100644
--- a/ios/edge/AppDelegate.swift
+++ b/ios/edge/AppDelegate.swift
@@ -1,3 +1,4 @@
+import Expo
import Firebase
import FirebaseMessaging
import RNBootSplash
@@ -8,7 +9,7 @@ import UIKit
import UserNotifications
@main
-class AppDelegate: UIResponder, UIApplicationDelegate {
+class AppDelegate: ExpoAppDelegate {
var window: UIWindow?
var securityView: UIView?
@@ -19,7 +20,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
* Handles deep links.
* From https://reactnative.dev/docs/0.79/linking?ios-language=swift#enabling-deep-links
*/
- func application(
+ override func application(
_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey: Any] = [:]
) -> Bool {
return RCTLinkingManager.application(app, open: url, options: options)
@@ -29,7 +30,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
* Handles deep links.
* From https://reactnative.dev/docs/0.79/linking?ios-language=swift#enabling-deep-links
*/
- func application(
+ override func application(
_ application: UIApplication,
continue userActivity: NSUserActivity,
restorationHandler: @escaping ([UIUserActivityRestoring]?) -> Void
@@ -45,7 +46,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
* Handles app start-up.
* React Native template code.
*/
- func application(
+ override func application(
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? = nil
) -> Bool {
@@ -58,11 +59,12 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
// React Native template code:
let delegate = ReactNativeDelegate()
- let factory = RCTReactNativeFactory(delegate: delegate)
+ let factory = ExpoReactNativeFactory(delegate: delegate)
delegate.dependencyProvider = RCTAppDependencyProvider()
reactNativeDelegate = delegate
reactNativeFactory = factory
+ bindReactNativeFactory(factory)
window = UIWindow(frame: UIScreen.main.bounds)
@@ -72,14 +74,14 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
launchOptions: launchOptions
)
- return true
+ return super.application(application, didFinishLaunchingWithOptions: launchOptions)
}
/**
* Periodic background fetch logic.
* Edge addition.
*/
- func application(
+ override func application(
_ application: UIApplication,
performFetchWithCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void
) {
@@ -128,7 +130,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
* Hides the app when we go into the background.
* Edge addition.
*/
- func applicationDidEnterBackground(_ application: UIApplication) {
+ override func applicationDidEnterBackground(_ application: UIApplication) {
guard
let storyboard = UIStoryboard(name: "LaunchScreen", bundle: nil) as UIStoryboard?,
let launchScreen = storyboard.instantiateInitialViewController(),
@@ -148,7 +150,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
* Shows the app when we come into the foreground.
* Edge addition.
*/
- func applicationWillEnterForeground(_ application: UIApplication) {
+ override func applicationWillEnterForeground(_ application: UIApplication) {
if let view = securityView {
view.removeFromSuperview()
securityView = nil
@@ -158,13 +160,13 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
/// Configures the React Native instance.
/// React Native template code.
-class ReactNativeDelegate: RCTDefaultReactNativeFactoryDelegate {
+class ReactNativeDelegate: ExpoReactNativeFactoryDelegate {
override func sourceURL(for bridge: RCTBridge) -> URL? {
self.bundleURL()
}
// react-native-bootsplash integration:
- override func customize(_ rootView: RCTRootView) {
+ override func customize(_ rootView: UIView) {
super.customize(rootView)
RNBootSplash.initWithStoryboard("LaunchScreen", rootView: rootView)
}
diff --git a/ios/edge/Info.plist b/ios/edge/Info.plist
index 2a9afea9725..09c078dd583 100644
--- a/ios/edge/Info.plist
+++ b/ios/edge/Info.plist
@@ -73,10 +73,10 @@
bitcoin
reqaddr
- LSRequiresIPhoneOS
-
LSMinimumSystemVersion
13.0
+ LSRequiresIPhoneOS
+
NFCReaderUsageDescription
$(PRODUCT_NAME) does not use NFC.
NSAppTransportSecurity
@@ -112,6 +112,8 @@
$(PRODUCT_NAME) uses photos to retrieve QR Code images.
NSSpeechRecognitionUsageDescription
$(PRODUCT_NAME) does not access speech recognition.
+ RCTNewArchEnabled
+
UIAppFonts
AntDesign.ttf
diff --git a/jestSetup.js b/jestSetup.js
index 2bae801fbaf..2220a5dbe1b 100644
--- a/jestSetup.js
+++ b/jestSetup.js
@@ -12,6 +12,9 @@ import mockSafeAreaContext from 'react-native-safe-area-context/jest/mock'
jest.mock('@react-native-clipboard/clipboard', () => mockClipboard)
jest.mock('react-native-permissions', () => mockPermissions)
jest.mock('react-native-safe-area-context', () => mockSafeAreaContext)
+jest.mock('react-native-worklets', () =>
+ require('react-native-worklets/src/mock')
+)
require('react-native-reanimated').setUpTests()
// --------------------------------------------------------------------
diff --git a/metro.config.js b/metro.config.js
index 95fff748522..7221ea6798b 100644
--- a/metro.config.js
+++ b/metro.config.js
@@ -1,8 +1,8 @@
-const { getDefaultConfig, mergeConfig } = require('@react-native/metro-config')
+const { getDefaultConfig } = require('expo/metro-config')
+const { mergeConfig } = require('@react-native/metro-config')
const {
wrapWithReanimatedMetroConfig
} = require('react-native-reanimated/metro-config')
-const r3Paths = require('r3-hack')
const defaultConfig = getDefaultConfig(__dirname)
const { assetExts, sourceExts } = defaultConfig.resolver
@@ -20,30 +20,6 @@ const config = {
)
},
resolver: {
- resolveRequest(context, moduleName, platform) {
- if (platform === 'android') {
- // Use Reanimated 3 on Android:
- const filePath = r3Paths[moduleName]
- if (filePath != null) {
- return { type: 'sourceFile', filePath }
- }
-
- // Ensure we aren't missing any reanimated 3 -> 4 mappings:
- if (
- moduleName.startsWith('react-native-reanimated') ||
- moduleName.startsWith('react-native-worklets')
- ) {
- console.log(
- `Could not find "${moduleName}". Please update r3-hack to include it.`
- )
- return { type: 'empty' }
- }
- }
-
- // Otherwise use the normal Metro resolution:
- return context.resolveRequest(context, moduleName, platform)
- },
-
// From react-native-svg-transformer:
assetExts: assetExts.filter(ext => ext !== 'svg'),
sourceExts: [...sourceExts, 'svg']
diff --git a/package.json b/package.json
index d0ebdf5ce14..dc800599fc4 100644
--- a/package.json
+++ b/package.json
@@ -113,7 +113,7 @@
"edge-info-server": "^3.10.0",
"edge-login-ui-rn": "^3.35.0",
"ethers": "^5.7.2",
- "expo": "^53.0.0",
+ "expo": "55.0.0-preview.9",
"jsrsasign": "^11.1.0",
"marked": "^15.0.9",
"p-debounce": "^4.0.0",
@@ -122,12 +122,11 @@
"posthog-react-native": "^2.8.1",
"prompts": "^2.4.2",
"qrcode-generator": "^1.4.4",
- "r3-hack": "./scripts/r3-hack",
- "react": "19.0.0",
- "react-native": "0.79.2",
+ "react": "19.2.0",
+ "react-native": "0.83.2",
"react-native-airship": "^0.2.12",
"react-native-battery-optimization-check": "^1.0.8",
- "react-native-bootsplash": "^6.3.8",
+ "react-native-bootsplash": "^7.0.1",
"react-native-confetti-cannon": "^1.5.2",
"react-native-contacts": "^8.0.10",
"react-native-custom-tabs": "https://github.com/adminphoeniixx/react-native-custom-tabs#develop",
@@ -137,7 +136,7 @@
"react-native-fast-shadow": "^0.1.0",
"react-native-file-access": "^3.1.1",
"react-native-fs": "^2.19.0",
- "react-native-gesture-handler": "^2.28.0",
+ "react-native-gesture-handler": "^2.30.0",
"react-native-get-random-values": "^1.11.0",
"react-native-gifted-charts": "1.4.63",
"react-native-gradle-plugin": "^0.71.19",
@@ -155,7 +154,7 @@
"react-native-performance": "^5.1.4",
"react-native-permissions": "^4.1.5",
"react-native-piratechain": "^0.5.20",
- "react-native-reanimated": "^4.1.3",
+ "react-native-reanimated": "^4.2.1",
"react-native-render-html": "^6.3.4",
"react-native-reorderable-list": "^0.5.0",
"react-native-safari-view": "^2.1.0",
@@ -170,7 +169,7 @@
"react-native-vision-camera": "^4.7.2",
"react-native-webview": "^13.15.0",
"react-native-wheel-picker-android": "^2.0.6",
- "react-native-worklets": "^0.6.1",
+ "react-native-worklets": "^0.7.2",
"react-native-zano": "^0.2.6",
"react-native-zcash": "^0.10.3",
"react-redux": "^8.1.1",
@@ -194,12 +193,12 @@
"@babel/preset-env": "^7.25.3",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.25.0",
- "@react-native-community/cli": "18.0.0",
- "@react-native-community/cli-platform-android": "18.0.0",
- "@react-native-community/cli-platform-ios": "18.0.0",
- "@react-native/babel-preset": "0.79.2",
- "@react-native/metro-config": "0.79.2",
- "@react-native/typescript-config": "0.79.2",
+ "@react-native-community/cli": "20.0.0",
+ "@react-native-community/cli-platform-android": "20.0.0",
+ "@react-native-community/cli-platform-ios": "20.0.0",
+ "@react-native/babel-preset": "0.83.2",
+ "@react-native/metro-config": "0.83.2",
+ "@react-native/typescript-config": "0.83.2",
"@rollup/plugin-babel": "^6.0.3",
"@stakekit/api-hooks": "^0.0.93",
"@sucrase/webpack-loader": "^2.0.0",
@@ -213,12 +212,13 @@
"@types/lodash": "^4.14.149",
"@types/node-fetch": "^2.6.2",
"@types/prompts": "^2.0.14",
- "@types/react": "^19.0.0",
+ "@types/react": "^19.2.0",
"@types/react-native": "^0.71.1",
"@types/react-native-custom-tabs": "^0.1.2",
"@types/react-native-safari-view": "^2.0.5",
"@types/react-native-snap-carousel": "^3.8.9",
"@types/react-native-vector-icons": "^6.4.18",
+ "@types/react-test-renderer": "^19.1.0",
"@types/sha.js": "^2.4.1",
"@types/sprintf-js": "^1.1.2",
"@types/url-parse": "^1.4.8",
@@ -250,7 +250,7 @@
"prettier": "2.8.8",
"process": "^0.11.10",
"react-native-svg-transformer": "^1.5.1",
- "react-test-renderer": "19.0.0",
+ "react-test-renderer": "19.2.0",
"readable-stream": "^3.6.2",
"rollup": "^3.20.6",
"rollup-plugin-node-resolve": "4.0.0",
@@ -259,7 +259,7 @@
"string_decoder": "^1.3.0",
"sucrase": "^3.35.0",
"typechain": "^8.3.2",
- "typescript": "5.0.4",
+ "typescript": "^5.8.3",
"updot": "^1.1.7",
"vm-browserify": "^1.1.2",
"webpack": "^5.73.0",
@@ -269,7 +269,7 @@
"yarn-deduplicate": "^5.0.0"
},
"engines": {
- "node": ">=18"
+ "node": ">=20"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"reanimated": {
diff --git a/patches/react-native+0.79.2.patch b/patches/react-native+0.79.2.patch
deleted file mode 100644
index 69291f444fd..00000000000
--- a/patches/react-native+0.79.2.patch
+++ /dev/null
@@ -1,133 +0,0 @@
-diff --git a/node_modules/react-native/ReactCommon/react/renderer/mounting/ShadowTree.cpp b/node_modules/react-native/ReactCommon/react/renderer/mounting/ShadowTree.cpp
-index 522ec57..e6ad1df 100644
---- a/node_modules/react-native/ReactCommon/react/renderer/mounting/ShadowTree.cpp
-+++ b/node_modules/react-native/ReactCommon/react/renderer/mounting/ShadowTree.cpp
-@@ -22,6 +22,10 @@
-
- namespace facebook::react {
-
-+namespace {
-+const int MAX_COMMIT_ATTEMPTS_BEFORE_LOCKING = 3;
-+} // namespace
-+
- using CommitStatus = ShadowTree::CommitStatus;
- using CommitMode = ShadowTree::CommitMode;
-
-@@ -207,7 +211,8 @@ void ShadowTree::setCommitMode(CommitMode commitMode) const {
- auto revision = ShadowTreeRevision{};
-
- {
-- std::unique_lock lock(commitMutex_);
-+ ShadowTree::UniqueLock lock = uniqueCommitLock();
-+
- if (commitMode_ == commitMode) {
- return;
- }
-@@ -224,7 +229,7 @@ void ShadowTree::setCommitMode(CommitMode commitMode) const {
- }
-
- CommitMode ShadowTree::getCommitMode() const {
-- std::shared_lock lock(commitMutex_);
-+ SharedLock lock = sharedCommitLock();
- return commitMode_;
- }
-
-@@ -238,17 +243,17 @@ CommitStatus ShadowTree::commit(
- const CommitOptions& commitOptions) const {
- [[maybe_unused]] int attempts = 0;
-
-- while (true) {
-- attempts++;
--
-+ while (attempts < MAX_COMMIT_ATTEMPTS_BEFORE_LOCKING) {
- auto status = tryCommit(transaction, commitOptions);
- if (status != CommitStatus::Failed) {
- return status;
- }
-+ attempts++;
-+ }
-
-- // After multiple attempts, we failed to commit the transaction.
-- // Something internally went terribly wrong.
-- react_native_assert(attempts < 1024);
-+ {
-+ std::unique_lock lock(commitMutexRecursive_);
-+ return tryCommit(transaction, commitOptions);
- }
- }
-
-@@ -266,7 +271,7 @@ CommitStatus ShadowTree::tryCommit(
-
- {
- // Reading `currentRevision_` in shared manner.
-- std::shared_lock lock(commitMutex_);
-+ SharedLock lock = sharedCommitLock();
- commitMode = commitMode_;
- oldRevision = currentRevision_;
- }
-@@ -307,7 +312,7 @@ CommitStatus ShadowTree::tryCommit(
-
- {
- // Updating `currentRevision_` in unique manner if it hasn't changed.
-- std::unique_lock lock(commitMutex_);
-+ UniqueLock lock = uniqueCommitLock();
-
- if (currentRevision_.number != oldRevision.number) {
- return CommitStatus::Failed;
-@@ -345,7 +350,7 @@ CommitStatus ShadowTree::tryCommit(
- }
-
- ShadowTreeRevision ShadowTree::getCurrentRevision() const {
-- std::shared_lock lock(commitMutex_);
-+ SharedLock lock = sharedCommitLock();
- return currentRevision_;
- }
-
-@@ -392,4 +397,12 @@ void ShadowTree::notifyDelegatesOfUpdates() const {
- delegate_.shadowTreeDidFinishTransaction(mountingCoordinator_, true);
- }
-
-+inline ShadowTree::UniqueLock ShadowTree::uniqueCommitLock() const {
-+ return std::unique_lock{commitMutexRecursive_};
-+}
-+
-+inline ShadowTree::SharedLock ShadowTree::sharedCommitLock() const {
-+ return std::unique_lock{commitMutexRecursive_};
-+}
-+
- } // namespace facebook::react
-diff --git a/node_modules/react-native/ReactCommon/react/renderer/mounting/ShadowTree.h b/node_modules/react-native/ReactCommon/react/renderer/mounting/ShadowTree.h
-index ae9d005..c3bef0b 100644
---- a/node_modules/react-native/ReactCommon/react/renderer/mounting/ShadowTree.h
-+++ b/node_modules/react-native/ReactCommon/react/renderer/mounting/ShadowTree.h
-@@ -8,6 +8,8 @@
- #pragma once
-
- #include
-+#include
-+#include
-
- #include
- #include
-@@ -139,10 +141,21 @@ class ShadowTree final {
- const SurfaceId surfaceId_;
- const ShadowTreeDelegate& delegate_;
- mutable std::shared_mutex commitMutex_;
-+ mutable std::recursive_mutex commitMutexRecursive_;
- mutable CommitMode commitMode_{
- CommitMode::Normal}; // Protected by `commitMutex_`.
- mutable ShadowTreeRevision currentRevision_; // Protected by `commitMutex_`.
- std::shared_ptr mountingCoordinator_;
-+
-+ using UniqueLock = std::variant<
-+ std::unique_lock,
-+ std::unique_lock>;
-+ using SharedLock = std::variant<
-+ std::shared_lock,
-+ std::unique_lock>;
-+
-+ inline UniqueLock uniqueCommitLock() const;
-+ inline SharedLock sharedCommitLock() const;
- };
-
- } // namespace facebook::react
diff --git a/patches/react-native-securerandom+1.0.1.patch b/patches/react-native-securerandom+1.0.1.patch
new file mode 100644
index 00000000000..c3e3d49bea0
--- /dev/null
+++ b/patches/react-native-securerandom+1.0.1.patch
@@ -0,0 +1,20 @@
+diff --git a/node_modules/react-native-securerandom/android/build.gradle b/node_modules/react-native-securerandom/android/build.gradle
+index 4e725c3..b92e86a 100644
+--- a/node_modules/react-native-securerandom/android/build.gradle
++++ b/node_modules/react-native-securerandom/android/build.gradle
+@@ -6,7 +6,6 @@ buildscript {
+ repositories {
+ google()
+ mavenCentral()
+- jcenter()
+ }
+
+ dependencies {
+@@ -56,7 +55,6 @@ repositories {
+ excludeGroup "com.facebook.react"
+ }
+ }
+- jcenter()
+ }
+
+ dependencies {
diff --git a/react-native.config.js b/react-native.config.js
index 10ca5143757..97b5967ac8c 100644
--- a/react-native.config.js
+++ b/react-native.config.js
@@ -5,21 +5,11 @@ module.exports = {
ios: null
}
},
-
- // We want Reanimated 3 on Android:
- 'react-native-reanimated': {
+ // Accountbased pulls this in, but we don't use it natively:
+ '@fioprotocol/fiosdk': {
platforms: {
- android: {
- sourceDir:
- '../node_modules/r3-hack/node_modules/react-native-reanimated/android'
- }
- }
- },
-
- // We don't want Reanimated 4 worklets on Android:
- 'react-native-worklets': {
- platforms: {
- android: null
+ android: null,
+ ios: null
}
}
}
diff --git a/scripts/r3-hack/README.md b/scripts/r3-hack/README.md
deleted file mode 100644
index dcda549350c..00000000000
--- a/scripts/r3-hack/README.md
+++ /dev/null
@@ -1,17 +0,0 @@
-# Reanimated Hack
-
-Here is the problem:
-
-- iOS: We need to run Reanimated 4 on the new achitecture to get decent performance.
-- Android: We cannot use the new architecture yet (there are unsolved performance problems), so we need to use Reanimated 3.
-
-How can we have two versions of a native library at once? Well...
-
-- Require Reanimated 4 normally through package.json.
-- Require Reanimated 3 indirectly through this r3-hack shim package.
-- Use react-native.config.js to override the native module with Reanimated 3.
-- Tell babel.config.js to use the right plugin based on platform.
-- Hack metro.config.js to resolve 'react-native-reanimated' to
- this package's exported paths on Android.
-
-Super sketchy, but it works!
diff --git a/scripts/r3-hack/index.js b/scripts/r3-hack/index.js
deleted file mode 100644
index 2ecc6710b0c..00000000000
--- a/scripts/r3-hack/index.js
+++ /dev/null
@@ -1,14 +0,0 @@
-// The various react-native-reanimated entry points the app uses,
-// but resolved to our internal copy of Reanimated 3:
-module.exports = {
- // Reanimated itself:
- 'react-native-reanimated': require.resolve('react-native-reanimated'),
-
- // react-native-keyboard-controller reaches into our internals:
- 'react-native-reanimated/src/core': require.resolve(
- 'react-native-reanimated/src/core.ts'
- ),
-
- // Some functions like `runOnJs` have moved, so put them back:
- 'react-native-worklets': require.resolve('react-native-reanimated')
-}
diff --git a/scripts/r3-hack/package.json b/scripts/r3-hack/package.json
deleted file mode 100644
index 8dcec0a2ac5..00000000000
--- a/scripts/r3-hack/package.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "name": "r3-hack",
- "version": "0.0.1",
- "description": "Makes it possible to have Reanimated 3 alongside Reanimated 4",
- "main": "index.js",
- "files": [
- "index.js"
- ],
- "dependencies": {
- "react-native-reanimated": "^3.19.1"
- }
-}
diff --git a/src/__tests__/components/__snapshots__/FilledTextInput.test.tsx.snap b/src/__tests__/components/__snapshots__/FilledTextInput.test.tsx.snap
index 97b1d49f867..e17fd114db7 100644
--- a/src/__tests__/components/__snapshots__/FilledTextInput.test.tsx.snap
+++ b/src/__tests__/components/__snapshots__/FilledTextInput.test.tsx.snap
@@ -146,7 +146,7 @@ exports[`FilledTextInput should render with some props 1`] = `
jestAnimatedStyle={
{
"value": {
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "anticon",
"fontSize": 0,
"fontStyle": "normal",
@@ -159,7 +159,7 @@ exports[`FilledTextInput should render with some props 1`] = `
style={
[
{
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "anticon",
"fontSize": 0,
"fontStyle": "normal",
@@ -294,7 +294,7 @@ exports[`FilledTextInput should render with some props 1`] = `
jestAnimatedStyle={
{
"value": {
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontSize": 16.5,
},
}
@@ -320,7 +320,7 @@ exports[`FilledTextInput should render with some props 1`] = `
"includeFontPadding": false,
},
{
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontSize": 16.5,
},
]
@@ -504,7 +504,7 @@ exports[`FilledTextInput should render with some props 1`] = `
jestAnimatedStyle={
{
"value": {
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "anticon",
"fontSize": 22,
"fontStyle": "normal",
@@ -517,7 +517,7 @@ exports[`FilledTextInput should render with some props 1`] = `
style={
[
{
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "anticon",
"fontSize": 22,
"fontStyle": "normal",
diff --git a/src/__tests__/modals/__snapshots__/AddressModal.test.tsx.snap b/src/__tests__/modals/__snapshots__/AddressModal.test.tsx.snap
index 0466d13daef..fca6d2e3d7b 100644
--- a/src/__tests__/modals/__snapshots__/AddressModal.test.tsx.snap
+++ b/src/__tests__/modals/__snapshots__/AddressModal.test.tsx.snap
@@ -541,7 +541,7 @@ exports[`AddressModalComponent should render with loaded props 1`] = `
jestAnimatedStyle={
{
"value": {
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontSize": 22,
},
}
@@ -567,7 +567,7 @@ exports[`AddressModalComponent should render with loaded props 1`] = `
"includeFontPadding": false,
},
{
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontSize": 22,
},
]
@@ -747,7 +747,7 @@ exports[`AddressModalComponent should render with loaded props 1`] = `
jestAnimatedStyle={
{
"value": {
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "anticon",
"fontSize": 0,
"fontStyle": "normal",
@@ -760,7 +760,7 @@ exports[`AddressModalComponent should render with loaded props 1`] = `
style={
[
{
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "anticon",
"fontSize": 0,
"fontStyle": "normal",
diff --git a/src/__tests__/modals/__snapshots__/CategoryModal.test.tsx.snap b/src/__tests__/modals/__snapshots__/CategoryModal.test.tsx.snap
index af807184a4f..f61da1f906d 100644
--- a/src/__tests__/modals/__snapshots__/CategoryModal.test.tsx.snap
+++ b/src/__tests__/modals/__snapshots__/CategoryModal.test.tsx.snap
@@ -804,7 +804,7 @@ exports[`CategoryModal should render with a subcategory 1`] = `
jestAnimatedStyle={
{
"value": {
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontSize": 16.5,
},
}
@@ -830,7 +830,7 @@ exports[`CategoryModal should render with a subcategory 1`] = `
"includeFontPadding": false,
},
{
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontSize": 16.5,
},
]
@@ -1009,7 +1009,7 @@ exports[`CategoryModal should render with a subcategory 1`] = `
jestAnimatedStyle={
{
"value": {
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "anticon",
"fontSize": 22,
"fontStyle": "normal",
@@ -1022,7 +1022,7 @@ exports[`CategoryModal should render with a subcategory 1`] = `
style={
[
{
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "anticon",
"fontSize": 22,
"fontStyle": "normal",
@@ -2526,7 +2526,7 @@ exports[`CategoryModal should render with an empty subcategory 1`] = `
jestAnimatedStyle={
{
"value": {
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontSize": 22,
},
}
@@ -2552,7 +2552,7 @@ exports[`CategoryModal should render with an empty subcategory 1`] = `
"includeFontPadding": false,
},
{
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontSize": 22,
},
]
@@ -2731,7 +2731,7 @@ exports[`CategoryModal should render with an empty subcategory 1`] = `
jestAnimatedStyle={
{
"value": {
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "anticon",
"fontSize": 0,
"fontStyle": "normal",
@@ -2744,7 +2744,7 @@ exports[`CategoryModal should render with an empty subcategory 1`] = `
style={
[
{
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "anticon",
"fontSize": 0,
"fontStyle": "normal",
diff --git a/src/__tests__/modals/__snapshots__/CountryListModal.test.tsx.snap b/src/__tests__/modals/__snapshots__/CountryListModal.test.tsx.snap
index d58d9c1170d..518ea586c8d 100644
--- a/src/__tests__/modals/__snapshots__/CountryListModal.test.tsx.snap
+++ b/src/__tests__/modals/__snapshots__/CountryListModal.test.tsx.snap
@@ -542,7 +542,7 @@ exports[`CountryListModal should render with a country list 1`] = `
jestAnimatedStyle={
{
"value": {
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontSize": 22,
},
}
@@ -568,7 +568,7 @@ exports[`CountryListModal should render with a country list 1`] = `
"includeFontPadding": false,
},
{
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontSize": 22,
},
]
@@ -748,7 +748,7 @@ exports[`CountryListModal should render with a country list 1`] = `
jestAnimatedStyle={
{
"value": {
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "anticon",
"fontSize": 0,
"fontStyle": "normal",
@@ -761,7 +761,7 @@ exports[`CountryListModal should render with a country list 1`] = `
style={
[
{
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "anticon",
"fontSize": 0,
"fontStyle": "normal",
diff --git a/src/__tests__/modals/__snapshots__/LogsModal.test.tsx.snap b/src/__tests__/modals/__snapshots__/LogsModal.test.tsx.snap
index 38966bc50cd..ee8158de56e 100644
--- a/src/__tests__/modals/__snapshots__/LogsModal.test.tsx.snap
+++ b/src/__tests__/modals/__snapshots__/LogsModal.test.tsx.snap
@@ -722,7 +722,7 @@ exports[`LogsModal should render with a logs modal 1`] = `
jestAnimatedStyle={
{
"value": {
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontSize": 22,
},
}
@@ -748,7 +748,7 @@ exports[`LogsModal should render with a logs modal 1`] = `
"includeFontPadding": false,
},
{
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontSize": 22,
},
]
@@ -928,7 +928,7 @@ exports[`LogsModal should render with a logs modal 1`] = `
jestAnimatedStyle={
{
"value": {
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "anticon",
"fontSize": 0,
"fontStyle": "normal",
@@ -941,7 +941,7 @@ exports[`LogsModal should render with a logs modal 1`] = `
style={
[
{
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "anticon",
"fontSize": 0,
"fontStyle": "normal",
diff --git a/src/__tests__/modals/__snapshots__/PasswordReminderModal.test.tsx.snap b/src/__tests__/modals/__snapshots__/PasswordReminderModal.test.tsx.snap
index e7592ba1356..e0ecd871526 100644
--- a/src/__tests__/modals/__snapshots__/PasswordReminderModal.test.tsx.snap
+++ b/src/__tests__/modals/__snapshots__/PasswordReminderModal.test.tsx.snap
@@ -568,7 +568,7 @@ Please enter your password below. A successful verification will prevent this wa
jestAnimatedStyle={
{
"value": {
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontSize": 22,
},
}
@@ -594,7 +594,7 @@ Please enter your password below. A successful verification will prevent this wa
"includeFontPadding": false,
},
{
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontSize": 22,
},
]
@@ -743,7 +743,7 @@ Please enter your password below. A successful verification will prevent this wa
jestAnimatedStyle={
{
"value": {
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "Ionicons",
"fontSize": 22,
"fontStyle": "normal",
@@ -756,7 +756,7 @@ Please enter your password below. A successful verification will prevent this wa
style={
[
{
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "Ionicons",
"fontSize": 22,
"fontStyle": "normal",
@@ -857,7 +857,7 @@ Please enter your password below. A successful verification will prevent this wa
jestAnimatedStyle={
{
"value": {
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "anticon",
"fontSize": 0,
"fontStyle": "normal",
@@ -870,7 +870,7 @@ Please enter your password below. A successful verification will prevent this wa
style={
[
{
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "anticon",
"fontSize": 0,
"fontStyle": "normal",
diff --git a/src/__tests__/modals/__snapshots__/TextInputModal.test.tsx.snap b/src/__tests__/modals/__snapshots__/TextInputModal.test.tsx.snap
index de5210c0260..1b55e4e0955 100644
--- a/src/__tests__/modals/__snapshots__/TextInputModal.test.tsx.snap
+++ b/src/__tests__/modals/__snapshots__/TextInputModal.test.tsx.snap
@@ -665,7 +665,7 @@ exports[`TextInputModal should render with a blank input field 1`] = `
jestAnimatedStyle={
{
"value": {
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "anticon",
"fontSize": 0,
"fontStyle": "normal",
@@ -678,7 +678,7 @@ exports[`TextInputModal should render with a blank input field 1`] = `
style={
[
{
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "anticon",
"fontSize": 0,
"fontStyle": "normal",
@@ -1517,7 +1517,7 @@ exports[`TextInputModal should render with a populated input field 1`] = `
jestAnimatedStyle={
{
"value": {
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "anticon",
"fontSize": 22,
"fontStyle": "normal",
@@ -1530,7 +1530,7 @@ exports[`TextInputModal should render with a populated input field 1`] = `
style={
[
{
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "anticon",
"fontSize": 22,
"fontStyle": "normal",
diff --git a/src/__tests__/modals/__snapshots__/WalletListModal.test.tsx.snap b/src/__tests__/modals/__snapshots__/WalletListModal.test.tsx.snap
index 42e8526ef3d..5f9ea1194d0 100644
--- a/src/__tests__/modals/__snapshots__/WalletListModal.test.tsx.snap
+++ b/src/__tests__/modals/__snapshots__/WalletListModal.test.tsx.snap
@@ -376,7 +376,7 @@ exports[`WalletListModal should render with loading props 1`] = `
jestAnimatedStyle={
{
"value": {
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "anticon",
"fontSize": 22,
"fontStyle": "normal",
@@ -389,7 +389,7 @@ exports[`WalletListModal should render with loading props 1`] = `
style={
[
{
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "anticon",
"fontSize": 22,
"fontStyle": "normal",
@@ -493,7 +493,7 @@ exports[`WalletListModal should render with loading props 1`] = `
jestAnimatedStyle={
{
"value": {
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "Feather",
"fontSize": 22,
"fontStyle": "normal",
@@ -506,7 +506,7 @@ exports[`WalletListModal should render with loading props 1`] = `
style={
[
{
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "Feather",
"fontSize": 22,
"fontStyle": "normal",
@@ -675,7 +675,7 @@ exports[`WalletListModal should render with loading props 1`] = `
jestAnimatedStyle={
{
"value": {
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "anticon",
"fontSize": 22,
"fontStyle": "normal",
@@ -688,7 +688,7 @@ exports[`WalletListModal should render with loading props 1`] = `
style={
[
{
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "anticon",
"fontSize": 22,
"fontStyle": "normal",
diff --git a/src/__tests__/scenes/__snapshots__/CreateWalletAccountSetupScene.test.tsx.snap b/src/__tests__/scenes/__snapshots__/CreateWalletAccountSetupScene.test.tsx.snap
index 23e503b4450..a1909a7a56f 100644
--- a/src/__tests__/scenes/__snapshots__/CreateWalletAccountSetupScene.test.tsx.snap
+++ b/src/__tests__/scenes/__snapshots__/CreateWalletAccountSetupScene.test.tsx.snap
@@ -647,7 +647,7 @@ exports[`CreateWalletAccountSelect renders 1`] = `
jestAnimatedStyle={
{
"value": {
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontSize": 22,
},
}
@@ -673,7 +673,7 @@ exports[`CreateWalletAccountSelect renders 1`] = `
"includeFontPadding": false,
},
{
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontSize": 22,
},
]
@@ -854,7 +854,7 @@ exports[`CreateWalletAccountSelect renders 1`] = `
jestAnimatedStyle={
{
"value": {
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "anticon",
"fontSize": 0,
"fontStyle": "normal",
@@ -867,7 +867,7 @@ exports[`CreateWalletAccountSelect renders 1`] = `
style={
[
{
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "anticon",
"fontSize": 0,
"fontStyle": "normal",
diff --git a/src/__tests__/scenes/__snapshots__/CreateWalletImportScene.test.tsx.snap b/src/__tests__/scenes/__snapshots__/CreateWalletImportScene.test.tsx.snap
index 2c4ac22c81b..537262dc4cc 100644
--- a/src/__tests__/scenes/__snapshots__/CreateWalletImportScene.test.tsx.snap
+++ b/src/__tests__/scenes/__snapshots__/CreateWalletImportScene.test.tsx.snap
@@ -617,7 +617,7 @@ exports[`CreateWalletImportScene should render with loading props 1`] = `
jestAnimatedStyle={
{
"value": {
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontSize": 22,
},
}
@@ -643,7 +643,7 @@ exports[`CreateWalletImportScene should render with loading props 1`] = `
"includeFontPadding": false,
},
{
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontSize": 22,
},
]
@@ -826,7 +826,7 @@ exports[`CreateWalletImportScene should render with loading props 1`] = `
jestAnimatedStyle={
{
"value": {
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "anticon",
"fontSize": 0,
"fontStyle": "normal",
@@ -839,7 +839,7 @@ exports[`CreateWalletImportScene should render with loading props 1`] = `
style={
[
{
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "anticon",
"fontSize": 0,
"fontStyle": "normal",
diff --git a/src/__tests__/scenes/__snapshots__/CreateWalletSelectCryptoScene.test.tsx.snap b/src/__tests__/scenes/__snapshots__/CreateWalletSelectCryptoScene.test.tsx.snap
index 754a6244f7a..d682d8dd4d0 100644
--- a/src/__tests__/scenes/__snapshots__/CreateWalletSelectCryptoScene.test.tsx.snap
+++ b/src/__tests__/scenes/__snapshots__/CreateWalletSelectCryptoScene.test.tsx.snap
@@ -482,7 +482,7 @@ exports[`CreateWalletSelectCrypto should render with loading props 1`] = `
jestAnimatedStyle={
{
"value": {
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "anticon",
"fontSize": 22,
"fontStyle": "normal",
@@ -495,7 +495,7 @@ exports[`CreateWalletSelectCrypto should render with loading props 1`] = `
style={
[
{
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "anticon",
"fontSize": 22,
"fontStyle": "normal",
@@ -599,7 +599,7 @@ exports[`CreateWalletSelectCrypto should render with loading props 1`] = `
jestAnimatedStyle={
{
"value": {
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "Feather",
"fontSize": 22,
"fontStyle": "normal",
@@ -612,7 +612,7 @@ exports[`CreateWalletSelectCrypto should render with loading props 1`] = `
style={
[
{
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "Feather",
"fontSize": 22,
"fontStyle": "normal",
@@ -782,7 +782,7 @@ exports[`CreateWalletSelectCrypto should render with loading props 1`] = `
jestAnimatedStyle={
{
"value": {
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "anticon",
"fontSize": 22,
"fontStyle": "normal",
@@ -795,7 +795,7 @@ exports[`CreateWalletSelectCrypto should render with loading props 1`] = `
style={
[
{
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "anticon",
"fontSize": 22,
"fontStyle": "normal",
@@ -1110,8 +1110,7 @@ exports[`CreateWalletSelectCrypto should render with loading props 1`] = `
style={
[
{
- "height": 31,
- "width": 51,
+ "alignSelf": "flex-start",
},
{
"backgroundColor": "#888888",
@@ -1347,8 +1346,7 @@ exports[`CreateWalletSelectCrypto should render with loading props 1`] = `
style={
[
{
- "height": 31,
- "width": 51,
+ "alignSelf": "flex-start",
},
{
"backgroundColor": "#888888",
@@ -1584,8 +1582,7 @@ exports[`CreateWalletSelectCrypto should render with loading props 1`] = `
style={
[
{
- "height": 31,
- "width": 51,
+ "alignSelf": "flex-start",
},
{
"backgroundColor": "#888888",
@@ -1821,8 +1818,7 @@ exports[`CreateWalletSelectCrypto should render with loading props 1`] = `
style={
[
{
- "height": 31,
- "width": 51,
+ "alignSelf": "flex-start",
},
{
"backgroundColor": "#888888",
@@ -2058,8 +2054,7 @@ exports[`CreateWalletSelectCrypto should render with loading props 1`] = `
style={
[
{
- "height": 31,
- "width": 51,
+ "alignSelf": "flex-start",
},
{
"backgroundColor": "#888888",
diff --git a/src/__tests__/scenes/__snapshots__/CurrencyNotificationScene.test.tsx.snap b/src/__tests__/scenes/__snapshots__/CurrencyNotificationScene.test.tsx.snap
index 22ab7b26c1d..bce108ae819 100644
--- a/src/__tests__/scenes/__snapshots__/CurrencyNotificationScene.test.tsx.snap
+++ b/src/__tests__/scenes/__snapshots__/CurrencyNotificationScene.test.tsx.snap
@@ -421,8 +421,7 @@ exports[`CurrencyNotificationComponent should render with loading props 1`] = `
style={
[
{
- "height": 31,
- "width": 51,
+ "alignSelf": "flex-start",
},
{
"backgroundColor": "#888888",
@@ -588,8 +587,7 @@ exports[`CurrencyNotificationComponent should render with loading props 1`] = `
style={
[
{
- "height": 31,
- "width": 51,
+ "alignSelf": "flex-start",
},
{
"backgroundColor": "#888888",
diff --git a/src/__tests__/scenes/__snapshots__/DefaultFiatSettingScene.test.tsx.snap b/src/__tests__/scenes/__snapshots__/DefaultFiatSettingScene.test.tsx.snap
index 1654070573f..e69e3b8870a 100644
--- a/src/__tests__/scenes/__snapshots__/DefaultFiatSettingScene.test.tsx.snap
+++ b/src/__tests__/scenes/__snapshots__/DefaultFiatSettingScene.test.tsx.snap
@@ -480,7 +480,7 @@ exports[`DefaultFiatSettingComponent should render with loading props 1`] = `
jestAnimatedStyle={
{
"value": {
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "anticon",
"fontSize": 22,
"fontStyle": "normal",
@@ -493,7 +493,7 @@ exports[`DefaultFiatSettingComponent should render with loading props 1`] = `
style={
[
{
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "anticon",
"fontSize": 22,
"fontStyle": "normal",
@@ -597,7 +597,7 @@ exports[`DefaultFiatSettingComponent should render with loading props 1`] = `
jestAnimatedStyle={
{
"value": {
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "Feather",
"fontSize": 22,
"fontStyle": "normal",
@@ -610,7 +610,7 @@ exports[`DefaultFiatSettingComponent should render with loading props 1`] = `
style={
[
{
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "Feather",
"fontSize": 22,
"fontStyle": "normal",
@@ -781,7 +781,7 @@ exports[`DefaultFiatSettingComponent should render with loading props 1`] = `
jestAnimatedStyle={
{
"value": {
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "anticon",
"fontSize": 22,
"fontStyle": "normal",
@@ -794,7 +794,7 @@ exports[`DefaultFiatSettingComponent should render with loading props 1`] = `
style={
[
{
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "anticon",
"fontSize": 22,
"fontStyle": "normal",
diff --git a/src/__tests__/scenes/__snapshots__/RequestScene.test.tsx.snap b/src/__tests__/scenes/__snapshots__/RequestScene.test.tsx.snap
index 4ff78549a01..081a186c3c6 100644
--- a/src/__tests__/scenes/__snapshots__/RequestScene.test.tsx.snap
+++ b/src/__tests__/scenes/__snapshots__/RequestScene.test.tsx.snap
@@ -1874,7 +1874,7 @@ exports[`Request should render with loaded props 1`] = `
jestAnimatedStyle={
{
"value": {
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "anticon",
"fontSize": 22,
"fontStyle": "normal",
@@ -1887,7 +1887,7 @@ exports[`Request should render with loaded props 1`] = `
style={
[
{
- "color": "rgba(255, 255, 255, 0.5019607843137255)",
+ "color": "rgba(255, 255, 255, 0.502)",
"fontFamily": "anticon",
"fontSize": 22,
"fontStyle": "normal",
diff --git a/src/__tests__/scenes/__snapshots__/SettingsScene.test.tsx.snap b/src/__tests__/scenes/__snapshots__/SettingsScene.test.tsx.snap
index 77835d74bc4..6a3ed10d090 100644
--- a/src/__tests__/scenes/__snapshots__/SettingsScene.test.tsx.snap
+++ b/src/__tests__/scenes/__snapshots__/SettingsScene.test.tsx.snap
@@ -3243,8 +3243,7 @@ exports[`SettingsScene should render SettingsScene 1`] = `
style={
[
{
- "height": 31,
- "width": 51,
+ "alignSelf": "flex-start",
},
{
"backgroundColor": "#888888",
@@ -3443,8 +3442,7 @@ exports[`SettingsScene should render SettingsScene 1`] = `
style={
[
{
- "height": 31,
- "width": 51,
+ "alignSelf": "flex-start",
},
{
"backgroundColor": "#888888",
@@ -3643,8 +3641,7 @@ exports[`SettingsScene should render SettingsScene 1`] = `
style={
[
{
- "height": 31,
- "width": 51,
+ "alignSelf": "flex-start",
},
{
"backgroundColor": "#888888",
@@ -4446,8 +4443,7 @@ exports[`SettingsScene should render SettingsScene 1`] = `
style={
[
{
- "height": 31,
- "width": 51,
+ "alignSelf": "flex-start",
},
{
"backgroundColor": "#888888",
@@ -5249,8 +5245,7 @@ exports[`SettingsScene should render SettingsScene 1`] = `
style={
[
{
- "height": 31,
- "width": 51,
+ "alignSelf": "flex-start",
},
{
"backgroundColor": "#888888",
@@ -5503,8 +5498,7 @@ exports[`SettingsScene should render SettingsScene 1`] = `
style={
[
{
- "height": 31,
- "width": 51,
+ "alignSelf": "flex-start",
},
{
"backgroundColor": "#888888",
diff --git a/src/actions/SettingsActions.tsx b/src/actions/SettingsActions.tsx
index 588abcf9d41..88987fcb450 100644
--- a/src/actions/SettingsActions.tsx
+++ b/src/actions/SettingsActions.tsx
@@ -610,7 +610,6 @@ export async function migrateDenominationSettings(
savedDenom.multiplier !== defaultDenom.multiplier ||
savedDenom.name !== defaultDenom.name
) {
- // @ts-expect-error - DenominationSettings type allows undefined
cleanedSettings[pluginId][currencyCode] = savedDenom
} else {
needsCleanup = true
diff --git a/src/components/common/SceneWrapper.tsx b/src/components/common/SceneWrapper.tsx
index a484d35d953..78471b1dd37 100644
--- a/src/components/common/SceneWrapper.tsx
+++ b/src/components/common/SceneWrapper.tsx
@@ -203,8 +203,9 @@ function SceneWrapperComponent(props: SceneWrapperProps): React.ReactElement {
const showListener = Keyboard.addListener(showEvent, onShow)
const hideListener = Keyboard.addListener(hideEvent, onHide)
return () => {
- showListener.remove()
- hideListener.remove()
+ // These are `undefined` when running Jest:
+ showListener?.remove()
+ hideListener?.remove()
}
// No need to depend on `isClosingSv` since it's a shared value
// eslint-disable-next-line react-hooks/exhaustive-deps
diff --git a/src/components/modals/LogsModal.tsx b/src/components/modals/LogsModal.tsx
index 343573e0b0a..8d55ad0feeb 100644
--- a/src/components/modals/LogsModal.tsx
+++ b/src/components/modals/LogsModal.tsx
@@ -45,8 +45,8 @@ export const LogsModal: React.FC = props => {
)
return () => {
- keyboardDidShowListener.remove()
- keyboardDidHideListener.remove()
+ keyboardDidShowListener?.remove()
+ keyboardDidHideListener?.remove()
}
}, [])
diff --git a/src/util/borrowUtils.ts b/src/util/borrowUtils.ts
index 8c6f4d6b9bd..87774ea2066 100644
--- a/src/util/borrowUtils.ts
+++ b/src/util/borrowUtils.ts
@@ -25,7 +25,6 @@ export const useTotalFiatAmount = (
const defaultIsoFiat = useSelector(state => state.ui.settings.defaultIsoFiat)
return React.useMemo(() => {
- // @ts-expect-error
return borrowArray.reduce((total, obj) => {
const { currencyCode, denominations } =
obj.tokenId == null ? currencyInfo : allTokens[obj.tokenId] ?? {}
diff --git a/tsconfig.json b/tsconfig.json
index 6aa28d2b17c..b9173f49e10 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,7 +1,8 @@
{
- "extends": "@react-native/typescript-config/tsconfig.json",
+ "extends": "@react-native/typescript-config",
"compilerOptions": {
"allowJs": false,
- "noEmit": true
+ "noEmit": true,
+ "types": ["jest"]
}
}
diff --git a/yarn.lock b/yarn.lock
index bc4ef9c7673..a3200277bd4 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2,7 +2,7 @@
# yarn lockfile v1
-"@0no-co/graphql.web@^1.0.13", "@0no-co/graphql.web@^1.0.5", "@0no-co/graphql.web@^1.0.8":
+"@0no-co/graphql.web@^1.0.5":
version "1.2.0"
resolved "https://registry.yarnpkg.com/@0no-co/graphql.web/-/graphql.web-1.2.0.tgz#296d00581bfaaabfda1e976849d927824aaea81b"
integrity sha512-/1iHy9TTr63gE1YcR5idjx8UREz1s0kFhydf3bBLCXyqjhkIc6igAzTOx3zPifCwFR87tsh/4Pa9cNts6d2otw==
@@ -23,19 +23,12 @@
"@jridgewell/gen-mapping" "^0.3.0"
"@jridgewell/trace-mapping" "^0.3.9"
-"@babel/code-frame@7.10.4", "@babel/code-frame@~7.10.4":
- version "7.10.4"
- resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a"
- integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==
- dependencies:
- "@babel/highlight" "^7.10.4"
-
-"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.24.7", "@babel/code-frame@^7.27.1":
- version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.27.1.tgz#200f715e66d52a23b221a9435534a91cc13ad5be"
- integrity sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==
+"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.20.0", "@babel/code-frame@^7.24.7", "@babel/code-frame@^7.27.1", "@babel/code-frame@^7.28.6", "@babel/code-frame@^7.29.0":
+ version "7.29.0"
+ resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.29.0.tgz#7cd7a59f15b3cc0dcd803038f7792712a7d0b15c"
+ integrity sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==
dependencies:
- "@babel/helper-validator-identifier" "^7.27.1"
+ "@babel/helper-validator-identifier" "^7.28.5"
js-tokens "^4.0.0"
picocolors "^1.1.1"
@@ -65,13 +58,13 @@
json5 "^2.2.3"
semver "^6.3.1"
-"@babel/generator@^7.20.5", "@babel/generator@^7.25.0", "@babel/generator@^7.27.5", "@babel/generator@^7.28.0":
- version "7.28.0"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.28.0.tgz#9cc2f7bd6eb054d77dc66c2664148a0c5118acd2"
- integrity sha512-lJjzvrbEeWrhB4P3QBsH7tey117PjLZnDbLiQEKjQ/fNJTjuq4HSqgFA+UNSwZT8D7dxxbnuSBMsa1lrWzKlQg==
+"@babel/generator@^7.20.5", "@babel/generator@^7.25.0", "@babel/generator@^7.27.5", "@babel/generator@^7.28.0", "@babel/generator@^7.29.0":
+ version "7.29.1"
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.29.1.tgz#d09876290111abbb00ef962a7b83a5307fba0d50"
+ integrity sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==
dependencies:
- "@babel/parser" "^7.28.0"
- "@babel/types" "^7.28.0"
+ "@babel/parser" "^7.29.0"
+ "@babel/types" "^7.29.0"
"@jridgewell/gen-mapping" "^0.3.12"
"@jridgewell/trace-mapping" "^0.3.28"
jsesc "^3.0.2"
@@ -200,10 +193,10 @@
resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz#54da796097ab19ce67ed9f88b47bb2ec49367687"
integrity sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==
-"@babel/helper-validator-identifier@^7.22.20", "@babel/helper-validator-identifier@^7.27.1":
- version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz#a7054dcc145a967dd4dc8fee845a57c1316c9df8"
- integrity sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==
+"@babel/helper-validator-identifier@^7.27.1", "@babel/helper-validator-identifier@^7.28.5":
+ version "7.28.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz#010b6938fab7cb7df74aa2bbc06aa503b8fe5fb4"
+ integrity sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==
"@babel/helper-validator-option@^7.27.1":
version "7.27.1"
@@ -227,22 +220,12 @@
"@babel/template" "^7.27.2"
"@babel/types" "^7.28.2"
-"@babel/highlight@^7.10.4":
- version "7.24.2"
- resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.24.2.tgz#3f539503efc83d3c59080a10e6634306e0370d26"
- integrity sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==
+"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.23.9", "@babel/parser@^7.25.3", "@babel/parser@^7.28.0", "@babel/parser@^7.28.6", "@babel/parser@^7.29.0", "@babel/parser@^7.7.0":
+ version "7.29.0"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.29.0.tgz#669ef345add7d057e92b7ed15f0bac07611831b6"
+ integrity sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==
dependencies:
- "@babel/helper-validator-identifier" "^7.22.20"
- chalk "^2.4.2"
- js-tokens "^4.0.0"
- picocolors "^1.0.0"
-
-"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.0", "@babel/parser@^7.20.7", "@babel/parser@^7.23.9", "@babel/parser@^7.25.3", "@babel/parser@^7.27.2", "@babel/parser@^7.28.0", "@babel/parser@^7.7.0":
- version "7.28.0"
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.28.0.tgz#979829fbab51a29e13901e5a80713dbcb840825e"
- integrity sha512-jVZGvOxOuNSsuQuLRTh13nU0AogFlw32w/MT+LV6D3sP5WdbW61E77RnkbaO2dUvmPAYrBDJXGn5gGS6tH4j8g==
- dependencies:
- "@babel/types" "^7.28.0"
+ "@babel/types" "^7.29.0"
"@babel/plugin-bugfix-firefox-class-in-computed-class-key@^7.27.1":
version "7.27.1"
@@ -466,7 +449,7 @@
"@babel/helper-create-regexp-features-plugin" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.6"
-"@babel/plugin-transform-arrow-functions@^7.0.0-0", "@babel/plugin-transform-arrow-functions@^7.24.7", "@babel/plugin-transform-arrow-functions@^7.27.1":
+"@babel/plugin-transform-arrow-functions@7.27.1", "@babel/plugin-transform-arrow-functions@^7.24.7", "@babel/plugin-transform-arrow-functions@^7.27.1":
version "7.27.1"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.27.1.tgz#6e2061067ba3ab0266d834a9f94811196f2aba9a"
integrity sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==
@@ -505,7 +488,7 @@
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
-"@babel/plugin-transform-class-properties@^7.0.0-0", "@babel/plugin-transform-class-properties@^7.25.4", "@babel/plugin-transform-class-properties@^7.27.1":
+"@babel/plugin-transform-class-properties@7.27.1", "@babel/plugin-transform-class-properties@^7.25.4", "@babel/plugin-transform-class-properties@^7.27.1":
version "7.27.1"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.27.1.tgz#dd40a6a370dfd49d32362ae206ddaf2bb082a925"
integrity sha512-D0VcalChDMtuRvJIu3U/fwWjf8ZMykz5iZsg77Nuj821vCKI3zCyRLwRdWbsuJ/uRwZhZ002QtCqIkwC/ZkvbA==
@@ -521,17 +504,17 @@
"@babel/helper-create-class-features-plugin" "^7.27.1"
"@babel/helper-plugin-utils" "^7.27.1"
-"@babel/plugin-transform-classes@^7.0.0-0", "@babel/plugin-transform-classes@^7.25.4", "@babel/plugin-transform-classes@^7.28.0":
- version "7.28.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.28.0.tgz#12fa46cffc32a6e084011b650539e880add8a0f8"
- integrity sha512-IjM1IoJNw72AZFlj33Cu8X0q2XK/6AaVC3jQu+cgQ5lThWD5ajnuUAml80dqRmOhmPkTH8uAwnpMu9Rvj0LTRA==
+"@babel/plugin-transform-classes@7.28.4", "@babel/plugin-transform-classes@^7.25.4", "@babel/plugin-transform-classes@^7.28.0":
+ version "7.28.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.28.4.tgz#75d66175486788c56728a73424d67cbc7473495c"
+ integrity sha512-cFOlhIYPBv/iBoc+KS3M6et2XPtbT2HiCRfBXWtfpc9OAyostldxIf9YAYB6ypURBBbx+Qv6nyrLzASfJe+hBA==
dependencies:
"@babel/helper-annotate-as-pure" "^7.27.3"
"@babel/helper-compilation-targets" "^7.27.2"
"@babel/helper-globals" "^7.28.0"
"@babel/helper-plugin-utils" "^7.27.1"
"@babel/helper-replace-supers" "^7.27.1"
- "@babel/traverse" "^7.28.0"
+ "@babel/traverse" "^7.28.4"
"@babel/plugin-transform-computed-properties@^7.24.7", "@babel/plugin-transform-computed-properties@^7.27.1":
version "7.27.1"
@@ -703,7 +686,7 @@
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
-"@babel/plugin-transform-nullish-coalescing-operator@^7.0.0-0", "@babel/plugin-transform-nullish-coalescing-operator@^7.24.7", "@babel/plugin-transform-nullish-coalescing-operator@^7.27.1":
+"@babel/plugin-transform-nullish-coalescing-operator@7.27.1", "@babel/plugin-transform-nullish-coalescing-operator@^7.24.7", "@babel/plugin-transform-nullish-coalescing-operator@^7.27.1":
version "7.27.1"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.27.1.tgz#4f9d3153bf6782d73dd42785a9d22d03197bc91d"
integrity sha512-aGZh6xMo6q9vq1JGcw58lZ1Z0+i0xB2x0XaauNIUXd6O1xXc3RwoWEBlsTQrY4KQ9Jf0s5rgD6SiNkaUdJegTA==
@@ -743,7 +726,7 @@
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
-"@babel/plugin-transform-optional-chaining@^7.0.0-0", "@babel/plugin-transform-optional-chaining@^7.24.8", "@babel/plugin-transform-optional-chaining@^7.27.1":
+"@babel/plugin-transform-optional-chaining@7.27.1", "@babel/plugin-transform-optional-chaining@^7.24.8", "@babel/plugin-transform-optional-chaining@^7.27.1":
version "7.27.1"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.27.1.tgz#874ce3c4f06b7780592e946026eb76a32830454f"
integrity sha512-BQmKPPIuc8EkZgNKsv0X4bPmOoayeu4F1YCwx2/CfmDSXDbp7GnzlUH+/ul5VGfRg1AoFPsrIThlEBj2xb4CAg==
@@ -863,7 +846,7 @@
babel-plugin-polyfill-regenerator "^0.6.5"
semver "^6.3.1"
-"@babel/plugin-transform-shorthand-properties@^7.0.0-0", "@babel/plugin-transform-shorthand-properties@^7.24.7", "@babel/plugin-transform-shorthand-properties@^7.27.1":
+"@babel/plugin-transform-shorthand-properties@7.27.1", "@babel/plugin-transform-shorthand-properties@^7.24.7", "@babel/plugin-transform-shorthand-properties@^7.27.1":
version "7.27.1"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.27.1.tgz#532abdacdec87bfee1e0ef8e2fcdee543fe32b90"
integrity sha512-N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ==
@@ -885,7 +868,7 @@
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
-"@babel/plugin-transform-template-literals@^7.0.0-0", "@babel/plugin-transform-template-literals@^7.27.1":
+"@babel/plugin-transform-template-literals@7.27.1", "@babel/plugin-transform-template-literals@^7.27.1":
version "7.27.1"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.27.1.tgz#1a0eb35d8bb3e6efc06c9fd40eb0bcef548328b8"
integrity sha512-fBJKiV7F2DxZUkg5EtHKXQdbsbURW3DZKQUWphDum0uRP6eHGGa/He9mc0mypL680pb+e/lDIthRohlv8NCHkg==
@@ -925,7 +908,7 @@
"@babel/helper-create-regexp-features-plugin" "^7.27.1"
"@babel/helper-plugin-utils" "^7.27.1"
-"@babel/plugin-transform-unicode-regex@^7.0.0-0", "@babel/plugin-transform-unicode-regex@^7.24.7", "@babel/plugin-transform-unicode-regex@^7.27.1":
+"@babel/plugin-transform-unicode-regex@7.27.1", "@babel/plugin-transform-unicode-regex@^7.24.7", "@babel/plugin-transform-unicode-regex@^7.27.1":
version "7.27.1"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.27.1.tgz#25948f5c395db15f609028e370667ed8bae9af97"
integrity sha512-xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw==
@@ -1038,7 +1021,7 @@
"@babel/plugin-transform-react-jsx-development" "^7.27.1"
"@babel/plugin-transform-react-pure-annotations" "^7.27.1"
-"@babel/preset-typescript@^7.16.7", "@babel/preset-typescript@^7.18.6", "@babel/preset-typescript@^7.23.0":
+"@babel/preset-typescript@7.27.1", "@babel/preset-typescript@^7.18.6", "@babel/preset-typescript@^7.23.0":
version "7.27.1"
resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.27.1.tgz#190742a6428d282306648a55b0529b561484f912"
integrity sha512-l7WfQfX0WK4M0v2RudjuQK4u99BS6yLHYEmdtVPP7lKV013zr9DygFuWNlnbvQ9LR+LS0Egz/XAvGx5U9MX0fQ==
@@ -1054,14 +1037,14 @@
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.28.2.tgz#2ae5a9d51cc583bd1f5673b3bb70d6d819682473"
integrity sha512-KHp2IflsnGywDjBWDkR9iEqiWSpc8GIi0lgTT3mOElT0PP1tG26P4tmFI2YvAdzgq9RGyoHZQEIEdZy6Ec5xCA==
-"@babel/template@^7.25.0", "@babel/template@^7.27.1", "@babel/template@^7.27.2", "@babel/template@^7.3.3":
- version "7.27.2"
- resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.27.2.tgz#fa78ceed3c4e7b63ebf6cb39e5852fca45f6809d"
- integrity sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==
+"@babel/template@^7.25.0", "@babel/template@^7.27.1", "@babel/template@^7.27.2", "@babel/template@^7.28.6", "@babel/template@^7.3.3":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.28.6.tgz#0e7e56ecedb78aeef66ce7972b082fce76a23e57"
+ integrity sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==
dependencies:
- "@babel/code-frame" "^7.27.1"
- "@babel/parser" "^7.27.2"
- "@babel/types" "^7.27.1"
+ "@babel/code-frame" "^7.28.6"
+ "@babel/parser" "^7.28.6"
+ "@babel/types" "^7.28.6"
"@babel/traverse--for-generate-function-map@npm:@babel/traverse@^7.25.3":
version "7.28.0"
@@ -1076,26 +1059,26 @@
"@babel/types" "^7.28.0"
debug "^4.3.1"
-"@babel/traverse@^7.25.3", "@babel/traverse@^7.27.1", "@babel/traverse@^7.27.3", "@babel/traverse@^7.28.0", "@babel/traverse@^7.7.0":
- version "7.28.0"
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.28.0.tgz#518aa113359b062042379e333db18380b537e34b"
- integrity sha512-mGe7UK5wWyh0bKRfupsUchrQGqvDbZDbKJw+kcRGSmdHVYrv+ltd0pnpDTVpiTqnaBru9iEvA8pz8W46v0Amwg==
+"@babel/traverse@^7.25.3", "@babel/traverse@^7.27.1", "@babel/traverse@^7.27.3", "@babel/traverse@^7.28.0", "@babel/traverse@^7.28.4", "@babel/traverse@^7.7.0":
+ version "7.29.0"
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.29.0.tgz#f323d05001440253eead3c9c858adbe00b90310a"
+ integrity sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==
dependencies:
- "@babel/code-frame" "^7.27.1"
- "@babel/generator" "^7.28.0"
+ "@babel/code-frame" "^7.29.0"
+ "@babel/generator" "^7.29.0"
"@babel/helper-globals" "^7.28.0"
- "@babel/parser" "^7.28.0"
- "@babel/template" "^7.27.2"
- "@babel/types" "^7.28.0"
+ "@babel/parser" "^7.29.0"
+ "@babel/template" "^7.28.6"
+ "@babel/types" "^7.29.0"
debug "^4.3.1"
-"@babel/types@^7.0.0", "@babel/types@^7.20.0", "@babel/types@^7.20.7", "@babel/types@^7.21.3", "@babel/types@^7.25.2", "@babel/types@^7.27.1", "@babel/types@^7.27.3", "@babel/types@^7.28.0", "@babel/types@^7.28.2", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4", "@babel/types@^7.7.0":
- version "7.28.2"
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.28.2.tgz#da9db0856a9a88e0a13b019881d7513588cf712b"
- integrity sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==
+"@babel/types@^7.0.0", "@babel/types@^7.20.7", "@babel/types@^7.21.3", "@babel/types@^7.25.2", "@babel/types@^7.26.0", "@babel/types@^7.27.1", "@babel/types@^7.27.3", "@babel/types@^7.28.0", "@babel/types@^7.28.2", "@babel/types@^7.28.6", "@babel/types@^7.29.0", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4", "@babel/types@^7.7.0":
+ version "7.29.0"
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.29.0.tgz#9f5b1e838c446e72cf3cd4b918152b8c605e37c7"
+ integrity sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==
dependencies:
"@babel/helper-string-parser" "^7.27.1"
- "@babel/helper-validator-identifier" "^7.27.1"
+ "@babel/helper-validator-identifier" "^7.28.5"
"@bcoe/v8-coverage@^0.2.3":
version "0.2.3"
@@ -1321,10 +1304,10 @@
"@emnapi/wasi-threads" "1.0.2"
tslib "^2.4.0"
-"@emnapi/runtime@^1.4.3":
- version "1.4.3"
- resolved "https://registry.yarnpkg.com/@emnapi/runtime/-/runtime-1.4.3.tgz#c0564665c80dc81c448adac23f9dfbed6c838f7d"
- integrity sha512-pBPWdu6MLKROBX05wSNKcNb++m5Er+KQ9QkB+WVM+pW2Kx9hoSrVTnu3BdkI5eBLZoKu/J6mW/B6i6bJB2ytXQ==
+"@emnapi/runtime@^1.4.3", "@emnapi/runtime@^1.7.0":
+ version "1.8.1"
+ resolved "https://registry.yarnpkg.com/@emnapi/runtime/-/runtime-1.8.1.tgz#550fa7e3c0d49c5fb175a116e8cd70614f9a22a5"
+ integrity sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg==
dependencies:
tslib "^2.4.0"
@@ -1827,31 +1810,31 @@
"@ethersproject/properties" "^5.7.0"
"@ethersproject/strings" "^5.7.0"
-"@expo/cli@0.24.20":
- version "0.24.20"
- resolved "https://registry.yarnpkg.com/@expo/cli/-/cli-0.24.20.tgz#c9a3ad7eb93b0d6a39da20ef8804976b65838790"
- integrity sha512-uF1pOVcd+xizNtVTuZqNGzy7I6IJon5YMmQidsURds1Ww96AFDxrR/NEACqeATNAmY60m8wy1VZZpSg5zLNkpw==
- dependencies:
- "@0no-co/graphql.web" "^1.0.8"
- "@babel/runtime" "^7.20.0"
- "@expo/code-signing-certificates" "^0.0.5"
- "@expo/config" "~11.0.13"
- "@expo/config-plugins" "~10.1.2"
- "@expo/devcert" "^1.1.2"
- "@expo/env" "~1.0.7"
- "@expo/image-utils" "^0.7.6"
- "@expo/json-file" "^9.1.5"
- "@expo/metro-config" "~0.20.17"
- "@expo/osascript" "^2.2.5"
- "@expo/package-manager" "^1.8.6"
- "@expo/plist" "^0.3.5"
- "@expo/prebuild-config" "^9.0.11"
+"@expo/cli@55.0.6":
+ version "55.0.6"
+ resolved "https://registry.yarnpkg.com/@expo/cli/-/cli-55.0.6.tgz#66c41b3cb5e84c739e1b1c99bf67acb748d8faaa"
+ integrity sha512-8FwxYr3Kqsdf+28iascenHZOf9VOEcqGk6e6jYg8YaG0C/ibIMpg/fL59cYOtOHiGNnjQAFTg3NW37qJNG656Q==
+ dependencies:
+ "@expo/code-signing-certificates" "^0.0.6"
+ "@expo/config" "~55.0.4"
+ "@expo/config-plugins" "~55.0.4"
+ "@expo/devcert" "^1.2.1"
+ "@expo/env" "~2.0.11"
+ "@expo/image-utils" "^0.8.12"
+ "@expo/json-file" "^10.0.12"
+ "@expo/log-box" "55.0.5"
+ "@expo/metro" "~54.2.0"
+ "@expo/metro-config" "~55.0.4"
+ "@expo/osascript" "^2.4.2"
+ "@expo/package-manager" "^1.10.3"
+ "@expo/plist" "^0.5.2"
+ "@expo/prebuild-config" "^55.0.4"
+ "@expo/router-server" "^55.0.5"
+ "@expo/schema-utils" "^55.0.2"
"@expo/spawn-async" "^1.7.2"
"@expo/ws-tunnel" "^1.0.1"
- "@expo/xcpretty" "^4.3.0"
- "@react-native/dev-middleware" "0.79.5"
- "@urql/core" "^5.0.6"
- "@urql/exchange-retry" "^1.3.0"
+ "@expo/xcpretty" "^4.4.0"
+ "@react-native/dev-middleware" "0.83.1"
accepts "^1.3.8"
arg "^5.0.2"
better-opn "~3.0.2"
@@ -1862,103 +1845,110 @@
compression "^1.7.4"
connect "^3.7.0"
debug "^4.3.4"
+ dnssd-advertise "^1.1.1"
env-editor "^0.4.1"
- freeport-async "^2.0.0"
+ expo-server "^55.0.3"
+ fetch-nodeshim "^0.4.4"
getenv "^2.0.0"
- glob "^10.4.2"
+ glob "^13.0.0"
lan-network "^0.1.6"
minimatch "^9.0.0"
- node-forge "^1.3.1"
+ multitars "^0.2.3"
+ node-forge "^1.3.3"
npm-package-arg "^11.0.0"
ora "^3.4.0"
picomatch "^3.0.1"
- pretty-bytes "^5.6.0"
pretty-format "^29.7.0"
progress "^2.0.3"
prompts "^2.3.2"
qrcode-terminal "0.11.0"
require-from-string "^2.0.2"
- requireg "^0.2.2"
- resolve "^1.22.2"
resolve-from "^5.0.0"
- resolve.exports "^2.0.3"
semver "^7.6.0"
send "^0.19.0"
slugify "^1.3.4"
source-map-support "~0.5.21"
stacktrace-parser "^0.1.10"
structured-headers "^0.4.1"
- tar "^7.4.3"
terminal-link "^2.1.1"
- undici "^6.18.2"
wrap-ansi "^7.0.0"
ws "^8.12.1"
+ zod "^3.25.76"
-"@expo/code-signing-certificates@^0.0.5":
- version "0.0.5"
- resolved "https://registry.yarnpkg.com/@expo/code-signing-certificates/-/code-signing-certificates-0.0.5.tgz#a693ff684fb20c4725dade4b88a6a9f96b02496c"
- integrity sha512-BNhXkY1bblxKZpltzAx98G2Egj9g1Q+JRcvR7E99DOj862FTCX+ZPsAUtPTr7aHxwtrL7+fL3r0JSmM9kBm+Bw==
+"@expo/code-signing-certificates@^0.0.6":
+ version "0.0.6"
+ resolved "https://registry.yarnpkg.com/@expo/code-signing-certificates/-/code-signing-certificates-0.0.6.tgz#6b7b22830cb69c77a45e357c2f3aa7ab436ac772"
+ integrity sha512-iNe0puxwBNEcuua9gmTGzq+SuMDa0iATai1FlFTMHJ/vUmKvN/V//drXoLJkVb5i5H3iE/n/qIJxyoBnXouD0w==
dependencies:
- node-forge "^1.2.1"
- nullthrows "^1.1.1"
+ node-forge "^1.3.3"
-"@expo/config-plugins@^9.0.0 || ^10.0.0", "@expo/config-plugins@~10.1.2":
- version "10.1.2"
- resolved "https://registry.yarnpkg.com/@expo/config-plugins/-/config-plugins-10.1.2.tgz#6efa256a3fa2fca116eeb5bef8b22b089e287282"
- integrity sha512-IMYCxBOcnuFStuK0Ay+FzEIBKrwW8OVUMc65+v0+i7YFIIe8aL342l7T4F8lR4oCfhXn7d6M5QPgXvjtc/gAcw==
+"@expo/config-plugins@*", "@expo/config-plugins@~55.0.4":
+ version "55.0.4"
+ resolved "https://registry.yarnpkg.com/@expo/config-plugins/-/config-plugins-55.0.4.tgz#447de2e8286cc4601cc5d66790a8f8604c5e127e"
+ integrity sha512-7FBviIFvjVDxH3MKLY5fl+2hz4mZ1t7jcM1HXiFNEA2oNK5jD9TJtjfd+fnPGPTFDcE+aabCDWBHQmds3v1/Tw==
dependencies:
- "@expo/config-types" "^53.0.5"
- "@expo/json-file" "~9.1.5"
- "@expo/plist" "^0.3.5"
+ "@expo/config-types" "^55.0.4"
+ "@expo/json-file" "~10.0.12"
+ "@expo/plist" "^0.5.2"
"@expo/sdk-runtime-versions" "^1.0.0"
chalk "^4.1.2"
debug "^4.3.5"
getenv "^2.0.0"
- glob "^10.4.2"
+ glob "^13.0.0"
resolve-from "^5.0.0"
semver "^7.5.4"
- slash "^3.0.0"
slugify "^1.6.6"
xcode "^3.0.1"
xml2js "0.6.0"
-"@expo/config-types@^53.0.5":
- version "53.0.5"
- resolved "https://registry.yarnpkg.com/@expo/config-types/-/config-types-53.0.5.tgz#bba7e0712c2c5b1d8963348d68ea96339f858db4"
- integrity sha512-kqZ0w44E+HEGBjy+Lpyn0BVL5UANg/tmNixxaRMLS6nf37YsDrLk2VMAmeKMMk5CKG0NmOdVv3ngeUjRQMsy9g==
+"@expo/config-types@^55.0.4":
+ version "55.0.4"
+ resolved "https://registry.yarnpkg.com/@expo/config-types/-/config-types-55.0.4.tgz#3e2b30c1110eaddb6eb2427f1e81c5762da6aa35"
+ integrity sha512-bZZOqScX2WyOZT3ThpqKr7h7Dl81Qm0OUyVxmuBbSb7cOjXy5kgwFywItsPdvc9cjeXWjJf7ESUj/kNsKfjjXw==
-"@expo/config@~11.0.12", "@expo/config@~11.0.13":
- version "11.0.13"
- resolved "https://registry.yarnpkg.com/@expo/config/-/config-11.0.13.tgz#1cc490a5f667e0129db5f98755f6bc4d8921edb2"
- integrity sha512-TnGb4u/zUZetpav9sx/3fWK71oCPaOjZHoVED9NaEncktAd0Eonhq5NUghiJmkUGt3gGSjRAEBXiBbbY9/B1LA==
+"@expo/config@~55.0.4":
+ version "55.0.4"
+ resolved "https://registry.yarnpkg.com/@expo/config/-/config-55.0.4.tgz#c1281e958508d100446c1f13567493323b77dce8"
+ integrity sha512-DzLYn211jhUbMY3o3m682DC+J7lXTOAW4DiMQta+/klbIMRSA3EeSPpJcmciFGk5FRff1e6NY/gF+wu1Ok6kxg==
dependencies:
- "@babel/code-frame" "~7.10.4"
- "@expo/config-plugins" "~10.1.2"
- "@expo/config-types" "^53.0.5"
- "@expo/json-file" "^9.1.5"
+ "@babel/code-frame" "^7.20.0"
+ "@expo/config-plugins" "~55.0.4"
+ "@expo/config-types" "^55.0.4"
+ "@expo/json-file" "^10.0.12"
deepmerge "^4.3.1"
getenv "^2.0.0"
- glob "^10.4.2"
+ glob "^13.0.0"
require-from-string "^2.0.2"
resolve-from "^5.0.0"
resolve-workspace-root "^2.0.0"
semver "^7.6.0"
slugify "^1.3.4"
- sucrase "3.35.0"
+ sucrase "~3.35.1"
-"@expo/devcert@^1.1.2":
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/@expo/devcert/-/devcert-1.2.0.tgz#7b32c2d959e36baaa0649433395e5170c808b44f"
- integrity sha512-Uilcv3xGELD5t/b0eM4cxBFEKQRIivB3v7i+VhWLV/gL98aw810unLKKJbGAxAIhY6Ipyz8ChWibFsKFXYwstA==
+"@expo/devcert@^1.2.1":
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/@expo/devcert/-/devcert-1.2.1.tgz#1a687985bea1670866e54d5ba7c0ced963c354f4"
+ integrity sha512-qC4eaxmKMTmJC2ahwyui6ud8f3W60Ss7pMkpBq40Hu3zyiAaugPXnZ24145U7K36qO9UHdZUVxsCvIpz2RYYCA==
dependencies:
"@expo/sudo-prompt" "^9.3.1"
debug "^3.1.0"
- glob "^10.4.2"
-"@expo/env@~1.0.7":
- version "1.0.7"
- resolved "https://registry.yarnpkg.com/@expo/env/-/env-1.0.7.tgz#6ee604e158d0f140fc2be711b9a7cb3adc341889"
- integrity sha512-qSTEnwvuYJ3umapO9XJtrb1fAqiPlmUUg78N0IZXXGwQRt+bkp0OBls+Y5Mxw/Owj8waAM0Z3huKKskRADR5ow==
+"@expo/devtools@55.0.2":
+ version "55.0.2"
+ resolved "https://registry.yarnpkg.com/@expo/devtools/-/devtools-55.0.2.tgz#ef3a6d4beda23d7a503a43155f14f2d2fb95bee6"
+ integrity sha512-4VsFn9MUriocyuhyA+ycJP3TJhUsOFHDc270l9h3LhNpXMf6wvIdGcA0QzXkZtORXmlDybWXRP2KT1k36HcQkA==
+ dependencies:
+ chalk "^4.1.2"
+
+"@expo/dom-webview@^55.0.2":
+ version "55.0.2"
+ resolved "https://registry.yarnpkg.com/@expo/dom-webview/-/dom-webview-55.0.2.tgz#8384e827438e1cb946f6a9b32d93c42361d5ebd7"
+ integrity sha512-U+0tHSplJ+R+Uj3/wPtm82lzptOhKEPse5A+hKHrUIEt+1tPDxwAuxBZMi8xs8UqByMAz7C18BzS58LuWphA3A==
+
+"@expo/env@~2.0.11":
+ version "2.0.11"
+ resolved "https://registry.yarnpkg.com/@expo/env/-/env-2.0.11.tgz#3a10d9142b1833566bdfb39de1c062f7a8b8ac38"
+ integrity sha512-xV+ps6YCW7XIPVUwFVCRN2nox09dnRwy8uIjwHWTODu0zFw4kp4omnVkl0OOjuu2XOe7tdgAHxikrkJt9xB/7Q==
dependencies:
chalk "^4.0.0"
debug "^4.3.4"
@@ -1966,28 +1956,26 @@
dotenv-expand "~11.0.6"
getenv "^2.0.0"
-"@expo/fingerprint@0.13.4":
- version "0.13.4"
- resolved "https://registry.yarnpkg.com/@expo/fingerprint/-/fingerprint-0.13.4.tgz#380762d68e3d55718331ede813e24b8760ebb2b5"
- integrity sha512-MYfPYBTMfrrNr07DALuLhG6EaLVNVrY/PXjEzsjWdWE4ZFn0yqI0IdHNkJG7t1gePT8iztHc7qnsx+oo/rDo6w==
+"@expo/fingerprint@0.16.3":
+ version "0.16.3"
+ resolved "https://registry.yarnpkg.com/@expo/fingerprint/-/fingerprint-0.16.3.tgz#9900956c8337cb94b48f4be0e77455d27405175d"
+ integrity sha512-abm2rm/3Tg1gPihTyDcy7kOWnjPdtpWHSI/VpWwLaAmqqa5hFASBcr8ge58ZEWsNiozUJbfflqOp5oTQqoumAA==
dependencies:
"@expo/spawn-async" "^1.7.2"
arg "^5.0.2"
chalk "^4.1.2"
debug "^4.3.4"
- find-up "^5.0.0"
getenv "^2.0.0"
- glob "^10.4.2"
+ glob "^13.0.0"
ignore "^5.3.1"
minimatch "^9.0.0"
- p-limit "^3.1.0"
resolve-from "^5.0.0"
semver "^7.6.0"
-"@expo/image-utils@^0.7.6":
- version "0.7.6"
- resolved "https://registry.yarnpkg.com/@expo/image-utils/-/image-utils-0.7.6.tgz#b8442bef770e1c7b39997d57f666bffeeced0a7a"
- integrity sha512-GKnMqC79+mo/1AFrmAcUcGfbsXXTRqOMNS1umebuevl3aaw+ztsYEFEiuNhHZW7PQ3Xs3URNT513ZxKhznDscw==
+"@expo/image-utils@^0.8.12":
+ version "0.8.12"
+ resolved "https://registry.yarnpkg.com/@expo/image-utils/-/image-utils-0.8.12.tgz#56e34b9555745ad4d11c972fe0d1ce71c7c64c41"
+ integrity sha512-3KguH7kyKqq7pNwLb9j6BBdD/bjmNwXZG/HPWT6GWIXbwrvAJt2JNyYTP5agWJ8jbbuys1yuCzmkX+TU6rmI7A==
dependencies:
"@expo/spawn-async" "^1.7.2"
chalk "^4.0.0"
@@ -1996,87 +1984,135 @@
parse-png "^2.1.0"
resolve-from "^5.0.0"
semver "^7.6.0"
- temp-dir "~2.0.0"
- unique-string "~2.0.0"
-"@expo/json-file@^9.1.5", "@expo/json-file@~9.1.5":
- version "9.1.5"
- resolved "https://registry.yarnpkg.com/@expo/json-file/-/json-file-9.1.5.tgz#7d7b2dc4990dc2c2de69a571191aba984b7fb7ed"
- integrity sha512-prWBhLUlmcQtvN6Y7BpW2k9zXGd3ySa3R6rAguMJkp1z22nunLN64KYTUWfijFlprFoxm9r2VNnGkcbndAlgKA==
+"@expo/json-file@^10.0.12", "@expo/json-file@~10.0.12":
+ version "10.0.12"
+ resolved "https://registry.yarnpkg.com/@expo/json-file/-/json-file-10.0.12.tgz#411216996ab6df6765d463de22283b3f30e49ccb"
+ integrity sha512-inbDycp1rMAelAofg7h/mMzIe+Owx6F7pur3XdQ3EPTy00tme+4P6FWgHKUcjN8dBSrnbRNpSyh5/shzHyVCyQ==
dependencies:
- "@babel/code-frame" "~7.10.4"
+ "@babel/code-frame" "^7.20.0"
json5 "^2.2.3"
-"@expo/metro-config@0.20.17", "@expo/metro-config@~0.20.17":
- version "0.20.17"
- resolved "https://registry.yarnpkg.com/@expo/metro-config/-/metro-config-0.20.17.tgz#3be75fd6b93081c8a9f0022dcfa9e5b767334902"
- integrity sha512-lpntF2UZn5bTwrPK6guUv00Xv3X9mkN3YYla+IhEHiYXWyG7WKOtDU0U4KR8h3ubkZ6SPH3snDyRyAzMsWtZFA==
+"@expo/local-build-cache-provider@55.0.3":
+ version "55.0.3"
+ resolved "https://registry.yarnpkg.com/@expo/local-build-cache-provider/-/local-build-cache-provider-55.0.3.tgz#3ddcd51dac500df9a42c1fb01a9723e0223e12a9"
+ integrity sha512-wdpqOSpaqsY5CZ4rnC49U3jsdRaOfzbl6MlD7oSRH2slKmVoD/CiHH+9x9uuLsp65mGTp0a+FMUL6JfuvxRPIw==
dependencies:
+ "@expo/config" "~55.0.4"
+ chalk "^4.1.2"
+
+"@expo/log-box@55.0.5":
+ version "55.0.5"
+ resolved "https://registry.yarnpkg.com/@expo/log-box/-/log-box-55.0.5.tgz#352a6b60f8f6960b33cdee86003b3c543c94c2f4"
+ integrity sha512-u0TV3mjCbBDClsk0PdZxLpZGov2LC93mMI+mXktomi1vbFr1xbOwkxFcy9dVAynC7ddv5F2g8DxR1MjIOK0QAw==
+ dependencies:
+ "@expo/dom-webview" "^55.0.2"
+ anser "^1.4.9"
+ stacktrace-parser "^0.1.10"
+
+"@expo/metro-config@55.0.4", "@expo/metro-config@~55.0.4":
+ version "55.0.4"
+ resolved "https://registry.yarnpkg.com/@expo/metro-config/-/metro-config-55.0.4.tgz#b6416b39e473946a03bb07dd4be372db3f109255"
+ integrity sha512-cN5LqwvLtLUwvEkboZvWFYUZjAZheoJcqWzFQ/YCF9DG2eUVBfQHlcdws/rvGxQKhCwT0tu1eqJKxUVSid09jA==
+ dependencies:
+ "@babel/code-frame" "^7.20.0"
"@babel/core" "^7.20.0"
"@babel/generator" "^7.20.5"
- "@babel/parser" "^7.20.0"
- "@babel/types" "^7.20.0"
- "@expo/config" "~11.0.12"
- "@expo/env" "~1.0.7"
- "@expo/json-file" "~9.1.5"
+ "@expo/config" "~55.0.4"
+ "@expo/env" "~2.0.11"
+ "@expo/json-file" "~10.0.12"
+ "@expo/metro" "~54.2.0"
"@expo/spawn-async" "^1.7.2"
+ browserslist "^4.25.0"
chalk "^4.1.0"
debug "^4.3.2"
dotenv "~16.4.5"
dotenv-expand "~11.0.6"
getenv "^2.0.0"
- glob "^10.4.2"
+ glob "^13.0.0"
+ hermes-parser "^0.29.1"
jsc-safe-url "^0.2.4"
- lightningcss "~1.27.0"
+ lightningcss "^1.30.1"
minimatch "^9.0.0"
postcss "~8.4.32"
resolve-from "^5.0.0"
-"@expo/osascript@^2.2.5":
- version "2.2.5"
- resolved "https://registry.yarnpkg.com/@expo/osascript/-/osascript-2.2.5.tgz#49c5537e25e2164961f615249c4329061e4f9155"
- integrity sha512-Bpp/n5rZ0UmpBOnl7Li3LtM7la0AR3H9NNesqL+ytW5UiqV/TbonYW3rDZY38u4u/lG7TnYflVIVQPD+iqZJ5w==
+"@expo/metro@~54.2.0":
+ version "54.2.0"
+ resolved "https://registry.yarnpkg.com/@expo/metro/-/metro-54.2.0.tgz#6ecf4a77ae7553b73daca4206854728de76c854d"
+ integrity sha512-h68TNZPGsk6swMmLm9nRSnE2UXm48rWwgcbtAHVMikXvbxdS41NDHHeqg1rcQ9AbznDRp6SQVC2MVpDnsRKU1w==
+ dependencies:
+ metro "0.83.3"
+ metro-babel-transformer "0.83.3"
+ metro-cache "0.83.3"
+ metro-cache-key "0.83.3"
+ metro-config "0.83.3"
+ metro-core "0.83.3"
+ metro-file-map "0.83.3"
+ metro-minify-terser "0.83.3"
+ metro-resolver "0.83.3"
+ metro-runtime "0.83.3"
+ metro-source-map "0.83.3"
+ metro-symbolicate "0.83.3"
+ metro-transform-plugins "0.83.3"
+ metro-transform-worker "0.83.3"
+
+"@expo/osascript@^2.4.2":
+ version "2.4.2"
+ resolved "https://registry.yarnpkg.com/@expo/osascript/-/osascript-2.4.2.tgz#fe341cff1eb2c939da43cf58ade5504c8a5d77ca"
+ integrity sha512-/XP7PSYF2hzOZzqfjgkoWtllyeTN8dW3aM4P6YgKcmmPikKL5FdoyQhti4eh6RK5a5VrUXJTOlTNIpIHsfB5Iw==
dependencies:
"@expo/spawn-async" "^1.7.2"
- exec-async "^2.2.0"
-"@expo/package-manager@^1.8.6":
- version "1.8.6"
- resolved "https://registry.yarnpkg.com/@expo/package-manager/-/package-manager-1.8.6.tgz#8cb0760702784ede69a0968b26f435ef56d84045"
- integrity sha512-gcdICLuL+nHKZagPIDC5tX8UoDDB8vNA5/+SaQEqz8D+T2C4KrEJc2Vi1gPAlDnKif834QS6YluHWyxjk0yZlQ==
+"@expo/package-manager@^1.10.3":
+ version "1.10.3"
+ resolved "https://registry.yarnpkg.com/@expo/package-manager/-/package-manager-1.10.3.tgz#151fafc1c30de3e75df78f7c0424915210779288"
+ integrity sha512-ZuXiK/9fCrIuLjPSe1VYmfp0Sa85kCMwd8QQpgyi5ufppYKRtLBg14QOgUqj8ZMbJTxE0xqzd0XR7kOs3vAK9A==
dependencies:
- "@expo/json-file" "^9.1.5"
+ "@expo/json-file" "^10.0.12"
"@expo/spawn-async" "^1.7.2"
chalk "^4.0.0"
npm-package-arg "^11.0.0"
ora "^3.4.0"
resolve-workspace-root "^2.0.0"
-"@expo/plist@^0.3.5":
- version "0.3.5"
- resolved "https://registry.yarnpkg.com/@expo/plist/-/plist-0.3.5.tgz#11913c64951936101529cb26d7260ef16970fc31"
- integrity sha512-9RYVU1iGyCJ7vWfg3e7c/NVyMFs8wbl+dMWZphtFtsqyN9zppGREU3ctlD3i8KUE0sCUTVnLjCWr+VeUIDep2g==
+"@expo/plist@^0.5.2":
+ version "0.5.2"
+ resolved "https://registry.yarnpkg.com/@expo/plist/-/plist-0.5.2.tgz#5bfc81cf09c1c0513a31d7e5cabf85b2ac4d1d71"
+ integrity sha512-o4xdVdBpe4aTl3sPMZ2u3fJH4iG1I768EIRk1xRZP+GaFI93MaR3JvoFibYqxeTmLQ1p1kNEVqylfUjezxx45g==
dependencies:
"@xmldom/xmldom" "^0.8.8"
- base64-js "^1.2.3"
+ base64-js "^1.5.1"
xmlbuilder "^15.1.1"
-"@expo/prebuild-config@^9.0.11":
- version "9.0.11"
- resolved "https://registry.yarnpkg.com/@expo/prebuild-config/-/prebuild-config-9.0.11.tgz#0cc3039522dafd04102163f02ee596b5683d9d2b"
- integrity sha512-0DsxhhixRbCCvmYskBTq8czsU0YOBsntYURhWPNpkl0IPVpeP9haE5W4OwtHGzXEbmHdzaoDwNmVcWjS/mqbDw==
- dependencies:
- "@expo/config" "~11.0.13"
- "@expo/config-plugins" "~10.1.2"
- "@expo/config-types" "^53.0.5"
- "@expo/image-utils" "^0.7.6"
- "@expo/json-file" "^9.1.5"
- "@react-native/normalize-colors" "0.79.5"
+"@expo/prebuild-config@^55.0.4":
+ version "55.0.4"
+ resolved "https://registry.yarnpkg.com/@expo/prebuild-config/-/prebuild-config-55.0.4.tgz#ec43f51f66a1ef7a470dadced52aae0e4b214342"
+ integrity sha512-1bp/S+w7KRRjegN6u0/jn2cHwzcAP1QbnA8DxW3ts1EdTIZee1X8bmR57JzRzGLuU3pTPV+gLYdUoycTiYtPHg==
+ dependencies:
+ "@expo/config" "~55.0.4"
+ "@expo/config-plugins" "~55.0.4"
+ "@expo/config-types" "^55.0.4"
+ "@expo/image-utils" "^0.8.12"
+ "@expo/json-file" "^10.0.12"
+ "@react-native/normalize-colors" "0.83.1"
debug "^4.3.1"
resolve-from "^5.0.0"
semver "^7.6.0"
xml2js "0.6.0"
+"@expo/router-server@^55.0.5":
+ version "55.0.5"
+ resolved "https://registry.yarnpkg.com/@expo/router-server/-/router-server-55.0.5.tgz#e6e2a3e54bbd8ccccd53c1156296eb971371594b"
+ integrity sha512-b23SgYujpeA0qHu2lZ/H1XXuvc4TaBo92VikPUZ48YtETXMlRnccPv5Rp7N2rS7Na51wOqBEv9auPihk3d8N+A==
+ dependencies:
+ debug "^4.3.4"
+
+"@expo/schema-utils@^55.0.2":
+ version "55.0.2"
+ resolved "https://registry.yarnpkg.com/@expo/schema-utils/-/schema-utils-55.0.2.tgz#f45be98fe57e4dc87c4fc36c7ac532672e0ecf86"
+ integrity sha512-QZ5WKbJOWkCrMq0/kfhV9ry8te/OaS34YgLVpG8u9y2gix96TlpRTbxM/YATjNcUR2s4fiQmPCOxkGtog4i37g==
+
"@expo/sdk-runtime-versions@^1.0.0":
version "1.0.0"
resolved "https://registry.yarnpkg.com/@expo/sdk-runtime-versions/-/sdk-runtime-versions-1.0.0.tgz#d7ebd21b19f1c6b0395e50d78da4416941c57f7c"
@@ -2094,24 +2130,23 @@
resolved "https://registry.yarnpkg.com/@expo/sudo-prompt/-/sudo-prompt-9.3.2.tgz#0fd2813402a42988e49145cab220e25bea74b308"
integrity sha512-HHQigo3rQWKMDzYDLkubN5WQOYXJJE2eNqIQC2axC2iO3mHdwnIR7FgZVvHWtBwAdzBgAP0ECp8KqS8TiMKvgw==
-"@expo/vector-icons@^14.0.0":
- version "14.1.0"
- resolved "https://registry.yarnpkg.com/@expo/vector-icons/-/vector-icons-14.1.0.tgz#d3dddad8b6ea60502e0fe5485b86751827606ce4"
- integrity sha512-7T09UE9h8QDTsUeMGymB4i+iqvtEeaO5VvUjryFB4tugDTG/bkzViWA74hm5pfjjDEhYMXWaX112mcvhccmIwQ==
+"@expo/vector-icons@^15.0.2":
+ version "15.0.3"
+ resolved "https://registry.yarnpkg.com/@expo/vector-icons/-/vector-icons-15.0.3.tgz#12c38d4e6cc927dd0500e4591ac00672a8909748"
+ integrity sha512-SBUyYKphmlfUBqxSfDdJ3jAdEVSALS2VUPOUyqn48oZmb2TL/O7t7/PQm5v4NQujYEPLPMTLn9KVw6H7twwbTA==
"@expo/ws-tunnel@^1.0.1":
version "1.0.6"
resolved "https://registry.yarnpkg.com/@expo/ws-tunnel/-/ws-tunnel-1.0.6.tgz#92b70e7264ad42ea07f28a20f2f540b91d07bdd9"
integrity sha512-nDRbLmSrJar7abvUjp3smDwH8HcbZcoOEa5jVPUv9/9CajgmWw20JNRwTuBRzWIWIkEJDkz20GoNA+tSwUqk0Q==
-"@expo/xcpretty@^4.3.0":
- version "4.3.2"
- resolved "https://registry.yarnpkg.com/@expo/xcpretty/-/xcpretty-4.3.2.tgz#12dba1295167a9c8dde4be783d74f7e81648ca5d"
- integrity sha512-ReZxZ8pdnoI3tP/dNnJdnmAk7uLT4FjsKDGW7YeDdvdOMz2XCQSmSCM9IWlrXuWtMF9zeSB6WJtEhCQ41gQOfw==
+"@expo/xcpretty@^4.4.0":
+ version "4.4.0"
+ resolved "https://registry.yarnpkg.com/@expo/xcpretty/-/xcpretty-4.4.0.tgz#7a5aaf9ce5d538f84ae6518655d175f5cc94ce81"
+ integrity sha512-o2qDlTqJ606h4xR36H2zWTywmZ3v3842K6TU8Ik2n1mfW0S580VHlt3eItVYdLYz+klaPp7CXqanja8eASZjRw==
dependencies:
- "@babel/code-frame" "7.10.4"
+ "@babel/code-frame" "^7.20.0"
chalk "^4.1.0"
- find-up "^5.0.0"
js-yaml "^4.1.0"
"@fastify/busboy@^2.0.0":
@@ -2709,6 +2744,153 @@
resolved "https://registry.yarnpkg.com/@humanwhocodes/retry/-/retry-0.4.3.tgz#c2b9d2e374ee62c586d3adbea87199b1d7a7a6ba"
integrity sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==
+"@img/colour@^1.0.0":
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/@img/colour/-/colour-1.0.0.tgz#d2fabb223455a793bf3bf9c70de3d28526aa8311"
+ integrity sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==
+
+"@img/sharp-darwin-arm64@0.34.5":
+ version "0.34.5"
+ resolved "https://registry.yarnpkg.com/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.5.tgz#6e0732dcade126b6670af7aa17060b926835ea86"
+ integrity sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==
+ optionalDependencies:
+ "@img/sharp-libvips-darwin-arm64" "1.2.4"
+
+"@img/sharp-darwin-x64@0.34.5":
+ version "0.34.5"
+ resolved "https://registry.yarnpkg.com/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.5.tgz#19bc1dd6eba6d5a96283498b9c9f401180ee9c7b"
+ integrity sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==
+ optionalDependencies:
+ "@img/sharp-libvips-darwin-x64" "1.2.4"
+
+"@img/sharp-libvips-darwin-arm64@1.2.4":
+ version "1.2.4"
+ resolved "https://registry.yarnpkg.com/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.2.4.tgz#2894c0cb87d42276c3889942e8e2db517a492c43"
+ integrity sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==
+
+"@img/sharp-libvips-darwin-x64@1.2.4":
+ version "1.2.4"
+ resolved "https://registry.yarnpkg.com/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.2.4.tgz#e63681f4539a94af9cd17246ed8881734386f8cc"
+ integrity sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==
+
+"@img/sharp-libvips-linux-arm64@1.2.4":
+ version "1.2.4"
+ resolved "https://registry.yarnpkg.com/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.2.4.tgz#b1b288b36864b3bce545ad91fa6dadcf1a4ad318"
+ integrity sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==
+
+"@img/sharp-libvips-linux-arm@1.2.4":
+ version "1.2.4"
+ resolved "https://registry.yarnpkg.com/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.2.4.tgz#b9260dd1ebe6f9e3bdbcbdcac9d2ac125f35852d"
+ integrity sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==
+
+"@img/sharp-libvips-linux-ppc64@1.2.4":
+ version "1.2.4"
+ resolved "https://registry.yarnpkg.com/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.2.4.tgz#4b83ecf2a829057222b38848c7b022e7b4d07aa7"
+ integrity sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==
+
+"@img/sharp-libvips-linux-riscv64@1.2.4":
+ version "1.2.4"
+ resolved "https://registry.yarnpkg.com/@img/sharp-libvips-linux-riscv64/-/sharp-libvips-linux-riscv64-1.2.4.tgz#880b4678009e5a2080af192332b00b0aaf8a48de"
+ integrity sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==
+
+"@img/sharp-libvips-linux-s390x@1.2.4":
+ version "1.2.4"
+ resolved "https://registry.yarnpkg.com/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.2.4.tgz#74f343c8e10fad821b38f75ced30488939dc59ec"
+ integrity sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==
+
+"@img/sharp-libvips-linux-x64@1.2.4":
+ version "1.2.4"
+ resolved "https://registry.yarnpkg.com/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.2.4.tgz#df4183e8bd8410f7d61b66859a35edeab0a531ce"
+ integrity sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==
+
+"@img/sharp-libvips-linuxmusl-arm64@1.2.4":
+ version "1.2.4"
+ resolved "https://registry.yarnpkg.com/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.2.4.tgz#c8d6b48211df67137541007ee8d1b7b1f8ca8e06"
+ integrity sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==
+
+"@img/sharp-libvips-linuxmusl-x64@1.2.4":
+ version "1.2.4"
+ resolved "https://registry.yarnpkg.com/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.2.4.tgz#be11c75bee5b080cbee31a153a8779448f919f75"
+ integrity sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==
+
+"@img/sharp-linux-arm64@0.34.5":
+ version "0.34.5"
+ resolved "https://registry.yarnpkg.com/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.5.tgz#7aa7764ef9c001f15e610546d42fce56911790cc"
+ integrity sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==
+ optionalDependencies:
+ "@img/sharp-libvips-linux-arm64" "1.2.4"
+
+"@img/sharp-linux-arm@0.34.5":
+ version "0.34.5"
+ resolved "https://registry.yarnpkg.com/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.5.tgz#5fb0c3695dd12522d39c3ff7a6bc816461780a0d"
+ integrity sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==
+ optionalDependencies:
+ "@img/sharp-libvips-linux-arm" "1.2.4"
+
+"@img/sharp-linux-ppc64@0.34.5":
+ version "0.34.5"
+ resolved "https://registry.yarnpkg.com/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.34.5.tgz#9c213a81520a20caf66978f3d4c07456ff2e0813"
+ integrity sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==
+ optionalDependencies:
+ "@img/sharp-libvips-linux-ppc64" "1.2.4"
+
+"@img/sharp-linux-riscv64@0.34.5":
+ version "0.34.5"
+ resolved "https://registry.yarnpkg.com/@img/sharp-linux-riscv64/-/sharp-linux-riscv64-0.34.5.tgz#cdd28182774eadbe04f62675a16aabbccb833f60"
+ integrity sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==
+ optionalDependencies:
+ "@img/sharp-libvips-linux-riscv64" "1.2.4"
+
+"@img/sharp-linux-s390x@0.34.5":
+ version "0.34.5"
+ resolved "https://registry.yarnpkg.com/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.5.tgz#93eac601b9f329bb27917e0e19098c722d630df7"
+ integrity sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==
+ optionalDependencies:
+ "@img/sharp-libvips-linux-s390x" "1.2.4"
+
+"@img/sharp-linux-x64@0.34.5":
+ version "0.34.5"
+ resolved "https://registry.yarnpkg.com/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.5.tgz#55abc7cd754ffca5002b6c2b719abdfc846819a8"
+ integrity sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==
+ optionalDependencies:
+ "@img/sharp-libvips-linux-x64" "1.2.4"
+
+"@img/sharp-linuxmusl-arm64@0.34.5":
+ version "0.34.5"
+ resolved "https://registry.yarnpkg.com/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.5.tgz#d6515ee971bb62f73001a4829b9d865a11b77086"
+ integrity sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==
+ optionalDependencies:
+ "@img/sharp-libvips-linuxmusl-arm64" "1.2.4"
+
+"@img/sharp-linuxmusl-x64@0.34.5":
+ version "0.34.5"
+ resolved "https://registry.yarnpkg.com/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.5.tgz#d97978aec7c5212f999714f2f5b736457e12ee9f"
+ integrity sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==
+ optionalDependencies:
+ "@img/sharp-libvips-linuxmusl-x64" "1.2.4"
+
+"@img/sharp-wasm32@0.34.5":
+ version "0.34.5"
+ resolved "https://registry.yarnpkg.com/@img/sharp-wasm32/-/sharp-wasm32-0.34.5.tgz#2f15803aa626f8c59dd7c9d0bbc766f1ab52cfa0"
+ integrity sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==
+ dependencies:
+ "@emnapi/runtime" "^1.7.0"
+
+"@img/sharp-win32-arm64@0.34.5":
+ version "0.34.5"
+ resolved "https://registry.yarnpkg.com/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.5.tgz#3706e9e3ac35fddfc1c87f94e849f1b75307ce0a"
+ integrity sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==
+
+"@img/sharp-win32-ia32@0.34.5":
+ version "0.34.5"
+ resolved "https://registry.yarnpkg.com/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.5.tgz#0b71166599b049e032f085fb9263e02f4e4788de"
+ integrity sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==
+
+"@img/sharp-win32-x64@0.34.5":
+ version "0.34.5"
+ resolved "https://registry.yarnpkg.com/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.5.tgz#a81ffb00e69267cd0a1d626eaedb8a8430b2b2f8"
+ integrity sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==
+
"@inquirer/confirm@^5.0.0":
version "5.1.12"
resolved "https://registry.yarnpkg.com/@inquirer/confirm/-/confirm-5.1.12.tgz#387037889a5a558ceefe52e978228630aa6e7d0e"
@@ -2754,6 +2936,18 @@
cborg "^4.0.0"
multiformats "^13.1.0"
+"@isaacs/balanced-match@^4.0.1":
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/@isaacs/balanced-match/-/balanced-match-4.0.1.tgz#3081dadbc3460661b751e7591d7faea5df39dd29"
+ integrity sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==
+
+"@isaacs/brace-expansion@^5.0.1":
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/@isaacs/brace-expansion/-/brace-expansion-5.0.1.tgz#0ef5a92d91f2fff2a37646ce54da9e5f599f6eff"
+ integrity sha512-WMz71T1JS624nWj2n2fnYAuPovhv7EUhk69R6i9dsVyzxt5eM3bjwvgk9L+APE1TRscGysAVMANkB0jh0LQZrQ==
+ dependencies:
+ "@isaacs/balanced-match" "^4.0.1"
+
"@isaacs/cliui@^8.0.2":
version "8.0.2"
resolved "https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz#b37667b7bc181c168782259bab42474fbf52b550"
@@ -2766,13 +2960,6 @@
wrap-ansi "^8.1.0"
wrap-ansi-cjs "npm:wrap-ansi@^7.0.0"
-"@isaacs/fs-minipass@^4.0.0":
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz#2d59ae3ab4b38fb4270bfa23d30f8e2e86c7fe32"
- integrity sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==
- dependencies:
- minipass "^7.0.4"
-
"@isaacs/ttlcache@^1.4.1":
version "1.4.1"
resolved "https://registry.yarnpkg.com/@isaacs/ttlcache/-/ttlcache-1.4.1.tgz#21fb23db34e9b6220c6ba023a0118a2dd3461ea2"
@@ -3078,17 +3265,6 @@
"@types/yargs" "^17.0.33"
chalk "^4.1.2"
-"@jest/types@^26.6.2":
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/@jest/types/-/types-26.6.2.tgz#bef5a532030e1d88a2f5a6d933f84e97226ed48e"
- integrity sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==
- dependencies:
- "@types/istanbul-lib-coverage" "^2.0.0"
- "@types/istanbul-reports" "^3.0.0"
- "@types/node" "*"
- "@types/yargs" "^15.0.0"
- chalk "^4.0.0"
-
"@jest/types@^29.6.3":
version "29.6.3"
resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.6.3.tgz#1131f8cf634e7e84c5e77bab12f052af585fba59"
@@ -4040,58 +4216,58 @@
resolved "https://registry.yarnpkg.com/@react-native-clipboard/clipboard/-/clipboard-1.16.3.tgz#7807a90fd9984bf4d3a96faf2eee20457984a9bd"
integrity sha512-cMIcvoZKIrShzJHEaHbTAp458R9WOv0fB6UyC7Ek4Qk561Ow/DrzmmJmH/rAZg21Z6ixJ4YSdFDC14crqIBmCQ==
-"@react-native-community/cli-clean@18.0.0":
- version "18.0.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-clean/-/cli-clean-18.0.0.tgz#cdb414c069e0f6d2c1bca02cb48ec3c0f9686e3e"
- integrity sha512-+k64EnJaMI5U8iNDF9AftHBJW+pO/isAhncEXuKRc6IjRtIh6yoaUIIf5+C98fgjfux7CNRZAMQIkPbZodv2Gw==
+"@react-native-community/cli-clean@20.0.0":
+ version "20.0.0"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-clean/-/cli-clean-20.0.0.tgz#e685f5404195ded69c81d1394e8c5eb332b780bc"
+ integrity sha512-YmdNRcT+Dp8lC7CfxSDIfPMbVPEXVFzBH62VZNbYGxjyakqAvoQUFTYPgM2AyFusAr4wDFbDOsEv88gCDwR3ig==
dependencies:
- "@react-native-community/cli-tools" "18.0.0"
+ "@react-native-community/cli-tools" "20.0.0"
chalk "^4.1.2"
execa "^5.0.0"
fast-glob "^3.3.2"
-"@react-native-community/cli-config-android@18.0.0", "@react-native-community/cli-config-android@^18.0.0":
- version "18.0.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-config-android/-/cli-config-android-18.0.0.tgz#9f154a05142d881f9f4950246f1d9bcd2ae2b8d0"
- integrity sha512-pgnhEO2cmOeb+bBFEBZFYjeFjDTqWoV0JTorTiugj9bb4RQRCl8cr35baVlBGhxAuaio3722CsJ9GRF1oHjP8w==
+"@react-native-community/cli-config-android@20.0.0":
+ version "20.0.0"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-config-android/-/cli-config-android-20.0.0.tgz#756bd8f2d5c47023964551612cc48a1fecc9a7e4"
+ integrity sha512-asv60qYCnL1v0QFWcG9r1zckeFlKG+14GGNyPXY72Eea7RX5Cxdx8Pb6fIPKroWH1HEWjYH9KKHksMSnf9FMKw==
dependencies:
- "@react-native-community/cli-tools" "18.0.0"
+ "@react-native-community/cli-tools" "20.0.0"
chalk "^4.1.2"
fast-glob "^3.3.2"
fast-xml-parser "^4.4.1"
-"@react-native-community/cli-config-apple@18.0.0", "@react-native-community/cli-config-apple@^18.0.0":
- version "18.0.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-config-apple/-/cli-config-apple-18.0.0.tgz#ab7ea261e51e3ebe0bacce93bfa010fadd3e2ac2"
- integrity sha512-6edjTt3mlNMFBuB/Xd6u0O7GEkhJiKvQgmcoBH18FsNy5cpiHDwQsG8EWM5cHeINp1gMK845qq9fFsTko6gqyQ==
+"@react-native-community/cli-config-apple@20.0.0":
+ version "20.0.0"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-config-apple/-/cli-config-apple-20.0.0.tgz#eaef1db689a4f205cf665306c04e4d717c5d7d46"
+ integrity sha512-PS1gNOdpeQ6w7dVu1zi++E+ix2D0ZkGC2SQP6Y/Qp002wG4se56esLXItYiiLrJkhH21P28fXdmYvTEkjSm9/Q==
dependencies:
- "@react-native-community/cli-tools" "18.0.0"
+ "@react-native-community/cli-tools" "20.0.0"
chalk "^4.1.2"
execa "^5.0.0"
fast-glob "^3.3.2"
-"@react-native-community/cli-config@18.0.0":
- version "18.0.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-config/-/cli-config-18.0.0.tgz#95252f881b7c9abbffe7bc87b911de2a3ed9a68f"
- integrity sha512-GUGvyek06JRF4mfd9zXao9YQW4+H8ny69HznqNXVRtVSIIekFyjOpKQeSEzdcyqJEEa5gej22GOz1JCHMKBccg==
+"@react-native-community/cli-config@20.0.0":
+ version "20.0.0"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-config/-/cli-config-20.0.0.tgz#890e3cdb7779f936bd50f2fe2601f0fdd917b3e6"
+ integrity sha512-5Ky9ceYuDqG62VIIpbOmkg8Lybj2fUjf/5wK4UO107uRqejBgNgKsbGnIZgEhREcaSEOkujWrroJ9gweueLfBg==
dependencies:
- "@react-native-community/cli-tools" "18.0.0"
+ "@react-native-community/cli-tools" "20.0.0"
chalk "^4.1.2"
cosmiconfig "^9.0.0"
deepmerge "^4.3.0"
fast-glob "^3.3.2"
joi "^17.2.1"
-"@react-native-community/cli-doctor@18.0.0":
- version "18.0.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-doctor/-/cli-doctor-18.0.0.tgz#5d1f90e355b8b9ca7c7d860acef147b8979495ec"
- integrity sha512-cD3LJfu2h2QSFmZai+fl7RrORKodd5XHSuB7Y9oF1zkebpRYN720vaUtK+GsepqBOElwKk5gl8uVolJ3j+xm8A==
+"@react-native-community/cli-doctor@20.0.0":
+ version "20.0.0"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-doctor/-/cli-doctor-20.0.0.tgz#4d19108dafffc4727654dc4fc17f8f170519f130"
+ integrity sha512-cPHspi59+Fy41FDVxt62ZWoicCZ1o34k8LAl64NVSY0lwPl+CEi78jipXJhtfkVqSTetloA8zexa/vSAcJy57Q==
dependencies:
- "@react-native-community/cli-config" "18.0.0"
- "@react-native-community/cli-platform-android" "18.0.0"
- "@react-native-community/cli-platform-apple" "18.0.0"
- "@react-native-community/cli-platform-ios" "18.0.0"
- "@react-native-community/cli-tools" "18.0.0"
+ "@react-native-community/cli-config" "20.0.0"
+ "@react-native-community/cli-platform-android" "20.0.0"
+ "@react-native-community/cli-platform-apple" "20.0.0"
+ "@react-native-community/cli-platform-ios" "20.0.0"
+ "@react-native-community/cli-tools" "20.0.0"
chalk "^4.1.2"
command-exists "^1.2.8"
deepmerge "^4.3.0"
@@ -4103,55 +4279,55 @@
wcwidth "^1.0.1"
yaml "^2.2.1"
-"@react-native-community/cli-platform-android@18.0.0":
- version "18.0.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-android/-/cli-platform-android-18.0.0.tgz#6bc69b0cccaa8d8138d31eb9b449e17528cd8f63"
- integrity sha512-3Y3RleN/des1C3oRS6s6fDvFYKN0KwsLrYFRpVx9vzdDnH1OGyFJOy4DbrruSPtdNiHUpvvHnOOxeLMj0+/tmw==
+"@react-native-community/cli-platform-android@20.0.0":
+ version "20.0.0"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-android/-/cli-platform-android-20.0.0.tgz#f2f6c666e8c878abf39bde1f3281198ba6e3d5b3"
+ integrity sha512-th3ji1GRcV6ACelgC0wJtt9daDZ+63/52KTwL39xXGoqczFjml4qERK90/ppcXU0Ilgq55ANF8Pr+UotQ2AB/A==
dependencies:
- "@react-native-community/cli-config-android" "18.0.0"
- "@react-native-community/cli-tools" "18.0.0"
+ "@react-native-community/cli-config-android" "20.0.0"
+ "@react-native-community/cli-tools" "20.0.0"
chalk "^4.1.2"
execa "^5.0.0"
logkitty "^0.7.1"
-"@react-native-community/cli-platform-apple@18.0.0":
- version "18.0.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-apple/-/cli-platform-apple-18.0.0.tgz#044b5a57ec81960f5bdbcf44f18f2fe7931fa5f7"
- integrity sha512-zD18gdP5Wr8BSLJ79xtHuPYcg2Vi/nL+WsGsPm7TZjzR5ZU2WbY/tZ+qTGVTQYhQaah+92sU+Dam7gStMrF/fA==
+"@react-native-community/cli-platform-apple@20.0.0":
+ version "20.0.0"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-apple/-/cli-platform-apple-20.0.0.tgz#976f535278b6671703fce5dc91833cedd45a1040"
+ integrity sha512-rZZCnAjUHN1XBgiWTAMwEKpbVTO4IHBSecdd1VxJFeTZ7WjmstqA6L/HXcnueBgxrzTCRqvkRIyEQXxC1OfhGw==
dependencies:
- "@react-native-community/cli-config-apple" "18.0.0"
- "@react-native-community/cli-tools" "18.0.0"
+ "@react-native-community/cli-config-apple" "20.0.0"
+ "@react-native-community/cli-tools" "20.0.0"
chalk "^4.1.2"
execa "^5.0.0"
fast-xml-parser "^4.4.1"
-"@react-native-community/cli-platform-ios@18.0.0":
- version "18.0.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-ios/-/cli-platform-ios-18.0.0.tgz#75ccaddf974d5e3ca65a9d7ace0b4cafe7df4a44"
- integrity sha512-05Nvkkre/4Gao1TYqyP1wGet8td1dAH0CLJKqLNl9Te6ihnrQ8/8OhjIna5xw0iEFr9An8VdLfaPu1Dgv2qAnQ==
+"@react-native-community/cli-platform-ios@20.0.0":
+ version "20.0.0"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-ios/-/cli-platform-ios-20.0.0.tgz#382c1781c352ef5d4c8a6357e552a2e51a722f75"
+ integrity sha512-Z35M+4gUJgtS4WqgpKU9/XYur70nmj3Q65c9USyTq6v/7YJ4VmBkmhC9BticPs6wuQ9Jcv0NyVCY0Wmh6kMMYw==
dependencies:
- "@react-native-community/cli-platform-apple" "18.0.0"
+ "@react-native-community/cli-platform-apple" "20.0.0"
-"@react-native-community/cli-server-api@18.0.0":
- version "18.0.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-server-api/-/cli-server-api-18.0.0.tgz#172df67c473361e060689a50d7aed93efeae4456"
- integrity sha512-tdmGV7ZntYmzrXWheZNpAy6dVI2yrsX4sQH+xAzU7lCfKHk6J8GucxedduXnB5qBB4JgSrrbzg2RLNxv5v0S/Q==
+"@react-native-community/cli-server-api@20.0.0":
+ version "20.0.0"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-server-api/-/cli-server-api-20.0.0.tgz#67399e213341449f1785476a35753c58bae8a260"
+ integrity sha512-Ves21bXtjUK3tQbtqw/NdzpMW1vR2HvYCkUQ/MXKrJcPjgJnXQpSnTqHXz6ZdBlMbbwLJXOhSPiYzxb5/v4CDg==
dependencies:
- "@react-native-community/cli-tools" "18.0.0"
+ "@react-native-community/cli-tools" "20.0.0"
body-parser "^1.20.3"
compression "^1.7.1"
connect "^3.6.5"
errorhandler "^1.5.1"
nocache "^3.0.1"
open "^6.2.0"
- pretty-format "^26.6.2"
+ pretty-format "^29.7.0"
serve-static "^1.13.1"
ws "^6.2.3"
-"@react-native-community/cli-tools@18.0.0", "@react-native-community/cli-tools@^18.0.0":
- version "18.0.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-tools/-/cli-tools-18.0.0.tgz#742330d3315bc78f1e57c03969231252f6584a29"
- integrity sha512-oR6FcDEcSDYos79vZy4+Tj8jgAE0Xf5HEiRXMJFGISYLRx7tvslSaK8SodUOW9TZe2bCZOb5QSvj8zeMpORmxg==
+"@react-native-community/cli-tools@20.0.0":
+ version "20.0.0"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-tools/-/cli-tools-20.0.0.tgz#a20a80e58da07dd0cc02c897e8dada21bd289bea"
+ integrity sha512-akSZGxr1IajJ8n0YCwQoA3DI0HttJ0WB7M3nVpb0lOM+rJpsBN7WG5Ft+8ozb6HyIPX+O+lLeYazxn5VNG/Xhw==
dependencies:
"@vscode/sudo-prompt" "^9.0.0"
appdirsjs "^1.2.4"
@@ -4164,24 +4340,24 @@
prompts "^2.4.2"
semver "^7.5.2"
-"@react-native-community/cli-types@18.0.0":
- version "18.0.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-types/-/cli-types-18.0.0.tgz#225159de80c0b6a39f993fa003030c2eca2add00"
- integrity sha512-J84+4IRXl8WlVdoe1maTD5skYZZO9CbQ6LNXEHx1kaZcFmvPZKfjsaxuyQ+8BsSqZnM2izOw8dEWnAp/Zuwb0w==
+"@react-native-community/cli-types@20.0.0":
+ version "20.0.0"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-types/-/cli-types-20.0.0.tgz#f38988d21538a0537757782e3e44f088e6715708"
+ integrity sha512-7J4hzGWOPTBV1d30Pf2NidV+bfCWpjfCOiGO3HUhz1fH4MvBM0FbbBmE9LE5NnMz7M8XSRSi68ZGYQXgLBB2Qw==
dependencies:
joi "^17.2.1"
-"@react-native-community/cli@18.0.0":
- version "18.0.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli/-/cli-18.0.0.tgz#27d0160b7c0a44b1bcc0f45d736bbc6b7d2d5ca6"
- integrity sha512-DyKptlG78XPFo7tDod+we5a3R+U9qjyhaVFbOPvH4pFNu5Dehewtol/srl44K6Cszq0aEMlAJZ3juk0W4WnOJA==
- dependencies:
- "@react-native-community/cli-clean" "18.0.0"
- "@react-native-community/cli-config" "18.0.0"
- "@react-native-community/cli-doctor" "18.0.0"
- "@react-native-community/cli-server-api" "18.0.0"
- "@react-native-community/cli-tools" "18.0.0"
- "@react-native-community/cli-types" "18.0.0"
+"@react-native-community/cli@20.0.0":
+ version "20.0.0"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli/-/cli-20.0.0.tgz#a9155bd63e0cf45aafb4cc49c390ceb3bde64c74"
+ integrity sha512-/cMnGl5V1rqnbElY1Fvga1vfw0d3bnqiJLx2+2oh7l9ulnXfVRWb5tU2kgBqiMxuDOKA+DQoifC9q/tvkj5K2w==
+ dependencies:
+ "@react-native-community/cli-clean" "20.0.0"
+ "@react-native-community/cli-config" "20.0.0"
+ "@react-native-community/cli-doctor" "20.0.0"
+ "@react-native-community/cli-server-api" "20.0.0"
+ "@react-native-community/cli-tools" "20.0.0"
+ "@react-native-community/cli-types" "20.0.0"
chalk "^4.1.2"
commander "^9.4.1"
deepmerge "^4.3.0"
@@ -4222,31 +4398,31 @@
resolved "https://registry.yarnpkg.com/@react-native-picker/picker/-/picker-2.11.2.tgz#f71a769ed6c55e9122c41547d09fd97d6d9bbdfd"
integrity sha512-2zyFdW4jgHjF+NeuDZ4nl3hJ+8suey69bI3yljqhNyowfklW2NwNrdDUaJ2iwtPCpk2pt7834aPF8TI6iyZRhA==
-"@react-native/assets-registry@0.79.2":
- version "0.79.2"
- resolved "https://registry.yarnpkg.com/@react-native/assets-registry/-/assets-registry-0.79.2.tgz#731963e664c8543f5b277e56c058bde612b69f50"
- integrity sha512-5h2Z7/+/HL/0h88s0JHOdRCW4CXMCJoROxqzHqxdrjGL6EBD1DdaB4ZqkCOEVSW4Vjhir5Qb97C8i/MPWEYPtg==
+"@react-native/assets-registry@0.83.2":
+ version "0.83.2"
+ resolved "https://registry.yarnpkg.com/@react-native/assets-registry/-/assets-registry-0.83.2.tgz#485d4b085f360c3b4254cca382413b9ca609edb1"
+ integrity sha512-9I5l3pGAKnlpQ15uVkeB9Mgjvt3cZEaEc8EDtdexvdtZvLSjtwBzgourrOW4yZUijbjJr8h3YO2Y0q+THwUHTA==
-"@react-native/babel-plugin-codegen@0.79.2":
- version "0.79.2"
- resolved "https://registry.yarnpkg.com/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.79.2.tgz#f3f86766a01487aaaa623ec62514af4c84400953"
- integrity sha512-d+NB7Uosn2ZWd4O4+7ZkB6q1a+0z2opD/4+Bzhk/Tv6fc5FrSftK2Noqxvo3/bhbdGFVPxf0yvLE8et4W17x/Q==
+"@react-native/babel-plugin-codegen@0.83.1":
+ version "0.83.1"
+ resolved "https://registry.yarnpkg.com/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.83.1.tgz#56418c0eeab55800a8fa35333598e71495b9053f"
+ integrity sha512-VPj8O3pG1ESjZho9WVKxqiuryrotAECPHGF5mx46zLUYNTWR5u9OMUXYk7LeLy+JLWdGEZ2Gn3KoXeFZbuqE+g==
dependencies:
"@babel/traverse" "^7.25.3"
- "@react-native/codegen" "0.79.2"
+ "@react-native/codegen" "0.83.1"
-"@react-native/babel-plugin-codegen@0.79.5":
- version "0.79.5"
- resolved "https://registry.yarnpkg.com/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.79.5.tgz#a2a9fd04fbb28ac75694952c234b159de25b2c52"
- integrity sha512-Rt/imdfqXihD/sn0xnV4flxxb1aLLjPtMF1QleQjEhJsTUPpH4TFlfOpoCvsrXoDl4OIcB1k4FVM24Ez92zf5w==
+"@react-native/babel-plugin-codegen@0.83.2":
+ version "0.83.2"
+ resolved "https://registry.yarnpkg.com/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.83.2.tgz#511b9427cfaae8b110a5f50ac2c88bfc752f7c0b"
+ integrity sha512-XbcN/BEa64pVlb0Hb/E/Ph2SepjVN/FcNKrJcQvtaKZA6mBSO8pW8Eircdlr61/KBH94LihHbQoQDzkQFpeaTg==
dependencies:
"@babel/traverse" "^7.25.3"
- "@react-native/codegen" "0.79.5"
+ "@react-native/codegen" "0.83.2"
-"@react-native/babel-preset@0.79.2":
- version "0.79.2"
- resolved "https://registry.yarnpkg.com/@react-native/babel-preset/-/babel-preset-0.79.2.tgz#5a683a6efeea357a326f70c84a881be2bafbeae3"
- integrity sha512-/HNu869oUq4FUXizpiNWrIhucsYZqu0/0spudJEzk9SEKar0EjVDP7zkg/sKK+KccNypDQGW7nFXT8onzvQ3og==
+"@react-native/babel-preset@0.83.1":
+ version "0.83.1"
+ resolved "https://registry.yarnpkg.com/@react-native/babel-preset/-/babel-preset-0.83.1.tgz#a8bc9e7548a8f400ce6fb97c7e76a8ae80aa015c"
+ integrity sha512-xI+tbsD4fXcI6PVU4sauRCh0a5fuLQC849SINmU2J5wP8kzKu4Ye0YkGjUW3mfGrjaZcjkWmF6s33jpyd3gdTw==
dependencies:
"@babel/core" "^7.25.2"
"@babel/plugin-proposal-export-default-from" "^7.24.7"
@@ -4289,15 +4465,15 @@
"@babel/plugin-transform-typescript" "^7.25.2"
"@babel/plugin-transform-unicode-regex" "^7.24.7"
"@babel/template" "^7.25.0"
- "@react-native/babel-plugin-codegen" "0.79.2"
- babel-plugin-syntax-hermes-parser "0.25.1"
+ "@react-native/babel-plugin-codegen" "0.83.1"
+ babel-plugin-syntax-hermes-parser "0.32.0"
babel-plugin-transform-flow-enums "^0.0.2"
react-refresh "^0.14.0"
-"@react-native/babel-preset@0.79.5":
- version "0.79.5"
- resolved "https://registry.yarnpkg.com/@react-native/babel-preset/-/babel-preset-0.79.5.tgz#2af2d055d4e67c321bf32744b85917490132992b"
- integrity sha512-GDUYIWslMLbdJHEgKNfrOzXk8EDKxKzbwmBXUugoiSlr6TyepVZsj3GZDLEFarOcTwH1EXXHJsixihk8DCRQDA==
+"@react-native/babel-preset@0.83.2":
+ version "0.83.2"
+ resolved "https://registry.yarnpkg.com/@react-native/babel-preset/-/babel-preset-0.83.2.tgz#e449d4dedafed3c3000f6fa34c30d167653a9e27"
+ integrity sha512-X/RAXDfe6W+om/Fw1i6htTxQXFhBJ2jgNOWx3WpI3KbjeIWbq7ib6vrpTeIAW2NUMg+K3mML1NzgD4dpZeqdjA==
dependencies:
"@babel/core" "^7.25.2"
"@babel/plugin-proposal-export-default-from" "^7.24.7"
@@ -4340,145 +4516,166 @@
"@babel/plugin-transform-typescript" "^7.25.2"
"@babel/plugin-transform-unicode-regex" "^7.24.7"
"@babel/template" "^7.25.0"
- "@react-native/babel-plugin-codegen" "0.79.5"
- babel-plugin-syntax-hermes-parser "0.25.1"
+ "@react-native/babel-plugin-codegen" "0.83.2"
+ babel-plugin-syntax-hermes-parser "0.32.0"
babel-plugin-transform-flow-enums "^0.0.2"
react-refresh "^0.14.0"
-"@react-native/codegen@0.79.2":
- version "0.79.2"
- resolved "https://registry.yarnpkg.com/@react-native/codegen/-/codegen-0.79.2.tgz#75270d8162e78c02b0272396a3c6942e39e8703d"
- integrity sha512-8JTlGLuLi1p8Jx2N/enwwEd7/2CfrqJpv90Cp77QLRX3VHF2hdyavRIxAmXMwN95k+Me7CUuPtqn2X3IBXOWYg==
+"@react-native/codegen@0.83.1":
+ version "0.83.1"
+ resolved "https://registry.yarnpkg.com/@react-native/codegen/-/codegen-0.83.1.tgz#cd502b801b23b0cf2da079c0e482ccb145c944d3"
+ integrity sha512-FpRxenonwH+c2a5X5DZMKUD7sCudHxB3eSQPgV9R+uxd28QWslyAWrpnJM/Az96AEksHnymDzEmzq2HLX5nb+g==
dependencies:
+ "@babel/core" "^7.25.2"
+ "@babel/parser" "^7.25.3"
glob "^7.1.1"
- hermes-parser "0.25.1"
+ hermes-parser "0.32.0"
invariant "^2.2.4"
nullthrows "^1.1.1"
yargs "^17.6.2"
-"@react-native/codegen@0.79.5":
- version "0.79.5"
- resolved "https://registry.yarnpkg.com/@react-native/codegen/-/codegen-0.79.5.tgz#f0f1f82b2603959b8e23711b55eac3dab6490596"
- integrity sha512-FO5U1R525A1IFpJjy+KVznEinAgcs3u7IbnbRJUG9IH/MBXi2lEU2LtN+JarJ81MCfW4V2p0pg6t/3RGHFRrlQ==
+"@react-native/codegen@0.83.2":
+ version "0.83.2"
+ resolved "https://registry.yarnpkg.com/@react-native/codegen/-/codegen-0.83.2.tgz#ec80c189480e800af04c078fce7531caef7cc62e"
+ integrity sha512-9uK6X1miCXqtL4c759l74N/XbQeneWeQVjoV7SD2CGJuW7ZefxaoYenwGPs7rMoCdtS6wuIyR3hXQ+uWEBGYXA==
dependencies:
+ "@babel/core" "^7.25.2"
+ "@babel/parser" "^7.25.3"
glob "^7.1.1"
- hermes-parser "0.25.1"
+ hermes-parser "0.32.0"
invariant "^2.2.4"
nullthrows "^1.1.1"
yargs "^17.6.2"
-"@react-native/community-cli-plugin@0.79.2":
- version "0.79.2"
- resolved "https://registry.yarnpkg.com/@react-native/community-cli-plugin/-/community-cli-plugin-0.79.2.tgz#d3a0efbdfb554cf3a7e9bfb27865a7caeeeaa1b3"
- integrity sha512-E+YEY2dL+68HyR2iahsZdyBKBUi9QyPyaN9vsnda1jNgCjNpSPk2yAF5cXsho+zKK5ZQna3JSeE1Kbi2IfGJbw==
+"@react-native/community-cli-plugin@0.83.2":
+ version "0.83.2"
+ resolved "https://registry.yarnpkg.com/@react-native/community-cli-plugin/-/community-cli-plugin-0.83.2.tgz#034b4bc5bfecf4e52b7726ce328fa57a2b3ae76a"
+ integrity sha512-sTEF0eiUKtmImEP07Qo5c3Khvm1LIVX1Qyb6zWUqPL6W3MqFiXutZvKBjqLz6p49Szx8cplQLoXfLHT0bcDXKg==
dependencies:
- "@react-native/dev-middleware" "0.79.2"
- chalk "^4.0.0"
- debug "^2.2.0"
+ "@react-native/dev-middleware" "0.83.2"
+ debug "^4.4.0"
invariant "^2.2.4"
- metro "^0.82.0"
- metro-config "^0.82.0"
- metro-core "^0.82.0"
+ metro "^0.83.3"
+ metro-config "^0.83.3"
+ metro-core "^0.83.3"
semver "^7.1.3"
-"@react-native/debugger-frontend@0.79.2":
- version "0.79.2"
- resolved "https://registry.yarnpkg.com/@react-native/debugger-frontend/-/debugger-frontend-0.79.2.tgz#1377de6d9cabe5455bf332e06408167da5f60c19"
- integrity sha512-cGmC7X6kju76DopSBNc+PRAEetbd7TWF9J9o84hOp/xL3ahxR2kuxJy0oJX8Eg8oehhGGEXTuMKHzNa3rDBeSg==
+"@react-native/debugger-frontend@0.83.1":
+ version "0.83.1"
+ resolved "https://registry.yarnpkg.com/@react-native/debugger-frontend/-/debugger-frontend-0.83.1.tgz#bd46dfdb6753d8521181b07ab7a5e48a2849d791"
+ integrity sha512-01Rn3goubFvPjHXONooLmsW0FLxJDKIUJNOlOS0cPtmmTIx9YIjxhe/DxwHXGk7OnULd7yl3aYy7WlBsEd5Xmg==
-"@react-native/debugger-frontend@0.79.5":
- version "0.79.5"
- resolved "https://registry.yarnpkg.com/@react-native/debugger-frontend/-/debugger-frontend-0.79.5.tgz#76b8d77b62003b4ea99354fe435c01d727b64584"
- integrity sha512-WQ49TRpCwhgUYo5/n+6GGykXmnumpOkl4Lr2l2o2buWU9qPOwoiBqJAtmWEXsAug4ciw3eLiVfthn5ufs0VB0A==
+"@react-native/debugger-frontend@0.83.2":
+ version "0.83.2"
+ resolved "https://registry.yarnpkg.com/@react-native/debugger-frontend/-/debugger-frontend-0.83.2.tgz#80839f9b53ab3b70f2a4a530dcc6e23e1928f463"
+ integrity sha512-t4fYfa7xopbUF5S4+ihNEwgaq4wLZLKLY0Ms8z72lkMteVd3bOX2Foxa8E2wTfRvdhPOkSpOsTeNDmD8ON4DoQ==
-"@react-native/dev-middleware@0.79.2":
- version "0.79.2"
- resolved "https://registry.yarnpkg.com/@react-native/dev-middleware/-/dev-middleware-0.79.2.tgz#f09f1a75b4cd0b56dfd82a07bf41157a9c45619c"
- integrity sha512-9q4CpkklsAs1L0Bw8XYCoqqyBSrfRALGEw4/r0EkR38Y/6fVfNfdsjSns0pTLO6h0VpxswK34L/hm4uK3MoLHw==
+"@react-native/debugger-shell@0.83.1":
+ version "0.83.1"
+ resolved "https://registry.yarnpkg.com/@react-native/debugger-shell/-/debugger-shell-0.83.1.tgz#81ae1edee83f9e68bde1739f18e368614317ee22"
+ integrity sha512-d+0w446Hxth5OP/cBHSSxOEpbj13p2zToUy6e5e3tTERNJ8ueGlW7iGwGTrSymNDgXXFjErX+dY4P4/3WokPIQ==
+ dependencies:
+ cross-spawn "^7.0.6"
+ fb-dotslash "0.5.8"
+
+"@react-native/debugger-shell@0.83.2":
+ version "0.83.2"
+ resolved "https://registry.yarnpkg.com/@react-native/debugger-shell/-/debugger-shell-0.83.2.tgz#bbe51b4e6dee8db259ec16587b62a0c5a3e83b74"
+ integrity sha512-z9go6NJMsLSDJT5MW6VGugRsZHjYvUTwxtsVc3uLt4U9W6T3J6FWI2wHpXIzd2dUkXRfAiRQ3Zi8ZQQ8fRFg9A==
+ dependencies:
+ cross-spawn "^7.0.6"
+ fb-dotslash "0.5.8"
+
+"@react-native/dev-middleware@0.83.1":
+ version "0.83.1"
+ resolved "https://registry.yarnpkg.com/@react-native/dev-middleware/-/dev-middleware-0.83.1.tgz#78c5efed072e6d31c3927cc93e957a6f39d6485c"
+ integrity sha512-QJaSfNRzj3Lp7MmlCRgSBlt1XZ38xaBNXypXAp/3H3OdFifnTZOeYOpFmcpjcXYnDqkxetuwZg8VL65SQhB8dg==
dependencies:
"@isaacs/ttlcache" "^1.4.1"
- "@react-native/debugger-frontend" "0.79.2"
+ "@react-native/debugger-frontend" "0.83.1"
+ "@react-native/debugger-shell" "0.83.1"
chrome-launcher "^0.15.2"
chromium-edge-launcher "^0.2.0"
connect "^3.6.5"
- debug "^2.2.0"
+ debug "^4.4.0"
invariant "^2.2.4"
nullthrows "^1.1.1"
open "^7.0.3"
serve-static "^1.16.2"
- ws "^6.2.3"
+ ws "^7.5.10"
-"@react-native/dev-middleware@0.79.5":
- version "0.79.5"
- resolved "https://registry.yarnpkg.com/@react-native/dev-middleware/-/dev-middleware-0.79.5.tgz#8c7b2b790943f24e33a21da39a7c3959ea93304b"
- integrity sha512-U7r9M/SEktOCP/0uS6jXMHmYjj4ESfYCkNAenBjFjjsRWekiHE+U/vRMeO+fG9gq4UCcBAUISClkQCowlftYBw==
+"@react-native/dev-middleware@0.83.2":
+ version "0.83.2"
+ resolved "https://registry.yarnpkg.com/@react-native/dev-middleware/-/dev-middleware-0.83.2.tgz#c2526be5560451b1300966b3ef9866980dd4e566"
+ integrity sha512-Zi4EVaAm28+icD19NN07Gh8Pqg/84QQu+jn4patfWKNkcToRFP5vPEbbp0eLOGWS+BVB1d1Fn5lvMrJsBbFcOg==
dependencies:
"@isaacs/ttlcache" "^1.4.1"
- "@react-native/debugger-frontend" "0.79.5"
+ "@react-native/debugger-frontend" "0.83.2"
+ "@react-native/debugger-shell" "0.83.2"
chrome-launcher "^0.15.2"
chromium-edge-launcher "^0.2.0"
connect "^3.6.5"
- debug "^2.2.0"
+ debug "^4.4.0"
invariant "^2.2.4"
nullthrows "^1.1.1"
open "^7.0.3"
serve-static "^1.16.2"
- ws "^6.2.3"
+ ws "^7.5.10"
-"@react-native/gradle-plugin@0.79.2":
- version "0.79.2"
- resolved "https://registry.yarnpkg.com/@react-native/gradle-plugin/-/gradle-plugin-0.79.2.tgz#d41d4e2c63baf688a2b47652c6260f2a2f1ec091"
- integrity sha512-6MJFemrwR0bOT0QM+2BxX9k3/pvZQNmJ3Js5pF/6owsA0cUDiCO57otiEU8Fz+UywWEzn1FoQfOfQ8vt2GYmoA==
+"@react-native/gradle-plugin@0.83.2":
+ version "0.83.2"
+ resolved "https://registry.yarnpkg.com/@react-native/gradle-plugin/-/gradle-plugin-0.83.2.tgz#aa23c97f6bea9a252fee55916d70e19714669788"
+ integrity sha512-PqN11fXRAU+uJ0inZY1HWYlwJOXHOhF4SPyeHBBxjajKpm2PGunmvFWwkmBjmmUkP/CNO0ezTUudV0oj+2wiHQ==
-"@react-native/js-polyfills@0.79.2":
- version "0.79.2"
- resolved "https://registry.yarnpkg.com/@react-native/js-polyfills/-/js-polyfills-0.79.2.tgz#15eb4da0fe9e8d61d2980d08fd06b5f49e133b0f"
- integrity sha512-IaY87Ckd4GTPMkO1/Fe8fC1IgIx3vc3q9Tyt/6qS3Mtk9nC0x9q4kSR5t+HHq0/MuvGtu8HpdxXGy5wLaM+zUw==
+"@react-native/js-polyfills@0.83.2":
+ version "0.83.2"
+ resolved "https://registry.yarnpkg.com/@react-native/js-polyfills/-/js-polyfills-0.83.2.tgz#139809ded867cf3f90c22ca5fce0f5b19d2f7469"
+ integrity sha512-dk6fIY2OrKW/2Nk2HydfYNrQau8g6LOtd7NVBrgaqa+lvuRyIML5iimShP5qPqQnx2ofHuzjFw+Ya0b5Q7nDbA==
-"@react-native/metro-babel-transformer@0.79.2":
- version "0.79.2"
- resolved "https://registry.yarnpkg.com/@react-native/metro-babel-transformer/-/metro-babel-transformer-0.79.2.tgz#bd7c1adbf5b2423a612c5752d554914cafcbd667"
- integrity sha512-Bch+UhA5LCrcI/No0rGR6ZS1gOl5Y6Vcoe9MG3NoC0S2lAd96CN0BEhbLQgzR/KmCz9lYT38+3CYzVKKTPLhZA==
+"@react-native/metro-babel-transformer@0.83.2":
+ version "0.83.2"
+ resolved "https://registry.yarnpkg.com/@react-native/metro-babel-transformer/-/metro-babel-transformer-0.83.2.tgz#7f85859d36a444a4ce0c8833654a96aa4f8af0b3"
+ integrity sha512-7uRGB0yEBogz+Bu0+dVFWU4HOrmQGjmPNl3rhI8xuF/C0iNQ5roJ7uKgQiKxroAwz/ukrHc1n7akR1BokYE5hQ==
dependencies:
"@babel/core" "^7.25.2"
- "@react-native/babel-preset" "0.79.2"
- hermes-parser "0.25.1"
+ "@react-native/babel-preset" "0.83.2"
+ hermes-parser "0.32.0"
nullthrows "^1.1.1"
-"@react-native/metro-config@0.79.2":
- version "0.79.2"
- resolved "https://registry.yarnpkg.com/@react-native/metro-config/-/metro-config-0.79.2.tgz#5e5c6491e9c767cacbadeb961e4a6fbc3f3bdda1"
- integrity sha512-0yHHZxYnaz/CsZfS8Jxz45TVvI6oQAU1wNGuaxEgoMby0KcRVnPXaIkMh/PltxGCBscmueKhiQFNLaoeTTezuw==
+"@react-native/metro-config@0.83.2":
+ version "0.83.2"
+ resolved "https://registry.yarnpkg.com/@react-native/metro-config/-/metro-config-0.83.2.tgz#3e42b778248a459e37dc4b34ea8abbdc4a1c2830"
+ integrity sha512-jFBnPQ5edS1xDd1YHgKuPdAtVvGiRLU56c9bcu++NMrMs/Jh2hmfCtR0Sa9202aFK/4Aqqnzxl93X90P3Xzygg==
dependencies:
- "@react-native/js-polyfills" "0.79.2"
- "@react-native/metro-babel-transformer" "0.79.2"
- metro-config "^0.82.0"
- metro-runtime "^0.82.0"
+ "@react-native/js-polyfills" "0.83.2"
+ "@react-native/metro-babel-transformer" "0.83.2"
+ metro-config "^0.83.3"
+ metro-runtime "^0.83.3"
-"@react-native/normalize-colors@0.79.2":
- version "0.79.2"
- resolved "https://registry.yarnpkg.com/@react-native/normalize-colors/-/normalize-colors-0.79.2.tgz#9ab70ca257c7411e4ab74cf7f91332c27d39cc6f"
- integrity sha512-+b+GNrupWrWw1okHnEENz63j7NSMqhKeFMOyzYLBwKcprG8fqJQhDIGXfizKdxeIa5NnGSAevKL1Ev1zJ56X8w==
+"@react-native/normalize-colors@0.83.1":
+ version "0.83.1"
+ resolved "https://registry.yarnpkg.com/@react-native/normalize-colors/-/normalize-colors-0.83.1.tgz#f33f6abf9f3fd9d20f211e669657346e0563f5d1"
+ integrity sha512-84feABbmeWo1kg81726UOlMKAhcQyFXYz2SjRKYkS78QmfhVDhJ2o/ps1VjhFfBz0i/scDwT1XNv9GwmRIghkg==
-"@react-native/normalize-colors@0.79.5":
- version "0.79.5"
- resolved "https://registry.yarnpkg.com/@react-native/normalize-colors/-/normalize-colors-0.79.5.tgz#e281d00a4177c8bcccec8ca695359303cae45eb1"
- integrity sha512-nGXMNMclZgzLUxijQQ38Dm3IAEhgxuySAWQHnljFtfB0JdaMwpe0Ox9H7Tp2OgrEA+EMEv+Od9ElKlHwGKmmvQ==
+"@react-native/normalize-colors@0.83.2":
+ version "0.83.2"
+ resolved "https://registry.yarnpkg.com/@react-native/normalize-colors/-/normalize-colors-0.83.2.tgz#bcfede4a5bdc1c148c33fe7b7ce0fa0e2810bfb4"
+ integrity sha512-gkZAb9LoVVzNuYzzOviH7DiPTXQoZPHuiTH2+O2+VWNtOkiznjgvqpwYAhg58a5zfRq5GXlbBdf5mzRj5+3Y5Q==
"@react-native/normalize-colors@^0.73.0":
version "0.73.2"
resolved "https://registry.yarnpkg.com/@react-native/normalize-colors/-/normalize-colors-0.73.2.tgz#cc8e48fbae2bbfff53e12f209369e8d2e4cf34ec"
integrity sha512-bRBcb2T+I88aG74LMVHaKms2p/T8aQd8+BZ7LuuzXlRfog1bMWWn/C5i0HVuvW4RPtXQYgIlGiXVDy9Ir1So/w==
-"@react-native/typescript-config@0.79.2":
- version "0.79.2"
- resolved "https://registry.yarnpkg.com/@react-native/typescript-config/-/typescript-config-0.79.2.tgz#02cb07db89ef80159b3c1b3e82e81b0c0d5ce908"
- integrity sha512-krHAkkPRCOEhuqN3iwRUwIyE1rAnUQ9//huzUc1ukcoQ7Y4qFxM6amhNloAmYn4QH1Ay6o5At00VbEh2xoHISA==
+"@react-native/typescript-config@0.83.2":
+ version "0.83.2"
+ resolved "https://registry.yarnpkg.com/@react-native/typescript-config/-/typescript-config-0.83.2.tgz#f3eea5ec190b1ce2f86a9421ee90adec0156a8e7"
+ integrity sha512-bEljPmLvvVNLya4FZMKhTOhj/CWB/4tglgmIFX5x9YA1A8d2UYKeZ1kj2uPjdMBPYgXfgLY7VytxT2anYJ2WVw==
-"@react-native/virtualized-lists@0.79.2":
- version "0.79.2"
- resolved "https://registry.yarnpkg.com/@react-native/virtualized-lists/-/virtualized-lists-0.79.2.tgz#ed5a419a30b7ddec978b7816ff698a9d85507e15"
- integrity sha512-9G6ROJeP+rdw9Bvr5ruOlag11ET7j1z/En1riFFNo6W3xZvJY+alCuH1ttm12y9+zBm4n8jwCk4lGhjYaV4dKw==
+"@react-native/virtualized-lists@0.83.2":
+ version "0.83.2"
+ resolved "https://registry.yarnpkg.com/@react-native/virtualized-lists/-/virtualized-lists-0.83.2.tgz#a788b33902b2f543b856d4f7fea8055555e70087"
+ integrity sha512-N7mRjHLW/+KWxMp9IHRWyE3VIkeG1m3PnZJAGEFLCN8VFb7e4VfI567o7tE/HYcdcXCylw+Eqhlciz8gDeQ71g==
dependencies:
invariant "^2.2.4"
nullthrows "^1.1.1"
@@ -5897,12 +6094,19 @@
hoist-non-react-statics "^3.3.0"
redux "^4.0.0"
-"@types/react@*", "@types/react@^19.0.0":
- version "19.1.9"
- resolved "https://registry.yarnpkg.com/@types/react/-/react-19.1.9.tgz#f42b24f35474566a39b5c3a98e4d0c425b79a849"
- integrity sha512-WmdoynAX8Stew/36uTSVMcLJJ1KRh6L3IZRx1PZ7qJtBqT3dYTgyDTx8H1qoRghErydW7xw9mSJ3wS//tCRpFA==
+"@types/react-test-renderer@^19.1.0":
+ version "19.1.0"
+ resolved "https://registry.yarnpkg.com/@types/react-test-renderer/-/react-test-renderer-19.1.0.tgz#1d0af8f2e1b5931e245b8b5b234d1502b854dc10"
+ integrity sha512-XD0WZrHqjNrxA/MaR9O22w/RNidWR9YZmBdRGI7wcnWGrv/3dA8wKCJ8m63Sn+tLJhcjmuhOi629N66W6kgWzQ==
dependencies:
- csstype "^3.0.2"
+ "@types/react" "*"
+
+"@types/react@*", "@types/react@^19.2.0":
+ version "19.2.13"
+ resolved "https://registry.yarnpkg.com/@types/react/-/react-19.2.13.tgz#7cea30d7f60a01d97e4ece039c04e9056682218a"
+ integrity sha512-KkiJeU6VbYbUOp5ITMIc7kBfqlYkKA5KhEHVrGMmUUMt7NeaZg65ojdPk+FtNrBAOXNVM5QM72jnADjM+XVRAQ==
+ dependencies:
+ csstype "^3.2.2"
"@types/responselike@*", "@types/responselike@^1.0.0":
version "1.0.0"
@@ -6016,13 +6220,6 @@
resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-20.2.0.tgz#dd3e6699ba3237f0348cd085e4698780204842f9"
integrity sha512-37RSHht+gzzgYeobbG+KWryeAW8J33Nhr69cjTqSYymXVZEN9NbRYWoYlRtDhHKPVT1FyNKwaTPC1NynKZpzRA==
-"@types/yargs@^15.0.0":
- version "15.0.13"
- resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.13.tgz#34f7fec8b389d7f3c1fd08026a5763e072d3c6dc"
- integrity sha512-kQ5JNTrbDv3Rp5X2n/iUu37IJBDU2gsZ5R/g1/KHOOEc5IKfUFjXT6DENPGduh08I/pamwtEq4oul7gUqKTQDQ==
- dependencies:
- "@types/yargs-parser" "*"
-
"@types/yargs@^17.0.33", "@types/yargs@^17.0.8":
version "17.0.33"
resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.33.tgz#8c32303da83eec050a84b3c7ae7b9f922d13e32d"
@@ -6251,22 +6448,6 @@
js-sha256 "^0.9.0"
js-sha3 "^0.8.0"
-"@urql/core@^5.0.6", "@urql/core@^5.1.2":
- version "5.2.0"
- resolved "https://registry.yarnpkg.com/@urql/core/-/core-5.2.0.tgz#77ee41e192e261fea30c2ca6c2f340410b45d214"
- integrity sha512-/n0ieD0mvvDnVAXEQgX/7qJiVcvYvNkOHeBvkwtylfjydar123caCXcl58PXFY11oU1oquJocVXHxLAbtv4x1A==
- dependencies:
- "@0no-co/graphql.web" "^1.0.13"
- wonka "^6.3.2"
-
-"@urql/exchange-retry@^1.3.0":
- version "1.3.2"
- resolved "https://registry.yarnpkg.com/@urql/exchange-retry/-/exchange-retry-1.3.2.tgz#042ff5f3512a062651ec7257f1b07f9db2f6fefd"
- integrity sha512-TQMCz2pFJMfpNxmSfX1VSfTjwUIFx/mL+p1bnfM1xjjdla7Z+KnGMW/EhFbpckp3LyWAH4PgOsMwOMnIN+MBFg==
- dependencies:
- "@urql/core" "^5.1.2"
- wonka "^6.3.2"
-
"@vscode/sudo-prompt@^9.0.0":
version "9.3.1"
resolved "https://registry.yarnpkg.com/@vscode/sudo-prompt/-/sudo-prompt-9.3.1.tgz#c562334bc6647733649fd42afc96c0eea8de3b65"
@@ -7235,11 +7416,6 @@ axios@^0.26.1:
dependencies:
follow-redirects "^1.14.8"
-b4a@^1.6.4:
- version "1.6.7"
- resolved "https://registry.yarnpkg.com/b4a/-/b4a-1.6.7.tgz#a99587d4ebbfbd5a6e3b21bdb5d5fa385767abe4"
- integrity sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==
-
babel-eslint@^10.1.0:
version "10.1.0"
resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-10.1.0.tgz#6968e568a910b78fb3779cdd8b6ac2f479943232"
@@ -7343,17 +7519,31 @@ babel-plugin-polyfill-regenerator@^0.6.5:
dependencies:
"@babel/helper-define-polyfill-provider" "^0.6.5"
-babel-plugin-react-native-web@~0.19.13:
- version "0.19.13"
- resolved "https://registry.yarnpkg.com/babel-plugin-react-native-web/-/babel-plugin-react-native-web-0.19.13.tgz#bf919bd6f18c4689dd1a528a82bda507363b953d"
- integrity sha512-4hHoto6xaN23LCyZgL9LJZc3olmAxd7b6jDzlZnKXAh4rRAbZRKNBJoOOdp46OBqgy+K0t0guTj5/mhA8inymQ==
+babel-plugin-react-compiler@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/babel-plugin-react-compiler/-/babel-plugin-react-compiler-1.0.0.tgz#bdf7360a23a4d5ebfca090255da3893efd07425f"
+ integrity sha512-Ixm8tFfoKKIPYdCCKYTsqv+Fd4IJ0DQqMyEimo+pxUOMUR9cVPlwTrFt9Avu+3cb6Zp3mAzl+t1MrG2fxxKsxw==
+ dependencies:
+ "@babel/types" "^7.26.0"
+
+babel-plugin-react-native-web@~0.21.0:
+ version "0.21.1"
+ resolved "https://registry.yarnpkg.com/babel-plugin-react-native-web/-/babel-plugin-react-native-web-0.21.1.tgz#0147f1c716119025047475ae3f542ffdacea7d82"
+ integrity sha512-7XywfJ5QIRMwjOL+pwJt2w47Jmi5fFLvK7/So4fV4jIN6PcRbylCp9/l3cJY4VJbSz3lnWTeHDTD1LKIc1C09Q==
+
+babel-plugin-syntax-hermes-parser@0.32.0:
+ version "0.32.0"
+ resolved "https://registry.yarnpkg.com/babel-plugin-syntax-hermes-parser/-/babel-plugin-syntax-hermes-parser-0.32.0.tgz#06f7452bf91adf6cafd7c98e7467404d4eb65cec"
+ integrity sha512-m5HthL++AbyeEA2FcdwOLfVFvWYECOBObLHNqdR8ceY4TsEdn4LdX2oTvbB2QJSSElE2AWA/b2MXZ/PF/CqLZg==
+ dependencies:
+ hermes-parser "0.32.0"
-babel-plugin-syntax-hermes-parser@0.25.1, babel-plugin-syntax-hermes-parser@^0.25.1:
- version "0.25.1"
- resolved "https://registry.yarnpkg.com/babel-plugin-syntax-hermes-parser/-/babel-plugin-syntax-hermes-parser-0.25.1.tgz#58b539df973427fcfbb5176a3aec7e5dee793cb0"
- integrity sha512-IVNpGzboFLfXZUAwkLFcI/bnqVbwky0jP3eBno4HKtqvQJAHBLdgxiG6lQ4to0+Q/YCN3PO0od5NZwIKyY4REQ==
+babel-plugin-syntax-hermes-parser@^0.29.1:
+ version "0.29.1"
+ resolved "https://registry.yarnpkg.com/babel-plugin-syntax-hermes-parser/-/babel-plugin-syntax-hermes-parser-0.29.1.tgz#09ca9ecb0330eba1ef939b6d3f1f55bb06a9dc33"
+ integrity sha512-2WFYnoWGdmih1I1J5eIqxATOeycOqRwYxAQBu3cUu/rhwInwHUg7k60AFNbuGjSDL8tje5GDrAnxzRLcu2pYcA==
dependencies:
- hermes-parser "0.25.1"
+ hermes-parser "0.29.1"
babel-plugin-transform-flow-enums@^0.0.2:
version "0.0.2"
@@ -7383,15 +7573,16 @@ babel-preset-current-node-syntax@^1.0.0, babel-preset-current-node-syntax@^1.1.0
"@babel/plugin-syntax-private-property-in-object" "^7.14.5"
"@babel/plugin-syntax-top-level-await" "^7.14.5"
-babel-preset-expo@~13.2.3:
- version "13.2.3"
- resolved "https://registry.yarnpkg.com/babel-preset-expo/-/babel-preset-expo-13.2.3.tgz#d96d2df314a9e20d5218a0642e6541c4735f3a34"
- integrity sha512-wQJn92lqj8GKR7Ojg/aW4+GkqI6ZdDNTDyOqhhl7A9bAqk6t0ukUOWLDXQb4p0qKJjMDV1F6gNWasI2KUbuVTQ==
+babel-preset-expo@~55.0.3:
+ version "55.0.3"
+ resolved "https://registry.yarnpkg.com/babel-preset-expo/-/babel-preset-expo-55.0.3.tgz#45f5ada245cc3bff715a762770803533791a86e6"
+ integrity sha512-aad7zQVoWfk5vgNPlKQQV5EXVC2H7uOPXKXbTnU3IMd6rV98SawoL38c7LwOYln728jcOPpHi6fpMXbFnJENlA==
dependencies:
"@babel/helper-module-imports" "^7.25.9"
"@babel/plugin-proposal-decorators" "^7.12.9"
"@babel/plugin-proposal-export-default-from" "^7.24.7"
"@babel/plugin-syntax-export-default-from" "^7.24.7"
+ "@babel/plugin-transform-class-static-block" "^7.27.1"
"@babel/plugin-transform-export-namespace-from" "^7.25.9"
"@babel/plugin-transform-flow-strip-types" "^7.25.2"
"@babel/plugin-transform-modules-commonjs" "^7.24.8"
@@ -7402,12 +7593,12 @@ babel-preset-expo@~13.2.3:
"@babel/plugin-transform-runtime" "^7.24.7"
"@babel/preset-react" "^7.22.15"
"@babel/preset-typescript" "^7.23.0"
- "@react-native/babel-preset" "0.79.5"
- babel-plugin-react-native-web "~0.19.13"
- babel-plugin-syntax-hermes-parser "^0.25.1"
+ "@react-native/babel-preset" "0.83.1"
+ babel-plugin-react-compiler "^1.0.0"
+ babel-plugin-react-native-web "~0.21.0"
+ babel-plugin-syntax-hermes-parser "^0.29.1"
babel-plugin-transform-flow-enums "^0.0.2"
debug "^4.3.4"
- react-refresh "^0.14.2"
resolve-from "^5.0.0"
babel-preset-jest@30.0.0:
@@ -7439,39 +7630,6 @@ balanced-match@^1.0.0:
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c=
-bare-events@^2.2.0, bare-events@^2.5.4:
- version "2.5.4"
- resolved "https://registry.yarnpkg.com/bare-events/-/bare-events-2.5.4.tgz#16143d435e1ed9eafd1ab85f12b89b3357a41745"
- integrity sha512-+gFfDkR8pj4/TrWCGUGWmJIkBwuxPS5F+a5yWjOHQt2hHvNZd5YLzadjmDUtFmMM4y429bnKLa8bYBMHcYdnQA==
-
-bare-fs@^4.0.1:
- version "4.1.5"
- resolved "https://registry.yarnpkg.com/bare-fs/-/bare-fs-4.1.5.tgz#1d06c076e68cc8bf97010d29af9e3ac3808cdcf7"
- integrity sha512-1zccWBMypln0jEE05LzZt+V/8y8AQsQQqxtklqaIyg5nu6OAYFhZxPXinJTSG+kU5qyNmeLgcn9AW7eHiCHVLA==
- dependencies:
- bare-events "^2.5.4"
- bare-path "^3.0.0"
- bare-stream "^2.6.4"
-
-bare-os@^3.0.1:
- version "3.6.1"
- resolved "https://registry.yarnpkg.com/bare-os/-/bare-os-3.6.1.tgz#9921f6f59edbe81afa9f56910658422c0f4858d4"
- integrity sha512-uaIjxokhFidJP+bmmvKSgiMzj2sV5GPHaZVAIktcxcpCyBFFWO+YlikVAdhmUo2vYFvFhOXIAlldqV29L8126g==
-
-bare-path@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/bare-path/-/bare-path-3.0.0.tgz#b59d18130ba52a6af9276db3e96a2e3d3ea52178"
- integrity sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==
- dependencies:
- bare-os "^3.0.1"
-
-bare-stream@^2.6.4:
- version "2.6.5"
- resolved "https://registry.yarnpkg.com/bare-stream/-/bare-stream-2.6.5.tgz#bba8e879674c4c27f7e27805df005c15d7a2ca07"
- integrity sha512-jSmxKJNJmHySi6hC42zlZnq00rga4jjxcgNZjY9N5WlOe/iOoGRtdwGsHzQv2RlH2KOYMwGUXhf2zXd32BA9RA==
- dependencies:
- streamx "^2.21.0"
-
base-64@^0.1.0:
version "0.1.0"
resolved "https://registry.yarnpkg.com/base-64/-/base-64-0.1.0.tgz#780a99c84e7d600260361511c4877613bf24f6bb"
@@ -7509,7 +7667,7 @@ base32.js@~0.1.0:
resolved "https://registry.yarnpkg.com/base32.js/-/base32.js-0.1.0.tgz#b582dec693c2f11e893cf064ee6ac5b6131a2202"
integrity sha512-n3TkB02ixgBOhTvANakDb4xaMXnYUVkNoRFJjQflcqMQhyEKxEHdj3E6N8t8sUQ0mjH/3/JxzlXuz3ul/J90pQ==
-base64-js@*, base64-js@^1.2.3, base64-js@^1.3.0, base64-js@^1.3.1, base64-js@^1.5.1:
+base64-js@*, base64-js@^1.3.0, base64-js@^1.3.1, base64-js@^1.5.1:
version "1.5.1"
resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a"
integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==
@@ -7522,6 +7680,11 @@ baselet@^0.3.0:
disklet "^0.4.5"
memlet "^0.1.6"
+baseline-browser-mapping@^2.8.9:
+ version "2.8.16"
+ resolved "https://registry.yarnpkg.com/baseline-browser-mapping/-/baseline-browser-mapping-2.8.16.tgz#e17789673e7f4b7654f81ab2ef25e96ab6a895f9"
+ integrity sha512-OMu3BGQ4E7P1ErFsIPpbJh0qvDudM/UuJeHgkAvfWe+0HFJCXh+t/l8L6fVLR55RI/UbKrVLnAXZSVwd9ysWYw==
+
batch@0.6.1:
version "0.6.1"
resolved "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16"
@@ -7697,7 +7860,7 @@ bitcoinjs-message@^2.2.0:
secp256k1 "^3.0.1"
varuint-bitcoin "^1.0.1"
-bl@^4.0.3, bl@^4.1.0:
+bl@^4.1.0:
version "4.1.0"
resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a"
integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==
@@ -7907,14 +8070,15 @@ browserify-sign@^4.0.0:
inherits "^2.0.1"
parse-asn1 "^5.0.0"
-browserslist@^4.14.5, browserslist@^4.24.0, browserslist@^4.25.1:
- version "4.25.1"
- resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.25.1.tgz#ba9e8e6f298a1d86f829c9b975e07948967bb111"
- integrity sha512-KGj0KoOMXLpSNkkEI6Z6mShmQy0bc1I+T7K9N81k4WWMrfz+6fQ6es80B/YLAeRoKvjYE1YSHHOW1qe9xIVzHw==
+browserslist@^4.14.5, browserslist@^4.24.0, browserslist@^4.25.0, browserslist@^4.25.1:
+ version "4.26.3"
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.26.3.tgz#40fbfe2d1cd420281ce5b1caa8840049c79afb56"
+ integrity sha512-lAUU+02RFBuCKQPj/P6NgjlbCnLBMp4UtgTx7vNHd3XSIJF87s9a5rA3aH2yw3GS9DqZAUbOtZdCCiZeVRqt0w==
dependencies:
- caniuse-lite "^1.0.30001726"
- electron-to-chromium "^1.5.173"
- node-releases "^2.0.19"
+ baseline-browser-mapping "^2.8.9"
+ caniuse-lite "^1.0.30001746"
+ electron-to-chromium "^1.5.227"
+ node-releases "^2.0.21"
update-browserslist-db "^1.1.3"
bs-platform@^5.0.4:
@@ -8123,25 +8287,6 @@ call-bound@^1.0.2, call-bound@^1.0.3, call-bound@^1.0.4:
call-bind-apply-helpers "^1.0.2"
get-intrinsic "^1.3.0"
-caller-callsite@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134"
- integrity sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=
- dependencies:
- callsites "^2.0.0"
-
-caller-path@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4"
- integrity sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=
- dependencies:
- caller-callsite "^2.0.0"
-
-callsites@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50"
- integrity sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=
-
callsites@^3.0.0, callsites@^3.1.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
@@ -8162,10 +8307,10 @@ camelize@^1.0.0:
resolved "https://registry.yarnpkg.com/camelize/-/camelize-1.0.1.tgz#89b7e16884056331a35d6b5ad064332c91daa6c3"
integrity sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==
-caniuse-lite@^1.0.30001726:
- version "1.0.30001731"
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001731.tgz#277c07416ea4613ec564e5b0ffb47e7b60f32e2f"
- integrity sha512-lDdp2/wrOmTRWuoB5DpfNkC0rJDU8DqRa6nYL6HK6sytw70QMopt/NIc/9SM7ylItlBWfACXk0tEn37UWM/+mg==
+caniuse-lite@^1.0.30001746:
+ version "1.0.30001750"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001750.tgz#c229f82930033abd1502c6f73035356cf528bfbc"
+ integrity sha512-cuom0g5sdX6rw00qOoLNSFCJ9/mYIsuSOA+yzpDw8eopiFqcVwQvZHqov0vmEighRxX++cfC0Vg1G+1Iy/mSpQ==
case-anything@^2.1.13:
version "2.1.13"
@@ -8253,16 +8398,11 @@ chokidar@^3.5.2, chokidar@^3.5.3:
optionalDependencies:
fsevents "~2.3.2"
-chownr@^1.1.1, chownr@^1.1.4:
+chownr@^1.1.4:
version "1.1.4"
resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b"
integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==
-chownr@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/chownr/-/chownr-3.0.0.tgz#9855e64ecd240a9cc4267ce8a4aa5d24a1da15e4"
- integrity sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==
-
chrome-launcher@^0.15.2:
version "0.15.2"
resolved "https://registry.yarnpkg.com/chrome-launcher/-/chrome-launcher-0.15.2.tgz#4e6404e32200095fdce7f6a1e1004f9bd36fa5da"
@@ -8561,10 +8701,10 @@ commander@^12.0.0, commander@^12.1.0:
resolved "https://registry.yarnpkg.com/commander/-/commander-12.1.0.tgz#01423b36f501259fdaac4d0e4d60c96c991585d3"
integrity sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==
-commander@^13.1.0:
- version "13.1.0"
- resolved "https://registry.yarnpkg.com/commander/-/commander-13.1.0.tgz#776167db68c78f38dcce1f9b8d7b8b9a488abf46"
- integrity sha512-/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw==
+commander@^14.0.3:
+ version "14.0.3"
+ resolved "https://registry.yarnpkg.com/commander/-/commander-14.0.3.tgz#425d79b48f9af82fcd9e4fc1ea8af6c5ec07bbc2"
+ integrity sha512-H+y0Jo/T1RZ9qPP4Eh1pkcQcLRglraJaSLoyOtHxu6AapkjWVCy2Sit1QQ4x3Dng8qDlSsZEet7g5Pq06MvTgw==
commander@^2.20.0, commander@^2.20.3:
version "2.20.3"
@@ -8662,6 +8802,11 @@ content-type@~1.0.4, content-type@~1.0.5:
resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918"
integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==
+convert-source-map@2.0.0, convert-source-map@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a"
+ integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==
+
convert-source-map@^1.6.0:
version "1.7.0"
resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442"
@@ -8669,11 +8814,6 @@ convert-source-map@^1.6.0:
dependencies:
safe-buffer "~5.1.1"
-convert-source-map@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a"
- integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==
-
cookie-es@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/cookie-es/-/cookie-es-1.0.0.tgz#4759684af168dfc54365b2c2dda0a8d7ee1e4865"
@@ -8719,16 +8859,6 @@ cors@^2.8.1:
object-assign "^4"
vary "^1"
-cosmiconfig@^5.0.5:
- version "5.2.1"
- resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a"
- integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==
- dependencies:
- import-fresh "^2.0.0"
- is-directory "^0.3.1"
- js-yaml "^3.13.1"
- parse-json "^4.0.0"
-
cosmiconfig@^7.0.0:
version "7.0.1"
resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.1.tgz#714d756522cace867867ccb4474c5d01bbae5d6d"
@@ -8885,11 +9015,6 @@ crypto-js@^4.1.1, crypto-js@^4.2.0:
resolved "https://registry.yarnpkg.com/crypto-js/-/crypto-js-4.2.0.tgz#4d931639ecdfd12ff80e8186dba6af2c2e856631"
integrity sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==
-crypto-random-string@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5"
- integrity sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==
-
css-color-keywords@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/css-color-keywords/-/css-color-keywords-1.0.0.tgz#fea2616dc676b2962686b3af8dbdbe180b244e05"
@@ -8951,7 +9076,7 @@ csso@^5.0.5:
dependencies:
css-tree "~2.2.0"
-csstype@^3.0.2, csstype@^3.0.8, csstype@^3.0.9:
+csstype@^3.0.8, csstype@^3.0.9, csstype@^3.2.2:
version "3.2.3"
resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.2.3.tgz#ec48c0f3e993e50648c86da559e2610995cf989a"
integrity sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==
@@ -9125,7 +9250,7 @@ deep-equal@^1.0.1:
object-keys "^1.1.1"
regexp.prototype.flags "^1.2.0"
-deep-extend@^0.6.0, deep-extend@~0.6.0:
+deep-extend@~0.6.0:
version "0.6.0"
resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac"
integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==
@@ -9273,10 +9398,10 @@ detect-libc@^1.0.3:
resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"
integrity sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==
-detect-libc@^2.0.0, detect-libc@^2.0.2:
- version "2.0.4"
- resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.4.tgz#f04715b8ba815e53b4d8109655b6508a6865a7e8"
- integrity sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==
+detect-libc@^2.0.3, detect-libc@^2.1.2:
+ version "2.1.2"
+ resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.1.2.tgz#689c5dcdc1900ef5583a4cb9f6d7b473742074ad"
+ integrity sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==
detect-newline@^3.1.0:
version "3.1.0"
@@ -9343,6 +9468,11 @@ dns-txt@^2.0.2:
dependencies:
buffer-indexof "^1.0.0"
+dnssd-advertise@^1.1.1:
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/dnssd-advertise/-/dnssd-advertise-1.1.3.tgz#bf130e5b22f2d76b2b6b33b201e93c68c75b3786"
+ integrity sha512-XENsHi3MBzWOCAXif3yZvU1Ah0l+nhJj1sjWL6TnOAYKvGiFhbTx32xHN7+wLMLUOCj7Nr0evADWG4R8JtqCDA==
+
doctrine@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d"
@@ -9708,10 +9838,10 @@ ee-first@1.1.1:
resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=
-electron-to-chromium@^1.5.173:
- version "1.5.194"
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.194.tgz#05e541c3373ba8d967a65c92bc14d60608908236"
- integrity sha512-SdnWJwSUot04UR51I2oPD8kuP2VI37/CADR1OHsFOUzZIvfWJBO6q11k5P/uKNyTT3cdOsnyjkrZ+DDShqYqJA==
+electron-to-chromium@^1.5.227:
+ version "1.5.234"
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.234.tgz#d895b6dba84269f4e83b3a1149dcc55e27848c30"
+ integrity sha512-RXfEp2x+VRYn8jbKfQlRImzoJU01kyDvVPBmG39eU2iuRVhuS6vQNocB8J0/8GrIMLnPzgz4eW6WiRnJkTuNWg==
elliptic@6.5.4:
version "6.5.4"
@@ -10663,7 +10793,7 @@ event-source-polyfill@0.0.12:
resolved "https://registry.yarnpkg.com/event-source-polyfill/-/event-source-polyfill-0.0.12.tgz#e539cd67fdef2760a16aa5262fa98134df52e3af"
integrity sha512-JkkW5xv0b2t822XOqoR3VorE9rw3reG0+k3+mACJc+TtyD0wrW9t2LsPcOV2F3kWIUDSP98GXhxm6JU+d7BEvg==
-event-target-shim@^5.0.0, event-target-shim@^5.0.1:
+event-target-shim@^5.0.0:
version "5.0.1"
resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789"
integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==
@@ -10706,11 +10836,6 @@ evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3:
md5.js "^1.3.4"
safe-buffer "^5.1.1"
-exec-async@^2.2.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/exec-async/-/exec-async-2.2.0.tgz#c7c5ad2eef3478d38390c6dd3acfe8af0efc8301"
- integrity sha512-87OpwcEiMia/DeiKFzaQNBNFeN3XkkpYIh9FyOqq5mS2oKv3CBE67PXoEKcr6nodWdXNogTiQ0jE2NGuoffXPw==
-
execa@^4.1.0:
version "4.1.0"
resolved "https://registry.yarnpkg.com/execa/-/execa-4.1.0.tgz#4e5491ad1572f2f17a77d388c6c857135b22847a"
@@ -10766,11 +10891,6 @@ exit-x@^0.2.2:
resolved "https://registry.yarnpkg.com/exit-x/-/exit-x-0.2.2.tgz#1f9052de3b8d99a696b10dad5bced9bdd5c3aa64"
integrity sha512-+I6B/IkJc1o/2tiURyz/ivu/O0nKNEArIUB5O7zBrlDVJr22SCLH3xTeEry428LvFhRzIA1g8izguxJ/gbNcVQ==
-expand-template@^2.0.3:
- version "2.0.3"
- resolved "https://registry.yarnpkg.com/expand-template/-/expand-template-2.0.3.tgz#6e14b3fcee0f3a6340ecb57d2e8918692052a47c"
- integrity sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==
-
expect@30.0.0:
version "30.0.0"
resolved "https://registry.yarnpkg.com/expect/-/expect-30.0.0.tgz#460dfda282e0a8de8302aabee951dba7e79a5a53"
@@ -10794,81 +10914,90 @@ expect@^29.0.0:
jest-message-util "^29.7.0"
jest-util "^29.7.0"
-expo-asset@~11.1.7:
- version "11.1.7"
- resolved "https://registry.yarnpkg.com/expo-asset/-/expo-asset-11.1.7.tgz#dfc61100312cc0dd394d0e0b33613bb0cc898746"
- integrity sha512-b5P8GpjUh08fRCf6m5XPVAh7ra42cQrHBIMgH2UXP+xsj4Wufl6pLy6jRF5w6U7DranUMbsXm8TOyq4EHy7ADg==
+expo-asset@~55.0.3:
+ version "55.0.3"
+ resolved "https://registry.yarnpkg.com/expo-asset/-/expo-asset-55.0.3.tgz#cd4c033e6b8f92fc0a666045ab280da9f0a08d79"
+ integrity sha512-24orrYwSJuMvB8BfF+fPexe+Ily2wcgtUgLvb+izuANkP83iECXTXspzRVqo8uPB2EDF3uglnO3b04XQhjUpTQ==
dependencies:
- "@expo/image-utils" "^0.7.6"
- expo-constants "~17.1.7"
+ "@expo/image-utils" "^0.8.12"
+ expo-constants "~55.0.3"
-expo-constants@~17.1.7:
- version "17.1.7"
- resolved "https://registry.yarnpkg.com/expo-constants/-/expo-constants-17.1.7.tgz#35194c1cef51f1ea756333418f1e077be79a012b"
- integrity sha512-byBjGsJ6T6FrLlhOBxw4EaiMXrZEn/MlUYIj/JAd+FS7ll5X/S4qVRbIimSJtdW47hXMq0zxPfJX6njtA56hHA==
+expo-constants@~55.0.3:
+ version "55.0.3"
+ resolved "https://registry.yarnpkg.com/expo-constants/-/expo-constants-55.0.3.tgz#f6bd9aa36b8b45374d8d52fca02dc3c2956d055e"
+ integrity sha512-sIOWYnipMpgwz4X5lh7qBYW8pTgyn4ElylbVcUHaXWr9MTG7qEO2fwYGun/UxMMHPtcg8KDaBcdKlsL+sIfU3g==
dependencies:
- "@expo/config" "~11.0.12"
- "@expo/env" "~1.0.7"
+ "@expo/config" "~55.0.4"
+ "@expo/env" "~2.0.11"
-expo-file-system@~18.1.11:
- version "18.1.11"
- resolved "https://registry.yarnpkg.com/expo-file-system/-/expo-file-system-18.1.11.tgz#a563c715c4bb5c18729d6d104e8c6cdfbd383e69"
- integrity sha512-HJw/m0nVOKeqeRjPjGdvm+zBi5/NxcdPf8M8P3G2JFvH5Z8vBWqVDic2O58jnT1OFEy0XXzoH9UqFu7cHg9DTQ==
+expo-file-system@~55.0.4:
+ version "55.0.4"
+ resolved "https://registry.yarnpkg.com/expo-file-system/-/expo-file-system-55.0.4.tgz#c03e1831d94a90d7c8d2b896c2d7584d968ab370"
+ integrity sha512-RdVqk2TZS3xfA13MI3GPzlvo435IS+y+po7B8lXA/3heWGqKgADPN3TOE/kAmeaDPaKoR4W3C3/IK3vbsSWu6g==
-expo-font@~13.3.2:
- version "13.3.2"
- resolved "https://registry.yarnpkg.com/expo-font/-/expo-font-13.3.2.tgz#1b5a1a14d6827a48a3f003577d5f7dc6b344a1d3"
- integrity sha512-wUlMdpqURmQ/CNKK/+BIHkDA5nGjMqNlYmW0pJFXY/KE/OG80Qcavdu2sHsL4efAIiNGvYdBS10WztuQYU4X0A==
+expo-font@~55.0.3:
+ version "55.0.3"
+ resolved "https://registry.yarnpkg.com/expo-font/-/expo-font-55.0.3.tgz#39f5d316497513aae0cf9f7fde9a2c39507c9909"
+ integrity sha512-DSyh0gzbVii5+Nb/0pAP3bL+CrB9u1N3YeKTx4wXQT8KUnuOlI4A0sEHIO25MfFpjjtovDn0WGzAtimbPkvJmg==
dependencies:
fontfaceobserver "^2.1.0"
-expo-keep-awake@~14.1.4:
- version "14.1.4"
- resolved "https://registry.yarnpkg.com/expo-keep-awake/-/expo-keep-awake-14.1.4.tgz#80197728563e0e17523e5a606fbd6fbed9639503"
- integrity sha512-wU9qOnosy4+U4z/o4h8W9PjPvcFMfZXrlUoKTMBW7F4pLqhkkP/5G4EviPZixv4XWFMjn1ExQ5rV6BX8GwJsWA==
+expo-keep-awake@~55.0.2:
+ version "55.0.2"
+ resolved "https://registry.yarnpkg.com/expo-keep-awake/-/expo-keep-awake-55.0.2.tgz#e7637231ebd4aef008ffe49df53df47317796862"
+ integrity sha512-yxmmu0toMsszQN9ro8XuljicumudT4QwXiF7kswlDg5/48Y2HPfopod+8mOrIf7+UDUv99u6yH8NgSfWf0u+IA==
-expo-modules-autolinking@2.1.14:
- version "2.1.14"
- resolved "https://registry.yarnpkg.com/expo-modules-autolinking/-/expo-modules-autolinking-2.1.14.tgz#4b4afddefba1a8b6fec0bf795cf6fe52c81343d1"
- integrity sha512-nT5ERXwc+0ZT/pozDoJjYZyUQu5RnXMk9jDGm5lg+PiKvsrCTSA/2/eftJGMxLkTjVI2MXp5WjSz3JRjbA7UXA==
+expo-modules-autolinking@55.0.3:
+ version "55.0.3"
+ resolved "https://registry.yarnpkg.com/expo-modules-autolinking/-/expo-modules-autolinking-55.0.3.tgz#31744119f4b78a0ac949d269d0765aae22b7d51f"
+ integrity sha512-C4Yc/D8BvQeZ2D30qOKVbMPAE5DzrVtdfYiSg44mCGZIKUNX1KELcAOxSOtzGbW5mFr+V0Og54TxM5TlT5Fr1g==
dependencies:
"@expo/spawn-async" "^1.7.2"
chalk "^4.1.0"
commander "^7.2.0"
- find-up "^5.0.0"
- glob "^10.4.2"
require-from-string "^2.0.2"
resolve-from "^5.0.0"
-expo-modules-core@2.5.0:
- version "2.5.0"
- resolved "https://registry.yarnpkg.com/expo-modules-core/-/expo-modules-core-2.5.0.tgz#cc098607c9b0665e0cbd0a423c9542253caab58a"
- integrity sha512-aIbQxZE2vdCKsolQUl6Q9Farlf8tjh/ROR4hfN1qT7QBGPl1XrJGnaOKkcgYaGrlzCPg/7IBe0Np67GzKMZKKQ==
+expo-modules-core@55.0.7:
+ version "55.0.7"
+ resolved "https://registry.yarnpkg.com/expo-modules-core/-/expo-modules-core-55.0.7.tgz#6aff5b9ae6d219835cd7d4619802421066577193"
+ integrity sha512-eoW4mfE4nXZQya1TuMbBGSvudqlSA/cg52tw7Mpmdu6WhZ2WQAmt8o/ltuHZRH19FFnoMtacClwcUgi6+z1LMg==
dependencies:
invariant "^2.2.4"
-expo@^53.0.0:
- version "53.0.20"
- resolved "https://registry.yarnpkg.com/expo/-/expo-53.0.20.tgz#e11b553322de313d47c407367d8d48d3a073e3cc"
- integrity sha512-Nh+HIywVy9KxT/LtH08QcXqrxtUOA9BZhsXn3KCsAYA+kNb80M8VKN8/jfQF+I6CgeKyFKJoPNsWgI0y0VBGrA==
+expo-server@^55.0.3:
+ version "55.0.3"
+ resolved "https://registry.yarnpkg.com/expo-server/-/expo-server-55.0.3.tgz#6286068725b5554e2f3e639dda2d54b50a2f5aa5"
+ integrity sha512-DeFRWvLb7pcxqrvDFK95Eujh/VFddRfmTGbcTcPVMhYl6om7eKYe8CgpfqIi2mK0rOnLHw7DPymmcPXXWuFbFw==
+
+expo@55.0.0-preview.9:
+ version "55.0.0-preview.9"
+ resolved "https://registry.yarnpkg.com/expo/-/expo-55.0.0-preview.9.tgz#812247a1aa25259730fc6b723f1e87b6c2b53511"
+ integrity sha512-/JtS2+U8Yq6wziNXIpG4tFpI4xLYtizlHrDe0biuZTY2UirtDSaCI3fBuGHQXKleUJpKArC9INEzXWLLFOPj+w==
dependencies:
"@babel/runtime" "^7.20.0"
- "@expo/cli" "0.24.20"
- "@expo/config" "~11.0.13"
- "@expo/config-plugins" "~10.1.2"
- "@expo/fingerprint" "0.13.4"
- "@expo/metro-config" "0.20.17"
- "@expo/vector-icons" "^14.0.0"
- babel-preset-expo "~13.2.3"
- expo-asset "~11.1.7"
- expo-constants "~17.1.7"
- expo-file-system "~18.1.11"
- expo-font "~13.3.2"
- expo-keep-awake "~14.1.4"
- expo-modules-autolinking "2.1.14"
- expo-modules-core "2.5.0"
- react-native-edge-to-edge "1.6.0"
- whatwg-url-without-unicode "8.0.0-3"
+ "@expo/cli" "55.0.6"
+ "@expo/config" "~55.0.4"
+ "@expo/config-plugins" "~55.0.4"
+ "@expo/devtools" "55.0.2"
+ "@expo/fingerprint" "0.16.3"
+ "@expo/local-build-cache-provider" "55.0.3"
+ "@expo/log-box" "55.0.5"
+ "@expo/metro" "~54.2.0"
+ "@expo/metro-config" "55.0.4"
+ "@expo/vector-icons" "^15.0.2"
+ "@ungap/structured-clone" "^1.3.0"
+ babel-preset-expo "~55.0.3"
+ expo-asset "~55.0.3"
+ expo-constants "~55.0.3"
+ expo-file-system "~55.0.4"
+ expo-font "~55.0.3"
+ expo-keep-awake "~55.0.2"
+ expo-modules-autolinking "55.0.3"
+ expo-modules-core "55.0.7"
+ pretty-format "^29.7.0"
+ react-refresh "^0.14.2"
+ whatwg-url-minimum "^0.1.1"
exponential-backoff@^3.1.1:
version "3.1.2"
@@ -10959,12 +11088,7 @@ fast-diff@^1.1.2:
resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.3.0.tgz#ece407fa550a64d638536cd727e129c61616e0f0"
integrity sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==
-fast-fifo@^1.2.0, fast-fifo@^1.3.2:
- version "1.3.2"
- resolved "https://registry.yarnpkg.com/fast-fifo/-/fast-fifo-1.3.2.tgz#286e31de96eb96d38a97899815740ba2a4f3640c"
- integrity sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==
-
-fast-glob@^3.2.9, fast-glob@^3.3.2:
+fast-glob@^3.2.9, fast-glob@^3.3.2, fast-glob@^3.3.3:
version "3.3.3"
resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.3.tgz#d06d585ce8dba90a16b0505c543c3ccfb3aeb818"
integrity sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==
@@ -11036,6 +11160,11 @@ faye-websocket@0.11.4, faye-websocket@^0.11.3:
dependencies:
websocket-driver ">=0.5.1"
+fb-dotslash@0.5.8:
+ version "0.5.8"
+ resolved "https://registry.yarnpkg.com/fb-dotslash/-/fb-dotslash-0.5.8.tgz#c5ef3dacd75e1ddb2197c367052464ddde0115f5"
+ integrity sha512-XHYLKk9J4BupDxi9bSEhkfss0m+Vr9ChTrjhf9l2iw3jB5C7BnY4GVPoMcqbrTutsKJso6yj2nAB6BI/F2oZaA==
+
fb-watchman@^2.0.0, fb-watchman@^2.0.2:
version "2.0.2"
resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.2.tgz#e9524ee6b5c77e9e5001af0f85f3adbb8623255c"
@@ -11043,6 +11172,11 @@ fb-watchman@^2.0.0, fb-watchman@^2.0.2:
dependencies:
bser "2.1.1"
+fdir@^6.5.0:
+ version "6.5.0"
+ resolved "https://registry.yarnpkg.com/fdir/-/fdir-6.5.0.tgz#ed2ab967a331ade62f18d077dae192684d50d350"
+ integrity sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==
+
fetch-blob@^3.1.2, fetch-blob@^3.1.4:
version "3.2.0"
resolved "https://registry.yarnpkg.com/fetch-blob/-/fetch-blob-3.2.0.tgz#f09b8d4bbd45adc6f0c20b7e787e793e309dcce9"
@@ -11051,6 +11185,11 @@ fetch-blob@^3.1.2, fetch-blob@^3.1.4:
node-domexception "^1.0.0"
web-streams-polyfill "^3.0.3"
+fetch-nodeshim@^0.4.4:
+ version "0.4.5"
+ resolved "https://registry.yarnpkg.com/fetch-nodeshim/-/fetch-nodeshim-0.4.5.tgz#618d643ee1f77040d7dde718147717fd0cbb29a8"
+ integrity sha512-n6dRDiC+/TlluvZxGDBnyNYqPftkDFjJIvXluekSSGildXSXvMWXXo+1/yK363BOZlOI2Q+PitrcLcF5CSolEA==
+
fflate@^0.4.1:
version "0.4.8"
resolved "https://registry.yarnpkg.com/fflate/-/fflate-0.4.8.tgz#f90b82aefbd8ac174213abb338bd7ef848f0f5ae"
@@ -11306,21 +11445,11 @@ forwarded@0.2.0:
resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811"
integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==
-freeport-async@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/freeport-async/-/freeport-async-2.0.0.tgz#6adf2ec0c629d11abff92836acd04b399135bab4"
- integrity sha512-K7od3Uw45AJg00XUmy15+Hae2hOcgKcmN3/EF6Y7i01O0gaqiRx8sUSpsb9+BRNL8RPBrhzPsVfy8q9ADlJuWQ==
-
fresh@0.5.2:
version "0.5.2"
resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7"
integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=
-fs-constants@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad"
- integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==
-
fs-extra@^10.1.0:
version "10.1.0"
resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.1.0.tgz#02873cfbc4084dde127eaa5f9905eef2325d1abf"
@@ -11330,10 +11459,10 @@ fs-extra@^10.1.0:
jsonfile "^6.0.1"
universalify "^2.0.0"
-fs-extra@^11.3.0:
- version "11.3.0"
- resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.3.0.tgz#0daced136bbaf65a555a326719af931adc7a314d"
- integrity sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==
+fs-extra@^11.3.3:
+ version "11.3.3"
+ resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.3.3.tgz#a27da23b72524e81ac6c3815cc0179b8c74c59ee"
+ integrity sha512-VWSRii4t0AFm6ixFFmLLx1t7wS1gh+ckoa84aOeapGum0h+EZd1EhEumSB+ZdDLnEPuucsVB9oB7cxJHap6Afg==
dependencies:
graceful-fs "^4.2.0"
jsonfile "^6.0.1"
@@ -11534,11 +11663,6 @@ git-refresher@^0.1.1:
commander "^12.1.0"
simple-git "^3.27.0"
-github-from-package@0.0.0:
- version "0.0.0"
- resolved "https://registry.yarnpkg.com/github-from-package/-/github-from-package-0.0.0.tgz#97fb5d96bfde8973313f20e8288ef9a167fa64ce"
- integrity sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==
-
glob-parent@^5.1.2, glob-parent@~5.1.2:
version "5.1.2"
resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
@@ -11570,7 +11694,7 @@ glob@7.1.7:
once "^1.3.0"
path-is-absolute "^1.0.0"
-glob@^10.3.10, glob@^10.4.2:
+glob@^10.3.10:
version "10.4.5"
resolved "https://registry.yarnpkg.com/glob/-/glob-10.4.5.tgz#f4d9f0b90ffdbab09c9d77f5f29b4262517b0956"
integrity sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==
@@ -11582,6 +11706,15 @@ glob@^10.3.10, glob@^10.4.2:
package-json-from-dist "^1.0.0"
path-scurry "^1.11.1"
+glob@^13.0.0:
+ version "13.0.1"
+ resolved "https://registry.yarnpkg.com/glob/-/glob-13.0.1.tgz#c59a2500c9a5f1ab9cdd370217ced63c2aa81e60"
+ integrity sha512-B7U/vJpE3DkJ5WXTgTpTRN63uV42DseiXXKMwG14LQBXmsdeIoHAPbU/MEo6II0k5ED74uc2ZGTC6MwHFQhF6w==
+ dependencies:
+ minimatch "^10.1.2"
+ minipass "^7.1.2"
+ path-scurry "^2.0.0"
+
glob@^7.1.1, glob@^7.1.3, glob@^7.1.4:
version "7.2.3"
resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b"
@@ -11825,30 +11958,35 @@ help-me@^5.0.0:
resolved "https://registry.yarnpkg.com/help-me/-/help-me-5.0.0.tgz#b1ebe63b967b74060027c2ac61f9be12d354a6f6"
integrity sha512-7xgomUX6ADmcYzFik0HzAxh/73YlKR9bmFzf51CZwR+b6YtzU2m0u49hQCqV6SvlqIqsaxovfwdvbnsw3b/zpg==
-hermes-estree@0.25.1:
- version "0.25.1"
- resolved "https://registry.yarnpkg.com/hermes-estree/-/hermes-estree-0.25.1.tgz#6aeec17d1983b4eabf69721f3aa3eb705b17f480"
- integrity sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==
+hermes-compiler@0.14.1:
+ version "0.14.1"
+ resolved "https://registry.yarnpkg.com/hermes-compiler/-/hermes-compiler-0.14.1.tgz#5381d2bb88454027d16736b8cb7fddaaf1556538"
+ integrity sha512-+RPPQlayoZ9n6/KXKt5SFILWXCGJ/LV5d24L5smXrvTDrPS4L6dSctPczXauuvzFP3QEJbD1YO7Z3Ra4a+4IhA==
hermes-estree@0.29.1:
version "0.29.1"
resolved "https://registry.yarnpkg.com/hermes-estree/-/hermes-estree-0.29.1.tgz#043c7db076e0e8ef8c5f6ed23828d1ba463ebcc5"
integrity sha512-jl+x31n4/w+wEqm0I2r4CMimukLbLQEYpisys5oCre611CI5fc9TxhqkBBCJ1edDG4Kza0f7CgNz8xVMLZQOmQ==
-hermes-parser@0.25.1:
- version "0.25.1"
- resolved "https://registry.yarnpkg.com/hermes-parser/-/hermes-parser-0.25.1.tgz#5be0e487b2090886c62bd8a11724cd766d5f54d1"
- integrity sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==
- dependencies:
- hermes-estree "0.25.1"
+hermes-estree@0.32.0:
+ version "0.32.0"
+ resolved "https://registry.yarnpkg.com/hermes-estree/-/hermes-estree-0.32.0.tgz#bb7da6613ab8e67e334a1854ea1e209f487d307b"
+ integrity sha512-KWn3BqnlDOl97Xe1Yviur6NbgIZ+IP+UVSpshlZWkq+EtoHg6/cwiDj/osP9PCEgFE15KBm1O55JRwbMEm5ejQ==
-hermes-parser@0.29.1:
+hermes-parser@0.29.1, hermes-parser@^0.29.1:
version "0.29.1"
resolved "https://registry.yarnpkg.com/hermes-parser/-/hermes-parser-0.29.1.tgz#436b24bcd7bb1e71f92a04c396ccc0716c288d56"
integrity sha512-xBHWmUtRC5e/UL0tI7Ivt2riA/YBq9+SiYFU7C1oBa/j2jYGlIF9043oak1F47ihuDIxQ5nbsKueYJDRY02UgA==
dependencies:
hermes-estree "0.29.1"
+hermes-parser@0.32.0:
+ version "0.32.0"
+ resolved "https://registry.yarnpkg.com/hermes-parser/-/hermes-parser-0.32.0.tgz#7916984ef6fdce62e7415d354cf35392061cd303"
+ integrity sha512-g4nBOWFpuiTqjR3LZdRxKUkij9iyveWeuks7INEsMX741f3r9xxrOe8TeQfUxtda0eXmiIFiMQzoeSQEno33Hw==
+ dependencies:
+ hermes-estree "0.32.0"
+
hi-base32@^0.5.1:
version "0.5.1"
resolved "https://registry.yarnpkg.com/hi-base32/-/hi-base32-0.5.1.tgz#1279f2ddae2673219ea5870c2121d2a33132857e"
@@ -12099,14 +12237,6 @@ image-size@^1.0.2:
dependencies:
queue "6.0.2"
-import-fresh@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546"
- integrity sha1-2BNVwVYS04bGH53dOSLUMEgipUY=
- dependencies:
- caller-path "^2.0.0"
- resolve-from "^3.0.0"
-
import-fresh@^3.2.1, import-fresh@^3.3.0:
version "3.3.0"
resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
@@ -12151,11 +12281,6 @@ inherits@2.0.3:
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
integrity sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==
-ini@~1.3.0:
- version "1.3.8"
- resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c"
- integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==
-
injectpromise@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/injectpromise/-/injectpromise-1.0.0.tgz#c621f7df2bbfc1164d714f1fb229adec2079da39"
@@ -12315,11 +12440,6 @@ is-date-object@^1.0.1, is-date-object@^1.0.5, is-date-object@^1.1.0:
call-bound "^1.0.2"
has-tostringtag "^1.0.2"
-is-directory@^0.3.1:
- version "0.3.1"
- resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1"
- integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=
-
is-docker@^2.0.0, is-docker@^2.1.1:
version "2.2.1"
resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa"
@@ -13354,11 +13474,6 @@ json-buffer@3.0.1:
resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13"
integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==
-json-parse-better-errors@^1.0.1:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9"
- integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==
-
json-parse-even-better-errors@^2.3.0, json-parse-even-better-errors@^2.3.1:
version "2.3.1"
resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d"
@@ -13553,73 +13668,79 @@ lighthouse-logger@^1.0.0:
debug "^2.6.9"
marky "^1.2.2"
-lightningcss-darwin-arm64@1.27.0:
- version "1.27.0"
- resolved "https://registry.yarnpkg.com/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.27.0.tgz#565bd610533941cba648a70e105987578d82f996"
- integrity sha512-Gl/lqIXY+d+ySmMbgDf0pgaWSqrWYxVHoc88q+Vhf2YNzZ8DwoRzGt5NZDVqqIW5ScpSnmmjcgXP87Dn2ylSSQ==
-
-lightningcss-darwin-x64@1.27.0:
- version "1.27.0"
- resolved "https://registry.yarnpkg.com/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.27.0.tgz#c906a267237b1c7fe08bff6c5ac032c099bc9482"
- integrity sha512-0+mZa54IlcNAoQS9E0+niovhyjjQWEMrwW0p2sSdLRhLDc8LMQ/b67z7+B5q4VmjYCMSfnFi3djAAQFIDuj/Tg==
-
-lightningcss-freebsd-x64@1.27.0:
- version "1.27.0"
- resolved "https://registry.yarnpkg.com/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.27.0.tgz#a7c3c4d6ee18dffeb8fa69f14f8f9267f7dc0c34"
- integrity sha512-n1sEf85fePoU2aDN2PzYjoI8gbBqnmLGEhKq7q0DKLj0UTVmOTwDC7PtLcy/zFxzASTSBlVQYJUhwIStQMIpRA==
-
-lightningcss-linux-arm-gnueabihf@1.27.0:
- version "1.27.0"
- resolved "https://registry.yarnpkg.com/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.27.0.tgz#c7c16432a571ec877bf734fe500e4a43d48c2814"
- integrity sha512-MUMRmtdRkOkd5z3h986HOuNBD1c2lq2BSQA1Jg88d9I7bmPGx08bwGcnB75dvr17CwxjxD6XPi3Qh8ArmKFqCA==
-
-lightningcss-linux-arm64-gnu@1.27.0:
- version "1.27.0"
- resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.27.0.tgz#cfd9e18df1cd65131da286ddacfa3aee6862a752"
- integrity sha512-cPsxo1QEWq2sfKkSq2Bq5feQDHdUEwgtA9KaB27J5AX22+l4l0ptgjMZZtYtUnteBofjee+0oW1wQ1guv04a7A==
-
-lightningcss-linux-arm64-musl@1.27.0:
- version "1.27.0"
- resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.27.0.tgz#6682ff6b9165acef9a6796bd9127a8e1247bb0ed"
- integrity sha512-rCGBm2ax7kQ9pBSeITfCW9XSVF69VX+fm5DIpvDZQl4NnQoMQyRwhZQm9pd59m8leZ1IesRqWk2v/DntMo26lg==
-
-lightningcss-linux-x64-gnu@1.27.0:
- version "1.27.0"
- resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.27.0.tgz#714221212ad184ddfe974bbb7dbe9300dfde4bc0"
- integrity sha512-Dk/jovSI7qqhJDiUibvaikNKI2x6kWPN79AQiD/E/KeQWMjdGe9kw51RAgoWFDi0coP4jinaH14Nrt/J8z3U4A==
-
-lightningcss-linux-x64-musl@1.27.0:
- version "1.27.0"
- resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.27.0.tgz#247958daf622a030a6dc2285afa16b7184bdf21e"
- integrity sha512-QKjTxXm8A9s6v9Tg3Fk0gscCQA1t/HMoF7Woy1u68wCk5kS4fR+q3vXa1p3++REW784cRAtkYKrPy6JKibrEZA==
-
-lightningcss-win32-arm64-msvc@1.27.0:
- version "1.27.0"
- resolved "https://registry.yarnpkg.com/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.27.0.tgz#64cfe473c264ef5dc275a4d57a516d77fcac6bc9"
- integrity sha512-/wXegPS1hnhkeG4OXQKEMQeJd48RDC3qdh+OA8pCuOPCyvnm/yEayrJdJVqzBsqpy1aJklRCVxscpFur80o6iQ==
-
-lightningcss-win32-x64-msvc@1.27.0:
- version "1.27.0"
- resolved "https://registry.yarnpkg.com/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.27.0.tgz#237d0dc87d9cdc9cf82536bcbc07426fa9f3f422"
- integrity sha512-/OJLj94Zm/waZShL8nB5jsNj3CfNATLCTyFxZyouilfTmSoLDX7VlVAmhPHoZWVFp4vdmoiEbPEYC8HID3m6yw==
-
-lightningcss@~1.27.0:
- version "1.27.0"
- resolved "https://registry.yarnpkg.com/lightningcss/-/lightningcss-1.27.0.tgz#d4608e63044343836dd9769f6c8b5d607867649a"
- integrity sha512-8f7aNmS1+etYSLHht0fQApPc2kNO8qGRutifN5rVIc6Xo6ABsEbqOr758UwI7ALVbTt4x1fllKt0PYgzD9S3yQ==
- dependencies:
- detect-libc "^1.0.3"
+lightningcss-android-arm64@1.30.2:
+ version "1.30.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-android-arm64/-/lightningcss-android-arm64-1.30.2.tgz#6966b7024d39c94994008b548b71ab360eb3a307"
+ integrity sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A==
+
+lightningcss-darwin-arm64@1.30.2:
+ version "1.30.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.30.2.tgz#a5fa946d27c029e48c7ff929e6e724a7de46eb2c"
+ integrity sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==
+
+lightningcss-darwin-x64@1.30.2:
+ version "1.30.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.30.2.tgz#5ce87e9cd7c4f2dcc1b713f5e8ee185c88d9b7cd"
+ integrity sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==
+
+lightningcss-freebsd-x64@1.30.2:
+ version "1.30.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.30.2.tgz#6ae1d5e773c97961df5cff57b851807ef33692a5"
+ integrity sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==
+
+lightningcss-linux-arm-gnueabihf@1.30.2:
+ version "1.30.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.30.2.tgz#62c489610c0424151a6121fa99d77731536cdaeb"
+ integrity sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==
+
+lightningcss-linux-arm64-gnu@1.30.2:
+ version "1.30.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.30.2.tgz#2a3661b56fe95a0cafae90be026fe0590d089298"
+ integrity sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==
+
+lightningcss-linux-arm64-musl@1.30.2:
+ version "1.30.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.30.2.tgz#d7ddd6b26959245e026bc1ad9eb6aa983aa90e6b"
+ integrity sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==
+
+lightningcss-linux-x64-gnu@1.30.2:
+ version "1.30.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.30.2.tgz#5a89814c8e63213a5965c3d166dff83c36152b1a"
+ integrity sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==
+
+lightningcss-linux-x64-musl@1.30.2:
+ version "1.30.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.30.2.tgz#808c2e91ce0bf5d0af0e867c6152e5378c049728"
+ integrity sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==
+
+lightningcss-win32-arm64-msvc@1.30.2:
+ version "1.30.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.30.2.tgz#ab4a8a8a2e6a82a4531e8bbb6bf0ff161ee6625a"
+ integrity sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==
+
+lightningcss-win32-x64-msvc@1.30.2:
+ version "1.30.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.30.2.tgz#f01f382c8e0a27e1c018b0bee316d210eac43b6e"
+ integrity sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==
+
+lightningcss@^1.30.1:
+ version "1.30.2"
+ resolved "https://registry.yarnpkg.com/lightningcss/-/lightningcss-1.30.2.tgz#4ade295f25d140f487d37256f4cd40dc607696d0"
+ integrity sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==
+ dependencies:
+ detect-libc "^2.0.3"
optionalDependencies:
- lightningcss-darwin-arm64 "1.27.0"
- lightningcss-darwin-x64 "1.27.0"
- lightningcss-freebsd-x64 "1.27.0"
- lightningcss-linux-arm-gnueabihf "1.27.0"
- lightningcss-linux-arm64-gnu "1.27.0"
- lightningcss-linux-arm64-musl "1.27.0"
- lightningcss-linux-x64-gnu "1.27.0"
- lightningcss-linux-x64-musl "1.27.0"
- lightningcss-win32-arm64-msvc "1.27.0"
- lightningcss-win32-x64-msvc "1.27.0"
+ lightningcss-android-arm64 "1.30.2"
+ lightningcss-darwin-arm64 "1.30.2"
+ lightningcss-darwin-x64 "1.30.2"
+ lightningcss-freebsd-x64 "1.30.2"
+ lightningcss-linux-arm-gnueabihf "1.30.2"
+ lightningcss-linux-arm64-gnu "1.30.2"
+ lightningcss-linux-arm64-musl "1.30.2"
+ lightningcss-linux-x64-gnu "1.30.2"
+ lightningcss-linux-x64-musl "1.30.2"
+ lightningcss-win32-arm64-msvc "1.30.2"
+ lightningcss-win32-x64-msvc "1.30.2"
lines-and-columns@^1.1.6:
version "1.1.6"
@@ -13860,6 +13981,11 @@ lru-cache@^10.0.1, lru-cache@^10.0.2, lru-cache@^10.2.0:
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.4.3.tgz#410fc8a17b70e598013df257c2446b7f3383f119"
integrity sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==
+lru-cache@^11.0.0:
+ version "11.2.5"
+ resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-11.2.5.tgz#6811ae01652ae5d749948cdd80bcc22218c6744f"
+ integrity sha512-vFrFJkWtJvJnD5hg+hJvVE8Lh/TcMzKnTgCWmtBipwI5yLX/iX+5UB2tfuyODF5E7k9xEzMdYgGqaSb1c0c5Yw==
+
lru-cache@^5.1.1:
version "5.1.1"
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920"
@@ -13973,60 +14099,60 @@ methods@~1.1.2:
resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee"
integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=
-metro-babel-transformer@0.82.5:
- version "0.82.5"
- resolved "https://registry.yarnpkg.com/metro-babel-transformer/-/metro-babel-transformer-0.82.5.tgz#a65ed29265d8257109ab8c37884e6e3a2edee86d"
- integrity sha512-W/scFDnwJXSccJYnOFdGiYr9srhbHPdxX9TvvACOFsIXdLilh3XuxQl/wXW6jEJfgIb0jTvoTlwwrqvuwymr6Q==
+metro-babel-transformer@0.83.3:
+ version "0.83.3"
+ resolved "https://registry.yarnpkg.com/metro-babel-transformer/-/metro-babel-transformer-0.83.3.tgz#d8c134615530c9ee61364526d44ca4bb0c5343ea"
+ integrity sha512-1vxlvj2yY24ES1O5RsSIvg4a4WeL7PFXgKOHvXTXiW0deLvQr28ExXj6LjwCCDZ4YZLhq6HddLpZnX4dEdSq5g==
dependencies:
"@babel/core" "^7.25.2"
flow-enums-runtime "^0.0.6"
- hermes-parser "0.29.1"
+ hermes-parser "0.32.0"
nullthrows "^1.1.1"
-metro-cache-key@0.82.5:
- version "0.82.5"
- resolved "https://registry.yarnpkg.com/metro-cache-key/-/metro-cache-key-0.82.5.tgz#290a0054b28a708266fb91c8028cf94be04f99c9"
- integrity sha512-qpVmPbDJuRLrT4kcGlUouyqLGssJnbTllVtvIgXfR7ZuzMKf0mGS+8WzcqzNK8+kCyakombQWR0uDd8qhWGJcA==
+metro-cache-key@0.83.3:
+ version "0.83.3"
+ resolved "https://registry.yarnpkg.com/metro-cache-key/-/metro-cache-key-0.83.3.tgz#ae6c5d4eb1ad8d06a92bf7294ca730a8d880b573"
+ integrity sha512-59ZO049jKzSmvBmG/B5bZ6/dztP0ilp0o988nc6dpaDsU05Cl1c/lRf+yx8m9WW/JVgbmfO5MziBU559XjI5Zw==
dependencies:
flow-enums-runtime "^0.0.6"
-metro-cache@0.82.5:
- version "0.82.5"
- resolved "https://registry.yarnpkg.com/metro-cache/-/metro-cache-0.82.5.tgz#4c8fe58cd5fa30b87db0b2b6a650a771ec6fe162"
- integrity sha512-AwHV9607xZpedu1NQcjUkua8v7HfOTKfftl6Vc9OGr/jbpiJX6Gpy8E/V9jo/U9UuVYX2PqSUcVNZmu+LTm71Q==
+metro-cache@0.83.3:
+ version "0.83.3"
+ resolved "https://registry.yarnpkg.com/metro-cache/-/metro-cache-0.83.3.tgz#f1245cc48570c47d8944495e61d67f0228f10172"
+ integrity sha512-3jo65X515mQJvKqK3vWRblxDEcgY55Sk3w4xa6LlfEXgQ9g1WgMh9m4qVZVwgcHoLy0a2HENTPCCX4Pk6s8c8Q==
dependencies:
exponential-backoff "^3.1.1"
flow-enums-runtime "^0.0.6"
https-proxy-agent "^7.0.5"
- metro-core "0.82.5"
+ metro-core "0.83.3"
-metro-config@0.82.5, metro-config@^0.82.0:
- version "0.82.5"
- resolved "https://registry.yarnpkg.com/metro-config/-/metro-config-0.82.5.tgz#07366f32c3fe6203d630af7df4781900816c7c85"
- integrity sha512-/r83VqE55l0WsBf8IhNmc/3z71y2zIPe5kRSuqA5tY/SL/ULzlHUJEMd1szztd0G45JozLwjvrhAzhDPJ/Qo/g==
+metro-config@0.83.3, metro-config@^0.83.3:
+ version "0.83.3"
+ resolved "https://registry.yarnpkg.com/metro-config/-/metro-config-0.83.3.tgz#a30e7a69b5cf8c4ac4c4b68b1b4c33649ae129a2"
+ integrity sha512-mTel7ipT0yNjKILIan04bkJkuCzUUkm2SeEaTads8VfEecCh+ltXchdq6DovXJqzQAXuR2P9cxZB47Lg4klriA==
dependencies:
connect "^3.6.5"
- cosmiconfig "^5.0.5"
flow-enums-runtime "^0.0.6"
jest-validate "^29.7.0"
- metro "0.82.5"
- metro-cache "0.82.5"
- metro-core "0.82.5"
- metro-runtime "0.82.5"
+ metro "0.83.3"
+ metro-cache "0.83.3"
+ metro-core "0.83.3"
+ metro-runtime "0.83.3"
+ yaml "^2.6.1"
-metro-core@0.82.5, metro-core@^0.82.0:
- version "0.82.5"
- resolved "https://registry.yarnpkg.com/metro-core/-/metro-core-0.82.5.tgz#fda1b2f7365e3a09055dd72ba1681f8fc1f6f492"
- integrity sha512-OJL18VbSw2RgtBm1f2P3J5kb892LCVJqMvslXxuxjAPex8OH7Eb8RBfgEo7VZSjgb/LOf4jhC4UFk5l5tAOHHA==
+metro-core@0.83.3, metro-core@^0.83.3:
+ version "0.83.3"
+ resolved "https://registry.yarnpkg.com/metro-core/-/metro-core-0.83.3.tgz#007e93f7d1983777da8988dfb103ad897c9835b8"
+ integrity sha512-M+X59lm7oBmJZamc96usuF1kusd5YimqG/q97g4Ac7slnJ3YiGglW5CsOlicTR5EWf8MQFxxjDoB6ytTqRe8Hw==
dependencies:
flow-enums-runtime "^0.0.6"
lodash.throttle "^4.1.1"
- metro-resolver "0.82.5"
+ metro-resolver "0.83.3"
-metro-file-map@0.82.5:
- version "0.82.5"
- resolved "https://registry.yarnpkg.com/metro-file-map/-/metro-file-map-0.82.5.tgz#3e47410a9ce8f6c913480970226a17371c2d2974"
- integrity sha512-vpMDxkGIB+MTN8Af5hvSAanc6zXQipsAUO+XUx3PCQieKUfLwdoa8qaZ1WAQYRpaU+CJ8vhBcxtzzo3d9IsCIQ==
+metro-file-map@0.83.3:
+ version "0.83.3"
+ resolved "https://registry.yarnpkg.com/metro-file-map/-/metro-file-map-0.83.3.tgz#3d79fbb1d379ab178dd895ce54cb5ecb183d74a2"
+ integrity sha512-jg5AcyE0Q9Xbbu/4NAwwZkmQn7doJCKGW0SLeSJmzNB9Z24jBe0AL2PHNMy4eu0JiKtNWHz9IiONGZWq7hjVTA==
dependencies:
debug "^4.4.0"
fb-watchman "^2.0.0"
@@ -14038,61 +14164,61 @@ metro-file-map@0.82.5:
nullthrows "^1.1.1"
walker "^1.0.7"
-metro-minify-terser@0.82.5:
- version "0.82.5"
- resolved "https://registry.yarnpkg.com/metro-minify-terser/-/metro-minify-terser-0.82.5.tgz#5dc77d53b6ef4079bd9c752ae046d557df4ae584"
- integrity sha512-v6Nx7A4We6PqPu/ta1oGTqJ4Usz0P7c+3XNeBxW9kp8zayS3lHUKR0sY0wsCHInxZlNAEICx791x+uXytFUuwg==
+metro-minify-terser@0.83.3:
+ version "0.83.3"
+ resolved "https://registry.yarnpkg.com/metro-minify-terser/-/metro-minify-terser-0.83.3.tgz#c1c70929c86b14c8bf03e6321b4f9310bc8dbe87"
+ integrity sha512-O2BmfWj6FSfzBLrNCXt/rr2VYZdX5i6444QJU0fFoc7Ljg+Q+iqebwE3K0eTvkI6TRjELsXk1cjU+fXwAR4OjQ==
dependencies:
flow-enums-runtime "^0.0.6"
terser "^5.15.0"
-metro-resolver@0.82.5:
- version "0.82.5"
- resolved "https://registry.yarnpkg.com/metro-resolver/-/metro-resolver-0.82.5.tgz#cb810038d488a47334df444312b23f0090eca5c3"
- integrity sha512-kFowLnWACt3bEsuVsaRNgwplT8U7kETnaFHaZePlARz4Fg8tZtmRDUmjaD68CGAwc0rwdwNCkWizLYpnyVcs2g==
+metro-resolver@0.83.3:
+ version "0.83.3"
+ resolved "https://registry.yarnpkg.com/metro-resolver/-/metro-resolver-0.83.3.tgz#06207bdddc280b9335722a8c992aeec017413942"
+ integrity sha512-0js+zwI5flFxb1ktmR///bxHYg7OLpRpWZlBBruYG8OKYxeMP7SV0xQ/o/hUelrEMdK4LJzqVtHAhBm25LVfAQ==
dependencies:
flow-enums-runtime "^0.0.6"
-metro-runtime@0.82.5, metro-runtime@^0.82.0:
- version "0.82.5"
- resolved "https://registry.yarnpkg.com/metro-runtime/-/metro-runtime-0.82.5.tgz#97840760e4cee49f08948dd918dbeba08dd0d0ec"
- integrity sha512-rQZDoCUf7k4Broyw3Ixxlq5ieIPiR1ULONdpcYpbJQ6yQ5GGEyYjtkztGD+OhHlw81LCR2SUAoPvtTus2WDK5g==
+metro-runtime@0.83.3, metro-runtime@^0.83.3:
+ version "0.83.3"
+ resolved "https://registry.yarnpkg.com/metro-runtime/-/metro-runtime-0.83.3.tgz#ff504df5d93f38b1af396715b327e589ba8d184d"
+ integrity sha512-JHCJb9ebr9rfJ+LcssFYA2x1qPYuSD/bbePupIGhpMrsla7RCwC/VL3yJ9cSU+nUhU4c9Ixxy8tBta+JbDeZWw==
dependencies:
"@babel/runtime" "^7.25.0"
flow-enums-runtime "^0.0.6"
-metro-source-map@0.82.5, metro-source-map@^0.82.0:
- version "0.82.5"
- resolved "https://registry.yarnpkg.com/metro-source-map/-/metro-source-map-0.82.5.tgz#85e2e9672bff6d6cefb3b65b96fcc69f929c69c6"
- integrity sha512-wH+awTOQJVkbhn2SKyaw+0cd+RVSCZ3sHVgyqJFQXIee/yLs3dZqKjjeKKhhVeudgjXo7aE/vSu/zVfcQEcUfw==
+metro-source-map@0.83.3, metro-source-map@^0.83.3:
+ version "0.83.3"
+ resolved "https://registry.yarnpkg.com/metro-source-map/-/metro-source-map-0.83.3.tgz#04bb464f7928ea48bcdfd18912c8607cf317c898"
+ integrity sha512-xkC3qwUBh2psVZgVavo8+r2C9Igkk3DibiOXSAht1aYRRcztEZNFtAMtfSB7sdO2iFMx2Mlyu++cBxz/fhdzQg==
dependencies:
"@babel/traverse" "^7.25.3"
"@babel/traverse--for-generate-function-map" "npm:@babel/traverse@^7.25.3"
"@babel/types" "^7.25.2"
flow-enums-runtime "^0.0.6"
invariant "^2.2.4"
- metro-symbolicate "0.82.5"
+ metro-symbolicate "0.83.3"
nullthrows "^1.1.1"
- ob1 "0.82.5"
+ ob1 "0.83.3"
source-map "^0.5.6"
vlq "^1.0.0"
-metro-symbolicate@0.82.5:
- version "0.82.5"
- resolved "https://registry.yarnpkg.com/metro-symbolicate/-/metro-symbolicate-0.82.5.tgz#b53255cad11f1e6795f319ca4b41857bfe295d65"
- integrity sha512-1u+07gzrvYDJ/oNXuOG1EXSvXZka/0JSW1q2EYBWerVKMOhvv9JzDGyzmuV7hHbF2Hg3T3S2uiM36sLz1qKsiw==
+metro-symbolicate@0.83.3:
+ version "0.83.3"
+ resolved "https://registry.yarnpkg.com/metro-symbolicate/-/metro-symbolicate-0.83.3.tgz#67af03950f0dfe19a7c059e3983e39a31e95d03a"
+ integrity sha512-F/YChgKd6KbFK3eUR5HdUsfBqVsanf5lNTwFd4Ca7uuxnHgBC3kR/Hba/RGkenR3pZaGNp5Bu9ZqqP52Wyhomw==
dependencies:
flow-enums-runtime "^0.0.6"
invariant "^2.2.4"
- metro-source-map "0.82.5"
+ metro-source-map "0.83.3"
nullthrows "^1.1.1"
source-map "^0.5.6"
vlq "^1.0.0"
-metro-transform-plugins@0.82.5:
- version "0.82.5"
- resolved "https://registry.yarnpkg.com/metro-transform-plugins/-/metro-transform-plugins-0.82.5.tgz#678da4d0f9085b2a3fc0b4350062f19cc625c5fc"
- integrity sha512-57Bqf3rgq9nPqLrT2d9kf/2WVieTFqsQ6qWHpEng5naIUtc/Iiw9+0bfLLWSAw0GH40iJ4yMjFcFJDtNSYynMA==
+metro-transform-plugins@0.83.3:
+ version "0.83.3"
+ resolved "https://registry.yarnpkg.com/metro-transform-plugins/-/metro-transform-plugins-0.83.3.tgz#2c59ba841e269363cf3acb13138cb992f0c75013"
+ integrity sha512-eRGoKJU6jmqOakBMH5kUB7VitEWiNrDzBHpYbkBXW7C5fUGeOd2CyqrosEzbMK5VMiZYyOcNFEphvxk3OXey2A==
dependencies:
"@babel/core" "^7.25.2"
"@babel/generator" "^7.25.0"
@@ -14101,29 +14227,29 @@ metro-transform-plugins@0.82.5:
flow-enums-runtime "^0.0.6"
nullthrows "^1.1.1"
-metro-transform-worker@0.82.5:
- version "0.82.5"
- resolved "https://registry.yarnpkg.com/metro-transform-worker/-/metro-transform-worker-0.82.5.tgz#aabdccf17aaa584ec0fd97b5283e806958fb3418"
- integrity sha512-mx0grhAX7xe+XUQH6qoHHlWedI8fhSpDGsfga7CpkO9Lk9W+aPitNtJWNGrW8PfjKEWbT9Uz9O50dkI8bJqigw==
+metro-transform-worker@0.83.3:
+ version "0.83.3"
+ resolved "https://registry.yarnpkg.com/metro-transform-worker/-/metro-transform-worker-0.83.3.tgz#ca6ae4a02b0f61b33299e6e56bacaba32dcd607f"
+ integrity sha512-Ztekew9t/gOIMZX1tvJOgX7KlSLL5kWykl0Iwu2cL2vKMKVALRl1hysyhUw0vjpAvLFx+Kfq9VLjnHIkW32fPA==
dependencies:
"@babel/core" "^7.25.2"
"@babel/generator" "^7.25.0"
"@babel/parser" "^7.25.3"
"@babel/types" "^7.25.2"
flow-enums-runtime "^0.0.6"
- metro "0.82.5"
- metro-babel-transformer "0.82.5"
- metro-cache "0.82.5"
- metro-cache-key "0.82.5"
- metro-minify-terser "0.82.5"
- metro-source-map "0.82.5"
- metro-transform-plugins "0.82.5"
+ metro "0.83.3"
+ metro-babel-transformer "0.83.3"
+ metro-cache "0.83.3"
+ metro-cache-key "0.83.3"
+ metro-minify-terser "0.83.3"
+ metro-source-map "0.83.3"
+ metro-transform-plugins "0.83.3"
nullthrows "^1.1.1"
-metro@0.82.5, metro@^0.82.0:
- version "0.82.5"
- resolved "https://registry.yarnpkg.com/metro/-/metro-0.82.5.tgz#a27fbc08dd283a14ae58496288c10adaae65f461"
- integrity sha512-8oAXxL7do8QckID/WZEKaIFuQJFUTLzfVcC48ghkHhNK2RGuQq8Xvf4AVd+TUA0SZtX0q8TGNXZ/eba1ckeGCg==
+metro@0.83.3, metro@^0.83.3:
+ version "0.83.3"
+ resolved "https://registry.yarnpkg.com/metro/-/metro-0.83.3.tgz#1e7e04c15519af746f8932c7f9c553d92c39e922"
+ integrity sha512-+rP+/GieOzkt97hSJ0MrPOuAH/jpaS21ZDvL9DJ35QYRDlQcwzcvUlGUf79AnQxq/2NPiS/AULhhM4TKutIt8Q==
dependencies:
"@babel/code-frame" "^7.24.7"
"@babel/core" "^7.25.2"
@@ -14140,24 +14266,24 @@ metro@0.82.5, metro@^0.82.0:
error-stack-parser "^2.0.6"
flow-enums-runtime "^0.0.6"
graceful-fs "^4.2.4"
- hermes-parser "0.29.1"
+ hermes-parser "0.32.0"
image-size "^1.0.2"
invariant "^2.2.4"
jest-worker "^29.7.0"
jsc-safe-url "^0.2.2"
lodash.throttle "^4.1.1"
- metro-babel-transformer "0.82.5"
- metro-cache "0.82.5"
- metro-cache-key "0.82.5"
- metro-config "0.82.5"
- metro-core "0.82.5"
- metro-file-map "0.82.5"
- metro-resolver "0.82.5"
- metro-runtime "0.82.5"
- metro-source-map "0.82.5"
- metro-symbolicate "0.82.5"
- metro-transform-plugins "0.82.5"
- metro-transform-worker "0.82.5"
+ metro-babel-transformer "0.83.3"
+ metro-cache "0.83.3"
+ metro-cache-key "0.83.3"
+ metro-config "0.83.3"
+ metro-core "0.83.3"
+ metro-file-map "0.83.3"
+ metro-resolver "0.83.3"
+ metro-runtime "0.83.3"
+ metro-source-map "0.83.3"
+ metro-symbolicate "0.83.3"
+ metro-transform-plugins "0.83.3"
+ metro-transform-worker "0.83.3"
mime-types "^2.1.27"
nullthrows "^1.1.1"
serialize-error "^2.1.0"
@@ -14256,6 +14382,13 @@ minimalistic-crypto-utils@^1.0.1:
resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=
+minimatch@^10.1.2:
+ version "10.1.2"
+ resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-10.1.2.tgz#6c3f289f9de66d628fa3feb1842804396a43d81c"
+ integrity sha512-fu656aJ0n2kcXwsnwnv9g24tkU5uSmOlTjd6WyyaKm2Z+h1qmY6bAjrcaIxF/BslFqbZ8UBtbJi7KgQOZD2PTw==
+ dependencies:
+ "@isaacs/brace-expansion" "^5.0.1"
+
minimatch@^3.0.4, minimatch@^3.1.1, minimatch@^3.1.2:
version "3.1.2"
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
@@ -14270,7 +14403,7 @@ minimatch@^9.0.0, minimatch@^9.0.4, minimatch@^9.0.5:
dependencies:
brace-expansion "^2.0.1"
-minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2.5, minimist@^1.2.6:
+minimist@^1.2.0, minimist@^1.2.5, minimist@^1.2.6:
version "1.2.8"
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c"
integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==
@@ -14283,7 +14416,7 @@ minipass@^2.6.0, minipass@^2.9.0:
safe-buffer "^5.1.2"
yallist "^3.0.0"
-"minipass@^5.0.0 || ^6.0.2 || ^7.0.0", minipass@^7.0.4, minipass@^7.1.2:
+"minipass@^5.0.0 || ^6.0.2 || ^7.0.0", minipass@^7.1.2:
version "7.1.2"
resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.1.2.tgz#93a9626ce5e5e66bd4db86849e7515e92340a707"
integrity sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==
@@ -14295,13 +14428,6 @@ minizlib@^1.3.3:
dependencies:
minipass "^2.9.0"
-minizlib@^3.0.1:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-3.0.2.tgz#f33d638eb279f664439aa38dc5f91607468cb574"
- integrity sha512-oG62iEk+CYt5Xj2YqI5Xi9xWUeZhDI8jjQmC5oThVH5JGCTgIjr7ciJDzC7MBzYd//WvR1OTmP5Q38Q8ShQtVA==
- dependencies:
- minipass "^7.1.2"
-
mixin-object@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/mixin-object/-/mixin-object-2.0.1.tgz#4fb949441dab182540f1fe035ba60e1947a5e57e"
@@ -14310,11 +14436,6 @@ mixin-object@^2.0.1:
for-in "^0.1.3"
is-extendable "^0.1.1"
-mkdirp-classic@^0.5.2, mkdirp-classic@^0.5.3:
- version "0.5.3"
- resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113"
- integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==
-
mkdirp-promise@^5.0.1:
version "5.0.1"
resolved "https://registry.yarnpkg.com/mkdirp-promise/-/mkdirp-promise-5.0.1.tgz#e9b8f68e552c68a9c1713b84883f7a1dd039b8a1"
@@ -14322,7 +14443,7 @@ mkdirp-promise@^5.0.1:
dependencies:
mkdirp "*"
-mkdirp@*, mkdirp@^3.0.1:
+mkdirp@*:
version "3.0.1"
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-3.0.1.tgz#e44e4c5607fb279c168241713cc6e0fea9adcb50"
integrity sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==
@@ -14476,6 +14597,11 @@ multihashes@^0.4.15, multihashes@~0.4.15:
multibase "^0.7.0"
varint "^5.0.0"
+multitars@^0.2.3:
+ version "0.2.4"
+ resolved "https://registry.yarnpkg.com/multitars/-/multitars-0.2.4.tgz#37d003ca1dfddb5c4fbf1e51077831d576100b38"
+ integrity sha512-XgLbg1HHchFauMCQPRwMj6MSyDd5koPlTA1hM3rUFkeXzGpjU/I9fP3to7yrObE9jcN8ChIOQGrM0tV0kUZaKg==
+
mute-stream@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-2.0.0.tgz#a5446fc0c512b71c83c44d908d5c7b7b4c493b2b"
@@ -14510,11 +14636,6 @@ nanoid@^3.1.23, nanoid@^3.3.7:
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.11.tgz#4f4f112cefbe303202f2199838128936266d185b"
integrity sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==
-napi-build-utils@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/napi-build-utils/-/napi-build-utils-2.0.0.tgz#13c22c0187fcfccce1461844136372a47ddc027e"
- integrity sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==
-
napi-postinstall@^0.2.2:
version "0.2.4"
resolved "https://registry.yarnpkg.com/napi-postinstall/-/napi-postinstall-0.2.4.tgz#419697d0288cb524623e422f919624f22a5e4028"
@@ -14540,11 +14661,6 @@ neo-async@^2.6.2:
resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f"
integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==
-nested-error-stacks@~2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/nested-error-stacks/-/nested-error-stacks-2.0.1.tgz#d2cc9fc5235ddb371fc44d506234339c8e4b0a4b"
- integrity sha512-SrQrok4CATudVzBS7coSz26QRSmlK9TzzoFbeKfcPBUFPjcQM9Rqvr/DlJkOrwI/0KcgvMub1n1g5Jt9EgRn4A==
-
next-tick@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.1.0.tgz#1836ee30ad56d67ef281b22bd199f709449b35eb"
@@ -14577,13 +14693,6 @@ nock@^13.5.5:
json-stringify-safe "^5.0.1"
propagate "^2.0.0"
-node-abi@^3.3.0:
- version "3.75.0"
- resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-3.75.0.tgz#2f929a91a90a0d02b325c43731314802357ed764"
- integrity sha512-OhYaY5sDsIka7H7AtijtI9jwGYLyl29eQn/W623DiN/MIv5sUqc4g7BIDThX+gb7di9f6xK02nkp8sdfFWZLTg==
- dependencies:
- semver "^7.3.5"
-
node-addon-api@^2.0.0:
version "2.0.2"
resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-2.0.2.tgz#432cfa82962ce494b132e9d72a15b29f71ff5d32"
@@ -14599,11 +14708,6 @@ node-addon-api@^5.0.0:
resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-5.1.0.tgz#49da1ca055e109a23d537e9de43c09cca21eb762"
integrity sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==
-node-addon-api@^6.1.0:
- version "6.1.0"
- resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-6.1.0.tgz#ac8470034e58e67d0c6f1204a18ae6995d9c0d76"
- integrity sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==
-
node-addon-api@^7.0.0:
version "7.1.0"
resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-7.1.0.tgz#71f609369379c08e251c558527a107107b5e0fdb"
@@ -14642,20 +14746,20 @@ node-fetch@^3.3.2:
fetch-blob "^3.1.4"
formdata-polyfill "^4.0.10"
-node-forge@^1.2.0, node-forge@^1.2.1, node-forge@^1.3.1:
- version "1.3.1"
- resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-1.3.1.tgz#be8da2af243b2417d5f646a770663a92b7e9ded3"
- integrity sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==
+node-forge@^1.2.0, node-forge@^1.3.1, node-forge@^1.3.3:
+ version "1.3.3"
+ resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-1.3.3.tgz#0ad80f6333b3a0045e827ac20b7f735f93716751"
+ integrity sha512-rLvcdSyRCyouf6jcOIPe/BgwG/d7hKjzMKOas33/pHEr6gbq18IK9zV7DiPvzsz0oBJPme6qr6H6kGZuI9/DZg==
node-gyp-build@^4.2.0, node-gyp-build@^4.2.2, node-gyp-build@^4.3.0:
version "4.5.0"
resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.5.0.tgz#7a64eefa0b21112f89f58379da128ac177f20e40"
integrity sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg==
-node-html-parser@^7.0.1:
- version "7.0.1"
- resolved "https://registry.yarnpkg.com/node-html-parser/-/node-html-parser-7.0.1.tgz#e3056550bae48517ebf161a0b0638f4b0123dfe3"
- integrity sha512-KGtmPY2kS0thCWGK0VuPyOS+pBKhhe8gXztzA2ilAOhbUbxa9homF1bOyKvhGzMLXUoRds9IOmr/v5lr/lqNmA==
+node-html-parser@^7.0.2:
+ version "7.0.2"
+ resolved "https://registry.yarnpkg.com/node-html-parser/-/node-html-parser-7.0.2.tgz#2b81ec9d7a83d55ccb83c939b7a618b7ad391328"
+ integrity sha512-DxodLVh7a6JMkYzWyc8nBX9MaF4M0lLFYkJHlWOiu7+9/I6mwNK9u5TbAMC7qfqDJEPX9OIoWA2A9t4C2l1mUQ==
dependencies:
css-select "^5.1.0"
he "1.2.0"
@@ -14665,10 +14769,10 @@ node-int64@^0.4.0:
resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b"
integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=
-node-releases@^2.0.19:
- version "2.0.19"
- resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.19.tgz#9e445a52950951ec4d177d843af370b411caf314"
- integrity sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==
+node-releases@^2.0.21:
+ version "2.0.23"
+ resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.23.tgz#2ecf3d7ba571ece05c67c77e5b7b1b6fb9e18cea"
+ integrity sha512-cCmFDMSm26S6tQSDpBCg/NR8NENrVPhAJSf+XbxBG4rPFaaonlEoE9wHQmun+cls499TQGSb7ZyPBRlzgKfpeg==
node-stream-zip@^1.9.1:
version "1.13.4"
@@ -14752,10 +14856,10 @@ oauth-sign@~0.9.0:
resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455"
integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==
-ob1@0.82.5:
- version "0.82.5"
- resolved "https://registry.yarnpkg.com/ob1/-/ob1-0.82.5.tgz#a2860e39385f4602bc2666c46f331b7531b94a8b"
- integrity sha512-QyQQ6e66f+Ut/qUVjEce0E/wux5nAGLXYZDn1jr15JWstHsCH3l6VVrg8NKDptW9NEiBXKOJeGF/ydxeSDF3IQ==
+ob1@0.83.3:
+ version "0.83.3"
+ resolved "https://registry.yarnpkg.com/ob1/-/ob1-0.83.3.tgz#2208e20c9070e9beff3ad067f2db458fa6b07014"
+ integrity sha512-egUxXCDwoWG06NGCS5s5AdcpnumHKJlfd3HH06P3m9TEMwwScfcY35wpQxbm9oHof+dM/lVH9Rfyu1elTVelSA==
dependencies:
flow-enums-runtime "^0.0.6"
@@ -15141,14 +15245,6 @@ parse-headers@^2.0.0:
resolved "https://registry.yarnpkg.com/parse-headers/-/parse-headers-2.0.5.tgz#069793f9356a54008571eb7f9761153e6c770da9"
integrity sha512-ft3iAoLOB/MlwbNXgzy43SWGP6sQki2jQvAyBg/zDFAgr9bfNWZIUj42Kw2eJIl8kEi4PbgE6U1Zau/HwI75HA==
-parse-json@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0"
- integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=
- dependencies:
- error-ex "^1.3.1"
- json-parse-better-errors "^1.0.1"
-
parse-json@^5.0.0, parse-json@^5.2.0:
version "5.2.0"
resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd"
@@ -15225,7 +15321,7 @@ path-key@^4.0.0:
resolved "https://registry.yarnpkg.com/path-key/-/path-key-4.0.0.tgz#295588dc3aee64154f877adb9d780b81c554bf18"
integrity sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==
-path-parse@^1.0.5, path-parse@^1.0.7:
+path-parse@^1.0.7:
version "1.0.7"
resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
@@ -15238,6 +15334,14 @@ path-scurry@^1.11.1:
lru-cache "^10.2.0"
minipass "^5.0.0 || ^6.0.2 || ^7.0.0"
+path-scurry@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-2.0.1.tgz#4b6572376cfd8b811fca9cd1f5c24b3cbac0fe10"
+ integrity sha512-oWyT4gICAu+kaA7QWk/jvCHWarMKNs6pXOGWKDTr7cw4IGcUbW+PeTfbaQiLGheFRpjo6O9J0PmyMfQPjH71oA==
+ dependencies:
+ lru-cache "^11.0.0"
+ minipass "^7.1.2"
+
path-to-regexp@0.1.7:
version "0.1.7"
resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c"
@@ -15300,10 +15404,10 @@ picomatch@^3.0.1:
resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-3.0.1.tgz#817033161def55ec9638567a2f3bbc876b3e7516"
integrity sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==
-picomatch@^4.0.2:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-4.0.2.tgz#77c742931e8f3b8820946c76cd0c1f13730d1dab"
- integrity sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==
+picomatch@^4.0.2, picomatch@^4.0.3:
+ version "4.0.3"
+ resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-4.0.3.tgz#796c76136d1eead715db1e7bad785dedd695a042"
+ integrity sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==
pino-abstract-transport@^1.0.0, pino-abstract-transport@^1.1.0:
version "1.2.0"
@@ -15518,24 +15622,6 @@ pouchdb-utils@9.0.0:
pouchdb-md5 "9.0.0"
uuid "8.3.2"
-prebuild-install@^7.1.1:
- version "7.1.3"
- resolved "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-7.1.3.tgz#d630abad2b147443f20a212917beae68b8092eec"
- integrity sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==
- dependencies:
- detect-libc "^2.0.0"
- expand-template "^2.0.3"
- github-from-package "0.0.0"
- minimist "^1.2.3"
- mkdirp-classic "^0.5.3"
- napi-build-utils "^2.0.0"
- node-abi "^3.3.0"
- pump "^3.0.0"
- rc "^1.2.7"
- simple-get "^4.0.0"
- tar-fs "^2.0.0"
- tunnel-agent "^0.6.0"
-
prelude-ls@^1.2.1:
version "1.2.1"
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
@@ -15553,15 +15639,10 @@ prettier@2.8.8, prettier@^2.3.1:
resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da"
integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==
-prettier@^3.5.3:
- version "3.5.3"
- resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.5.3.tgz#4fc2ce0d657e7a02e602549f053b239cb7dfe1b5"
- integrity sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==
-
-pretty-bytes@^5.6.0:
- version "5.6.0"
- resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.6.0.tgz#356256f643804773c82f64723fe78c92c62beaeb"
- integrity sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==
+prettier@^3.8.1:
+ version "3.8.1"
+ resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.8.1.tgz#edf48977cf991558f4fcbd8a3ba6015ba2a3a173"
+ integrity sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg==
pretty-format@30.0.0:
version "30.0.0"
@@ -15572,16 +15653,6 @@ pretty-format@30.0.0:
ansi-styles "^5.2.0"
react-is "^18.3.1"
-pretty-format@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-26.6.2.tgz#e35c2705f14cb7fe2fe94fa078345b444120fc93"
- integrity sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==
- dependencies:
- "@jest/types" "^26.6.2"
- ansi-regex "^5.0.0"
- ansi-styles "^4.0.0"
- react-is "^17.0.1"
-
pretty-format@^29.0.0, pretty-format@^29.7.0:
version "29.7.0"
resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-29.7.0.tgz#ca42c758310f365bfa71a0bda0a807160b776812"
@@ -15844,11 +15915,6 @@ quick-lru@^5.1.1:
resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz#366493e6b3e42a3a6885e2e99d18f80fb7a8c932"
integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==
-r3-hack@./scripts/r3-hack:
- version "0.0.1"
- dependencies:
- react-native-reanimated "^3.19.1"
-
radix3@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/radix3/-/radix3-1.1.0.tgz#9745df67a49c522e94a33d0a93cf743f104b6e0d"
@@ -15899,17 +15965,7 @@ raw-body@2.5.2:
iconv-lite "0.4.24"
unpipe "1.0.0"
-rc@^1.2.7, rc@~1.2.7:
- version "1.2.8"
- resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed"
- integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==
- dependencies:
- deep-extend "^0.6.0"
- ini "~1.3.0"
- minimist "^1.2.0"
- strip-json-comments "~2.0.1"
-
-react-devtools-core@^6.1.1:
+react-devtools-core@^6.1.5:
version "6.1.5"
resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-6.1.5.tgz#c5eca79209dab853a03b2158c034c5166975feee"
integrity sha512-ePrwPfxAnB+7hgnEr8vpKxL9cmnp7F322t8oqcPshbIQQhDKgFDW4tjhF2wjVbdXF9O/nyuy3sQWd9JGpiLPvA==
@@ -15927,20 +15983,15 @@ react-is@^16.13.0, react-is@^16.13.1, react-is@^16.7.0:
resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
-react-is@^17.0.1:
- version "17.0.2"
- resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0"
- integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==
-
react-is@^18.0.0, react-is@^18.3.1:
version "18.3.1"
resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.3.1.tgz#e83557dc12eae63a99e003a46388b1dcbb44db7e"
integrity sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==
-react-is@^19.0.0:
- version "19.1.1"
- resolved "https://registry.yarnpkg.com/react-is/-/react-is-19.1.1.tgz#038ebe313cf18e1fd1235d51c87360eb87f7c36a"
- integrity sha512-tr41fA15Vn8p4X9ntI+yCyeGSf1TlYaY5vlTZfQmeLBrFo3psOPX6HhTDnFNL9uj3EhP0KAQ80cugCl4b4BERA==
+react-is@^19.2.0:
+ version "19.2.4"
+ resolved "https://registry.yarnpkg.com/react-is/-/react-is-19.2.4.tgz#a080758243c572ccd4a63386537654298c99d135"
+ integrity sha512-W+EWGn2v0ApPKgKKCy/7s7WHXkboGcsrXE+2joLyVxkbyVQfO3MUEaUQDHoSmb8TFFrSKYa9mw64WZHNHSDzYA==
react-native-airship@^0.2.12, react-native-airship@^0.2.9:
version "0.2.12"
@@ -15954,25 +16005,24 @@ react-native-battery-optimization-check@^1.0.8:
resolved "https://registry.yarnpkg.com/react-native-battery-optimization-check/-/react-native-battery-optimization-check-1.0.8.tgz#1592e8662be02ac6dbff06e25523bf1835958a77"
integrity sha512-OXACVlMho/rmTg3YS2GQ0juGb7YKJTrvUnD7BMDNGpAUm6ykcgkU0i3vML76ZHRYTO1rB5Pdh4re+LeKSvVWsQ==
-react-native-bootsplash@^6.3.8:
- version "6.3.8"
- resolved "https://registry.yarnpkg.com/react-native-bootsplash/-/react-native-bootsplash-6.3.8.tgz#9d9883993f397daa18a69bd1ac23f90f3643fc0b"
- integrity sha512-EvkNWta0tBSPf87JpHAG1aKilma0TVsToMPhy4L8sev70wVewpiuNfhFqvLvp8U7pnE5hi6ld6S8sA0Zhtrs/g==
+react-native-bootsplash@^7.0.1:
+ version "7.0.2"
+ resolved "https://registry.yarnpkg.com/react-native-bootsplash/-/react-native-bootsplash-7.0.2.tgz#79d02a25de8daa6c6c7b4896f8ba9ad74861d9f5"
+ integrity sha512-vVJDRjtEtVw99KfMi1ISRhKObOv9MJ8XGjqsYgOGu9MmmczOEMFI2GB9fiSfNEFejPKcRaS5IGKQRunHhCesHw==
dependencies:
- "@expo/config-plugins" "^9.0.0 || ^10.0.0"
- "@react-native-community/cli-config-android" "^18.0.0"
- "@react-native-community/cli-config-apple" "^18.0.0"
- "@react-native-community/cli-tools" "^18.0.0"
- commander "^13.1.0"
+ "@expo/config-plugins" "*"
+ commander "^14.0.3"
detect-indent "^6.1.0"
- fs-extra "^11.3.0"
- node-html-parser "^7.0.1"
+ fast-glob "^3.3.3"
+ find-up "^5.0.0"
+ fs-extra "^11.3.3"
+ node-html-parser "^7.0.2"
picocolors "^1.1.1"
- prettier "^3.5.3"
- react-native-is-edge-to-edge "^1.1.7"
- sharp "^0.32.6"
+ prettier "^3.8.1"
+ react-native-is-edge-to-edge "^1.2.1"
+ sharp "^0.34.5"
ts-dedent "^2.2.0"
- xml-formatter "^3.6.5"
+ xml-formatter "^3.6.7"
react-native-confetti-cannon@^1.5.2:
version "1.5.2"
@@ -15993,11 +16043,6 @@ react-native-device-info@^13.2.0:
resolved "https://registry.yarnpkg.com/react-native-device-info/-/react-native-device-info-13.2.0.tgz#2b4026daf59dd08d82b6d65b63c18cb26f310ed2"
integrity sha512-VpTxHZsEZ7kes2alaZkB31278KuSPXfTZ4TmCCN77+bYxNnaHUDiBiQ1TSoKAOp51b7gZ/7EvM4McfgHofcTBQ==
-react-native-edge-to-edge@1.6.0:
- version "1.6.0"
- resolved "https://registry.yarnpkg.com/react-native-edge-to-edge/-/react-native-edge-to-edge-1.6.0.tgz#2ba63b941704a7f713e298185c26cde4d9e4b973"
- integrity sha512-2WCNdE3Qd6Fwg9+4BpbATUxCLcouF6YRY7K+J36KJ4l3y+tWN6XCqAC4DuoGblAAbb2sLkhEDp4FOlbOIot2Og==
-
react-native-email-link@^1.14.5:
version "1.14.5"
resolved "https://registry.yarnpkg.com/react-native-email-link/-/react-native-email-link-1.14.5.tgz#05e13002bd850ebaf98477b4cfbfdfa972a57608"
@@ -16026,10 +16071,10 @@ react-native-fs@^2.19.0:
base-64 "^0.1.0"
utf8 "^3.0.0"
-react-native-gesture-handler@^2.28.0:
- version "2.28.0"
- resolved "https://registry.yarnpkg.com/react-native-gesture-handler/-/react-native-gesture-handler-2.28.0.tgz#07fb4f5eae72f810aac3019b060d26c1835bfd0c"
- integrity sha512-0msfJ1vRxXKVgTgvL+1ZOoYw3/0z1R+Ked0+udoJhyplC2jbVKIJ8Z1bzWdpQRCV3QcQ87Op0zJVE5DhKK2A0A==
+react-native-gesture-handler@^2.30.0:
+ version "2.30.0"
+ resolved "https://registry.yarnpkg.com/react-native-gesture-handler/-/react-native-gesture-handler-2.30.0.tgz#990c621fbeeefde853ececdcab7cbe1b621dbb8b"
+ integrity sha512-5YsnKHGa0X9C8lb5oCnKm0fLUPM6CRduvUUw2Bav4RIj/C3HcFh4RIUnF8wgG6JQWCL1//gRx4v+LVWgcIQdGA==
dependencies:
"@egjs/hammerjs" "^2.0.17"
hoist-non-react-statics "^3.3.0"
@@ -16081,12 +16126,7 @@ react-native-iphone-x-helper@^1.0.3:
resolved "https://registry.yarnpkg.com/react-native-iphone-x-helper/-/react-native-iphone-x-helper-1.2.0.tgz#9f8a376eb00bc712115abff4420318a0063fa796"
integrity sha512-xIeTo4s77wwKgBZLVRIZC9tM9/PkXS46Ul76NXmvmixEb3ZwqGdQesR3zRiLMOoIdfOURB6N9bba9po7+x9Bag==
-react-native-is-edge-to-edge@1.1.7:
- version "1.1.7"
- resolved "https://registry.yarnpkg.com/react-native-is-edge-to-edge/-/react-native-is-edge-to-edge-1.1.7.tgz#28947688f9fafd584e73a4f935ea9603bd9b1939"
- integrity sha512-EH6i7E8epJGIcu7KpfXYXiV2JFIYITtq+rVS8uEb+92naMRBdxhTuS8Wn2Q7j9sqyO0B+Xbaaf9VdipIAmGW4w==
-
-react-native-is-edge-to-edge@^1.1.7, react-native-is-edge-to-edge@^1.2.1:
+react-native-is-edge-to-edge@1.2.1, react-native-is-edge-to-edge@^1.2.1:
version "1.2.1"
resolved "https://registry.yarnpkg.com/react-native-is-edge-to-edge/-/react-native-is-edge-to-edge-1.2.1.tgz#64e10851abd9d176cbf2b40562f751622bde3358"
integrity sha512-FLbPWl/MyYQWz+KwqOZsSyj2JmLKglHatd3xLZWskXOpRaio4LfEDEz8E/A6uD8QoTHW6Aobw1jbEwK7KMgR7Q==
@@ -16152,31 +16192,13 @@ react-native-piratechain@^0.5.20:
dependencies:
rfc4648 "^1.3.0"
-react-native-reanimated@^3.19.1:
- version "3.19.1"
- resolved "https://registry.yarnpkg.com/react-native-reanimated/-/react-native-reanimated-3.19.1.tgz#761f731bfb5dc67724ca7bf7bce90a6da975d753"
- integrity sha512-ILL0FSNzSVIg6WuawrsMBvNxk2yJFiTUcahimXDAeNiE/09eagVUlHhYWXAAmH0umvAOafBaGjO7YfBhUrf5ZQ==
- dependencies:
- "@babel/plugin-transform-arrow-functions" "^7.0.0-0"
- "@babel/plugin-transform-class-properties" "^7.0.0-0"
- "@babel/plugin-transform-classes" "^7.0.0-0"
- "@babel/plugin-transform-nullish-coalescing-operator" "^7.0.0-0"
- "@babel/plugin-transform-optional-chaining" "^7.0.0-0"
- "@babel/plugin-transform-shorthand-properties" "^7.0.0-0"
- "@babel/plugin-transform-template-literals" "^7.0.0-0"
- "@babel/plugin-transform-unicode-regex" "^7.0.0-0"
- "@babel/preset-typescript" "^7.16.7"
- convert-source-map "^2.0.0"
- invariant "^2.2.4"
- react-native-is-edge-to-edge "1.1.7"
-
-react-native-reanimated@^4.1.3:
- version "4.1.3"
- resolved "https://registry.yarnpkg.com/react-native-reanimated/-/react-native-reanimated-4.1.3.tgz#de29587b8ff7febada32497793803215faeac636"
- integrity sha512-GP8wsi1u3nqvC1fMab/m8gfFwFyldawElCcUSBJQgfrXeLmsPPUOpDw44lbLeCpcwUuLa05WTVePdTEwCLTUZg==
+react-native-reanimated@^4.2.1:
+ version "4.2.1"
+ resolved "https://registry.yarnpkg.com/react-native-reanimated/-/react-native-reanimated-4.2.1.tgz#fbdee721bff0946a6e5ae67c8c38c37ca4a0a057"
+ integrity sha512-/NcHnZMyOvsD/wYXug/YqSKw90P9edN0kEPL5lP4PFf1aQ4F1V7MKe/E0tvfkXKIajy3Qocp5EiEnlcrK/+BZg==
dependencies:
- react-native-is-edge-to-edge "^1.2.1"
- semver "7.7.2"
+ react-native-is-edge-to-edge "1.2.1"
+ semver "7.7.3"
react-native-render-html@^6.3.4:
version "6.3.4"
@@ -16292,22 +16314,22 @@ react-native-wheel-picker-android@^2.0.6:
dependencies:
moment "^2.22.0"
-react-native-worklets@^0.6.1:
- version "0.6.1"
- resolved "https://registry.yarnpkg.com/react-native-worklets/-/react-native-worklets-0.6.1.tgz#daa56dea896c7bdcead064b675ef341ac1f41029"
- integrity sha512-URca8l7c7Uog7gv4mcg9KILdJlnbvwdS5yfXQYf5TDkD2W1VY1sduEKrD+sA3lUPXH/TG1vmXAvNxCNwPMYgGg==
- dependencies:
- "@babel/plugin-transform-arrow-functions" "^7.0.0-0"
- "@babel/plugin-transform-class-properties" "^7.0.0-0"
- "@babel/plugin-transform-classes" "^7.0.0-0"
- "@babel/plugin-transform-nullish-coalescing-operator" "^7.0.0-0"
- "@babel/plugin-transform-optional-chaining" "^7.0.0-0"
- "@babel/plugin-transform-shorthand-properties" "^7.0.0-0"
- "@babel/plugin-transform-template-literals" "^7.0.0-0"
- "@babel/plugin-transform-unicode-regex" "^7.0.0-0"
- "@babel/preset-typescript" "^7.16.7"
- convert-source-map "^2.0.0"
- semver "7.7.2"
+react-native-worklets@^0.7.2:
+ version "0.7.2"
+ resolved "https://registry.yarnpkg.com/react-native-worklets/-/react-native-worklets-0.7.2.tgz#acfbfe4f8c7f3b2889e7f394e4fbd7e78e167134"
+ integrity sha512-DuLu1kMV/Uyl9pQHp3hehAlThoLw7Yk2FwRTpzASOmI+cd4845FWn3m2bk9MnjUw8FBRIyhwLqYm2AJaXDXsog==
+ dependencies:
+ "@babel/plugin-transform-arrow-functions" "7.27.1"
+ "@babel/plugin-transform-class-properties" "7.27.1"
+ "@babel/plugin-transform-classes" "7.28.4"
+ "@babel/plugin-transform-nullish-coalescing-operator" "7.27.1"
+ "@babel/plugin-transform-optional-chaining" "7.27.1"
+ "@babel/plugin-transform-shorthand-properties" "7.27.1"
+ "@babel/plugin-transform-template-literals" "7.27.1"
+ "@babel/plugin-transform-unicode-regex" "7.27.1"
+ "@babel/preset-typescript" "7.27.1"
+ convert-source-map "2.0.0"
+ semver "7.7.3"
react-native-zano@^0.2.6:
version "0.2.6"
@@ -16324,46 +16346,45 @@ react-native-zcash@^0.10.3:
biggystring "^4.2.3"
rfc4648 "^1.3.0"
-react-native@0.79.2:
- version "0.79.2"
- resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.79.2.tgz#f1a53099701c1736d09e441eb79f97cfc90dd202"
- integrity sha512-AnGzb56JvU5YCL7cAwg10+ewDquzvmgrMddiBM0GAWLwQM/6DJfGd2ZKrMuKKehHerpDDZgG+EY64gk3x3dEkw==
+react-native@0.83.2:
+ version "0.83.2"
+ resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.83.2.tgz#d0df3c425f5793fdcf3f8f281cacb5ced7ae4b10"
+ integrity sha512-ZDma3SLkRN2U2dg0/EZqxNBAx4of/oTnPjXAQi299VLq2gdnbZowGy9hzqv+O7sTA62g+lM1v+2FM5DUnJ/6hg==
dependencies:
"@jest/create-cache-key-function" "^29.7.0"
- "@react-native/assets-registry" "0.79.2"
- "@react-native/codegen" "0.79.2"
- "@react-native/community-cli-plugin" "0.79.2"
- "@react-native/gradle-plugin" "0.79.2"
- "@react-native/js-polyfills" "0.79.2"
- "@react-native/normalize-colors" "0.79.2"
- "@react-native/virtualized-lists" "0.79.2"
+ "@react-native/assets-registry" "0.83.2"
+ "@react-native/codegen" "0.83.2"
+ "@react-native/community-cli-plugin" "0.83.2"
+ "@react-native/gradle-plugin" "0.83.2"
+ "@react-native/js-polyfills" "0.83.2"
+ "@react-native/normalize-colors" "0.83.2"
+ "@react-native/virtualized-lists" "0.83.2"
abort-controller "^3.0.0"
anser "^1.4.9"
ansi-regex "^5.0.0"
babel-jest "^29.7.0"
- babel-plugin-syntax-hermes-parser "0.25.1"
+ babel-plugin-syntax-hermes-parser "0.32.0"
base64-js "^1.5.1"
- chalk "^4.0.0"
commander "^12.0.0"
- event-target-shim "^5.0.1"
flow-enums-runtime "^0.0.6"
glob "^7.1.1"
+ hermes-compiler "0.14.1"
invariant "^2.2.4"
jest-environment-node "^29.7.0"
memoize-one "^5.0.0"
- metro-runtime "^0.82.0"
- metro-source-map "^0.82.0"
+ metro-runtime "^0.83.3"
+ metro-source-map "^0.83.3"
nullthrows "^1.1.1"
pretty-format "^29.7.0"
promise "^8.3.0"
- react-devtools-core "^6.1.1"
+ react-devtools-core "^6.1.5"
react-refresh "^0.14.0"
regenerator-runtime "^0.13.2"
- scheduler "0.25.0"
+ scheduler "0.27.0"
semver "^7.1.3"
stacktrace-parser "^0.1.10"
whatwg-fetch "^3.0.0"
- ws "^6.2.3"
+ ws "^7.5.10"
yargs "^17.6.2"
react-redux@^7.2.4:
@@ -16395,18 +16416,18 @@ react-refresh@^0.14.0, react-refresh@^0.14.2:
resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.14.2.tgz#3833da01ce32da470f1f936b9d477da5c7028bf9"
integrity sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==
-react-test-renderer@19.0.0:
- version "19.0.0"
- resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-19.0.0.tgz#ca6fa322c58d4bfa34635788fe242a8c3daa4c7d"
- integrity sha512-oX5u9rOQlHzqrE/64CNr0HB0uWxkCQmZNSfozlYvwE71TLVgeZxVf0IjouGEr1v7r1kcDifdAJBeOhdhxsG/DA==
+react-test-renderer@19.2.0:
+ version "19.2.0"
+ resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-19.2.0.tgz#5c9782b4a4ba0630a77d7ce092779fdf9ccde209"
+ integrity sha512-zLCFMHFE9vy/w3AxO0zNxy6aAupnCuLSVOJYDe/Tp+ayGI1f2PLQsFVPANSD42gdSbmYx5oN+1VWDhcXtq7hAQ==
dependencies:
- react-is "^19.0.0"
- scheduler "^0.25.0"
+ react-is "^19.2.0"
+ scheduler "^0.27.0"
-react@19.0.0:
- version "19.0.0"
- resolved "https://registry.yarnpkg.com/react/-/react-19.0.0.tgz#6e1969251b9f108870aa4bff37a0ce9ddfaaabdd"
- integrity sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==
+react@19.2.0:
+ version "19.2.0"
+ resolved "https://registry.yarnpkg.com/react/-/react-19.2.0.tgz#d33dd1721698f4376ae57a54098cb47fc75d93a5"
+ integrity sha512-tmbWg6W31tQLeB5cdIBOicJDJRR2KzXsV7uSK9iNfLWQ5bIZfxuPEHp7M8wiHyHnn0DD1i7w3Zmin0FtkrwoCQ==
readable-stream@^2.0.1, readable-stream@^2.3.8:
version "2.3.8"
@@ -16652,15 +16673,6 @@ require-main-filename@^2.0.0:
resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b"
integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==
-requireg@^0.2.2:
- version "0.2.2"
- resolved "https://registry.yarnpkg.com/requireg/-/requireg-0.2.2.tgz#437e77a5316a54c9bcdbbf5d1f755fe093089830"
- integrity sha512-nYzyjnFcPNGR3lx9lwPPPnuQxv6JWEZd2Ci0u9opN7N5zUEPIhY/GbL3vMGOr2UXwEg9WwSyV9X9Y/kLFgPsOg==
- dependencies:
- nested-error-stacks "~2.0.1"
- rc "~1.2.7"
- resolve "~1.7.1"
-
requires-port@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff"
@@ -16678,11 +16690,6 @@ resolve-cwd@^3.0.0:
dependencies:
resolve-from "^5.0.0"
-resolve-from@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748"
- integrity sha1-six699nWiBvItuZTM17rywoYh0g=
-
resolve-from@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
@@ -16703,12 +16710,7 @@ resolve-workspace-root@^2.0.0:
resolved "https://registry.yarnpkg.com/resolve-workspace-root/-/resolve-workspace-root-2.0.0.tgz#a0098daa0067cd0efa6eb525c57c8fb4a61e78f8"
integrity sha512-IsaBUZETJD5WsI11Wt8PKHwaIe45or6pwNc8yflvLJ4DWtImK9kuLoH5kUva/2Mmx/RdIyr4aONNSa2v9LTJsw==
-resolve.exports@^2.0.3:
- version "2.0.3"
- resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-2.0.3.tgz#41955e6f1b4013b7586f873749a635dea07ebe3f"
- integrity sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==
-
-resolve@^1.12.0, resolve@^1.20.0, resolve@^1.22.10, resolve@^1.22.2, resolve@^1.22.4, resolve@^1.8.1:
+resolve@^1.12.0, resolve@^1.20.0, resolve@^1.22.10, resolve@^1.22.4, resolve@^1.8.1:
version "1.22.10"
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.10.tgz#b663e83ffb09bbf2386944736baae803029b8b39"
integrity sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==
@@ -16726,13 +16728,6 @@ resolve@^2.0.0-next.5:
path-parse "^1.0.7"
supports-preserve-symlinks-flag "^1.0.0"
-resolve@~1.7.1:
- version "1.7.1"
- resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.7.1.tgz#aadd656374fd298aee895bc026b8297418677fd3"
- integrity sha512-c7rwLofp8g1U+h1KNyHL/jicrKg1Ek4q+Lr33AL65uZTinUZHe30D5HlyN5V9NW0JX1D5dXQ4jqW5l7Sy/kGfw==
- dependencies:
- path-parse "^1.0.5"
-
responselike@^2.0.0:
version "2.0.1"
resolved "https://registry.yarnpkg.com/responselike/-/responselike-2.0.1.tgz#9a0bc8fdc252f3fb1cca68b016591059ba1422bc"
@@ -16953,10 +16948,10 @@ scale-ts@^1.6.0:
resolved "https://registry.yarnpkg.com/scale-ts/-/scale-ts-1.6.0.tgz#e9641093c5a9e50f964ddb1607139034e3e932e9"
integrity sha512-Ja5VCjNZR8TGKhUumy9clVVxcDpM+YFjAnkMuwQy68Hixio3VRRvWdE3g8T/yC+HXA0ZDQl2TGyUmtmbcVl40Q==
-scheduler@0.25.0, scheduler@^0.25.0:
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.25.0.tgz#336cd9768e8cceebf52d3c80e3dcf5de23e7e015"
- integrity sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==
+scheduler@0.27.0, scheduler@^0.27.0:
+ version "0.27.0"
+ resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.27.0.tgz#0c4ef82d67d1e5c1e359e8fc76d3a87f045fe5bd"
+ integrity sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==
scheduler@^0.23.0:
version "0.23.0"
@@ -17055,10 +17050,10 @@ semver-compare@^1.0.0:
resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc"
integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w=
-semver@7.7.2, semver@^7.1.3, semver@^7.3.2, semver@^7.3.5, semver@^7.5.2, semver@^7.5.4, semver@^7.6.0, semver@^7.6.3, semver@^7.7.2:
- version "7.7.2"
- resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.2.tgz#67d99fdcd35cec21e6f8b87a7fd515a33f982b58"
- integrity sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==
+semver@7.7.3:
+ version "7.7.3"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.3.tgz#4b5f4143d007633a8dc671cd0a6ef9147b8bb946"
+ integrity sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==
semver@^5.5.0, semver@^5.6.0:
version "5.7.2"
@@ -17070,6 +17065,11 @@ semver@^6.0.0, semver@^6.3.0, semver@^6.3.1:
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4"
integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
+semver@^7.1.3, semver@^7.3.2, semver@^7.3.5, semver@^7.5.2, semver@^7.5.4, semver@^7.6.0, semver@^7.6.3, semver@^7.7.2, semver@^7.7.3:
+ version "7.7.4"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.4.tgz#28464e36060e991fa7a11d0279d2d3f3b57a7e8a"
+ integrity sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==
+
send@0.18.0:
version "0.18.0"
resolved "https://registry.yarnpkg.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be"
@@ -17271,19 +17271,39 @@ shallow-clone@^3.0.0:
dependencies:
kind-of "^6.0.2"
-sharp@^0.32.6:
- version "0.32.6"
- resolved "https://registry.yarnpkg.com/sharp/-/sharp-0.32.6.tgz#6ad30c0b7cd910df65d5f355f774aa4fce45732a"
- integrity sha512-KyLTWwgcR9Oe4d9HwCwNM2l7+J0dUQwn/yf7S0EnTtb0eVS4RxO0eUSvxPtzT4F3SY+C4K6fqdv/DO27sJ/v/w==
+sharp@^0.34.5:
+ version "0.34.5"
+ resolved "https://registry.yarnpkg.com/sharp/-/sharp-0.34.5.tgz#b6f148e4b8c61f1797bde11a9d1cfebbae2c57b0"
+ integrity sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==
dependencies:
- color "^4.2.3"
- detect-libc "^2.0.2"
- node-addon-api "^6.1.0"
- prebuild-install "^7.1.1"
- semver "^7.5.4"
- simple-get "^4.0.1"
- tar-fs "^3.0.4"
- tunnel-agent "^0.6.0"
+ "@img/colour" "^1.0.0"
+ detect-libc "^2.1.2"
+ semver "^7.7.3"
+ optionalDependencies:
+ "@img/sharp-darwin-arm64" "0.34.5"
+ "@img/sharp-darwin-x64" "0.34.5"
+ "@img/sharp-libvips-darwin-arm64" "1.2.4"
+ "@img/sharp-libvips-darwin-x64" "1.2.4"
+ "@img/sharp-libvips-linux-arm" "1.2.4"
+ "@img/sharp-libvips-linux-arm64" "1.2.4"
+ "@img/sharp-libvips-linux-ppc64" "1.2.4"
+ "@img/sharp-libvips-linux-riscv64" "1.2.4"
+ "@img/sharp-libvips-linux-s390x" "1.2.4"
+ "@img/sharp-libvips-linux-x64" "1.2.4"
+ "@img/sharp-libvips-linuxmusl-arm64" "1.2.4"
+ "@img/sharp-libvips-linuxmusl-x64" "1.2.4"
+ "@img/sharp-linux-arm" "0.34.5"
+ "@img/sharp-linux-arm64" "0.34.5"
+ "@img/sharp-linux-ppc64" "0.34.5"
+ "@img/sharp-linux-riscv64" "0.34.5"
+ "@img/sharp-linux-s390x" "0.34.5"
+ "@img/sharp-linux-x64" "0.34.5"
+ "@img/sharp-linuxmusl-arm64" "0.34.5"
+ "@img/sharp-linuxmusl-x64" "0.34.5"
+ "@img/sharp-wasm32" "0.34.5"
+ "@img/sharp-win32-arm64" "0.34.5"
+ "@img/sharp-win32-ia32" "0.34.5"
+ "@img/sharp-win32-x64" "0.34.5"
shebang-command@^1.2.0:
version "1.2.0"
@@ -17378,15 +17398,6 @@ simple-get@^2.7.0:
once "^1.3.1"
simple-concat "^1.0.0"
-simple-get@^4.0.0, simple-get@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-4.0.1.tgz#4a39db549287c979d352112fa03fd99fd6bc3543"
- integrity sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==
- dependencies:
- decompress-response "^6.0.0"
- once "^1.3.1"
- simple-concat "^1.0.0"
-
simple-git@^3.27.0:
version "3.27.0"
resolved "https://registry.yarnpkg.com/simple-git/-/simple-git-3.27.0.tgz#f4b09e807bda56a4a3968f635c0e4888d3decbd5"
@@ -17705,16 +17716,6 @@ stream-shift@^1.0.0:
resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952"
integrity sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI=
-streamx@^2.15.0, streamx@^2.21.0:
- version "2.22.1"
- resolved "https://registry.yarnpkg.com/streamx/-/streamx-2.22.1.tgz#c97cbb0ce18da4f4db5a971dc9ab68ff5dc7f5a5"
- integrity sha512-znKXEBxfatz2GBNK02kRnCXjV+AA4kjZIUxeWSr3UGirZMJfTE9uiwKHobnbgxWyL/JWro8tTq+vOqAK1/qbSA==
- dependencies:
- fast-fifo "^1.3.2"
- text-decoder "^1.1.0"
- optionalDependencies:
- bare-events "^2.2.0"
-
strict-event-emitter@^0.5.1:
version "0.5.1"
resolved "https://registry.yarnpkg.com/strict-event-emitter/-/strict-event-emitter-0.5.1.tgz#1602ece81c51574ca39c6815e09f1a3e8550bd93"
@@ -17933,11 +17934,6 @@ strip-json-comments@^3.1.1:
resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
-strip-json-comments@~2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
- integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo=
-
strnum@^1.1.1:
version "1.1.2"
resolved "https://registry.yarnpkg.com/strnum/-/strnum-1.1.2.tgz#57bca4fbaa6f271081715dbc9ed7cee5493e28e4"
@@ -17956,17 +17952,17 @@ structured-headers@^0.4.1:
resolved "https://registry.yarnpkg.com/structured-headers/-/structured-headers-0.4.1.tgz#77abd9410622c6926261c09b9d16cf10592694d1"
integrity sha512-0MP/Cxx5SzeeZ10p/bZI0S6MpgD+yxAhi1BOQ34jgnMXsCq3j1t6tQnZu+KdlL7dvJTLT3g9xN8tl10TqgFMcg==
-sucrase@3.35.0, sucrase@^3.17.1, sucrase@^3.35.0:
- version "3.35.0"
- resolved "https://registry.yarnpkg.com/sucrase/-/sucrase-3.35.0.tgz#57f17a3d7e19b36d8995f06679d121be914ae263"
- integrity sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==
+sucrase@^3.17.1, sucrase@^3.35.0, sucrase@~3.35.1:
+ version "3.35.1"
+ resolved "https://registry.yarnpkg.com/sucrase/-/sucrase-3.35.1.tgz#4619ea50393fe8bd0ae5071c26abd9b2e346bfe1"
+ integrity sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw==
dependencies:
"@jridgewell/gen-mapping" "^0.3.2"
commander "^4.0.0"
- glob "^10.3.10"
lines-and-columns "^1.1.6"
mz "^2.7.0"
pirates "^4.0.1"
+ tinyglobby "^0.2.11"
ts-interface-checker "^0.1.9"
superstruct@^0.14.2:
@@ -18093,47 +18089,6 @@ tapable@^2.1.1, tapable@^2.2.0:
resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0"
integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==
-tar-fs@^2.0.0:
- version "2.1.3"
- resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-2.1.3.tgz#fb3b8843a26b6f13a08e606f7922875eb1fbbf92"
- integrity sha512-090nwYJDmlhwFwEW3QQl+vaNnxsO2yVsd45eTKRBzSzu+hlb1w2K9inVq5b0ngXuLVqQ4ApvsUHHnu/zQNkWAg==
- dependencies:
- chownr "^1.1.1"
- mkdirp-classic "^0.5.2"
- pump "^3.0.0"
- tar-stream "^2.1.4"
-
-tar-fs@^3.0.4:
- version "3.0.9"
- resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-3.0.9.tgz#d570793c6370d7078926c41fa422891566a0b617"
- integrity sha512-XF4w9Xp+ZQgifKakjZYmFdkLoSWd34VGKcsTCwlNWM7QG3ZbaxnTsaBwnjFZqHRf/rROxaR8rXnbtwdvaDI+lA==
- dependencies:
- pump "^3.0.0"
- tar-stream "^3.1.5"
- optionalDependencies:
- bare-fs "^4.0.1"
- bare-path "^3.0.0"
-
-tar-stream@^2.1.4:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz#acad84c284136b060dc3faa64474aa9aebd77287"
- integrity sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==
- dependencies:
- bl "^4.0.3"
- end-of-stream "^1.4.1"
- fs-constants "^1.0.0"
- inherits "^2.0.3"
- readable-stream "^3.1.1"
-
-tar-stream@^3.1.5:
- version "3.1.7"
- resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-3.1.7.tgz#24b3fb5eabada19fe7338ed6d26e5f7c482e792b"
- integrity sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==
- dependencies:
- b4a "^1.6.4"
- fast-fifo "^1.2.0"
- streamx "^2.15.0"
-
tar@^4.0.2:
version "4.4.19"
resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.19.tgz#2e4d7263df26f2b914dee10c825ab132123742f3"
@@ -18147,23 +18102,6 @@ tar@^4.0.2:
safe-buffer "^5.2.1"
yallist "^3.1.1"
-tar@^7.4.3:
- version "7.4.3"
- resolved "https://registry.yarnpkg.com/tar/-/tar-7.4.3.tgz#88bbe9286a3fcd900e94592cda7a22b192e80571"
- integrity sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==
- dependencies:
- "@isaacs/fs-minipass" "^4.0.0"
- chownr "^3.0.0"
- minipass "^7.1.2"
- minizlib "^3.0.1"
- mkdirp "^3.0.1"
- yallist "^5.0.0"
-
-temp-dir@~2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/temp-dir/-/temp-dir-2.0.0.tgz#bde92b05bdfeb1516e804c9c00ad45177f31321e"
- integrity sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==
-
terminal-link@^2.1.1:
version "2.1.1"
resolved "https://registry.yarnpkg.com/terminal-link/-/terminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994"
@@ -18207,13 +18145,6 @@ test-exclude@^6.0.0:
glob "^7.1.4"
minimatch "^3.0.4"
-text-decoder@^1.1.0:
- version "1.2.3"
- resolved "https://registry.yarnpkg.com/text-decoder/-/text-decoder-1.2.3.tgz#b19da364d981b2326d5f43099c310cc80d770c65"
- integrity sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==
- dependencies:
- b4a "^1.6.4"
-
text-encoding-utf-8@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/text-encoding-utf-8/-/text-encoding-utf-8-1.0.2.tgz#585b62197b0ae437e3c7b5d0af27ac1021e10d13"
@@ -18302,6 +18233,14 @@ tinycolor2@^1.4.1:
resolved "https://registry.yarnpkg.com/tinycolor2/-/tinycolor2-1.6.0.tgz#f98007460169b0263b97072c5ae92484ce02d09e"
integrity sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==
+tinyglobby@^0.2.11:
+ version "0.2.15"
+ resolved "https://registry.yarnpkg.com/tinyglobby/-/tinyglobby-0.2.15.tgz#e228dd1e638cea993d2fdb4fcd2d4602a79951c2"
+ integrity sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==
+ dependencies:
+ fdir "^6.5.0"
+ picomatch "^4.0.3"
+
tmp@^0.0.33:
version "0.0.33"
resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9"
@@ -18643,10 +18582,10 @@ typeforce@^1.11.3, typeforce@^1.11.5, typeforce@^1.18.0:
resolved "https://registry.yarnpkg.com/typeforce/-/typeforce-1.18.0.tgz#d7416a2c5845e085034d70fcc5b6cc4a90edbfdc"
integrity sha512-7uc1O8h1M1g0rArakJdf0uLRSSgFcYexrVoKo+bzJd32gd4gDy2L/Z+8/FjPnU9ydY3pEnVPtr9FyscYY60K1g==
-typescript@5.0.4:
- version "5.0.4"
- resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.0.4.tgz#b217fd20119bd61a94d4011274e0ab369058da3b"
- integrity sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==
+typescript@^5.8.3:
+ version "5.9.3"
+ resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.9.3.tgz#5b4f59e15310ab17a216f5d6cf53ee476ede670f"
+ integrity sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==
typical@^4.0.0:
version "4.0.0"
@@ -18702,11 +18641,6 @@ undici@5.28.4:
dependencies:
"@fastify/busboy" "^2.0.0"
-undici@^6.18.2:
- version "6.21.3"
- resolved "https://registry.yarnpkg.com/undici/-/undici-6.21.3.tgz#185752ad92c3d0efe7a7d1f6854a50f83b552d7a"
- integrity sha512-gBLkYIlEnSp8pFbT64yFgGE6UIB9tAkhukC23PmMDCe5Nd+cRqKxSjw5y54MK2AZMgZfJWMaNE4nYUHgi1XEOw==
-
unenv@^1.9.0:
version "1.9.0"
resolved "https://registry.yarnpkg.com/unenv/-/unenv-1.9.0.tgz#469502ae85be1bd3a6aa60f810972b1a904ca312"
@@ -18746,13 +18680,6 @@ unicode-property-aliases-ecmascript@^2.0.0:
resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz#0a36cb9a585c4f6abd51ad1deddb285c165297c8"
integrity sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==
-unique-string@~2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-2.0.0.tgz#39c6451f81afb2749de2b233e3f7c5e8843bd89d"
- integrity sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==
- dependencies:
- crypto-random-string "^2.0.0"
-
universalify@^0.1.0:
version "0.1.2"
resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66"
@@ -19466,6 +19393,11 @@ whatwg-fetch@^3.0.0, whatwg-fetch@^3.4.1:
resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.6.20.tgz#580ce6d791facec91d37c72890995a0b48d31c70"
integrity sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==
+whatwg-url-minimum@^0.1.1:
+ version "0.1.1"
+ resolved "https://registry.yarnpkg.com/whatwg-url-minimum/-/whatwg-url-minimum-0.1.1.tgz#df90eba931c3624c6a74dd9b7d39634390f2b67f"
+ integrity sha512-u2FNVjFVFZhdjb502KzXy1gKn1mEisQRJssmSJT8CPhZdZa0AP6VCbWlXERKyGu0l09t0k50FiDiralpGhBxgA==
+
whatwg-url-without-unicode@8.0.0-3:
version "8.0.0-3"
resolved "https://registry.yarnpkg.com/whatwg-url-without-unicode/-/whatwg-url-without-unicode-8.0.0-3.tgz#ab6df4bf6caaa6c85a59f6e82c026151d4bb376b"
@@ -19582,11 +19514,6 @@ wildcard@^2.0.0:
resolved "https://registry.yarnpkg.com/wildcard/-/wildcard-2.0.0.tgz#a77d20e5200c6faaac979e4b3aadc7b3dd7f8fec"
integrity sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==
-wonka@^6.3.2:
- version "6.3.4"
- resolved "https://registry.yarnpkg.com/wonka/-/wonka-6.3.4.tgz#76eb9316e3d67d7febf4945202b5bdb2db534594"
- integrity sha512-CjpbqNtBGNAeyNS/9W6q3kSkKE52+FjIj7AkFlLr11s/VWGUu6a2CdYSdGxocIhIVjaW/zchesBQUKPVU69Cqg==
-
word-wrap@^1.2.5:
version "1.2.5"
resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz#d2c45c6dd4fbce621a66f136cbe328afd0410b34"
@@ -19684,9 +19611,9 @@ ws@^7, ws@^7.4.5, ws@^7.4.6, ws@^7.5.1, ws@^7.5.10:
integrity sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==
ws@^8.1.0, ws@^8.12.1, ws@^8.18.0, ws@^8.2.2, ws@^8.5.0, ws@^8.8.1:
- version "8.18.0"
- resolved "https://registry.yarnpkg.com/ws/-/ws-8.18.0.tgz#0d7505a6eafe2b0e712d232b42279f53bc289bbc"
- integrity sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==
+ version "8.18.3"
+ resolved "https://registry.yarnpkg.com/ws/-/ws-8.18.3.tgz#b56b88abffde62791c639170400c93dcb0c95472"
+ integrity sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==
xcode@^3.0.1:
version "3.0.1"
@@ -19726,22 +19653,22 @@ xhr@^2.0.1, xhr@^2.0.4, xhr@^2.3.3:
parse-headers "^2.0.0"
xtend "^4.0.0"
-xml-formatter@^3.6.5:
- version "3.6.6"
- resolved "https://registry.yarnpkg.com/xml-formatter/-/xml-formatter-3.6.6.tgz#e7f275cba7565e5afd6c6d74e1ef6f589f0b4ac6"
- integrity sha512-yfofQht42x2sN1YThT6Er6GFXiQinfDAsMTNvMPi2uZw5/Vtc2PYHfvALR8U+b2oN2ekBxLd2tGWV06rAM8nQA==
+xml-formatter@^3.6.7:
+ version "3.6.7"
+ resolved "https://registry.yarnpkg.com/xml-formatter/-/xml-formatter-3.6.7.tgz#75d140e6dbe19b3e956ef20ef55f421c52ef8cc0"
+ integrity sha512-IsfFYJQuoDqtUlKhm4EzeoBOb+fQwzQVeyxxAQ0sThn/nFnQmyLPTplqq4yRhaOENH/tAyujD2TBfIYzUKB6hg==
dependencies:
- xml-parser-xo "^4.1.4"
+ xml-parser-xo "^4.1.5"
xml-parse-from-string@^1.0.0:
version "1.0.1"
resolved "https://registry.yarnpkg.com/xml-parse-from-string/-/xml-parse-from-string-1.0.1.tgz#a9029e929d3dbcded169f3c6e28238d95a5d5a28"
integrity sha512-ErcKwJTF54uRzzNMXq2X5sMIy88zJvfN2DmdoQvy7PAFJ+tPRU6ydWuOKNMyfmOjdyBQTFREi60s0Y0SyI0G0g==
-xml-parser-xo@^4.1.4:
- version "4.1.4"
- resolved "https://registry.yarnpkg.com/xml-parser-xo/-/xml-parser-xo-4.1.4.tgz#2b9c05d3336a140a1d2b1e2993d187daa4d7dcfe"
- integrity sha512-wo+yWDNeMwd1ctzH4CsiGXaAappDsxuR+VnmPewOzHk/zvefksT2ZlcWpAePl11THOWgnIZM4GjvumevurNWZw==
+xml-parser-xo@^4.1.5:
+ version "4.1.5"
+ resolved "https://registry.yarnpkg.com/xml-parser-xo/-/xml-parser-xo-4.1.5.tgz#c3326af56219a406f1e20741a2826655fcb3b607"
+ integrity sha512-TxyRxk9sTOUg3glxSIY6f0nfuqRll2OEF8TspLgh5mZkLuBgheCn3zClcDSGJ58TvNmiwyCCuat4UajPud/5Og==
xml2js@0.6.0:
version "0.6.0"
@@ -19817,20 +19744,15 @@ yallist@^3.0.0, yallist@^3.0.2, yallist@^3.1.1:
resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd"
integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==
-yallist@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/yallist/-/yallist-5.0.0.tgz#00e2de443639ed0d78fd87de0d27469fbcffb533"
- integrity sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==
-
yaml@^1.10.0:
version "1.10.2"
resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b"
integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==
-yaml@^2.2.1:
- version "2.8.0"
- resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.8.0.tgz#15f8c9866211bdc2d3781a0890e44d4fa1a5fff6"
- integrity sha512-4lLa/EcQCB0cJkyts+FpIRx5G/llPxfP6VQU5KByHEhLxY3IJCH0f0Hy1MHI8sClTvsIb8qwRJ6R/ZdlDJ/leQ==
+yaml@^2.2.1, yaml@^2.6.1:
+ version "2.8.1"
+ resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.8.1.tgz#1870aa02b631f7e8328b93f8bc574fac5d6c4d79"
+ integrity sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw==
yaob@^0.3.12, yaob@^0.3.6:
version "0.3.12"
@@ -19930,10 +19852,10 @@ yoctocolors-cjs@^2.1.2:
resolved "https://registry.yarnpkg.com/yoctocolors-cjs/-/yoctocolors-cjs-2.1.2.tgz#f4b905a840a37506813a7acaa28febe97767a242"
integrity sha512-cYVsTjKl8b+FrnidjibDWskAv7UKOfcwaVZdp/it9n1s9fU3IkgDbhdIRKCW4JDsAlECJY0ytoVPT3sK6kideA==
-zod@^3.21.4:
- version "3.23.8"
- resolved "https://registry.yarnpkg.com/zod/-/zod-3.23.8.tgz#e37b957b5d52079769fb8097099b592f0ef4067d"
- integrity sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==
+zod@^3.21.4, zod@^3.25.76:
+ version "3.25.76"
+ resolved "https://registry.yarnpkg.com/zod/-/zod-3.25.76.tgz#26841c3f6fd22a6a2760e7ccb719179768471e34"
+ integrity sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==
zxcvbn@^4.4.2:
version "4.4.2"