diff --git a/.gitignore b/.gitignore
index d3b53dfc..b9fce301 100644
--- a/.gitignore
+++ b/.gitignore
@@ -27,6 +27,7 @@ DerivedData
*.hmap
*.ipa
*.xcuserstate
+**/.xcode.env.local
project.xcworkspace
# Android/IJ
diff --git a/example/.eslintrc.js b/example/.eslintrc.js
new file mode 100644
index 00000000..187894b6
--- /dev/null
+++ b/example/.eslintrc.js
@@ -0,0 +1,4 @@
+module.exports = {
+ root: true,
+ extends: '@react-native',
+};
diff --git a/example/.gitignore b/example/.gitignore
new file mode 100644
index 00000000..de999559
--- /dev/null
+++ b/example/.gitignore
@@ -0,0 +1,75 @@
+# OSX
+#
+.DS_Store
+
+# Xcode
+#
+build/
+*.pbxuser
+!default.pbxuser
+*.mode1v3
+!default.mode1v3
+*.mode2v3
+!default.mode2v3
+*.perspectivev3
+!default.perspectivev3
+xcuserdata
+*.xccheckout
+*.moved-aside
+DerivedData
+*.hmap
+*.ipa
+*.xcuserstate
+**/.xcode.env.local
+
+# Android/IntelliJ
+#
+build/
+.idea
+.gradle
+local.properties
+*.iml
+*.hprof
+.cxx/
+*.keystore
+!debug.keystore
+.kotlin/
+
+# node.js
+#
+node_modules/
+npm-debug.log
+yarn-error.log
+
+# fastlane
+#
+# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
+# screenshots whenever they are needed.
+# For more information about the recommended setup visit:
+# https://docs.fastlane.tools/best-practices/source-control/
+
+**/fastlane/report.xml
+**/fastlane/Preview.html
+**/fastlane/screenshots
+**/fastlane/test_output
+
+# Bundle artifact
+*.jsbundle
+
+# Ruby / CocoaPods
+**/Pods/
+/vendor/bundle/
+
+# Temporary files created by Metro to check the health of the file watcher
+.metro-health-check*
+
+# testing
+/coverage
+
+# Yarn
+.yarn/*
+!.yarn/patches
+!.yarn/plugins
+!.yarn/releases
+!.yarn/sdks
+!.yarn/versions
diff --git a/example/.prettierrc.js b/example/.prettierrc.js
new file mode 100644
index 00000000..06860c8d
--- /dev/null
+++ b/example/.prettierrc.js
@@ -0,0 +1,5 @@
+module.exports = {
+ arrowParens: 'avoid',
+ singleQuote: true,
+ trailingComma: 'all',
+};
diff --git a/example/Gemfile b/example/Gemfile
index 5039155b..6a4c5f17 100644
--- a/example/Gemfile
+++ b/example/Gemfile
@@ -5,4 +5,12 @@ ruby ">= 2.6.10"
# Exclude problematic versions of cocoapods and activesupport that causes build failures.
gem 'cocoapods', '>= 1.13', '!= 1.15.0', '!= 1.15.1'
-gem 'activesupport', '>= 6.1.7.5', '!= 7.1.0'
\ No newline at end of file
+gem 'activesupport', '>= 6.1.7.5', '!= 7.1.0'
+gem 'xcodeproj', '< 1.26.0'
+gem 'concurrent-ruby', '< 1.3.4'
+
+# Ruby 3.4.0 has removed some libraries from the standard library.
+gem 'bigdecimal'
+gem 'logger'
+gem 'benchmark'
+gem 'mutex_m'
diff --git a/example/Gemfile.lock b/example/Gemfile.lock
index bc71b1f3..2df3ac48 100644
--- a/example/Gemfile.lock
+++ b/example/Gemfile.lock
@@ -5,23 +5,32 @@ GEM
base64
nkf
rexml
- activesupport (7.0.8)
- concurrent-ruby (~> 1.0, >= 1.0.2)
+ activesupport (7.2.2.1)
+ base64
+ benchmark (>= 0.3)
+ bigdecimal
+ concurrent-ruby (~> 1.0, >= 1.3.1)
+ connection_pool (>= 2.2.5)
+ drb
i18n (>= 1.6, < 2)
+ logger (>= 1.4.2)
minitest (>= 5.1)
- tzinfo (~> 2.0)
+ securerandom (>= 0.3)
+ tzinfo (~> 2.0, >= 2.0.5)
addressable (2.8.7)
public_suffix (>= 2.0.2, < 7.0)
algoliasearch (1.27.5)
httpclient (~> 2.8, >= 2.8.3)
json (>= 1.5.1)
atomos (0.1.3)
- base64 (0.2.0)
+ base64 (0.3.0)
+ benchmark (0.4.1)
+ bigdecimal (3.2.2)
claide (1.1.0)
- cocoapods (1.14.3)
+ cocoapods (1.15.2)
addressable (~> 2.8)
claide (>= 1.0.2, < 2.0)
- cocoapods-core (= 1.14.3)
+ cocoapods-core (= 1.15.2)
cocoapods-deintegrate (>= 1.0.3, < 2.0)
cocoapods-downloader (>= 2.1, < 3.0)
cocoapods-plugins (>= 1.0.0, < 2.0)
@@ -36,7 +45,7 @@ GEM
nap (~> 1.0)
ruby-macho (>= 2.3.0, < 3.0)
xcodeproj (>= 1.23.0, < 2.0)
- cocoapods-core (1.14.3)
+ cocoapods-core (1.15.2)
activesupport (>= 5.0, < 8)
addressable (~> 2.8)
algoliasearch (~> 1.0)
@@ -56,11 +65,13 @@ GEM
netrc (~> 0.11)
cocoapods-try (1.2.0)
colored2 (3.1.2)
- concurrent-ruby (1.3.4)
+ concurrent-ruby (1.3.3)
+ connection_pool (2.5.3)
+ drb (2.2.3)
escape (0.0.4)
ethon (0.16.0)
ffi (>= 1.15.0)
- ffi (1.17.1)
+ ffi (1.17.2)
fourflusher (2.3.1)
fuzzy_match (2.0.4)
gh_inspector (1.1.3)
@@ -68,27 +79,29 @@ GEM
mutex_m
i18n (1.14.7)
concurrent-ruby (~> 1.0)
- json (2.10.1)
- minitest (5.25.4)
+ json (2.12.2)
+ logger (1.7.0)
+ minitest (5.25.5)
molinillo (0.8.0)
mutex_m (0.3.0)
- nanaimo (0.4.0)
+ nanaimo (0.3.0)
nap (1.1.0)
netrc (0.11.0)
nkf (0.2.0)
public_suffix (4.0.7)
rexml (3.4.1)
ruby-macho (2.5.1)
+ securerandom (0.4.1)
typhoeus (1.4.1)
ethon (>= 0.9.0)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
- xcodeproj (1.27.0)
+ xcodeproj (1.25.1)
CFPropertyList (>= 2.3.3, < 4.0)
atomos (~> 0.1.3)
claide (>= 1.0.2, < 2.0)
colored2 (~> 3.1)
- nanaimo (~> 0.4.0)
+ nanaimo (~> 0.3.0)
rexml (>= 3.3.6, < 4.0)
PLATFORMS
@@ -96,10 +109,16 @@ PLATFORMS
DEPENDENCIES
activesupport (>= 6.1.7.5, != 7.1.0)
+ benchmark
+ bigdecimal
cocoapods (>= 1.13, != 1.15.1, != 1.15.0)
+ concurrent-ruby (< 1.3.4)
+ logger
+ mutex_m
+ xcodeproj (< 1.26.0)
RUBY VERSION
- ruby 3.4.2p28
+ ruby 3.4.3p32
BUNDLED WITH
- 2.6.5
+ 2.6.7
diff --git a/example/README.md b/example/README.md
index 12470c30..3e2c3f85 100644
--- a/example/README.md
+++ b/example/README.md
@@ -2,58 +2,76 @@ This is a new [**React Native**](https://reactnative.dev) project, bootstrapped
# Getting Started
->**Note**: Make sure you have completed the [React Native - Environment Setup](https://reactnative.dev/docs/environment-setup) instructions till "Creating a new application" step, before proceeding.
+> **Note**: Make sure you have completed the [Set Up Your Environment](https://reactnative.dev/docs/set-up-your-environment) guide before proceeding.
-## Step 1: Start the Metro Server
+## Step 1: Start Metro
-First, you will need to start **Metro**, the JavaScript _bundler_ that ships _with_ React Native.
+First, you will need to run **Metro**, the JavaScript build tool for React Native.
-To start Metro, run the following command from the _root_ of your React Native project:
+To start the Metro dev server, run the following command from the root of your React Native project:
-```bash
-# using npm
+```sh
+# Using npm
npm start
# OR using Yarn
yarn start
```
-## Step 2: Start your Application
+## Step 2: Build and run your app
-Let Metro Bundler run in its _own_ terminal. Open a _new_ terminal from the _root_ of your React Native project. Run the following command to start your _Android_ or _iOS_ app:
+With Metro running, open a new terminal window/pane from the root of your React Native project, and use one of the following commands to build and run your Android or iOS app:
-### For Android
+### Android
-```bash
-# using npm
+```sh
+# Using npm
npm run android
# OR using Yarn
yarn android
```
-### For iOS
+### iOS
-```bash
-# using npm
+For iOS, remember to install CocoaPods dependencies (this only needs to be run on first clone or after updating native deps).
+
+The first time you create a new project, run the Ruby bundler to install CocoaPods itself:
+
+```sh
+bundle install
+```
+
+Then, and every time you update your native dependencies, run:
+
+```sh
+bundle exec pod install
+```
+
+For more information, please visit [CocoaPods Getting Started guide](https://guides.cocoapods.org/using/getting-started.html).
+
+```sh
+# Using npm
npm run ios
# OR using Yarn
yarn ios
```
-If everything is set up _correctly_, you should see your new app running in your _Android Emulator_ or _iOS Simulator_ shortly provided you have set up your emulator/simulator correctly.
+If everything is set up correctly, you should see your new app running in the Android Emulator, iOS Simulator, or your connected device.
+
+This is one way to run your app — you can also build it directly from Android Studio or Xcode.
-This is one way to run your app — you can also run it directly from within Android Studio and Xcode respectively.
+## Step 3: Modify your app
-## Step 3: Modifying your App
+Now that you have successfully run the app, let's make changes!
-Now that you have successfully run the app, let's modify it.
+Open `App.tsx` in your text editor of choice and make some changes. When you save, your app will automatically update and reflect these changes — this is powered by [Fast Refresh](https://reactnative.dev/docs/fast-refresh).
-1. Open `App.tsx` in your text editor of choice and edit some lines.
-2. For **Android**: Press the R key twice or select **"Reload"** from the **Developer Menu** (Ctrl + M (on Window and Linux) or Cmd ⌘ + M (on macOS)) to see your changes!
+When you want to forcefully reload, for example to reset the state of your app, you can perform a full reload:
- For **iOS**: Hit Cmd ⌘ + R in your iOS Simulator to reload the app and see your changes!
+- **Android**: Press the R key twice or select **"Reload"** from the **Dev Menu**, accessed via Ctrl + M (Windows/Linux) or Cmd ⌘ + M (macOS).
+- **iOS**: Press R in iOS Simulator.
## Congratulations! :tada:
@@ -62,11 +80,11 @@ You've successfully run and modified your React Native App. :partying_face:
### Now what?
- If you want to add this new React Native code to an existing application, check out the [Integration guide](https://reactnative.dev/docs/integration-with-existing-apps).
-- If you're curious to learn more about React Native, check out the [Introduction to React Native](https://reactnative.dev/docs/getting-started).
+- If you're curious to learn more about React Native, check out the [docs](https://reactnative.dev/docs/getting-started).
# Troubleshooting
-If you can't get this to work, see the [Troubleshooting](https://reactnative.dev/docs/troubleshooting) page.
+If you're having issues getting the above steps to work, see the [Troubleshooting](https://reactnative.dev/docs/troubleshooting) page.
# Learn More
diff --git a/example/__tests__/App.test.tsx b/example/__tests__/App.test.tsx
new file mode 100644
index 00000000..e532f701
--- /dev/null
+++ b/example/__tests__/App.test.tsx
@@ -0,0 +1,13 @@
+/**
+ * @format
+ */
+
+import React from 'react';
+import ReactTestRenderer from 'react-test-renderer';
+import App from '../App';
+
+test('renders correctly', async () => {
+ await ReactTestRenderer.act(() => {
+ ReactTestRenderer.create();
+ });
+});
diff --git a/example/android/app/build.gradle b/example/android/app/build.gradle
index 3daf2811..454b66c0 100644
--- a/example/android/app/build.gradle
+++ b/example/android/app/build.gradle
@@ -8,14 +8,14 @@ apply plugin: "com.facebook.react"
*/
react {
/* Folders */
- // The root of your project, i.e. where "package.json" lives. Default is '..'
- // root = file("../")
- // The folder where the react-native NPM package is. Default is ../node_modules/react-native
- // reactNativeDir = file("../node_modules/react-native")
- // The folder where the react-native Codegen package is. Default is ../node_modules/@react-native/codegen
- // codegenDir = file("../node_modules/@react-native/codegen")
- // The cli.js file which is the React Native CLI entrypoint. Default is ../node_modules/react-native/cli.js
- // cliFile = file("../node_modules/react-native/cli.js")
+ // The root of your project, i.e. where "package.json" lives. Default is '../..'
+ // root = file("../../")
+ // The folder where the react-native NPM package is. Default is ../../node_modules/react-native
+ // reactNativeDir = file("../../node_modules/react-native")
+ // The folder where the react-native Codegen package is. Default is ../../node_modules/@react-native/codegen
+ // codegenDir = file("../../node_modules/@react-native/codegen")
+ // The cli.js file which is the React Native CLI entrypoint. Default is ../../node_modules/react-native/cli.js
+ // cliFile = file("../../node_modules/react-native/cli.js")
/* Variants */
// The list of variants to that are debuggable. For those we're going to
@@ -49,6 +49,9 @@ react {
//
// The list of flags to pass to the Hermes compiler. By default is "-O", "-output-source-map"
// hermesFlags = ["-O", "-output-source-map"]
+
+ /* Autolinking */
+ autolinkLibrariesWithApp()
}
/**
@@ -60,14 +63,14 @@ def enableProguardInReleaseBuilds = false
* The preferred build flavor of JavaScriptCore (JSC)
*
* For example, to use the international variant, you can use:
- * `def jscFlavor = 'org.webkit:android-jsc-intl:+'`
+ * `def jscFlavor = io.github.react-native-community:jsc-android-intl:2026004.+`
*
* The international variant includes ICU i18n library and necessary data
* allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that
* give correct results when using with locales other than en-US. Note that
* this variant is about 6MiB larger per architecture than default.
*/
-def jscFlavor = 'org.webkit:android-jsc:+'
+def jscFlavor = 'io.github.react-native-community:jsc-android:2026004.+'
android {
ndkVersion rootProject.ext.ndkVersion
@@ -114,5 +117,3 @@ dependencies {
implementation jscFlavor
}
}
-
-apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project)
diff --git a/example/android/app/src/main/AndroidManifest.xml b/example/android/app/src/main/AndroidManifest.xml
index 4122f36a..e1892528 100644
--- a/example/android/app/src/main/AndroidManifest.xml
+++ b/example/android/app/src/main/AndroidManifest.xml
@@ -8,7 +8,8 @@
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round"
android:allowBackup="false"
- android:theme="@style/AppTheme">
+ android:theme="@style/AppTheme"
+ android:supportsRtl="true">
/dev/null && pwd -P ) || exit
+APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
@@ -112,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.
@@ -203,7 +205,7 @@ fi
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
# Collect all arguments for the java command:
-# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
+# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
# and any embedded shellness will be escaped.
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
# treated as '${Hostname}' itself on the command line.
@@ -211,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/example/android/gradlew.bat b/example/android/gradlew.bat
index 25da30db..dd2b8eed 100644
--- a/example/android/gradlew.bat
+++ b/example/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
@@ -13,6 +18,8 @@
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
@rem
+@rem SPDX-License-Identifier: Apache-2.0
+@rem
@if "%DEBUG%"=="" @echo off
@rem ##########################################################################
@@ -68,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/example/android/settings.gradle b/example/android/settings.gradle
index f6c82e07..26a8a4cf 100644
--- a/example/android/settings.gradle
+++ b/example/android/settings.gradle
@@ -1,4 +1,6 @@
+pluginManagement { includeBuild("../node_modules/@react-native/gradle-plugin") }
+plugins { id("com.facebook.react.settings") }
+extensions.configure(com.facebook.react.ReactSettingsExtension){ ex -> ex.autolinkLibrariesFromCommand() }
rootProject.name = 'IosUtilitiesExample'
-apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings)
include ':app'
includeBuild('../node_modules/@react-native/gradle-plugin')
diff --git a/example/app.json b/example/app.json
index f544b49e..59020b0e 100644
--- a/example/app.json
+++ b/example/app.json
@@ -1,5 +1,4 @@
{
"name": "IosUtilitiesExample",
- "displayName": "IosUtilitiesExample",
- "jsEngine": "hermes"
+ "displayName": "IosUtilitiesExample"
}
diff --git a/example/index.js b/example/index.js
index 117ddcae..752e7ee3 100644
--- a/example/index.js
+++ b/example/index.js
@@ -1,3 +1,7 @@
+/**
+ * @format
+ */
+
import { AppRegistry } from 'react-native';
import App from './src/App';
import { name as appName } from './app.json';
diff --git a/example/ios/.xcode.env b/example/ios/.xcode.env
index 772b339b..3d5782c7 100644
--- a/example/ios/.xcode.env
+++ b/example/ios/.xcode.env
@@ -1 +1,11 @@
+# This `.xcode.env` file is versioned and is used to source the environment
+# used when running script phases inside Xcode.
+# To customize your local environment, you can create an `.xcode.env.local`
+# file that is not versioned.
+
+# NODE_BINARY variable contains the PATH to the node executable.
+#
+# Customize the NODE_BINARY variable here.
+# For example, to use nvm with brew, add the following line
+# . "$(brew --prefix nvm)/nvm.sh" --no-use
export NODE_BINARY=$(command -v node)
diff --git a/example/ios/.xcode.env.local b/example/ios/.xcode.env.local
deleted file mode 100644
index 772b339b..00000000
--- a/example/ios/.xcode.env.local
+++ /dev/null
@@ -1 +0,0 @@
-export NODE_BINARY=$(command -v node)
diff --git a/example/ios/File.swift b/example/ios/File.swift
deleted file mode 100644
index 482dd469..00000000
--- a/example/ios/File.swift
+++ /dev/null
@@ -1,6 +0,0 @@
-//
-// File.swift
-// IosUtilitiesExample
-//
-
-import Foundation
diff --git a/example/ios/IosUtilitiesExample-Bridging-Header.h b/example/ios/IosUtilitiesExample-Bridging-Header.h
deleted file mode 100644
index e11d920b..00000000
--- a/example/ios/IosUtilitiesExample-Bridging-Header.h
+++ /dev/null
@@ -1,3 +0,0 @@
-//
-// Use this file to import your target's public headers that you would like to expose to Swift.
-//
diff --git a/example/ios/IosUtilitiesExample.xcodeproj/project.pbxproj b/example/ios/IosUtilitiesExample.xcodeproj/project.pbxproj
index 722de112..e33a2cda 100644
--- a/example/ios/IosUtilitiesExample.xcodeproj/project.pbxproj
+++ b/example/ios/IosUtilitiesExample.xcodeproj/project.pbxproj
@@ -7,96 +7,46 @@
objects = {
/* Begin PBXBuildFile section */
- 00E356F31AD99517003FC87E /* IosUtilitiesExampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* IosUtilitiesExampleTests.m */; };
- 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; };
+ 0C80B921A6F3F58F76C31292 /* libPods-IosUtilitiesExample.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-IosUtilitiesExample.a */; };
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
- 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
- 4297412C273F3A65B48EAD07 /* Pods_IosUtilitiesExample_IosUtilitiesExampleTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 507D1D6D517A627615EA3D56 /* Pods_IosUtilitiesExample_IosUtilitiesExampleTests.framework */; };
- 50F9A525D930F86382B2B745 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 19AA0ED25D6BB099CBD865C9 /* PrivacyInfo.xcprivacy */; };
+ 761780ED2CA45674006654EE /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 761780EC2CA45674006654EE /* AppDelegate.swift */; };
81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
- B63B547BEE766EAE657E38E8 /* Pods_IosUtilitiesExample.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E26FA8CACB50FBD9E15B5C6E /* Pods_IosUtilitiesExample.framework */; };
+ 845E755B241EB2EB0FFA654B /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */; };
/* End PBXBuildFile section */
-/* Begin PBXContainerItemProxy section */
- 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
- remoteInfo = IosUtilitiesExample;
- };
-/* End PBXContainerItemProxy section */
-
/* Begin PBXFileReference section */
- 00E356EE1AD99517003FC87E /* IosUtilitiesExampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = IosUtilitiesExampleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
- 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
- 00E356F21AD99517003FC87E /* IosUtilitiesExampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = IosUtilitiesExampleTests.m; sourceTree = ""; };
- 03BA90A1A38597F33A902C24 /* Pods-IosUtilitiesExample-IosUtilitiesExampleTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-IosUtilitiesExample-IosUtilitiesExampleTests.debug.xcconfig"; path = "Target Support Files/Pods-IosUtilitiesExample-IosUtilitiesExampleTests/Pods-IosUtilitiesExample-IosUtilitiesExampleTests.debug.xcconfig"; sourceTree = ""; };
- 065BA58EA2F81E5CE672260C /* Pods-IosUtilitiesExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-IosUtilitiesExample.release.xcconfig"; path = "Target Support Files/Pods-IosUtilitiesExample/Pods-IosUtilitiesExample.release.xcconfig"; sourceTree = ""; };
13B07F961A680F5B00A75B9A /* IosUtilitiesExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = IosUtilitiesExample.app; sourceTree = BUILT_PRODUCTS_DIR; };
- 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = IosUtilitiesExample/AppDelegate.h; sourceTree = ""; };
- 13B07FB01A68108700A75B9A /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = IosUtilitiesExample/AppDelegate.mm; sourceTree = ""; };
13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = IosUtilitiesExample/Images.xcassets; sourceTree = ""; };
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = IosUtilitiesExample/Info.plist; sourceTree = ""; };
- 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = IosUtilitiesExample/main.m; sourceTree = ""; };
13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = PrivacyInfo.xcprivacy; path = IosUtilitiesExample/PrivacyInfo.xcprivacy; sourceTree = ""; };
- 19AA0ED25D6BB099CBD865C9 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = IosUtilitiesExample/PrivacyInfo.xcprivacy; sourceTree = ""; };
- 507D1D6D517A627615EA3D56 /* Pods_IosUtilitiesExample_IosUtilitiesExampleTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_IosUtilitiesExample_IosUtilitiesExampleTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ 3B4392A12AC88292D35C810B /* Pods-IosUtilitiesExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-IosUtilitiesExample.debug.xcconfig"; path = "Target Support Files/Pods-IosUtilitiesExample/Pods-IosUtilitiesExample.debug.xcconfig"; sourceTree = ""; };
+ 5709B34CF0A7D63546082F79 /* Pods-IosUtilitiesExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-IosUtilitiesExample.release.xcconfig"; path = "Target Support Files/Pods-IosUtilitiesExample/Pods-IosUtilitiesExample.release.xcconfig"; sourceTree = ""; };
+ 5DCACB8F33CDC322A6C60F78 /* libPods-IosUtilitiesExample.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-IosUtilitiesExample.a"; sourceTree = BUILT_PRODUCTS_DIR; };
+ 761780EC2CA45674006654EE /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = IosUtilitiesExample/AppDelegate.swift; sourceTree = ""; };
81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = IosUtilitiesExample/LaunchScreen.storyboard; sourceTree = ""; };
- 88C13434723B2D633D04BF1A /* Pods-IosUtilitiesExample-IosUtilitiesExampleTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-IosUtilitiesExample-IosUtilitiesExampleTests.release.xcconfig"; path = "Target Support Files/Pods-IosUtilitiesExample-IosUtilitiesExampleTests/Pods-IosUtilitiesExample-IosUtilitiesExampleTests.release.xcconfig"; sourceTree = ""; };
- C6A86E6616A58A7FFF24F026 /* Pods-IosUtilitiesExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-IosUtilitiesExample.debug.xcconfig"; path = "Target Support Files/Pods-IosUtilitiesExample/Pods-IosUtilitiesExample.debug.xcconfig"; sourceTree = ""; };
- E26FA8CACB50FBD9E15B5C6E /* Pods_IosUtilitiesExample.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_IosUtilitiesExample.framework; sourceTree = BUILT_PRODUCTS_DIR; };
ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
- 00E356EB1AD99517003FC87E /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 4297412C273F3A65B48EAD07 /* Pods_IosUtilitiesExample_IosUtilitiesExampleTests.framework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- B63B547BEE766EAE657E38E8 /* Pods_IosUtilitiesExample.framework in Frameworks */,
+ 0C80B921A6F3F58F76C31292 /* libPods-IosUtilitiesExample.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
- 00E356EF1AD99517003FC87E /* IosUtilitiesExampleTests */ = {
- isa = PBXGroup;
- children = (
- 00E356F21AD99517003FC87E /* IosUtilitiesExampleTests.m */,
- 00E356F01AD99517003FC87E /* Supporting Files */,
- );
- path = IosUtilitiesExampleTests;
- sourceTree = "";
- };
- 00E356F01AD99517003FC87E /* Supporting Files */ = {
- isa = PBXGroup;
- children = (
- 00E356F11AD99517003FC87E /* Info.plist */,
- );
- name = "Supporting Files";
- sourceTree = "";
- };
13B07FAE1A68108700A75B9A /* IosUtilitiesExample */ = {
isa = PBXGroup;
children = (
- 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
- 13B07FB01A68108700A75B9A /* AppDelegate.mm */,
13B07FB51A68108700A75B9A /* Images.xcassets */,
+ 761780EC2CA45674006654EE /* AppDelegate.swift */,
13B07FB61A68108700A75B9A /* Info.plist */,
81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
- 13B07FB71A68108700A75B9A /* main.m */,
13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */,
- 19AA0ED25D6BB099CBD865C9 /* PrivacyInfo.xcprivacy */,
);
name = IosUtilitiesExample;
sourceTree = "";
@@ -105,8 +55,7 @@
isa = PBXGroup;
children = (
ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
- E26FA8CACB50FBD9E15B5C6E /* Pods_IosUtilitiesExample.framework */,
- 507D1D6D517A627615EA3D56 /* Pods_IosUtilitiesExample_IosUtilitiesExampleTests.framework */,
+ 5DCACB8F33CDC322A6C60F78 /* libPods-IosUtilitiesExample.a */,
);
name = Frameworks;
sourceTree = "";
@@ -123,7 +72,6 @@
children = (
13B07FAE1A68108700A75B9A /* IosUtilitiesExample */,
832341AE1AAA6A7D00B99B32 /* Libraries */,
- 00E356EF1AD99517003FC87E /* IosUtilitiesExampleTests */,
83CBBA001A601CBA00E9B192 /* Products */,
2D16E6871FA4F8E400B85C8A /* Frameworks */,
BBD78D7AC51CEA395F1C20DB /* Pods */,
@@ -137,7 +85,6 @@
isa = PBXGroup;
children = (
13B07F961A680F5B00A75B9A /* IosUtilitiesExample.app */,
- 00E356EE1AD99517003FC87E /* IosUtilitiesExampleTests.xctest */,
);
name = Products;
sourceTree = "";
@@ -145,10 +92,8 @@
BBD78D7AC51CEA395F1C20DB /* Pods */ = {
isa = PBXGroup;
children = (
- C6A86E6616A58A7FFF24F026 /* Pods-IosUtilitiesExample.debug.xcconfig */,
- 065BA58EA2F81E5CE672260C /* Pods-IosUtilitiesExample.release.xcconfig */,
- 03BA90A1A38597F33A902C24 /* Pods-IosUtilitiesExample-IosUtilitiesExampleTests.debug.xcconfig */,
- 88C13434723B2D633D04BF1A /* Pods-IosUtilitiesExample-IosUtilitiesExampleTests.release.xcconfig */,
+ 3B4392A12AC88292D35C810B /* Pods-IosUtilitiesExample.debug.xcconfig */,
+ 5709B34CF0A7D63546082F79 /* Pods-IosUtilitiesExample.release.xcconfig */,
);
path = Pods;
sourceTree = "";
@@ -156,38 +101,17 @@
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
- 00E356ED1AD99517003FC87E /* IosUtilitiesExampleTests */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "IosUtilitiesExampleTests" */;
- buildPhases = (
- 48E223F8DD0F1B2857FCF274 /* [CP] Check Pods Manifest.lock */,
- 00E356EA1AD99517003FC87E /* Sources */,
- 00E356EB1AD99517003FC87E /* Frameworks */,
- 00E356EC1AD99517003FC87E /* Resources */,
- 64B15B579D06E5D6B4B5B96F /* [CP] Embed Pods Frameworks */,
- 638B8137AF40A8FF7F91EC97 /* [CP] Copy Pods Resources */,
- );
- buildRules = (
- );
- dependencies = (
- 00E356F51AD99517003FC87E /* PBXTargetDependency */,
- );
- name = IosUtilitiesExampleTests;
- productName = IosUtilitiesExampleTests;
- productReference = 00E356EE1AD99517003FC87E /* IosUtilitiesExampleTests.xctest */;
- productType = "com.apple.product-type.bundle.unit-test";
- };
13B07F861A680F5B00A75B9A /* IosUtilitiesExample */ = {
isa = PBXNativeTarget;
buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "IosUtilitiesExample" */;
buildPhases = (
- 97008FCA7432DA3F7DC704FE /* [CP] Check Pods Manifest.lock */,
+ C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */,
13B07F871A680F5B00A75B9A /* Sources */,
13B07F8C1A680F5B00A75B9A /* Frameworks */,
13B07F8E1A680F5B00A75B9A /* Resources */,
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
- EA927B4D21A410366ECFA978 /* [CP] Embed Pods Frameworks */,
- 26ABD96E06B46FAB5614E01D /* [CP] Copy Pods Resources */,
+ 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */,
+ E235C05ADACE081382539298 /* [CP] Copy Pods Resources */,
);
buildRules = (
);
@@ -206,10 +130,6 @@
attributes = {
LastUpgradeCheck = 1210;
TargetAttributes = {
- 00E356ED1AD99517003FC87E = {
- CreatedOnToolsVersion = 6.2;
- TestTargetID = 13B07F861A680F5B00A75B9A;
- };
13B07F861A680F5B00A75B9A = {
LastSwiftMigration = 1120;
};
@@ -229,26 +149,18 @@
projectRoot = "";
targets = (
13B07F861A680F5B00A75B9A /* IosUtilitiesExample */,
- 00E356ED1AD99517003FC87E /* IosUtilitiesExampleTests */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
- 00E356EC1AD99517003FC87E /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
13B07F8E1A680F5B00A75B9A /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
- 50F9A525D930F86382B2B745 /* PrivacyInfo.xcprivacy in Resources */,
+ 845E755B241EB2EB0FFA654B /* PrivacyInfo.xcprivacy in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -271,80 +183,24 @@
shellPath = /bin/sh;
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";
};
- 26ABD96E06B46FAB5614E01D /* [CP] Copy Pods Resources */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-IosUtilitiesExample/Pods-IosUtilitiesExample-resources-${CONFIGURATION}-input-files.xcfilelist",
- );
- name = "[CP] Copy Pods Resources";
- outputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-IosUtilitiesExample/Pods-IosUtilitiesExample-resources-${CONFIGURATION}-output-files.xcfilelist",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-IosUtilitiesExample/Pods-IosUtilitiesExample-resources.sh\"\n";
- showEnvVarsInLog = 0;
- };
- 48E223F8DD0F1B2857FCF274 /* [CP] Check Pods Manifest.lock */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
- "${PODS_ROOT}/Manifest.lock",
- );
- name = "[CP] Check Pods Manifest.lock";
- outputFileListPaths = (
- );
- outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-IosUtilitiesExample-IosUtilitiesExampleTests-checkManifestLockResult.txt",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
- showEnvVarsInLog = 0;
- };
- 638B8137AF40A8FF7F91EC97 /* [CP] Copy Pods Resources */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-IosUtilitiesExample-IosUtilitiesExampleTests/Pods-IosUtilitiesExample-IosUtilitiesExampleTests-resources-${CONFIGURATION}-input-files.xcfilelist",
- );
- name = "[CP] Copy Pods Resources";
- outputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-IosUtilitiesExample-IosUtilitiesExampleTests/Pods-IosUtilitiesExample-IosUtilitiesExampleTests-resources-${CONFIGURATION}-output-files.xcfilelist",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-IosUtilitiesExample-IosUtilitiesExampleTests/Pods-IosUtilitiesExample-IosUtilitiesExampleTests-resources.sh\"\n";
- showEnvVarsInLog = 0;
- };
- 64B15B579D06E5D6B4B5B96F /* [CP] Embed Pods Frameworks */ = {
+ 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-IosUtilitiesExample-IosUtilitiesExampleTests/Pods-IosUtilitiesExample-IosUtilitiesExampleTests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
+ "${PODS_ROOT}/Target Support Files/Pods-IosUtilitiesExample/Pods-IosUtilitiesExample-frameworks-${CONFIGURATION}-input-files.xcfilelist",
);
name = "[CP] Embed Pods Frameworks";
outputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-IosUtilitiesExample-IosUtilitiesExampleTests/Pods-IosUtilitiesExample-IosUtilitiesExampleTests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
+ "${PODS_ROOT}/Target Support Files/Pods-IosUtilitiesExample/Pods-IosUtilitiesExample-frameworks-${CONFIGURATION}-output-files.xcfilelist",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-IosUtilitiesExample-IosUtilitiesExampleTests/Pods-IosUtilitiesExample-IosUtilitiesExampleTests-frameworks.sh\"\n";
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-IosUtilitiesExample/Pods-IosUtilitiesExample-frameworks.sh\"\n";
showEnvVarsInLog = 0;
};
- 97008FCA7432DA3F7DC704FE /* [CP] Check Pods Manifest.lock */ = {
+ C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -366,117 +222,47 @@
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
showEnvVarsInLog = 0;
};
- EA927B4D21A410366ECFA978 /* [CP] Embed Pods Frameworks */ = {
+ E235C05ADACE081382539298 /* [CP] Copy Pods Resources */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-IosUtilitiesExample/Pods-IosUtilitiesExample-frameworks-${CONFIGURATION}-input-files.xcfilelist",
+ "${PODS_ROOT}/Target Support Files/Pods-IosUtilitiesExample/Pods-IosUtilitiesExample-resources-${CONFIGURATION}-input-files.xcfilelist",
);
- name = "[CP] Embed Pods Frameworks";
+ name = "[CP] Copy Pods Resources";
outputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-IosUtilitiesExample/Pods-IosUtilitiesExample-frameworks-${CONFIGURATION}-output-files.xcfilelist",
+ "${PODS_ROOT}/Target Support Files/Pods-IosUtilitiesExample/Pods-IosUtilitiesExample-resources-${CONFIGURATION}-output-files.xcfilelist",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-IosUtilitiesExample/Pods-IosUtilitiesExample-frameworks.sh\"\n";
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-IosUtilitiesExample/Pods-IosUtilitiesExample-resources.sh\"\n";
showEnvVarsInLog = 0;
};
/* End PBXShellScriptBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- 00E356EA1AD99517003FC87E /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 00E356F31AD99517003FC87E /* IosUtilitiesExampleTests.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
13B07F871A680F5B00A75B9A /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */,
- 13B07FC11A68108700A75B9A /* main.m in Sources */,
+ 761780ED2CA45674006654EE /* AppDelegate.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
-/* Begin PBXTargetDependency section */
- 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 13B07F861A680F5B00A75B9A /* IosUtilitiesExample */;
- targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
- };
-/* End PBXTargetDependency section */
-
/* Begin XCBuildConfiguration section */
- 00E356F61AD99517003FC87E /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 03BA90A1A38597F33A902C24 /* Pods-IosUtilitiesExample-IosUtilitiesExampleTests.debug.xcconfig */;
- buildSettings = {
- BUNDLE_LOADER = "$(TEST_HOST)";
- GCC_PREPROCESSOR_DEFINITIONS = (
- "DEBUG=1",
- "$(inherited)",
- );
- INFOPLIST_FILE = IosUtilitiesExampleTests/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 13.4;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- "@loader_path/Frameworks",
- );
- OTHER_LDFLAGS = (
- "-ObjC",
- "-lc++",
- "$(inherited)",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
- PRODUCT_NAME = "$(TARGET_NAME)";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/IosUtilitiesExample.app/IosUtilitiesExample";
- };
- name = Debug;
- };
- 00E356F71AD99517003FC87E /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 88C13434723B2D633D04BF1A /* Pods-IosUtilitiesExample-IosUtilitiesExampleTests.release.xcconfig */;
- buildSettings = {
- BUNDLE_LOADER = "$(TEST_HOST)";
- COPY_PHASE_STRIP = NO;
- INFOPLIST_FILE = IosUtilitiesExampleTests/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 13.4;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- "@loader_path/Frameworks",
- );
- OTHER_LDFLAGS = (
- "-ObjC",
- "-lc++",
- "$(inherited)",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
- PRODUCT_NAME = "$(TARGET_NAME)";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/IosUtilitiesExample.app/IosUtilitiesExample";
- };
- name = Release;
- };
13B07F941A680F5B00A75B9A /* Debug */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = C6A86E6616A58A7FFF24F026 /* Pods-IosUtilitiesExample.debug.xcconfig */;
+ baseConfigurationReference = 3B4392A12AC88292D35C810B /* Pods-IosUtilitiesExample.debug.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
- CURRENT_PROJECT_VERSION = 374;
- DEVELOPMENT_TEAM = ZC7A6XV8GR;
+ CURRENT_PROJECT_VERSION = 1;
ENABLE_BITCODE = NO;
INFOPLIST_FILE = IosUtilitiesExample/Info.plist;
- INFOPLIST_KEY_CFBundleDisplayName = RNIUtilities;
- INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.developer-tools";
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
@@ -487,29 +273,23 @@
"-ObjC",
"-lc++",
);
- PRODUCT_BUNDLE_IDENTIFIER = dev.dominicgo.RNIUtilitiesExample;
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = IosUtilitiesExample;
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
- SUPPORTS_MACCATALYST = NO;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
};
name = Debug;
};
13B07F951A680F5B00A75B9A /* Release */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = 065BA58EA2F81E5CE672260C /* Pods-IosUtilitiesExample.release.xcconfig */;
+ baseConfigurationReference = 5709B34CF0A7D63546082F79 /* Pods-IosUtilitiesExample.release.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
- CURRENT_PROJECT_VERSION = 374;
- DEVELOPMENT_TEAM = ZC7A6XV8GR;
- GCC_PREPROCESSOR_DEFINITIONS = "$(inherited)";
+ CURRENT_PROJECT_VERSION = 1;
INFOPLIST_FILE = IosUtilitiesExample/Info.plist;
- INFOPLIST_KEY_CFBundleDisplayName = RNIUtilities;
- INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.developer-tools";
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
@@ -520,12 +300,9 @@
"-ObjC",
"-lc++",
);
- PRODUCT_BUNDLE_IDENTIFIER = dev.dominicgo.RNIUtilitiesExample;
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = IosUtilitiesExample;
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
- SUPPORTS_MACCATALYST = NO;
SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
};
name = Release;
@@ -534,7 +311,6 @@
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
- CC = "";
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
CLANG_CXX_LANGUAGE_STANDARD = "c++20";
CLANG_CXX_LIBRARY = "libc++";
@@ -562,10 +338,9 @@
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
- CXX = "";
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
- "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386;
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
@@ -581,20 +356,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
- HEADER_SEARCH_PATHS = (
- "$(inherited)",
- "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon/ReactCommon.framework/Headers",
- "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon/ReactCommon.framework/Headers/react/nativemodule/core",
- "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon-Samples/ReactCommon_Samples.framework/Headers",
- "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon-Samples/ReactCommon_Samples.framework/Headers/platform/ios",
- "${PODS_CONFIGURATION_BUILD_DIR}/React-Fabric/React_Fabric.framework/Headers/react/renderer/components/view/platform/cxx",
- "${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",
- );
- IPHONEOS_DEPLOYMENT_TARGET = 13.4;
- LD = "";
- LDPLUSPLUS = "";
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
LD_RUNPATH_SEARCH_PATHS = (
/usr/lib/swift,
"$(inherited)",
@@ -606,10 +368,6 @@
);
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
- OTHER_CFLAGS = (
- "$(inherited)",
- "-DRN_FABRIC_ENABLED",
- );
OTHER_CPLUSPLUSFLAGS = (
"$(OTHER_CFLAGS)",
"-DFOLLY_NO_CONFIG",
@@ -617,9 +375,11 @@
"-DFOLLY_USE_LIBCPP=1",
"-DFOLLY_CFG_NO_COROUTINES=1",
"-DFOLLY_HAVE_CLOCK_GETTIME=1",
- "-DRN_FABRIC_ENABLED",
);
- OTHER_LDFLAGS = "$(inherited)";
+ OTHER_LDFLAGS = (
+ "$(inherited)",
+ " ",
+ );
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
SDKROOT = iphoneos;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG";
@@ -631,7 +391,6 @@
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
- CC = "";
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
CLANG_CXX_LANGUAGE_STANDARD = "c++20";
CLANG_CXX_LIBRARY = "libc++";
@@ -659,10 +418,9 @@
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = YES;
- CXX = "";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
- "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386;
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_NO_COMMON_BLOCKS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
@@ -671,20 +429,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
- HEADER_SEARCH_PATHS = (
- "$(inherited)",
- "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon/ReactCommon.framework/Headers",
- "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon/ReactCommon.framework/Headers/react/nativemodule/core",
- "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon-Samples/ReactCommon_Samples.framework/Headers",
- "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon-Samples/ReactCommon_Samples.framework/Headers/platform/ios",
- "${PODS_CONFIGURATION_BUILD_DIR}/React-Fabric/React_Fabric.framework/Headers/react/renderer/components/view/platform/cxx",
- "${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",
- );
- IPHONEOS_DEPLOYMENT_TARGET = 13.4;
- LD = "";
- LDPLUSPLUS = "";
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
LD_RUNPATH_SEARCH_PATHS = (
/usr/lib/swift,
"$(inherited)",
@@ -695,10 +440,6 @@
"\"$(inherited)\"",
);
MTL_ENABLE_DEBUG_INFO = NO;
- OTHER_CFLAGS = (
- "$(inherited)",
- "-DRN_FABRIC_ENABLED",
- );
OTHER_CPLUSPLUSFLAGS = (
"$(OTHER_CFLAGS)",
"-DFOLLY_NO_CONFIG",
@@ -706,9 +447,11 @@
"-DFOLLY_USE_LIBCPP=1",
"-DFOLLY_CFG_NO_COROUTINES=1",
"-DFOLLY_HAVE_CLOCK_GETTIME=1",
- "-DRN_FABRIC_ENABLED",
);
- OTHER_LDFLAGS = "$(inherited)";
+ OTHER_LDFLAGS = (
+ "$(inherited)",
+ " ",
+ );
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
SDKROOT = iphoneos;
USE_HERMES = true;
@@ -719,15 +462,6 @@
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
- 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "IosUtilitiesExampleTests" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 00E356F61AD99517003FC87E /* Debug */,
- 00E356F71AD99517003FC87E /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "IosUtilitiesExample" */ = {
isa = XCConfigurationList;
buildConfigurations = (
diff --git a/example/ios/IosUtilitiesExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/example/ios/IosUtilitiesExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
deleted file mode 100644
index 18d98100..00000000
--- a/example/ios/IosUtilitiesExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
- IDEDidComputeMac32BitWarning
-
-
-
diff --git a/example/ios/IosUtilitiesExample/AppDelegate.h b/example/ios/IosUtilitiesExample/AppDelegate.h
deleted file mode 100644
index 5d280825..00000000
--- a/example/ios/IosUtilitiesExample/AppDelegate.h
+++ /dev/null
@@ -1,6 +0,0 @@
-#import
-#import
-
-@interface AppDelegate : RCTAppDelegate
-
-@end
diff --git a/example/ios/IosUtilitiesExample/AppDelegate.mm b/example/ios/IosUtilitiesExample/AppDelegate.mm
deleted file mode 100644
index 9bb1dc79..00000000
--- a/example/ios/IosUtilitiesExample/AppDelegate.mm
+++ /dev/null
@@ -1,34 +0,0 @@
-#import "AppDelegate.h"
-
-#import
-#import
-
-
-@implementation AppDelegate
-
-- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
-{
- self.moduleName = @"IosUtilitiesExample";
- self.dependencyProvider = [RCTAppDependencyProvider new];
-
- // You can add your custom initial props in the dictionary below.
- // They will be passed down to the ViewController used by React Native.
- self.initialProps = @{};
-
- return [super application:application didFinishLaunchingWithOptions:launchOptions];
-}
-
-- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge
-{
- return [self bundleURL];
-}
-
-- (NSURL *)bundleURL
-{
-#if DEBUG
- return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index"];
-#else
- return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"];
-#endif
-}
-@end
diff --git a/example/ios/IosUtilitiesExample/AppDelegate.swift b/example/ios/IosUtilitiesExample/AppDelegate.swift
new file mode 100644
index 00000000..bfa34a46
--- /dev/null
+++ b/example/ios/IosUtilitiesExample/AppDelegate.swift
@@ -0,0 +1,48 @@
+import UIKit
+import React
+import React_RCTAppDelegate
+import ReactAppDependencyProvider
+
+@main
+class AppDelegate: UIResponder, UIApplicationDelegate {
+ var window: UIWindow?
+
+ var reactNativeDelegate: ReactNativeDelegate?
+ var reactNativeFactory: RCTReactNativeFactory?
+
+ func application(
+ _ application: UIApplication,
+ didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? = nil
+ ) -> Bool {
+ let delegate = ReactNativeDelegate()
+ let factory = RCTReactNativeFactory(delegate: delegate)
+ delegate.dependencyProvider = RCTAppDependencyProvider()
+
+ reactNativeDelegate = delegate
+ reactNativeFactory = factory
+
+ window = UIWindow(frame: UIScreen.main.bounds)
+
+ factory.startReactNative(
+ withModuleName: "IosUtilitiesExample",
+ in: window,
+ launchOptions: launchOptions
+ )
+
+ return true
+ }
+}
+
+class ReactNativeDelegate: RCTDefaultReactNativeFactoryDelegate {
+ override func sourceURL(for bridge: RCTBridge) -> URL? {
+ self.bundleURL()
+ }
+
+ override func bundleURL() -> URL? {
+#if DEBUG
+ RCTBundleURLProvider.sharedSettings().jsBundleURL(forBundleRoot: "index")
+#else
+ Bundle.main.url(forResource: "main", withExtension: "jsbundle")
+#endif
+ }
+}
diff --git a/example/ios/IosUtilitiesExample/Info.plist b/example/ios/IosUtilitiesExample/Info.plist
index 05c9928d..9c992305 100644
--- a/example/ios/IosUtilitiesExample/Info.plist
+++ b/example/ios/IosUtilitiesExample/Info.plist
@@ -2,8 +2,6 @@
- ITSAppUsesNonExemptEncryption
-
CFBundleDevelopmentRegion
en
CFBundleDisplayName
@@ -19,11 +17,11 @@
CFBundlePackageType
APPL
CFBundleShortVersionString
- 5.1.3
+ $(MARKETING_VERSION)
CFBundleSignature
????
CFBundleVersion
- 374
+ $(CURRENT_PROJECT_VERSION)
LSRequiresIPhoneOS
NSAppTransportSecurity
@@ -35,26 +33,19 @@
NSLocationWhenInUseUsageDescription
+ RCTNewArchEnabled
+
UILaunchStoryboardName
- LaunchScreen.storyboard
+ LaunchScreen
UIRequiredDeviceCapabilities
arm64
- UIRequiresFullScreen
-
UISupportedInterfaceOrientations
- UIInterfaceOrientationLandscapeLeft
- UIInterfaceOrientationLandscapeRight
UIInterfaceOrientationPortrait
-
- UISupportedInterfaceOrientations~ipad
-
UIInterfaceOrientationLandscapeLeft
UIInterfaceOrientationLandscapeRight
- UIInterfaceOrientationPortrait
- UIInterfaceOrientationPortraitUpsideDown
UIViewControllerBasedStatusBarAppearance
diff --git a/example/ios/IosUtilitiesExample/main.m b/example/ios/IosUtilitiesExample/main.m
deleted file mode 100644
index d645c724..00000000
--- a/example/ios/IosUtilitiesExample/main.m
+++ /dev/null
@@ -1,10 +0,0 @@
-#import
-
-#import "AppDelegate.h"
-
-int main(int argc, char *argv[])
-{
- @autoreleasepool {
- return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
- }
-}
diff --git a/example/ios/IosUtilitiesExampleTests/Info.plist b/example/ios/IosUtilitiesExampleTests/Info.plist
deleted file mode 100644
index 1680070f..00000000
--- a/example/ios/IosUtilitiesExampleTests/Info.plist
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
- CFBundleDevelopmentRegion
- en
- CFBundleExecutable
- $(EXECUTABLE_NAME)
- CFBundleIdentifier
- $(PRODUCT_BUNDLE_IDENTIFIER)
- CFBundleInfoDictionaryVersion
- 6.0
- CFBundleName
- $(PRODUCT_NAME)
- CFBundlePackageType
- BNDL
- CFBundleShortVersionString
- 5.1.3
- CFBundleSignature
- ????
- CFBundleVersion
- 374
-
-
diff --git a/example/ios/IosUtilitiesExampleTests/IosUtilitiesExampleTests.m b/example/ios/IosUtilitiesExampleTests/IosUtilitiesExampleTests.m
deleted file mode 100644
index 0e945c5c..00000000
--- a/example/ios/IosUtilitiesExampleTests/IosUtilitiesExampleTests.m
+++ /dev/null
@@ -1,66 +0,0 @@
-#import
-#import
-
-#import
-#import
-
-#define TIMEOUT_SECONDS 600
-#define TEXT_TO_LOOK_FOR @"Welcome to React"
-
-@interface IosUtilitiesExampleTests : XCTestCase
-
-@end
-
-@implementation IosUtilitiesExampleTests
-
-- (BOOL)findSubviewInView:(UIView *)view matching:(BOOL (^)(UIView *view))test
-{
- if (test(view)) {
- return YES;
- }
- for (UIView *subview in [view subviews]) {
- if ([self findSubviewInView:subview matching:test]) {
- return YES;
- }
- }
- return NO;
-}
-
-- (void)testRendersWelcomeScreen
-{
- UIViewController *vc = [[[RCTSharedApplication() delegate] window] rootViewController];
- NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS];
- BOOL foundElement = NO;
-
- __block NSString *redboxError = nil;
-#ifdef DEBUG
- RCTSetLogFunction(
- ^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) {
- if (level >= RCTLogLevelError) {
- redboxError = message;
- }
- });
-#endif
-
- while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) {
- [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
- [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
-
- foundElement = [self findSubviewInView:vc.view
- matching:^BOOL(UIView *view) {
- if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) {
- return YES;
- }
- return NO;
- }];
- }
-
-#ifdef DEBUG
- RCTSetLogFunction(RCTDefaultLogFunction);
-#endif
-
- XCTAssertNil(redboxError, @"RedBox error: %@", redboxError);
- XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS);
-}
-
-@end
diff --git a/example/ios/Podfile b/example/ios/Podfile
index ba490ed4..798387a4 100644
--- a/example/ios/Podfile
+++ b/example/ios/Podfile
@@ -57,12 +57,6 @@ target 'IosUtilitiesExample' do
else
pod 'ComputableLayout', '~> 0.7'
end
-
- target 'IosUtilitiesExampleTests' do
- inherit! :complete
- # Pods for testing
- end
-
post_install do |installer|
# https://github.com/facebook/react-native/blob/main/packages/react-native/scripts/react_native_pods.rb#L197-L202
react_native_post_install(
diff --git a/example/ios/Podfile.lock b/example/ios/Podfile.lock
index 114c300b..9866a9ca 100644
--- a/example/ios/Podfile.lock
+++ b/example/ios/Podfile.lock
@@ -2,75 +2,87 @@ PODS:
- boost (1.84.0)
- ComputableLayout (0.7.0):
- DGSwiftUtilities (~> 0.11)
- - DGSwiftUtilities (0.46.3)
+ - DGSwiftUtilities (0.46.4)
- DoubleConversion (1.1.6)
- - fast_float (6.1.4)
- - FBLazyVector (0.77.1)
+ - fast_float (8.0.0)
+ - FBLazyVector (0.80.1)
- fmt (11.0.2)
- glog (0.3.5)
- - hermes-engine (0.77.1):
- - hermes-engine/Pre-built (= 0.77.1)
- - hermes-engine/Pre-built (0.77.1)
+ - hermes-engine (0.80.1):
+ - hermes-engine/Pre-built (= 0.80.1)
+ - hermes-engine/Pre-built (0.80.1)
- 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.77.1)
- - RCTRequired (0.77.1)
- - RCTTypeSafety (0.77.1):
- - FBLazyVector (= 0.77.1)
- - RCTRequired (= 0.77.1)
- - React-Core (= 0.77.1)
- - React (0.77.1):
- - React-Core (= 0.77.1)
- - React-Core/DevSupport (= 0.77.1)
- - React-Core/RCTWebSocket (= 0.77.1)
- - React-RCTActionSheet (= 0.77.1)
- - React-RCTAnimation (= 0.77.1)
- - React-RCTBlob (= 0.77.1)
- - React-RCTImage (= 0.77.1)
- - React-RCTLinking (= 0.77.1)
- - React-RCTNetwork (= 0.77.1)
- - React-RCTSettings (= 0.77.1)
- - React-RCTText (= 0.77.1)
- - React-RCTVibration (= 0.77.1)
- - React-callinvoker (0.77.1)
- - React-Core (0.77.1):
- - glog
- - hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCTDeprecation (0.80.1)
+ - RCTRequired (0.80.1)
+ - RCTTypeSafety (0.80.1):
+ - FBLazyVector (= 0.80.1)
+ - RCTRequired (= 0.80.1)
+ - React-Core (= 0.80.1)
+ - React (0.80.1):
+ - React-Core (= 0.80.1)
+ - React-Core/DevSupport (= 0.80.1)
+ - React-Core/RCTWebSocket (= 0.80.1)
+ - React-RCTActionSheet (= 0.80.1)
+ - React-RCTAnimation (= 0.80.1)
+ - React-RCTBlob (= 0.80.1)
+ - React-RCTImage (= 0.80.1)
+ - React-RCTLinking (= 0.80.1)
+ - React-RCTNetwork (= 0.80.1)
+ - React-RCTSettings (= 0.80.1)
+ - React-RCTText (= 0.80.1)
+ - React-RCTVibration (= 0.80.1)
+ - React-callinvoker (0.80.1)
+ - React-Core (0.80.1):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTDeprecation
- - React-Core/Default (= 0.77.1)
+ - React-Core/Default (= 0.80.1)
- React-cxxreact
- React-featureflags
- React-hermes
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
+ - React-jsitooling
- React-perflogger
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-Core/CoreModulesHeaders (0.77.1):
+ - React-Core/CoreModulesHeaders (0.80.1):
+ - 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
@@ -79,15 +91,22 @@ PODS:
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
+ - React-jsitooling
- React-perflogger
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-Core/Default (0.77.1):
+ - React-Core/Default (0.80.1):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTDeprecation
- React-cxxreact
- React-featureflags
@@ -95,33 +114,47 @@ PODS:
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
+ - React-jsitooling
- React-perflogger
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-Core/DevSupport (0.77.1):
+ - React-Core/DevSupport (0.80.1):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTDeprecation
- - React-Core/Default (= 0.77.1)
- - React-Core/RCTWebSocket (= 0.77.1)
+ - React-Core/Default (= 0.80.1)
+ - React-Core/RCTWebSocket (= 0.80.1)
- React-cxxreact
- React-featureflags
- React-hermes
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
+ - React-jsitooling
- React-perflogger
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-Core/RCTActionSheetHeaders (0.77.1):
+ - React-Core/RCTActionSheetHeaders (0.80.1):
+ - 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
@@ -130,15 +163,22 @@ PODS:
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
+ - React-jsitooling
- React-perflogger
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-Core/RCTAnimationHeaders (0.77.1):
+ - React-Core/RCTAnimationHeaders (0.80.1):
+ - 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
@@ -147,15 +187,22 @@ PODS:
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
+ - React-jsitooling
- React-perflogger
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-Core/RCTBlobHeaders (0.77.1):
+ - React-Core/RCTBlobHeaders (0.80.1):
+ - 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
@@ -164,15 +211,22 @@ PODS:
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
+ - React-jsitooling
- React-perflogger
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-Core/RCTImageHeaders (0.77.1):
+ - React-Core/RCTImageHeaders (0.80.1):
+ - 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
@@ -181,15 +235,22 @@ PODS:
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
+ - React-jsitooling
- React-perflogger
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-Core/RCTLinkingHeaders (0.77.1):
+ - React-Core/RCTLinkingHeaders (0.80.1):
+ - 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
@@ -198,15 +259,22 @@ PODS:
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
+ - React-jsitooling
- React-perflogger
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-Core/RCTNetworkHeaders (0.77.1):
+ - React-Core/RCTNetworkHeaders (0.80.1):
+ - 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
@@ -215,15 +283,22 @@ PODS:
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
+ - React-jsitooling
- React-perflogger
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-Core/RCTSettingsHeaders (0.77.1):
+ - React-Core/RCTSettingsHeaders (0.80.1):
+ - 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
@@ -232,15 +307,22 @@ PODS:
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
+ - React-jsitooling
- React-perflogger
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-Core/RCTTextHeaders (0.77.1):
+ - React-Core/RCTTextHeaders (0.80.1):
+ - 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
@@ -249,15 +331,22 @@ PODS:
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
+ - React-jsitooling
- React-perflogger
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-Core/RCTVibrationHeaders (0.77.1):
+ - React-Core/RCTVibrationHeaders (0.80.1):
+ - 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
@@ -266,110 +355,148 @@ PODS:
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
+ - React-jsitooling
- React-perflogger
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-Core/RCTWebSocket (0.77.1):
+ - React-Core/RCTWebSocket (0.80.1):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTDeprecation
- - React-Core/Default (= 0.77.1)
+ - React-Core/Default (= 0.80.1)
- React-cxxreact
- React-featureflags
- React-hermes
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsinspectorcdp
+ - React-jsitooling
- React-perflogger
- React-runtimescheduler
- React-utils
- - SocketRocket (= 0.7.1)
+ - SocketRocket
- Yoga
- - React-CoreModules (0.77.1):
+ - React-CoreModules (0.80.1):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
- - RCT-Folly (= 2024.11.18.00)
- - RCTTypeSafety (= 0.77.1)
- - React-Core/CoreModulesHeaders (= 0.77.1)
- - React-jsi (= 0.77.1)
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTTypeSafety (= 0.80.1)
+ - React-Core/CoreModulesHeaders (= 0.80.1)
+ - React-jsi (= 0.80.1)
- React-jsinspector
+ - React-jsinspectorcdp
+ - React-jsinspectortracing
- React-NativeModulesApple
- React-RCTBlob
- React-RCTFBReactNativeSpec
- - React-RCTImage (= 0.77.1)
+ - React-RCTImage (= 0.80.1)
- ReactCommon
- - SocketRocket (= 0.7.1)
- - React-cxxreact (0.77.1):
+ - SocketRocket
+ - React-cxxreact (0.80.1):
- 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.77.1)
- - React-debug (= 0.77.1)
- - React-jsi (= 0.77.1)
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-callinvoker (= 0.80.1)
+ - React-debug (= 0.80.1)
+ - React-jsi (= 0.80.1)
- React-jsinspector
- - React-logger (= 0.77.1)
- - React-perflogger (= 0.77.1)
- - React-runtimeexecutor (= 0.77.1)
- - React-timing (= 0.77.1)
- - React-debug (0.77.1)
- - React-defaultsnativemodule (0.77.1):
+ - React-jsinspectorcdp
+ - React-jsinspectortracing
+ - React-logger (= 0.80.1)
+ - React-perflogger (= 0.80.1)
+ - React-runtimeexecutor (= 0.80.1)
+ - React-timing (= 0.80.1)
+ - SocketRocket
+ - React-debug (0.80.1)
+ - React-defaultsnativemodule (0.80.1):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
- hermes-engine
- RCT-Folly
+ - RCT-Folly/Fabric
- React-domnativemodule
- React-featureflagsnativemodule
+ - React-hermes
- React-idlecallbacksnativemodule
- React-jsi
- React-jsiexecutor
- React-microtasksnativemodule
- React-RCTFBReactNativeSpec
- - React-domnativemodule (0.77.1):
+ - SocketRocket
+ - React-domnativemodule (0.80.1):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
- hermes-engine
- RCT-Folly
+ - RCT-Folly/Fabric
- React-Fabric
- React-FabricComponents
- React-graphics
+ - React-hermes
- React-jsi
- React-jsiexecutor
- React-RCTFBReactNativeSpec
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - React-Fabric (0.77.1):
+ - React-Fabric (0.80.1):
+ - 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.77.1)
- - React-Fabric/attributedstring (= 0.77.1)
- - React-Fabric/componentregistry (= 0.77.1)
- - React-Fabric/componentregistrynative (= 0.77.1)
- - React-Fabric/components (= 0.77.1)
- - React-Fabric/core (= 0.77.1)
- - React-Fabric/dom (= 0.77.1)
- - React-Fabric/imagemanager (= 0.77.1)
- - React-Fabric/leakchecker (= 0.77.1)
- - React-Fabric/mounting (= 0.77.1)
- - React-Fabric/observers (= 0.77.1)
- - React-Fabric/scheduler (= 0.77.1)
- - React-Fabric/telemetry (= 0.77.1)
- - React-Fabric/templateprocessor (= 0.77.1)
- - React-Fabric/uimanager (= 0.77.1)
+ - React-Fabric/animations (= 0.80.1)
+ - React-Fabric/attributedstring (= 0.80.1)
+ - React-Fabric/componentregistry (= 0.80.1)
+ - React-Fabric/componentregistrynative (= 0.80.1)
+ - React-Fabric/components (= 0.80.1)
+ - React-Fabric/consistency (= 0.80.1)
+ - React-Fabric/core (= 0.80.1)
+ - React-Fabric/dom (= 0.80.1)
+ - React-Fabric/imagemanager (= 0.80.1)
+ - React-Fabric/leakchecker (= 0.80.1)
+ - React-Fabric/mounting (= 0.80.1)
+ - React-Fabric/observers (= 0.80.1)
+ - React-Fabric/scheduler (= 0.80.1)
+ - React-Fabric/telemetry (= 0.80.1)
+ - React-Fabric/templateprocessor (= 0.80.1)
+ - React-Fabric/uimanager (= 0.80.1)
- React-featureflags
- React-graphics
+ - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
@@ -377,13 +504,16 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/animations (0.77.1):
+ - SocketRocket
+ - React-Fabric/animations (0.80.1):
+ - 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
@@ -391,6 +521,7 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
+ - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
@@ -398,13 +529,16 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/attributedstring (0.77.1):
+ - SocketRocket
+ - React-Fabric/attributedstring (0.80.1):
+ - 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
@@ -412,6 +546,7 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
+ - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
@@ -419,13 +554,16 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/componentregistry (0.77.1):
+ - SocketRocket
+ - React-Fabric/componentregistry (0.80.1):
+ - 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
@@ -433,6 +571,7 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
+ - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
@@ -440,13 +579,16 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/componentregistrynative (0.77.1):
+ - SocketRocket
+ - React-Fabric/componentregistrynative (0.80.1):
+ - 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
@@ -454,6 +596,7 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
+ - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
@@ -461,23 +604,28 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/components (0.77.1):
+ - SocketRocket
+ - React-Fabric/components (0.80.1):
+ - 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.77.1)
- - React-Fabric/components/root (= 0.77.1)
- - React-Fabric/components/view (= 0.77.1)
+ - React-Fabric/components/legacyviewmanagerinterop (= 0.80.1)
+ - React-Fabric/components/root (= 0.80.1)
+ - React-Fabric/components/scrollview (= 0.80.1)
+ - React-Fabric/components/view (= 0.80.1)
- React-featureflags
- React-graphics
+ - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
@@ -485,13 +633,16 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/components/legacyviewmanagerinterop (0.77.1):
+ - SocketRocket
+ - React-Fabric/components/legacyviewmanagerinterop (0.80.1):
+ - 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
@@ -499,6 +650,7 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
+ - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
@@ -506,13 +658,16 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/components/root (0.77.1):
+ - SocketRocket
+ - React-Fabric/components/root (0.80.1):
+ - 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
@@ -520,6 +675,7 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
+ - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
@@ -527,13 +683,16 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/components/view (0.77.1):
+ - SocketRocket
+ - React-Fabric/components/scrollview (0.80.1):
+ - 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
@@ -541,6 +700,7 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
+ - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
@@ -548,14 +708,16 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - Yoga
- - React-Fabric/core (0.77.1):
+ - SocketRocket
+ - React-Fabric/components/view (0.80.1):
+ - 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
@@ -563,20 +725,26 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
+ - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
+ - React-renderercss
- React-rendererdebug
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/dom (0.77.1):
+ - SocketRocket
+ - Yoga
+ - React-Fabric/consistency (0.80.1):
+ - 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
@@ -584,6 +752,7 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
+ - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
@@ -591,13 +760,16 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/imagemanager (0.77.1):
+ - SocketRocket
+ - React-Fabric/core (0.80.1):
+ - 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
@@ -605,6 +777,7 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
+ - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
@@ -612,13 +785,16 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/leakchecker (0.77.1):
+ - SocketRocket
+ - React-Fabric/dom (0.80.1):
+ - 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,6 +802,7 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
+ - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
@@ -633,13 +810,16 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/mounting (0.77.1):
+ - SocketRocket
+ - React-Fabric/imagemanager (0.80.1):
+ - 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
@@ -647,6 +827,7 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
+ - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
@@ -654,21 +835,24 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/observers (0.77.1):
+ - SocketRocket
+ - React-Fabric/leakchecker (0.80.1):
+ - 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.77.1)
- React-featureflags
- React-graphics
+ - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
@@ -676,13 +860,16 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/observers/events (0.77.1):
+ - SocketRocket
+ - React-Fabric/mounting (0.80.1):
+ - 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
@@ -690,6 +877,7 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
+ - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
@@ -697,36 +885,42 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/scheduler (0.77.1):
+ - SocketRocket
+ - React-Fabric/observers (0.80.1):
+ - 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
+ - React-Fabric/observers/events (= 0.80.1)
- React-featureflags
- React-graphics
+ - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- - React-performancetimeline
- React-rendererdebug
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/telemetry (0.77.1):
+ - SocketRocket
+ - React-Fabric/observers/events (0.80.1):
+ - 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
@@ -734,6 +928,7 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
+ - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
@@ -741,57 +936,68 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/templateprocessor (0.77.1):
+ - SocketRocket
+ - React-Fabric/scheduler (0.80.1):
+ - 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
- React-featureflags
- React-graphics
+ - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
+ - React-performancetimeline
- React-rendererdebug
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/uimanager (0.77.1):
+ - SocketRocket
+ - React-Fabric/telemetry (0.80.1):
+ - 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.77.1)
- React-featureflags
- React-graphics
+ - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- - React-rendererconsistency
- React-rendererdebug
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-Fabric/uimanager/consistency (0.77.1):
+ - SocketRocket
+ - React-Fabric/templateprocessor (0.80.1):
+ - 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
@@ -799,86 +1005,88 @@ PODS:
- React-debug
- React-featureflags
- React-graphics
+ - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
- - React-rendererconsistency
- React-rendererdebug
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - React-FabricComponents (0.77.1):
+ - SocketRocket
+ - React-Fabric/uimanager (0.80.1):
+ - 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.77.1)
- - React-FabricComponents/textlayoutmanager (= 0.77.1)
+ - React-Fabric/uimanager/consistency (= 0.80.1)
- React-featureflags
- React-graphics
+ - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
+ - React-rendererconsistency
- React-rendererdebug
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - Yoga
- - React-FabricComponents/components (0.77.1):
+ - SocketRocket
+ - React-Fabric/uimanager/consistency (0.80.1):
+ - 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.77.1)
- - React-FabricComponents/components/iostextinput (= 0.77.1)
- - React-FabricComponents/components/modal (= 0.77.1)
- - React-FabricComponents/components/rncore (= 0.77.1)
- - React-FabricComponents/components/safeareaview (= 0.77.1)
- - React-FabricComponents/components/scrollview (= 0.77.1)
- - React-FabricComponents/components/text (= 0.77.1)
- - React-FabricComponents/components/textinput (= 0.77.1)
- - React-FabricComponents/components/unimplementedview (= 0.77.1)
- React-featureflags
- React-graphics
+ - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
+ - React-rendererconsistency
- React-rendererdebug
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
- - Yoga
- - React-FabricComponents/components/inputaccessory (0.77.1):
+ - SocketRocket
+ - React-FabricComponents (0.80.1):
+ - 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.80.1)
+ - React-FabricComponents/textlayoutmanager (= 0.80.1)
- React-featureflags
- React-graphics
+ - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
@@ -886,22 +1094,35 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - React-FabricComponents/components/iostextinput (0.77.1):
+ - React-FabricComponents/components (0.80.1):
+ - 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.80.1)
+ - React-FabricComponents/components/iostextinput (= 0.80.1)
+ - React-FabricComponents/components/modal (= 0.80.1)
+ - React-FabricComponents/components/rncore (= 0.80.1)
+ - React-FabricComponents/components/safeareaview (= 0.80.1)
+ - React-FabricComponents/components/scrollview (= 0.80.1)
+ - React-FabricComponents/components/text (= 0.80.1)
+ - React-FabricComponents/components/textinput (= 0.80.1)
+ - React-FabricComponents/components/unimplementedview (= 0.80.1)
- React-featureflags
- React-graphics
+ - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
@@ -909,14 +1130,17 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - React-FabricComponents/components/modal (0.77.1):
+ - React-FabricComponents/components/inputaccessory (0.80.1):
+ - 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
@@ -925,6 +1149,7 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
+ - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
@@ -932,14 +1157,17 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - React-FabricComponents/components/rncore (0.77.1):
+ - React-FabricComponents/components/iostextinput (0.80.1):
+ - 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
@@ -948,6 +1176,7 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
+ - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
@@ -955,14 +1184,17 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - React-FabricComponents/components/safeareaview (0.77.1):
+ - React-FabricComponents/components/modal (0.80.1):
+ - 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
@@ -971,6 +1203,7 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
+ - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
@@ -978,14 +1211,17 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - React-FabricComponents/components/scrollview (0.77.1):
+ - React-FabricComponents/components/rncore (0.80.1):
+ - 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
@@ -994,6 +1230,7 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
+ - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
@@ -1001,14 +1238,17 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - React-FabricComponents/components/text (0.77.1):
+ - React-FabricComponents/components/safeareaview (0.80.1):
+ - 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
@@ -1017,6 +1257,7 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
+ - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
@@ -1024,14 +1265,17 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - React-FabricComponents/components/textinput (0.77.1):
+ - React-FabricComponents/components/scrollview (0.80.1):
+ - 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
@@ -1040,6 +1284,7 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
+ - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
@@ -1047,14 +1292,17 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - React-FabricComponents/components/unimplementedview (0.77.1):
+ - React-FabricComponents/components/text (0.80.1):
+ - 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
@@ -1063,6 +1311,7 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
+ - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
@@ -1070,14 +1319,44 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - React-FabricComponents/textlayoutmanager (0.77.1):
+ - React-FabricComponents/components/textinput (0.80.1):
+ - 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-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - Yoga
+ - React-FabricComponents/components/unimplementedview (0.80.1):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1086,6 +1365,7 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
+ - React-hermes
- React-jsi
- React-jsiexecutor
- React-logger
@@ -1093,68 +1373,139 @@ PODS:
- React-runtimescheduler
- React-utils
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - React-FabricImage (0.77.1):
+ - React-FabricComponents/textlayoutmanager (0.80.1):
+ - 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.77.1)
- - RCTTypeSafety (= 0.77.1)
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
- React-Fabric
- React-featureflags
- React-graphics
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - Yoga
+ - React-FabricImage (0.80.1):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired (= 0.80.1)
+ - RCTTypeSafety (= 0.80.1)
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-hermes
- React-ImageManager
- React-jsi
- - React-jsiexecutor (= 0.77.1)
+ - React-jsiexecutor (= 0.80.1)
- React-logger
- React-rendererdebug
- React-utils
- ReactCommon
+ - SocketRocket
- Yoga
- - React-featureflags (0.77.1)
- - React-featureflagsnativemodule (0.77.1):
+ - React-featureflags (0.80.1):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - SocketRocket
+ - React-featureflagsnativemodule (0.80.1):
+ - 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.77.1):
+ - SocketRocket
+ - React-graphics (0.80.1):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
- glog
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-hermes
- React-jsi
- React-jsiexecutor
- React-utils
- - React-hermes (0.77.1):
+ - SocketRocket
+ - React-hermes (0.80.1):
+ - 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.77.1)
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-cxxreact (= 0.80.1)
- React-jsi
- - React-jsiexecutor (= 0.77.1)
+ - React-jsiexecutor (= 0.80.1)
- React-jsinspector
- - React-perflogger (= 0.77.1)
+ - React-jsinspectorcdp
+ - React-jsinspectortracing
+ - React-perflogger (= 0.80.1)
- React-runtimeexecutor
- - React-idlecallbacksnativemodule (0.77.1):
+ - SocketRocket
+ - React-idlecallbacksnativemodule (0.80.1):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
- hermes-engine
- RCT-Folly
+ - RCT-Folly/Fabric
+ - React-hermes
- React-jsi
- React-jsiexecutor
- React-RCTFBReactNativeSpec
- React-runtimescheduler
- ReactCommon/turbomodule/core
- - React-ImageManager (0.77.1):
+ - SocketRocket
+ - React-ImageManager (0.80.1):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
+ - RCT-Folly
- RCT-Folly/Fabric
- React-Core/Default
- React-debug
@@ -1162,64 +1513,155 @@ PODS:
- React-graphics
- React-rendererdebug
- React-utils
- - React-jserrorhandler (0.77.1):
+ - SocketRocket
+ - React-jserrorhandler (0.80.1):
+ - 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.77.1):
+ - SocketRocket
+ - React-jsi (0.80.1):
- 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.77.1):
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - SocketRocket
+ - React-jsiexecutor (0.80.1):
+ - 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.77.1)
- - React-jsi (= 0.77.1)
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-cxxreact (= 0.80.1)
+ - React-jsi (= 0.80.1)
- React-jsinspector
- - React-perflogger (= 0.77.1)
- - React-jsinspector (0.77.1):
+ - React-jsinspectorcdp
+ - React-jsinspectortracing
+ - React-perflogger (= 0.80.1)
+ - SocketRocket
+ - React-jsinspector (0.80.1):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- React-featureflags
- React-jsi
- - React-perflogger (= 0.77.1)
- - React-runtimeexecutor (= 0.77.1)
- - React-jsitracing (0.77.1):
+ - React-jsinspectorcdp
+ - React-jsinspectornetwork
+ - React-jsinspectortracing
+ - React-perflogger (= 0.80.1)
+ - React-runtimeexecutor (= 0.80.1)
+ - SocketRocket
+ - React-jsinspectorcdp (0.80.1):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - SocketRocket
+ - React-jsinspectornetwork (0.80.1):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-jsinspectorcdp
+ - SocketRocket
+ - React-jsinspectortracing (0.80.1):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-oscompat
+ - SocketRocket
+ - React-jsitooling (0.80.1):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-cxxreact (= 0.80.1)
+ - React-jsi (= 0.80.1)
+ - React-jsinspector
+ - React-jsinspectorcdp
+ - React-jsinspectortracing
+ - SocketRocket
+ - React-jsitracing (0.80.1):
- React-jsi
- - React-logger (0.77.1):
+ - React-logger (0.80.1):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- - React-Mapbuffer (0.77.1):
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - SocketRocket
+ - React-Mapbuffer (0.80.1):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
- React-debug
- - React-microtasksnativemodule (0.77.1):
+ - SocketRocket
+ - React-microtasksnativemodule (0.80.1):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
- hermes-engine
- RCT-Folly
+ - RCT-Folly/Fabric
+ - React-hermes
- React-jsi
- React-jsiexecutor
- React-RCTFBReactNativeSpec
- ReactCommon/turbomodule/core
- - react-native-ios-utilities (5.1.3):
+ - SocketRocket
+ - react-native-ios-utilities (5.1.5):
+ - boost
- ComputableLayout (~> 0.7)
- DGSwiftUtilities (~> 0.46)
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1227,21 +1669,32 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
+ - React-hermes
- React-ImageManager
+ - React-jsi
+ - React-jsinspector
+ - React-jsinspectortracing
+ - React-jsitooling
- React-NativeModulesApple
- React-RCTAppDelegate
- React-RCTFabric
+ - React-renderercss
- React-rendererdebug
- React-utils
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - react-native-safe-area-context (5.3.0):
+ - react-native-safe-area-context (5.5.2):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1249,22 +1702,30 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
+ - React-hermes
- React-ImageManager
- - react-native-safe-area-context/common (= 5.3.0)
- - react-native-safe-area-context/fabric (= 5.3.0)
+ - React-jsi
+ - react-native-safe-area-context/common (= 5.5.2)
+ - react-native-safe-area-context/fabric (= 5.5.2)
- React-NativeModulesApple
- React-RCTFabric
+ - React-renderercss
- React-rendererdebug
- React-utils
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - react-native-safe-area-context/common (5.3.0):
+ - react-native-safe-area-context/common (5.5.2):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1272,20 +1733,28 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
+ - React-hermes
- React-ImageManager
+ - React-jsi
- React-NativeModulesApple
- React-RCTFabric
+ - React-renderercss
- React-rendererdebug
- React-utils
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - react-native-safe-area-context/fabric (5.3.0):
+ - react-native-safe-area-context/fabric (5.5.2):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1293,48 +1762,91 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
+ - React-hermes
- React-ImageManager
+ - React-jsi
- react-native-safe-area-context/common
- React-NativeModulesApple
- React-RCTFabric
+ - React-renderercss
- React-rendererdebug
- React-utils
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- - React-nativeconfig (0.77.1)
- - React-NativeModulesApple (0.77.1):
+ - React-NativeModulesApple (0.80.1):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
- React-callinvoker
- React-Core
- React-cxxreact
+ - React-featureflags
+ - React-hermes
- React-jsi
- React-jsinspector
+ - React-jsinspectorcdp
- React-runtimeexecutor
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- - React-perflogger (0.77.1):
+ - SocketRocket
+ - React-oscompat (0.80.1)
+ - React-perflogger (0.80.1):
+ - boost
- DoubleConversion
- - RCT-Folly (= 2024.11.18.00)
- - React-performancetimeline (0.77.1):
- - RCT-Folly (= 2024.11.18.00)
- - React-cxxreact
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - SocketRocket
+ - React-performancetimeline (0.80.1):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
- React-featureflags
+ - React-jsinspectortracing
+ - React-perflogger
- React-timing
- - React-RCTActionSheet (0.77.1):
- - React-Core/RCTActionSheetHeaders (= 0.77.1)
- - React-RCTAnimation (0.77.1):
- - RCT-Folly (= 2024.11.18.00)
+ - SocketRocket
+ - React-RCTActionSheet (0.80.1):
+ - React-Core/RCTActionSheetHeaders (= 0.80.1)
+ - React-RCTAnimation (0.80.1):
+ - 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.77.1):
- - RCT-Folly (= 2024.11.18.00)
+ - SocketRocket
+ - React-RCTAppDelegate (0.80.1):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1345,37 +1857,48 @@ PODS:
- React-featureflags
- React-graphics
- React-hermes
- - React-nativeconfig
+ - React-jsitooling
- React-NativeModulesApple
- React-RCTFabric
- React-RCTFBReactNativeSpec
- React-RCTImage
- React-RCTNetwork
+ - React-RCTRuntime
- React-rendererdebug
- React-RuntimeApple
- React-RuntimeCore
- - React-RuntimeHermes
- React-runtimescheduler
- React-utils
- ReactCommon
- - React-RCTBlob (0.77.1):
+ - SocketRocket
+ - React-RCTBlob (0.80.1):
+ - 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.77.1):
+ - SocketRocket
+ - React-RCTFabric (0.80.1):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- React-Core
- React-debug
- React-Fabric
@@ -1383,30 +1906,50 @@ PODS:
- React-FabricImage
- React-featureflags
- React-graphics
+ - React-hermes
- React-ImageManager
- React-jsi
- React-jsinspector
- - React-nativeconfig
+ - React-jsinspectorcdp
+ - React-jsinspectornetwork
+ - React-jsinspectortracing
- React-performancetimeline
+ - React-RCTAnimation
- React-RCTImage
- React-RCTText
- React-rendererconsistency
+ - React-renderercss
- React-rendererdebug
- React-runtimescheduler
- React-utils
+ - SocketRocket
- Yoga
- - React-RCTFBReactNativeSpec (0.77.1):
+ - React-RCTFBReactNativeSpec (0.80.1):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
- hermes-engine
- RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
+ - React-hermes
- React-jsi
- React-jsiexecutor
- React-NativeModulesApple
- ReactCommon
- - React-RCTImage (0.77.1):
- - RCT-Folly (= 2024.11.18.00)
+ - SocketRocket
+ - React-RCTImage (0.80.1):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTTypeSafety
- React-Core/RCTImageHeaders
- React-jsi
@@ -1414,50 +1957,108 @@ PODS:
- React-RCTFBReactNativeSpec
- React-RCTNetwork
- ReactCommon
- - React-RCTLinking (0.77.1):
- - React-Core/RCTLinkingHeaders (= 0.77.1)
- - React-jsi (= 0.77.1)
+ - SocketRocket
+ - React-RCTLinking (0.80.1):
+ - React-Core/RCTLinkingHeaders (= 0.80.1)
+ - React-jsi (= 0.80.1)
- React-NativeModulesApple
- React-RCTFBReactNativeSpec
- ReactCommon
- - ReactCommon/turbomodule/core (= 0.77.1)
- - React-RCTNetwork (0.77.1):
- - RCT-Folly (= 2024.11.18.00)
+ - ReactCommon/turbomodule/core (= 0.80.1)
+ - React-RCTNetwork (0.80.1):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTTypeSafety
- React-Core/RCTNetworkHeaders
+ - React-featureflags
- React-jsi
+ - React-jsinspectorcdp
+ - React-jsinspectornetwork
- React-NativeModulesApple
- React-RCTFBReactNativeSpec
- ReactCommon
- - React-RCTSettings (0.77.1):
- - RCT-Folly (= 2024.11.18.00)
+ - SocketRocket
+ - React-RCTRuntime (0.80.1):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-Core
+ - React-hermes
+ - React-jsi
+ - React-jsinspector
+ - React-jsinspectorcdp
+ - React-jsinspectortracing
+ - React-jsitooling
+ - React-RuntimeApple
+ - React-RuntimeCore
+ - React-RuntimeHermes
+ - SocketRocket
+ - React-RCTSettings (0.80.1):
+ - 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.77.1):
- - React-Core/RCTTextHeaders (= 0.77.1)
+ - SocketRocket
+ - React-RCTText (0.80.1):
+ - React-Core/RCTTextHeaders (= 0.80.1)
- Yoga
- - React-RCTVibration (0.77.1):
- - RCT-Folly (= 2024.11.18.00)
+ - React-RCTVibration (0.80.1):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
- React-Core/RCTVibrationHeaders
- React-jsi
- React-NativeModulesApple
- React-RCTFBReactNativeSpec
- ReactCommon
- - React-rendererconsistency (0.77.1)
- - React-rendererdebug (0.77.1):
+ - SocketRocket
+ - React-rendererconsistency (0.80.1)
+ - React-renderercss (0.80.1):
+ - React-debug
+ - React-utils
+ - React-rendererdebug (0.80.1):
+ - 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.77.1)
- - React-RuntimeApple (0.77.1):
+ - SocketRocket
+ - React-rncore (0.80.1)
+ - React-RuntimeApple (0.80.1):
+ - 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
@@ -1467,6 +2068,7 @@ PODS:
- React-jsi
- React-jsiexecutor
- React-jsinspector
+ - React-jsitooling
- React-Mapbuffer
- React-NativeModulesApple
- React-RCTFabric
@@ -1476,63 +2078,100 @@ PODS:
- React-RuntimeHermes
- React-runtimescheduler
- React-utils
- - React-RuntimeCore (0.77.1):
+ - SocketRocket
+ - React-RuntimeCore (0.80.1):
+ - 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
- React-jsinspector
+ - React-jsitooling
- React-performancetimeline
- React-runtimeexecutor
- React-runtimescheduler
- React-utils
- - React-runtimeexecutor (0.77.1):
- - React-jsi (= 0.77.1)
- - React-RuntimeHermes (0.77.1):
+ - SocketRocket
+ - React-runtimeexecutor (0.80.1):
+ - React-jsi (= 0.80.1)
+ - React-RuntimeHermes (0.80.1):
+ - 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-nativeconfig
- React-RuntimeCore
- React-utils
- - React-runtimescheduler (0.77.1):
+ - SocketRocket
+ - React-runtimescheduler (0.80.1):
+ - 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
- React-rendererconsistency
- React-rendererdebug
- React-runtimeexecutor
- React-timing
- React-utils
- - React-timing (0.77.1)
- - React-utils (0.77.1):
+ - SocketRocket
+ - React-timing (0.80.1)
+ - React-utils (0.80.1):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- React-debug
- - React-jsi (= 0.77.1)
- - ReactAppDependencyProvider (0.77.1):
+ - React-hermes
+ - React-jsi (= 0.80.1)
+ - SocketRocket
+ - ReactAppDependencyProvider (0.80.1):
- ReactCodegen
- - ReactCodegen (0.77.1):
+ - ReactCodegen (0.80.1):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1541,6 +2180,7 @@ PODS:
- React-FabricImage
- React-featureflags
- React-graphics
+ - React-hermes
- React-jsi
- React-jsiexecutor
- React-NativeModulesApple
@@ -1549,54 +2189,76 @@ PODS:
- React-utils
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- - ReactCommon (0.77.1):
- - ReactCommon/turbomodule (= 0.77.1)
- - ReactCommon/turbomodule (0.77.1):
+ - SocketRocket
+ - ReactCommon (0.80.1):
+ - boost
- DoubleConversion
- - fast_float (= 6.1.4)
- - fmt (= 11.0.2)
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - ReactCommon/turbomodule (= 0.80.1)
+ - SocketRocket
+ - ReactCommon/turbomodule (0.80.1):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
- - React-callinvoker (= 0.77.1)
- - React-cxxreact (= 0.77.1)
- - React-jsi (= 0.77.1)
- - React-logger (= 0.77.1)
- - React-perflogger (= 0.77.1)
- - ReactCommon/turbomodule/bridging (= 0.77.1)
- - ReactCommon/turbomodule/core (= 0.77.1)
- - ReactCommon/turbomodule/bridging (0.77.1):
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-callinvoker (= 0.80.1)
+ - React-cxxreact (= 0.80.1)
+ - React-jsi (= 0.80.1)
+ - React-logger (= 0.80.1)
+ - React-perflogger (= 0.80.1)
+ - ReactCommon/turbomodule/bridging (= 0.80.1)
+ - ReactCommon/turbomodule/core (= 0.80.1)
+ - SocketRocket
+ - ReactCommon/turbomodule/bridging (0.80.1):
+ - 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.77.1)
- - React-cxxreact (= 0.77.1)
- - React-jsi (= 0.77.1)
- - React-logger (= 0.77.1)
- - React-perflogger (= 0.77.1)
- - ReactCommon/turbomodule/core (0.77.1):
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-callinvoker (= 0.80.1)
+ - React-cxxreact (= 0.80.1)
+ - React-jsi (= 0.80.1)
+ - React-logger (= 0.80.1)
+ - React-perflogger (= 0.80.1)
+ - SocketRocket
+ - ReactCommon/turbomodule/core (0.80.1):
+ - 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.77.1)
- - React-cxxreact (= 0.77.1)
- - React-debug (= 0.77.1)
- - React-featureflags (= 0.77.1)
- - React-jsi (= 0.77.1)
- - React-logger (= 0.77.1)
- - React-perflogger (= 0.77.1)
- - React-utils (= 0.77.1)
- - RNScreens (4.9.2):
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-callinvoker (= 0.80.1)
+ - React-cxxreact (= 0.80.1)
+ - React-debug (= 0.80.1)
+ - React-featureflags (= 0.80.1)
+ - React-jsi (= 0.80.1)
+ - React-logger (= 0.80.1)
+ - React-perflogger (= 0.80.1)
+ - React-utils (= 0.80.1)
+ - SocketRocket
+ - RNScreens (4.11.1):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1604,22 +2266,30 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
+ - React-hermes
- React-ImageManager
+ - React-jsi
- React-NativeModulesApple
- React-RCTFabric
- React-RCTImage
+ - React-renderercss
- React-rendererdebug
- React-utils
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- - RNScreens/common (= 4.9.2)
+ - RNScreens/common (= 4.11.1)
+ - SocketRocket
- Yoga
- - RNScreens/common (4.9.2):
+ - RNScreens/common (4.11.1):
+ - boost
- DoubleConversion
+ - fast_float
+ - fmt
- glog
- hermes-engine
- - RCT-Folly (= 2024.11.18.00)
+ - RCT-Folly
+ - RCT-Folly/Fabric
- RCTRequired
- RCTTypeSafety
- React-Core
@@ -1627,15 +2297,19 @@ PODS:
- React-Fabric
- React-featureflags
- React-graphics
+ - React-hermes
- React-ImageManager
+ - React-jsi
- React-NativeModulesApple
- React-RCTFabric
- React-RCTImage
+ - React-renderercss
- React-rendererdebug
- React-utils
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - SocketRocket
- Yoga
- SocketRocket (0.7.1)
- Yoga (0.0.0)
@@ -1651,7 +2325,6 @@ DEPENDENCIES:
- glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
- hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`)
- 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`)
- RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
@@ -1677,14 +2350,18 @@ DEPENDENCIES:
- 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/`)
- React-logger (from `../node_modules/react-native/ReactCommon/logger`)
- React-Mapbuffer (from `../node_modules/react-native/ReactCommon`)
- React-microtasksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/microtasks`)
- react-native-ios-utilities (from `../..`)
- react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)
- - React-nativeconfig (from `../node_modules/react-native/ReactCommon`)
- React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)
+ - React-oscompat (from `../node_modules/react-native/ReactCommon/oscompat`)
- React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
- React-performancetimeline (from `../node_modules/react-native/ReactCommon/react/performance/timeline`)
- React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
@@ -1696,10 +2373,12 @@ DEPENDENCIES:
- React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
- React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
- React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
+ - React-RCTRuntime (from `../node_modules/react-native/React/Runtime`)
- React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
- React-RCTText (from `../node_modules/react-native/Libraries/Text`)
- React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
- 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`)
@@ -1713,6 +2392,7 @@ DEPENDENCIES:
- ReactCodegen (from `build/generated/ios`)
- ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
- RNScreens (from `../node_modules/react-native-screens`)
+ - SocketRocket (~> 0.7.1)
- Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
SPEC REPOS:
@@ -1736,7 +2416,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-2024-11-25-RNv0.77.0-d4f25d534ab744866448b36ca3bf3d97c08e638c
+ :tag: hermes-2025-05-06-RNv0.80.0-4eb6132a5bf0450bf4c6c91987675381d7ac8bca
RCT-Folly:
:podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
RCTDeprecation:
@@ -1787,6 +2467,14 @@ 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:
+ :path: "../node_modules/react-native/ReactCommon/jsitooling"
React-jsitracing:
:path: "../node_modules/react-native/ReactCommon/hermes/executor/"
React-logger:
@@ -1799,10 +2487,10 @@ EXTERNAL SOURCES:
:path: "../.."
react-native-safe-area-context:
:path: "../node_modules/react-native-safe-area-context"
- React-nativeconfig:
- :path: "../node_modules/react-native/ReactCommon"
React-NativeModulesApple:
:path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios"
+ React-oscompat:
+ :path: "../node_modules/react-native/ReactCommon/oscompat"
React-perflogger:
:path: "../node_modules/react-native/ReactCommon/reactperflogger"
React-performancetimeline:
@@ -1825,6 +2513,8 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native/Libraries/LinkingIOS"
React-RCTNetwork:
:path: "../node_modules/react-native/Libraries/Network"
+ React-RCTRuntime:
+ :path: "../node_modules/react-native/React/Runtime"
React-RCTSettings:
:path: "../node_modules/react-native/Libraries/Settings"
React-RCTText:
@@ -1833,6 +2523,8 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native/Libraries/Vibration"
React-rendererconsistency:
:path: "../node_modules/react-native/ReactCommon/react/renderer/consistency"
+ React-renderercss:
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/css"
React-rendererdebug:
:path: "../node_modules/react-native/ReactCommon/react/renderer/debug"
React-rncore:
@@ -1865,77 +2557,83 @@ EXTERNAL SOURCES:
SPEC CHECKSUMS:
boost: 7e761d76ca2ce687f7cc98e698152abd03a18f90
ComputableLayout: c50faffac4ed9f8f05b0ce5e6f3a60df1f6042c8
- DGSwiftUtilities: 2f0d35d5ff3d57bd70ccc42f15971460db202c41
+ DGSwiftUtilities: 536456ae3d0e5083ac42e06b6b720921601864b5
DoubleConversion: cb417026b2400c8f53ae97020b2be961b59470cb
- fast_float: 06eeec4fe712a76acc9376682e4808b05ce978b6
- FBLazyVector: 79c4b7ec726447eec5f8593379466bd9fde1aa14
+ fast_float: b32c788ed9c6a8c584d114d0047beda9664e7cc6
+ FBLazyVector: 09f03e4b6f42f955734b64a118f86509cc719427
fmt: a40bb5bd0294ea969aaaba240a927bd33d878cdd
- glog: eb93e2f488219332457c3c4eafd2738ddc7e80b8
- hermes-engine: ccc24d29d650ea725d582a9a53d57cd417fbdb53
- RCT-Folly: e78785aa9ba2ed998ea4151e314036f6c49e6d82
- RCTDeprecation: 664055db806cce35c3c1b43c84414dd66e117ae6
- RCTRequired: dc9a83fa1012054f94430d210337ca3a1afe6fc0
- RCTTypeSafety: 031cefa254a1df313a196f105b8fcffdab1c5ab6
- React: 8edfc46c315852ec88ea4a29d5e79019af3dc667
- React-callinvoker: 4450b01574dfc7a8f074f7e29e6965ac04859c8f
- React-Core: adee73236280f8708e8973b8cbc60c834e591ecb
- React-CoreModules: 78e04d2319b1b61e0d4ed7fcd3e366d461819279
- React-cxxreact: 05d4cfc36a33f309f280753995bf77eb5f12b40e
- React-debug: adef67ec25a3a645e2c8029c8a0cbc202aef6944
- React-defaultsnativemodule: 9d8ebe89cf2b4f72eb58344d2ab0a6d0d1452208
- React-domnativemodule: 06b65c761f5433472a75bf25c3e5fd175749e5e6
- React-Fabric: 92fcb6fd47305e3606e14b199464797d63105e49
- React-FabricComponents: fb99c592b22b1ccf8f16e6b4f1ad36908e5f6d6f
- React-FabricImage: 6686983597e03db20bff350b4414c1a5513c58e3
- React-featureflags: ea43ca6f5ec0a1247736755b2ba3217497d7342f
- React-featureflagsnativemodule: cedaa457890535b21bbde4e0f2ab596ca62ca094
- React-graphics: a68b11f7c351565d146a1e1d9695a800ab9bfb96
- React-hermes: daf648f84569e9cb3d563dd806f09cf14635a356
- React-idlecallbacksnativemodule: 0f9609a14b3b2e930ab08780ab96d606cce0cc18
- React-ImageManager: 2ed98c714bd888c4e027f7454aa742ed4a0ed603
- React-jserrorhandler: e55f2913a47202a1eb40962cca68cea36018ac62
- React-jsi: 2b9e6349efb0cd61b871dcd6db126fb13e1e6488
- React-jsiexecutor: 8050076ff38e95a6852c5af0f516cf05889a3737
- React-jsinspector: 83ca96637ef3e4bf199080e8c9209aa7b98d77de
- React-jsitracing: 658ee0ce6d2914e3ea134c0106eeab136dee0b76
- React-logger: e7eeebaed32b88dcc29b10901aa8c5822dc397c4
- React-Mapbuffer: 3d1aadd7587192dd863aa5348122e2a0812c44dd
- React-microtasksnativemodule: c5c04ce22b6437388c02d277cdfc7cffc3103da9
- react-native-ios-utilities: 5f4100f3aaab6015e2f0b880a0b28b61383cd79c
- react-native-safe-area-context: 33fadf89988c8813cfac57797a3bc53708863dd1
- React-nativeconfig: 1290b585850b8465f56f54a48b04968eefed0dd4
- React-NativeModulesApple: 70d76808f994d9f5c51c8d69f63bfacf714800e1
- React-perflogger: c4c3b7c18f8a50cdbe2bcdd2f15705ba029a5a02
- React-performancetimeline: 90c5b1e1d5facee6663dab8fba8b3b8f3d56a3dd
- React-RCTActionSheet: 0fdf55fb8724856d63ca8c63cdb4e2325e15e8ec
- React-RCTAnimation: b2fcc7c462f1fb5e195a5547f6e405ec9a60d80f
- React-RCTAppDelegate: d5aed095faa6fd0b0aff3c98d0b078680890cde2
- React-RCTBlob: 3b5441953e3dcc4aaee8f539b17d9c54b7a4b111
- React-RCTFabric: eedb41b49ae96ad7e06db259f18a8b54c01f3300
- React-RCTFBReactNativeSpec: 536442edc77efaec464c3c805c1e44fd811639d3
- React-RCTImage: f189ae651e3c97879b4cdefcba1d4cffe55439da
- React-RCTLinking: 759ac5e4aed95ac3c29849f98ff3f3b5ece830ed
- React-RCTNetwork: ce1f38434a70eb1e228344f7632e636c3ceca03b
- React-RCTSettings: 3602ea3adf9009f6d09461bf05f7e392414c32d8
- React-RCTText: e48b4b54eab3f4cfea9be1228b5ef9ad3b8172c1
- React-RCTVibration: 2e4dc335dd1e57c7004bcc07e7f5319e5968d5cf
- React-rendererconsistency: b1cf8b6df5c67cc1f7c7923b3f263137f20c2afd
- React-rendererdebug: 6da70e18ec44227328c3a8a2222499d409de776c
- React-rncore: 476aa0490dd0bf45b215d778e6739dbfde7c8efd
- React-RuntimeApple: ff19f5d74ce14f5eac701f7169d867ee27598fa5
- React-RuntimeCore: 5f228d303ed9918fc53fb631d1b0ea4a576b8a69
- React-runtimeexecutor: 201311bdafb53b5c30292782c8ee90193af86d91
- React-RuntimeHermes: 5e6b0e353d4ca947dbf00a4468b128251e570a33
- React-runtimescheduler: 14b030a31dd4294d8bb76679b43d76746d62db22
- React-timing: 8dd5e08fdf7d30001dc2b682df8f4ff422c1c3f7
- React-utils: b6bff4780e3b1d25685c3e22cef0d863ffbfafb3
- ReactAppDependencyProvider: 41e9fb63606c32cce924653d2d410cb01ec81286
- ReactCodegen: 90bb8dd83136fc05f54b8aaab40345affc93aeff
- ReactCommon: 8953b677c1d2ed01905f3cd5dced07ead9ec4c8e
- RNScreens: 2e4870e8f9cb4a77e5a51530729f2762868316df
+ glog: 5683914934d5b6e4240e497e0f4a3b42d1854183
+ hermes-engine: 4f07404533b808de66cf48ac4200463068d0e95a
+ RCT-Folly: 846fda9475e61ec7bcbf8a3fe81edfcaeb090669
+ RCTDeprecation: efa5010912100e944a7ac9a93a157e1def1988fe
+ RCTRequired: bbc4cf999ddc4a4b076e076c74dd1d39d0254630
+ RCTTypeSafety: d877728097547d0a37786cc9130c43ad71739ac3
+ React: 4b0b9cb962e694611e5e8a697c1b0300a2510c21
+ React-callinvoker: 70f125c17c7132811a6b473946ac5e7ae93b5e57
+ React-Core: bab40f5b1f46fe0c5896895a6f333e861a821a81
+ React-CoreModules: 05647d952e521113c128360633896ba7ba652e82
+ React-cxxreact: 2b4bac1ec6eecc6288ac8a6caea6afb42585740e
+ React-debug: deb3a146ef717fa3e8f4c23e0288369fe53199b7
+ React-defaultsnativemodule: 11e2948787a15d3cf1b66d7f29f13770a177bff7
+ React-domnativemodule: 2f4b279acdb2963736fb5de2f585811dd90070b5
+ React-Fabric: 6f8d1a303c96f1d078c14d74c4005bf457e5b782
+ React-FabricComponents: b106410970e9a0c4e592da656c7a7e0947306c23
+ React-FabricImage: 1abaf230dfce9b58fdf53c4128f3f40c6e64af6a
+ React-featureflags: f7ef58d91079efde3ad223bcca6d197e845d5bcf
+ React-featureflagsnativemodule: ae5abc9849d1696f4f8f11ee3744bf5715e032cf
+ React-graphics: b306856c6ed9aac32f717a229550406a53b28a6d
+ React-hermes: b6edce8fa19388654b1aea30844497cbeade83bc
+ React-idlecallbacksnativemodule: cb386712842cb9e479c89311edb234d529b64db4
+ React-ImageManager: 8ce94417853eaa22faaad1f4cc1952dd3f8e2275
+ React-jserrorhandler: ab827d67dc270a9c8703eef524230baeafaf6876
+ React-jsi: 545342ec5c78ab1277af5f0dbe8d489e7e73db14
+ React-jsiexecutor: 20210891c7c77255c16dec6762faf68b373f9f74
+ React-jsinspector: 4e73460e488132d70d2b4894e5578cc856f2cb74
+ React-jsinspectorcdp: 8b2bcb5779289cb2b9ca517f2965ed23eb2fd3e0
+ React-jsinspectornetwork: b5e0cb9e488d294eed2d8209dc3dc0f9587210c1
+ React-jsinspectortracing: f3c4036e7b984405ac910f878576d325dd9f2834
+ React-jsitooling: 75bbfd221b6173a5e848ca5a6680506bac064a56
+ React-jsitracing: 11ed7d821864dd988c159d4943e0a1e0937c11b1
+ React-logger: 984ebd897afad067555d081deaf03f57c4315723
+ React-Mapbuffer: 0c045c844ce6d85cde53e85ab163294c6adad349
+ React-microtasksnativemodule: d9499269ad1f484ae71319bac1d9231447f2094e
+ react-native-ios-utilities: 138c69c077ecb827c113dd7c0eb7a6da050a899f
+ react-native-safe-area-context: 68d1363b8354472a961aa6861ba8451beaf9a810
+ React-NativeModulesApple: 983f3483ef0a3446b56d490f09d579fba2442e17
+ React-oscompat: 114036cd8f064558c9c1a0c04fc9ae5e1453706a
+ React-perflogger: e7287fee27c16e3c8bd4d470f2361572b63be16b
+ React-performancetimeline: 8ebbaa31d2d0cea680b0a2a567500d3cab8954fc
+ React-RCTActionSheet: 68c68b0a7a5d2b0cfc255c64889b6e485974e988
+ React-RCTAnimation: d6c5c728b888a967ce9aff1ff71a8ed71a68d069
+ React-RCTAppDelegate: 0fc048666bda159cd469a6fb9befb04b3fa62be4
+ React-RCTBlob: 12d8c699a1f906840113ee8d8bb575e69a05509f
+ React-RCTFabric: 01e815845ebc185f44205dcbf50eeb712fec23fe
+ React-RCTFBReactNativeSpec: f57927fb0af6ce2f25c19f8b894e2986138aa89f
+ React-RCTImage: a82518168f4ee407913b23ca749ca79ef51959f3
+ React-RCTLinking: 7f343b584c36f024f390fea563483568fe763ef6
+ React-RCTNetwork: 3165eb757ceb62a7cde4cdad043d63314122e8a3
+ React-RCTRuntime: feee590c459c4cb6aaa7a00f3abc8c04709b536f
+ React-RCTSettings: 6bad0ae45d8d872c873059f332f586f99875621f
+ React-RCTText: 657d60f35983062de8f0cea67c279aa7a3ea9858
+ React-RCTVibration: 78f4770515141efb7f55f9b27c49dda95319c3a8
+ React-rendererconsistency: f7baab26c6d0cd5b2eb7afcecfd2d8b957017b18
+ React-renderercss: bdd2f83a4a054c3e4321fd61305c202b848e471b
+ React-rendererdebug: 9f8865ee038127a9d99d4b034c9da4935d204993
+ React-rncore: f7438473c4c71ee1963fb06a8635bb96013c9e1c
+ React-RuntimeApple: 4d2ab9f72b9193da86eceded128a67254fc18aeb
+ React-RuntimeCore: 5fd73030438d094975ca0f549d162dd97746ae38
+ React-runtimeexecutor: 17c70842d5e611130cb66f91e247bc4a609c3508
+ React-RuntimeHermes: 3c88e6e1ea7ea0899dcffc77c10d61ea46688cfd
+ React-runtimescheduler: 024500621c7c93d65371498abb4ee26d34f5d47d
+ React-timing: c3c923df2b86194e1682e01167717481232f1dc7
+ React-utils: 9154a037543147e1c24098f1a48fc8472602c092
+ ReactAppDependencyProvider: afd905e84ee36e1678016ae04d7370c75ed539be
+ ReactCodegen: f8d5fb047c4cd9d2caade972cad9edac22521362
+ ReactCommon: 17fd88849a174bf9ce45461912291aca711410fc
+ RNScreens: ee2abe7e0c548eed14e92742e81ed991165c56aa
SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748
- Yoga: 28b8cda182ee3092ff80203da66dcb3ffc8cf401
+ Yoga: daa1e4de4b971b977b23bc842aaa3e135324f1f3
-PODFILE CHECKSUM: 8911febba2856453efabe84667ae175facae7b20
+PODFILE CHECKSUM: ed26da52cc3b3bf2faa630371969685a5f8b0e84
-COCOAPODS: 1.14.3
+COCOAPODS: 1.15.2
diff --git a/example/metro.config.js b/example/metro.config.js
index a8ce32df..f62e106d 100644
--- a/example/metro.config.js
+++ b/example/metro.config.js
@@ -13,7 +13,7 @@ const modules = Object.keys({ ...pkg.peerDependencies });
/**
* Metro configuration
- * https://facebook.github.io/metro/docs/configuration
+ * https://reactnative.dev/docs/metro
*
* @type {import('@react-native/metro-config').MetroConfig}
*/
diff --git a/example/package.json b/example/package.json
index 29fabcf0..18773219 100644
--- a/example/package.json
+++ b/example/package.json
@@ -14,8 +14,8 @@
"@react-navigation/bottom-tabs": "^7.2.1",
"@react-navigation/native": "^7.0.15",
"@react-navigation/native-stack": "^7.2.1",
- "react": "18.3.1",
- "react-native": "0.77.1",
+ "react": "19.1.0",
+ "react-native": "0.80.1",
"react-native-codegen": "^0.70.7",
"react-native-safe-area-context": "^5.3.0",
"react-native-screens": "^4.9.2"
@@ -24,22 +24,22 @@
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/runtime": "^7.25.0",
- "@react-native-community/cli": "15.0.1",
- "@react-native-community/cli-platform-android": "15.0.1",
- "@react-native-community/cli-platform-ios": "15.0.1",
- "@react-native/babel-preset": "0.77.1",
- "@react-native/eslint-config": "0.77.1",
- "@react-native/metro-config": "0.77.1",
- "@react-native/typescript-config": "0.77.1",
+ "@react-native-community/cli": "19.0.0",
+ "@react-native-community/cli-platform-android": "19.0.0",
+ "@react-native-community/cli-platform-ios": "19.0.0",
+ "@react-native/babel-preset": "0.80.1",
+ "@react-native/eslint-config": "0.80.1",
+ "@react-native/metro-config": "0.80.1",
+ "@react-native/typescript-config": "0.80.1",
"@types/jest": "^29.5.13",
- "@types/react": "^18.2.6",
- "@types/react-test-renderer": "^18.0.0",
+ "@types/react": "^19.1.0",
+ "@types/react-test-renderer": "^19.1.0",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.19.0",
"jest": "^29.6.3",
"prettier": "2.8.8",
"react-native-builder-bob": "^0.37.0",
- "react-test-renderer": "18.3.1",
+ "react-test-renderer": "19.1.0",
"typescript": "5.0.4"
},
"engines": {
diff --git a/package.json b/package.json
index 10b546f7..c438e790 100644
--- a/package.json
+++ b/package.json
@@ -98,17 +98,17 @@
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
- "@react-native/eslint-config": "^0.78.0",
- "@types/react": "^19.0.10",
+ "@react-native/eslint-config": "^0.80.1",
+ "@types/react": "^19.1.10",
"del-cli": "^5.1.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"prettier": "^3.0.3",
- "react": "19.0.0",
- "react-native": "0.78.0",
- "react-native-builder-bob": "^0.20.0",
+ "react": "19.1.0",
+ "react-native": "0.80.1",
+ "react-native-builder-bob": "^0.37.0",
"release-it": "^16.3.0",
"turbo": "^1.10.7",
"typescript": "^5.2.2"
@@ -186,10 +186,12 @@
"name": "RNIUtilitiesSpec",
"type": "all",
"jsSrcsDir": "src",
- "componentProvider": {
- "RNIDetachedView": "RNIDetachedView",
- "RNIDummyTestView": "RNIDummyTestView",
- "RNIWrapperView": "RNIWrapperView"
+ "ios": {
+ "componentProvider": {
+ "RNIDetachedView": "RNIDetachedView",
+ "RNIDummyTestView": "RNIDummyTestView",
+ "RNIWrapperView": "RNIWrapperView"
+ }
}
}
}
diff --git a/src/native_components/RNIDetachedView/RNIDetachedViewNativeComponent.ts b/src/native_components/RNIDetachedView/RNIDetachedViewNativeComponent.ts
index e1b5e040..560ff17c 100644
--- a/src/native_components/RNIDetachedView/RNIDetachedViewNativeComponent.ts
+++ b/src/native_components/RNIDetachedView/RNIDetachedViewNativeComponent.ts
@@ -1,5 +1,8 @@
-import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent';
-import type { BubblingEventHandler, Int32 } from 'react-native/Libraries/Types/CodegenTypes';
+import { codegenNativeComponent } from 'react-native';
+import type {
+ BubblingEventHandler,
+ Int32,
+} from 'react-native/Libraries/Types/CodegenTypes';
import type { HostComponent, ViewProps } from 'react-native';
// stubs
@@ -19,10 +22,10 @@ export interface NativeProps extends ViewProps {
// event prop stubs
onContentViewDidDetach?: BubblingEventHandler<{}>;
onViewDidDetachFromParent?: BubblingEventHandler<{}>;
-};
+}
// stubs
export default codegenNativeComponent('RNIDetachedView', {
excludedPlatforms: ['android'],
interfaceOnly: true,
-}) as HostComponent;
\ No newline at end of file
+}) as HostComponent;
diff --git a/src/native_components/RNIDummyTestView/RNIDummyTestViewNativeComponent.ts b/src/native_components/RNIDummyTestView/RNIDummyTestViewNativeComponent.ts
index 20503cdd..691a3c7d 100644
--- a/src/native_components/RNIDummyTestView/RNIDummyTestViewNativeComponent.ts
+++ b/src/native_components/RNIDummyTestView/RNIDummyTestViewNativeComponent.ts
@@ -1,8 +1,10 @@
-import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent';
-import type { DirectEventHandler, BubblingEventHandler } from 'react-native/Libraries/Types/CodegenTypes';
+import { codegenNativeComponent } from 'react-native';
+import type {
+ DirectEventHandler,
+ BubblingEventHandler,
+} from 'react-native/Libraries/Types/CodegenTypes';
import type { HostComponent, ViewProps } from 'react-native';
-
// stubs
interface NativeProps extends ViewProps {
someBool: string;
diff --git a/src/native_components/RNIWrapperView/RNIWrapperViewNativeComponent.ts b/src/native_components/RNIWrapperView/RNIWrapperViewNativeComponent.ts
index fd52afa0..9d2f0ce2 100644
--- a/src/native_components/RNIWrapperView/RNIWrapperViewNativeComponent.ts
+++ b/src/native_components/RNIWrapperView/RNIWrapperViewNativeComponent.ts
@@ -1,6 +1,6 @@
-import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent';
-import type { BubblingEventHandler } from 'react-native/Libraries/Types/CodegenTypes';
+import { codegenNativeComponent } from 'react-native';
import type { HostComponent, ViewProps } from 'react-native';
+import type { BubblingEventHandler } from 'react-native/Libraries/Types/CodegenTypes';
// stubs
export interface NativeProps extends ViewProps {
@@ -11,10 +11,10 @@ export interface NativeProps extends ViewProps {
onDidSetViewID?: BubblingEventHandler<{}>;
onViewWillRecycle?: BubblingEventHandler<{}>;
onRawNativeEvent?: BubblingEventHandler<{}>;
-};
+}
// stubs
export default codegenNativeComponent('RNIWrapperView', {
excludedPlatforms: ['android'],
interfaceOnly: true,
-}) as HostComponent;
\ No newline at end of file
+}) as HostComponent;
diff --git a/yarn.lock b/yarn.lock
index 043a64c8..bda58aa1 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -15,73 +15,50 @@ __metadata:
languageName: node
linkType: hard
-"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.24.7, @babel/code-frame@npm:^7.26.2":
- version: 7.26.2
- resolution: "@babel/code-frame@npm:7.26.2"
+"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.24.7, @babel/code-frame@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/code-frame@npm:7.27.1"
dependencies:
- "@babel/helper-validator-identifier": ^7.25.9
+ "@babel/helper-validator-identifier": ^7.27.1
js-tokens: ^4.0.0
- picocolors: ^1.0.0
- checksum: db13f5c42d54b76c1480916485e6900748bbcb0014a8aca87f50a091f70ff4e0d0a6db63cade75eb41fcc3d2b6ba0a7f89e343def4f96f00269b41b8ab8dd7b8
- languageName: node
- linkType: hard
-
-"@babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.26.5, @babel/compat-data@npm:^7.26.8":
- version: 7.26.8
- resolution: "@babel/compat-data@npm:7.26.8"
- checksum: 1bb04c6860c8c9555b933cb9c3caf5ef1dac331a37a351efb67956fc679f695d487aea76e792dd43823702c1300f7906f2a298e50b4a8d7ec199ada9c340c365
+ picocolors: ^1.1.1
+ checksum: 5874edc5d37406c4a0bb14cf79c8e51ad412fb0423d176775ac14fc0259831be1bf95bdda9c2aa651126990505e09a9f0ed85deaa99893bc316d2682c5115bdc
languageName: node
linkType: hard
-"@babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3, @babel/core@npm:^7.13.16, @babel/core@npm:^7.18.5, @babel/core@npm:^7.23.9, @babel/core@npm:^7.24.7, @babel/core@npm:^7.25.2":
- version: 7.26.9
- resolution: "@babel/core@npm:7.26.9"
- dependencies:
- "@ampproject/remapping": ^2.2.0
- "@babel/code-frame": ^7.26.2
- "@babel/generator": ^7.26.9
- "@babel/helper-compilation-targets": ^7.26.5
- "@babel/helper-module-transforms": ^7.26.0
- "@babel/helpers": ^7.26.9
- "@babel/parser": ^7.26.9
- "@babel/template": ^7.26.9
- "@babel/traverse": ^7.26.9
- "@babel/types": ^7.26.9
- convert-source-map: ^2.0.0
- debug: ^4.1.0
- gensync: ^1.0.0-beta.2
- json5: ^2.2.3
- semver: ^6.3.1
- checksum: b6e33bdcbb8a5c929760548be400d18cbde1f07922a784586752fd544fbf13c71331406ffdb4fcfe53f79c69ceae602efdca654ad4e9ac0c2af47efe87e7fccd
+"@babel/compat-data@npm:^7.27.2, @babel/compat-data@npm:^7.27.7, @babel/compat-data@npm:^7.28.0":
+ version: 7.28.0
+ resolution: "@babel/compat-data@npm:7.28.0"
+ checksum: 37a40d4ea10a32783bc24c4ad374200f5db864c8dfa42f82e76f02b8e84e4c65e6a017fc014d165b08833f89333dff4cb635fce30f03c333ea3525ea7e20f0a2
languageName: node
linkType: hard
-"@babel/core@npm:^7.20.0":
- version: 7.26.10
- resolution: "@babel/core@npm:7.26.10"
+"@babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3, @babel/core@npm:^7.13.16, @babel/core@npm:^7.20.0, @babel/core@npm:^7.23.9, @babel/core@npm:^7.25.2":
+ version: 7.28.0
+ resolution: "@babel/core@npm:7.28.0"
dependencies:
"@ampproject/remapping": ^2.2.0
- "@babel/code-frame": ^7.26.2
- "@babel/generator": ^7.26.10
- "@babel/helper-compilation-targets": ^7.26.5
- "@babel/helper-module-transforms": ^7.26.0
- "@babel/helpers": ^7.26.10
- "@babel/parser": ^7.26.10
- "@babel/template": ^7.26.9
- "@babel/traverse": ^7.26.10
- "@babel/types": ^7.26.10
+ "@babel/code-frame": ^7.27.1
+ "@babel/generator": ^7.28.0
+ "@babel/helper-compilation-targets": ^7.27.2
+ "@babel/helper-module-transforms": ^7.27.3
+ "@babel/helpers": ^7.27.6
+ "@babel/parser": ^7.28.0
+ "@babel/template": ^7.27.2
+ "@babel/traverse": ^7.28.0
+ "@babel/types": ^7.28.0
convert-source-map: ^2.0.0
debug: ^4.1.0
gensync: ^1.0.0-beta.2
json5: ^2.2.3
semver: ^6.3.1
- checksum: 0217325bd46fb9c828331c14dbe3f015ee13d9aecec423ef5acc0ce8b51a3d2a2d55f2ede252b99d0ab9b2f1a06e2881694a890f92006aeac9ebe5be2914c089
+ checksum: 86da9e26c96e22d96deca0509969d273476f61c30464f262dec5e5a163422e07d5ab690ed54619d10fcab784abd10567022ce3d90f175b40279874f5288215e3
languageName: node
linkType: hard
"@babel/eslint-parser@npm:^7.25.1":
- version: 7.26.8
- resolution: "@babel/eslint-parser@npm:7.26.8"
+ version: 7.28.0
+ resolution: "@babel/eslint-parser@npm:7.28.0"
dependencies:
"@nicolo-ribaudo/eslint-scope-5-internals": 5.1.1-v1
eslint-visitor-keys: ^2.1.0
@@ -89,322 +66,295 @@ __metadata:
peerDependencies:
"@babel/core": ^7.11.0
eslint: ^7.5.0 || ^8.0.0 || ^9.0.0
- checksum: a434da9e3099e5f77911baa4eaa21f2ec64768703be1fde2858e8ffdb8be6cb78ff67c611c8c17fe1ece54d925b65487a7455cca93103b017443a51b76320751
- languageName: node
- linkType: hard
-
-"@babel/generator@npm:^7.20.0, @babel/generator@npm:^7.26.10":
- version: 7.26.10
- resolution: "@babel/generator@npm:7.26.10"
- dependencies:
- "@babel/parser": ^7.26.10
- "@babel/types": ^7.26.10
- "@jridgewell/gen-mapping": ^0.3.5
- "@jridgewell/trace-mapping": ^0.3.25
- jsesc: ^3.0.2
- checksum: b047378cb4fdb54adae53a7e9648f1585c2e3ddd3a4019e36bf4b4554029c84872891234fc9c9519570448a1cb47430b2bf46524cf618c94d6d09985cf6428e1
+ checksum: ccfc4b9b9fdca2b8df95da3827b70231e9588a71447ff7b2de76c4f36710e4e0a7dc5e2e98623f398a737c2429c46500cb11d4ccdfeb98271e067d0bf0eec9b5
languageName: node
linkType: hard
-"@babel/generator@npm:^7.25.0, @babel/generator@npm:^7.26.9, @babel/generator@npm:^7.7.2":
- version: 7.26.9
- resolution: "@babel/generator@npm:7.26.9"
+"@babel/generator@npm:^7.20.0, @babel/generator@npm:^7.25.0, @babel/generator@npm:^7.28.0, @babel/generator@npm:^7.7.2":
+ version: 7.28.0
+ resolution: "@babel/generator@npm:7.28.0"
dependencies:
- "@babel/parser": ^7.26.9
- "@babel/types": ^7.26.9
- "@jridgewell/gen-mapping": ^0.3.5
- "@jridgewell/trace-mapping": ^0.3.25
+ "@babel/parser": ^7.28.0
+ "@babel/types": ^7.28.0
+ "@jridgewell/gen-mapping": ^0.3.12
+ "@jridgewell/trace-mapping": ^0.3.28
jsesc: ^3.0.2
- checksum: 57d034fb6c77dfd5e0c8ef368ff544e19cb6a27cb70d6ed5ff0552c618153dc6692d31e7d0f3a408e0fec3a519514b846c909316c3078290f3a3c1e463372eae
+ checksum: 3fc9ecca7e7a617cf7b7357e11975ddfaba4261f374ab915f5d9f3b1ddc8fd58da9f39492396416eb08cf61972d1aa13c92d4cca206533c553d8651c2740f07f
languageName: node
linkType: hard
-"@babel/helper-annotate-as-pure@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/helper-annotate-as-pure@npm:7.25.9"
+"@babel/helper-annotate-as-pure@npm:^7.27.1, @babel/helper-annotate-as-pure@npm:^7.27.3":
+ version: 7.27.3
+ resolution: "@babel/helper-annotate-as-pure@npm:7.27.3"
dependencies:
- "@babel/types": ^7.25.9
- checksum: 41edda10df1ae106a9b4fe617bf7c6df77db992992afd46192534f5cff29f9e49a303231733782dd65c5f9409714a529f215325569f14282046e9d3b7a1ffb6c
+ "@babel/types": ^7.27.3
+ checksum: 63863a5c936ef82b546ca289c9d1b18fabfc24da5c4ee382830b124e2e79b68d626207febc8d4bffc720f50b2ee65691d7d12cc0308679dee2cd6bdc926b7190
languageName: node
linkType: hard
-"@babel/helper-compilation-targets@npm:^7.22.6, @babel/helper-compilation-targets@npm:^7.25.9, @babel/helper-compilation-targets@npm:^7.26.5":
- version: 7.26.5
- resolution: "@babel/helper-compilation-targets@npm:7.26.5"
+"@babel/helper-compilation-targets@npm:^7.27.1, @babel/helper-compilation-targets@npm:^7.27.2":
+ version: 7.27.2
+ resolution: "@babel/helper-compilation-targets@npm:7.27.2"
dependencies:
- "@babel/compat-data": ^7.26.5
- "@babel/helper-validator-option": ^7.25.9
+ "@babel/compat-data": ^7.27.2
+ "@babel/helper-validator-option": ^7.27.1
browserslist: ^4.24.0
lru-cache: ^5.1.1
semver: ^6.3.1
- checksum: 6bc0107613bf1d4d21913606e8e517194e5099a24db2a8374568e56ef4626e8140f9b8f8a4aabc35479f5904459a0aead2a91ee0dc63aae110ccbc2bc4b4fda1
+ checksum: 7b95328237de85d7af1dea010a4daa28e79f961dda48b652860d5893ce9b136fc8b9ea1f126d8e0a24963b09ba5c6631dcb907b4ce109b04452d34a6ae979807
languageName: node
linkType: hard
-"@babel/helper-create-class-features-plugin@npm:^7.18.6, @babel/helper-create-class-features-plugin@npm:^7.25.9":
- version: 7.26.9
- resolution: "@babel/helper-create-class-features-plugin@npm:7.26.9"
+"@babel/helper-create-class-features-plugin@npm:^7.18.6, @babel/helper-create-class-features-plugin@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/helper-create-class-features-plugin@npm:7.27.1"
dependencies:
- "@babel/helper-annotate-as-pure": ^7.25.9
- "@babel/helper-member-expression-to-functions": ^7.25.9
- "@babel/helper-optimise-call-expression": ^7.25.9
- "@babel/helper-replace-supers": ^7.26.5
- "@babel/helper-skip-transparent-expression-wrappers": ^7.25.9
- "@babel/traverse": ^7.26.9
+ "@babel/helper-annotate-as-pure": ^7.27.1
+ "@babel/helper-member-expression-to-functions": ^7.27.1
+ "@babel/helper-optimise-call-expression": ^7.27.1
+ "@babel/helper-replace-supers": ^7.27.1
+ "@babel/helper-skip-transparent-expression-wrappers": ^7.27.1
+ "@babel/traverse": ^7.27.1
semver: ^6.3.1
peerDependencies:
"@babel/core": ^7.0.0
- checksum: d445a660d2cdd92e83c04a60f52a304e54e5cc338796b6add9dec00048f1ad12125f78145ab688d029569a9559ef64f8e0de86f456b9e2630ea46f664ffb8e45
+ checksum: 406954b455e5b20924e7d1b41cf932e6e98e95c3a5224c7a70c3ad96a84e8fbde915ceff7ddbf9c7d121397c4e9274f061241648475122cf6fe54e0a95caae15
languageName: node
linkType: hard
-"@babel/helper-create-regexp-features-plugin@npm:^7.18.6, @babel/helper-create-regexp-features-plugin@npm:^7.25.9":
- version: 7.26.3
- resolution: "@babel/helper-create-regexp-features-plugin@npm:7.26.3"
+"@babel/helper-create-regexp-features-plugin@npm:^7.18.6, @babel/helper-create-regexp-features-plugin@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/helper-create-regexp-features-plugin@npm:7.27.1"
dependencies:
- "@babel/helper-annotate-as-pure": ^7.25.9
+ "@babel/helper-annotate-as-pure": ^7.27.1
regexpu-core: ^6.2.0
semver: ^6.3.1
peerDependencies:
"@babel/core": ^7.0.0
- checksum: 50a27d8ce6da5c2fa0c62c132c4d27cfeb36e3233ff1e5220d643de3dafe49423b507382f0b72a696fce7486014b134c1e742f55438590f9405d26765b009af0
+ checksum: 2ede6bbad0016a9262fd281ce8f1a5d69e6179dcec4ea282830e924c29a29b66b0544ecb92e4ef4acdaf2c4c990931d7dc442dbcd6a8bcec4bad73923ef70934
languageName: node
linkType: hard
-"@babel/helper-define-polyfill-provider@npm:^0.6.2, @babel/helper-define-polyfill-provider@npm:^0.6.3":
- version: 0.6.3
- resolution: "@babel/helper-define-polyfill-provider@npm:0.6.3"
+"@babel/helper-define-polyfill-provider@npm:^0.6.5":
+ version: 0.6.5
+ resolution: "@babel/helper-define-polyfill-provider@npm:0.6.5"
dependencies:
- "@babel/helper-compilation-targets": ^7.22.6
- "@babel/helper-plugin-utils": ^7.22.5
- debug: ^4.1.1
+ "@babel/helper-compilation-targets": ^7.27.2
+ "@babel/helper-plugin-utils": ^7.27.1
+ debug: ^4.4.1
lodash.debounce: ^4.0.8
- resolve: ^1.14.2
+ resolve: ^1.22.10
peerDependencies:
"@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
- checksum: 710e6d8a5391736b9f53f09d0494575c2e03de199ad8d1349bc8e514cb85251ea1f1842c2ff44830849d482052ddb42ae931101002a87a263b12f649c2e57c01
+ checksum: 9fd3b09b209c8ed0d3d8bc1f494f1368b9e1f6e46195af4ce948630fe97d7dafde4882eedace270b319bf6555ddf35e220c77505f6d634f621766cdccbba0aae
+ languageName: node
+ linkType: hard
+
+"@babel/helper-globals@npm:^7.28.0":
+ version: 7.28.0
+ resolution: "@babel/helper-globals@npm:7.28.0"
+ checksum: d8d7b91c12dad1ee747968af0cb73baf91053b2bcf78634da2c2c4991fb45ede9bd0c8f9b5f3254881242bc0921218fcb7c28ae885477c25177147e978ce4397
languageName: node
linkType: hard
-"@babel/helper-member-expression-to-functions@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/helper-member-expression-to-functions@npm:7.25.9"
+"@babel/helper-member-expression-to-functions@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/helper-member-expression-to-functions@npm:7.27.1"
dependencies:
- "@babel/traverse": ^7.25.9
- "@babel/types": ^7.25.9
- checksum: 8e2f1979b6d596ac2a8cbf17f2cf709180fefc274ac3331408b48203fe19134ed87800774ef18838d0275c3965130bae22980d90caed756b7493631d4b2cf961
+ "@babel/traverse": ^7.27.1
+ "@babel/types": ^7.27.1
+ checksum: b13a3d120015a6fd2f6e6c2ff789cd12498745ef028710cba612cfb751b91ace700c3f96c1689228d1dcb41e9d4cf83d6dff8627dcb0c8da12d79440e783c6b8
languageName: node
linkType: hard
-"@babel/helper-module-imports@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/helper-module-imports@npm:7.25.9"
+"@babel/helper-module-imports@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/helper-module-imports@npm:7.27.1"
dependencies:
- "@babel/traverse": ^7.25.9
- "@babel/types": ^7.25.9
- checksum: 1b411ce4ca825422ef7065dffae7d8acef52023e51ad096351e3e2c05837e9bf9fca2af9ca7f28dc26d596a588863d0fedd40711a88e350b736c619a80e704e6
+ "@babel/traverse": ^7.27.1
+ "@babel/types": ^7.27.1
+ checksum: 92d01c71c0e4aacdc2babce418a9a1a27a8f7d770a210ffa0f3933f321befab18b655bc1241bebc40767516731de0b85639140c42e45a8210abe1e792f115b28
languageName: node
linkType: hard
-"@babel/helper-module-transforms@npm:^7.25.9, @babel/helper-module-transforms@npm:^7.26.0":
- version: 7.26.0
- resolution: "@babel/helper-module-transforms@npm:7.26.0"
+"@babel/helper-module-transforms@npm:^7.27.1, @babel/helper-module-transforms@npm:^7.27.3":
+ version: 7.27.3
+ resolution: "@babel/helper-module-transforms@npm:7.27.3"
dependencies:
- "@babel/helper-module-imports": ^7.25.9
- "@babel/helper-validator-identifier": ^7.25.9
- "@babel/traverse": ^7.25.9
+ "@babel/helper-module-imports": ^7.27.1
+ "@babel/helper-validator-identifier": ^7.27.1
+ "@babel/traverse": ^7.27.3
peerDependencies:
"@babel/core": ^7.0.0
- checksum: 942eee3adf2b387443c247a2c190c17c4fd45ba92a23087abab4c804f40541790d51ad5277e4b5b1ed8d5ba5b62de73857446b7742f835c18ebd350384e63917
+ checksum: c611d42d3cb7ba23b1a864fcf8d6cde0dc99e876ca1c9a67e4d7919a70706ded4aaa45420de2bf7f7ea171e078e59f0edcfa15a56d74b9485e151b95b93b946e
languageName: node
linkType: hard
-"@babel/helper-optimise-call-expression@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/helper-optimise-call-expression@npm:7.25.9"
+"@babel/helper-optimise-call-expression@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/helper-optimise-call-expression@npm:7.27.1"
dependencies:
- "@babel/types": ^7.25.9
- checksum: f09d0ad60c0715b9a60c31841b3246b47d67650c512ce85bbe24a3124f1a4d66377df793af393273bc6e1015b0a9c799626c48e53747581c1582b99167cc65dc
+ "@babel/types": ^7.27.1
+ checksum: 0fb7ee824a384529d6b74f8a58279f9b56bfe3cce332168067dddeab2552d8eeb56dc8eaf86c04a3a09166a316cb92dfc79c4c623cd034ad4c563952c98b464f
languageName: node
linkType: hard
-"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.20.2, @babel/helper-plugin-utils@npm:^7.22.5, @babel/helper-plugin-utils@npm:^7.25.9, @babel/helper-plugin-utils@npm:^7.26.5, @babel/helper-plugin-utils@npm:^7.8.0":
- version: 7.26.5
- resolution: "@babel/helper-plugin-utils@npm:7.26.5"
- checksum: 4771fbb1711c624c62d12deabc2ed7435a6e6994b6ce09d5ede1bc1bf19be59c3775461a1e693bdd596af865685e87bb2abc778f62ceadc1b2095a8e2aa74180
+"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.20.2, @babel/helper-plugin-utils@npm:^7.27.1, @babel/helper-plugin-utils@npm:^7.8.0":
+ version: 7.27.1
+ resolution: "@babel/helper-plugin-utils@npm:7.27.1"
+ checksum: 5d715055301badab62bdb2336075a77f8dc8bd290cad2bc1b37ea3bf1b3efc40594d308082229f239deb4d6b5b80b0a73bce000e595ea74416e0339c11037047
languageName: node
linkType: hard
-"@babel/helper-remap-async-to-generator@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/helper-remap-async-to-generator@npm:7.25.9"
+"@babel/helper-remap-async-to-generator@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/helper-remap-async-to-generator@npm:7.27.1"
dependencies:
- "@babel/helper-annotate-as-pure": ^7.25.9
- "@babel/helper-wrap-function": ^7.25.9
- "@babel/traverse": ^7.25.9
+ "@babel/helper-annotate-as-pure": ^7.27.1
+ "@babel/helper-wrap-function": ^7.27.1
+ "@babel/traverse": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0
- checksum: ea37ad9f8f7bcc27c109963b8ebb9d22bac7a5db2a51de199cb560e251d5593fe721e46aab2ca7d3e7a24b0aa4aff0eaf9c7307af9c2fd3a1d84268579073052
+ checksum: 0747397ba013f87dbf575454a76c18210d61c7c9af0f697546b4bcac670b54ddc156330234407b397f0c948738c304c228e0223039bc45eab4fbf46966a5e8cc
languageName: node
linkType: hard
-"@babel/helper-replace-supers@npm:^7.25.9, @babel/helper-replace-supers@npm:^7.26.5":
- version: 7.26.5
- resolution: "@babel/helper-replace-supers@npm:7.26.5"
+"@babel/helper-replace-supers@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/helper-replace-supers@npm:7.27.1"
dependencies:
- "@babel/helper-member-expression-to-functions": ^7.25.9
- "@babel/helper-optimise-call-expression": ^7.25.9
- "@babel/traverse": ^7.26.5
+ "@babel/helper-member-expression-to-functions": ^7.27.1
+ "@babel/helper-optimise-call-expression": ^7.27.1
+ "@babel/traverse": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0
- checksum: c5ab31b29c7cc09e30278f8860ecdb873ce6c84b5c08bc5239c369c7c4fe9f0a63cda61b55b7bbd20edb4e5dc32e73087cc3c57d85264834bd191551d1499185
+ checksum: 3690266c304f21008690ba68062f889a363583cabc13c3d033b94513953147af3e0a3fdb48fa1bb9fa3734b64e221fc65e5222ab70837f02321b7225f487c6ef
languageName: node
linkType: hard
-"@babel/helper-skip-transparent-expression-wrappers@npm:^7.20.0, @babel/helper-skip-transparent-expression-wrappers@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.25.9"
+"@babel/helper-skip-transparent-expression-wrappers@npm:^7.20.0, @babel/helper-skip-transparent-expression-wrappers@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.27.1"
dependencies:
- "@babel/traverse": ^7.25.9
- "@babel/types": ^7.25.9
- checksum: fdbb5248932198bc26daa6abf0d2ac42cab9c2dbb75b7e9f40d425c8f28f09620b886d40e7f9e4e08ffc7aaa2cefe6fc2c44be7c20e81f7526634702fb615bdc
- languageName: node
- linkType: hard
-
-"@babel/helper-string-parser@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/helper-string-parser@npm:7.25.9"
- checksum: 6435ee0849e101681c1849868278b5aee82686ba2c1e27280e5e8aca6233af6810d39f8e4e693d2f2a44a3728a6ccfd66f72d71826a94105b86b731697cdfa99
- languageName: node
- linkType: hard
-
-"@babel/helper-validator-identifier@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/helper-validator-identifier@npm:7.25.9"
- checksum: 5b85918cb1a92a7f3f508ea02699e8d2422fe17ea8e82acd445006c0ef7520fbf48e3dbcdaf7b0a1d571fc3a2715a29719e5226636cb6042e15fe6ed2a590944
+ "@babel/traverse": ^7.27.1
+ "@babel/types": ^7.27.1
+ checksum: 4f380c5d0e0769fa6942a468b0c2d7c8f0c438f941aaa88f785f8752c103631d0904c7b4e76207a3b0e6588b2dec376595370d92ca8f8f1b422c14a69aa146d4
languageName: node
linkType: hard
-"@babel/helper-validator-option@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/helper-validator-option@npm:7.25.9"
- checksum: 9491b2755948ebbdd68f87da907283698e663b5af2d2b1b02a2765761974b1120d5d8d49e9175b167f16f72748ffceec8c9cf62acfbee73f4904507b246e2b3d
+"@babel/helper-string-parser@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/helper-string-parser@npm:7.27.1"
+ checksum: 0a8464adc4b39b138aedcb443b09f4005d86207d7126e5e079177e05c3116107d856ec08282b365e9a79a9872f40f4092a6127f8d74c8a01c1ef789dacfc25d6
languageName: node
linkType: hard
-"@babel/helper-wrap-function@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/helper-wrap-function@npm:7.25.9"
- dependencies:
- "@babel/template": ^7.25.9
- "@babel/traverse": ^7.25.9
- "@babel/types": ^7.25.9
- checksum: 8ec1701e60ae004415800c4a7a188f5564c73b4e4f3fdf58dd3f34a3feaa9753173f39bbd6d02e7ecc974f48155efc7940e62584435b3092c07728ee46a604ea
+"@babel/helper-validator-identifier@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/helper-validator-identifier@npm:7.27.1"
+ checksum: 3c7e8391e59d6c85baeefe9afb86432f2ab821c6232b00ea9082a51d3e7e95a2f3fb083d74dc1f49ac82cf238e1d2295dafcb001f7b0fab479f3f56af5eaaa47
languageName: node
linkType: hard
-"@babel/helpers@npm:^7.26.10":
- version: 7.26.10
- resolution: "@babel/helpers@npm:7.26.10"
- dependencies:
- "@babel/template": ^7.26.9
- "@babel/types": ^7.26.10
- checksum: daa3689024a4fc5e024fea382915c6fb0fde15cf1b2f6093435725c79edccbef7646d4a656b199c046ff5c61846d1b3876d6096b7bf0635823de6aaff2a1e1a4
+"@babel/helper-validator-option@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/helper-validator-option@npm:7.27.1"
+ checksum: db73e6a308092531c629ee5de7f0d04390835b21a263be2644276cb27da2384b64676cab9f22cd8d8dbd854c92b1d7d56fc8517cf0070c35d1c14a8c828b0903
languageName: node
linkType: hard
-"@babel/helpers@npm:^7.26.9":
- version: 7.26.9
- resolution: "@babel/helpers@npm:7.26.9"
+"@babel/helper-wrap-function@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/helper-wrap-function@npm:7.27.1"
dependencies:
- "@babel/template": ^7.26.9
- "@babel/types": ^7.26.9
- checksum: 06363f8288a24c1cfda03eccd775ac22f79cba319b533cb0e5d0f2a04a33512881cc3f227a4c46324935504fb92999cc4758b69b5e7b3846107eadcb5ee0abca
+ "@babel/template": ^7.27.1
+ "@babel/traverse": ^7.27.1
+ "@babel/types": ^7.27.1
+ checksum: b0427765766494cb5455a188d4cdef5e6167f2835a8ed76f3c25fa3bbe2ec2a716588fa326c52fab0d184a9537200d76e48656e516580a914129d74528322821
languageName: node
linkType: hard
-"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.13.16, @babel/parser@npm:^7.14.0, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.24.7, @babel/parser@npm:^7.25.3, @babel/parser@npm:^7.26.9":
- version: 7.26.9
- resolution: "@babel/parser@npm:7.26.9"
+"@babel/helpers@npm:^7.27.6":
+ version: 7.27.6
+ resolution: "@babel/helpers@npm:7.27.6"
dependencies:
- "@babel/types": ^7.26.9
- bin:
- parser: ./bin/babel-parser.js
- checksum: 2df965dbf3c67d19dc437412ceef23033b4d39b0dbd7cb498d8ab9ad9e1738338656ee72676199773b37d658edf9f4161cf255515234fed30695d74e73be5514
+ "@babel/template": ^7.27.2
+ "@babel/types": ^7.27.6
+ checksum: 12f96a5800ff677481dbc0a022c617303e945210cac4821ad5377a31201ffd8d9c4d00f039ed1487cf2a3d15868fb2d6cabecdb1aba334bd40a846f1938053a2
languageName: node
linkType: hard
-"@babel/parser@npm:^7.20.0, @babel/parser@npm:^7.26.10":
- version: 7.26.10
- resolution: "@babel/parser@npm:7.26.10"
+"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.13.16, @babel/parser@npm:^7.14.0, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.0, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.25.3, @babel/parser@npm:^7.27.2, @babel/parser@npm:^7.28.0":
+ version: 7.28.0
+ resolution: "@babel/parser@npm:7.28.0"
dependencies:
- "@babel/types": ^7.26.10
+ "@babel/types": ^7.28.0
bin:
parser: ./bin/babel-parser.js
- checksum: 81f9af962aea55a2973d213dffc6191939df7eba0511ba585d23f0d838931f5fca2efb83ae382e4b9bb486f20ae1b2607cb1b8be49af89e9f011fb4355727f47
+ checksum: 718e4ce9b0914701d6f74af610d3e7d52b355ef1dcf34a7dedc5930e96579e387f04f96187e308e601828b900b8e4e66d2fe85023beba2ac46587023c45b01cf
languageName: node
linkType: hard
-"@babel/plugin-bugfix-firefox-class-in-computed-class-key@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-bugfix-firefox-class-in-computed-class-key@npm:7.25.9"
+"@babel/plugin-bugfix-firefox-class-in-computed-class-key@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-bugfix-firefox-class-in-computed-class-key@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
- "@babel/traverse": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
+ "@babel/traverse": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0
- checksum: b33d37dacf98a9c74f53959999adc37a258057668b62dba557e6865689433c53764673109eaba9102bf73b2ac4db162f0d9b89a6cca6f1b71d12f5908ec11da9
+ checksum: 72f24b9487e445fa61cf8be552aad394a648c2bb445c38d39d1df003186d9685b87dd8d388c950f438ea0ca44c82099d9c49252fb681c719cc72edf02bbe0304
languageName: node
linkType: hard
-"@babel/plugin-bugfix-safari-class-field-initializer-scope@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-bugfix-safari-class-field-initializer-scope@npm:7.25.9"
+"@babel/plugin-bugfix-safari-class-field-initializer-scope@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-bugfix-safari-class-field-initializer-scope@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0
- checksum: d3e14ab1cb9cb50246d20cab9539f2fbd1e7ef1ded73980c8ad7c0561b4d5e0b144d362225f0976d47898e04cbd40f2000e208b0913bd788346cf7791b96af91
+ checksum: eb7f4146dc01f1198ce559a90b077e58b951a07521ec414e3c7d4593bf6c4ab5c2af22242a7e9fec085e20299e0ba6ea97f44a45e84ab148141bf9eb959ad25e
languageName: node
linkType: hard
-"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:7.25.9"
+"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0
- checksum: a9d1ee3fd100d3eb6799a2f2bbd785296f356c531d75c9369f71541811fa324270258a374db103ce159156d006da2f33370330558d0133e6f7584152c34997ca
+ checksum: 621cfddfcc99a81e74f8b6f9101fd260b27500cb1a568e3ceae9cc8afe9aee45ac3bca3900a2b66c612b1a2366d29ef67d4df5a1c975be727eaad6906f98c2c6
languageName: node
linkType: hard
-"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:7.25.9"
+"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
- "@babel/helper-skip-transparent-expression-wrappers": ^7.25.9
- "@babel/plugin-transform-optional-chaining": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
+ "@babel/helper-skip-transparent-expression-wrappers": ^7.27.1
+ "@babel/plugin-transform-optional-chaining": ^7.27.1
peerDependencies:
"@babel/core": ^7.13.0
- checksum: 5b298b28e156f64de51cdb03a2c5b80c7f978815ef1026f3ae8b9fc48d28bf0a83817d8fbecb61ef8fb94a7201f62cca5103cc6e7b9e8f28e38f766d7905b378
+ checksum: f07aa80272bd7a46b7ba11a4644da6c9b6a5a64e848dfaffdad6f02663adefd512e1aaebe664c4dd95f7ed4f80c872c7f8db8d8e34b47aae0930b412a28711a0
languageName: node
linkType: hard
-"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:7.25.9"
+"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
- "@babel/traverse": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
+ "@babel/traverse": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0
- checksum: c684593952ab1b40dfa4e64e98a07e7227c6db175c21bd0e6d71d2ad5d240fef4e4a984d56f05a494876542a022244fe1c1098f4116109fd90d06615e8a269b1
+ checksum: 4d6792ccade2d6b9d5577b0a879ab22d05ac8a1206b1a636b6ffdb53a0c0bacaf0f7947e46de254f228ffd75456f4b95ccd82fdeaefc0b92d88af3c5991863ad
languageName: node
linkType: hard
-"@babel/plugin-proposal-class-properties@npm:^7.13.0, @babel/plugin-proposal-class-properties@npm:^7.17.12":
+"@babel/plugin-proposal-class-properties@npm:^7.13.0":
version: 7.18.6
resolution: "@babel/plugin-proposal-class-properties@npm:7.18.6"
dependencies:
@@ -417,13 +367,13 @@ __metadata:
linkType: hard
"@babel/plugin-proposal-export-default-from@npm:^7.24.7":
- version: 7.25.9
- resolution: "@babel/plugin-proposal-export-default-from@npm:7.25.9"
+ version: 7.27.1
+ resolution: "@babel/plugin-proposal-export-default-from@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 0fb96b1229ed15ecfb09e6bf40be2da249007155a3deca53d319420a4d3c028c884e888c447898cbcdaa079165e045a8317be6a9205bef0041e7333822a40da9
+ checksum: cf9eb3c80bcee3ee82d28f1053db97fa6c6e4dea819f73df5a3cb9155d45efc29914e86353572eab36adfe691ca1573e6e2cddae4edbdd475253044575eb7a24
languageName: node
linkType: hard
@@ -517,46 +467,46 @@ __metadata:
linkType: hard
"@babel/plugin-syntax-export-default-from@npm:^7.24.7":
- version: 7.25.9
- resolution: "@babel/plugin-syntax-export-default-from@npm:7.25.9"
+ version: 7.27.1
+ resolution: "@babel/plugin-syntax-export-default-from@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 8eb254c8050369f3cfac7755230ad9d39a53d1b489e03170684d6b514a0d09ad6001c38e6dfd271a439a8035a57d60b8be7d3dd80f997c6bc5c7e688ed529517
+ checksum: d9a6a9c51f644a5ed139dbe1e8cf5a38c9b390af27ad2fc6f0eba579ac543b039efff34200744bfc8523132c06aa6de921238bd2088948bb4dce4571cea43438
languageName: node
linkType: hard
-"@babel/plugin-syntax-flow@npm:^7.12.1, @babel/plugin-syntax-flow@npm:^7.26.0":
- version: 7.26.0
- resolution: "@babel/plugin-syntax-flow@npm:7.26.0"
+"@babel/plugin-syntax-flow@npm:^7.12.1, @babel/plugin-syntax-flow@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-syntax-flow@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: fdc0d0a7b512e00d933e12cf93c785ea4645a193f4b539230b7601cfaa8c704410199318ce9ea14e5fca7d13e9027822f7d81a7871d3e854df26b6af04cc3c6c
+ checksum: 7baca3171ed595d04c865b0ce46fca7f21900686df9d7fcd1017036ce78bb5483e33803de810831e68d39cf478953db69f49ae3f3de2e3207bc4ba49a96b6739
languageName: node
linkType: hard
-"@babel/plugin-syntax-import-assertions@npm:^7.26.0":
- version: 7.26.0
- resolution: "@babel/plugin-syntax-import-assertions@npm:7.26.0"
+"@babel/plugin-syntax-import-assertions@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-syntax-import-assertions@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: b58f2306df4a690ca90b763d832ec05202c50af787158ff8b50cdf3354359710bce2e1eb2b5135fcabf284756ac8eadf09ca74764aa7e76d12a5cac5f6b21e67
+ checksum: fb661d630808d67ecb85eabad25aac4e9696a20464bad4c4a6a0d3d40e4dc22557d47e9be3d591ec06429cf048cfe169b8891c373606344d51c4f3ac0f91d6d0
languageName: node
linkType: hard
-"@babel/plugin-syntax-import-attributes@npm:^7.24.7, @babel/plugin-syntax-import-attributes@npm:^7.26.0":
- version: 7.26.0
- resolution: "@babel/plugin-syntax-import-attributes@npm:7.26.0"
+"@babel/plugin-syntax-import-attributes@npm:^7.24.7, @babel/plugin-syntax-import-attributes@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-syntax-import-attributes@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: c122aa577166c80ee67f75aebebeef4150a132c4d3109d25d7fc058bf802946f883e330f20b78c1d3e3a5ada631c8780c263d2d01b5dbaecc69efefeedd42916
+ checksum: 97973982fff1bbf86b3d1df13380567042887c50e2ae13a400d02a8ff2c9742a60a75e279bfb73019e1cd9710f04be5e6ab81f896e6678dcfcec8b135e8896cf
languageName: node
linkType: hard
@@ -582,14 +532,14 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-syntax-jsx@npm:^7.25.9, @babel/plugin-syntax-jsx@npm:^7.7.2":
- version: 7.25.9
- resolution: "@babel/plugin-syntax-jsx@npm:7.25.9"
+"@babel/plugin-syntax-jsx@npm:^7.27.1, @babel/plugin-syntax-jsx@npm:^7.7.2":
+ version: 7.27.1
+ resolution: "@babel/plugin-syntax-jsx@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: bb609d1ffb50b58f0c1bac8810d0e46a4f6c922aa171c458f3a19d66ee545d36e782d3bffbbc1fed0dc65a558bdce1caf5279316583c0fff5a2c1658982a8563
+ checksum: c6d1324cff286a369aa95d99b8abd21dd07821b5d3affd5fe7d6058c84cff9190743287826463ee57a7beecd10fa1e4bc99061df532ee14e188c1c8937b13e3a
languageName: node
linkType: hard
@@ -681,14 +631,14 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-syntax-typescript@npm:^7.25.9, @babel/plugin-syntax-typescript@npm:^7.7.2":
- version: 7.25.9
- resolution: "@babel/plugin-syntax-typescript@npm:7.25.9"
+"@babel/plugin-syntax-typescript@npm:^7.27.1, @babel/plugin-syntax-typescript@npm:^7.7.2":
+ version: 7.27.1
+ resolution: "@babel/plugin-syntax-typescript@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 0e9821e8ba7d660c36c919654e4144a70546942ae184e85b8102f2322451eae102cbfadbcadd52ce077a2b44b400ee52394c616feab7b5b9f791b910e933fd33
+ checksum: 87836f7e32af624c2914c73cd6b9803cf324e07d43f61dbb973c6a86f75df725e12540d91fac7141c14b697aa9268fd064220998daced156e96ac3062d7afb41
languageName: node
linkType: hard
@@ -704,807 +654,822 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-arrow-functions@npm:^7.24.7, @babel/plugin-transform-arrow-functions@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-arrow-functions@npm:7.25.9"
+"@babel/plugin-transform-arrow-functions@npm:^7.24.7, @babel/plugin-transform-arrow-functions@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-arrow-functions@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: c29f081224859483accf55fb4d091db2aac0dcd0d7954bac5ca889030cc498d3f771aa20eb2e9cd8310084ec394d85fa084b97faf09298b6bc9541182b3eb5bb
+ checksum: 62c2cc0ae2093336b1aa1376741c5ed245c0987d9e4b4c5313da4a38155509a7098b5acce582b6781cc0699381420010da2e3086353344abe0a6a0ec38961eb7
languageName: node
linkType: hard
-"@babel/plugin-transform-async-generator-functions@npm:^7.25.4, @babel/plugin-transform-async-generator-functions@npm:^7.26.8":
- version: 7.26.8
- resolution: "@babel/plugin-transform-async-generator-functions@npm:7.26.8"
+"@babel/plugin-transform-async-generator-functions@npm:^7.25.4, @babel/plugin-transform-async-generator-functions@npm:^7.28.0":
+ version: 7.28.0
+ resolution: "@babel/plugin-transform-async-generator-functions@npm:7.28.0"
dependencies:
- "@babel/helper-plugin-utils": ^7.26.5
- "@babel/helper-remap-async-to-generator": ^7.25.9
- "@babel/traverse": ^7.26.8
+ "@babel/helper-plugin-utils": ^7.27.1
+ "@babel/helper-remap-async-to-generator": ^7.27.1
+ "@babel/traverse": ^7.28.0
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10424a1bbfbc7ffdb13cef1e832f76bb2d393a9fbfaa1eaa3091a8f6ec3e2ac0b66cf04fca9cb3fb4dbf3d1bd404d72dfce4a3742b4ef21f6271aca7076a65ef
+ checksum: 174aaccd7a8386fd7f32240c3f65a93cf60dcc5f6a2123cfbff44c0d22b424cd41de3a0c6d136b6a2fa60a8ca01550c261677284cb18a0daeab70730b2265f1d
languageName: node
linkType: hard
-"@babel/plugin-transform-async-to-generator@npm:^7.24.7, @babel/plugin-transform-async-to-generator@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-async-to-generator@npm:7.25.9"
+"@babel/plugin-transform-async-to-generator@npm:^7.24.7, @babel/plugin-transform-async-to-generator@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-async-to-generator@npm:7.27.1"
dependencies:
- "@babel/helper-module-imports": ^7.25.9
- "@babel/helper-plugin-utils": ^7.25.9
- "@babel/helper-remap-async-to-generator": ^7.25.9
+ "@babel/helper-module-imports": ^7.27.1
+ "@babel/helper-plugin-utils": ^7.27.1
+ "@babel/helper-remap-async-to-generator": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: b3ad50fb93c171644d501864620ed23952a46648c4df10dc9c62cc9ad08031b66bd272cfdd708faeee07c23b6251b16f29ce0350473e4c79f0c32178d38ce3a6
+ checksum: d79d7a7ae7d416f6a48200017d027a6ba94c09c7617eea8b4e9c803630f00094c1a4fc32bf20ce3282567824ce3fcbda51653aac4003c71ea4e681b331338979
languageName: node
linkType: hard
-"@babel/plugin-transform-block-scoped-functions@npm:^7.26.5":
- version: 7.26.5
- resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.26.5"
+"@babel/plugin-transform-block-scoped-functions@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.26.5
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: f2046c09bf8e588bfb1a6342d0eee733189102cf663ade27adb0130f3865123af5816b40a55ec8d8fa09271b54dfdaf977cd2f8e0b3dc97f18e690188d5a2174
+ checksum: 7fb4988ca80cf1fc8345310d5edfe38e86b3a72a302675cdd09404d5064fe1d1fe1283ebe658ad2b71445ecef857bfb29a748064306b5f6c628e0084759c2201
languageName: node
linkType: hard
-"@babel/plugin-transform-block-scoping@npm:^7.25.0, @babel/plugin-transform-block-scoping@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-block-scoping@npm:7.25.9"
+"@babel/plugin-transform-block-scoping@npm:^7.25.0, @babel/plugin-transform-block-scoping@npm:^7.28.0":
+ version: 7.28.0
+ resolution: "@babel/plugin-transform-block-scoping@npm:7.28.0"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: e869500cfb1995e06e64c9608543b56468639809febfcdd6fcf683bc0bf1be2431cacf2981a168a1a14f4766393e37bc9f7c96d25bc5b5f39a64a8a8ad0bf8e0
+ checksum: 6d740f9a386e5fbdffd9e7c5a8400bff8d54068241a78b8e71aba6f1f46eff0c4297902f5f1543bee1ed076ec88d0dc4ceed19e98a466802c14d3c20f178f712
languageName: node
linkType: hard
-"@babel/plugin-transform-class-properties@npm:^7.24.7, @babel/plugin-transform-class-properties@npm:^7.25.4, @babel/plugin-transform-class-properties@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-class-properties@npm:7.25.9"
+"@babel/plugin-transform-class-properties@npm:^7.25.4, @babel/plugin-transform-class-properties@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-class-properties@npm:7.27.1"
dependencies:
- "@babel/helper-create-class-features-plugin": ^7.25.9
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-create-class-features-plugin": ^7.27.1
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: a8d69e2c285486b63f49193cbcf7a15e1d3a5f632c1c07d7a97f65306df7f554b30270b7378dde143f8b557d1f8f6336c643377943dec8ec405e4cd11e90b9ea
+ checksum: 475a6e5a9454912fe1bdc171941976ca10ea4e707675d671cdb5ce6b6761d84d1791ac61b6bca81a2e5f6430cb7b9d8e4b2392404110e69c28207a754e196294
languageName: node
linkType: hard
-"@babel/plugin-transform-class-static-block@npm:^7.26.0":
- version: 7.26.0
- resolution: "@babel/plugin-transform-class-static-block@npm:7.26.0"
+"@babel/plugin-transform-class-static-block@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-class-static-block@npm:7.27.1"
dependencies:
- "@babel/helper-create-class-features-plugin": ^7.25.9
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-create-class-features-plugin": ^7.27.1
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.12.0
- checksum: d779d4d3a6f8d363f67fcbd928c15baa72be8d3b86c6d05e0300b50e66e2c4be9e99398b803d13064bc79d90ae36e37a505e3dc8af11904459804dec07660246
+ checksum: 69688fe1641ae0ea025b916b8c2336e8b5643a5ec292e8f546ecd35d9d9d4bb301d738910822a79d867098cf687d550d92cd906ae4cda03c0f69b1ece2149a58
languageName: node
linkType: hard
-"@babel/plugin-transform-classes@npm:^7.25.4, @babel/plugin-transform-classes@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-classes@npm:7.25.9"
+"@babel/plugin-transform-classes@npm:^7.25.4, @babel/plugin-transform-classes@npm:^7.28.0":
+ version: 7.28.0
+ resolution: "@babel/plugin-transform-classes@npm:7.28.0"
dependencies:
- "@babel/helper-annotate-as-pure": ^7.25.9
- "@babel/helper-compilation-targets": ^7.25.9
- "@babel/helper-plugin-utils": ^7.25.9
- "@babel/helper-replace-supers": ^7.25.9
- "@babel/traverse": ^7.25.9
- globals: ^11.1.0
+ "@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
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: d12584f72125314cc0fa8c77586ece2888d677788ac75f7393f5da574dfe4e45a556f7e3488fab29c8777ab3e5856d7a2d79f6df02834083aaa9d766440e3c68
+ checksum: 0b47188046a4f1579123354ee30d08874b4b585d45128a3d492fa1cba7e26c8039d8c44d38d85f4eaa9b5a53064c66f032cfc35526c73c74a865a11edf3a0c28
languageName: node
linkType: hard
-"@babel/plugin-transform-computed-properties@npm:^7.24.7, @babel/plugin-transform-computed-properties@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-computed-properties@npm:7.25.9"
+"@babel/plugin-transform-computed-properties@npm:^7.24.7, @babel/plugin-transform-computed-properties@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-computed-properties@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
- "@babel/template": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
+ "@babel/template": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: f77fa4bc0c1e0031068172df28852388db6b0f91c268d037905f459607cf1e8ebab00015f9f179f4ad96e11c5f381b635cd5dc4e147a48c7ac79d195ae7542de
+ checksum: 48bd20f7d631b08c51155751bf75b698d4a22cca36f41c22921ab92e53039c9ec5c3544e5282e18692325ef85d2e4a18c27e12c62b5e20c26fb0c92447e35224
languageName: node
linkType: hard
-"@babel/plugin-transform-destructuring@npm:^7.24.8, @babel/plugin-transform-destructuring@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-destructuring@npm:7.25.9"
+"@babel/plugin-transform-destructuring@npm:^7.24.8, @babel/plugin-transform-destructuring@npm:^7.28.0":
+ version: 7.28.0
+ resolution: "@babel/plugin-transform-destructuring@npm:7.28.0"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
+ "@babel/traverse": ^7.28.0
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 965f63077a904828f4adee91393f83644098533442b8217d5a135c23a759a4c252c714074c965676a60d2c33f610f579a4eeb59ffd783724393af61c0ca45fef
+ checksum: 5b464d6a03c6eaa1327b60ffc1630ca977db0256938b34e281e65c81c965680e930a6bac043272942d6d4bbd7d1eddded0b7231779429ba51275e092e7367859
languageName: node
linkType: hard
-"@babel/plugin-transform-dotall-regex@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-dotall-regex@npm:7.25.9"
+"@babel/plugin-transform-dotall-regex@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-dotall-regex@npm:7.27.1"
dependencies:
- "@babel/helper-create-regexp-features-plugin": ^7.25.9
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-create-regexp-features-plugin": ^7.27.1
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 8bdf1bb9e6e3a2cc8154ae88a3872faa6dc346d6901994505fb43ac85f858728781f1219f40b67f7bb0687c507450236cb7838ac68d457e65637f98500aa161b
+ checksum: 2173e5b13f403538ffc6bd57b190cedf4caf320abc13a99e5b2721864e7148dbd3bd7c82d92377136af80432818f665fdd9a1fd33bc5549a4c91e24e5ce2413c
languageName: node
linkType: hard
-"@babel/plugin-transform-duplicate-keys@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-duplicate-keys@npm:7.25.9"
+"@babel/plugin-transform-duplicate-keys@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-duplicate-keys@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: b553eebc328797ead6be5ba5bdaf2f1222cea8a5bd33fb4ed625975d4f9b510bfb0d688d97e314cd4b4a48b279bea7b3634ad68c1b41ee143c3082db0ae74037
+ checksum: ef2112d658338e3ff0827f39a53c0cfa211f1cbbe60363bca833a5269df389598ec965e7283600b46533c39cdca82307d0d69c0f518290ec5b00bb713044715b
languageName: node
linkType: hard
-"@babel/plugin-transform-duplicate-named-capturing-groups-regex@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-duplicate-named-capturing-groups-regex@npm:7.25.9"
+"@babel/plugin-transform-duplicate-named-capturing-groups-regex@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-duplicate-named-capturing-groups-regex@npm:7.27.1"
dependencies:
- "@babel/helper-create-regexp-features-plugin": ^7.25.9
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-create-regexp-features-plugin": ^7.27.1
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0
- checksum: f7233cf596be8c6843d31951afaf2464a62a610cb89c72c818c044765827fab78403ab8a7d3a6386f838c8df574668e2a48f6c206b1d7da965aff9c6886cb8e6
+ checksum: 2a109613535e6ac79240dced71429e988affd6a5b3d0cd0f563c8d6c208c51ce7bf2c300bc1150502376b26a51f279119b3358f1c0f2d2f8abca3bcd62e1ae46
languageName: node
linkType: hard
-"@babel/plugin-transform-dynamic-import@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-dynamic-import@npm:7.25.9"
+"@babel/plugin-transform-dynamic-import@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-dynamic-import@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: aaca1ccda819be9b2b85af47ba08ddd2210ff2dbea222f26e4cd33f97ab020884bf81a66197e50872721e9daf36ceb5659502c82199884ea74d5d75ecda5c58b
+ checksum: 7a9fbc8d17148b7f11a1d1ca3990d2c2cd44bd08a45dcaf14f20a017721235b9044b20e6168b6940282bb1b48fb78e6afbdfb9dd9d82fde614e15baa7d579932
languageName: node
linkType: hard
-"@babel/plugin-transform-exponentiation-operator@npm:^7.26.3":
- version: 7.26.3
- resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.26.3"
+"@babel/plugin-transform-explicit-resource-management@npm:^7.28.0":
+ version: 7.28.0
+ resolution: "@babel/plugin-transform-explicit-resource-management@npm:7.28.0"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
+ "@babel/plugin-transform-destructuring": ^7.28.0
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: b369ffad07e02e259c43a09d309a5ca86cb9da6b43b1df6256463a810b172cedc4254742605eec0fc2418371c3f7430430f5abd36f21717281e79142308c13ba
+ checksum: a44140097ed4854883c426613f4e8763237cd0fdab1c780514f4315f6c148d6b528d7a57fe6fdec4dbce28a21b70393ef3507b72dfec2e30bfc8d7db1ff19474
languageName: node
linkType: hard
-"@babel/plugin-transform-export-namespace-from@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-export-namespace-from@npm:7.25.9"
+"@babel/plugin-transform-exponentiation-operator@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 4dfe8df86c5b1d085d591290874bb2d78a9063090d71567ed657a418010ad333c3f48af2c974b865f53bbb718987a065f89828d43279a7751db1a56c9229078d
+ checksum: 4ff4a0f30babc457a5ae8564deda209599627c2ce647284a0e8e66f65b44f6d968cf77761a4cc31b45b61693f0810479248c79e681681d8ccb39d0c52944c1fd
languageName: node
linkType: hard
-"@babel/plugin-transform-flow-strip-types@npm:^7.25.2, @babel/plugin-transform-flow-strip-types@npm:^7.25.9":
- version: 7.26.5
- resolution: "@babel/plugin-transform-flow-strip-types@npm:7.26.5"
+"@babel/plugin-transform-export-namespace-from@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-export-namespace-from@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.26.5
- "@babel/plugin-syntax-flow": ^7.26.0
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: a15ae76aea55f1801a5c8ebdfdd0e4616f256ca1eeb504b0781120242aae5a2174439a084bacd2b9e3e83d2a8463cf10c2a8c9f0f0504ded21144297c2b4a380
+ checksum: 85082923eca317094f08f4953d8ea2a6558b3117826c0b740676983902b7236df1f4213ad844cb38c2dae104753dbe8f1cc51f01567835d476d32f5f544a4385
languageName: node
linkType: hard
-"@babel/plugin-transform-for-of@npm:^7.24.7, @babel/plugin-transform-for-of@npm:^7.26.9":
- version: 7.26.9
- resolution: "@babel/plugin-transform-for-of@npm:7.26.9"
+"@babel/plugin-transform-flow-strip-types@npm:^7.25.2, @babel/plugin-transform-flow-strip-types@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-flow-strip-types@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.26.5
- "@babel/helper-skip-transparent-expression-wrappers": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
+ "@babel/plugin-syntax-flow": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 361323cfc1d9e9dc0bf0d68326b5e7f4da5b8a8be8931f6cacda749d39b88ee1b0f9b4d8b771a5a4d52bb881a90da97950c8a9e6fb47f2c9db11d91f6351768e
+ checksum: 0885028866fadefef35292d5a27f878d6a12b6f83778f8731481d4503b49c258507882a7de2aafda9b62d5f6350042f1a06355b998d5ed5e85d693bfcb77b939
languageName: node
linkType: hard
-"@babel/plugin-transform-function-name@npm:^7.25.1, @babel/plugin-transform-function-name@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-function-name@npm:7.25.9"
+"@babel/plugin-transform-for-of@npm:^7.24.7, @babel/plugin-transform-for-of@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-for-of@npm:7.27.1"
dependencies:
- "@babel/helper-compilation-targets": ^7.25.9
- "@babel/helper-plugin-utils": ^7.25.9
- "@babel/traverse": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
+ "@babel/helper-skip-transparent-expression-wrappers": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: a8d7c8d019a6eb57eab5ca1be3e3236f175557d55b1f3b11f8ad7999e3fbb1cf37905fd8cb3a349bffb4163a558e9f33b63f631597fdc97c858757deac1b2fd7
+ checksum: c9224e08de5d80b2c834383d4359aa9e519db434291711434dd996a4f86b7b664ad67b45d65459b7ec11fa582e3e11a3c769b8a8ca71594bdd4e2f0503f84126
languageName: node
linkType: hard
-"@babel/plugin-transform-json-strings@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-json-strings@npm:7.25.9"
+"@babel/plugin-transform-function-name@npm:^7.25.1, @babel/plugin-transform-function-name@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-function-name@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-compilation-targets": ^7.27.1
+ "@babel/helper-plugin-utils": ^7.27.1
+ "@babel/traverse": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: e2498d84761cfd05aaea53799933d55af309c9d6204e66b38778792d171e4d1311ad34f334259a3aa3407dd0446f6bd3e390a1fcb8ce2e42fe5aabed0e41bee1
+ checksum: 26a2a183c3c52a96495967420a64afc5a09f743a230272a131668abf23001e393afa6371e6f8e6c60f4182bea210ed31d1caf866452d91009c1daac345a52f23
languageName: node
linkType: hard
-"@babel/plugin-transform-literals@npm:^7.25.2, @babel/plugin-transform-literals@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-literals@npm:7.25.9"
+"@babel/plugin-transform-json-strings@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-json-strings@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 3cca75823a38aab599bc151b0fa4d816b5e1b62d6e49c156aa90436deb6e13649f5505973151a10418b64f3f9d1c3da53e38a186402e0ed7ad98e482e70c0c14
+ checksum: 2c05a02f63b49f47069271b3405a66c3c8038de5b995b0700b1bd9a5e2bb3e67abd01e4604629302a521f4d8122a4233944aefa16559fd4373d256cc5d3da57f
languageName: node
linkType: hard
-"@babel/plugin-transform-logical-assignment-operators@npm:^7.24.7, @babel/plugin-transform-logical-assignment-operators@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-logical-assignment-operators@npm:7.25.9"
+"@babel/plugin-transform-literals@npm:^7.25.2, @babel/plugin-transform-literals@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-literals@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 8c6febb4ac53852314d28b5e2c23d5dbbff7bf1e57d61f9672e0d97531ef7778b3f0ad698dcf1179f5486e626c77127508916a65eb846a89e98a92f70ed3537b
+ checksum: 0a76d12ab19f32dd139964aea7da48cecdb7de0b75e207e576f0f700121fe92367d788f328bf4fb44b8261a0f605c97b44e62ae61cddbb67b14e94c88b411f95
languageName: node
linkType: hard
-"@babel/plugin-transform-member-expression-literals@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-member-expression-literals@npm:7.25.9"
+"@babel/plugin-transform-logical-assignment-operators@npm:^7.24.7, @babel/plugin-transform-logical-assignment-operators@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-logical-assignment-operators@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: db92041ae87b8f59f98b50359e0bb172480f6ba22e5e76b13bdfe07122cbf0daa9cd8ad2e78dcb47939938fed88ad57ab5989346f64b3a16953fc73dea3a9b1f
+ checksum: 2757955d81d65cc4701c17b83720745f6858f7a1d1d58117e379c204f47adbeb066b778596b6168bdbf4a22c229aab595d79a9abc261d0c6bfd62d4419466e73
languageName: node
linkType: hard
-"@babel/plugin-transform-modules-amd@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-modules-amd@npm:7.25.9"
+"@babel/plugin-transform-member-expression-literals@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-member-expression-literals@npm:7.27.1"
dependencies:
- "@babel/helper-module-transforms": ^7.25.9
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: baad1f6fd0e0d38e9a9c1086a06abdc014c4c653fd452337cadfe23fb5bd8bf4368d1bc433a5ac8e6421bc0732ebb7c044cf3fb39c1b7ebe967d66e26c4e5cec
+ checksum: 804121430a6dcd431e6ffe99c6d1fbbc44b43478113b79c677629e7f877b4f78a06b69c6bfb2747fd84ee91879fe2eb32e4620b53124603086cf5b727593ebe8
languageName: node
linkType: hard
-"@babel/plugin-transform-modules-commonjs@npm:^7.13.8, @babel/plugin-transform-modules-commonjs@npm:^7.24.7, @babel/plugin-transform-modules-commonjs@npm:^7.24.8, @babel/plugin-transform-modules-commonjs@npm:^7.25.9, @babel/plugin-transform-modules-commonjs@npm:^7.26.3":
- version: 7.26.3
- resolution: "@babel/plugin-transform-modules-commonjs@npm:7.26.3"
+"@babel/plugin-transform-modules-amd@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-modules-amd@npm:7.27.1"
dependencies:
- "@babel/helper-module-transforms": ^7.26.0
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-module-transforms": ^7.27.1
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 0ac9aa4e5fe9fe34b58ee174881631e5e1c89eee5b1ebfd1147934686be92fc5fbfdc11119f0b607b3743d36a1cbcb7c36f18e0dd4424d6d7b749b1b9a18808a
+ checksum: 8bb36d448e438d5d30f4faf19120e8c18aa87730269e65d805bf6032824d175ed738057cc392c2c8a650028f1ae0f346cad8d6b723f31a037b586e2092a7be18
languageName: node
linkType: hard
-"@babel/plugin-transform-modules-systemjs@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-modules-systemjs@npm:7.25.9"
+"@babel/plugin-transform-modules-commonjs@npm:^7.13.8, @babel/plugin-transform-modules-commonjs@npm:^7.24.8, @babel/plugin-transform-modules-commonjs@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-modules-commonjs@npm:7.27.1"
dependencies:
- "@babel/helper-module-transforms": ^7.25.9
- "@babel/helper-plugin-utils": ^7.25.9
- "@babel/helper-validator-identifier": ^7.25.9
- "@babel/traverse": ^7.25.9
+ "@babel/helper-module-transforms": ^7.27.1
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: bf446202f372ba92dc0db32b24b56225b6e3ad3b227e31074de8b86fdec01c273ae2536873e38dbe3ceb1cd0894209343adeaa37df208e3fa88c0c7dffec7924
+ checksum: bc45c1beff9b145c982bd6a614af338893d38bce18a9df7d658c9084e0d8114b286dcd0e015132ae7b15dd966153cb13321e4800df9766d0ddd892d22bf09d2a
languageName: node
linkType: hard
-"@babel/plugin-transform-modules-umd@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-modules-umd@npm:7.25.9"
+"@babel/plugin-transform-modules-systemjs@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-modules-systemjs@npm:7.27.1"
dependencies:
- "@babel/helper-module-transforms": ^7.25.9
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-module-transforms": ^7.27.1
+ "@babel/helper-plugin-utils": ^7.27.1
+ "@babel/helper-validator-identifier": ^7.27.1
+ "@babel/traverse": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 946db66be5f04ab9ee56c424b00257276ec094aa2f148508927e6085239f76b00304fa1e33026d29eccdbe312efea15ca3d92e74a12689d7f0cdd9a7ba1a6c54
+ checksum: 7c17a8973676c18525d87f277944616596f1b154cc2b9263bfd78ecdbf5f4288ec46c7f58017321ca3e3d6dfeb96875467b95311a39719b475d42a157525d87f
languageName: node
linkType: hard
-"@babel/plugin-transform-named-capturing-groups-regex@npm:^7.24.7, @babel/plugin-transform-named-capturing-groups-regex@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-named-capturing-groups-regex@npm:7.25.9"
+"@babel/plugin-transform-modules-umd@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-modules-umd@npm:7.27.1"
dependencies:
- "@babel/helper-create-regexp-features-plugin": ^7.25.9
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-module-transforms": ^7.27.1
+ "@babel/helper-plugin-utils": ^7.27.1
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: b007dd89231f2eeccf1c71a85629bcb692573303977a4b1c5f19a835ea6b5142c18ef07849bc6d752b874a11bc0ddf3c67468b77c8ee8310290b688a4f01ef31
+ languageName: node
+ linkType: hard
+
+"@babel/plugin-transform-named-capturing-groups-regex@npm:^7.24.7, @babel/plugin-transform-named-capturing-groups-regex@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-named-capturing-groups-regex@npm:7.27.1"
+ dependencies:
+ "@babel/helper-create-regexp-features-plugin": ^7.27.1
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0
- checksum: 434346ba05cf74e3f4704b3bdd439287b95cd2a8676afcdc607810b8c38b6f4798cd69c1419726b2e4c7204e62e4a04d31b0360e91ca57a930521c9211e07789
+ checksum: a711c92d9753df26cefc1792481e5cbff4fe4f32b383d76b25e36fa865d8023b1b9aa6338cf18f5c0e864c71a7fbe8115e840872ccd61a914d9953849c68de7d
languageName: node
linkType: hard
-"@babel/plugin-transform-new-target@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-new-target@npm:7.25.9"
+"@babel/plugin-transform-new-target@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-new-target@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: f8113539919aafce52f07b2bd182c771a476fe1d5d96d813460b33a16f173f038929369c595572cadc1f7bd8cb816ce89439d056e007770ddd7b7a0878e7895f
+ checksum: 32c8078d843bda001244509442d68fd3af088d7348ba883f45c262b2c817a27ffc553b0d78e7f7a763271b2ece7fac56151baad7a91fb21f5bb1d2f38e5acad7
languageName: node
linkType: hard
-"@babel/plugin-transform-nullish-coalescing-operator@npm:^7.24.7, @babel/plugin-transform-nullish-coalescing-operator@npm:^7.26.6":
- version: 7.26.6
- resolution: "@babel/plugin-transform-nullish-coalescing-operator@npm:7.26.6"
+"@babel/plugin-transform-nullish-coalescing-operator@npm:^7.24.7, @babel/plugin-transform-nullish-coalescing-operator@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-nullish-coalescing-operator@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.26.5
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 752837d532b85c41f6bb868e83809605f513bc9a3b8e88ac3d43757c9bf839af4f246874c1c6d6902bb2844d355efccae602c3856098911f8abdd603672f8379
+ checksum: 1c6b3730748782d2178cc30f5cc37be7d7666148260f3f2dfc43999908bdd319bdfebaaf19cf04ac1f9dee0f7081093d3fa730cda5ae1b34bcd73ce406a78be7
languageName: node
linkType: hard
-"@babel/plugin-transform-numeric-separator@npm:^7.24.7, @babel/plugin-transform-numeric-separator@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-numeric-separator@npm:7.25.9"
+"@babel/plugin-transform-numeric-separator@npm:^7.24.7, @babel/plugin-transform-numeric-separator@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-numeric-separator@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 0528ef041ed88e8c3f51624ee87b8182a7f246fe4013f0572788e0727d20795b558f2b82e3989b5dd416cbd339500f0d88857de41b6d3b6fdacb1d5344bcc5b1
+ checksum: 049b958911de86d32408cd78017940a207e49c054ae9534ab53a32a57122cc592c0aae3c166d6f29bd1a7d75cc779d71883582dd76cb28b2fbb493e842d8ffca
languageName: node
linkType: hard
-"@babel/plugin-transform-object-rest-spread@npm:^7.24.7, @babel/plugin-transform-object-rest-spread@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-object-rest-spread@npm:7.25.9"
+"@babel/plugin-transform-object-rest-spread@npm:^7.24.7, @babel/plugin-transform-object-rest-spread@npm:^7.28.0":
+ version: 7.28.0
+ resolution: "@babel/plugin-transform-object-rest-spread@npm:7.28.0"
dependencies:
- "@babel/helper-compilation-targets": ^7.25.9
- "@babel/helper-plugin-utils": ^7.25.9
- "@babel/plugin-transform-parameters": ^7.25.9
+ "@babel/helper-compilation-targets": ^7.27.2
+ "@babel/helper-plugin-utils": ^7.27.1
+ "@babel/plugin-transform-destructuring": ^7.28.0
+ "@babel/plugin-transform-parameters": ^7.27.7
+ "@babel/traverse": ^7.28.0
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: a8ff73e1c46a03056b3a2236bafd6b3a4b83da93afe7ee24a50d0a8088150bf85bc5e5977daa04e66ff5fb7613d02d63ad49b91ebb64cf3f3022598d722e3a7a
+ checksum: 7c32c988b4b040d0091d0210b6b946249571858b2f33f3a5105f41c28ee0b8440a9dfb2aa46f3ae0d3014f86ddf16aee9a0cbf4229daf8e013235352b8f31fc9
languageName: node
linkType: hard
-"@babel/plugin-transform-object-super@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-object-super@npm:7.25.9"
+"@babel/plugin-transform-object-super@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-object-super@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
- "@babel/helper-replace-supers": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
+ "@babel/helper-replace-supers": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 1817b5d8b80e451ae1ad9080cca884f4f16df75880a158947df76a2ed8ab404d567a7dce71dd8051ef95f90fbe3513154086a32aba55cc76027f6cbabfbd7f98
+ checksum: 46b819cb9a6cd3cfefe42d07875fee414f18d5e66040366ae856116db560ad4e16f3899a0a7fddd6773e0d1458444f94b208b67c0e3b6977a27ea17a5c13dbf6
languageName: node
linkType: hard
-"@babel/plugin-transform-optional-catch-binding@npm:^7.24.7, @babel/plugin-transform-optional-catch-binding@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-optional-catch-binding@npm:7.25.9"
+"@babel/plugin-transform-optional-catch-binding@npm:^7.24.7, @babel/plugin-transform-optional-catch-binding@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-optional-catch-binding@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: b46a8d1e91829f3db5c252583eb00d05a779b4660abeea5500fda0f8ffa3584fd18299443c22f7fddf0ed9dfdb73c782c43b445dc468d4f89803f2356963b406
+ checksum: f4356b04cf21a98480f9788ea50f1f13ee88e89bb6393ba4b84d1f39a4a84c7928c9a4328e8f4c5b6deb218da68a8fd17bf4f46faec7653ddc20ffaaa5ba49f4
languageName: node
linkType: hard
-"@babel/plugin-transform-optional-chaining@npm:^7.24.7, @babel/plugin-transform-optional-chaining@npm:^7.24.8, @babel/plugin-transform-optional-chaining@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-optional-chaining@npm:7.25.9"
+"@babel/plugin-transform-optional-chaining@npm:^7.24.8, @babel/plugin-transform-optional-chaining@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-optional-chaining@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
- "@babel/helper-skip-transparent-expression-wrappers": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
+ "@babel/helper-skip-transparent-expression-wrappers": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: f1642a7094456067e82b176e1e9fd426fda7ed9df54cb6d10109fc512b622bf4b3c83acc5875125732b8622565107fdbe2d60fe3ec8685e1d1c22c38c1b57782
+ checksum: c4428d31f182d724db6f10575669aad3dbccceb0dea26aa9071fa89f11b3456278da3097fcc78937639a13c105a82cd452dc0218ce51abdbcf7626a013b928a5
languageName: node
linkType: hard
-"@babel/plugin-transform-parameters@npm:^7.24.7, @babel/plugin-transform-parameters@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-parameters@npm:7.25.9"
+"@babel/plugin-transform-parameters@npm:^7.24.7, @babel/plugin-transform-parameters@npm:^7.27.7":
+ version: 7.27.7
+ resolution: "@babel/plugin-transform-parameters@npm:7.27.7"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: d7ba2a7d05edbc85aed741289b0ff3d6289a1c25d82ac4be32c565f88a66391f46631aad59ceeed40824037f7eeaa7a0de1998db491f50e65a565cd964f78786
+ checksum: d51f195e1d6ac5d9fce583e9a70a5bfe403e62386e5eb06db9fbc6533f895a98ff7e7c3dcaa311a8e6fa7a9794466e81cdabcba6af9f59d787fb767bfe7868b4
languageName: node
linkType: hard
-"@babel/plugin-transform-private-methods@npm:^7.24.7, @babel/plugin-transform-private-methods@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-private-methods@npm:7.25.9"
+"@babel/plugin-transform-private-methods@npm:^7.24.7, @babel/plugin-transform-private-methods@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-private-methods@npm:7.27.1"
dependencies:
- "@babel/helper-create-class-features-plugin": ^7.25.9
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-create-class-features-plugin": ^7.27.1
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 6e3671b352c267847c53a170a1937210fa8151764d70d25005e711ef9b21969aaf422acc14f9f7fb86bc0e4ec43e7aefcc0ad9196ae02d262ec10f509f126a58
+ checksum: c76f8f6056946466116e67eb9d8014a2d748ade2062636ab82045c1dac9c233aff10e597777bc5af6f26428beb845ceb41b95007abef7d0484da95789da56662
languageName: node
linkType: hard
-"@babel/plugin-transform-private-property-in-object@npm:^7.24.7, @babel/plugin-transform-private-property-in-object@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-private-property-in-object@npm:7.25.9"
+"@babel/plugin-transform-private-property-in-object@npm:^7.24.7, @babel/plugin-transform-private-property-in-object@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-private-property-in-object@npm:7.27.1"
dependencies:
- "@babel/helper-annotate-as-pure": ^7.25.9
- "@babel/helper-create-class-features-plugin": ^7.25.9
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-annotate-as-pure": ^7.27.1
+ "@babel/helper-create-class-features-plugin": ^7.27.1
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 9ce3e983fea9b9ba677c192aa065c0b42ebdc7774be4c02135df09029ad92a55c35b004650c75952cb64d650872ed18f13ab64422c6fc891d06333762caa8a0a
+ checksum: af539af1bd423aa46b9da83d649be716494ca80783841f47094b6741fa24e11141446027fd152ddff791dede9d4a76d0d5eb467402a2e584d7f5ea90e2673c7e
languageName: node
linkType: hard
-"@babel/plugin-transform-property-literals@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-property-literals@npm:7.25.9"
+"@babel/plugin-transform-property-literals@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-property-literals@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 436046ab07d54a9b44a384eeffec701d4e959a37a7547dda72e069e751ca7ff753d1782a8339e354b97c78a868b49ea97bf41bf5a44c6d7a3c0a05ad40eeb49c
+ checksum: 7caec27d5ed8870895c9faf4f71def72745d69da0d8e77903146a4e135fd7bed5778f5f9cebb36c5fba86338e6194dd67a08c033fc84b4299b7eceab6d9630cb
languageName: node
linkType: hard
-"@babel/plugin-transform-react-display-name@npm:^7.24.7, @babel/plugin-transform-react-display-name@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-react-display-name@npm:7.25.9"
+"@babel/plugin-transform-react-display-name@npm:^7.24.7, @babel/plugin-transform-react-display-name@npm:^7.27.1":
+ version: 7.28.0
+ resolution: "@babel/plugin-transform-react-display-name@npm:7.28.0"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: cd7020494e6f31c287834e8929e6a718d5b0ace21232fa30feb48622c2312045504c34b347dcff9e88145c349882b296a7d6b6cc3d3447d8c85502f16471747c
+ checksum: 268b1a9192974439d17949e170b01cac2a2aa003c844e2fe3b8361146f42f66487178cffdfa8ce862aa9e6c814bc37f879a70300cb3f067815d15fa6aad04e6d
languageName: node
linkType: hard
-"@babel/plugin-transform-react-jsx-development@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-react-jsx-development@npm:7.25.9"
+"@babel/plugin-transform-react-jsx-development@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-react-jsx-development@npm:7.27.1"
dependencies:
- "@babel/plugin-transform-react-jsx": ^7.25.9
+ "@babel/plugin-transform-react-jsx": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 537d38369537f1eb56041c4b770bc0733fde1801a7f5ffef40a1217ea448f33ee2fa8e6098a58a82fd00e432c1b9426a66849496da419020c9eca3b1b1a23779
+ checksum: b88865d5b8c018992f2332da939faa15c4d4a864c9435a5937beaff3fe43781432cc42e0a5d5631098e0bd4066fc33f5fa72203b388b074c3545fe7aaa21e474
languageName: node
linkType: hard
"@babel/plugin-transform-react-jsx-self@npm:^7.24.7":
- version: 7.25.9
- resolution: "@babel/plugin-transform-react-jsx-self@npm:7.25.9"
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-react-jsx-self@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 41c833cd7f91b1432710f91b1325706e57979b2e8da44e83d86312c78bbe96cd9ef778b4e79e4e17ab25fa32c72b909f2be7f28e876779ede28e27506c41f4ae
+ checksum: 72cbae66a58c6c36f7e12e8ed79f292192d858dd4bb00e9e89d8b695e4c5cb6ef48eec84bffff421a5db93fd10412c581f1cccdb00264065df76f121995bdb68
languageName: node
linkType: hard
"@babel/plugin-transform-react-jsx-source@npm:^7.24.7":
- version: 7.25.9
- resolution: "@babel/plugin-transform-react-jsx-source@npm:7.25.9"
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-react-jsx-source@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: a3e0e5672e344e9d01fb20b504fe29a84918eaa70cec512c4d4b1b035f72803261257343d8e93673365b72c371f35cf34bb0d129720bf178a4c87812c8b9c662
+ checksum: e2843362adb53692be5ee9fa07a386d2d8883daad2063a3575b3c373fc14cdf4ea7978c67a183cb631b4c9c8d77b2f48c24c088f8e65cc3600cb8e97d72a7161
languageName: node
linkType: hard
-"@babel/plugin-transform-react-jsx@npm:^7.25.2, @babel/plugin-transform-react-jsx@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-react-jsx@npm:7.25.9"
+"@babel/plugin-transform-react-jsx@npm:^7.25.2, @babel/plugin-transform-react-jsx@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-react-jsx@npm:7.27.1"
dependencies:
- "@babel/helper-annotate-as-pure": ^7.25.9
- "@babel/helper-module-imports": ^7.25.9
- "@babel/helper-plugin-utils": ^7.25.9
- "@babel/plugin-syntax-jsx": ^7.25.9
- "@babel/types": ^7.25.9
+ "@babel/helper-annotate-as-pure": ^7.27.1
+ "@babel/helper-module-imports": ^7.27.1
+ "@babel/helper-plugin-utils": ^7.27.1
+ "@babel/plugin-syntax-jsx": ^7.27.1
+ "@babel/types": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 5c6523c3963e3c6cf4c3cc2768a3766318af05b8f6c17aff52a4010e2c170e87b2fcdc94e9c9223ae12158664df4852ce81b9c8d042c15ea8fd83d6375f9f30f
+ checksum: 960d36e5d11ba68e4fbf1e2b935c153cb6ea7b0004f838aaee8baf7de30462b8f0562743a39ce3c370cc70b8f79d3c549104a415a615b2b0055b71fd025df0f3
languageName: node
linkType: hard
-"@babel/plugin-transform-react-pure-annotations@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-react-pure-annotations@npm:7.25.9"
+"@babel/plugin-transform-react-pure-annotations@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-react-pure-annotations@npm:7.27.1"
dependencies:
- "@babel/helper-annotate-as-pure": ^7.25.9
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-annotate-as-pure": ^7.27.1
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 9995c0fc7c25d3aaaa0ce84233de02eab2564ea111d0813ec5baa538eb21520402879cc787ad1ad4c2061b99cebc3beb09910e64c9592e8ccb42ae62d9e4fd9a
+ checksum: a6f591c5e85a1ab0685d4a25afe591fe8d11dc0b73c677cf9560ff8d540d036a1cce9efcb729fc9092def4d854dc304ffdc063a89a9247900b69c516bf971a4c
languageName: node
linkType: hard
-"@babel/plugin-transform-regenerator@npm:^7.24.7, @babel/plugin-transform-regenerator@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-regenerator@npm:7.25.9"
+"@babel/plugin-transform-regenerator@npm:^7.24.7, @babel/plugin-transform-regenerator@npm:^7.28.0":
+ version: 7.28.0
+ resolution: "@babel/plugin-transform-regenerator@npm:7.28.0"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
- regenerator-transform: ^0.15.2
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 1c09e8087b476c5967282c9790fb8710e065eda77c60f6cb5da541edd59ded9d003d96f8ef640928faab4a0b35bf997673499a194973da4f0c97f0935807a482
+ checksum: 40c76d47333caee8e30dbed9c54c56366f9caa2b5946070ea87317843ccd3ffb0b4008b64b667b08feca917e07f235af2af1ab9de097eaea9af60bb01a8cd5dd
languageName: node
linkType: hard
-"@babel/plugin-transform-regexp-modifiers@npm:^7.26.0":
- version: 7.26.0
- resolution: "@babel/plugin-transform-regexp-modifiers@npm:7.26.0"
+"@babel/plugin-transform-regexp-modifiers@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-regexp-modifiers@npm:7.27.1"
dependencies:
- "@babel/helper-create-regexp-features-plugin": ^7.25.9
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-create-regexp-features-plugin": ^7.27.1
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0
- checksum: 726deca486bbd4b176f8a966eb0f4aabc19d9def3b8dabb8b3a656778eca0df1fda3f3c92b213aa5a184232fdafd5b7bd73b4e24ca4345c498ef6baff2bda4e1
+ checksum: f6cb385fe0e798bff7e9b20cf5912bf40e180895ff3610b1ccdce260f3c20daaebb3a99dc087c8168a99151cd3e16b94f4689fd5a4b01cf1834b45c133e620b2
languageName: node
linkType: hard
-"@babel/plugin-transform-reserved-words@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-reserved-words@npm:7.25.9"
+"@babel/plugin-transform-reserved-words@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-reserved-words@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 8beda04481b25767acbd1f6b9ef7b3a9c12fbd9dcb24df45a6ad120e1dc4b247c073db60ac742f9093657d6d8c050501fc0606af042f81a3bb6a3ff862cddc47
+ checksum: dea0b66742d2863b369c06c053e11e15ba785892ea19cccf7aef3c1bdaa38b6ab082e19984c5ea7810d275d9445c5400fcc385ad71ce707ed9256fadb102af3b
languageName: node
linkType: hard
"@babel/plugin-transform-runtime@npm:^7.24.7":
- version: 7.26.9
- resolution: "@babel/plugin-transform-runtime@npm:7.26.9"
- dependencies:
- "@babel/helper-module-imports": ^7.25.9
- "@babel/helper-plugin-utils": ^7.26.5
- babel-plugin-polyfill-corejs2: ^0.4.10
- babel-plugin-polyfill-corejs3: ^0.10.6
- babel-plugin-polyfill-regenerator: ^0.6.1
+ version: 7.28.0
+ resolution: "@babel/plugin-transform-runtime@npm:7.28.0"
+ dependencies:
+ "@babel/helper-module-imports": ^7.27.1
+ "@babel/helper-plugin-utils": ^7.27.1
+ babel-plugin-polyfill-corejs2: ^0.4.14
+ babel-plugin-polyfill-corejs3: ^0.13.0
+ babel-plugin-polyfill-regenerator: ^0.6.5
semver: ^6.3.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 2d32d4c8b2f8b048114bb2b04f65937a35ca5a2dbf3a76a6e53eef78f383262460e8b23bd113b97f30a4ce55e7ef5fafd421f81de602ad7a268fdc058122a184
+ checksum: 8d324eb312636efe706917a5d44f867538654453c9bf4efd34b0dbd712c6d80e604092b98acbfcb318f42bec707b590c28ae95c659ff359a64a4ccb7621dc400
languageName: node
linkType: hard
-"@babel/plugin-transform-shorthand-properties@npm:^7.24.7, @babel/plugin-transform-shorthand-properties@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-shorthand-properties@npm:7.25.9"
+"@babel/plugin-transform-shorthand-properties@npm:^7.24.7, @babel/plugin-transform-shorthand-properties@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-shorthand-properties@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: f774995d58d4e3a992b732cf3a9b8823552d471040e280264dd15e0735433d51b468fef04d75853d061309389c66bda10ce1b298297ce83999220eb0ad62741d
+ checksum: fbba6e2aef0b69681acb68202aa249c0598e470cc0853d7ff5bd0171fd6a7ec31d77cfabcce9df6360fc8349eded7e4a65218c32551bd3fc0caaa1ac899ac6d4
languageName: node
linkType: hard
-"@babel/plugin-transform-spread@npm:^7.24.7, @babel/plugin-transform-spread@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-spread@npm:7.25.9"
+"@babel/plugin-transform-spread@npm:^7.24.7, @babel/plugin-transform-spread@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-spread@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
- "@babel/helper-skip-transparent-expression-wrappers": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
+ "@babel/helper-skip-transparent-expression-wrappers": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 2403a5d49171b7714d5e5ecb1f598c61575a4dbe5e33e5a5f08c0ea990b75e693ca1ea983b6a96b2e3e5e7da48c8238333f525e47498c53b577c5d094d964c06
+ checksum: 58b08085ee9c29955ac3b68d61c1a79728d44d19a69cb5eb669794aeaf54c57c6647af7b979c1297e81ede3d08b3ddcb1936ef39a533f28ff3e399a9be54dab1
languageName: node
linkType: hard
-"@babel/plugin-transform-sticky-regex@npm:^7.24.7, @babel/plugin-transform-sticky-regex@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-sticky-regex@npm:7.25.9"
+"@babel/plugin-transform-sticky-regex@npm:^7.24.7, @babel/plugin-transform-sticky-regex@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-sticky-regex@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 7454b00844dbe924030dd15e2b3615b36e196500c4c47e98dabc6b37a054c5b1038ecd437e910aabf0e43bf56b973cb148d3437d50f6e2332d8309568e3e979b
+ checksum: e1414a502efba92c7974681767e365a8cda6c5e9e5f33472a9eaa0ce2e75cea0a9bef881ff8dda37c7810ad902f98d3c00ead92a3ac3b73a79d011df85b5a189
languageName: node
linkType: hard
"@babel/plugin-transform-strict-mode@npm:^7.24.7":
- version: 7.25.9
- resolution: "@babel/plugin-transform-strict-mode@npm:7.25.9"
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-strict-mode@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 87b4a937b7c6f9cc4ed557ce1e2037898ec9c2af18f5523a5200f714cfd4101b0e278c732418b59a779e912cdf5574e35db01714d5b4e6fff2e31584501e4364
+ checksum: 0c5bbc9f913b2cea1a1f5697bac320f11575016eed2eee16d2430af5ddceff5382ad3f1b70bf7158ff458db38568a903fab03b308150753453354785365667ec
languageName: node
linkType: hard
-"@babel/plugin-transform-template-literals@npm:^7.26.8":
- version: 7.26.8
- resolution: "@babel/plugin-transform-template-literals@npm:7.26.8"
+"@babel/plugin-transform-template-literals@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-template-literals@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.26.5
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 65874c8844ce906507cd5b9c78950d6173f8339b6416a2a9e763021db5a7045315a6f0e58976ec4af5e960c003ef322576c105130a644addb8f94d1a0821a972
+ checksum: 93aad782503b691faef7c0893372d5243df3219b07f1f22cfc32c104af6a2e7acd6102c128439eab15336d048f1b214ca134b87b0630d8cd568bf447f78b25ce
languageName: node
linkType: hard
-"@babel/plugin-transform-typeof-symbol@npm:^7.26.7":
- version: 7.26.7
- resolution: "@babel/plugin-transform-typeof-symbol@npm:7.26.7"
+"@babel/plugin-transform-typeof-symbol@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-typeof-symbol@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.26.5
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 1fcc48bde1426527d9905d561884e1ecaf3c03eb5abb507d33f71591f8da0c384e92097feaf91cc30692e04fb7f5e6ff1cb172acc5de7675d93fdb42db850d6a
+ checksum: ed8048c8de72c60969a64cf2273cc6d9275d8fa8db9bd25a1268273a00fb9cbd79931140311411bda1443aa56cb3961fb911d1795abacde7f0482f1d8fdf0356
languageName: node
linkType: hard
-"@babel/plugin-transform-typescript@npm:^7.25.2, @babel/plugin-transform-typescript@npm:^7.25.9":
- version: 7.26.8
- resolution: "@babel/plugin-transform-typescript@npm:7.26.8"
+"@babel/plugin-transform-typescript@npm:^7.25.2, @babel/plugin-transform-typescript@npm:^7.27.1":
+ version: 7.28.0
+ resolution: "@babel/plugin-transform-typescript@npm:7.28.0"
dependencies:
- "@babel/helper-annotate-as-pure": ^7.25.9
- "@babel/helper-create-class-features-plugin": ^7.25.9
- "@babel/helper-plugin-utils": ^7.26.5
- "@babel/helper-skip-transparent-expression-wrappers": ^7.25.9
- "@babel/plugin-syntax-typescript": ^7.25.9
+ "@babel/helper-annotate-as-pure": ^7.27.3
+ "@babel/helper-create-class-features-plugin": ^7.27.1
+ "@babel/helper-plugin-utils": ^7.27.1
+ "@babel/helper-skip-transparent-expression-wrappers": ^7.27.1
+ "@babel/plugin-syntax-typescript": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 3d8866f2c5cb70d27bfb724bf205f073b59d04fe7e535c63439968579dc79b69055681088b522dab49695bdf1365b00e22aee11e3f3253381e554d89a8aa9dd6
+ checksum: 14c1024bcd57fcd469d90cf0c15c3cd4e771e2eb2cd9afee3aa79b59c8ed103654f7c5c71cdb3bfe31c1d0cb08bfad8c80f5aa1d24b4b454bd21301d5925533d
languageName: node
linkType: hard
-"@babel/plugin-transform-unicode-escapes@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-unicode-escapes@npm:7.25.9"
+"@babel/plugin-transform-unicode-escapes@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-unicode-escapes@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: be067e07488d804e3e82d7771f23666539d2ae5af03bf6eb8480406adf3dabd776e60c1fd5c6078dc5714b73cd80bbaca70e71d4f5d154c5c57200581602ca2f
+ checksum: d817154bc10758ddd85b716e0bc1af1a1091e088400289ab6b78a1a4d609907ce3d2f1fd51a6fd0e0c8ecbb5f8e3aab4957e0747776d132d2379e85c3ef0520a
languageName: node
linkType: hard
-"@babel/plugin-transform-unicode-property-regex@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-unicode-property-regex@npm:7.25.9"
+"@babel/plugin-transform-unicode-property-regex@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-unicode-property-regex@npm:7.27.1"
dependencies:
- "@babel/helper-create-regexp-features-plugin": ^7.25.9
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-create-regexp-features-plugin": ^7.27.1
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 201f6f46c1beb399e79aa208b94c5d54412047511795ce1e790edcd189cef73752e6a099fdfc01b3ad12205f139ae344143b62f21f44bbe02338a95e8506a911
+ checksum: 5d99c89537d1ebaac3f526c04b162cf95a47d363d4829f78c6701a2c06ab78a48da66a94f853f85f44a3d72153410ba923e072bed4b7166fa097f503eb14131d
languageName: node
linkType: hard
-"@babel/plugin-transform-unicode-regex@npm:^7.24.7, @babel/plugin-transform-unicode-regex@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-unicode-regex@npm:7.25.9"
+"@babel/plugin-transform-unicode-regex@npm:^7.24.7, @babel/plugin-transform-unicode-regex@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-unicode-regex@npm:7.27.1"
dependencies:
- "@babel/helper-create-regexp-features-plugin": ^7.25.9
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-create-regexp-features-plugin": ^7.27.1
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: e8baae867526e179467c6ef5280d70390fa7388f8763a19a27c21302dd59b121032568be080749514b097097ceb9af716bf4b90638f1b3cf689aa837ba20150f
+ checksum: a34d89a2b75fb78e66d97c3dc90d4877f7e31f43316b52176f95a5dee20e9bb56ecf158eafc42a001676ddf7b393d9e67650bad6b32f5405780f25fb83cd68e3
languageName: node
linkType: hard
-"@babel/plugin-transform-unicode-sets-regex@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-unicode-sets-regex@npm:7.25.9"
+"@babel/plugin-transform-unicode-sets-regex@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-unicode-sets-regex@npm:7.27.1"
dependencies:
- "@babel/helper-create-regexp-features-plugin": ^7.25.9
- "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-create-regexp-features-plugin": ^7.27.1
+ "@babel/helper-plugin-utils": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0
- checksum: 4445ef20de687cb4dcc95169742a8d9013d680aa5eee9186d8e25875bbfa7ee5e2de26a91177ccf70b1db518e36886abcd44750d28db5d7a9539f0efa6839f4b
+ checksum: 295126074c7388ab05c82ef3ed0907a1ee4666bbdd763477ead9aba6eb2c74bdf65669416861ac93d337a4a27640963bb214acadc2697275ce95aab14868d57f
languageName: node
linkType: hard
-"@babel/preset-env@npm:^7.18.2, @babel/preset-env@npm:^7.25.2, @babel/preset-env@npm:^7.25.3":
- version: 7.26.9
- resolution: "@babel/preset-env@npm:7.26.9"
+"@babel/preset-env@npm:^7.25.2, @babel/preset-env@npm:^7.25.3":
+ version: 7.28.0
+ resolution: "@babel/preset-env@npm:7.28.0"
dependencies:
- "@babel/compat-data": ^7.26.8
- "@babel/helper-compilation-targets": ^7.26.5
- "@babel/helper-plugin-utils": ^7.26.5
- "@babel/helper-validator-option": ^7.25.9
- "@babel/plugin-bugfix-firefox-class-in-computed-class-key": ^7.25.9
- "@babel/plugin-bugfix-safari-class-field-initializer-scope": ^7.25.9
- "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": ^7.25.9
- "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": ^7.25.9
- "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": ^7.25.9
+ "@babel/compat-data": ^7.28.0
+ "@babel/helper-compilation-targets": ^7.27.2
+ "@babel/helper-plugin-utils": ^7.27.1
+ "@babel/helper-validator-option": ^7.27.1
+ "@babel/plugin-bugfix-firefox-class-in-computed-class-key": ^7.27.1
+ "@babel/plugin-bugfix-safari-class-field-initializer-scope": ^7.27.1
+ "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": ^7.27.1
+ "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": ^7.27.1
+ "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": ^7.27.1
"@babel/plugin-proposal-private-property-in-object": 7.21.0-placeholder-for-preset-env.2
- "@babel/plugin-syntax-import-assertions": ^7.26.0
- "@babel/plugin-syntax-import-attributes": ^7.26.0
+ "@babel/plugin-syntax-import-assertions": ^7.27.1
+ "@babel/plugin-syntax-import-attributes": ^7.27.1
"@babel/plugin-syntax-unicode-sets-regex": ^7.18.6
- "@babel/plugin-transform-arrow-functions": ^7.25.9
- "@babel/plugin-transform-async-generator-functions": ^7.26.8
- "@babel/plugin-transform-async-to-generator": ^7.25.9
- "@babel/plugin-transform-block-scoped-functions": ^7.26.5
- "@babel/plugin-transform-block-scoping": ^7.25.9
- "@babel/plugin-transform-class-properties": ^7.25.9
- "@babel/plugin-transform-class-static-block": ^7.26.0
- "@babel/plugin-transform-classes": ^7.25.9
- "@babel/plugin-transform-computed-properties": ^7.25.9
- "@babel/plugin-transform-destructuring": ^7.25.9
- "@babel/plugin-transform-dotall-regex": ^7.25.9
- "@babel/plugin-transform-duplicate-keys": ^7.25.9
- "@babel/plugin-transform-duplicate-named-capturing-groups-regex": ^7.25.9
- "@babel/plugin-transform-dynamic-import": ^7.25.9
- "@babel/plugin-transform-exponentiation-operator": ^7.26.3
- "@babel/plugin-transform-export-namespace-from": ^7.25.9
- "@babel/plugin-transform-for-of": ^7.26.9
- "@babel/plugin-transform-function-name": ^7.25.9
- "@babel/plugin-transform-json-strings": ^7.25.9
- "@babel/plugin-transform-literals": ^7.25.9
- "@babel/plugin-transform-logical-assignment-operators": ^7.25.9
- "@babel/plugin-transform-member-expression-literals": ^7.25.9
- "@babel/plugin-transform-modules-amd": ^7.25.9
- "@babel/plugin-transform-modules-commonjs": ^7.26.3
- "@babel/plugin-transform-modules-systemjs": ^7.25.9
- "@babel/plugin-transform-modules-umd": ^7.25.9
- "@babel/plugin-transform-named-capturing-groups-regex": ^7.25.9
- "@babel/plugin-transform-new-target": ^7.25.9
- "@babel/plugin-transform-nullish-coalescing-operator": ^7.26.6
- "@babel/plugin-transform-numeric-separator": ^7.25.9
- "@babel/plugin-transform-object-rest-spread": ^7.25.9
- "@babel/plugin-transform-object-super": ^7.25.9
- "@babel/plugin-transform-optional-catch-binding": ^7.25.9
- "@babel/plugin-transform-optional-chaining": ^7.25.9
- "@babel/plugin-transform-parameters": ^7.25.9
- "@babel/plugin-transform-private-methods": ^7.25.9
- "@babel/plugin-transform-private-property-in-object": ^7.25.9
- "@babel/plugin-transform-property-literals": ^7.25.9
- "@babel/plugin-transform-regenerator": ^7.25.9
- "@babel/plugin-transform-regexp-modifiers": ^7.26.0
- "@babel/plugin-transform-reserved-words": ^7.25.9
- "@babel/plugin-transform-shorthand-properties": ^7.25.9
- "@babel/plugin-transform-spread": ^7.25.9
- "@babel/plugin-transform-sticky-regex": ^7.25.9
- "@babel/plugin-transform-template-literals": ^7.26.8
- "@babel/plugin-transform-typeof-symbol": ^7.26.7
- "@babel/plugin-transform-unicode-escapes": ^7.25.9
- "@babel/plugin-transform-unicode-property-regex": ^7.25.9
- "@babel/plugin-transform-unicode-regex": ^7.25.9
- "@babel/plugin-transform-unicode-sets-regex": ^7.25.9
+ "@babel/plugin-transform-arrow-functions": ^7.27.1
+ "@babel/plugin-transform-async-generator-functions": ^7.28.0
+ "@babel/plugin-transform-async-to-generator": ^7.27.1
+ "@babel/plugin-transform-block-scoped-functions": ^7.27.1
+ "@babel/plugin-transform-block-scoping": ^7.28.0
+ "@babel/plugin-transform-class-properties": ^7.27.1
+ "@babel/plugin-transform-class-static-block": ^7.27.1
+ "@babel/plugin-transform-classes": ^7.28.0
+ "@babel/plugin-transform-computed-properties": ^7.27.1
+ "@babel/plugin-transform-destructuring": ^7.28.0
+ "@babel/plugin-transform-dotall-regex": ^7.27.1
+ "@babel/plugin-transform-duplicate-keys": ^7.27.1
+ "@babel/plugin-transform-duplicate-named-capturing-groups-regex": ^7.27.1
+ "@babel/plugin-transform-dynamic-import": ^7.27.1
+ "@babel/plugin-transform-explicit-resource-management": ^7.28.0
+ "@babel/plugin-transform-exponentiation-operator": ^7.27.1
+ "@babel/plugin-transform-export-namespace-from": ^7.27.1
+ "@babel/plugin-transform-for-of": ^7.27.1
+ "@babel/plugin-transform-function-name": ^7.27.1
+ "@babel/plugin-transform-json-strings": ^7.27.1
+ "@babel/plugin-transform-literals": ^7.27.1
+ "@babel/plugin-transform-logical-assignment-operators": ^7.27.1
+ "@babel/plugin-transform-member-expression-literals": ^7.27.1
+ "@babel/plugin-transform-modules-amd": ^7.27.1
+ "@babel/plugin-transform-modules-commonjs": ^7.27.1
+ "@babel/plugin-transform-modules-systemjs": ^7.27.1
+ "@babel/plugin-transform-modules-umd": ^7.27.1
+ "@babel/plugin-transform-named-capturing-groups-regex": ^7.27.1
+ "@babel/plugin-transform-new-target": ^7.27.1
+ "@babel/plugin-transform-nullish-coalescing-operator": ^7.27.1
+ "@babel/plugin-transform-numeric-separator": ^7.27.1
+ "@babel/plugin-transform-object-rest-spread": ^7.28.0
+ "@babel/plugin-transform-object-super": ^7.27.1
+ "@babel/plugin-transform-optional-catch-binding": ^7.27.1
+ "@babel/plugin-transform-optional-chaining": ^7.27.1
+ "@babel/plugin-transform-parameters": ^7.27.7
+ "@babel/plugin-transform-private-methods": ^7.27.1
+ "@babel/plugin-transform-private-property-in-object": ^7.27.1
+ "@babel/plugin-transform-property-literals": ^7.27.1
+ "@babel/plugin-transform-regenerator": ^7.28.0
+ "@babel/plugin-transform-regexp-modifiers": ^7.27.1
+ "@babel/plugin-transform-reserved-words": ^7.27.1
+ "@babel/plugin-transform-shorthand-properties": ^7.27.1
+ "@babel/plugin-transform-spread": ^7.27.1
+ "@babel/plugin-transform-sticky-regex": ^7.27.1
+ "@babel/plugin-transform-template-literals": ^7.27.1
+ "@babel/plugin-transform-typeof-symbol": ^7.27.1
+ "@babel/plugin-transform-unicode-escapes": ^7.27.1
+ "@babel/plugin-transform-unicode-property-regex": ^7.27.1
+ "@babel/plugin-transform-unicode-regex": ^7.27.1
+ "@babel/plugin-transform-unicode-sets-regex": ^7.27.1
"@babel/preset-modules": 0.1.6-no-external-plugins
- babel-plugin-polyfill-corejs2: ^0.4.10
- babel-plugin-polyfill-corejs3: ^0.11.0
- babel-plugin-polyfill-regenerator: ^0.6.1
- core-js-compat: ^3.40.0
+ babel-plugin-polyfill-corejs2: ^0.4.14
+ babel-plugin-polyfill-corejs3: ^0.13.0
+ babel-plugin-polyfill-regenerator: ^0.6.5
+ core-js-compat: ^3.43.0
semver: ^6.3.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 7a657f947d069b7a27b02258012ce3ceb9383a8c10c249d4a3565c486294c3fe63ed08128ca3d124444d17eb821cfbf64a91fe8160af2e39f70d5cd2232f079e
+ checksum: 90399ed6350ac413fb507dc5c9e29e98d10684c4b7c7c6ae7b204bb91a7a9cd3bf8f944167a931a73112c8c820d0d1f42d4c15d7c4a7cf19196bf11c19663513
languageName: node
linkType: hard
-"@babel/preset-flow@npm:^7.13.13, @babel/preset-flow@npm:^7.17.12, @babel/preset-flow@npm:^7.24.7":
- version: 7.25.9
- resolution: "@babel/preset-flow@npm:7.25.9"
+"@babel/preset-flow@npm:^7.13.13, @babel/preset-flow@npm:^7.24.7":
+ version: 7.27.1
+ resolution: "@babel/preset-flow@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
- "@babel/helper-validator-option": ^7.25.9
- "@babel/plugin-transform-flow-strip-types": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
+ "@babel/helper-validator-option": ^7.27.1
+ "@babel/plugin-transform-flow-strip-types": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: b1591ea63a7ace7e34bcefa6deba9e2814d7f082e3c074e2648efb68a1a49016ccefbea024156ba28bd3042a4e768e3eb8b5ecfe433978144fdaaadd36203ba2
+ checksum: f3f25b390debf72a6ff0170a2d5198aea344ba96f05eaca0bae2c7072119706fd46321604d89646bda1842527cfc6eab8828a983ec90149218d2120b9cd26596
languageName: node
linkType: hard
@@ -1521,40 +1486,40 @@ __metadata:
languageName: node
linkType: hard
-"@babel/preset-react@npm:^7.17.12, @babel/preset-react@npm:^7.24.7":
- version: 7.26.3
- resolution: "@babel/preset-react@npm:7.26.3"
+"@babel/preset-react@npm:^7.24.7":
+ version: 7.27.1
+ resolution: "@babel/preset-react@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
- "@babel/helper-validator-option": ^7.25.9
- "@babel/plugin-transform-react-display-name": ^7.25.9
- "@babel/plugin-transform-react-jsx": ^7.25.9
- "@babel/plugin-transform-react-jsx-development": ^7.25.9
- "@babel/plugin-transform-react-pure-annotations": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
+ "@babel/helper-validator-option": ^7.27.1
+ "@babel/plugin-transform-react-display-name": ^7.27.1
+ "@babel/plugin-transform-react-jsx": ^7.27.1
+ "@babel/plugin-transform-react-jsx-development": ^7.27.1
+ "@babel/plugin-transform-react-pure-annotations": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 9c76f145026715c8e4a1f6c44f208918e700227d8d8a8068f4ae10d87031d23eb8b483e508cd4452d65066f731b7a8169527e66e83ffe165595e8db7899dd859
+ checksum: 00bc146f9c742eed804c598d3f31b7d889c1baf8c768989b7f84a93ca527dd1518d3b86781e89ca45cae6dbee136510d3a121658e01416c5578aecf751517bb5
languageName: node
linkType: hard
-"@babel/preset-typescript@npm:^7.13.0, @babel/preset-typescript@npm:^7.17.12, @babel/preset-typescript@npm:^7.24.7":
- version: 7.26.0
- resolution: "@babel/preset-typescript@npm:7.26.0"
+"@babel/preset-typescript@npm:^7.13.0, @babel/preset-typescript@npm:^7.24.7":
+ version: 7.27.1
+ resolution: "@babel/preset-typescript@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
- "@babel/helper-validator-option": ^7.25.9
- "@babel/plugin-syntax-jsx": ^7.25.9
- "@babel/plugin-transform-modules-commonjs": ^7.25.9
- "@babel/plugin-transform-typescript": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.27.1
+ "@babel/helper-validator-option": ^7.27.1
+ "@babel/plugin-syntax-jsx": ^7.27.1
+ "@babel/plugin-transform-modules-commonjs": ^7.27.1
+ "@babel/plugin-transform-typescript": ^7.27.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 6d8641fa6efd0e10eec5e8f92cd164b916a06d57131cfa5216c281404289c87d2b4995140a1c1d9c3bad171ff6ef2226be5f0585e09577ffff349706e991ec71
+ checksum: 38020f1b23e88ec4fbffd5737da455d8939244bddfb48a2516aef93fb5947bd9163fb807ce6eff3e43fa5ffe9113aa131305fef0fb5053998410bbfcfe6ce0ec
languageName: node
linkType: hard
-"@babel/register@npm:^7.13.16, @babel/register@npm:^7.24.6":
- version: 7.25.9
- resolution: "@babel/register@npm:7.25.9"
+"@babel/register@npm:^7.13.16":
+ version: 7.27.1
+ resolution: "@babel/register@npm:7.27.1"
dependencies:
clone-deep: ^4.0.1
find-cache-dir: ^2.0.0
@@ -1563,77 +1528,50 @@ __metadata:
source-map-support: ^0.5.16
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 1df38d9ed6fd60feb0a82e1926508bca8f60915ee8a12ab9f6c9714a8f13bafc7865409c7fa92604a5b79ba84f7990181b312bc469bfdfa30dd79655b3260b85
- languageName: node
- linkType: hard
-
-"@babel/runtime@npm:^7.25.0, @babel/runtime@npm:^7.8.4":
- version: 7.26.9
- resolution: "@babel/runtime@npm:7.26.9"
- dependencies:
- regenerator-runtime: ^0.14.0
- checksum: 838492d8a925092f9ccfbd82ec183a54f430af3a4ce88fb1337a4570629202d5123bad3097a5b8df53822504d12ccb29f45c0f6842e86094f0164f17a51eec92
+ checksum: 154ab3075f245466bbd7a3f0cf972328365961a6f621ecb7795ba67e70243596138c264ac7cb79df4a93527318021b5edbab1df39b669afc83159a9e6e560770
languageName: node
linkType: hard
-"@babel/template@npm:^7.0.0, @babel/template@npm:^7.25.0, @babel/template@npm:^7.25.9, @babel/template@npm:^7.26.9, @babel/template@npm:^7.3.3":
- version: 7.26.9
- resolution: "@babel/template@npm:7.26.9"
- dependencies:
- "@babel/code-frame": ^7.26.2
- "@babel/parser": ^7.26.9
- "@babel/types": ^7.26.9
- checksum: 32259298c775e543ab994daff0c758b3d6a184349b146d6497aa46cec5907bc47a6bc09e7295a81a5eccfbd023d4811a9777cb5d698d582d09a87cabf5b576e7
+"@babel/runtime@npm:^7.25.0":
+ version: 7.27.6
+ resolution: "@babel/runtime@npm:7.27.6"
+ checksum: 3f7b879df1823c0926bd5dbc941c62f5d60faa790c1aab9758c04799e1f04ee8d93553be9ec059d4e5882f19fe03cbe8933ee4f46212dced0f6d8205992c9c9a
languageName: node
linkType: hard
-"@babel/traverse--for-generate-function-map@npm:@babel/traverse@^7.25.3, @babel/traverse@npm:^7.25.3, @babel/traverse@npm:^7.25.9, @babel/traverse@npm:^7.26.5, @babel/traverse@npm:^7.26.8, @babel/traverse@npm:^7.26.9":
- version: 7.26.9
- resolution: "@babel/traverse@npm:7.26.9"
+"@babel/template@npm:^7.0.0, @babel/template@npm:^7.25.0, @babel/template@npm:^7.27.1, @babel/template@npm:^7.27.2, @babel/template@npm:^7.3.3":
+ version: 7.27.2
+ resolution: "@babel/template@npm:7.27.2"
dependencies:
- "@babel/code-frame": ^7.26.2
- "@babel/generator": ^7.26.9
- "@babel/parser": ^7.26.9
- "@babel/template": ^7.26.9
- "@babel/types": ^7.26.9
- debug: ^4.3.1
- globals: ^11.1.0
- checksum: d42d3a5e61422d96467f517447b5e254edbd64e4dbf3e13b630704d1f49beaa5209246dc6f45ba53522293bd4760ff720496d2c1ef189ecce52e9e63d9a59aa8
+ "@babel/code-frame": ^7.27.1
+ "@babel/parser": ^7.27.2
+ "@babel/types": ^7.27.1
+ checksum: ff5628bc066060624afd970616090e5bba91c6240c2e4b458d13267a523572cbfcbf549391eec8217b94b064cf96571c6273f0c04b28a8567b96edc675c28e27
languageName: node
linkType: hard
-"@babel/traverse@npm:^7.20.0, @babel/traverse@npm:^7.26.10":
- version: 7.26.10
- resolution: "@babel/traverse@npm:7.26.10"
+"@babel/traverse--for-generate-function-map@npm:@babel/traverse@^7.25.3, @babel/traverse@npm:^7.20.0, @babel/traverse@npm:^7.25.3, @babel/traverse@npm:^7.27.1, @babel/traverse@npm:^7.27.3, @babel/traverse@npm:^7.28.0":
+ version: 7.28.0
+ resolution: "@babel/traverse@npm:7.28.0"
dependencies:
- "@babel/code-frame": ^7.26.2
- "@babel/generator": ^7.26.10
- "@babel/parser": ^7.26.10
- "@babel/template": ^7.26.9
- "@babel/types": ^7.26.10
+ "@babel/code-frame": ^7.27.1
+ "@babel/generator": ^7.28.0
+ "@babel/helper-globals": ^7.28.0
+ "@babel/parser": ^7.28.0
+ "@babel/template": ^7.27.2
+ "@babel/types": ^7.28.0
debug: ^4.3.1
- globals: ^11.1.0
- checksum: 9b58039cf388ea0f6758204a31678753f3e3d9f62cd8bfb814cdcb2af81a0df35a23b7573719345b425faaaec1c1400f253d50054bac3db5952e389f71b19bc6
- languageName: node
- linkType: hard
-
-"@babel/types@npm:^7.0.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.25.2, @babel/types@npm:^7.25.9, @babel/types@npm:^7.26.9, @babel/types@npm:^7.3.3, @babel/types@npm:^7.4.4":
- version: 7.26.9
- resolution: "@babel/types@npm:7.26.9"
- dependencies:
- "@babel/helper-string-parser": ^7.25.9
- "@babel/helper-validator-identifier": ^7.25.9
- checksum: cc124c149615deb30343a4c81ac5b0e3a68bdb4b1bd61a91a2859ee8e5e5f400f6ff65be4740f407c17bfc09baa9c777e7f8f765dccf3284963956b67ac95a38
+ checksum: f1b6ed2a37f593ee02db82521f8d54c8540a7ec2735c6c127ba687de306d62ac5a7c6471819783128e0b825c4f7e374206ebbd1daf00d07f05a4528f5b1b4c07
languageName: node
linkType: hard
-"@babel/types@npm:^7.20.0, @babel/types@npm:^7.26.10":
- version: 7.26.10
- resolution: "@babel/types@npm:7.26.10"
+"@babel/types@npm:^7.0.0, @babel/types@npm:^7.20.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.25.2, @babel/types@npm:^7.27.1, @babel/types@npm:^7.27.3, @babel/types@npm:^7.27.6, @babel/types@npm:^7.28.0, @babel/types@npm:^7.3.3, @babel/types@npm:^7.4.4":
+ version: 7.28.0
+ resolution: "@babel/types@npm:7.28.0"
dependencies:
- "@babel/helper-string-parser": ^7.25.9
- "@babel/helper-validator-identifier": ^7.25.9
- checksum: 07340068ea3824dcaccf702dfc9628175c9926912ad6efba182d8b07e20953297d0a514f6fb103a61b9d5c555c8b87fc2237ddb06efebe14794eefc921dfa114
+ "@babel/helper-string-parser": ^7.27.1
+ "@babel/helper-validator-identifier": ^7.27.1
+ checksum: 3cb33bbe79e9629c3e4ed1592340f936481e7aef2c3df11f8b1f91e54b45e89b3ad92f2d20f8acdb5a7e00157174ffe8b1d174069bb839303e7f39f579d60969
languageName: node
linkType: hard
@@ -1645,13 +1583,13 @@ __metadata:
linkType: hard
"@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0":
- version: 4.5.0
- resolution: "@eslint-community/eslint-utils@npm:4.5.0"
+ version: 4.7.0
+ resolution: "@eslint-community/eslint-utils@npm:4.7.0"
dependencies:
eslint-visitor-keys: ^3.4.3
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
- checksum: b05ca7881b1db4ac4f29131d4ca07ace219d497f44eafc434331d3d30d2f6452436d96f6fd3fc77761254a79e62f53967e3dd2741678ef3dfe99ad6c01065201
+ checksum: b177e3b75c0b8d0e5d71f1c532edb7e40b31313db61f0c879f9bf19c3abb2783c6c372b5deb2396dab4432f2946b9972122ac682e77010376c029dfd0149c681
languageName: node
linkType: hard
@@ -1839,7 +1777,7 @@ __metadata:
languageName: node
linkType: hard
-"@jest/create-cache-key-function@npm:^29.6.3":
+"@jest/create-cache-key-function@npm:^29.7.0":
version: 29.7.0
resolution: "@jest/create-cache-key-function@npm:29.7.0"
dependencies:
@@ -2036,14 +1974,13 @@ __metadata:
languageName: node
linkType: hard
-"@jridgewell/gen-mapping@npm:^0.3.5":
- version: 0.3.8
- resolution: "@jridgewell/gen-mapping@npm:0.3.8"
+"@jridgewell/gen-mapping@npm:^0.3.12, @jridgewell/gen-mapping@npm:^0.3.5":
+ version: 0.3.12
+ resolution: "@jridgewell/gen-mapping@npm:0.3.12"
dependencies:
- "@jridgewell/set-array": ^1.2.1
- "@jridgewell/sourcemap-codec": ^1.4.10
+ "@jridgewell/sourcemap-codec": ^1.5.0
"@jridgewell/trace-mapping": ^0.3.24
- checksum: c0687b5227461717aa537fe71a42e356bcd1c43293b3353796a148bf3b0d6f59109def46c22f05b60e29a46f19b2e4676d027959a7c53a6c92b9d5b0d87d0420
+ checksum: 56ee1631945084897f274e65348afbaca7970ce92e3c23b3a23b2fe5d0d2f0c67614f0df0f2bb070e585e944bbaaf0c11cee3a36318ab8a36af46f2fd566bc40
languageName: node
linkType: hard
@@ -2054,37 +1991,30 @@ __metadata:
languageName: node
linkType: hard
-"@jridgewell/set-array@npm:^1.2.1":
- version: 1.2.1
- resolution: "@jridgewell/set-array@npm:1.2.1"
- checksum: 832e513a85a588f8ed4f27d1279420d8547743cc37fcad5a5a76fc74bb895b013dfe614d0eed9cb860048e6546b798f8f2652020b4b2ba0561b05caa8c654b10
- languageName: node
- linkType: hard
-
"@jridgewell/source-map@npm:^0.3.3":
- version: 0.3.6
- resolution: "@jridgewell/source-map@npm:0.3.6"
+ version: 0.3.10
+ resolution: "@jridgewell/source-map@npm:0.3.10"
dependencies:
"@jridgewell/gen-mapping": ^0.3.5
"@jridgewell/trace-mapping": ^0.3.25
- checksum: c9dc7d899397df95e3c9ec287b93c0b56f8e4453cd20743e2b9c8e779b1949bc3cccf6c01bb302779e46560eb45f62ea38d19fedd25370d814734268450a9f30
+ checksum: 035d6e6df0e60744506b14033f1569fd5ddc269abeb68bf50c2911118e2a4fa50dab474d49a59a993e4ee6795c4ae5940381e0d09fc204972c5387788d22d010
languageName: node
linkType: hard
-"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.14":
- version: 1.5.0
- resolution: "@jridgewell/sourcemap-codec@npm:1.5.0"
- checksum: 05df4f2538b3b0f998ea4c1cd34574d0feba216fa5d4ccaef0187d12abf82eafe6021cec8b49f9bb4d90f2ba4582ccc581e72986a5fcf4176ae0cfeb04cf52ec
+"@jridgewell/sourcemap-codec@npm:^1.4.14, @jridgewell/sourcemap-codec@npm:^1.5.0":
+ version: 1.5.4
+ resolution: "@jridgewell/sourcemap-codec@npm:1.5.4"
+ checksum: 959093724bfbc7c1c9aadc08066154f5c1f2acc647b45bd59beec46922cbfc6a9eda4a2114656de5bc00bb3600e420ea9a4cb05e68dcf388619f573b77bd9f0c
languageName: node
linkType: hard
-"@jridgewell/trace-mapping@npm:^0.3.12, @jridgewell/trace-mapping@npm:^0.3.18, @jridgewell/trace-mapping@npm:^0.3.24, @jridgewell/trace-mapping@npm:^0.3.25":
- version: 0.3.25
- resolution: "@jridgewell/trace-mapping@npm:0.3.25"
+"@jridgewell/trace-mapping@npm:^0.3.12, @jridgewell/trace-mapping@npm:^0.3.18, @jridgewell/trace-mapping@npm:^0.3.24, @jridgewell/trace-mapping@npm:^0.3.25, @jridgewell/trace-mapping@npm:^0.3.28":
+ version: 0.3.29
+ resolution: "@jridgewell/trace-mapping@npm:0.3.29"
dependencies:
"@jridgewell/resolve-uri": ^3.1.0
"@jridgewell/sourcemap-codec": ^1.4.14
- checksum: 9d3c40d225e139987b50c48988f8717a54a8c994d8a948ee42e1412e08988761d0754d7d10b803061cc3aebf35f92a5dbbab493bd0e1a9ef9e89a2130e83ba34
+ checksum: 5e92eeafa5131a4f6b7122063833d657f885cb581c812da54f705d7a599ff36a75a4a093a83b0f6c7e95642f5772dd94753f696915e8afea082237abf7423ca3
languageName: node
linkType: hard
@@ -2307,10 +2237,10 @@ __metadata:
languageName: node
linkType: hard
-"@pkgr/core@npm:^0.1.0":
- version: 0.1.1
- resolution: "@pkgr/core@npm:0.1.1"
- checksum: 6f25fd2e3008f259c77207ac9915b02f1628420403b2630c92a07ff963129238c9262afc9e84344c7a23b5cc1f3965e2cd17e3798219f5fd78a63d144d3cceba
+"@pkgr/core@npm:^0.2.4":
+ version: 0.2.7
+ resolution: "@pkgr/core@npm:0.2.7"
+ checksum: b16959878940f3d3016b79a4b2c23fd518aaec6b47295baa3154fbcf6574fee644c51023bb69069fa3ea9cdcaca40432818f54695f11acc0ae326cf56676e4d1
languageName: node
linkType: hard
@@ -2341,62 +2271,65 @@ __metadata:
languageName: node
linkType: hard
-"@react-native-community/cli-clean@npm:15.0.1":
- version: 15.0.1
- resolution: "@react-native-community/cli-clean@npm:15.0.1"
+"@react-native-community/cli-clean@npm:19.0.0":
+ version: 19.0.0
+ resolution: "@react-native-community/cli-clean@npm:19.0.0"
dependencies:
- "@react-native-community/cli-tools": 15.0.1
+ "@react-native-community/cli-tools": 19.0.0
chalk: ^4.1.2
execa: ^5.0.0
fast-glob: ^3.3.2
- checksum: ea6c663ec56cfe3a2c4fac7d3f0fec2ac8de9c34458f241b2afdf7f45dfb00d1de9e367fec732f8fef6e2b17046f4ed03c3be2ea4d2075633197dc23c516f986
+ checksum: 9360746c25fae7926f5d4d3304cabd5a3d72e592ba5f13379799df7fa6df48fe21b75fa299c6427ecef1de9b3bff1a683a81b22fe502ae2bd17a2fec2d672125
languageName: node
linkType: hard
-"@react-native-community/cli-config-apple@npm:15.0.1":
- version: 15.0.1
- resolution: "@react-native-community/cli-config-apple@npm:15.0.1"
+"@react-native-community/cli-config-android@npm:19.0.0":
+ version: 19.0.0
+ resolution: "@react-native-community/cli-config-android@npm:19.0.0"
dependencies:
- "@react-native-community/cli-tools": 15.0.1
+ "@react-native-community/cli-tools": 19.0.0
chalk: ^4.1.2
- execa: ^5.0.0
fast-glob: ^3.3.2
- checksum: 67b9be8b6cce14f764a5734b9599eb7d1095c7fb5c06b0b6cd3518cf3a00c90026018c1eb8d497338da092a3cdcaa9b33fec34c5b766a4517c70293e5f1df58d
+ fast-xml-parser: ^4.4.1
+ checksum: 549029c4be6cbd2eac10bb386c235a9435e2e832258cf2a631c2edd13fe513fe16dd218d3834ff5ce0351455f0a20f3a86e7e1c80163cf788b47ce534c52172a
languageName: node
linkType: hard
-"@react-native-community/cli-config@npm:15.0.1":
- version: 15.0.1
- resolution: "@react-native-community/cli-config@npm:15.0.1"
+"@react-native-community/cli-config-apple@npm:19.0.0":
+ version: 19.0.0
+ resolution: "@react-native-community/cli-config-apple@npm:19.0.0"
dependencies:
- "@react-native-community/cli-tools": 15.0.1
+ "@react-native-community/cli-tools": 19.0.0
chalk: ^4.1.2
- cosmiconfig: ^9.0.0
- deepmerge: ^4.3.0
+ execa: ^5.0.0
fast-glob: ^3.3.2
- joi: ^17.2.1
- checksum: 23314bcdf465974ee71a01792f0a1149ea51eea1dc66416e53aa2bc3a123dba6a8e0654d68211d2b20570bc875145b2e5d4abf923190c685c0021bb280230c3f
+ checksum: 14e2c11186d690fc64c931345d12171b9137366d4cbe3b3092b51d1c0c5050387e1d738a19ff93db99a4492d26357fa1033f8609486cb3e5a30253465e5372e7
languageName: node
linkType: hard
-"@react-native-community/cli-debugger-ui@npm:15.0.1":
- version: 15.0.1
- resolution: "@react-native-community/cli-debugger-ui@npm:15.0.1"
+"@react-native-community/cli-config@npm:19.0.0":
+ version: 19.0.0
+ resolution: "@react-native-community/cli-config@npm:19.0.0"
dependencies:
- serve-static: ^1.13.1
- checksum: a97bb195f3722b91e0acf4c63f4e6956d572f5a275a13be01513b6797bd81ad0b838aa4fc8440131e64c39547c8e83feebb6435a34773269355a497122ed2209
+ "@react-native-community/cli-tools": 19.0.0
+ chalk: ^4.1.2
+ cosmiconfig: ^9.0.0
+ deepmerge: ^4.3.0
+ fast-glob: ^3.3.2
+ joi: ^17.2.1
+ checksum: c61714c6044b0cb9a9ea4497b0a2cefed206ec95b1bc7f028697c558eda966ff892a398e514d11dfeb99d0f10b7c5a0f11a6344a798bf3ee6b36cd3507131bc4
languageName: node
linkType: hard
-"@react-native-community/cli-doctor@npm:15.0.1":
- version: 15.0.1
- resolution: "@react-native-community/cli-doctor@npm:15.0.1"
+"@react-native-community/cli-doctor@npm:19.0.0":
+ version: 19.0.0
+ resolution: "@react-native-community/cli-doctor@npm:19.0.0"
dependencies:
- "@react-native-community/cli-config": 15.0.1
- "@react-native-community/cli-platform-android": 15.0.1
- "@react-native-community/cli-platform-apple": 15.0.1
- "@react-native-community/cli-platform-ios": 15.0.1
- "@react-native-community/cli-tools": 15.0.1
+ "@react-native-community/cli-config": 19.0.0
+ "@react-native-community/cli-platform-android": 19.0.0
+ "@react-native-community/cli-platform-apple": 19.0.0
+ "@react-native-community/cli-platform-ios": 19.0.0
+ "@react-native-community/cli-tools": 19.0.0
chalk: ^4.1.2
command-exists: ^1.2.8
deepmerge: ^4.3.0
@@ -2405,105 +2338,102 @@ __metadata:
node-stream-zip: ^1.9.1
ora: ^5.4.1
semver: ^7.5.2
- strip-ansi: ^5.2.0
wcwidth: ^1.0.1
yaml: ^2.2.1
- checksum: 6df1825df9f563096e48528f16d0bc521aceb2933e864921c8092eeeeeade0893963964897a6145b26a3d4de72ce05259f2d06f873eae64796d8c3815f22f1a5
+ checksum: f82520f0fd1695f1d5131df590d103dba60dc862788b37866c15829a5508c68d37d608769fb0a548f9128709d80bee8cd44b18fc2bfd915b42165a0b560433da
languageName: node
linkType: hard
-"@react-native-community/cli-platform-android@npm:15.0.1":
- version: 15.0.1
- resolution: "@react-native-community/cli-platform-android@npm:15.0.1"
+"@react-native-community/cli-platform-android@npm:19.0.0":
+ version: 19.0.0
+ resolution: "@react-native-community/cli-platform-android@npm:19.0.0"
dependencies:
- "@react-native-community/cli-tools": 15.0.1
+ "@react-native-community/cli-config-android": 19.0.0
+ "@react-native-community/cli-tools": 19.0.0
chalk: ^4.1.2
execa: ^5.0.0
- fast-glob: ^3.3.2
- fast-xml-parser: ^4.4.1
logkitty: ^0.7.1
- checksum: 6c5e5912b7c81a6cb9076ae08897470090e1ff20fdaa502d500b4700235f2411942c6e38e3373111efa025dee9a1d3cc71dea6a4c42a89272f0d56b1eeb7b38a
+ checksum: d277475cd0ce60005011768c998b98aa1b5c64b753dca0cb5684908c3cc0701ae540b9ffe291889cbecf297dd632208f1f80b5a0fb6f03b58f9bab7667335afe
languageName: node
linkType: hard
-"@react-native-community/cli-platform-apple@npm:15.0.1":
- version: 15.0.1
- resolution: "@react-native-community/cli-platform-apple@npm:15.0.1"
+"@react-native-community/cli-platform-apple@npm:19.0.0":
+ version: 19.0.0
+ resolution: "@react-native-community/cli-platform-apple@npm:19.0.0"
dependencies:
- "@react-native-community/cli-config-apple": 15.0.1
- "@react-native-community/cli-tools": 15.0.1
+ "@react-native-community/cli-config-apple": 19.0.0
+ "@react-native-community/cli-tools": 19.0.0
chalk: ^4.1.2
execa: ^5.0.0
fast-xml-parser: ^4.4.1
- checksum: 27278ff8790fddc220cba9daa4b05cb027403b7c3b81cd3f025b09f52ceccd41f68e86b71d493794eadc2d54fa4a5f6a1032608c4ec7ce928cc1985dce7b9bd2
+ checksum: e3f27ae301846b1719b26048707342b0f98623d80844630171d2fcbc8a5b5885da4d31673bb7c2f9e9d17baa560526828ea290b08d8f670f6ef306a7f33b8736
languageName: node
linkType: hard
-"@react-native-community/cli-platform-ios@npm:15.0.1":
- version: 15.0.1
- resolution: "@react-native-community/cli-platform-ios@npm:15.0.1"
+"@react-native-community/cli-platform-ios@npm:19.0.0":
+ version: 19.0.0
+ resolution: "@react-native-community/cli-platform-ios@npm:19.0.0"
dependencies:
- "@react-native-community/cli-platform-apple": 15.0.1
- checksum: 27b4775af43ce06e9315fda54f299e96405975c44d20a495443074d2818fc085dcb85cf2d2e6581990b71ab2e9ffc7d88666337bec8eb9412e80abf8dd793851
+ "@react-native-community/cli-platform-apple": 19.0.0
+ checksum: 4d742e8e6b849bc305865c3c50da3f391f06928baa0d2a7f5c818b0358918f2dc49258d3e81c65389de84fb9a0255a2c004cab8fd40a6e10bc3b996e851a9eb1
languageName: node
linkType: hard
-"@react-native-community/cli-server-api@npm:15.0.1":
- version: 15.0.1
- resolution: "@react-native-community/cli-server-api@npm:15.0.1"
+"@react-native-community/cli-server-api@npm:19.0.0":
+ version: 19.0.0
+ resolution: "@react-native-community/cli-server-api@npm:19.0.0"
dependencies:
- "@react-native-community/cli-debugger-ui": 15.0.1
- "@react-native-community/cli-tools": 15.0.1
+ "@react-native-community/cli-tools": 19.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
serve-static: ^1.13.1
ws: ^6.2.3
- checksum: 354eba589433251a56db7edf005886aa3c4886ff70f52b999db7c3718435f01a3f1081bc56cc681a1b7de2fa50ea4891c4ea673fe0a02eb855ecbc001bd86654
+ checksum: 806b1df6efefdda602d5c98de3936787b4986d7281f87822ce18b6d2432d607f8106aeaf73de8f936f12bb02b614622a9f64f524eda14b88ce91ed4dd52033be
languageName: node
linkType: hard
-"@react-native-community/cli-tools@npm:15.0.1":
- version: 15.0.1
- resolution: "@react-native-community/cli-tools@npm:15.0.1"
+"@react-native-community/cli-tools@npm:19.0.0":
+ version: 19.0.0
+ resolution: "@react-native-community/cli-tools@npm:19.0.0"
dependencies:
+ "@vscode/sudo-prompt": ^9.0.0
appdirsjs: ^1.2.4
chalk: ^4.1.2
execa: ^5.0.0
find-up: ^5.0.0
+ launch-editor: ^2.9.1
mime: ^2.4.1
- open: ^6.2.0
ora: ^5.4.1
prompts: ^2.4.2
semver: ^7.5.2
- shell-quote: ^1.7.3
- sudo-prompt: ^9.0.0
- checksum: 0c40d5aa2306a2bfc1ee15362d045b0eff3cb162dd1b070f504508b2bbdd00c791151cf9f8679d248b4480b75b758e60b8d0cf3c19a19a02b4b4ece9928a119c
+ checksum: bfc2b3b22d0d542d0fb7148d7c87240fa9b1e8ba393d40c4cb296748400619f0989f21f3ee0358eaf0c53e258cbf9576ef829d79cbae37ac50f4a257116a19f7
languageName: node
linkType: hard
-"@react-native-community/cli-types@npm:15.0.1":
- version: 15.0.1
- resolution: "@react-native-community/cli-types@npm:15.0.1"
+"@react-native-community/cli-types@npm:19.0.0":
+ version: 19.0.0
+ resolution: "@react-native-community/cli-types@npm:19.0.0"
dependencies:
joi: ^17.2.1
- checksum: 77452486158afcf1f03a3596135b6dba16dba5dd10209dacd5a6a4b176df36d37b8e49af61590d5a64df4907cf0575b6f37e0a3893335f961a9380edaee32152
+ checksum: 3f29712b8a5c75c83720dd182ed2a0676052a9be7e54fe54a5ae34ece0ff14ccc601ed697e3cf862f6254c8c957da2f0953482bf54434d15680232b6a085b65d
languageName: node
linkType: hard
-"@react-native-community/cli@npm:15.0.1":
- version: 15.0.1
- resolution: "@react-native-community/cli@npm:15.0.1"
- dependencies:
- "@react-native-community/cli-clean": 15.0.1
- "@react-native-community/cli-config": 15.0.1
- "@react-native-community/cli-debugger-ui": 15.0.1
- "@react-native-community/cli-doctor": 15.0.1
- "@react-native-community/cli-server-api": 15.0.1
- "@react-native-community/cli-tools": 15.0.1
- "@react-native-community/cli-types": 15.0.1
+"@react-native-community/cli@npm:19.0.0":
+ version: 19.0.0
+ resolution: "@react-native-community/cli@npm:19.0.0"
+ dependencies:
+ "@react-native-community/cli-clean": 19.0.0
+ "@react-native-community/cli-config": 19.0.0
+ "@react-native-community/cli-doctor": 19.0.0
+ "@react-native-community/cli-server-api": 19.0.0
+ "@react-native-community/cli-tools": 19.0.0
+ "@react-native-community/cli-types": 19.0.0
chalk: ^4.1.2
commander: ^9.4.1
deepmerge: ^4.3.0
@@ -2515,102 +2445,30 @@ __metadata:
semver: ^7.5.2
bin:
rnc-cli: build/bin.js
- checksum: 26c98ef67b4b89d3af13f2a3b19e51c7b2de5d320ca908cb628ca22b32bff5a17b8a1cc7f4b0ece303c4e53dc10e8ac0e88df9b376e63ebc97acb8d358f78c2e
+ checksum: c44ec5334e43201bbfa2eef9e40d0d6df61f10bcc93b57c70490e61e70dd99f1966a5037290ce7a2d383c28b7215261ef73513c1d2a9c1248a55620c9fd1f730
languageName: node
linkType: hard
-"@react-native/assets-registry@npm:0.77.1":
- version: 0.77.1
- resolution: "@react-native/assets-registry@npm:0.77.1"
- checksum: 332013acd5a68e15530d6e9bb70ca737503ec71e12068403d5d3b6824f04b6f14d715a8df23175a90fdb63872bf9d95c5967ccfdefaaf2d5540a2a6f4071cfc2
+"@react-native/assets-registry@npm:0.80.1":
+ version: 0.80.1
+ resolution: "@react-native/assets-registry@npm:0.80.1"
+ checksum: 21954f7030d8589fcbebd9d4652eed3768dc95fa5af1c1a27d3b21f4ed906a3af5432dab4f0d2eecb709acce7b1768acf80fe5e0883a2715113312edcbb12226
languageName: node
linkType: hard
-"@react-native/assets-registry@npm:0.78.0":
- version: 0.78.0
- resolution: "@react-native/assets-registry@npm:0.78.0"
- checksum: fe61cd523bfa2f837727e61caf664fbf28da804d9066ddfe2153cf0aa773d410ab668159721d2e5969bf8e38d564a8f41d6a401dfb9e30c0f6901354792a58ae
- languageName: node
- linkType: hard
-
-"@react-native/babel-plugin-codegen@npm:0.77.1":
- version: 0.77.1
- resolution: "@react-native/babel-plugin-codegen@npm:0.77.1"
- dependencies:
- "@babel/traverse": ^7.25.3
- "@react-native/codegen": 0.77.1
- checksum: e3f49fb723adfe80bca414d826095b0b4f45ba4162abb0373da4196420a8ed51da3395b8028613a96d65c314e9bf532e3335cfa28d5bc2018c86c18cfdfdd602
- languageName: node
- linkType: hard
-
-"@react-native/babel-plugin-codegen@npm:0.78.0":
- version: 0.78.0
- resolution: "@react-native/babel-plugin-codegen@npm:0.78.0"
+"@react-native/babel-plugin-codegen@npm:0.80.1":
+ version: 0.80.1
+ resolution: "@react-native/babel-plugin-codegen@npm:0.80.1"
dependencies:
"@babel/traverse": ^7.25.3
- "@react-native/codegen": 0.78.0
- checksum: 9407d1186c05e6af8b6148a9350578ea1c24cee427ae567b1d9ed5ab519387aa087026ca3a6858f9cc87548137ece0fe19b2cef2c2121918aae38b1f7580352c
- languageName: node
- linkType: hard
-
-"@react-native/babel-preset@npm:0.77.1":
- version: 0.77.1
- resolution: "@react-native/babel-preset@npm:0.77.1"
- dependencies:
- "@babel/core": ^7.25.2
- "@babel/plugin-proposal-export-default-from": ^7.24.7
- "@babel/plugin-syntax-dynamic-import": ^7.8.3
- "@babel/plugin-syntax-export-default-from": ^7.24.7
- "@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.3
- "@babel/plugin-syntax-optional-chaining": ^7.8.3
- "@babel/plugin-transform-arrow-functions": ^7.24.7
- "@babel/plugin-transform-async-generator-functions": ^7.25.4
- "@babel/plugin-transform-async-to-generator": ^7.24.7
- "@babel/plugin-transform-block-scoping": ^7.25.0
- "@babel/plugin-transform-class-properties": ^7.25.4
- "@babel/plugin-transform-classes": ^7.25.4
- "@babel/plugin-transform-computed-properties": ^7.24.7
- "@babel/plugin-transform-destructuring": ^7.24.8
- "@babel/plugin-transform-flow-strip-types": ^7.25.2
- "@babel/plugin-transform-for-of": ^7.24.7
- "@babel/plugin-transform-function-name": ^7.25.1
- "@babel/plugin-transform-literals": ^7.25.2
- "@babel/plugin-transform-logical-assignment-operators": ^7.24.7
- "@babel/plugin-transform-modules-commonjs": ^7.24.8
- "@babel/plugin-transform-named-capturing-groups-regex": ^7.24.7
- "@babel/plugin-transform-nullish-coalescing-operator": ^7.24.7
- "@babel/plugin-transform-numeric-separator": ^7.24.7
- "@babel/plugin-transform-object-rest-spread": ^7.24.7
- "@babel/plugin-transform-optional-catch-binding": ^7.24.7
- "@babel/plugin-transform-optional-chaining": ^7.24.8
- "@babel/plugin-transform-parameters": ^7.24.7
- "@babel/plugin-transform-private-methods": ^7.24.7
- "@babel/plugin-transform-private-property-in-object": ^7.24.7
- "@babel/plugin-transform-react-display-name": ^7.24.7
- "@babel/plugin-transform-react-jsx": ^7.25.2
- "@babel/plugin-transform-react-jsx-self": ^7.24.7
- "@babel/plugin-transform-react-jsx-source": ^7.24.7
- "@babel/plugin-transform-regenerator": ^7.24.7
- "@babel/plugin-transform-runtime": ^7.24.7
- "@babel/plugin-transform-shorthand-properties": ^7.24.7
- "@babel/plugin-transform-spread": ^7.24.7
- "@babel/plugin-transform-sticky-regex": ^7.24.7
- "@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.77.1
- babel-plugin-syntax-hermes-parser: 0.25.1
- babel-plugin-transform-flow-enums: ^0.0.2
- react-refresh: ^0.14.0
- peerDependencies:
- "@babel/core": "*"
- checksum: afcf11b54336ee77d7f5ec6cfc4e290fc76847418b24c6e9858070bb7685ee817fa9f95caf8d0bbc2f98f93f46698cb849249412b3e7396015780dbb12dc0f01
+ "@react-native/codegen": 0.80.1
+ checksum: 2d727e9db0ee67ba9ea793601d6d4bcb9522ecec83f0cc99507c83c95eb08178732220c637cb982847e5bf838daf77153ee47b0817373b5ff5041aa876e9ef3d
languageName: node
linkType: hard
-"@react-native/babel-preset@npm:0.78.0":
- version: 0.78.0
- resolution: "@react-native/babel-preset@npm:0.78.0"
+"@react-native/babel-preset@npm:0.80.1":
+ version: 0.80.1
+ resolution: "@react-native/babel-preset@npm:0.80.1"
dependencies:
"@babel/core": ^7.25.2
"@babel/plugin-proposal-export-default-from": ^7.24.7
@@ -2653,157 +2511,85 @@ __metadata:
"@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.78.0
- babel-plugin-syntax-hermes-parser: 0.25.1
+ "@react-native/babel-plugin-codegen": 0.80.1
+ babel-plugin-syntax-hermes-parser: 0.28.1
babel-plugin-transform-flow-enums: ^0.0.2
react-refresh: ^0.14.0
peerDependencies:
"@babel/core": "*"
- checksum: 19481456658a815a2a5cc4fdcb8955e282da10f3eaa78a086adbcdd07df7463360acdf76295d827f5293398d0d4a8633196e732509137c6d31489742ca6e960f
- languageName: node
- linkType: hard
-
-"@react-native/codegen@npm:0.77.1":
- version: 0.77.1
- resolution: "@react-native/codegen@npm:0.77.1"
- dependencies:
- "@babel/parser": ^7.25.3
- glob: ^7.1.1
- hermes-parser: 0.25.1
- invariant: ^2.2.4
- jscodeshift: ^17.0.0
- nullthrows: ^1.1.1
- yargs: ^17.6.2
- peerDependencies:
- "@babel/preset-env": ^7.1.6
- checksum: 38eb9e36bc9dd263d8e2ac254d7865d295a7ab7cf14098abd31670be5ac2bf17b6582941725d2f6da541efd8496501c5ca55bccd2e92ce62af2118a3e44150e1
+ checksum: 90789a085801bc6cb4ce2c117e7e21b39878308399436f1a8708481d4aaf8035b23711c50a57aab4b7d2c86a0f371b52d670fc5fbe16bb9d92135a17114dd6c1
languageName: node
linkType: hard
-"@react-native/codegen@npm:0.78.0":
- version: 0.78.0
- resolution: "@react-native/codegen@npm:0.78.0"
+"@react-native/codegen@npm:0.80.1":
+ version: 0.80.1
+ resolution: "@react-native/codegen@npm:0.80.1"
dependencies:
- "@babel/parser": ^7.25.3
glob: ^7.1.1
- hermes-parser: 0.25.1
+ hermes-parser: 0.28.1
invariant: ^2.2.4
- jscodeshift: ^17.0.0
nullthrows: ^1.1.1
yargs: ^17.6.2
peerDependencies:
- "@babel/preset-env": ^7.1.6
- checksum: f79901964deab8f9a2cf740a895a94a7f021df137493ef9e2a68e9bb84012c7e999cf00ad9a6506d326d1d82b63730d8ddfeb267d0c0ae929ef8e2bdf51a2bee
- languageName: node
- linkType: hard
-
-"@react-native/community-cli-plugin@npm:0.77.1":
- version: 0.77.1
- resolution: "@react-native/community-cli-plugin@npm:0.77.1"
- dependencies:
- "@react-native/dev-middleware": 0.77.1
- "@react-native/metro-babel-transformer": 0.77.1
- chalk: ^4.0.0
- debug: ^2.2.0
- invariant: ^2.2.4
- metro: ^0.81.0
- metro-config: ^0.81.0
- metro-core: ^0.81.0
- readline: ^1.3.0
- semver: ^7.1.3
- peerDependencies:
- "@react-native-community/cli-server-api": "*"
- peerDependenciesMeta:
- "@react-native-community/cli-server-api":
- optional: true
- checksum: 14c859365f7739ab57564ee86bdc76ae6417b8118dd2601c02c06ba45f1e8376e3a346d3398891e2736b08c27d3ef5bf141a934cb1818145e714b0ab8bd68039
+ "@babel/core": "*"
+ checksum: 18149038e9bfa185f8f258c1482cba954a101d425f0e5aa8e14f6e31d811569af871aeba1e369cecbbdc13d88c44383b584fefef8d8b896c955b3f2ec6aa6755
languageName: node
linkType: hard
-"@react-native/community-cli-plugin@npm:0.78.0":
- version: 0.78.0
- resolution: "@react-native/community-cli-plugin@npm:0.78.0"
+"@react-native/community-cli-plugin@npm:0.80.1":
+ version: 0.80.1
+ resolution: "@react-native/community-cli-plugin@npm:0.80.1"
dependencies:
- "@react-native/dev-middleware": 0.78.0
- "@react-native/metro-babel-transformer": 0.78.0
+ "@react-native/dev-middleware": 0.80.1
chalk: ^4.0.0
- debug: ^2.2.0
+ debug: ^4.4.0
invariant: ^2.2.4
- metro: ^0.81.0
- metro-config: ^0.81.0
- metro-core: ^0.81.0
- readline: ^1.3.0
+ metro: ^0.82.2
+ metro-config: ^0.82.2
+ metro-core: ^0.82.2
semver: ^7.1.3
peerDependencies:
- "@react-native-community/cli-server-api": "*"
+ "@react-native-community/cli": "*"
peerDependenciesMeta:
- "@react-native-community/cli-server-api":
+ "@react-native-community/cli":
optional: true
- checksum: 1358d0cde4f1dfaaeb23ccf2f5591ed3d5fd8ede25123c136ccc56ae78f0d1a3ab0ce88f169707517796023ef066e28a57c7f7385cdb4b1adbd0b0ac1489f6fc
- languageName: node
- linkType: hard
-
-"@react-native/debugger-frontend@npm:0.77.1":
- version: 0.77.1
- resolution: "@react-native/debugger-frontend@npm:0.77.1"
- checksum: e3fd4b4ddd1ab7215be560b401dc87368ccd9685fbc6f04926d65a303dd95645b7c595e1d495e23c42d2c5d0ff745a664ef13ba43c40333bb7f50c10d93dee0f
- languageName: node
- linkType: hard
-
-"@react-native/debugger-frontend@npm:0.78.0":
- version: 0.78.0
- resolution: "@react-native/debugger-frontend@npm:0.78.0"
- checksum: 2db660f6c558bd001dd0990c9134aadc623849bdfe0b0477278c394a41be846083121b9c6492d3fb842e3b80400fa257390f71b5f2b3bd72b4606b1404dc2d89
+ checksum: b25348dd48699765da4c8c5a0bfb02c7bb1c8e5623a963f47b553f9b0e6189e770fd1e5620b6e046eb3191c621ea2fb1d8ea57c2f3e98ec37a89e7d7938cf68d
languageName: node
linkType: hard
-"@react-native/dev-middleware@npm:0.77.1":
- version: 0.77.1
- resolution: "@react-native/dev-middleware@npm:0.77.1"
- dependencies:
- "@isaacs/ttlcache": ^1.4.1
- "@react-native/debugger-frontend": 0.77.1
- chrome-launcher: ^0.15.2
- chromium-edge-launcher: ^0.2.0
- connect: ^3.6.5
- debug: ^2.2.0
- invariant: ^2.2.4
- nullthrows: ^1.1.1
- open: ^7.0.3
- selfsigned: ^2.4.1
- serve-static: ^1.16.2
- ws: ^6.2.3
- checksum: 730f9538c14b37c9d2432b55f16a0df5b3f70bc50a2d89a7a0dbd89f5bed1ea83fda9a8d686231a83a661446e67934135c561597dac46b283edb3ed0cca0564a
+"@react-native/debugger-frontend@npm:0.80.1":
+ version: 0.80.1
+ resolution: "@react-native/debugger-frontend@npm:0.80.1"
+ checksum: e657acfa2023f873f834a9dcdd320f2cda952f9f208e7c367a87a049ed2ed576ea00ba58f346514560fc8c530a52e4a88fc43f7577e70619e2d7f9da318cc897
languageName: node
linkType: hard
-"@react-native/dev-middleware@npm:0.78.0":
- version: 0.78.0
- resolution: "@react-native/dev-middleware@npm:0.78.0"
+"@react-native/dev-middleware@npm:0.80.1":
+ version: 0.80.1
+ resolution: "@react-native/dev-middleware@npm:0.80.1"
dependencies:
"@isaacs/ttlcache": ^1.4.1
- "@react-native/debugger-frontend": 0.78.0
+ "@react-native/debugger-frontend": 0.80.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
- selfsigned: ^2.4.1
serve-static: ^1.16.2
ws: ^6.2.3
- checksum: cbad028a060871873d0e991419bccf124d7ad24e4c178763aea9cb19335564d4d047e67f58a60ac0c3780cdf38302e577488681f98bd1b7097a178e8a412fd07
+ checksum: 6f501af16558a3d9cbef9de2ede4148b57a4c163bfc5f31641ea3eb8343ae965e3a5713e1037d5a3dae239bf47faa7998dcd3d1d9a7dd6253889d1eda901d8a0
languageName: node
linkType: hard
-"@react-native/eslint-config@npm:0.77.1":
- version: 0.77.1
- resolution: "@react-native/eslint-config@npm:0.77.1"
+"@react-native/eslint-config@npm:0.80.1, @react-native/eslint-config@npm:^0.80.1":
+ version: 0.80.1
+ resolution: "@react-native/eslint-config@npm:0.80.1"
dependencies:
"@babel/core": ^7.25.2
"@babel/eslint-parser": ^7.25.1
- "@react-native/eslint-plugin": 0.77.1
+ "@react-native/eslint-plugin": 0.80.1
"@typescript-eslint/eslint-plugin": ^7.1.1
"@typescript-eslint/parser": ^7.1.1
eslint-config-prettier: ^8.5.0
@@ -2811,161 +2597,79 @@ __metadata:
eslint-plugin-ft-flow: ^2.0.1
eslint-plugin-jest: ^27.9.0
eslint-plugin-react: ^7.30.1
- eslint-plugin-react-hooks: ^4.6.0
+ eslint-plugin-react-hooks: ^5.2.0
eslint-plugin-react-native: ^4.0.0
peerDependencies:
eslint: ">=8"
prettier: ">=2"
- checksum: ba7d7b9fd8b49ed330b90e8d39bfa41d8ef325b05ccf19f82e629da960ea3b31f40dc9603d58196914482e9bc0890754b601c7663f6be2389d7ed165c2804bf5
+ checksum: cdddec0398d84ddedc0df771207d6212983124a037fff85fafe2c0e081e98ddcc8e1cb437b338f6ec322baabb56e93de54185caa6a9fdd9f0e10c74f5b211e52
languageName: node
linkType: hard
-"@react-native/eslint-config@npm:^0.78.0":
- version: 0.78.0
- resolution: "@react-native/eslint-config@npm:0.78.0"
- dependencies:
- "@babel/core": ^7.25.2
- "@babel/eslint-parser": ^7.25.1
- "@react-native/eslint-plugin": 0.78.0
- "@typescript-eslint/eslint-plugin": ^7.1.1
- "@typescript-eslint/parser": ^7.1.1
- eslint-config-prettier: ^8.5.0
- eslint-plugin-eslint-comments: ^3.2.0
- eslint-plugin-ft-flow: ^2.0.1
- eslint-plugin-jest: ^27.9.0
- eslint-plugin-react: ^7.30.1
- eslint-plugin-react-hooks: ^4.6.0
- eslint-plugin-react-native: ^4.0.0
- peerDependencies:
- eslint: ">=8"
- prettier: ">=2"
- checksum: 6de2144efc3c226b4feb043d6215ba92502a09a159862fb60003f692fe4aead92ca506a9ba44232af98cd771424fac5f1e48db18984e14984dcfcdc0d4092809
- languageName: node
- linkType: hard
-
-"@react-native/eslint-plugin@npm:0.77.1":
- version: 0.77.1
- resolution: "@react-native/eslint-plugin@npm:0.77.1"
- checksum: 99af6dbf79a372b049c3f83d90b1238ce8b9db2d0ce52db1f13b1b204f36810e680da8232a0c840d42dc683e5eafa4741e810ccac9027d83462d2532881e6d8d
+"@react-native/eslint-plugin@npm:0.80.1":
+ version: 0.80.1
+ resolution: "@react-native/eslint-plugin@npm:0.80.1"
+ checksum: d0268d968badb92774600dff8b54dda7c40469ab1158f2616de075b1d6048f38fe1b1d82232e26337949f298fc3a3dce191193dadc3e3e8c530128ede0d358fc
languageName: node
linkType: hard
-"@react-native/eslint-plugin@npm:0.78.0":
- version: 0.78.0
- resolution: "@react-native/eslint-plugin@npm:0.78.0"
- checksum: 858d0af1286c97d0a4a873509c224f0b2bc1f94071e98951e312a6007c54119e7dd37f26de553209d440a03560c96bed437dac48022cecd8d75d8fe8c5805eab
+"@react-native/gradle-plugin@npm:0.80.1":
+ version: 0.80.1
+ resolution: "@react-native/gradle-plugin@npm:0.80.1"
+ checksum: f993cd66ef383239e55dd7f38dba22b4a727cf67652c202862fa8736974a3c47a70116ff2f1e591508e0011be03bf6bb30ffc52a6f3bcfbbe9c7962c4b60eefa
languageName: node
linkType: hard
-"@react-native/gradle-plugin@npm:0.77.1":
- version: 0.77.1
- resolution: "@react-native/gradle-plugin@npm:0.77.1"
- checksum: a4b97818cd36320bcb31e1000318d80fb47c1ff6f5cebccf2d1b251afb14a8843160229926a62ee195544115e011d6832ff5ee5d95ff483172ec4a9ac9ddc63f
+"@react-native/js-polyfills@npm:0.80.1":
+ version: 0.80.1
+ resolution: "@react-native/js-polyfills@npm:0.80.1"
+ checksum: 1f765fb724d0940ccc291de42be7689d062286eac1c0d8237a99fe4a5ee6ce84e0250c6c779829534120d85bddb427907aa225250853d0086c8cbc1385df6b83
languageName: node
linkType: hard
-"@react-native/gradle-plugin@npm:0.78.0":
- version: 0.78.0
- resolution: "@react-native/gradle-plugin@npm:0.78.0"
- checksum: 4ae9dc30a4df0dc40d65f39441369714a25f1ed65b6d898fa6726df6eea97c42fdb126dc2b48c761f0f32d7c297727e41d5939c6251813fc1b4f4335a643cc25
- languageName: node
- linkType: hard
-
-"@react-native/js-polyfills@npm:0.77.1":
- version: 0.77.1
- resolution: "@react-native/js-polyfills@npm:0.77.1"
- checksum: 6e3ccb455b52979378192a6bb97692b3626bdafa245db32fdad61b4250a05559d2240398246b3e748ef3f9299c5766e618669d5d9694cba227445613edc34075
- languageName: node
- linkType: hard
-
-"@react-native/js-polyfills@npm:0.78.0":
- version: 0.78.0
- resolution: "@react-native/js-polyfills@npm:0.78.0"
- checksum: 6ccfc6d8c2947d5ab2f28fb0769e1771ca8097c9155139b1379afa2cd29ce53375eac437182e43a73b1c1f7ec907ec699603d960ea4d955bc7b787393b68712f
- languageName: node
- linkType: hard
-
-"@react-native/metro-babel-transformer@npm:0.77.1":
- version: 0.77.1
- resolution: "@react-native/metro-babel-transformer@npm:0.77.1"
+"@react-native/metro-babel-transformer@npm:0.80.1":
+ version: 0.80.1
+ resolution: "@react-native/metro-babel-transformer@npm:0.80.1"
dependencies:
"@babel/core": ^7.25.2
- "@react-native/babel-preset": 0.77.1
- hermes-parser: 0.25.1
+ "@react-native/babel-preset": 0.80.1
+ hermes-parser: 0.28.1
nullthrows: ^1.1.1
peerDependencies:
"@babel/core": "*"
- checksum: a4f729ce202886feb132c60c425eb188cdb169befc15290c43eed0ba71977d5f82b3b4788045d8746f1bae4a46a8309ea613ecf1b455110b88d0cf5901848b24
+ checksum: 127a38df8042269e81110b5e62654665eb0803ee3936efa2be0fa02fdd48af6d0227e4c817f3e323f3f6fb740e5fd899e947e6201c1024e6e1222d2aa79baf6e
languageName: node
linkType: hard
-"@react-native/metro-babel-transformer@npm:0.78.0":
- version: 0.78.0
- resolution: "@react-native/metro-babel-transformer@npm:0.78.0"
+"@react-native/metro-config@npm:0.80.1":
+ version: 0.80.1
+ resolution: "@react-native/metro-config@npm:0.80.1"
dependencies:
- "@babel/core": ^7.25.2
- "@react-native/babel-preset": 0.78.0
- hermes-parser: 0.25.1
- nullthrows: ^1.1.1
- peerDependencies:
- "@babel/core": "*"
- checksum: 31ba2e77e2996d3b7c1591c9de234c852b1c58184d67faa9608d51c08e68bcc9c91bd92734a1dea93a100f9f179a94f049e8bbeab331db26d536a83f9a3f68b2
- languageName: node
- linkType: hard
-
-"@react-native/metro-config@npm:0.77.1":
- version: 0.77.1
- resolution: "@react-native/metro-config@npm:0.77.1"
- dependencies:
- "@react-native/js-polyfills": 0.77.1
- "@react-native/metro-babel-transformer": 0.77.1
- metro-config: ^0.81.0
- metro-runtime: ^0.81.0
- checksum: c1152396cd1d2e7e4b8a97a912a254ed33e6459646cb103f08cdfc205bcdb565caecee0bdf406d87a213d5a749fbdc242dffbe182bffcef94d242136bdc4ffdd
- languageName: node
- linkType: hard
-
-"@react-native/normalize-colors@npm:0.77.1":
- version: 0.77.1
- resolution: "@react-native/normalize-colors@npm:0.77.1"
- checksum: e35ca03e281dc1f8df061bd4bc858484a2a33308468e75791499e85b6fc19d23c368d7ba0a43d9a5bc725d5c4c282592231fa18df240bffaa7d4b6a91389fb2a
+ "@react-native/js-polyfills": 0.80.1
+ "@react-native/metro-babel-transformer": 0.80.1
+ metro-config: ^0.82.2
+ metro-runtime: ^0.82.2
+ checksum: 0b857c57097dde69c63d7765a64f94fbbfd712ffd05acf8ce47f9ef7473f42d99e5a8effb31b30da014aaa352697adc27a76cc956d75ee59f2a4ba4f5cad9aea
languageName: node
linkType: hard
-"@react-native/normalize-colors@npm:0.78.0":
- version: 0.78.0
- resolution: "@react-native/normalize-colors@npm:0.78.0"
- checksum: 77027fe873cf8879284e77c0a5b7547c6c6be430668a8719a92b934c14c4ec9c669e10d2db0371e1be8bfde79c8ae306f4191a35c9937ae2161c2c2cbb966d22
+"@react-native/normalize-colors@npm:0.80.1":
+ version: 0.80.1
+ resolution: "@react-native/normalize-colors@npm:0.80.1"
+ checksum: cc3f09165bbfb921a521d72e38a2d827d31cf41b8a9bb32b4c4f9bbadcbf78fdfebd9fa1aa23bc0c192f6383660c1969ad63b3ebff9481893179468da2bfe7d2
languageName: node
linkType: hard
-"@react-native/typescript-config@npm:0.77.1":
- version: 0.77.1
- resolution: "@react-native/typescript-config@npm:0.77.1"
- checksum: 448b0deade3380a123660fde93072150148875c8628c575a8e88ba01fc17a8a641589b809535357ad983f3f69103c0e77f97fe0e3d11922974db180fd0926eb4
+"@react-native/typescript-config@npm:0.80.1":
+ version: 0.80.1
+ resolution: "@react-native/typescript-config@npm:0.80.1"
+ checksum: e427edeefd9e5be9ee8c7d247243ed231973662cf2904741c24534aab3620a51159fe38cd1907f1ea90ce41a33e1266e34e414918aff1b30b444bac26db23e6d
languageName: node
linkType: hard
-"@react-native/virtualized-lists@npm:0.77.1":
- version: 0.77.1
- resolution: "@react-native/virtualized-lists@npm:0.77.1"
- dependencies:
- invariant: ^2.2.4
- nullthrows: ^1.1.1
- peerDependencies:
- "@types/react": ^18.2.6
- react: "*"
- react-native: "*"
- peerDependenciesMeta:
- "@types/react":
- optional: true
- checksum: 3da6aa052cb4d45b6f3dba3826ce91584fbf103370226bdc1a2c625bda75386701235334ff94b66a1f52c98b5967b644b9d229b0861deb03efe4df5b187ccede
- languageName: node
- linkType: hard
-
-"@react-native/virtualized-lists@npm:0.78.0":
- version: 0.78.0
- resolution: "@react-native/virtualized-lists@npm:0.78.0"
+"@react-native/virtualized-lists@npm:0.80.1":
+ version: 0.80.1
+ resolution: "@react-native/virtualized-lists@npm:0.80.1"
dependencies:
invariant: ^2.2.4
nullthrows: ^1.1.1
@@ -2976,99 +2680,101 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
- checksum: 028b6d958c245bc128f525a45ac19ebd9813820c9d14a21924e9cfa891994386d17d2898684a7732ebf02d76e234aa7544e10e27c9bdcb808a8c3deda14bfecc
+ checksum: 1e809e2b41f799084a4b8b6304d2dfe8986218e6122c1065413442ff71c0d5e1d267b4c1e241385aa2d96cb6a8a11e5add9e48346f38e42848d82488d6c6e9bb
languageName: node
linkType: hard
"@react-navigation/bottom-tabs@npm:^7.2.1":
- version: 7.2.1
- resolution: "@react-navigation/bottom-tabs@npm:7.2.1"
+ version: 7.4.2
+ resolution: "@react-navigation/bottom-tabs@npm:7.4.2"
dependencies:
- "@react-navigation/elements": ^2.2.6
+ "@react-navigation/elements": ^2.5.2
color: ^4.2.3
peerDependencies:
- "@react-navigation/native": ^7.0.15
+ "@react-navigation/native": ^7.1.14
react: ">= 18.2.0"
react-native: "*"
react-native-safe-area-context: ">= 4.0.0"
react-native-screens: ">= 4.0.0"
- checksum: 4529a60dc41292c5979ff504389443d47b42915425cf837147bb6ed6f5652cef8e99b48ecd3a2b96027b24ea41d1550e08ffa0722d2c045c10bd7533b65e690d
+ checksum: 734a00bf442b0c10085ab08cb454bc838e3ec007a98f9f578ada069539b7eec9e1e98fa8d67c7b375007771fc20af4d49f1cc753f31c7acc5059639904569955
languageName: node
linkType: hard
-"@react-navigation/core@npm:^7.4.0":
- version: 7.4.0
- resolution: "@react-navigation/core@npm:7.4.0"
+"@react-navigation/core@npm:^7.12.1":
+ version: 7.12.1
+ resolution: "@react-navigation/core@npm:7.12.1"
dependencies:
- "@react-navigation/routers": ^7.2.0
+ "@react-navigation/routers": ^7.4.1
escape-string-regexp: ^4.0.0
- nanoid: 3.3.8
+ nanoid: ^3.3.11
query-string: ^7.1.3
- react-is: ^18.2.0
- use-latest-callback: ^0.2.1
- use-sync-external-store: ^1.2.2
+ react-is: ^19.1.0
+ use-latest-callback: ^0.2.4
+ use-sync-external-store: ^1.5.0
peerDependencies:
react: ">= 18.2.0"
- checksum: 182f7c820416fd0e57cdf85bb5c3d834d7bc45e6c2650e34f4c55329004a816c160e78fadcd1c7f5d945a6d607a42d1d4dfda11c3bdaa4495df62b9be9e1f5e3
+ checksum: 0e274c1ad3fad0ddb65037bd8403216c2281a9e166f5e2e4d5a054dbcbac76729ebdf3688c4b3e46f98a9ded3ae8128ee01eb38431b12425929402b1782e1724
languageName: node
linkType: hard
-"@react-navigation/elements@npm:^2.2.6":
- version: 2.2.6
- resolution: "@react-navigation/elements@npm:2.2.6"
+"@react-navigation/elements@npm:^2.5.2":
+ version: 2.5.2
+ resolution: "@react-navigation/elements@npm:2.5.2"
dependencies:
color: ^4.2.3
+ use-latest-callback: ^0.2.4
+ use-sync-external-store: ^1.5.0
peerDependencies:
"@react-native-masked-view/masked-view": ">= 0.2.0"
- "@react-navigation/native": ^7.0.15
+ "@react-navigation/native": ^7.1.14
react: ">= 18.2.0"
react-native: "*"
react-native-safe-area-context: ">= 4.0.0"
peerDependenciesMeta:
"@react-native-masked-view/masked-view":
optional: true
- checksum: 4979be0fb72ae667f34c7f6a665ac366f29d8bebf50a4e0919b9f0aa74c1ac13a913ca1fd474f5fa829109c041bea2befaf682adf5a91ca09474dbd7b0b9edc1
+ checksum: 0b0d92574ba845b8d1ee3c4fe78a22b8aa8a3e69e27678d0daa45aae08d31488eee05128ede6b5a725bbdc4d4a3ef4990f85760a30b3d01ddb47a86d41be5593
languageName: node
linkType: hard
"@react-navigation/native-stack@npm:^7.2.1":
- version: 7.2.1
- resolution: "@react-navigation/native-stack@npm:7.2.1"
+ version: 7.3.21
+ resolution: "@react-navigation/native-stack@npm:7.3.21"
dependencies:
- "@react-navigation/elements": ^2.2.6
+ "@react-navigation/elements": ^2.5.2
warn-once: ^0.1.1
peerDependencies:
- "@react-navigation/native": ^7.0.15
+ "@react-navigation/native": ^7.1.14
react: ">= 18.2.0"
react-native: "*"
react-native-safe-area-context: ">= 4.0.0"
react-native-screens: ">= 4.0.0"
- checksum: a7acbbd4c6f93bb40357c24e39a6da1fe69756f41b4377fffe126cc695ff1fbc0d519ece0e3793faecf689bdde16fbe754a860862b007e10c9638e4406a99248
+ checksum: 9b644951a0c230e812fdb314bec3841c2ca1db4a7898b5b55f3c3663d8956d8dc168a1d0151b1094216f009ccd562534ba2ae89c135a368dca8cb5ee719ea9ce
languageName: node
linkType: hard
"@react-navigation/native@npm:^7.0.15":
- version: 7.0.15
- resolution: "@react-navigation/native@npm:7.0.15"
+ version: 7.1.14
+ resolution: "@react-navigation/native@npm:7.1.14"
dependencies:
- "@react-navigation/core": ^7.4.0
+ "@react-navigation/core": ^7.12.1
escape-string-regexp: ^4.0.0
fast-deep-equal: ^3.1.3
- nanoid: 3.3.8
- use-latest-callback: ^0.2.1
+ nanoid: ^3.3.11
+ use-latest-callback: ^0.2.4
peerDependencies:
react: ">= 18.2.0"
react-native: "*"
- checksum: 170a533ae4e4dc3dfc9e3b16d0df2bbabde4688121009620a95a74020ba4463b01f2d1ad6aa358513cb06af381714d25ceea51e7b0a6fecb719ea143a55fc6a1
+ checksum: 9430a659dc81bf8203a5469d5b49d3ce19c6196869aeee8065f36f89416cca9fdbc480ff09cffc94fe7c0e5483e98978b393e3ec3a280a2d6e604156b53bf8e4
languageName: node
linkType: hard
-"@react-navigation/routers@npm:^7.2.0":
- version: 7.2.0
- resolution: "@react-navigation/routers@npm:7.2.0"
+"@react-navigation/routers@npm:^7.4.1":
+ version: 7.4.1
+ resolution: "@react-navigation/routers@npm:7.4.1"
dependencies:
- nanoid: 3.3.8
- checksum: 735ed1e8a3e38bbc0f1f2cc33c4f004b95821206cbfa0f6df64728ff0c6ba66abbff9d393135e440dde9c261a6afa24bc35d5f0510e6bfd20d1e987aaa43538a
+ nanoid: ^3.3.11
+ checksum: 7cc889f8a89c656082b7302653b462bb28db422c443a9df3d5d379715cb837027f484faf8889567adf829638754ab9c7f36a6d0771942530460aec2a64605840
languageName: node
linkType: hard
@@ -3157,11 +2863,11 @@ __metadata:
linkType: hard
"@types/babel__generator@npm:*":
- version: 7.6.8
- resolution: "@types/babel__generator@npm:7.6.8"
+ version: 7.27.0
+ resolution: "@types/babel__generator@npm:7.27.0"
dependencies:
"@babel/types": ^7.0.0
- checksum: 5b332ea336a2efffbdeedb92b6781949b73498606ddd4205462f7d96dafd45ff3618770b41de04c4881e333dd84388bfb8afbdf6f2764cbd98be550d85c6bb48
+ checksum: e6739cacfa276c1ad38e1d8a6b4b1f816c2c11564e27f558b68151728489aaf0f4366992107ee4ed7615dfa303f6976dedcdce93df2b247116d1bcd1607ee260
languageName: node
linkType: hard
@@ -3176,11 +2882,11 @@ __metadata:
linkType: hard
"@types/babel__traverse@npm:*, @types/babel__traverse@npm:^7.0.6":
- version: 7.20.6
- resolution: "@types/babel__traverse@npm:7.20.6"
+ version: 7.20.7
+ resolution: "@types/babel__traverse@npm:7.20.7"
dependencies:
"@babel/types": ^7.20.7
- checksum: 2bdc65eb62232c2d5c1086adeb0c31e7980e6fd7e50a3483b4a724a1a1029c84d9cb59749cf8de612f9afa2bc14c85b8f50e64e21f8a4398fa77eb9059a4283c
+ checksum: 2a2e5ad29c34a8b776162b0fe81c9ccb6459b2b46bf230f756ba0276a0258fcae1cbcfdccbb93a1e8b1df44f4939784ee8a1a269f95afe0c78b24b9cb6d50dd1
languageName: node
linkType: hard
@@ -3249,21 +2955,12 @@ __metadata:
languageName: node
linkType: hard
-"@types/node-forge@npm:^1.3.0":
- version: 1.3.11
- resolution: "@types/node-forge@npm:1.3.11"
- dependencies:
- "@types/node": "*"
- checksum: 1e86bd55b92a492eaafd75f6d01f31e7d86a5cdadd0c6bcdc0b1df4103b7f99bb75b832efd5217c7ddda5c781095dc086a868e20b9de00f5a427ddad4c296cd5
- languageName: node
- linkType: hard
-
"@types/node@npm:*":
- version: 22.13.10
- resolution: "@types/node@npm:22.13.10"
+ version: 24.0.13
+ resolution: "@types/node@npm:24.0.13"
dependencies:
- undici-types: ~6.20.0
- checksum: 1cd6b899df728732c60c0defad63e26ca18d87a3b81bd75666fe9aed6cdf9e488433976b22ffcabfdeef9d351cf8ff94853b0686e6708ef62065482ccf5b0a6e
+ undici-types: ~7.8.0
+ checksum: a98c3c7979e3c17e2853af4b5c4adfb0cbeaf3747a85bc349048ec068cf16d2a96186e005b76ad05f8f533f9b067f499e45ff0296dab0111297af634f71c792c
languageName: node
linkType: hard
@@ -3274,43 +2971,36 @@ __metadata:
languageName: node
linkType: hard
-"@types/parse-json@npm:^4.0.0":
- version: 4.0.2
- resolution: "@types/parse-json@npm:4.0.2"
- checksum: 5bf62eec37c332ad10059252fc0dab7e7da730764869c980b0714777ad3d065e490627be9f40fc52f238ffa3ac4199b19de4127196910576c2fe34dd47c7a470
- languageName: node
- linkType: hard
-
"@types/prop-types@npm:*":
- version: 15.7.14
- resolution: "@types/prop-types@npm:15.7.14"
- checksum: d0c5407b9ccc3dd5fae0ccf9b1007e7622ba5e6f1c18399b4f24dff33619d469da4b9fa918a374f19dc0d9fe6a013362aab0b844b606cfc10676efba3f5f736d
+ version: 15.7.15
+ resolution: "@types/prop-types@npm:15.7.15"
+ checksum: 31aa2f59b28f24da6fb4f1d70807dae2aedfce090ec63eaf9ea01727a9533ef6eaf017de5bff99fbccad7d1c9e644f52c6c2ba30869465dd22b1a7221c29f356
languageName: node
linkType: hard
-"@types/react-test-renderer@npm:^18.0.0":
- version: 18.3.1
- resolution: "@types/react-test-renderer@npm:18.3.1"
+"@types/react-test-renderer@npm:^19.1.0":
+ version: 19.1.0
+ resolution: "@types/react-test-renderer@npm:19.1.0"
dependencies:
- "@types/react": ^18
- checksum: f8cc23cc8decdb6068cdc8f8c306e189eab8e569443ce97b216e757ee42eb20b18d2280ef41e2955668413f14be92765a3ba86cfcfeeae6b20c965acd9674786
+ "@types/react": "*"
+ checksum: 2ef3aec0f2fd638902cda606d70c8531d66f8e8944334427986b99dcac9755ee60b700c5c3a19ac354680f9c45669e98077b84f79cac60e950bdb7d38aebffde
languageName: node
linkType: hard
"@types/react@npm:^18.2.44":
- version: 18.3.18
- resolution: "@types/react@npm:18.3.18"
+ version: 18.3.23
+ resolution: "@types/react@npm:18.3.23"
dependencies:
"@types/prop-types": "*"
csstype: ^3.0.2
- checksum: 5933597bc9f53e282f0438f0bb76d0f0fab60faabe760ea806e05ffe6f5c61b9b4d363e1a03a8fea47c510d493c6cf926cdeeba9f7074fa97b61940c350245e7
+ checksum: d781257d42bf3c66f4bcd21e76a86cd9b6e21fbaf377fe0f840f1ff35049efa59491aa6a4dcf2b3db42af4ab085acebe185f0ae28b7c36d60be5e9094c707bdd
languageName: node
linkType: hard
"@types/semver@npm:^7.3.12":
- version: 7.5.8
- resolution: "@types/semver@npm:7.5.8"
- checksum: ea6f5276f5b84c55921785a3a27a3cd37afee0111dfe2bcb3e03c31819c197c782598f17f0b150a69d453c9584cd14c4c4d7b9a55d2c5e6cacd4d66fdb3b3663
+ version: 7.7.0
+ resolution: "@types/semver@npm:7.7.0"
+ checksum: d488eaeddb23879a0a8a759bed667e1a76cb0dd4d23e3255538e24c189db387357953ca9e7a3bda2bb7f95e84cac8fe0db4fbe6b3456e893043337732d1d23cc
languageName: node
linkType: hard
@@ -3534,10 +3224,17 @@ __metadata:
languageName: node
linkType: hard
+"@vscode/sudo-prompt@npm:^9.0.0":
+ version: 9.3.1
+ resolution: "@vscode/sudo-prompt@npm:9.3.1"
+ checksum: 07a6ce9ef2e4e2b369288b78344f7ef3db977d5f1576b944075c22aacb9cf830acfd5f773d1b0497610bec4f811d44793142234114e57763abc78ea2cef8940a
+ languageName: node
+ linkType: hard
+
"abbrev@npm:^3.0.0":
- version: 3.0.0
- resolution: "abbrev@npm:3.0.0"
- checksum: 2500075b5ef85e97c095ab6ab2ea640dcf90bb388f46398f4d347b296f53399f984ec9462c74bee81df6bba56ef5fd9dbc2fb29076b1feb0023e0f52d43eb984
+ version: 3.0.1
+ resolution: "abbrev@npm:3.0.1"
+ checksum: e70b209f5f408dd3a3bbd0eec4b10a2ffd64704a4a3821d0969d84928cc490a8eb60f85b78a95622c1841113edac10161c62e52f5e7d0027aa26786a8136e02e
languageName: node
linkType: hard
@@ -3569,19 +3266,19 @@ __metadata:
languageName: node
linkType: hard
-"acorn@npm:^8.8.2, acorn@npm:^8.9.0":
- version: 8.14.1
- resolution: "acorn@npm:8.14.1"
+"acorn@npm:^8.14.0, acorn@npm:^8.9.0":
+ version: 8.15.0
+ resolution: "acorn@npm:8.15.0"
bin:
acorn: bin/acorn
- checksum: 260d9bb6017a1b6e42d31364687f0258f78eb20210b36ef2baad38fd619d78d4e95ff7dde9b3dbe0d81f137f79a8d651a845363a26e6985997f7b71145dc5e94
+ checksum: 309c6b49aedf1a2e34aaf266de06de04aab6eb097c02375c66fdeb0f64556a6a823540409914fb364d9a11bc30d79d485a2eba29af47992d3490e9886c4391c3
languageName: node
linkType: hard
"agent-base@npm:^7.0.2, agent-base@npm:^7.1.0, agent-base@npm:^7.1.2":
- version: 7.1.3
- resolution: "agent-base@npm:7.1.3"
- checksum: 87bb7ee54f5ecf0ccbfcba0b07473885c43ecd76cb29a8db17d6137a19d9f9cd443a2a7c5fd8a3f24d58ad8145f9eb49116344a66b107e1aeab82cf2383f4753
+ version: 7.1.4
+ resolution: "agent-base@npm:7.1.4"
+ checksum: 86a7f542af277cfbd77dd61e7df8422f90bac512953709003a1c530171a9d019d072e2400eab2b59f84b49ab9dd237be44315ca663ac73e82b3922d10ea5eafa
languageName: node
linkType: hard
@@ -3750,16 +3447,18 @@ __metadata:
linkType: hard
"array-includes@npm:^3.1.6, array-includes@npm:^3.1.8":
- version: 3.1.8
- resolution: "array-includes@npm:3.1.8"
+ version: 3.1.9
+ resolution: "array-includes@npm:3.1.9"
dependencies:
- call-bind: ^1.0.7
+ call-bind: ^1.0.8
+ call-bound: ^1.0.4
define-properties: ^1.2.1
- es-abstract: ^1.23.2
- es-object-atoms: ^1.0.0
- get-intrinsic: ^1.2.4
- is-string: ^1.0.7
- checksum: eb39ba5530f64e4d8acab39297c11c1c5be2a4ea188ab2b34aba5fb7224d918f77717a9d57a3e2900caaa8440e59431bdaf5c974d5212ef65d97f132e38e2d91
+ es-abstract: ^1.24.0
+ es-object-atoms: ^1.1.1
+ get-intrinsic: ^1.3.0
+ is-string: ^1.1.1
+ math-intrinsics: ^1.1.0
+ checksum: b58dc526fe415252e50319eaf88336e06e75aa673e3b58d252414739a4612dbe56e7b613fdcc7c90561dc9cf9202bbe5ca029ccd8c08362746459475ae5a8f3e
languageName: node
linkType: hard
@@ -3883,15 +3582,6 @@ __metadata:
languageName: node
linkType: hard
-"ast-types@npm:^0.16.1":
- version: 0.16.1
- resolution: "ast-types@npm:0.16.1"
- dependencies:
- tslib: ^2.0.1
- checksum: 21c186da9fdb1d8087b1b7dabbc4059f91aa5a1e593a9776b4393cc1eaa857e741b2dda678d20e34b16727b78fef3ab59cf8f0c75ed1ba649c78fe194e5c114b
- languageName: node
- linkType: hard
-
"astral-regex@npm:^1.0.0":
version: 1.0.0
resolution: "astral-regex@npm:1.0.0"
@@ -3995,60 +3685,48 @@ __metadata:
languageName: node
linkType: hard
-"babel-plugin-polyfill-corejs2@npm:^0.4.10":
- version: 0.4.12
- resolution: "babel-plugin-polyfill-corejs2@npm:0.4.12"
+"babel-plugin-polyfill-corejs2@npm:^0.4.14":
+ version: 0.4.14
+ resolution: "babel-plugin-polyfill-corejs2@npm:0.4.14"
dependencies:
- "@babel/compat-data": ^7.22.6
- "@babel/helper-define-polyfill-provider": ^0.6.3
+ "@babel/compat-data": ^7.27.7
+ "@babel/helper-define-polyfill-provider": ^0.6.5
semver: ^6.3.1
peerDependencies:
"@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
- checksum: 6e6e6a8b85fec80a310ded2f5c151385e4ac59118909dd6a952e1025e4a478eb79dda45a5a6322cc2e598fd696eb07d4e2fa52418b4101f3dc370bdf8c8939ba
- languageName: node
- linkType: hard
-
-"babel-plugin-polyfill-corejs3@npm:^0.10.6":
- version: 0.10.6
- resolution: "babel-plugin-polyfill-corejs3@npm:0.10.6"
- dependencies:
- "@babel/helper-define-polyfill-provider": ^0.6.2
- core-js-compat: ^3.38.0
- peerDependencies:
- "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
- checksum: f762f29f7acca576897c63149c850f0a72babd3fb9ea436a2e36f0c339161c4b912a77828541d8188ce8a91e50965c6687120cf36071eabb1b7aa92f279e2164
+ checksum: d654334c1b4390d08282416144b7b6f3d74d2cab44b2bfa2b6405c828882c82907b8b67698dce1be046c218d2d4fe5bf7fb6d01879938f3129dad969e8cfc44d
languageName: node
linkType: hard
-"babel-plugin-polyfill-corejs3@npm:^0.11.0":
- version: 0.11.1
- resolution: "babel-plugin-polyfill-corejs3@npm:0.11.1"
+"babel-plugin-polyfill-corejs3@npm:^0.13.0":
+ version: 0.13.0
+ resolution: "babel-plugin-polyfill-corejs3@npm:0.13.0"
dependencies:
- "@babel/helper-define-polyfill-provider": ^0.6.3
- core-js-compat: ^3.40.0
+ "@babel/helper-define-polyfill-provider": ^0.6.5
+ core-js-compat: ^3.43.0
peerDependencies:
"@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
- checksum: ee39440475ef377a1570ccbc06b1a1d274cbfbbe2e7c3d4c60f38781a47f00a28bd10d8e23430828b965820c41beb2c93c84596baf72583a2c9c3fdfa4397994
+ checksum: cf526031acd97ff2124e7c10e15047e6eeb0620d029c687f1dca99916a8fe6cac0e634b84c913db6cb68b7a024f82492ba8fdcc2a6266e7b05bdac2cba0c2434
languageName: node
linkType: hard
-"babel-plugin-polyfill-regenerator@npm:^0.6.1":
- version: 0.6.3
- resolution: "babel-plugin-polyfill-regenerator@npm:0.6.3"
+"babel-plugin-polyfill-regenerator@npm:^0.6.5":
+ version: 0.6.5
+ resolution: "babel-plugin-polyfill-regenerator@npm:0.6.5"
dependencies:
- "@babel/helper-define-polyfill-provider": ^0.6.3
+ "@babel/helper-define-polyfill-provider": ^0.6.5
peerDependencies:
"@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
- checksum: d12696e6b3f280eb78fac551619ca4389262db62c7352cd54bf679d830df8b35596eef2de77cf00db6648eada1c99d49c4f40636dbc9c335a1e5420cfef96750
+ checksum: ed1932fa9a31e0752fd10ebf48ab9513a654987cab1182890839523cb898559d24ae0578fdc475d9f995390420e64eeaa4b0427045b56949dace3c725bc66dbb
languageName: node
linkType: hard
-"babel-plugin-syntax-hermes-parser@npm:0.25.1":
- version: 0.25.1
- resolution: "babel-plugin-syntax-hermes-parser@npm:0.25.1"
+"babel-plugin-syntax-hermes-parser@npm:0.28.1":
+ version: 0.28.1
+ resolution: "babel-plugin-syntax-hermes-parser@npm:0.28.1"
dependencies:
- hermes-parser: 0.25.1
- checksum: dc80fafde1aed8e60cf86ecd2e9920e7f35ffe02b33bd4e772daaa786167bcf508aac3fc1aea425ff4c7a0be94d82528f3fe8619b7f41dac853264272d640c04
+ hermes-parser: 0.28.1
+ checksum: 2cbc921e663463480ead9ccc8bb229a5196032367ba2b5ccb18a44faa3afa84b4dc493297749983b9a837a3d76b0b123664aecc06f9122618c3246f03e076a9d
languageName: node
linkType: hard
@@ -4155,6 +3833,26 @@ __metadata:
languageName: node
linkType: hard
+"body-parser@npm:^1.20.3":
+ version: 1.20.3
+ resolution: "body-parser@npm:1.20.3"
+ dependencies:
+ bytes: 3.1.2
+ content-type: ~1.0.5
+ debug: 2.6.9
+ depd: 2.0.0
+ destroy: 1.2.0
+ http-errors: 2.0.0
+ iconv-lite: 0.4.24
+ on-finished: 2.4.1
+ qs: 6.13.0
+ raw-body: 2.5.2
+ type-is: ~1.6.18
+ unpipe: 1.0.0
+ checksum: 1a35c59a6be8d852b00946330141c4f142c6af0f970faa87f10ad74f1ee7118078056706a05ae3093c54dabca9cd3770fa62a170a85801da1a4324f04381167d
+ languageName: node
+ linkType: hard
+
"boxen@npm:^7.0.0":
version: 7.1.1
resolution: "boxen@npm:7.1.1"
@@ -4181,21 +3879,21 @@ __metadata:
linkType: hard
"brace-expansion@npm:^1.1.7":
- version: 1.1.11
- resolution: "brace-expansion@npm:1.1.11"
+ version: 1.1.12
+ resolution: "brace-expansion@npm:1.1.12"
dependencies:
balanced-match: ^1.0.0
concat-map: 0.0.1
- checksum: faf34a7bb0c3fcf4b59c7808bc5d2a96a40988addf2e7e09dfbb67a2251800e0d14cd2bfc1aa79174f2f5095c54ff27f46fb1289fe2d77dac755b5eb3434cc07
+ checksum: 12cb6d6310629e3048cadb003e1aca4d8c9bb5c67c3c321bafdd7e7a50155de081f78ea3e0ed92ecc75a9015e784f301efc8132383132f4f7904ad1ac529c562
languageName: node
linkType: hard
"brace-expansion@npm:^2.0.1":
- version: 2.0.1
- resolution: "brace-expansion@npm:2.0.1"
+ version: 2.0.2
+ resolution: "brace-expansion@npm:2.0.2"
dependencies:
balanced-match: ^1.0.0
- checksum: a61e7cd2e8a8505e9f0036b3b6108ba5e926b4b55089eeb5550cd04a471fe216c96d4fe7e4c7f995c728c554ae20ddfc4244cad10aef255e72b62930afd233d1
+ checksum: 01dff195e3646bc4b0d27b63d9bab84d2ebc06121ff5013ad6e5356daa5a9d6b60fa26cf73c74797f2dc3fbec112af13578d51f75228c1112b26c790a87b0488
languageName: node
linkType: hard
@@ -4208,17 +3906,17 @@ __metadata:
languageName: node
linkType: hard
-"browserslist@npm:^4.20.4, browserslist@npm:^4.24.0, browserslist@npm:^4.24.4":
- version: 4.24.4
- resolution: "browserslist@npm:4.24.4"
+"browserslist@npm:^4.20.4, browserslist@npm:^4.24.0, browserslist@npm:^4.25.1":
+ version: 4.25.1
+ resolution: "browserslist@npm:4.25.1"
dependencies:
- caniuse-lite: ^1.0.30001688
- electron-to-chromium: ^1.5.73
+ caniuse-lite: ^1.0.30001726
+ electron-to-chromium: ^1.5.173
node-releases: ^2.0.19
- update-browserslist-db: ^1.1.1
+ update-browserslist-db: ^1.1.3
bin:
browserslist: cli.js
- checksum: 64074bf6cf0a9ae3094d753270e3eae9cf925149db45d646f0bc67bacc2e46d7ded64a4e835b95f5fdcf0350f63a83c3755b32f80831f643a47f0886deb8a065
+ checksum: 2a7e4317e809b09a436456221a1fcb8ccbd101bada187ed217f7a07a9e42ced822c7c86a0a4333d7d1b4e6e0c859d201732ffff1585d6bcacd8d226f6ddce7e3
languageName: node
linkType: hard
@@ -4413,10 +4111,10 @@ __metadata:
languageName: node
linkType: hard
-"caniuse-lite@npm:^1.0.30001688":
- version: 1.0.30001703
- resolution: "caniuse-lite@npm:1.0.30001703"
- checksum: f3c19e357df7f5ff480a8a24a61213d1442bf3df9e2f9563a47f4c95e9c08ea7d3c8faa965bc84dcc57c569542584c965b30d552d9b35e421f352c974980de17
+"caniuse-lite@npm:^1.0.30001726":
+ version: 1.0.30001727
+ resolution: "caniuse-lite@npm:1.0.30001727"
+ checksum: 2bc6112f242701198a99c17713d4409be9b404d09005f34f351ec29a4ea46c054e7aa4982bc16f06b81b7a375cbc61c937e89650170cbce84db772a376ed3963
languageName: node
linkType: hard
@@ -4783,6 +4481,13 @@ __metadata:
languageName: node
linkType: hard
+"content-type@npm:~1.0.5":
+ version: 1.0.5
+ resolution: "content-type@npm:1.0.5"
+ checksum: 566271e0a251642254cde0f845f9dd4f9856e52d988f4eb0d0dcffbb7a1f8ec98de7a5215fc628f3bce30fe2fb6fd2bc064b562d721658c59b544e2d34ea2766
+ languageName: node
+ linkType: hard
+
"convert-source-map@npm:^2.0.0":
version: 2.0.0
resolution: "convert-source-map@npm:2.0.0"
@@ -4790,12 +4495,12 @@ __metadata:
languageName: node
linkType: hard
-"core-js-compat@npm:^3.38.0, core-js-compat@npm:^3.40.0":
- version: 3.41.0
- resolution: "core-js-compat@npm:3.41.0"
+"core-js-compat@npm:^3.43.0":
+ version: 3.44.0
+ resolution: "core-js-compat@npm:3.44.0"
dependencies:
- browserslist: ^4.24.4
- checksum: 060f6d6ede3a5f201462ae6f54975ca4eefdb731c4983950c54bc81411fc1c2865a9e916091d034b5229d4dcb79e0f5f8aeda5eeb7a31d940550a5c14e8e8729
+ browserslist: ^4.25.1
+ checksum: 5f9196a0793060bda0e019c2462df43502b145ada8b0d95a5affc6113d08e55a171227f92c7cc8dd6108037825eb0fee50f7784110de23bfd866dbdb67983d29
languageName: node
linkType: hard
@@ -4835,19 +4540,6 @@ __metadata:
languageName: node
linkType: hard
-"cosmiconfig@npm:^7.0.1":
- version: 7.1.0
- resolution: "cosmiconfig@npm:7.1.0"
- dependencies:
- "@types/parse-json": ^4.0.0
- import-fresh: ^3.2.1
- parse-json: ^5.0.0
- path-type: ^4.0.0
- yaml: ^1.10.0
- checksum: c53bf7befc1591b2651a22414a5e786cd5f2eeaa87f3678a3d49d6069835a9d8d1aef223728e98aa8fec9a95bf831120d245096db12abe019fecb51f5696c96f
- languageName: node
- linkType: hard
-
"cosmiconfig@npm:^9.0.0":
version: 9.0.0
resolution: "cosmiconfig@npm:9.0.0"
@@ -4972,15 +4664,15 @@ __metadata:
languageName: node
linkType: hard
-"debug@npm:4, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.4":
- version: 4.4.0
- resolution: "debug@npm:4.4.0"
+"debug@npm:4, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.4, debug@npm:^4.4.0, debug@npm:^4.4.1":
+ version: 4.4.1
+ resolution: "debug@npm:4.4.1"
dependencies:
ms: ^2.1.3
peerDependenciesMeta:
supports-color:
optional: true
- checksum: fb42df878dd0e22816fc56e1fdca9da73caa85212fbe40c868b1295a6878f9101ae684f4eeef516c13acfc700f5ea07f1136954f43d4cd2d477a811144136479
+ checksum: a43826a01cda685ee4cec00fb2d3322eaa90ccadbef60d9287debc2a886be3e835d9199c80070ede75a409ee57828c4c6cd80e4b154f2843f0dc95a570dc0729
languageName: node
linkType: hard
@@ -5032,14 +4724,14 @@ __metadata:
linkType: hard
"dedent@npm:^1.0.0":
- version: 1.5.3
- resolution: "dedent@npm:1.5.3"
+ version: 1.6.0
+ resolution: "dedent@npm:1.6.0"
peerDependencies:
babel-plugin-macros: ^3.1.0
peerDependenciesMeta:
babel-plugin-macros:
optional: true
- checksum: 045b595557b2a8ea2eb9b0b4623d764e9a87326486fe2b61191b4342ed93dc01245644d8a09f3108a50c0ee7965f1eedd92e4a3a503ed89ea8e810566ea27f9a
+ checksum: ecaa83968b3db4ffeadf8f679c01280f8679ec79993d7e203c0281d7926e883bb79f42b263ba0df1f78e146e4b0be1b9a5b922b1fe040cb89b09977bc9c25b38
languageName: node
linkType: hard
@@ -5290,10 +4982,10 @@ __metadata:
languageName: node
linkType: hard
-"electron-to-chromium@npm:^1.5.73":
- version: 1.5.114
- resolution: "electron-to-chromium@npm:1.5.114"
- checksum: af696acf7c57007e3362a0a7e5fb4613210d55d6bc7c7cfee32f4000aaa604a75fce41d12b081cab7d9757eefb44cafa69c17b6f8ea450d5da938c0bf84b5697
+"electron-to-chromium@npm:^1.5.173":
+ version: 1.5.182
+ resolution: "electron-to-chromium@npm:1.5.182"
+ checksum: 7c698db2733aea35cc76b3914af73ee46e4fe47009100a58e18313fca0b1179ddda3c37166354895765a918a2984cec2e18d4652c2f7b51dd76268ca84b718d3
languageName: node
linkType: hard
@@ -5349,11 +5041,11 @@ __metadata:
linkType: hard
"end-of-stream@npm:^1.1.0":
- version: 1.4.4
- resolution: "end-of-stream@npm:1.4.4"
+ version: 1.4.5
+ resolution: "end-of-stream@npm:1.4.5"
dependencies:
once: ^1.4.0
- checksum: 530a5a5a1e517e962854a31693dbb5c0b2fc40b46dad2a56a2deec656ca040631124f4795823acc68238147805f8b021abbe221f4afed5ef3c8e8efc2024908b
+ checksum: 1e0cfa6e7f49887544e03314f9dfc56a8cb6dde910cbb445983ecc2ff426fc05946df9d75d8a21a3a64f2cecfe1bf88f773952029f46756b2ed64a24e95b1fb8
languageName: node
linkType: hard
@@ -5408,26 +5100,26 @@ __metadata:
languageName: node
linkType: hard
-"es-abstract@npm:^1.17.5, es-abstract@npm:^1.22.1, es-abstract@npm:^1.23.2, es-abstract@npm:^1.23.3, es-abstract@npm:^1.23.5, es-abstract@npm:^1.23.6, es-abstract@npm:^1.23.9":
- version: 1.23.9
- resolution: "es-abstract@npm:1.23.9"
+"es-abstract@npm:^1.17.5, es-abstract@npm:^1.22.1, es-abstract@npm:^1.23.2, es-abstract@npm:^1.23.3, es-abstract@npm:^1.23.5, es-abstract@npm:^1.23.6, es-abstract@npm:^1.23.9, es-abstract@npm:^1.24.0":
+ version: 1.24.0
+ resolution: "es-abstract@npm:1.24.0"
dependencies:
array-buffer-byte-length: ^1.0.2
arraybuffer.prototype.slice: ^1.0.4
available-typed-arrays: ^1.0.7
call-bind: ^1.0.8
- call-bound: ^1.0.3
+ call-bound: ^1.0.4
data-view-buffer: ^1.0.2
data-view-byte-length: ^1.0.2
data-view-byte-offset: ^1.0.1
es-define-property: ^1.0.1
es-errors: ^1.3.0
- es-object-atoms: ^1.0.0
+ es-object-atoms: ^1.1.1
es-set-tostringtag: ^2.1.0
es-to-primitive: ^1.3.0
function.prototype.name: ^1.1.8
- get-intrinsic: ^1.2.7
- get-proto: ^1.0.0
+ get-intrinsic: ^1.3.0
+ get-proto: ^1.0.1
get-symbol-description: ^1.1.0
globalthis: ^1.0.4
gopd: ^1.2.0
@@ -5439,21 +5131,24 @@ __metadata:
is-array-buffer: ^3.0.5
is-callable: ^1.2.7
is-data-view: ^1.0.2
+ is-negative-zero: ^2.0.3
is-regex: ^1.2.1
+ is-set: ^2.0.3
is-shared-array-buffer: ^1.0.4
is-string: ^1.1.1
is-typed-array: ^1.1.15
- is-weakref: ^1.1.0
+ is-weakref: ^1.1.1
math-intrinsics: ^1.1.0
- object-inspect: ^1.13.3
+ object-inspect: ^1.13.4
object-keys: ^1.1.1
object.assign: ^4.1.7
own-keys: ^1.0.1
- regexp.prototype.flags: ^1.5.3
+ regexp.prototype.flags: ^1.5.4
safe-array-concat: ^1.1.3
safe-push-apply: ^1.0.0
safe-regex-test: ^1.1.0
set-proto: ^1.0.0
+ stop-iteration-iterator: ^1.1.0
string.prototype.trim: ^1.2.10
string.prototype.trimend: ^1.0.9
string.prototype.trimstart: ^1.0.8
@@ -5462,8 +5157,8 @@ __metadata:
typed-array-byte-offset: ^1.0.4
typed-array-length: ^1.0.7
unbox-primitive: ^1.1.0
- which-typed-array: ^1.1.18
- checksum: f3ee2614159ca197f97414ab36e3f406ee748ce2f97ffbf09e420726db5a442ce13f1e574601468bff6e6eb81588e6c9ce1ac6c03868a37c7cd48ac679f8485a
+ which-typed-array: ^1.1.19
+ checksum: 06b3d605e56e3da9d16d4db2629a42dac1ca31f2961a41d15c860422a266115e865b43e82d6b9da81a0fabbbb65ebc12fb68b0b755bc9dbddacb6bf7450e96df
languageName: node
linkType: hard
@@ -5703,31 +5398,31 @@ __metadata:
linkType: hard
"eslint-plugin-prettier@npm:^5.0.1":
- version: 5.2.3
- resolution: "eslint-plugin-prettier@npm:5.2.3"
+ version: 5.5.1
+ resolution: "eslint-plugin-prettier@npm:5.5.1"
dependencies:
prettier-linter-helpers: ^1.0.0
- synckit: ^0.9.1
+ synckit: ^0.11.7
peerDependencies:
"@types/eslint": ">=8.0.0"
eslint: ">=8.0.0"
- eslint-config-prettier: "*"
+ eslint-config-prettier: ">= 7.0.0 <10.0.0 || >=10.1.0"
prettier: ">=3.0.0"
peerDependenciesMeta:
"@types/eslint":
optional: true
eslint-config-prettier:
optional: true
- checksum: 3f3210ed6a52eb2e7cd10a635857328136149c79240627b8f5dbc6c5271d5020b17ab2e7067acc0a82fec686fa35ed182dd8d67feca41818d6a7810bf6dad2b6
+ checksum: 913ecebfeab932ed510d8608875594d2529dc28957eed0d56a896e9862257031038a9f0921dcf198d61475ef0f5904332a7f1839be387d0a314c91f3cfbf3817
languageName: node
linkType: hard
-"eslint-plugin-react-hooks@npm:^4.6.0":
- version: 4.6.2
- resolution: "eslint-plugin-react-hooks@npm:4.6.2"
+"eslint-plugin-react-hooks@npm:^5.2.0":
+ version: 5.2.0
+ resolution: "eslint-plugin-react-hooks@npm:5.2.0"
peerDependencies:
- eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
- checksum: 395c433610f59577cfcf3f2e42bcb130436c8a0b3777ac64f441d88c5275f4fcfc89094cedab270f2822daf29af1079151a7a6579a8e9ea8cee66540ba0384c4
+ eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0
+ checksum: 5920736a78c0075488e7e30e04fbe5dba5b6b5a6c8c4b5742fdae6f9b8adf4ee387bc45dc6e03b4012865e6fd39d134da7b83a40f57c90cc9eecf80692824e3a
languageName: node
linkType: hard
@@ -5750,8 +5445,8 @@ __metadata:
linkType: hard
"eslint-plugin-react@npm:^7.30.1":
- version: 7.37.4
- resolution: "eslint-plugin-react@npm:7.37.4"
+ version: 7.37.5
+ resolution: "eslint-plugin-react@npm:7.37.5"
dependencies:
array-includes: ^3.1.8
array.prototype.findlast: ^1.2.5
@@ -5763,7 +5458,7 @@ __metadata:
hasown: ^2.0.2
jsx-ast-utils: ^2.4.1 || ^3.0.0
minimatch: ^3.1.2
- object.entries: ^1.1.8
+ object.entries: ^1.1.9
object.fromentries: ^2.0.8
object.values: ^1.2.1
prop-types: ^15.8.1
@@ -5773,7 +5468,7 @@ __metadata:
string.prototype.repeat: ^1.0.0
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7
- checksum: 8a37bdc9b347bf3a1273fef73dfbc39279cc3e58441940a5e13b3ba4e82b34132d1d1172db9d6746f153ee981280bd6bd06a9065fb453388c68f4bebe0d9f839
+ checksum: 8675e7558e646e3c2fcb04bb60cfe416000b831ef0b363f0117838f5bfc799156113cb06058ad4d4b39fc730903b7360b05038da11093064ca37caf76b7cf2ca
languageName: node
linkType: hard
@@ -5926,7 +5621,7 @@ __metadata:
languageName: node
linkType: hard
-"event-target-shim@npm:^5.0.0, event-target-shim@npm:^5.0.1":
+"event-target-shim@npm:^5.0.0":
version: 5.0.1
resolution: "event-target-shim@npm:5.0.1"
checksum: 1ffe3bb22a6d51bdeb6bf6f7cf97d2ff4a74b017ad12284cc9e6a279e727dc30a5de6bb613e5596ff4dc3e517841339ad09a7eec44266eccb1aa201a30448166
@@ -6092,6 +5787,18 @@ __metadata:
languageName: node
linkType: hard
+"fdir@npm:^6.4.4":
+ version: 6.4.6
+ resolution: "fdir@npm:6.4.6"
+ peerDependencies:
+ picomatch: ^3 || ^4
+ peerDependenciesMeta:
+ picomatch:
+ optional: true
+ checksum: fe9f3014901d023cf631831dcb9eae5447f4d7f69218001dd01ecf007eccc40f6c129a04411b5cc273a5f93c14e02e971e17270afc9022041c80be924091eb6f
+ languageName: node
+ linkType: hard
+
"fetch-blob@npm:^3.1.2, fetch-blob@npm:^3.1.4":
version: 3.2.0
resolution: "fetch-blob@npm:3.2.0"
@@ -6227,9 +5934,9 @@ __metadata:
linkType: hard
"flow-parser@npm:0.*":
- version: 0.263.0
- resolution: "flow-parser@npm:0.263.0"
- checksum: ef69211b079280742708bbfd8602bc69f2907e7af0927518e2f65d398d518b6122366073a51af3a291f639765ca4302f4f46e20fb469638b7c45a343f018808e
+ version: 0.275.0
+ resolution: "flow-parser@npm:0.275.0"
+ checksum: d22d46844c51d7d30245294d8168ef1d3ed5259881512aeafbfa161c71c5d3832b13f4852fbf421eb127de5c13b88d997022a361494c8d73c12c5f0a86f89572
languageName: node
linkType: hard
@@ -6444,13 +6151,13 @@ __metadata:
linkType: hard
"get-uri@npm:^6.0.1":
- version: 6.0.4
- resolution: "get-uri@npm:6.0.4"
+ version: 6.0.5
+ resolution: "get-uri@npm:6.0.5"
dependencies:
basic-ftp: ^5.0.2
data-uri-to-buffer: ^6.0.2
debug: ^4.3.4
- checksum: 7eae81655e0c8cee250d29c189e09030f37a2d37987298325709affb9408de448bf2dc43ee9a59acd21c1f100c3ca711d0446b4e689e9590c25774ecc59f0442
+ checksum: aef94dbecde44bc9cd23f5c1b6af5bf772a3d16612c0fc37d3a4056ffd202f2cdd329746d4fdc2124813ea6c8b1c5279f3749d27226a2b161df43dbcb70082e3
languageName: node
linkType: hard
@@ -6491,7 +6198,7 @@ __metadata:
languageName: node
linkType: hard
-"glob@npm:^10.2.2, glob@npm:^10.3.10, glob@npm:^10.3.7":
+"glob@npm:^10.2.2":
version: 10.4.5
resolution: "glob@npm:10.4.5"
dependencies:
@@ -6555,13 +6262,6 @@ __metadata:
languageName: node
linkType: hard
-"globals@npm:^11.1.0":
- version: 11.12.0
- resolution: "globals@npm:11.12.0"
- checksum: 67051a45eca3db904aee189dfc7cd53c20c7d881679c93f6146ddd4c9f4ab2268e68a919df740d39c71f4445d2b38ee360fc234428baea1dbdfe68bbcb46979e
- languageName: node
- linkType: hard
-
"globals@npm:^13.19.0":
version: 13.24.0
resolution: "globals@npm:13.24.0"
@@ -6752,10 +6452,17 @@ __metadata:
languageName: node
linkType: hard
-"hermes-estree@npm:0.25.1":
- version: 0.25.1
- resolution: "hermes-estree@npm:0.25.1"
- checksum: 97f42e9178dff61db017810b4f79f5a2cdbb3cde94b7d99ba84ed632ee2adfcae2244555587951b3151fc036676c68f48f57fbe2b49e253eb1f3f904d284a8b0
+"hermes-estree@npm:0.28.1":
+ version: 0.28.1
+ resolution: "hermes-estree@npm:0.28.1"
+ checksum: 4f7b4e0491352012a6cb799315a0aae16abdcc894335e901552ee6c64732d0cf06f0913c579036f9f452b7c4ad9bb0b6ab14e510c13bd7e5997385f77633ab00
+ languageName: node
+ linkType: hard
+
+"hermes-estree@npm:0.29.1":
+ version: 0.29.1
+ resolution: "hermes-estree@npm:0.29.1"
+ checksum: a72fe490d99ba2f56b3e22f3d050ca7757cc8dc9ebcb9d907104e46aaabdea9d32b445f73cca724a2537090fad3dde3cce0dc733bad6d7b3930c6bcde484d45c
languageName: node
linkType: hard
@@ -6768,12 +6475,21 @@ __metadata:
languageName: node
linkType: hard
-"hermes-parser@npm:0.25.1":
- version: 0.25.1
- resolution: "hermes-parser@npm:0.25.1"
+"hermes-parser@npm:0.28.1":
+ version: 0.28.1
+ resolution: "hermes-parser@npm:0.28.1"
+ dependencies:
+ hermes-estree: 0.28.1
+ checksum: 0d95280d527e1ad46e8caacd56b24d07e4aec39704de86cf164600f2c4fb00f406dd74a37b2103433ef7ec388a549072da20438e224bd47def21f973c36aab7d
+ languageName: node
+ linkType: hard
+
+"hermes-parser@npm:0.29.1":
+ version: 0.29.1
+ resolution: "hermes-parser@npm:0.29.1"
dependencies:
- hermes-estree: 0.25.1
- checksum: 4edcfaa3030931343b540182b83c432aba4cdcb1925952521ab4cfb7ab90c2c1543dfcb042ccd51d5e81e4bfe2809420e85902c2ff95ef7c6c64644ce17138ea
+ hermes-estree: 0.29.1
+ checksum: 3a7cd5cbdb191579f521dcb17edf199e24631314b9f69d043007e91762b53cd1f38eeb7688571f5be378b1c118e99af42040139e5f00e74a7cfd5c52c9d262e0
languageName: node
linkType: hard
@@ -6794,9 +6510,9 @@ __metadata:
linkType: hard
"http-cache-semantics@npm:^4.1.1":
- version: 4.1.1
- resolution: "http-cache-semantics@npm:4.1.1"
- checksum: 83ac0bc60b17a3a36f9953e7be55e5c8f41acc61b22583060e8dedc9dd5e3607c823a88d0926f9150e571f90946835c7fe150732801010845c72cd8bbff1a236
+ version: 4.2.0
+ resolution: "http-cache-semantics@npm:4.2.0"
+ checksum: 7a7246ddfce629f96832791176fd643589d954e6f3b49548dadb4290451961237fab8fcea41cd2008fe819d95b41c1e8b97f47d088afc0a1c81705287b4ddbcc
languageName: node
linkType: hard
@@ -6833,7 +6549,7 @@ __metadata:
languageName: node
linkType: hard
-"https-proxy-agent@npm:^7.0.1, https-proxy-agent@npm:^7.0.2, https-proxy-agent@npm:^7.0.6":
+"https-proxy-agent@npm:^7.0.1, https-proxy-agent@npm:^7.0.2, https-proxy-agent@npm:^7.0.5, https-proxy-agent@npm:^7.0.6":
version: 7.0.6
resolution: "https-proxy-agent@npm:7.0.6"
dependencies:
@@ -6864,7 +6580,7 @@ __metadata:
languageName: node
linkType: hard
-"iconv-lite@npm:^0.4.24":
+"iconv-lite@npm:0.4.24, iconv-lite@npm:^0.4.24":
version: 0.4.24
resolution: "iconv-lite@npm:0.4.24"
dependencies:
@@ -6897,13 +6613,13 @@ __metadata:
linkType: hard
"image-size@npm:^1.0.2":
- version: 1.2.0
- resolution: "image-size@npm:1.2.0"
+ version: 1.2.1
+ resolution: "image-size@npm:1.2.1"
dependencies:
queue: 6.0.2
bin:
image-size: bin/image-size.js
- checksum: 6264ae22ea6f349480c5305f84cd1e64f9757442abf4baac79e29519cba38f7ccab90488996e5e4d0c232b2f44dc720576fdf3e7e63c161e49eb1d099e563f82
+ checksum: 8601ddd4edc1db16f097f5cf585c23214e29c3b8f4d8a8f8d59b8e3bae2338c8a5073236bfff421d8541091a98a38b802ed049203c745286a69d1aac4e5bc4c7
languageName: node
linkType: hard
@@ -7328,6 +7044,13 @@ __metadata:
languageName: node
linkType: hard
+"is-negative-zero@npm:^2.0.3":
+ version: 2.0.3
+ resolution: "is-negative-zero@npm:2.0.3"
+ checksum: c1e6b23d2070c0539d7b36022d5a94407132411d01aba39ec549af824231f3804b1aea90b5e4e58e807a65d23ceb538ed6e355ce76b267bdd86edb757ffcbdcd
+ languageName: node
+ linkType: hard
+
"is-npm@npm:^6.0.0":
version: 6.0.0
resolution: "is-npm@npm:6.0.0"
@@ -7537,7 +7260,7 @@ __metadata:
languageName: node
linkType: hard
-"is-weakref@npm:^1.0.2, is-weakref@npm:^1.1.0":
+"is-weakref@npm:^1.0.2, is-weakref@npm:^1.1.1":
version: 1.1.1
resolution: "is-weakref@npm:1.1.1"
dependencies:
@@ -7880,7 +7603,7 @@ __metadata:
languageName: node
linkType: hard
-"jest-environment-node@npm:^29.6.3, jest-environment-node@npm:^29.7.0":
+"jest-environment-node@npm:^29.7.0":
version: 29.7.0
resolution: "jest-environment-node@npm:29.7.0"
dependencies:
@@ -8182,17 +7905,6 @@ __metadata:
languageName: node
linkType: hard
-"jetifier@npm:^2.0.0":
- version: 2.0.0
- resolution: "jetifier@npm:2.0.0"
- bin:
- jetifier: bin/jetify
- jetifier-standalone: bin/jetifier-standalone
- jetify: bin/jetify
- checksum: 57886c2bb7eddd1c697f0cd8f54162c037a50688d55d994a88918ca2018c3996fe6b5e9a56a57b067348260bb728e71d36e0d28d5dba87316fdb3b227d29af0e
- languageName: node
- linkType: hard
-
"joi@npm:^17.2.1":
version: 17.13.3
resolution: "joi@npm:17.13.3"
@@ -8243,13 +7955,6 @@ __metadata:
languageName: node
linkType: hard
-"jsc-android@npm:^250231.0.0":
- version: 250231.0.0
- resolution: "jsc-android@npm:250231.0.0"
- checksum: 6c3f0f6f02fa37a19935b2fbe651e9d6ecc370eb30f2ecee76379337bbf084abb568a1ef1133fe622c5b76f43cf54bb7716f92a94dca010985da38edc48841e2
- languageName: node
- linkType: hard
-
"jsc-safe-url@npm:^0.2.2":
version: 0.2.4
resolution: "jsc-safe-url@npm:0.2.4"
@@ -8288,39 +7993,6 @@ __metadata:
languageName: node
linkType: hard
-"jscodeshift@npm:^17.0.0":
- version: 17.1.2
- resolution: "jscodeshift@npm:17.1.2"
- dependencies:
- "@babel/core": ^7.24.7
- "@babel/parser": ^7.24.7
- "@babel/plugin-transform-class-properties": ^7.24.7
- "@babel/plugin-transform-modules-commonjs": ^7.24.7
- "@babel/plugin-transform-nullish-coalescing-operator": ^7.24.7
- "@babel/plugin-transform-optional-chaining": ^7.24.7
- "@babel/plugin-transform-private-methods": ^7.24.7
- "@babel/preset-flow": ^7.24.7
- "@babel/preset-typescript": ^7.24.7
- "@babel/register": ^7.24.6
- flow-parser: 0.*
- graceful-fs: ^4.2.4
- micromatch: ^4.0.7
- neo-async: ^2.5.0
- picocolors: ^1.0.1
- recast: ^0.23.9
- tmp: ^0.2.3
- write-file-atomic: ^5.0.1
- peerDependencies:
- "@babel/preset-env": ^7.1.6
- peerDependenciesMeta:
- "@babel/preset-env":
- optional: true
- bin:
- jscodeshift: bin/jscodeshift.js
- checksum: b4e04a950c416a3f071d847d3c9446996ddef67876cec18d99acbf3a640e9d5a18982bb8da306b454ad16ab63206aac31d16c16e8042fda85025b7366847984e
- languageName: node
- linkType: hard
-
"jsesc@npm:^3.0.2":
version: 3.1.0
resolution: "jsesc@npm:3.1.0"
@@ -8459,6 +8131,16 @@ __metadata:
languageName: node
linkType: hard
+"launch-editor@npm:^2.9.1":
+ version: 2.10.0
+ resolution: "launch-editor@npm:2.10.0"
+ dependencies:
+ picocolors: ^1.0.0
+ shell-quote: ^1.8.1
+ checksum: 0cd219f98a8be1cedc73119c1a18ff232eb1386dcc0f4e710b21234e62bf55513342a3e0939cd67c3d920fc7d714457876bc782a5b17e03f59acbbafd23c5f50
+ languageName: node
+ linkType: hard
+
"leven@npm:^3.1.0":
version: 3.1.0
resolution: "leven@npm:3.1.0"
@@ -8617,7 +8299,7 @@ __metadata:
languageName: node
linkType: hard
-"loose-envify@npm:^1.0.0, loose-envify@npm:^1.1.0, loose-envify@npm:^1.4.0":
+"loose-envify@npm:^1.0.0, loose-envify@npm:^1.4.0":
version: 1.4.0
resolution: "loose-envify@npm:1.4.0"
dependencies:
@@ -8668,9 +8350,9 @@ __metadata:
linkType: hard
"macos-release@npm:^3.1.0":
- version: 3.3.0
- resolution: "macos-release@npm:3.3.0"
- checksum: 78a8ba70033a6a546537a04ba4a8a7e6daf00378d0a6cbdb7e8d09abdfab79f61a0da52fe6875d833c090e1d42a80964c349c96a735117b3a2bb1d278a86e563
+ version: 3.4.0
+ resolution: "macos-release@npm:3.4.0"
+ checksum: f4c0cb8b3f93b05d73c502b4bbe2b811c44facfc9bd072c13a30ff2a8ba1cad5d9de517d10be8b31e2b917643245a81587a2eec8300e66a7364419d11402ab02
languageName: node
linkType: hard
@@ -8736,9 +8418,9 @@ __metadata:
linkType: hard
"marky@npm:^1.2.2":
- version: 1.2.5
- resolution: "marky@npm:1.2.5"
- checksum: 823b946677749551cdfc3b5221685478b5d1b9cc0dc03eff977c6f9a615fb05c67559f9556cb3c0fcb941a9ea0e195e37befd83026443396ccee8b724f54f4c5
+ version: 1.3.0
+ resolution: "marky@npm:1.3.0"
+ checksum: c25fe1d45525e317f89d116e87a50d385cc7e7d0d418548e75334273cb97990db37228c365718b5572077c80f22a599c732ccbd3da9728cd806465d63c786eda
languageName: node
linkType: hard
@@ -8749,6 +8431,13 @@ __metadata:
languageName: node
linkType: hard
+"media-typer@npm:0.3.0":
+ version: 0.3.0
+ resolution: "media-typer@npm:0.3.0"
+ checksum: af1b38516c28ec95d6b0826f6c8f276c58aec391f76be42aa07646b4e39d317723e869700933ca6995b056db4b09a78c92d5440dc23657e6764be5d28874bba1
+ languageName: node
+ linkType: hard
+
"memoize-one@npm:^5.0.0":
version: 5.2.1
resolution: "memoize-one@npm:5.2.1"
@@ -8802,15 +8491,15 @@ __metadata:
languageName: node
linkType: hard
-"metro-babel-transformer@npm:0.81.3":
- version: 0.81.3
- resolution: "metro-babel-transformer@npm:0.81.3"
+"metro-babel-transformer@npm:0.82.5":
+ version: 0.82.5
+ resolution: "metro-babel-transformer@npm:0.82.5"
dependencies:
"@babel/core": ^7.25.2
flow-enums-runtime: ^0.0.6
- hermes-parser: 0.25.1
+ hermes-parser: 0.29.1
nullthrows: ^1.1.1
- checksum: d893fa1a73f7a337772acb308a03f2223f0760fabd573c542dec1618f2bc7a0f45c2746586c5dce4ca1c7d941fde43b87cdfb35c0f37bcea0295c24fb7e16caa
+ checksum: 3a3a8a9404c74290b5687290236e242f7b4edb3bc25cad6afe2424ddab8632a657b55ccbbd49dfa9b26078b5f3184f00930b8aa8b50d7c922247fd7d63ada395
languageName: node
linkType: hard
@@ -8823,12 +8512,12 @@ __metadata:
languageName: node
linkType: hard
-"metro-cache-key@npm:0.81.3":
- version: 0.81.3
- resolution: "metro-cache-key@npm:0.81.3"
+"metro-cache-key@npm:0.82.5":
+ version: 0.82.5
+ resolution: "metro-cache-key@npm:0.82.5"
dependencies:
flow-enums-runtime: ^0.0.6
- checksum: dd524555179a1a31872e23b99b1172aa3b5c933d26a07911b84fd33cdb5742888d09b98c0a5f5b7a74667723c20181201f5d8f018dabe6dc6a31b897b1a36bb9
+ checksum: d5dcd86249905c7adad0375111a4bef395a5021df251a463f840eb21bf7b34f4e581ae919a88fb612a63c48a5f379ce50f104a576bd71e052693d89ae6a0d9f0
languageName: node
linkType: hard
@@ -8843,14 +8532,15 @@ __metadata:
languageName: node
linkType: hard
-"metro-cache@npm:0.81.3":
- version: 0.81.3
- resolution: "metro-cache@npm:0.81.3"
+"metro-cache@npm:0.82.5":
+ version: 0.82.5
+ resolution: "metro-cache@npm:0.82.5"
dependencies:
exponential-backoff: ^3.1.1
flow-enums-runtime: ^0.0.6
- metro-core: 0.81.3
- checksum: 9a45adb519e43e3fa09e2da186b3fe5a6a865f33276f7bd4dc1fc7d34368d2a2986b4610c3f34a5ee2c51db3f0711b258b0d65b994d2e82d105c1f3bd3ad0d01
+ https-proxy-agent: ^7.0.5
+ metro-core: 0.82.5
+ checksum: d0d193845063b1e1241a770d928630c68418b6bff2a25d7d14e71b88e905c640b65817ac069abf807b6e7c6db5470b8c52fe6236b3850ae55ce68e910747eb63
languageName: node
linkType: hard
@@ -8870,19 +8560,19 @@ __metadata:
languageName: node
linkType: hard
-"metro-config@npm:0.81.3, metro-config@npm:^0.81.0":
- version: 0.81.3
- resolution: "metro-config@npm:0.81.3"
+"metro-config@npm:0.82.5, metro-config@npm:^0.82.2":
+ version: 0.82.5
+ resolution: "metro-config@npm:0.82.5"
dependencies:
connect: ^3.6.5
cosmiconfig: ^5.0.5
flow-enums-runtime: ^0.0.6
jest-validate: ^29.7.0
- metro: 0.81.3
- metro-cache: 0.81.3
- metro-core: 0.81.3
- metro-runtime: 0.81.3
- checksum: e8d249b46ffec27ce51d93bba214cb1008e83df75ec14dcf03cb37aa06ecedb8585d7fe8c1185fe1650ed6d6e119ac6154cdb0e8ece4be84efeb1e91242ec317
+ metro: 0.82.5
+ metro-cache: 0.82.5
+ metro-core: 0.82.5
+ metro-runtime: 0.82.5
+ checksum: 641c88d795394e551fffe238670ad09f3c8637b45da767ee95c5b401e11b65d5a4e86694fb68bd13fde1fc148d9c4f738439a0a427fe5325bd36aa19ea7a5fc9
languageName: node
linkType: hard
@@ -8897,14 +8587,14 @@ __metadata:
languageName: node
linkType: hard
-"metro-core@npm:0.81.3, metro-core@npm:^0.81.0":
- version: 0.81.3
- resolution: "metro-core@npm:0.81.3"
+"metro-core@npm:0.82.5, metro-core@npm:^0.82.2":
+ version: 0.82.5
+ resolution: "metro-core@npm:0.82.5"
dependencies:
flow-enums-runtime: ^0.0.6
lodash.throttle: ^4.1.1
- metro-resolver: 0.81.3
- checksum: 778db2c71e88c0214b167bfb3af519d998fccb4471ad3e987aafab18d5d861c66c104bfca5f164054a1fe3e5a59c1e7a52c1dc4be735ffb9aa5ac7ca2be12c08
+ metro-resolver: 0.82.5
+ checksum: f6f0c91240ad4ff2ebd61e5cb23f433309fc82e8042e240da1347f8edf61cc6b893bd176cabecad0dc91d214dd315d501af21cb518459aeb0ed613881619b583
languageName: node
linkType: hard
@@ -8931,11 +8621,11 @@ __metadata:
languageName: node
linkType: hard
-"metro-file-map@npm:0.81.3":
- version: 0.81.3
- resolution: "metro-file-map@npm:0.81.3"
+"metro-file-map@npm:0.82.5":
+ version: 0.82.5
+ resolution: "metro-file-map@npm:0.82.5"
dependencies:
- debug: ^2.2.0
+ debug: ^4.4.0
fb-watchman: ^2.0.0
flow-enums-runtime: ^0.0.6
graceful-fs: ^4.2.4
@@ -8944,7 +8634,7 @@ __metadata:
micromatch: ^4.0.4
nullthrows: ^1.1.1
walker: ^1.0.7
- checksum: 4165cfb812da41859a604b16973db61b66456d4e6ecd6347d9de14ca3ebc75eb10dd2b565fe95bf3616eeada2faca2f5f8a9825acbd73f966dcea0a84057fdd9
+ checksum: 46bda99f0ae892071c1b48b09f884f017f48d564c30b2a1f858f6fae1c6c1848bbbce20f66a5be086d7e0acfec3d8c1ddbf69699aaf2829f10954ae39d8a27d7
languageName: node
linkType: hard
@@ -8958,13 +8648,13 @@ __metadata:
languageName: node
linkType: hard
-"metro-minify-terser@npm:0.81.3":
- version: 0.81.3
- resolution: "metro-minify-terser@npm:0.81.3"
+"metro-minify-terser@npm:0.82.5":
+ version: 0.82.5
+ resolution: "metro-minify-terser@npm:0.82.5"
dependencies:
flow-enums-runtime: ^0.0.6
terser: ^5.15.0
- checksum: 824c95e6500900647d1f142babe6e30098063972baa8623aa9a42ccdb52998dec7591cea322f6a188a4848a5e954044d71cea36611c01495c253d20c3df57256
+ checksum: 754c150f0928460e1254e90e4e11bd87e069a0b286d21906758cb71fb8b4ec50dc8f78337bf8a9f8a28ddbd34230f5c66dad0fecf18dbe49715bf1300e5318c2
languageName: node
linkType: hard
@@ -8977,12 +8667,12 @@ __metadata:
languageName: node
linkType: hard
-"metro-resolver@npm:0.81.3":
- version: 0.81.3
- resolution: "metro-resolver@npm:0.81.3"
+"metro-resolver@npm:0.82.5":
+ version: 0.82.5
+ resolution: "metro-resolver@npm:0.82.5"
dependencies:
flow-enums-runtime: ^0.0.6
- checksum: bca83a3a6088ef5fbecd70846adffabe8059249d94520cf9f35b14e10155c8a8805ed094e28b978be21f44cb6fea6e90e6a604bcec4112b5927c7bd1b1b3d6be
+ checksum: d1f7b57687c9cbb100114474689fee2fcfb86428a1228499b28391d16378573ac0f07c750874a2d75eabe237d67eb32a5c947bbbd70cd851885f1f6b13992472
languageName: node
linkType: hard
@@ -8996,13 +8686,13 @@ __metadata:
languageName: node
linkType: hard
-"metro-runtime@npm:0.81.3, metro-runtime@npm:^0.81.0":
- version: 0.81.3
- resolution: "metro-runtime@npm:0.81.3"
+"metro-runtime@npm:0.82.5, metro-runtime@npm:^0.82.2":
+ version: 0.82.5
+ resolution: "metro-runtime@npm:0.82.5"
dependencies:
"@babel/runtime": ^7.25.0
flow-enums-runtime: ^0.0.6
- checksum: 8c7f71e36d3ecf9534d69fcd972f9db8376331a3819eadaa7296b821751da6076d6d515c123a142cc1cb7ae14dc97aef165dbee71bd8078be7d130cb63a7e7e4
+ checksum: 931c2b581ac1527899cfec6b9c4bbbac75545c78bf192abd8efddd4dbff481b052513857c8544507e7900e7c06f08a8da75e16c864cd86ec3a8c3d6c05738dae
languageName: node
linkType: hard
@@ -9023,21 +8713,21 @@ __metadata:
languageName: node
linkType: hard
-"metro-source-map@npm:0.81.3, metro-source-map@npm:^0.81.0":
- version: 0.81.3
- resolution: "metro-source-map@npm:0.81.3"
+"metro-source-map@npm:0.82.5, metro-source-map@npm:^0.82.2":
+ version: 0.82.5
+ resolution: "metro-source-map@npm:0.82.5"
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.81.3
+ metro-symbolicate: 0.82.5
nullthrows: ^1.1.1
- ob1: 0.81.3
+ ob1: 0.82.5
source-map: ^0.5.6
vlq: ^1.0.0
- checksum: 83838e74342e034f834d24cbf83aae5ab82a420cd4f16002656ffe630515282d02dbb5e8b1163343f93c64d54b593d73a3bf2192024f40d4901f7f90a5378fc8
+ checksum: 1bb53abe636524593207c578bfd0e15f47f4e15db919793a49b89359726d043cd69107244b6e1c2c8194983b8df7faa8b56ffa73a5f81c0fefc0cc1727907177
languageName: node
linkType: hard
@@ -9058,19 +8748,19 @@ __metadata:
languageName: node
linkType: hard
-"metro-symbolicate@npm:0.81.3":
- version: 0.81.3
- resolution: "metro-symbolicate@npm:0.81.3"
+"metro-symbolicate@npm:0.82.5":
+ version: 0.82.5
+ resolution: "metro-symbolicate@npm:0.82.5"
dependencies:
flow-enums-runtime: ^0.0.6
invariant: ^2.2.4
- metro-source-map: 0.81.3
+ metro-source-map: 0.82.5
nullthrows: ^1.1.1
source-map: ^0.5.6
vlq: ^1.0.0
bin:
metro-symbolicate: src/index.js
- checksum: 90b48bf47294f74a91fa073345a12d2f3c8eeb018b1cb615a31f0252bd449b089cf75f34162e70c6a487f2470b53f0628a5884cc45912c2b0a201ba21d5430e8
+ checksum: ae91be09cca42567ea3c2bee695e0db42512fc8bf28cf2aa281ae8043edc3bbddcadd0793b401b6bcb7e0cc1df1428647662462a8f515ab6c47420421b1e96f8
languageName: node
linkType: hard
@@ -9088,9 +8778,9 @@ __metadata:
languageName: node
linkType: hard
-"metro-transform-plugins@npm:0.81.3":
- version: 0.81.3
- resolution: "metro-transform-plugins@npm:0.81.3"
+"metro-transform-plugins@npm:0.82.5":
+ version: 0.82.5
+ resolution: "metro-transform-plugins@npm:0.82.5"
dependencies:
"@babel/core": ^7.25.2
"@babel/generator": ^7.25.0
@@ -9098,7 +8788,7 @@ __metadata:
"@babel/traverse": ^7.25.3
flow-enums-runtime: ^0.0.6
nullthrows: ^1.1.1
- checksum: 18a732d6aa14b0dd67729b845d4cbe0e8c8ace2f044b00260c2181a82cbbd45a95130699537db88fafc79530c79139bb4f319d435bfe04eeccc8ef88d6dcf9cd
+ checksum: 891838d529df2c3170614de9e55025d37fb799a8d444d9e898fc203496ec33620ad8066e0ab06244b7abb806ffdae4728b84047d0d01bceee877ea5d69240d04
languageName: node
linkType: hard
@@ -9123,24 +8813,24 @@ __metadata:
languageName: node
linkType: hard
-"metro-transform-worker@npm:0.81.3":
- version: 0.81.3
- resolution: "metro-transform-worker@npm:0.81.3"
+"metro-transform-worker@npm:0.82.5":
+ version: 0.82.5
+ resolution: "metro-transform-worker@npm:0.82.5"
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.81.3
- metro-babel-transformer: 0.81.3
- metro-cache: 0.81.3
- metro-cache-key: 0.81.3
- metro-minify-terser: 0.81.3
- metro-source-map: 0.81.3
- metro-transform-plugins: 0.81.3
+ 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
nullthrows: ^1.1.1
- checksum: 698ee7fa3a2a8fea069bc4e62054c50ecd672601ca3d973217f05a293329e70fbb6fd5b4a6cd2d9f17f49ee736aeece1581035162f4de750bddcccf6ec79f1bc
+ checksum: 653868f5fc525ad5b36181e7d1b3bb893c49ce6647791c21b585dd29cccc2f00e68d66b16e00eeb385fcb0c5f205a713aba0fe57971b1ab2bf150938cb820aaa
languageName: node
linkType: hard
@@ -9196,9 +8886,9 @@ __metadata:
languageName: node
linkType: hard
-"metro@npm:0.81.3, metro@npm:^0.81.0":
- version: 0.81.3
- resolution: "metro@npm:0.81.3"
+"metro@npm:0.82.5, metro@npm:^0.82.2":
+ version: 0.82.5
+ resolution: "metro@npm:0.82.5"
dependencies:
"@babel/code-frame": ^7.24.7
"@babel/core": ^7.25.2
@@ -9211,28 +8901,28 @@ __metadata:
chalk: ^4.0.0
ci-info: ^2.0.0
connect: ^3.6.5
- debug: ^2.2.0
+ debug: ^4.4.0
error-stack-parser: ^2.0.6
flow-enums-runtime: ^0.0.6
graceful-fs: ^4.2.4
- hermes-parser: 0.25.1
+ hermes-parser: 0.29.1
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.81.3
- metro-cache: 0.81.3
- metro-cache-key: 0.81.3
- metro-config: 0.81.3
- metro-core: 0.81.3
- metro-file-map: 0.81.3
- metro-resolver: 0.81.3
- metro-runtime: 0.81.3
- metro-source-map: 0.81.3
- metro-symbolicate: 0.81.3
- metro-transform-plugins: 0.81.3
- metro-transform-worker: 0.81.3
+ 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
mime-types: ^2.1.27
nullthrows: ^1.1.1
serialize-error: ^2.1.0
@@ -9242,11 +8932,11 @@ __metadata:
yargs: ^17.6.2
bin:
metro: src/cli.js
- checksum: 3306e453bbe315fb8646fea110607ee03c556556ec5317b85e76840911455d0d7d069e189d1949f2454182a34effb7389052d53eae8f3b2f26f5f146d47574b5
+ checksum: 391411e1be9463f4d52e804f0a9680e59be1cfc5c76ca890f3a9e9c014561da65bbf6e3ccc44f7f52601add064b3b70862b3813c963384a0df2218a345a304e5
languageName: node
linkType: hard
-"micromatch@npm:^4.0.4, micromatch@npm:^4.0.7, micromatch@npm:^4.0.8":
+"micromatch@npm:^4.0.4, micromatch@npm:^4.0.8":
version: 4.0.8
resolution: "micromatch@npm:4.0.8"
dependencies:
@@ -9264,13 +8954,13 @@ __metadata:
linkType: hard
"mime-db@npm:>= 1.43.0 < 2":
- version: 1.53.0
- resolution: "mime-db@npm:1.53.0"
- checksum: 3fd9380bdc0b085d0b56b580e4f89ca4fc3b823722310d795c248f0806b9a80afd5d8f4347f015ad943b9ecfa7cc0b71dffa0db96fa776d01a13474821a2c7fb
+ version: 1.54.0
+ resolution: "mime-db@npm:1.54.0"
+ checksum: e99aaf2f23f5bd607deb08c83faba5dd25cf2fec90a7cc5b92d8260867ee08dab65312e1a589e60093dc7796d41e5fae013268418482f1db4c7d52d0a0960ac9
languageName: node
linkType: hard
-"mime-types@npm:2.1.35, mime-types@npm:^2.1.27, mime-types@npm:~2.1.34":
+"mime-types@npm:2.1.35, mime-types@npm:^2.1.27, mime-types@npm:~2.1.24, mime-types@npm:~2.1.34":
version: 2.1.35
resolution: "mime-types@npm:2.1.35"
dependencies:
@@ -9461,12 +9151,11 @@ __metadata:
linkType: hard
"minizlib@npm:^3.0.1":
- version: 3.0.1
- resolution: "minizlib@npm:3.0.1"
+ version: 3.0.2
+ resolution: "minizlib@npm:3.0.2"
dependencies:
- minipass: ^7.0.4
- rimraf: ^5.0.5
- checksum: da0a53899252380475240c587e52c824f8998d9720982ba5c4693c68e89230718884a209858c156c6e08d51aad35700a3589987e540593c36f6713fe30cd7338
+ minipass: ^7.1.2
+ checksum: 493bed14dcb6118da7f8af356a8947cf1473289c09658e5aabd69a737800a8c3b1736fb7d7931b722268a9c9bc038a6d53c049b6a6af24b34a121823bb709996
languageName: node
linkType: hard
@@ -9509,12 +9198,12 @@ __metadata:
languageName: node
linkType: hard
-"nanoid@npm:3.3.8":
- version: 3.3.8
- resolution: "nanoid@npm:3.3.8"
+"nanoid@npm:^3.3.11":
+ version: 3.3.11
+ resolution: "nanoid@npm:3.3.11"
bin:
nanoid: bin/nanoid.cjs
- checksum: dfe0adbc0c77e9655b550c333075f51bb28cfc7568afbf3237249904f9c86c9aaaed1f113f0fddddba75673ee31c758c30c43d4414f014a52a7a626efc5958c9
+ checksum: 3be20d8866a57a6b6d218e82549711c8352ed969f9ab3c45379da28f405363ad4c9aeb0b39e9abc101a529ca65a72ff9502b00bf74a912c4b64a9d62dfd26c29
languageName: node
linkType: hard
@@ -9624,30 +9313,23 @@ __metadata:
languageName: node
linkType: hard
-"node-forge@npm:^1":
- version: 1.3.1
- resolution: "node-forge@npm:1.3.1"
- checksum: 08fb072d3d670599c89a1704b3e9c649ff1b998256737f0e06fbd1a5bf41cae4457ccaee32d95052d80bbafd9ffe01284e078c8071f0267dc9744e51c5ed42a9
- languageName: node
- linkType: hard
-
"node-gyp@npm:latest":
- version: 11.1.0
- resolution: "node-gyp@npm:11.1.0"
+ version: 11.2.0
+ resolution: "node-gyp@npm:11.2.0"
dependencies:
env-paths: ^2.2.0
exponential-backoff: ^3.1.1
- glob: ^10.3.10
graceful-fs: ^4.2.6
make-fetch-happen: ^14.0.3
nopt: ^8.0.0
proc-log: ^5.0.0
semver: ^7.3.5
tar: ^7.4.3
+ tinyglobby: ^0.2.12
which: ^5.0.0
bin:
node-gyp: bin/node-gyp.js
- checksum: b196da39a7a45f302d6e03cfdb579eeecbfffa1ab3796de45652c2c0dcbf46b83fde715b054e4d00aa53da5f33033ac5791e20cbb7cc11267dac4f8975ef276c
+ checksum: 2536282ba81f8a94b29482d3622b6ab298611440619e46de4512a6f32396a68b5530357c474b859787069d84a4c537d99e0c71078cce5b9f808bf84eeb78e8fb
languageName: node
linkType: hard
@@ -9703,9 +9385,9 @@ __metadata:
linkType: hard
"normalize-url@npm:^8.0.0":
- version: 8.0.1
- resolution: "normalize-url@npm:8.0.1"
- checksum: 43ea9ef0d6d135dd1556ab67aa4b74820f0d9d15aa504b59fa35647c729f1147dfce48d3ad504998fd1010f089cfb82c86c6d9126eb5c5bd2e9bd25f3a97749b
+ version: 8.0.2
+ resolution: "normalize-url@npm:8.0.2"
+ checksum: 66a0d42ae9e360654d8547a73f8c94fc8a39a975c7d3ae0b95e5927bd3bffc6dc4e20282afd6797c4a7ce6cf3847c37ce47125fde7b1a9e83d802c0e74830dee
languageName: node
linkType: hard
@@ -9743,12 +9425,12 @@ __metadata:
languageName: node
linkType: hard
-"ob1@npm:0.81.3":
- version: 0.81.3
- resolution: "ob1@npm:0.81.3"
+"ob1@npm:0.82.5":
+ version: 0.82.5
+ resolution: "ob1@npm:0.82.5"
dependencies:
flow-enums-runtime: ^0.0.6
- checksum: 562726c5bd82e002fd039f1a94df49424cf4e3ec24183448163b0043f064497bb06dc6cbb4b306f19868061dcfbcb0e3426afcd6acada76a3ff1b2d07c7d2a08
+ checksum: 3faa161e5b5307188b6bbbf7e21727b1e434b8f6c31c51386808b2efd5e7238cf85a7ce71416d9a3f073625afb5a2212f80ec267996dc88fe086944adbb525d9
languageName: node
linkType: hard
@@ -9759,7 +9441,7 @@ __metadata:
languageName: node
linkType: hard
-"object-inspect@npm:^1.13.3":
+"object-inspect@npm:^1.13.3, object-inspect@npm:^1.13.4":
version: 1.13.4
resolution: "object-inspect@npm:1.13.4"
checksum: 582810c6a8d2ef988ea0a39e69e115a138dad8f42dd445383b394877e5816eb4268489f316a6f74ee9c4e0a984b3eab1028e3e79d62b1ed67c726661d55c7a8b
@@ -9787,14 +9469,15 @@ __metadata:
languageName: node
linkType: hard
-"object.entries@npm:^1.1.8":
- version: 1.1.8
- resolution: "object.entries@npm:1.1.8"
+"object.entries@npm:^1.1.9":
+ version: 1.1.9
+ resolution: "object.entries@npm:1.1.9"
dependencies:
- call-bind: ^1.0.7
+ call-bind: ^1.0.8
+ call-bound: ^1.0.4
define-properties: ^1.2.1
- es-object-atoms: ^1.0.0
- checksum: 5314877cb637ef3437a30bba61d9bacdb3ce74bf73ac101518be0633c37840c8cc67407edb341f766e8093b3d7516d5c3358f25adfee4a2c697c0ec4c8491907
+ es-object-atoms: ^1.1.1
+ checksum: 0ab2ef331c4d6a53ff600a5d69182948d453107c3a1f7fd91bc29d387538c2aba21d04949a74f57c21907208b1f6fb175567fd1f39f1a7a4046ba1bca762fb41
languageName: node
linkType: hard
@@ -10129,7 +9812,7 @@ __metadata:
languageName: node
linkType: hard
-"parse-json@npm:^5.0.0, parse-json@npm:^5.2.0":
+"parse-json@npm:^5.2.0":
version: 5.2.0
resolution: "parse-json@npm:5.2.0"
dependencies:
@@ -10142,11 +9825,11 @@ __metadata:
linkType: hard
"parse-path@npm:^7.0.0":
- version: 7.0.1
- resolution: "parse-path@npm:7.0.1"
+ version: 7.1.0
+ resolution: "parse-path@npm:7.1.0"
dependencies:
protocols: ^2.0.0
- checksum: a3aa6776df12f26b09bc9f6e510f3e4b27d7a38d8f13081e696059d415eea2d5a073fc4a8d3b9d1b6818591a986198a7f0016ae70fe75410af4c439a3a12b56a
+ checksum: 1da6535a967b14911837bba98e5f8d16acb415b28753ff6225e3121dce71167a96c79278fbb631d695210dadae37462a9eff40d93b9c659cf1ce496fd5db9bb6
languageName: node
linkType: hard
@@ -10225,7 +9908,7 @@ __metadata:
languageName: node
linkType: hard
-"picocolors@npm:^1.0.0, picocolors@npm:^1.0.1, picocolors@npm:^1.1.1":
+"picocolors@npm:^1.0.0, picocolors@npm:^1.1.1":
version: 1.1.1
resolution: "picocolors@npm:1.1.1"
checksum: e1cf46bf84886c79055fdfa9dcb3e4711ad259949e3565154b004b260cd356c5d54b31a1437ce9782624bf766272fe6b0154f5f0c744fb7af5d454d2b60db045
@@ -10239,6 +9922,13 @@ __metadata:
languageName: node
linkType: hard
+"picomatch@npm:^4.0.2":
+ version: 4.0.2
+ resolution: "picomatch@npm:4.0.2"
+ checksum: a7a5188c954f82c6585720e9143297ccd0e35ad8072231608086ca950bee672d51b0ef676254af0788205e59bd4e4deb4e7708769226bed725bf13370a7d1464
+ languageName: node
+ linkType: hard
+
"pify@npm:^4.0.1":
version: 4.0.1
resolution: "pify@npm:4.0.1"
@@ -10247,9 +9937,9 @@ __metadata:
linkType: hard
"pirates@npm:^4.0.4, pirates@npm:^4.0.6":
- version: 4.0.6
- resolution: "pirates@npm:4.0.6"
- checksum: 46a65fefaf19c6f57460388a5af9ab81e3d7fd0e7bc44ca59d753cb5c4d0df97c6c6e583674869762101836d68675f027d60f841c105d72734df9dfca97cbcc6
+ version: 4.0.7
+ resolution: "pirates@npm:4.0.7"
+ checksum: 3dcbaff13c8b5bc158416feb6dc9e49e3c6be5fddc1ea078a05a73ef6b85d79324bbb1ef59b954cdeff000dbf000c1d39f32dc69310c7b78fbada5171b583e40
languageName: node
linkType: hard
@@ -10313,11 +10003,11 @@ __metadata:
linkType: hard
"prettier@npm:^3.0.3":
- version: 3.5.3
- resolution: "prettier@npm:3.5.3"
+ version: 3.6.2
+ resolution: "prettier@npm:3.6.2"
bin:
prettier: bin/prettier.cjs
- checksum: 61e97bb8e71a95d8f9c71f1fd5229c9aaa9d1e184dedb12399f76aa802fb6fdc8954ecac9df25a7f82ee7311cf8ddbd06baf5507388fc98e5b44036cc6a88a1b
+ checksum: 0206f5f437892e8858f298af8850bf9d0ef1c22e21107a213ba56bfb9c2387a2020bfda244a20161d8e3dad40c6b04101609a55d370dece53d0a31893b64f861
languageName: node
linkType: hard
@@ -10450,12 +10140,12 @@ __metadata:
linkType: hard
"pump@npm:^3.0.0":
- version: 3.0.2
- resolution: "pump@npm:3.0.2"
+ version: 3.0.3
+ resolution: "pump@npm:3.0.3"
dependencies:
end-of-stream: ^1.1.0
once: ^1.3.1
- checksum: e0c4216874b96bd25ddf31a0b61a5613e26cc7afa32379217cf39d3915b0509def3565f5f6968fafdad2894c8bbdbd67d340e84f3634b2a29b950cffb6442d9f
+ checksum: 52843fc933b838c0330f588388115a1b28ef2a5ffa7774709b142e35431e8ab0c2edec90de3fa34ebb72d59fef854f151eea7dfc211b6dcf586b384556bd2f39
languageName: node
linkType: hard
@@ -10482,6 +10172,15 @@ __metadata:
languageName: node
linkType: hard
+"qs@npm:6.13.0":
+ version: 6.13.0
+ resolution: "qs@npm:6.13.0"
+ dependencies:
+ side-channel: ^1.0.6
+ checksum: e9404dc0fc2849245107108ce9ec2766cde3be1b271de0bf1021d049dc5b98d1a2901e67b431ac5509f865420a7ed80b7acb3980099fe1c118a1c5d2e1432ad8
+ languageName: node
+ linkType: hard
+
"query-string@npm:^7.1.3":
version: 7.1.3
resolution: "query-string@npm:7.1.3"
@@ -10524,6 +10223,18 @@ __metadata:
languageName: node
linkType: hard
+"raw-body@npm:2.5.2":
+ version: 2.5.2
+ resolution: "raw-body@npm:2.5.2"
+ dependencies:
+ bytes: 3.1.2
+ http-errors: 2.0.0
+ iconv-lite: 0.4.24
+ unpipe: 1.0.0
+ checksum: ba1583c8d8a48e8fbb7a873fdbb2df66ea4ff83775421bfe21ee120140949ab048200668c47d9ae3880012f6e217052690628cf679ddfbd82c9fc9358d574676
+ languageName: node
+ linkType: hard
+
"rc@npm:1.2.8":
version: 1.2.8
resolution: "rc@npm:1.2.8"
@@ -10538,13 +10249,13 @@ __metadata:
languageName: node
linkType: hard
-"react-devtools-core@npm:^6.0.1":
- version: 6.1.1
- resolution: "react-devtools-core@npm:6.1.1"
+"react-devtools-core@npm:^6.1.1":
+ version: 6.1.5
+ resolution: "react-devtools-core@npm:6.1.5"
dependencies:
shell-quote: ^1.6.1
ws: ^7
- checksum: 18b6d11a11a23b67eb1ff7d44b45adb914a18d9b26cdb378d8f3146834eda5d9bdefc131bb7fb793f3057f166c309681651e865814bbf491f2ea0d0bf06a2922
+ checksum: b54f2d2416f5f5ca61b1741367865eab18b0040d7e4b3236693595803dfdf82ae02adbcb480acc5b9767748b615a2d5ce3af286cde3a7f8c193123c62c777428
languageName: node
linkType: hard
@@ -10557,13 +10268,6 @@ __metadata:
languageName: node
linkType: hard
-"react-is@npm:^16.12.0 || ^17.0.0 || ^18.0.0, react-is@npm:^18.0.0, react-is@npm:^18.2.0, react-is@npm:^18.3.1":
- version: 18.3.1
- resolution: "react-is@npm:18.3.1"
- checksum: e20fe84c86ff172fc8d898251b7cc2c43645d108bf96d0b8edf39b98f9a2cae97b40520ee7ed8ee0085ccc94736c4886294456033304151c3f94978cec03df21
- languageName: node
- linkType: hard
-
"react-is@npm:^16.13.1":
version: 16.13.1
resolution: "react-is@npm:16.13.1"
@@ -10578,36 +10282,17 @@ __metadata:
languageName: node
linkType: hard
-"react-native-builder-bob@npm:^0.20.0":
- version: 0.20.4
- resolution: "react-native-builder-bob@npm:0.20.4"
- dependencies:
- "@babel/core": ^7.18.5
- "@babel/plugin-proposal-class-properties": ^7.17.12
- "@babel/preset-env": ^7.18.2
- "@babel/preset-flow": ^7.17.12
- "@babel/preset-react": ^7.17.12
- "@babel/preset-typescript": ^7.17.12
- browserslist: ^4.20.4
- cosmiconfig: ^7.0.1
- cross-spawn: ^7.0.3
- dedent: ^0.7.0
- del: ^6.1.1
- fs-extra: ^10.1.0
- glob: ^8.0.3
- is-git-dirty: ^2.0.1
- jetifier: ^2.0.0
- json5: ^2.2.1
- kleur: ^4.1.4
- prompts: ^2.4.2
- which: ^2.0.2
- yargs: ^17.5.1
- dependenciesMeta:
- jetifier:
- optional: true
- bin:
- bob: bin/bob
- checksum: 258da6ecd03be52cc05a3e3a7c481890c7c0b7b62ae9f263c5f3d6fafeae95bd9445ad2f6c2513f7f4e4569eee935a18ae94c7491f58d6916af515c88de9e0a1
+"react-is@npm:^18.0.0":
+ version: 18.3.1
+ resolution: "react-is@npm:18.3.1"
+ checksum: e20fe84c86ff172fc8d898251b7cc2c43645d108bf96d0b8edf39b98f9a2cae97b40520ee7ed8ee0085ccc94736c4886294456033304151c3f94978cec03df21
+ languageName: node
+ linkType: hard
+
+"react-is@npm:^19.1.0":
+ version: 19.1.0
+ resolution: "react-is@npm:19.1.0"
+ checksum: 3eb4eac7f09bf178bdc6fa98d384f5f243b85de7c99679a88b0154ead4d818ad94386ccb00ea31ec52409ffd13299057f5ec6ca2eaec06f9f7eddc1ad4832332
languageName: node
linkType: hard
@@ -10662,30 +10347,30 @@ __metadata:
"@babel/core": ^7.25.2
"@babel/preset-env": ^7.25.3
"@babel/runtime": ^7.25.0
- "@react-native-community/cli": 15.0.1
- "@react-native-community/cli-platform-android": 15.0.1
- "@react-native-community/cli-platform-ios": 15.0.1
- "@react-native/babel-preset": 0.77.1
- "@react-native/eslint-config": 0.77.1
- "@react-native/metro-config": 0.77.1
- "@react-native/typescript-config": 0.77.1
+ "@react-native-community/cli": 19.0.0
+ "@react-native-community/cli-platform-android": 19.0.0
+ "@react-native-community/cli-platform-ios": 19.0.0
+ "@react-native/babel-preset": 0.80.1
+ "@react-native/eslint-config": 0.80.1
+ "@react-native/metro-config": 0.80.1
+ "@react-native/typescript-config": 0.80.1
"@react-navigation/bottom-tabs": ^7.2.1
"@react-navigation/native": ^7.0.15
"@react-navigation/native-stack": ^7.2.1
"@types/jest": ^29.5.13
- "@types/react": ^18.2.6
- "@types/react-test-renderer": ^18.0.0
+ "@types/react": ^19.1.0
+ "@types/react-test-renderer": ^19.1.0
babel-plugin-module-resolver: ^5.0.0
eslint: ^8.19.0
jest: ^29.6.3
prettier: 2.8.8
- react: 18.3.1
- react-native: 0.77.1
+ react: 19.1.0
+ react-native: 0.80.1
react-native-builder-bob: ^0.37.0
react-native-codegen: ^0.70.7
react-native-safe-area-context: ^5.3.0
react-native-screens: ^4.9.2
- react-test-renderer: 18.3.1
+ react-test-renderer: 19.1.0
typescript: 5.0.4
languageName: unknown
linkType: soft
@@ -10694,17 +10379,17 @@ __metadata:
version: 0.0.0-use.local
resolution: "react-native-ios-utilities@workspace:."
dependencies:
- "@react-native/eslint-config": ^0.78.0
- "@types/react": ^19.0.10
+ "@react-native/eslint-config": ^0.80.1
+ "@types/react": ^19.1.10
del-cli: ^5.1.0
eslint: ^8.51.0
eslint-config-prettier: ^9.0.0
eslint-plugin-prettier: ^5.0.1
jest: ^29.7.0
prettier: ^3.0.3
- react: 19.0.0
- react-native: 0.78.0
- react-native-builder-bob: ^0.20.0
+ react: 19.1.0
+ react-native: 0.80.1
+ react-native-builder-bob: ^0.37.0
release-it: ^16.3.0
turbo: ^1.10.7
typescript: ^5.2.2
@@ -10714,131 +10399,88 @@ __metadata:
languageName: unknown
linkType: soft
-"react-native-safe-area-context@npm:^5.3.0":
- version: 5.3.0
- resolution: "react-native-safe-area-context@npm:5.3.0"
+"react-native-is-edge-to-edge@npm:^1.1.7":
+ version: 1.2.1
+ resolution: "react-native-is-edge-to-edge@npm:1.2.1"
peerDependencies:
react: "*"
react-native: "*"
- checksum: 21f18b1286fc7bc6f38f864b7468848c16c58106ae429633e8f655dabb80571beba19ac8aa8bc5e1b2e926d75afddd7ded919a56450aa00c36d56f7fb421f782
+ checksum: 8fb6d8ab7b953c7d7cec8c987cef24f1c5348a293a85cb49c7c53b54ef110c0ca746736ae730e297603c8c76020df912e93915fb17518c4f2f91143757177aba
languageName: node
linkType: hard
-"react-native-screens@npm:^4.9.2":
- version: 4.9.2
- resolution: "react-native-screens@npm:4.9.2"
- dependencies:
- react-freeze: ^1.0.0
- warn-once: ^0.1.0
+"react-native-safe-area-context@npm:^5.3.0":
+ version: 5.5.2
+ resolution: "react-native-safe-area-context@npm:5.5.2"
peerDependencies:
react: "*"
react-native: "*"
- checksum: 7c39983082c244437df7840504205ea27c235bbd4bd11bcfdf6d73bba4cc6dbbba010d051d51de54c340df6d4e54d8a0833ef9ec151e7f075eb1f69833b0f8b6
+ checksum: 694e293b474b0738899c6e09da9f001d8087b382b5a40b8b227765c861a8137f0ff0209f1c9d8ae94337bc9c170eb114a9b897a8661b8181f48759a21baeb265
languageName: node
linkType: hard
-"react-native@npm:0.77.1":
- version: 0.77.1
- resolution: "react-native@npm:0.77.1"
+"react-native-screens@npm:^4.9.2":
+ version: 4.11.1
+ resolution: "react-native-screens@npm:4.11.1"
dependencies:
- "@jest/create-cache-key-function": ^29.6.3
- "@react-native/assets-registry": 0.77.1
- "@react-native/codegen": 0.77.1
- "@react-native/community-cli-plugin": 0.77.1
- "@react-native/gradle-plugin": 0.77.1
- "@react-native/js-polyfills": 0.77.1
- "@react-native/normalize-colors": 0.77.1
- "@react-native/virtualized-lists": 0.77.1
- 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
- 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
- invariant: ^2.2.4
- jest-environment-node: ^29.6.3
- jsc-android: ^250231.0.0
- memoize-one: ^5.0.0
- metro-runtime: ^0.81.0
- metro-source-map: ^0.81.0
- nullthrows: ^1.1.1
- pretty-format: ^29.7.0
- promise: ^8.3.0
- react-devtools-core: ^6.0.1
- react-refresh: ^0.14.0
- regenerator-runtime: ^0.13.2
- scheduler: 0.24.0-canary-efb381bbf-20230505
- semver: ^7.1.3
- stacktrace-parser: ^0.1.10
- whatwg-fetch: ^3.0.0
- ws: ^6.2.3
- yargs: ^17.6.2
+ react-freeze: ^1.0.0
+ react-native-is-edge-to-edge: ^1.1.7
+ warn-once: ^0.1.0
peerDependencies:
- "@types/react": ^18.2.6
- react: ^18.2.0
- peerDependenciesMeta:
- "@types/react":
- optional: true
- bin:
- react-native: cli.js
- checksum: 1b67a0af483f97536907dbccfd4f5d01ec740a9978bf3ad8b4a76516b08887a8014e2bc3bb7bc677a557dc492630f1746af261ffaa8a88501eb2691fc8157b85
+ react: "*"
+ react-native: "*"
+ checksum: 22d3c302ef90a1cb20eed8c130b32e53d49288a19eba844f506a5e38342ef2add0d4f7a2ff5501cc05052aef6bf7f180db26a067b01f70f3cc12d3e1497329d6
languageName: node
linkType: hard
-"react-native@npm:0.78.0":
- version: 0.78.0
- resolution: "react-native@npm:0.78.0"
+"react-native@npm:0.80.1":
+ version: 0.80.1
+ resolution: "react-native@npm:0.80.1"
dependencies:
- "@jest/create-cache-key-function": ^29.6.3
- "@react-native/assets-registry": 0.78.0
- "@react-native/codegen": 0.78.0
- "@react-native/community-cli-plugin": 0.78.0
- "@react-native/gradle-plugin": 0.78.0
- "@react-native/js-polyfills": 0.78.0
- "@react-native/normalize-colors": 0.78.0
- "@react-native/virtualized-lists": 0.78.0
+ "@jest/create-cache-key-function": ^29.7.0
+ "@react-native/assets-registry": 0.80.1
+ "@react-native/codegen": 0.80.1
+ "@react-native/community-cli-plugin": 0.80.1
+ "@react-native/gradle-plugin": 0.80.1
+ "@react-native/js-polyfills": 0.80.1
+ "@react-native/normalize-colors": 0.80.1
+ "@react-native/virtualized-lists": 0.80.1
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.28.1
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
invariant: ^2.2.4
- jest-environment-node: ^29.6.3
+ jest-environment-node: ^29.7.0
memoize-one: ^5.0.0
- metro-runtime: ^0.81.0
- metro-source-map: ^0.81.0
+ metro-runtime: ^0.82.2
+ metro-source-map: ^0.82.2
nullthrows: ^1.1.1
pretty-format: ^29.7.0
promise: ^8.3.0
- react-devtools-core: ^6.0.1
+ react-devtools-core: ^6.1.1
react-refresh: ^0.14.0
regenerator-runtime: ^0.13.2
- scheduler: 0.25.0
+ scheduler: 0.26.0
semver: ^7.1.3
stacktrace-parser: ^0.1.10
whatwg-fetch: ^3.0.0
ws: ^6.2.3
yargs: ^17.6.2
peerDependencies:
- "@types/react": ^19.0.0
- react: ^19.0.0
+ "@types/react": ^19.1.0
+ react: ^19.1.0
peerDependenciesMeta:
"@types/react":
optional: true
bin:
react-native: cli.js
- checksum: c339279abedb16656d2c02cf4073bf8cd679736ece4f505f7adaef5d7a94ba6bb7b2ac517a698b3982e2bb8619a19f7ac0117592ebecddc3aef5a41131014b97
+ checksum: 4eb0675ef268d16d686411420a1744f62a6eec67972bc575b5e85049bec11d90be3103ee36fd83e51c297741afb6b7aff2d133ebe8765c855c1351befab2cd18
languageName: node
linkType: hard
@@ -10849,44 +10491,22 @@ __metadata:
languageName: node
linkType: hard
-"react-shallow-renderer@npm:^16.15.0":
- version: 16.15.0
- resolution: "react-shallow-renderer@npm:16.15.0"
- dependencies:
- object-assign: ^4.1.1
- react-is: ^16.12.0 || ^17.0.0 || ^18.0.0
- peerDependencies:
- react: ^16.0.0 || ^17.0.0 || ^18.0.0
- checksum: 6052c7e3e9627485120ebd8257f128aad8f56386fe8d42374b7743eac1be457c33506d153c7886b4e32923c0c352d402ab805ef9ca02dbcd8393b2bdeb6e5af8
- languageName: node
- linkType: hard
-
-"react-test-renderer@npm:18.3.1":
- version: 18.3.1
- resolution: "react-test-renderer@npm:18.3.1"
+"react-test-renderer@npm:19.1.0":
+ version: 19.1.0
+ resolution: "react-test-renderer@npm:19.1.0"
dependencies:
- react-is: ^18.3.1
- react-shallow-renderer: ^16.15.0
- scheduler: ^0.23.2
+ react-is: ^19.1.0
+ scheduler: ^0.26.0
peerDependencies:
- react: ^18.3.1
- checksum: e8e58e738835fab3801afb63f6bfe0fcf6e68ea39619fae5bdf47feefc36b1e4acb48c9dd139c7533611466eff1dfce6ffdda4b317e06aee663dda7d91438f26
- languageName: node
- linkType: hard
-
-"react@npm:18.3.1":
- version: 18.3.1
- resolution: "react@npm:18.3.1"
- dependencies:
- loose-envify: ^1.1.0
- checksum: a27bcfa8ff7c15a1e50244ad0d0c1cb2ad4375eeffefd266a64889beea6f6b64c4966c9b37d14ee32d6c9fcd5aa6ba183b6988167ab4d127d13e7cb5b386a376
+ react: ^19.1.0
+ checksum: e060239f8fbfbe54c2fa0e1d7a9eb1ee77787b0b29fd75ba6170dc22cd637c3a9052a82285db6be5a269309a65b8e8c40ddc8103620fbe1652cce693fd608acc
languageName: node
linkType: hard
-"react@npm:19.0.0":
- version: 19.0.0
- resolution: "react@npm:19.0.0"
- checksum: 86de15d85b2465feb40297a90319c325cb07cf27191a361d47bcfe8c6126c973d660125aa67b8f4cbbe39f15a2f32efd0c814e98196d8e5b68c567ba40a399c6
+"react@npm:19.1.0":
+ version: 19.1.0
+ resolution: "react@npm:19.1.0"
+ checksum: c0905f8cfb878b0543a5522727e5ed79c67c8111dc16ceee135b7fe19dce77b2c1c19293513061a8934e721292bfc1517e0487e262d1906f306bdf95fa54d02f
languageName: node
linkType: hard
@@ -10939,13 +10559,6 @@ __metadata:
languageName: node
linkType: hard
-"readline@npm:^1.3.0":
- version: 1.3.0
- resolution: "readline@npm:1.3.0"
- checksum: dfaf8e6ac20408ea00d650e95f7bb47f77c4c62dd12ed7fb51731ee84532a2f3675fcdc4cab4923dc1eef227520a2e082a093215190907758bea9f585b19438e
- languageName: node
- linkType: hard
-
"recast@npm:^0.21.0":
version: 0.21.5
resolution: "recast@npm:0.21.5"
@@ -10958,19 +10571,6 @@ __metadata:
languageName: node
linkType: hard
-"recast@npm:^0.23.9":
- version: 0.23.11
- resolution: "recast@npm:0.23.11"
- dependencies:
- ast-types: ^0.16.1
- esprima: ~4.0.0
- source-map: ~0.6.1
- tiny-invariant: ^1.3.3
- tslib: ^2.0.1
- checksum: 1807159b1c33bc4a2d146e4ffea13b658e54bdcfab04fc4f9c9d7f1b4626c931e2ce41323e214516ec1e02a119037d686d825fc62f28072db27962b85e5b481d
- languageName: node
- linkType: hard
-
"rechoir@npm:^0.6.2":
version: 0.6.2
resolution: "rechoir@npm:0.6.2"
@@ -11029,23 +10629,7 @@ __metadata:
languageName: node
linkType: hard
-"regenerator-runtime@npm:^0.14.0":
- version: 0.14.1
- resolution: "regenerator-runtime@npm:0.14.1"
- checksum: 9f57c93277b5585d3c83b0cf76be47b473ae8c6d9142a46ce8b0291a04bb2cf902059f0f8445dcabb3fb7378e5fe4bb4ea1e008876343d42e46d3b484534ce38
- languageName: node
- linkType: hard
-
-"regenerator-transform@npm:^0.15.2":
- version: 0.15.2
- resolution: "regenerator-transform@npm:0.15.2"
- dependencies:
- "@babel/runtime": ^7.8.4
- checksum: 20b6f9377d65954980fe044cfdd160de98df415b4bff38fbade67b3337efaf078308c4fed943067cd759827cc8cfeca9cb28ccda1f08333b85d6a2acbd022c27
- languageName: node
- linkType: hard
-
-"regexp.prototype.flags@npm:^1.5.3":
+"regexp.prototype.flags@npm:^1.5.3, regexp.prototype.flags@npm:^1.5.4":
version: 1.5.4
resolution: "regexp.prototype.flags@npm:1.5.4"
dependencies:
@@ -11211,7 +10795,7 @@ __metadata:
languageName: node
linkType: hard
-"resolve@npm:^1.1.6, resolve@npm:^1.14.2, resolve@npm:^1.20.0, resolve@npm:^1.22.8":
+"resolve@npm:^1.1.6, resolve@npm:^1.20.0, resolve@npm:^1.22.10, resolve@npm:^1.22.8":
version: 1.22.10
resolution: "resolve@npm:1.22.10"
dependencies:
@@ -11237,7 +10821,7 @@ __metadata:
languageName: node
linkType: hard
-"resolve@patch:resolve@^1.1.6#~builtin, resolve@patch:resolve@^1.14.2#~builtin, resolve@patch:resolve@^1.20.0#~builtin, resolve@patch:resolve@^1.22.8#~builtin":
+"resolve@patch:resolve@^1.1.6#~builtin, resolve@patch:resolve@^1.20.0#~builtin, resolve@patch:resolve@^1.22.10#~builtin, resolve@patch:resolve@^1.22.8#~builtin":
version: 1.22.10
resolution: "resolve@patch:resolve@npm%3A1.22.10#~builtin::version=1.22.10&hash=c3c19d"
dependencies:
@@ -11324,17 +10908,6 @@ __metadata:
languageName: node
linkType: hard
-"rimraf@npm:^5.0.5":
- version: 5.0.10
- resolution: "rimraf@npm:5.0.10"
- dependencies:
- glob: ^10.3.7
- bin:
- rimraf: dist/esm/bin.mjs
- checksum: 50e27388dd2b3fa6677385fc1e2966e9157c89c86853b96d02e6915663a96b7ff4d590e14f6f70e90f9b554093aa5dbc05ac3012876be558c06a65437337bc05
- languageName: node
- linkType: hard
-
"rimraf@npm:~2.6.2":
version: 2.6.3
resolution: "rimraf@npm:2.6.3"
@@ -11435,38 +11008,10 @@ __metadata:
languageName: node
linkType: hard
-"scheduler@npm:0.24.0-canary-efb381bbf-20230505":
- version: 0.24.0-canary-efb381bbf-20230505
- resolution: "scheduler@npm:0.24.0-canary-efb381bbf-20230505"
- dependencies:
- loose-envify: ^1.1.0
- checksum: 232149125c10f10193b1340ec4bbf14a8e6a845152790d6fd6f58207642db801abdb5a21227561a0a93871b98ba47539a6233b4e6155aae72d6db6db9f9f09b3
- languageName: node
- linkType: hard
-
-"scheduler@npm:0.25.0":
- version: 0.25.0
- resolution: "scheduler@npm:0.25.0"
- checksum: b7bb9fddbf743e521e9aaa5198a03ae823f5e104ebee0cb9ec625392bb7da0baa1c28ab29cee4b1e407a94e76acc6eee91eeb749614f91f853efda2613531566
- languageName: node
- linkType: hard
-
-"scheduler@npm:^0.23.2":
- version: 0.23.2
- resolution: "scheduler@npm:0.23.2"
- dependencies:
- loose-envify: ^1.1.0
- checksum: 3e82d1f419e240ef6219d794ff29c7ee415fbdc19e038f680a10c067108e06284f1847450a210b29bbaf97b9d8a97ced5f624c31c681248ac84c80d56ad5a2c4
- languageName: node
- linkType: hard
-
-"selfsigned@npm:^2.4.1":
- version: 2.4.1
- resolution: "selfsigned@npm:2.4.1"
- dependencies:
- "@types/node-forge": ^1.3.0
- node-forge: ^1
- checksum: 38b91c56f1d7949c0b77f9bbe4545b19518475cae15e7d7f0043f87b1626710b011ce89879a88969651f650a19d213bb15b7d5b4c2877df9eeeff7ba8f8b9bfa
+"scheduler@npm:0.26.0, scheduler@npm:^0.26.0":
+ version: 0.26.0
+ resolution: "scheduler@npm:0.26.0"
+ checksum: c63a9f1c0e5089b537231cff6c11f75455b5c8625ae09535c1d7cd0a1b0c77ceecdd9f1074e5e063da5d8dc11e73e8033dcac3361791088be08a6e60c0283ed9
languageName: node
linkType: hard
@@ -11509,11 +11054,11 @@ __metadata:
linkType: hard
"semver@npm:^7.1.3, semver@npm:^7.3.4, semver@npm:^7.3.5, semver@npm:^7.3.7, semver@npm:^7.5.2, semver@npm:^7.5.3, semver@npm:^7.5.4, semver@npm:^7.6.0":
- version: 7.7.1
- resolution: "semver@npm:7.7.1"
+ version: 7.7.2
+ resolution: "semver@npm:7.7.2"
bin:
semver: bin/semver.js
- checksum: 586b825d36874007c9382d9e1ad8f93888d8670040add24a28e06a910aeebd673a2eb9e3bf169c6679d9245e66efb9057e0852e70d9daa6c27372aab1dda7104
+ checksum: dd94ba8f1cbc903d8eeb4dd8bf19f46b3deb14262b6717d0de3c804b594058ae785ef2e4b46c5c3b58733c99c83339068203002f9e37cfe44f7e2cc5e3d2f621
languageName: node
linkType: hard
@@ -11633,10 +11178,10 @@ __metadata:
languageName: node
linkType: hard
-"shell-quote@npm:^1.6.1, shell-quote@npm:^1.7.3":
- version: 1.8.2
- resolution: "shell-quote@npm:1.8.2"
- checksum: 1e97b62ced1c4c5135015978ebf273bed1f425a68cf84163e83fbb0f34b3ff9471e656720dab2b7cbb4ae0f58998e686d17d166c28dfb3662acd009e8bd7faed
+"shell-quote@npm:^1.6.1, shell-quote@npm:^1.8.1":
+ version: 1.8.3
+ resolution: "shell-quote@npm:1.8.3"
+ checksum: 550dd84e677f8915eb013d43689c80bb114860649ec5298eb978f40b8f3d4bc4ccb072b82c094eb3548dc587144bb3965a8676f0d685c1cf4c40b5dc27166242
languageName: node
linkType: hard
@@ -11688,7 +11233,7 @@ __metadata:
languageName: node
linkType: hard
-"side-channel@npm:^1.1.0":
+"side-channel@npm:^1.0.6, side-channel@npm:^1.1.0":
version: 1.1.0
resolution: "side-channel@npm:1.1.0"
dependencies:
@@ -11775,12 +11320,12 @@ __metadata:
linkType: hard
"socks@npm:^2.8.3":
- version: 2.8.4
- resolution: "socks@npm:2.8.4"
+ version: 2.8.6
+ resolution: "socks@npm:2.8.6"
dependencies:
ip-address: ^9.0.5
smart-buffer: ^4.2.0
- checksum: cd1edc924475d5dfde534adf66038df7e62c7343e6b8c0113e52dc9bb6a0a10e25b2f136197f379d695f18e8f0f2b7f6e42977bf720ddbee912a851201c396ad
+ checksum: 3d2a696d42d94b05b2a7e797b9291483d6768b23300b015353f34f8046cce35f23fe59300a38a77a9f0dee4274dd6c333afbdef628cf48f3df171bfb86c2d21c
languageName: node
linkType: hard
@@ -11930,7 +11475,7 @@ __metadata:
languageName: node
linkType: hard
-"stop-iteration-iterator@npm:^1.0.0":
+"stop-iteration-iterator@npm:^1.0.0, stop-iteration-iterator@npm:^1.1.0":
version: 1.1.0
resolution: "stop-iteration-iterator@npm:1.1.0"
dependencies:
@@ -12093,7 +11638,7 @@ __metadata:
languageName: node
linkType: hard
-"strip-ansi@npm:^5.0.0, strip-ansi@npm:^5.2.0":
+"strip-ansi@npm:^5.0.0":
version: 5.2.0
resolution: "strip-ansi@npm:5.2.0"
dependencies:
@@ -12162,13 +11707,6 @@ __metadata:
languageName: node
linkType: hard
-"sudo-prompt@npm:^9.0.0":
- version: 9.2.1
- resolution: "sudo-prompt@npm:9.2.1"
- checksum: 50a29eec2f264f2b78d891452a64112d839a30bffbff4ec065dba4af691a35b23cdb8f9107d413e25c1a9f1925644a19994c00602495cab033d53f585fdfd665
- languageName: node
- linkType: hard
-
"supports-color@npm:^7.1.0":
version: 7.2.0
resolution: "supports-color@npm:7.2.0"
@@ -12194,13 +11732,12 @@ __metadata:
languageName: node
linkType: hard
-"synckit@npm:^0.9.1":
- version: 0.9.2
- resolution: "synckit@npm:0.9.2"
+"synckit@npm:^0.11.7":
+ version: 0.11.8
+ resolution: "synckit@npm:0.11.8"
dependencies:
- "@pkgr/core": ^0.1.0
- tslib: ^2.6.2
- checksum: 3a30e828efbdcf3b50fccab4da6e90ea7ca24d8c5c2ad3ffe98e07d7c492df121e0f75227c6e510f96f976aae76f1fa4710cb7b1d69db881caf66ef9de89360e
+ "@pkgr/core": ^0.2.4
+ checksum: dd7193736e0b5eb209192e280649b98b539537bf23bef20c8a2b24cd12ccde47bcf4e77773ff9cb66c35960d2cb41e28c05e0b19124488abbfb6423258b56275
languageName: node
linkType: hard
@@ -12228,16 +11765,16 @@ __metadata:
linkType: hard
"terser@npm:^5.15.0":
- version: 5.39.0
- resolution: "terser@npm:5.39.0"
+ version: 5.43.1
+ resolution: "terser@npm:5.43.1"
dependencies:
"@jridgewell/source-map": ^0.3.3
- acorn: ^8.8.2
+ acorn: ^8.14.0
commander: ^2.20.0
source-map-support: ~0.5.20
bin:
terser: bin/terser
- checksum: e39c302aed7a70273c8b03032c37c68c8d9d3b432a7b6abe89caf9d087f7dd94d743c01ee5ba1431a095ad347c4a680b60d258f298a097cf512346d6041eb661
+ checksum: 1d51747f4540a0842139c2f2617e88d68a26da42d7571cda8955e1bd8febac6e60bc514c258781334e1724aeeccfbd511473eb9d8d831435e4e5fad1ce7f6e8b
languageName: node
linkType: hard
@@ -12276,10 +11813,13 @@ __metadata:
languageName: node
linkType: hard
-"tiny-invariant@npm:^1.3.3":
- version: 1.3.3
- resolution: "tiny-invariant@npm:1.3.3"
- checksum: 5e185c8cc2266967984ce3b352a4e57cb89dad5a8abb0dea21468a6ecaa67cd5bb47a3b7a85d08041008644af4f667fb8b6575ba38ba5fb00b3b5068306e59fe
+"tinyglobby@npm:^0.2.12":
+ version: 0.2.14
+ resolution: "tinyglobby@npm:0.2.14"
+ dependencies:
+ fdir: ^6.4.4
+ picomatch: ^4.0.2
+ checksum: 261e986e3f2062dec3a582303bad2ce31b4634b9348648b46828c000d464b012cf474e38f503312367d4117c3f2f18611992738fca684040758bba44c24de522
languageName: node
linkType: hard
@@ -12299,13 +11839,6 @@ __metadata:
languageName: node
linkType: hard
-"tmp@npm:^0.2.3":
- version: 0.2.3
- resolution: "tmp@npm:0.2.3"
- checksum: 73b5c96b6e52da7e104d9d44afb5d106bb1e16d9fa7d00dbeb9e6522e61b571fbdb165c756c62164be9a3bbe192b9b268c236d370a2a0955c7689cd2ae377b95
- languageName: node
- linkType: hard
-
"tmpl@npm:1.0.5":
version: 1.0.5
resolution: "tmpl@npm:1.0.5"
@@ -12359,7 +11892,7 @@ __metadata:
languageName: node
linkType: hard
-"tslib@npm:^2.0.1, tslib@npm:^2.1.0, tslib@npm:^2.6.2":
+"tslib@npm:^2.0.1, tslib@npm:^2.1.0":
version: 2.8.1
resolution: "tslib@npm:2.8.1"
checksum: e4aba30e632b8c8902b47587fd13345e2827fa639e7c3121074d5ee0880723282411a8838f830b55100cbe4517672f84a2472667d355b81e8af165a55dc6203a
@@ -12499,6 +12032,16 @@ __metadata:
languageName: node
linkType: hard
+"type-is@npm:~1.6.18":
+ version: 1.6.18
+ resolution: "type-is@npm:1.6.18"
+ dependencies:
+ media-typer: 0.3.0
+ mime-types: ~2.1.24
+ checksum: 2c8e47675d55f8b4e404bcf529abdf5036c537a04c2b20177bcf78c9e3c1da69da3942b1346e6edb09e823228c0ee656ef0e033765ec39a70d496ef601a0c657
+ languageName: node
+ linkType: hard
+
"typed-array-buffer@npm:^1.0.3":
version: 1.0.3
resolution: "typed-array-buffer@npm:1.0.3"
@@ -12572,12 +12115,12 @@ __metadata:
linkType: hard
"typescript@npm:^5.2.2":
- version: 5.8.2
- resolution: "typescript@npm:5.8.2"
+ version: 5.8.3
+ resolution: "typescript@npm:5.8.3"
bin:
tsc: bin/tsc
tsserver: bin/tsserver
- checksum: 7f9e3d7ac15da6df713e439e785e51facd65d6450d5f51fab3e8d2f2e3f4eb317080d895480b8e305450cdbcb37e17383e8bf521e7395f8b556e2f2a4730ed86
+ checksum: cb1d081c889a288b962d3c8ae18d337ad6ee88a8e81ae0103fa1fecbe923737f3ba1dbdb3e6d8b776c72bc73bfa6d8d850c0306eed1a51377d2fccdfd75d92c4
languageName: node
linkType: hard
@@ -12592,12 +12135,12 @@ __metadata:
linkType: hard
"typescript@patch:typescript@^5.2.2#~builtin":
- version: 5.8.2
- resolution: "typescript@patch:typescript@npm%3A5.8.2#~builtin::version=5.8.2&hash=14eedb"
+ version: 5.8.3
+ resolution: "typescript@patch:typescript@npm%3A5.8.3#~builtin::version=5.8.3&hash=14eedb"
bin:
tsc: bin/tsc
tsserver: bin/tsserver
- checksum: a58d19ff9811c1764a299dd83ca20ed8020f0ab642906dafc880121b710751227201531fdc99878158205c356ac79679b0b61ac5b42eda0e28bfb180947a258d
+ checksum: 1b503525a88ff0ff5952e95870971c4fb2118c17364d60302c21935dedcd6c37e6a0a692f350892bafcef6f4a16d09073fe461158547978d2f16fbe4cb18581c
languageName: node
linkType: hard
@@ -12620,10 +12163,10 @@ __metadata:
languageName: node
linkType: hard
-"undici-types@npm:~6.20.0":
- version: 6.20.0
- resolution: "undici-types@npm:6.20.0"
- checksum: b7bc50f012dc6afbcce56c9fd62d7e86b20a62ff21f12b7b5cbf1973b9578d90f22a9c7fe50e638e96905d33893bf2f9f16d98929c4673c2480de05c6c96ea8b
+"undici-types@npm:~7.8.0":
+ version: 7.8.0
+ resolution: "undici-types@npm:7.8.0"
+ checksum: 59521a5b9b50e72cb838a29466b3557b4eacbc191a83f4df5a2f7b156bc8263072b145dc4bb8ec41da7d56a7e9b178892458da02af769243d57f801a50ac5751
languageName: node
linkType: hard
@@ -12706,7 +12249,7 @@ __metadata:
languageName: node
linkType: hard
-"unpipe@npm:~1.0.0":
+"unpipe@npm:1.0.0, unpipe@npm:~1.0.0":
version: 1.0.0
resolution: "unpipe@npm:1.0.0"
checksum: 4fa18d8d8d977c55cb09715385c203197105e10a6d220087ec819f50cb68870f02942244f1017565484237f1f8c5d3cd413631b1ae104d3096f24fdfde1b4aa2
@@ -12720,7 +12263,7 @@ __metadata:
languageName: node
linkType: hard
-"update-browserslist-db@npm:^1.1.1":
+"update-browserslist-db@npm:^1.1.3":
version: 1.1.3
resolution: "update-browserslist-db@npm:1.1.3"
dependencies:
@@ -12772,21 +12315,21 @@ __metadata:
languageName: node
linkType: hard
-"use-latest-callback@npm:^0.2.1":
- version: 0.2.3
- resolution: "use-latest-callback@npm:0.2.3"
+"use-latest-callback@npm:^0.2.4":
+ version: 0.2.4
+ resolution: "use-latest-callback@npm:0.2.4"
peerDependencies:
react: ">=16.8"
- checksum: 5db2dc0d414508c768ba4d1a337bd73dd0fb2a77eccc9dd7051517b28cd71c849c5e9230b5c97fc76a3811c1500f210cb4e4ebb95fe20347e5f910509a8e533c
+ checksum: 60c3a6b1b6567e1794f9e48cd86b8cde8a149485cc2fed60570f69ec3b157f6812e0ff0a877f0b971592fb9254b1363cc21c120fd1fc993b1dad1406c69211df
languageName: node
linkType: hard
-"use-sync-external-store@npm:^1.2.2":
- version: 1.4.0
- resolution: "use-sync-external-store@npm:1.4.0"
+"use-sync-external-store@npm:^1.5.0":
+ version: 1.5.0
+ resolution: "use-sync-external-store@npm:1.5.0"
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
- checksum: dc3843a1b59ac8bd01417bd79498d4c688d5df8bf4801be50008ef4bfaacb349058c0b1605b5b43c828e0a2d62722d7e861573b3f31cea77a7f23e8b0fc2f7e3
+ checksum: 5e639c9273200adb6985b512c96a3a02c458bc8ca1a72e91da9cdc6426144fc6538dca434b0f99b28fb1baabc82e1c383ba7900b25ccdcb43758fb058dc66c34
languageName: node
linkType: hard
@@ -12948,7 +12491,7 @@ __metadata:
languageName: node
linkType: hard
-"which-typed-array@npm:^1.1.16, which-typed-array@npm:^1.1.18":
+"which-typed-array@npm:^1.1.16, which-typed-array@npm:^1.1.19":
version: 1.1.19
resolution: "which-typed-array@npm:1.1.19"
dependencies:
@@ -13090,16 +12633,6 @@ __metadata:
languageName: node
linkType: hard
-"write-file-atomic@npm:^5.0.1":
- version: 5.0.1
- resolution: "write-file-atomic@npm:5.0.1"
- dependencies:
- imurmurhash: ^0.1.4
- signal-exit: ^4.0.1
- checksum: 8dbb0e2512c2f72ccc20ccedab9986c7d02d04039ed6e8780c987dc4940b793339c50172a1008eed7747001bfacc0ca47562668a069a7506c46c77d7ba3926a9
- languageName: node
- linkType: hard
-
"ws@npm:^6.2.3":
version: 6.2.3
resolution: "ws@npm:6.2.3"
@@ -13173,19 +12706,12 @@ __metadata:
languageName: node
linkType: hard
-"yaml@npm:^1.10.0":
- version: 1.10.2
- resolution: "yaml@npm:1.10.2"
- checksum: ce4ada136e8a78a0b08dc10b4b900936912d15de59905b2bf415b4d33c63df1d555d23acb2a41b23cf9fb5da41c256441afca3d6509de7247daa062fd2c5ea5f
- languageName: node
- linkType: hard
-
"yaml@npm:^2.2.1":
- version: 2.7.0
- resolution: "yaml@npm:2.7.0"
+ version: 2.8.0
+ resolution: "yaml@npm:2.8.0"
bin:
yaml: bin.mjs
- checksum: 6e8b2f9b9d1b18b10274d58eb3a47ec223d9a93245a890dcb34d62865f7e744747190a9b9177d5f0ef4ea2e44ad2c0214993deb42e0800766203ac46f00a12dd
+ checksum: 66f103ca5a2f02dac0526895cc7ae7626d91aa8c43aad6fdcff15edf68b1199be4012140b390063877913441aaa5288fdf57eca30e06268a8282dd741525e626
languageName: node
linkType: hard