diff --git a/demos/react-native-barebones-opsqlite/.gitignore b/demos/react-native-barebones-opsqlite/.gitignore
new file mode 100644
index 000000000..d5ae45669
--- /dev/null
+++ b/demos/react-native-barebones-opsqlite/.gitignore
@@ -0,0 +1,74 @@
+# 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
+
+# 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/demos/react-native-barebones-opsqlite/.watchmanconfig b/demos/react-native-barebones-opsqlite/.watchmanconfig
new file mode 100644
index 000000000..0967ef424
--- /dev/null
+++ b/demos/react-native-barebones-opsqlite/.watchmanconfig
@@ -0,0 +1 @@
+{}
diff --git a/demos/react-native-barebones-opsqlite/App.tsx b/demos/react-native-barebones-opsqlite/App.tsx
new file mode 100644
index 000000000..7954862ed
--- /dev/null
+++ b/demos/react-native-barebones-opsqlite/App.tsx
@@ -0,0 +1,170 @@
+import '@azure/core-asynciterator-polyfill';
+import React, { useEffect } from 'react';
+import type {PropsWithChildren} from 'react';
+import {
+ SafeAreaView,
+ ScrollView,
+ StatusBar,
+ StyleSheet,
+ Text,
+ useColorScheme,
+ View,
+} from 'react-native';
+
+import {
+ Colors,
+ DebugInstructions,
+ Header,
+ LearnMoreLinks,
+ ReloadInstructions,
+} from 'react-native/Libraries/NewAppScreen';
+import { OPSqliteOpenFactory } from '@powersync/op-sqlite';
+import { column, Schema, Table, PowerSyncDatabase } from '@powersync/react-native';
+
+/**
+ * A placeholder connector which doesn't do anything but used to confirm connect can run.
+ */
+class DummyConnector {
+ async fetchCredentials() {
+ return {
+ endpoint: '',
+ token: '',
+ };
+ }
+
+ async uploadData() {}
+}
+
+const customers = new Table({ name: column.text });
+
+const schema = new Schema({ customers });
+
+let powerSync: PowerSyncDatabase | null = null;
+
+const setupDatabase = async () => {
+ if (powerSync) return powerSync;
+
+ const factory = new OPSqliteOpenFactory({
+ dbFilename: 'powersync.db',
+ });
+
+ powerSync = new PowerSyncDatabase({
+ schema,
+ database: factory,
+ });
+
+ await powerSync.init();
+ return powerSync;
+};
+
+type SectionProps = PropsWithChildren<{
+ title: string;
+}>;
+
+function Section({children, title}: SectionProps): React.JSX.Element {
+ const isDarkMode = useColorScheme() === 'dark';
+ return (
+
+
+ {title}
+
+
+ {children}
+
+
+ );
+}
+
+function App(): React.JSX.Element {
+ const isDarkMode = useColorScheme() === 'dark';
+
+ const backgroundStyle = {
+ backgroundColor: isDarkMode ? Colors.darker : Colors.lighter,
+ };
+
+ useEffect(() => {
+ const initDB = async () => {
+ try {
+ const db = await setupDatabase();
+
+ // Test database operations
+ await db.execute('INSERT INTO customers(id, name) VALUES(uuid(), ?)', ['Fred']);
+ const result = await db.getAll('SELECT * FROM customers');
+ console.log('Customers:', result);
+
+ // Connect with dummy connector
+ await db.connect(new DummyConnector());
+ } catch (error) {
+ console.error('Database initialization error:', error);
+ }
+ };
+
+ initDB();
+ }, []);
+
+ return (
+
+
+
+
+
+
+ Edit App.tsx to change this
+ screen and then come back to see your edits.
+
+
+
+
+ Read the docs to discover what to do next:
+
+
+
+
+
+ );
+}
+
+const styles = StyleSheet.create({
+ sectionContainer: {
+ marginTop: 32,
+ paddingHorizontal: 24,
+ },
+ sectionTitle: {
+ fontSize: 24,
+ fontWeight: '600',
+ },
+ sectionDescription: {
+ marginTop: 8,
+ fontSize: 18,
+ fontWeight: '400',
+ },
+ highlight: {
+ fontWeight: '700',
+ },
+});
+
+export default App;
diff --git a/demos/react-native-barebones-opsqlite/Gemfile b/demos/react-native-barebones-opsqlite/Gemfile
new file mode 100644
index 000000000..03278dd5e
--- /dev/null
+++ b/demos/react-native-barebones-opsqlite/Gemfile
@@ -0,0 +1,10 @@
+source 'https://rubygems.org'
+
+# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
+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'
+gem 'xcodeproj', '< 1.26.0'
+gem 'concurrent-ruby', '< 1.3.4'
diff --git a/demos/react-native-barebones-opsqlite/Gemfile.lock b/demos/react-native-barebones-opsqlite/Gemfile.lock
new file mode 100644
index 000000000..013903eff
--- /dev/null
+++ b/demos/react-native-barebones-opsqlite/Gemfile.lock
@@ -0,0 +1,118 @@
+GEM
+ remote: https://rubygems.org/
+ specs:
+ CFPropertyList (3.0.7)
+ base64
+ nkf
+ rexml
+ 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)
+ 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)
+ benchmark (0.4.0)
+ bigdecimal (3.1.9)
+ claide (1.1.0)
+ cocoapods (1.15.2)
+ addressable (~> 2.8)
+ claide (>= 1.0.2, < 2.0)
+ 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)
+ cocoapods-search (>= 1.0.0, < 2.0)
+ cocoapods-trunk (>= 1.6.0, < 2.0)
+ cocoapods-try (>= 1.1.0, < 2.0)
+ colored2 (~> 3.1)
+ escape (~> 0.0.4)
+ fourflusher (>= 2.3.0, < 3.0)
+ gh_inspector (~> 1.0)
+ molinillo (~> 0.8.0)
+ nap (~> 1.0)
+ ruby-macho (>= 2.3.0, < 3.0)
+ xcodeproj (>= 1.23.0, < 2.0)
+ cocoapods-core (1.15.2)
+ activesupport (>= 5.0, < 8)
+ addressable (~> 2.8)
+ algoliasearch (~> 1.0)
+ concurrent-ruby (~> 1.1)
+ fuzzy_match (~> 2.0.4)
+ nap (~> 1.0)
+ netrc (~> 0.11)
+ public_suffix (~> 4.0)
+ typhoeus (~> 1.0)
+ cocoapods-deintegrate (1.0.5)
+ cocoapods-downloader (2.1)
+ cocoapods-plugins (1.0.0)
+ nap
+ cocoapods-search (1.0.1)
+ cocoapods-trunk (1.6.0)
+ nap (>= 0.8, < 2.0)
+ netrc (~> 0.11)
+ cocoapods-try (1.2.0)
+ colored2 (3.1.2)
+ concurrent-ruby (1.3.3)
+ connection_pool (2.5.0)
+ drb (2.2.1)
+ escape (0.0.4)
+ ethon (0.16.0)
+ ffi (>= 1.15.0)
+ ffi (1.17.1)
+ fourflusher (2.3.1)
+ fuzzy_match (2.0.4)
+ gh_inspector (1.1.3)
+ httpclient (2.8.3)
+ i18n (1.14.7)
+ concurrent-ruby (~> 1.0)
+ json (2.9.1)
+ logger (1.6.5)
+ minitest (5.25.4)
+ molinillo (0.8.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.0)
+ 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.25.1)
+ CFPropertyList (>= 2.3.3, < 4.0)
+ atomos (~> 0.1.3)
+ claide (>= 1.0.2, < 2.0)
+ colored2 (~> 3.1)
+ nanaimo (~> 0.3.0)
+ rexml (>= 3.3.6, < 4.0)
+
+PLATFORMS
+ ruby
+
+DEPENDENCIES
+ activesupport (>= 6.1.7.5, != 7.1.0)
+ cocoapods (>= 1.13, != 1.15.1, != 1.15.0)
+ concurrent-ruby (< 1.3.4)
+ xcodeproj (< 1.26.0)
+
+RUBY VERSION
+ ruby 3.2.2p53
+
+BUNDLED WITH
+ 2.5.14
diff --git a/demos/react-native-barebones-opsqlite/README.md b/demos/react-native-barebones-opsqlite/README.md
new file mode 100644
index 000000000..bf28ae659
--- /dev/null
+++ b/demos/react-native-barebones-opsqlite/README.md
@@ -0,0 +1,37 @@
+# PowerSync React Native Barebones OPSQlite
+
+## Overview
+
+This is a minimal example demonstrating a barebones react native project using OPSQLite . It shows an update to the local SQLite DB on app launch.
+
+
+## Getting Started
+
+In the repo directory, use [pnpm](https://pnpm.io/installation) to install dependencies:
+
+```bash
+pnpm install
+pnpm build:packages
+```
+
+Then switch into the demo's directory:
+
+```bash
+cd demos/react-native-barebones-opsqlite
+```
+
+Run the development server:
+
+For iOS:
+```bash
+pnpm start
+pnpm ios
+```
+
+For Android:
+```bash
+pnpm start
+pnpm android
+```
+
+Then press `d` to open dev tools where you will see the console output showing the local SQLite DB insert.
diff --git a/demos/react-native-barebones-opsqlite/android/app/build.gradle b/demos/react-native-barebones-opsqlite/android/app/build.gradle
new file mode 100644
index 000000000..85c270010
--- /dev/null
+++ b/demos/react-native-barebones-opsqlite/android/app/build.gradle
@@ -0,0 +1,119 @@
+apply plugin: "com.android.application"
+apply plugin: "org.jetbrains.kotlin.android"
+apply plugin: "com.facebook.react"
+
+/**
+ * This is the configuration block to customize your React Native Android app.
+ * By default you don't need to apply any configuration, just uncomment the lines you need.
+ */
+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")
+
+ /* Variants */
+ // The list of variants to that are debuggable. For those we're going to
+ // skip the bundling of the JS bundle and the assets. By default is just 'debug'.
+ // If you add flavors like lite, prod, etc. you'll have to list your debuggableVariants.
+ // debuggableVariants = ["liteDebug", "prodDebug"]
+
+ /* Bundling */
+ // A list containing the node command and its flags. Default is just 'node'.
+ // nodeExecutableAndArgs = ["node"]
+ //
+ // The command to run when bundling. By default is 'bundle'
+ // bundleCommand = "ram-bundle"
+ //
+ // The path to the CLI configuration file. Default is empty.
+ // bundleConfig = file(../rn-cli.config.js)
+ //
+ // The name of the generated asset file containing your JS bundle
+ // bundleAssetName = "MyApplication.android.bundle"
+ //
+ // The entry file for bundle generation. Default is 'index.android.js' or 'index.js'
+ // entryFile = file("../js/MyApplication.android.js")
+ //
+ // A list of extra flags to pass to the 'bundle' commands.
+ // See https://github.com/react-native-community/cli/blob/main/docs/commands.md#bundle
+ // extraPackagerArgs = []
+
+ /* Hermes Commands */
+ // The hermes compiler command to run. By default it is 'hermesc'
+ // hermesCommand = "$rootDir/my-custom-hermesc/bin/hermesc"
+ //
+ // The list of flags to pass to the Hermes compiler. By default is "-O", "-output-source-map"
+ // hermesFlags = ["-O", "-output-source-map"]
+
+ /* Autolinking */
+ autolinkLibrariesWithApp()
+}
+
+/**
+ * Set this to true to Run Proguard on Release builds to minify the Java bytecode.
+ */
+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:+'`
+ *
+ * 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:+'
+
+android {
+ ndkVersion rootProject.ext.ndkVersion
+ buildToolsVersion rootProject.ext.buildToolsVersion
+ compileSdk rootProject.ext.compileSdkVersion
+
+ namespace "com.reactnativebarebones"
+ defaultConfig {
+ applicationId "com.reactnativebarebones"
+ minSdkVersion rootProject.ext.minSdkVersion
+ targetSdkVersion rootProject.ext.targetSdkVersion
+ versionCode 1
+ versionName "1.0"
+ }
+ signingConfigs {
+ debug {
+ storeFile file('debug.keystore')
+ storePassword 'android'
+ keyAlias 'androiddebugkey'
+ keyPassword 'android'
+ }
+ }
+ buildTypes {
+ debug {
+ signingConfig signingConfigs.debug
+ }
+ release {
+ // Caution! In production, you need to generate your own keystore file.
+ // see https://reactnative.dev/docs/signed-apk-android.
+ signingConfig signingConfigs.debug
+ minifyEnabled enableProguardInReleaseBuilds
+ proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
+ }
+ }
+}
+
+dependencies {
+ // The version of react-native is set by the React Native Gradle Plugin
+ implementation("com.facebook.react:react-android")
+
+ if (hermesEnabled.toBoolean()) {
+ implementation("com.facebook.react:hermes-android")
+ } else {
+ implementation jscFlavor
+ }
+}
diff --git a/demos/react-native-barebones-opsqlite/android/app/debug.keystore b/demos/react-native-barebones-opsqlite/android/app/debug.keystore
new file mode 100644
index 000000000..364e105ed
Binary files /dev/null and b/demos/react-native-barebones-opsqlite/android/app/debug.keystore differ
diff --git a/demos/react-native-barebones-opsqlite/android/app/proguard-rules.pro b/demos/react-native-barebones-opsqlite/android/app/proguard-rules.pro
new file mode 100644
index 000000000..11b025724
--- /dev/null
+++ b/demos/react-native-barebones-opsqlite/android/app/proguard-rules.pro
@@ -0,0 +1,10 @@
+# Add project specific ProGuard rules here.
+# By default, the flags in this file are appended to flags specified
+# in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt
+# You can edit the include path and order by changing the proguardFiles
+# directive in build.gradle.
+#
+# For more details, see
+# http://developer.android.com/guide/developing/tools/proguard.html
+
+# Add any project specific keep options here:
diff --git a/demos/react-native-barebones-opsqlite/android/app/src/debug/AndroidManifest.xml b/demos/react-native-barebones-opsqlite/android/app/src/debug/AndroidManifest.xml
new file mode 100644
index 000000000..eb98c01af
--- /dev/null
+++ b/demos/react-native-barebones-opsqlite/android/app/src/debug/AndroidManifest.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
diff --git a/demos/react-native-barebones-opsqlite/android/app/src/main/AndroidManifest.xml b/demos/react-native-barebones-opsqlite/android/app/src/main/AndroidManifest.xml
new file mode 100644
index 000000000..e1892528b
--- /dev/null
+++ b/demos/react-native-barebones-opsqlite/android/app/src/main/AndroidManifest.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/demos/react-native-barebones-opsqlite/android/app/src/main/java/com/reactnativebarebones/MainActivity.kt b/demos/react-native-barebones-opsqlite/android/app/src/main/java/com/reactnativebarebones/MainActivity.kt
new file mode 100644
index 000000000..7d62767fe
--- /dev/null
+++ b/demos/react-native-barebones-opsqlite/android/app/src/main/java/com/reactnativebarebones/MainActivity.kt
@@ -0,0 +1,22 @@
+package com.reactnativebarebones
+
+import com.facebook.react.ReactActivity
+import com.facebook.react.ReactActivityDelegate
+import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint.fabricEnabled
+import com.facebook.react.defaults.DefaultReactActivityDelegate
+
+class MainActivity : ReactActivity() {
+
+ /**
+ * Returns the name of the main component registered from JavaScript. This is used to schedule
+ * rendering of the component.
+ */
+ override fun getMainComponentName(): String = "ReactNativeBareBones"
+
+ /**
+ * Returns the instance of the [ReactActivityDelegate]. We use [DefaultReactActivityDelegate]
+ * which allows you to enable New Architecture with a single boolean flags [fabricEnabled]
+ */
+ override fun createReactActivityDelegate(): ReactActivityDelegate =
+ DefaultReactActivityDelegate(this, mainComponentName, fabricEnabled)
+}
diff --git a/demos/react-native-barebones-opsqlite/android/app/src/main/java/com/reactnativebarebones/MainApplication.kt b/demos/react-native-barebones-opsqlite/android/app/src/main/java/com/reactnativebarebones/MainApplication.kt
new file mode 100644
index 000000000..f104a8783
--- /dev/null
+++ b/demos/react-native-barebones-opsqlite/android/app/src/main/java/com/reactnativebarebones/MainApplication.kt
@@ -0,0 +1,44 @@
+package com.reactnativebarebones
+
+import android.app.Application
+import com.facebook.react.PackageList
+import com.facebook.react.ReactApplication
+import com.facebook.react.ReactHost
+import com.facebook.react.ReactNativeHost
+import com.facebook.react.ReactPackage
+import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint.load
+import com.facebook.react.defaults.DefaultReactHost.getDefaultReactHost
+import com.facebook.react.defaults.DefaultReactNativeHost
+import com.facebook.react.soloader.OpenSourceMergedSoMapping
+import com.facebook.soloader.SoLoader
+
+class MainApplication : Application(), ReactApplication {
+
+ override val reactNativeHost: ReactNativeHost =
+ object : DefaultReactNativeHost(this) {
+ override fun getPackages(): List =
+ PackageList(this).packages.apply {
+ // Packages that cannot be autolinked yet can be added manually here, for example:
+ // add(MyReactNativePackage())
+ }
+
+ override fun getJSMainModuleName(): String = "index"
+
+ override fun getUseDeveloperSupport(): Boolean = BuildConfig.DEBUG
+
+ override val isNewArchEnabled: Boolean = BuildConfig.IS_NEW_ARCHITECTURE_ENABLED
+ override val isHermesEnabled: Boolean = BuildConfig.IS_HERMES_ENABLED
+ }
+
+ override val reactHost: ReactHost
+ get() = getDefaultReactHost(applicationContext, reactNativeHost)
+
+ override fun onCreate() {
+ super.onCreate()
+ SoLoader.init(this, OpenSourceMergedSoMapping)
+ if (BuildConfig.IS_NEW_ARCHITECTURE_ENABLED) {
+ // If you opted-in for the New Architecture, we load the native entry point for this app.
+ load()
+ }
+ }
+}
diff --git a/demos/react-native-barebones-opsqlite/android/app/src/main/res/drawable/rn_edit_text_material.xml b/demos/react-native-barebones-opsqlite/android/app/src/main/res/drawable/rn_edit_text_material.xml
new file mode 100644
index 000000000..5c25e728e
--- /dev/null
+++ b/demos/react-native-barebones-opsqlite/android/app/src/main/res/drawable/rn_edit_text_material.xml
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/demos/react-native-barebones-opsqlite/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/demos/react-native-barebones-opsqlite/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
new file mode 100644
index 000000000..a2f590828
Binary files /dev/null and b/demos/react-native-barebones-opsqlite/android/app/src/main/res/mipmap-hdpi/ic_launcher.png differ
diff --git a/demos/react-native-barebones-opsqlite/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png b/demos/react-native-barebones-opsqlite/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
new file mode 100644
index 000000000..1b5239980
Binary files /dev/null and b/demos/react-native-barebones-opsqlite/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png differ
diff --git a/demos/react-native-barebones-opsqlite/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/demos/react-native-barebones-opsqlite/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
new file mode 100644
index 000000000..ff10afd6e
Binary files /dev/null and b/demos/react-native-barebones-opsqlite/android/app/src/main/res/mipmap-mdpi/ic_launcher.png differ
diff --git a/demos/react-native-barebones-opsqlite/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png b/demos/react-native-barebones-opsqlite/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
new file mode 100644
index 000000000..115a4c768
Binary files /dev/null and b/demos/react-native-barebones-opsqlite/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png differ
diff --git a/demos/react-native-barebones-opsqlite/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/demos/react-native-barebones-opsqlite/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
new file mode 100644
index 000000000..dcd3cd808
Binary files /dev/null and b/demos/react-native-barebones-opsqlite/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ
diff --git a/demos/react-native-barebones-opsqlite/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/demos/react-native-barebones-opsqlite/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
new file mode 100644
index 000000000..459ca609d
Binary files /dev/null and b/demos/react-native-barebones-opsqlite/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png differ
diff --git a/demos/react-native-barebones-opsqlite/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/demos/react-native-barebones-opsqlite/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
new file mode 100644
index 000000000..8ca12fe02
Binary files /dev/null and b/demos/react-native-barebones-opsqlite/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ
diff --git a/demos/react-native-barebones-opsqlite/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/demos/react-native-barebones-opsqlite/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
new file mode 100644
index 000000000..8e19b410a
Binary files /dev/null and b/demos/react-native-barebones-opsqlite/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png differ
diff --git a/demos/react-native-barebones-opsqlite/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/demos/react-native-barebones-opsqlite/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
new file mode 100644
index 000000000..b824ebdd4
Binary files /dev/null and b/demos/react-native-barebones-opsqlite/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ
diff --git a/demos/react-native-barebones-opsqlite/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/demos/react-native-barebones-opsqlite/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
new file mode 100644
index 000000000..4c19a13c2
Binary files /dev/null and b/demos/react-native-barebones-opsqlite/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png differ
diff --git a/demos/react-native-barebones-opsqlite/android/app/src/main/res/values/strings.xml b/demos/react-native-barebones-opsqlite/android/app/src/main/res/values/strings.xml
new file mode 100644
index 000000000..689f28a86
--- /dev/null
+++ b/demos/react-native-barebones-opsqlite/android/app/src/main/res/values/strings.xml
@@ -0,0 +1,3 @@
+
+ ReactNativeBareBones
+
diff --git a/demos/react-native-barebones-opsqlite/android/app/src/main/res/values/styles.xml b/demos/react-native-barebones-opsqlite/android/app/src/main/res/values/styles.xml
new file mode 100644
index 000000000..7ba83a2ad
--- /dev/null
+++ b/demos/react-native-barebones-opsqlite/android/app/src/main/res/values/styles.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
diff --git a/demos/react-native-barebones-opsqlite/android/build.gradle b/demos/react-native-barebones-opsqlite/android/build.gradle
new file mode 100644
index 000000000..a62d6daa4
--- /dev/null
+++ b/demos/react-native-barebones-opsqlite/android/build.gradle
@@ -0,0 +1,21 @@
+buildscript {
+ ext {
+ buildToolsVersion = "35.0.0"
+ minSdkVersion = 24
+ compileSdkVersion = 35
+ targetSdkVersion = 34
+ ndkVersion = "27.1.12297006"
+ kotlinVersion = "2.0.21"
+ }
+ repositories {
+ google()
+ mavenCentral()
+ }
+ dependencies {
+ classpath("com.android.tools.build:gradle")
+ classpath("com.facebook.react:react-native-gradle-plugin")
+ classpath("org.jetbrains.kotlin:kotlin-gradle-plugin")
+ }
+}
+
+apply plugin: "com.facebook.react.rootproject"
diff --git a/demos/react-native-barebones-opsqlite/android/gradle.properties b/demos/react-native-barebones-opsqlite/android/gradle.properties
new file mode 100644
index 000000000..5e24e3aa8
--- /dev/null
+++ b/demos/react-native-barebones-opsqlite/android/gradle.properties
@@ -0,0 +1,39 @@
+# Project-wide Gradle settings.
+
+# IDE (e.g. Android Studio) users:
+# Gradle settings configured through the IDE *will override*
+# any settings specified in this file.
+
+# For more details on how to configure your build environment visit
+# http://www.gradle.org/docs/current/userguide/build_environment.html
+
+# Specifies the JVM arguments used for the daemon process.
+# The setting is particularly useful for tweaking memory settings.
+# Default value: -Xmx512m -XX:MaxMetaspaceSize=256m
+org.gradle.jvmargs=-Xmx2048m -XX:MaxMetaspaceSize=512m
+
+# When configured, Gradle will run in incubating parallel mode.
+# This option should only be used with decoupled projects. More details, visit
+# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
+# org.gradle.parallel=true
+
+# AndroidX package structure to make it clearer which packages are bundled with the
+# Android operating system, and which are packaged with your app's APK
+# https://developer.android.com/topic/libraries/support-library/androidx-rn
+android.useAndroidX=true
+
+# Use this property to specify which architecture you want to build.
+# You can also override it from the CLI using
+# ./gradlew -PreactNativeArchitectures=x86_64
+reactNativeArchitectures=armeabi-v7a,arm64-v8a,x86,x86_64
+
+# Use this property to enable support to the new architecture.
+# This will allow you to use TurboModules and the Fabric render in
+# your application. You should enable this flag either if you want
+# to write custom TurboModules/Fabric components OR use libraries that
+# are providing them.
+newArchEnabled=true
+
+# Use this property to enable or disable the Hermes JS engine.
+# If set to false, you will be using JSC instead.
+hermesEnabled=true
diff --git a/demos/react-native-barebones-opsqlite/android/gradle/wrapper/gradle-wrapper.jar b/demos/react-native-barebones-opsqlite/android/gradle/wrapper/gradle-wrapper.jar
new file mode 100644
index 000000000..a4b76b953
Binary files /dev/null and b/demos/react-native-barebones-opsqlite/android/gradle/wrapper/gradle-wrapper.jar differ
diff --git a/demos/react-native-barebones-opsqlite/android/gradle/wrapper/gradle-wrapper.properties b/demos/react-native-barebones-opsqlite/android/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 000000000..79eb9d003
--- /dev/null
+++ b/demos/react-native-barebones-opsqlite/android/gradle/wrapper/gradle-wrapper.properties
@@ -0,0 +1,7 @@
+distributionBase=GRADLE_USER_HOME
+distributionPath=wrapper/dists
+distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip
+networkTimeout=10000
+validateDistributionUrl=true
+zipStoreBase=GRADLE_USER_HOME
+zipStorePath=wrapper/dists
diff --git a/demos/react-native-barebones-opsqlite/android/gradlew b/demos/react-native-barebones-opsqlite/android/gradlew
new file mode 100755
index 000000000..f5feea6d6
--- /dev/null
+++ b/demos/react-native-barebones-opsqlite/android/gradlew
@@ -0,0 +1,252 @@
+#!/bin/sh
+
+#
+# Copyright © 2015-2021 the original authors.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# https://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+# SPDX-License-Identifier: Apache-2.0
+#
+
+##############################################################################
+#
+# Gradle start up script for POSIX generated by Gradle.
+#
+# Important for running:
+#
+# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is
+# noncompliant, but you have some other compliant shell such as ksh or
+# bash, then to run this script, type that shell name before the whole
+# command line, like:
+#
+# ksh Gradle
+#
+# Busybox and similar reduced shells will NOT work, because this script
+# requires all of these POSIX shell features:
+# * functions;
+# * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
+# «${var#prefix}», «${var%suffix}», and «$( cmd )»;
+# * compound commands having a testable exit status, especially «case»;
+# * various built-in commands including «command», «set», and «ulimit».
+#
+# Important for patching:
+#
+# (2) This script targets any POSIX shell, so it avoids extensions provided
+# by Bash, Ksh, etc; in particular arrays are avoided.
+#
+# The "traditional" practice of packing multiple parameters into a
+# space-separated string is a well documented source of bugs and security
+# problems, so this is (mostly) avoided, by progressively accumulating
+# options in "$@", and eventually passing that to Java.
+#
+# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,
+# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;
+# see the in-line comments for details.
+#
+# There are tweaks for specific operating systems such as AIX, CygWin,
+# Darwin, MinGW, and NonStop.
+#
+# (3) This script is generated from the Groovy template
+# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
+# within the Gradle project.
+#
+# You can find Gradle at https://github.com/gradle/gradle/.
+#
+##############################################################################
+
+# Attempt to set APP_HOME
+
+# Resolve links: $0 may be a link
+app_path=$0
+
+# Need this for daisy-chained symlinks.
+while
+ APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path
+ [ -h "$app_path" ]
+do
+ ls=$( ls -ld "$app_path" )
+ link=${ls#*' -> '}
+ case $link in #(
+ /*) app_path=$link ;; #(
+ *) app_path=$APP_HOME$link ;;
+ esac
+done
+
+# This is normally unused
+# shellcheck disable=SC2034
+APP_BASE_NAME=${0##*/}
+# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
+APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
+' "$PWD" ) || exit
+
+# Use the maximum available, or set MAX_FD != -1 to use that value.
+MAX_FD=maximum
+
+warn () {
+ echo "$*"
+} >&2
+
+die () {
+ echo
+ echo "$*"
+ echo
+ exit 1
+} >&2
+
+# OS specific support (must be 'true' or 'false').
+cygwin=false
+msys=false
+darwin=false
+nonstop=false
+case "$( uname )" in #(
+ CYGWIN* ) cygwin=true ;; #(
+ Darwin* ) darwin=true ;; #(
+ MSYS* | MINGW* ) msys=true ;; #(
+ NONSTOP* ) nonstop=true ;;
+esac
+
+CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
+
+
+# Determine the Java command to use to start the JVM.
+if [ -n "$JAVA_HOME" ] ; then
+ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+ # IBM's JDK on AIX uses strange locations for the executables
+ JAVACMD=$JAVA_HOME/jre/sh/java
+ else
+ JAVACMD=$JAVA_HOME/bin/java
+ fi
+ if [ ! -x "$JAVACMD" ] ; then
+ die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+ fi
+else
+ JAVACMD=java
+ if ! command -v java >/dev/null 2>&1
+ then
+ die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+ fi
+fi
+
+# Increase the maximum file descriptors if we can.
+if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
+ case $MAX_FD in #(
+ max*)
+ # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
+ # shellcheck disable=SC2039,SC3045
+ MAX_FD=$( ulimit -H -n ) ||
+ warn "Could not query maximum file descriptor limit"
+ esac
+ case $MAX_FD in #(
+ '' | soft) :;; #(
+ *)
+ # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
+ # shellcheck disable=SC2039,SC3045
+ ulimit -n "$MAX_FD" ||
+ warn "Could not set maximum file descriptor limit to $MAX_FD"
+ esac
+fi
+
+# Collect all arguments for the java command, stacking in reverse order:
+# * args from the command line
+# * the main class name
+# * -classpath
+# * -D...appname settings
+# * --module-path (only if needed)
+# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.
+
+# For Cygwin or MSYS, switch paths to Windows format before running java
+if "$cygwin" || "$msys" ; then
+ APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
+ CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )
+
+ JAVACMD=$( cygpath --unix "$JAVACMD" )
+
+ # Now convert the arguments - kludge to limit ourselves to /bin/sh
+ for arg do
+ if
+ case $arg in #(
+ -*) false ;; # don't mess with options #(
+ /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath
+ [ -e "$t" ] ;; #(
+ *) false ;;
+ esac
+ then
+ arg=$( cygpath --path --ignore --mixed "$arg" )
+ fi
+ # Roll the args list around exactly as many times as the number of
+ # args, so each arg winds up back in the position where it started, but
+ # possibly modified.
+ #
+ # NB: a `for` loop captures its iteration list before it begins, so
+ # changing the positional parameters here affects neither the number of
+ # iterations, nor the values presented in `arg`.
+ shift # remove old arg
+ set -- "$@" "$arg" # push replacement arg
+ done
+fi
+
+
+# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+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,
+# 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.
+
+set -- \
+ "-Dorg.gradle.appname=$APP_BASE_NAME" \
+ -classpath "$CLASSPATH" \
+ org.gradle.wrapper.GradleWrapperMain \
+ "$@"
+
+# Stop when "xargs" is not available.
+if ! command -v xargs >/dev/null 2>&1
+then
+ die "xargs is not available"
+fi
+
+# Use "xargs" to parse quoted args.
+#
+# With -n1 it outputs one arg per line, with the quotes and backslashes removed.
+#
+# In Bash we could simply go:
+#
+# readarray ARGS < <( xargs -n1 <<<"$var" ) &&
+# set -- "${ARGS[@]}" "$@"
+#
+# but POSIX shell has neither arrays nor command substitution, so instead we
+# post-process each arg (as a line of input to sed) to backslash-escape any
+# character that might be a shell metacharacter, then use eval to reverse
+# that process (while maintaining the separation between arguments), and wrap
+# the whole thing up as a single "set" statement.
+#
+# This will of course break if any of these variables contains a newline or
+# an unmatched quote.
+#
+
+eval "set -- $(
+ printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" |
+ xargs -n1 |
+ sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' |
+ tr '\n' ' '
+ )" '"$@"'
+
+exec "$JAVACMD" "$@"
diff --git a/demos/react-native-barebones-opsqlite/android/gradlew.bat b/demos/react-native-barebones-opsqlite/android/gradlew.bat
new file mode 100644
index 000000000..9b42019c7
--- /dev/null
+++ b/demos/react-native-barebones-opsqlite/android/gradlew.bat
@@ -0,0 +1,94 @@
+@rem
+@rem Copyright 2015 the original author or authors.
+@rem
+@rem Licensed under the Apache License, Version 2.0 (the "License");
+@rem you may not use this file except in compliance with the License.
+@rem You may obtain a copy of the License at
+@rem
+@rem https://www.apache.org/licenses/LICENSE-2.0
+@rem
+@rem Unless required by applicable law or agreed to in writing, software
+@rem distributed under the License is distributed on an "AS IS" BASIS,
+@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+@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 ##########################################################################
+@rem
+@rem Gradle startup script for Windows
+@rem
+@rem ##########################################################################
+
+@rem Set local scope for the variables with windows NT shell
+if "%OS%"=="Windows_NT" setlocal
+
+set DIRNAME=%~dp0
+if "%DIRNAME%"=="" set DIRNAME=.
+@rem This is normally unused
+set APP_BASE_NAME=%~n0
+set APP_HOME=%DIRNAME%
+
+@rem Resolve any "." and ".." in APP_HOME to make it shorter.
+for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
+
+@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
+
+@rem Find java.exe
+if defined JAVA_HOME goto findJavaFromJavaHome
+
+set JAVA_EXE=java.exe
+%JAVA_EXE% -version >NUL 2>&1
+if %ERRORLEVEL% equ 0 goto execute
+
+echo. 1>&2
+echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2
+echo. 1>&2
+echo Please set the JAVA_HOME variable in your environment to match the 1>&2
+echo location of your Java installation. 1>&2
+
+goto fail
+
+:findJavaFromJavaHome
+set JAVA_HOME=%JAVA_HOME:"=%
+set JAVA_EXE=%JAVA_HOME%/bin/java.exe
+
+if exist "%JAVA_EXE%" goto execute
+
+echo. 1>&2
+echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2
+echo. 1>&2
+echo Please set the JAVA_HOME variable in your environment to match the 1>&2
+echo location of your Java installation. 1>&2
+
+goto fail
+
+:execute
+@rem Setup the command line
+
+set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
+
+
+@rem Execute Gradle
+"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
+
+:end
+@rem End local scope for the variables with windows NT shell
+if %ERRORLEVEL% equ 0 goto mainEnd
+
+:fail
+rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
+rem the _cmd.exe /c_ return code!
+set EXIT_CODE=%ERRORLEVEL%
+if %EXIT_CODE% equ 0 set EXIT_CODE=1
+if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE%
+exit /b %EXIT_CODE%
+
+:mainEnd
+if "%OS%"=="Windows_NT" endlocal
+
+:omega
diff --git a/demos/react-native-barebones-opsqlite/android/settings.gradle b/demos/react-native-barebones-opsqlite/android/settings.gradle
new file mode 100644
index 000000000..0a79e470e
--- /dev/null
+++ b/demos/react-native-barebones-opsqlite/android/settings.gradle
@@ -0,0 +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 = 'ReactNativeBareBones'
+include ':app'
+includeBuild('../node_modules/@react-native/gradle-plugin')
diff --git a/demos/react-native-barebones-opsqlite/app.json b/demos/react-native-barebones-opsqlite/app.json
new file mode 100644
index 000000000..4d9a7b9f6
--- /dev/null
+++ b/demos/react-native-barebones-opsqlite/app.json
@@ -0,0 +1,4 @@
+{
+ "name": "ReactNativeBareBones",
+ "displayName": "ReactNativeBareBones"
+}
diff --git a/demos/react-native-barebones-opsqlite/babel.config.js b/demos/react-native-barebones-opsqlite/babel.config.js
new file mode 100644
index 000000000..7174f62a3
--- /dev/null
+++ b/demos/react-native-barebones-opsqlite/babel.config.js
@@ -0,0 +1,7 @@
+module.exports = function (api) {
+ api.cache(true);
+ return {
+ presets: ['module:@react-native/babel-preset'],
+ plugins: ['@babel/plugin-transform-async-generator-functions']
+ }
+};
diff --git a/demos/react-native-barebones-opsqlite/index.js b/demos/react-native-barebones-opsqlite/index.js
new file mode 100644
index 000000000..9b7393291
--- /dev/null
+++ b/demos/react-native-barebones-opsqlite/index.js
@@ -0,0 +1,9 @@
+/**
+ * @format
+ */
+
+import { AppRegistry } from 'react-native';
+import App from './App';
+import { name as appName } from './app.json';
+
+AppRegistry.registerComponent(appName, () => App);
diff --git a/demos/react-native-barebones-opsqlite/ios/.xcode.env b/demos/react-native-barebones-opsqlite/ios/.xcode.env
new file mode 100644
index 000000000..3d5782c71
--- /dev/null
+++ b/demos/react-native-barebones-opsqlite/ios/.xcode.env
@@ -0,0 +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/demos/react-native-barebones-opsqlite/ios/Podfile b/demos/react-native-barebones-opsqlite/ios/Podfile
new file mode 100644
index 000000000..3d17522a9
--- /dev/null
+++ b/demos/react-native-barebones-opsqlite/ios/Podfile
@@ -0,0 +1,35 @@
+# Resolve react_native_pods.rb with node to allow for hoisting
+require Pod::Executable.execute_command('node', ['-p',
+ 'require.resolve(
+ "react-native/scripts/react_native_pods.rb",
+ {paths: [process.argv[1]]},
+ )', __dir__]).strip
+
+platform :ios, min_ios_version_supported
+prepare_react_native_project!
+
+linkage = ENV['USE_FRAMEWORKS']
+if linkage != nil
+ Pod::UI.puts "Configuring Pod with #{linkage}ally linked Frameworks".green
+ use_frameworks! :linkage => linkage.to_sym
+end
+
+target 'ReactNativeBareBones' do
+ config = use_native_modules!
+
+ use_react_native!(
+ :path => config[:reactNativePath],
+ # An absolute path to your application root.
+ :app_path => "#{Pod::Config.instance.installation_root}/.."
+ )
+
+ 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(
+ installer,
+ config[:reactNativePath],
+ :mac_catalyst_enabled => false,
+ # :ccache_enabled => true
+ )
+ end
+end
diff --git a/demos/react-native-barebones-opsqlite/ios/Podfile.lock b/demos/react-native-barebones-opsqlite/ios/Podfile.lock
new file mode 100644
index 000000000..990eeece0
--- /dev/null
+++ b/demos/react-native-barebones-opsqlite/ios/Podfile.lock
@@ -0,0 +1,1843 @@
+PODS:
+ - boost (1.84.0)
+ - DoubleConversion (1.1.6)
+ - fast_float (6.1.4)
+ - FBLazyVector (0.77.0)
+ - fmt (11.0.2)
+ - glog (0.3.5)
+ - hermes-engine (0.77.0):
+ - hermes-engine/Pre-built (= 0.77.0)
+ - hermes-engine/Pre-built (0.77.0)
+ - op-sqlite (11.4.4):
+ - DoubleConversion
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.11.18.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React
+ - React-callinvoker
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - powersync-op-sqlite (0.4.1):
+ - DoubleConversion
+ - glog
+ - hermes-engine
+ - powersync-sqlite-core (~> 0.3.12)
+ - RCT-Folly (= 2024.11.18.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React
+ - React-callinvoker
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - powersync-sqlite-core (0.3.12)
+ - RCT-Folly (2024.11.18.00):
+ - boost
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - 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)
+ - fmt (= 11.0.2)
+ - glog
+ - RCT-Folly/Fabric (2024.11.18.00):
+ - boost
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - RCTDeprecation (0.77.0)
+ - RCTRequired (0.77.0)
+ - RCTTypeSafety (0.77.0):
+ - FBLazyVector (= 0.77.0)
+ - RCTRequired (= 0.77.0)
+ - React-Core (= 0.77.0)
+ - React (0.77.0):
+ - React-Core (= 0.77.0)
+ - React-Core/DevSupport (= 0.77.0)
+ - React-Core/RCTWebSocket (= 0.77.0)
+ - React-RCTActionSheet (= 0.77.0)
+ - React-RCTAnimation (= 0.77.0)
+ - React-RCTBlob (= 0.77.0)
+ - React-RCTImage (= 0.77.0)
+ - React-RCTLinking (= 0.77.0)
+ - React-RCTNetwork (= 0.77.0)
+ - React-RCTSettings (= 0.77.0)
+ - React-RCTText (= 0.77.0)
+ - React-RCTVibration (= 0.77.0)
+ - React-callinvoker (0.77.0)
+ - React-Core (0.77.0):
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.11.18.00)
+ - RCTDeprecation
+ - React-Core/Default (= 0.77.0)
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.1)
+ - Yoga
+ - React-Core/CoreModulesHeaders (0.77.0):
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.11.18.00)
+ - RCTDeprecation
+ - React-Core/Default
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.1)
+ - Yoga
+ - React-Core/Default (0.77.0):
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.11.18.00)
+ - RCTDeprecation
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.1)
+ - Yoga
+ - React-Core/DevSupport (0.77.0):
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.11.18.00)
+ - RCTDeprecation
+ - React-Core/Default (= 0.77.0)
+ - React-Core/RCTWebSocket (= 0.77.0)
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.1)
+ - Yoga
+ - React-Core/RCTActionSheetHeaders (0.77.0):
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.11.18.00)
+ - RCTDeprecation
+ - React-Core/Default
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.1)
+ - Yoga
+ - React-Core/RCTAnimationHeaders (0.77.0):
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.11.18.00)
+ - RCTDeprecation
+ - React-Core/Default
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.1)
+ - Yoga
+ - React-Core/RCTBlobHeaders (0.77.0):
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.11.18.00)
+ - RCTDeprecation
+ - React-Core/Default
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.1)
+ - Yoga
+ - React-Core/RCTImageHeaders (0.77.0):
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.11.18.00)
+ - RCTDeprecation
+ - React-Core/Default
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.1)
+ - Yoga
+ - React-Core/RCTLinkingHeaders (0.77.0):
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.11.18.00)
+ - RCTDeprecation
+ - React-Core/Default
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.1)
+ - Yoga
+ - React-Core/RCTNetworkHeaders (0.77.0):
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.11.18.00)
+ - RCTDeprecation
+ - React-Core/Default
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.1)
+ - Yoga
+ - React-Core/RCTSettingsHeaders (0.77.0):
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.11.18.00)
+ - RCTDeprecation
+ - React-Core/Default
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.1)
+ - Yoga
+ - React-Core/RCTTextHeaders (0.77.0):
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.11.18.00)
+ - RCTDeprecation
+ - React-Core/Default
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.1)
+ - Yoga
+ - React-Core/RCTVibrationHeaders (0.77.0):
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.11.18.00)
+ - RCTDeprecation
+ - React-Core/Default
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.1)
+ - Yoga
+ - React-Core/RCTWebSocket (0.77.0):
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.11.18.00)
+ - RCTDeprecation
+ - React-Core/Default (= 0.77.0)
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.1)
+ - Yoga
+ - React-CoreModules (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - RCT-Folly (= 2024.11.18.00)
+ - RCTTypeSafety (= 0.77.0)
+ - React-Core/CoreModulesHeaders (= 0.77.0)
+ - React-jsi (= 0.77.0)
+ - React-jsinspector
+ - React-NativeModulesApple
+ - React-RCTBlob
+ - React-RCTFBReactNativeSpec
+ - React-RCTImage (= 0.77.0)
+ - ReactCommon
+ - SocketRocket (= 0.7.1)
+ - React-cxxreact (0.77.0):
+ - boost
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.11.18.00)
+ - React-callinvoker (= 0.77.0)
+ - React-debug (= 0.77.0)
+ - React-jsi (= 0.77.0)
+ - React-jsinspector
+ - React-logger (= 0.77.0)
+ - React-perflogger (= 0.77.0)
+ - React-runtimeexecutor (= 0.77.0)
+ - React-timing (= 0.77.0)
+ - React-debug (0.77.0)
+ - React-defaultsnativemodule (0.77.0):
+ - hermes-engine
+ - RCT-Folly
+ - React-domnativemodule
+ - React-featureflagsnativemodule
+ - React-idlecallbacksnativemodule
+ - React-jsi
+ - React-jsiexecutor
+ - React-microtasksnativemodule
+ - React-RCTFBReactNativeSpec
+ - React-domnativemodule (0.77.0):
+ - hermes-engine
+ - RCT-Folly
+ - React-Fabric
+ - React-FabricComponents
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-RCTFBReactNativeSpec
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-Fabric (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric/animations (= 0.77.0)
+ - React-Fabric/attributedstring (= 0.77.0)
+ - React-Fabric/componentregistry (= 0.77.0)
+ - React-Fabric/componentregistrynative (= 0.77.0)
+ - React-Fabric/components (= 0.77.0)
+ - React-Fabric/core (= 0.77.0)
+ - React-Fabric/dom (= 0.77.0)
+ - React-Fabric/imagemanager (= 0.77.0)
+ - React-Fabric/leakchecker (= 0.77.0)
+ - React-Fabric/mounting (= 0.77.0)
+ - React-Fabric/observers (= 0.77.0)
+ - React-Fabric/scheduler (= 0.77.0)
+ - React-Fabric/telemetry (= 0.77.0)
+ - React-Fabric/templateprocessor (= 0.77.0)
+ - React-Fabric/uimanager (= 0.77.0)
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/animations (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/attributedstring (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/componentregistry (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/componentregistrynative (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric/components/legacyviewmanagerinterop (= 0.77.0)
+ - React-Fabric/components/root (= 0.77.0)
+ - React-Fabric/components/view (= 0.77.0)
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/legacyviewmanagerinterop (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/root (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/view (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-Fabric/core (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/dom (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/imagemanager (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/leakchecker (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/mounting (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/observers (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric/observers/events (= 0.77.0)
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/observers/events (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/scheduler (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric/observers/events
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-performancetimeline
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/telemetry (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/templateprocessor (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/uimanager (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric/uimanager/consistency (= 0.77.0)
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererconsistency
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/uimanager/consistency (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererconsistency
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-FabricComponents (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-FabricComponents/components (= 0.77.0)
+ - React-FabricComponents/textlayoutmanager (= 0.77.0)
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-FabricComponents/components (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-FabricComponents/components/inputaccessory (= 0.77.0)
+ - React-FabricComponents/components/iostextinput (= 0.77.0)
+ - React-FabricComponents/components/modal (= 0.77.0)
+ - React-FabricComponents/components/rncore (= 0.77.0)
+ - React-FabricComponents/components/safeareaview (= 0.77.0)
+ - React-FabricComponents/components/scrollview (= 0.77.0)
+ - React-FabricComponents/components/text (= 0.77.0)
+ - React-FabricComponents/components/textinput (= 0.77.0)
+ - React-FabricComponents/components/unimplementedview (= 0.77.0)
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-FabricComponents/components/inputaccessory (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-FabricComponents/components/iostextinput (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-FabricComponents/components/modal (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-FabricComponents/components/rncore (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-FabricComponents/components/safeareaview (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-FabricComponents/components/scrollview (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-FabricComponents/components/text (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-FabricComponents/components/textinput (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-FabricComponents/components/unimplementedview (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-FabricComponents/textlayoutmanager (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-FabricImage (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.11.18.00)
+ - RCTRequired (= 0.77.0)
+ - RCTTypeSafety (= 0.77.0)
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-jsiexecutor (= 0.77.0)
+ - React-logger
+ - React-rendererdebug
+ - React-utils
+ - ReactCommon
+ - Yoga
+ - React-featureflags (0.77.0)
+ - React-featureflagsnativemodule (0.77.0):
+ - hermes-engine
+ - RCT-Folly
+ - React-featureflags
+ - React-jsi
+ - React-jsiexecutor
+ - React-RCTFBReactNativeSpec
+ - ReactCommon/turbomodule/core
+ - React-graphics (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - RCT-Folly/Fabric (= 2024.11.18.00)
+ - React-jsi
+ - React-jsiexecutor
+ - React-utils
+ - React-hermes (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.11.18.00)
+ - React-cxxreact (= 0.77.0)
+ - React-jsi
+ - React-jsiexecutor (= 0.77.0)
+ - React-jsinspector
+ - React-perflogger (= 0.77.0)
+ - React-runtimeexecutor
+ - React-idlecallbacksnativemodule (0.77.0):
+ - hermes-engine
+ - RCT-Folly
+ - React-jsi
+ - React-jsiexecutor
+ - React-RCTFBReactNativeSpec
+ - React-runtimescheduler
+ - ReactCommon/turbomodule/core
+ - React-ImageManager (0.77.0):
+ - glog
+ - RCT-Folly/Fabric
+ - React-Core/Default
+ - React-debug
+ - React-Fabric
+ - React-graphics
+ - React-rendererdebug
+ - React-utils
+ - React-jserrorhandler (0.77.0):
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.11.18.00)
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-jsi
+ - ReactCommon/turbomodule/bridging
+ - React-jsi (0.77.0):
+ - boost
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.11.18.00)
+ - React-jsiexecutor (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.11.18.00)
+ - React-cxxreact (= 0.77.0)
+ - React-jsi (= 0.77.0)
+ - React-jsinspector
+ - React-perflogger (= 0.77.0)
+ - React-jsinspector (0.77.0):
+ - DoubleConversion
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.11.18.00)
+ - React-featureflags
+ - React-jsi
+ - React-perflogger (= 0.77.0)
+ - React-runtimeexecutor (= 0.77.0)
+ - React-jsitracing (0.77.0):
+ - React-jsi
+ - React-logger (0.77.0):
+ - glog
+ - React-Mapbuffer (0.77.0):
+ - glog
+ - React-debug
+ - React-microtasksnativemodule (0.77.0):
+ - hermes-engine
+ - RCT-Folly
+ - React-jsi
+ - React-jsiexecutor
+ - React-RCTFBReactNativeSpec
+ - ReactCommon/turbomodule/core
+ - React-nativeconfig (0.77.0)
+ - React-NativeModulesApple (0.77.0):
+ - glog
+ - hermes-engine
+ - React-callinvoker
+ - React-Core
+ - React-cxxreact
+ - React-jsi
+ - React-jsinspector
+ - React-runtimeexecutor
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - React-perflogger (0.77.0):
+ - DoubleConversion
+ - RCT-Folly (= 2024.11.18.00)
+ - React-performancetimeline (0.77.0):
+ - RCT-Folly (= 2024.11.18.00)
+ - React-cxxreact
+ - React-featureflags
+ - React-timing
+ - React-RCTActionSheet (0.77.0):
+ - React-Core/RCTActionSheetHeaders (= 0.77.0)
+ - React-RCTAnimation (0.77.0):
+ - RCT-Folly (= 2024.11.18.00)
+ - RCTTypeSafety
+ - React-Core/RCTAnimationHeaders
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFBReactNativeSpec
+ - ReactCommon
+ - React-RCTAppDelegate (0.77.0):
+ - RCT-Folly (= 2024.11.18.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-CoreModules
+ - React-debug
+ - React-defaultsnativemodule
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-hermes
+ - React-nativeconfig
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-RCTFBReactNativeSpec
+ - React-RCTImage
+ - React-RCTNetwork
+ - React-rendererdebug
+ - React-RuntimeApple
+ - React-RuntimeCore
+ - React-RuntimeHermes
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon
+ - React-RCTBlob (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - hermes-engine
+ - RCT-Folly (= 2024.11.18.00)
+ - React-Core/RCTBlobHeaders
+ - React-Core/RCTWebSocket
+ - React-jsi
+ - React-jsinspector
+ - React-NativeModulesApple
+ - React-RCTFBReactNativeSpec
+ - React-RCTNetwork
+ - ReactCommon
+ - React-RCTFabric (0.77.0):
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.11.18.00)
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-FabricComponents
+ - React-FabricImage
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-jsinspector
+ - React-nativeconfig
+ - React-performancetimeline
+ - React-RCTImage
+ - React-RCTText
+ - React-rendererconsistency
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - Yoga
+ - React-RCTFBReactNativeSpec (0.77.0):
+ - hermes-engine
+ - RCT-Folly
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-jsi
+ - React-jsiexecutor
+ - React-NativeModulesApple
+ - ReactCommon
+ - React-RCTImage (0.77.0):
+ - RCT-Folly (= 2024.11.18.00)
+ - RCTTypeSafety
+ - React-Core/RCTImageHeaders
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFBReactNativeSpec
+ - React-RCTNetwork
+ - ReactCommon
+ - React-RCTLinking (0.77.0):
+ - React-Core/RCTLinkingHeaders (= 0.77.0)
+ - React-jsi (= 0.77.0)
+ - React-NativeModulesApple
+ - React-RCTFBReactNativeSpec
+ - ReactCommon
+ - ReactCommon/turbomodule/core (= 0.77.0)
+ - React-RCTNetwork (0.77.0):
+ - RCT-Folly (= 2024.11.18.00)
+ - RCTTypeSafety
+ - React-Core/RCTNetworkHeaders
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFBReactNativeSpec
+ - ReactCommon
+ - React-RCTSettings (0.77.0):
+ - RCT-Folly (= 2024.11.18.00)
+ - RCTTypeSafety
+ - React-Core/RCTSettingsHeaders
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFBReactNativeSpec
+ - ReactCommon
+ - React-RCTText (0.77.0):
+ - React-Core/RCTTextHeaders (= 0.77.0)
+ - Yoga
+ - React-RCTVibration (0.77.0):
+ - RCT-Folly (= 2024.11.18.00)
+ - React-Core/RCTVibrationHeaders
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFBReactNativeSpec
+ - ReactCommon
+ - React-rendererconsistency (0.77.0)
+ - React-rendererdebug (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - RCT-Folly (= 2024.11.18.00)
+ - React-debug
+ - React-rncore (0.77.0)
+ - React-RuntimeApple (0.77.0):
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.11.18.00)
+ - React-callinvoker
+ - React-Core/Default
+ - React-CoreModules
+ - React-cxxreact
+ - React-featureflags
+ - React-jserrorhandler
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-Mapbuffer
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-RCTFBReactNativeSpec
+ - React-RuntimeCore
+ - React-runtimeexecutor
+ - React-RuntimeHermes
+ - React-runtimescheduler
+ - React-utils
+ - React-RuntimeCore (0.77.0):
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.11.18.00)
+ - React-cxxreact
+ - React-Fabric
+ - React-featureflags
+ - React-jserrorhandler
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-performancetimeline
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - React-runtimeexecutor (0.77.0):
+ - React-jsi (= 0.77.0)
+ - React-RuntimeHermes (0.77.0):
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.11.18.00)
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsinspector
+ - React-jsitracing
+ - React-nativeconfig
+ - React-RuntimeCore
+ - React-utils
+ - React-runtimescheduler (0.77.0):
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.11.18.00)
+ - React-callinvoker
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-jsi
+ - React-performancetimeline
+ - React-rendererconsistency
+ - React-rendererdebug
+ - React-runtimeexecutor
+ - React-timing
+ - React-utils
+ - React-timing (0.77.0)
+ - React-utils (0.77.0):
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.11.18.00)
+ - React-debug
+ - React-jsi (= 0.77.0)
+ - ReactAppDependencyProvider (0.77.0):
+ - ReactCodegen
+ - ReactCodegen (0.77.0):
+ - DoubleConversion
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-FabricImage
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-NativeModulesApple
+ - React-RCTAppDelegate
+ - React-rendererdebug
+ - React-utils
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - ReactCommon (0.77.0):
+ - ReactCommon/turbomodule (= 0.77.0)
+ - ReactCommon/turbomodule (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.11.18.00)
+ - React-callinvoker (= 0.77.0)
+ - React-cxxreact (= 0.77.0)
+ - React-jsi (= 0.77.0)
+ - React-logger (= 0.77.0)
+ - React-perflogger (= 0.77.0)
+ - ReactCommon/turbomodule/bridging (= 0.77.0)
+ - ReactCommon/turbomodule/core (= 0.77.0)
+ - ReactCommon/turbomodule/bridging (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.11.18.00)
+ - React-callinvoker (= 0.77.0)
+ - React-cxxreact (= 0.77.0)
+ - React-jsi (= 0.77.0)
+ - React-logger (= 0.77.0)
+ - React-perflogger (= 0.77.0)
+ - ReactCommon/turbomodule/core (0.77.0):
+ - DoubleConversion
+ - fast_float (= 6.1.4)
+ - fmt (= 11.0.2)
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.11.18.00)
+ - React-callinvoker (= 0.77.0)
+ - React-cxxreact (= 0.77.0)
+ - React-debug (= 0.77.0)
+ - React-featureflags (= 0.77.0)
+ - React-jsi (= 0.77.0)
+ - React-logger (= 0.77.0)
+ - React-perflogger (= 0.77.0)
+ - React-utils (= 0.77.0)
+ - SocketRocket (0.7.1)
+ - Yoga (0.0.0)
+
+DEPENDENCIES:
+ - boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
+ - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
+ - fast_float (from `../node_modules/react-native/third-party-podspecs/fast_float.podspec`)
+ - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
+ - fmt (from `../node_modules/react-native/third-party-podspecs/fmt.podspec`)
+ - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
+ - hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`)
+ - "op-sqlite (from `../../../node_modules/@op-engineering/op-sqlite`)"
+ - "powersync-op-sqlite (from `../node_modules/@powersync/op-sqlite`)"
+ - 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`)
+ - React (from `../node_modules/react-native/`)
+ - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
+ - React-Core (from `../node_modules/react-native/`)
+ - React-Core/RCTWebSocket (from `../node_modules/react-native/`)
+ - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
+ - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
+ - React-debug (from `../node_modules/react-native/ReactCommon/react/debug`)
+ - React-defaultsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/defaults`)
+ - React-domnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/dom`)
+ - React-Fabric (from `../node_modules/react-native/ReactCommon`)
+ - React-FabricComponents (from `../node_modules/react-native/ReactCommon`)
+ - React-FabricImage (from `../node_modules/react-native/ReactCommon`)
+ - React-featureflags (from `../node_modules/react-native/ReactCommon/react/featureflags`)
+ - React-featureflagsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/featureflags`)
+ - React-graphics (from `../node_modules/react-native/ReactCommon/react/renderer/graphics`)
+ - React-hermes (from `../node_modules/react-native/ReactCommon/hermes`)
+ - React-idlecallbacksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks`)
+ - React-ImageManager (from `../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios`)
+ - React-jserrorhandler (from `../node_modules/react-native/ReactCommon/jserrorhandler`)
+ - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
+ - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
+ - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector-modern`)
+ - React-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-nativeconfig (from `../node_modules/react-native/ReactCommon`)
+ - React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)
+ - 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`)
+ - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
+ - React-RCTAppDelegate (from `../node_modules/react-native/Libraries/AppDelegate`)
+ - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
+ - React-RCTFabric (from `../node_modules/react-native/React`)
+ - React-RCTFBReactNativeSpec (from `../node_modules/react-native/React`)
+ - 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-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-rendererdebug (from `../node_modules/react-native/ReactCommon/react/renderer/debug`)
+ - React-rncore (from `../node_modules/react-native/ReactCommon`)
+ - React-RuntimeApple (from `../node_modules/react-native/ReactCommon/react/runtime/platform/ios`)
+ - React-RuntimeCore (from `../node_modules/react-native/ReactCommon/react/runtime`)
+ - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
+ - React-RuntimeHermes (from `../node_modules/react-native/ReactCommon/react/runtime`)
+ - React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`)
+ - React-timing (from `../node_modules/react-native/ReactCommon/react/timing`)
+ - React-utils (from `../node_modules/react-native/ReactCommon/react/utils`)
+ - ReactAppDependencyProvider (from `build/generated/ios`)
+ - ReactCodegen (from `build/generated/ios`)
+ - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
+ - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
+
+SPEC REPOS:
+ trunk:
+ - powersync-sqlite-core
+ - SocketRocket
+
+EXTERNAL SOURCES:
+ boost:
+ :podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"
+ DoubleConversion:
+ :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
+ fast_float:
+ :podspec: "../node_modules/react-native/third-party-podspecs/fast_float.podspec"
+ FBLazyVector:
+ :path: "../node_modules/react-native/Libraries/FBLazyVector"
+ fmt:
+ :podspec: "../node_modules/react-native/third-party-podspecs/fmt.podspec"
+ glog:
+ :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
+ op-sqlite:
+ :path: "../../../node_modules/@op-engineering/op-sqlite"
+ powersync-op-sqlite:
+ :path: "../node_modules/@powersync/op-sqlite"
+ RCT-Folly:
+ :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
+ RCTDeprecation:
+ :path: "../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation"
+ RCTRequired:
+ :path: "../node_modules/react-native/Libraries/Required"
+ RCTTypeSafety:
+ :path: "../node_modules/react-native/Libraries/TypeSafety"
+ React:
+ :path: "../node_modules/react-native/"
+ React-callinvoker:
+ :path: "../node_modules/react-native/ReactCommon/callinvoker"
+ React-Core:
+ :path: "../node_modules/react-native/"
+ React-CoreModules:
+ :path: "../node_modules/react-native/React/CoreModules"
+ React-cxxreact:
+ :path: "../node_modules/react-native/ReactCommon/cxxreact"
+ React-debug:
+ :path: "../node_modules/react-native/ReactCommon/react/debug"
+ React-defaultsnativemodule:
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/defaults"
+ React-domnativemodule:
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/dom"
+ React-Fabric:
+ :path: "../node_modules/react-native/ReactCommon"
+ React-FabricComponents:
+ :path: "../node_modules/react-native/ReactCommon"
+ React-FabricImage:
+ :path: "../node_modules/react-native/ReactCommon"
+ React-featureflags:
+ :path: "../node_modules/react-native/ReactCommon/react/featureflags"
+ React-featureflagsnativemodule:
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/featureflags"
+ React-graphics:
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/graphics"
+ React-hermes:
+ :path: "../node_modules/react-native/ReactCommon/hermes"
+ React-idlecallbacksnativemodule:
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks"
+ React-ImageManager:
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios"
+ React-jserrorhandler:
+ :path: "../node_modules/react-native/ReactCommon/jserrorhandler"
+ React-jsi:
+ :path: "../node_modules/react-native/ReactCommon/jsi"
+ React-jsiexecutor:
+ :path: "../node_modules/react-native/ReactCommon/jsiexecutor"
+ React-jsinspector:
+ :path: "../node_modules/react-native/ReactCommon/jsinspector-modern"
+ React-jsitracing:
+ :path: "../node_modules/react-native/ReactCommon/hermes/executor/"
+ React-logger:
+ :path: "../node_modules/react-native/ReactCommon/logger"
+ React-Mapbuffer:
+ :path: "../node_modules/react-native/ReactCommon"
+ React-microtasksnativemodule:
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/microtasks"
+ React-nativeconfig:
+ :path: "../node_modules/react-native/ReactCommon"
+ React-NativeModulesApple:
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios"
+ React-perflogger:
+ :path: "../node_modules/react-native/ReactCommon/reactperflogger"
+ React-performancetimeline:
+ :path: "../node_modules/react-native/ReactCommon/react/performance/timeline"
+ React-RCTActionSheet:
+ :path: "../node_modules/react-native/Libraries/ActionSheetIOS"
+ React-RCTAnimation:
+ :path: "../node_modules/react-native/Libraries/NativeAnimation"
+ React-RCTAppDelegate:
+ :path: "../node_modules/react-native/Libraries/AppDelegate"
+ React-RCTBlob:
+ :path: "../node_modules/react-native/Libraries/Blob"
+ React-RCTFabric:
+ :path: "../node_modules/react-native/React"
+ React-RCTFBReactNativeSpec:
+ :path: "../node_modules/react-native/React"
+ React-RCTImage:
+ :path: "../node_modules/react-native/Libraries/Image"
+ React-RCTLinking:
+ :path: "../node_modules/react-native/Libraries/LinkingIOS"
+ React-RCTNetwork:
+ :path: "../node_modules/react-native/Libraries/Network"
+ React-RCTSettings:
+ :path: "../node_modules/react-native/Libraries/Settings"
+ React-RCTText:
+ :path: "../node_modules/react-native/Libraries/Text"
+ React-RCTVibration:
+ :path: "../node_modules/react-native/Libraries/Vibration"
+ React-rendererconsistency:
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/consistency"
+ React-rendererdebug:
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/debug"
+ React-rncore:
+ :path: "../node_modules/react-native/ReactCommon"
+ React-RuntimeApple:
+ :path: "../node_modules/react-native/ReactCommon/react/runtime/platform/ios"
+ React-RuntimeCore:
+ :path: "../node_modules/react-native/ReactCommon/react/runtime"
+ React-runtimeexecutor:
+ :path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
+ React-RuntimeHermes:
+ :path: "../node_modules/react-native/ReactCommon/react/runtime"
+ React-runtimescheduler:
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler"
+ React-timing:
+ :path: "../node_modules/react-native/ReactCommon/react/timing"
+ React-utils:
+ :path: "../node_modules/react-native/ReactCommon/react/utils"
+ ReactAppDependencyProvider:
+ :path: build/generated/ios
+ ReactCodegen:
+ :path: build/generated/ios
+ ReactCommon:
+ :path: "../node_modules/react-native/ReactCommon"
+ Yoga:
+ :path: "../node_modules/react-native/ReactCommon/yoga"
+
+SPEC CHECKSUMS:
+ boost: 7e761d76ca2ce687f7cc98e698152abd03a18f90
+ DoubleConversion: cb417026b2400c8f53ae97020b2be961b59470cb
+ fast_float: 06eeec4fe712a76acc9376682e4808b05ce978b6
+ FBLazyVector: 2bc03a5cf64e29c611bbc5d7eb9d9f7431f37ee6
+ fmt: a40bb5bd0294ea969aaaba240a927bd33d878cdd
+ glog: eb93e2f488219332457c3c4eafd2738ddc7e80b8
+ hermes-engine: 1f783c3d53940aed0d2c84586f0b7a85ab7827ef
+ op-sqlite: bd34d3b5e46b2d2ab132f9188dad981024f7e1db
+ powersync-op-sqlite: f540332fcc3d11fd04774e5a4245a8f4e0f5c9ed
+ powersync-sqlite-core: fcc32da5528fca9d50b185fcd777705c034e255b
+ RCT-Folly: 36fe2295e44b10d831836cc0d1daec5f8abcf809
+ RCTDeprecation: f5c19ebdb8804b53ed029123eb69914356192fc8
+ RCTRequired: 6ae6cebe470486e0e0ce89c1c0eabb998e7c51f4
+ RCTTypeSafety: 50d6ec72a3d13cf77e041ff43a0617050fb98e3f
+ React: e46fdbd82d2de942970c106677056f3bdd438d82
+ React-callinvoker: b027ad895934b5f27ce166d095ed0d272d7df619
+ React-Core: 36b7f20f655d47a35046e2b02c9aa5a8f1bcb61e
+ React-CoreModules: 7fac6030d37165c251a7bd4bde3333212544da3c
+ React-cxxreact: 0ead442ecaa248e7f71719e286510676495ae26d
+ React-debug: 78d7544d2750737ac3acc88cca2f457d081ec43d
+ React-defaultsnativemodule: 833b618f562a7798e7a814ce1ddc001464d7a3d0
+ React-domnativemodule: c1ca50f25913f73d5e95d55ff5352e7f1d7ebcc8
+ React-Fabric: 131631b99737169826d16290d5b90c53a150fc15
+ React-FabricComponents: 1f6ce42418da316663f53b534bdebd23ec4be41f
+ React-FabricImage: b6ba029f882f1676cb1b59688fa39e1ef0814381
+ React-featureflags: 92dd7d0169ab0bf8ad404a5fe757c1ca7ccd74e8
+ React-featureflagsnativemodule: 69bc086433eff3077b90f4ea17ab2083ad281868
+ React-graphics: f09d013df7aef5551fdce4c99f2fe704c6c5b35a
+ React-hermes: 13e1c1c9222503bcd7ad450370c5a26dc9b46ebe
+ React-idlecallbacksnativemodule: f349708531f44d3db8ac79129d8e2b4d8cc3d1ff
+ React-ImageManager: e20f7c0291e5c9298b643c88b40db62c46a30ae4
+ React-jserrorhandler: 79aa6ef93470ab9e8f4c6c6258dc662880b0bfb4
+ React-jsi: 931610846e52e5d157f4bc3f71a14f9a53573abd
+ React-jsiexecutor: 3f5fb21d47c5c72c13a1710b288d78c8209a38f9
+ React-jsinspector: d2653e42aae27f01f71f10ab87866cf092288e30
+ React-jsitracing: fe93bab4193ec5528bcbdaf2f1b62475652490ad
+ React-logger: 9a0c4e1e41cd640ac49d69aacadab783f7e0096b
+ React-Mapbuffer: 6993c785c22a170c02489bc78ed207814cbd700f
+ React-microtasksnativemodule: 19230cd0933df6f6dc1336c9a9edc382d62638ae
+ React-nativeconfig: cd0fbb40987a9658c24dab5812c14e5522a64929
+ React-NativeModulesApple: 45187d13c68d47250a7416b18ff082c7cc07bff7
+ React-perflogger: 15a7bcb6c46eae8a981f7add8c9f4172e2372324
+ React-performancetimeline: 631ef8ac4246bca49c07b88cd1ad85ce460b97bf
+ React-RCTActionSheet: 25eb72eabade4095bfaf6cd9c5c965c76865daa8
+ React-RCTAnimation: 04c987fa858fa16169f543d29edb4140bd35afa9
+ React-RCTAppDelegate: b2707904e4f8ad92fd052e62684bf0c3b88381cc
+ React-RCTBlob: 1f214a7211632515805dd1f1b81fac70d12f812d
+ React-RCTFabric: 10f8b1ceac3c2feb3ddbede8a70c3410c68d79fe
+ React-RCTFBReactNativeSpec: 60d72b45a150ca35748b9a77028674b1e56a2e43
+ React-RCTImage: e516d72739797fb7c1dac5c691f02a0f5445c290
+ React-RCTLinking: 1e5554afe4f959696ad3285738c1510f2592f220
+ React-RCTNetwork: 65e1e52c8614dcab342fa1eaec750ca818160e74
+ React-RCTSettings: e86c204b481ef9264929fe00d1fdd04ce561748a
+ React-RCTText: 15f14d6f9b75e64ffe749c75e30ff047cf0fa1be
+ React-RCTVibration: 8d9078d5432972fe12d9f1526b38f504ad3d45cb
+ React-rendererconsistency: 7a81b08f01655b458d1de48ddd5b3f5988fd753f
+ React-rendererdebug: 28f591de2009cb053e21cbf87edb357e6b214147
+ React-rncore: dd08c91cea25486f79012e32975c0ea26bd92760
+ React-RuntimeApple: fc7a3fe49564bd6a5b8aef081341960212ab58d0
+ React-RuntimeCore: 2f967e25ca18a85cff22d103fbe782828442eeb4
+ React-runtimeexecutor: f9ae11481be048438640085c1e8266d6afebae44
+ React-RuntimeHermes: e2160a175c7a34dad30b0e10d79e8d70da471beb
+ React-runtimescheduler: 07601cb38739f60ddb2f9efb854a13cfb48310dd
+ React-timing: 0d0263a5d8ab6fc8c325efb54cee1d6a6f01d657
+ React-utils: 015e250e7898047068792d4b532fed21f2eb1661
+ ReactAppDependencyProvider: 3d947e9d62f351c06c71497e1be897e6006dc303
+ ReactCodegen: 1baa534318b19e95fb0f02db0a1ae1e3c271944d
+ ReactCommon: 6014af4276bb2debc350e2620ef1bd856b4d981c
+ SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748
+ Yoga: c0d8564af14a858f962607cd7306539cb2ace926
+
+PODFILE CHECKSUM: bb12a365adcc932a9920d41a90a756c0c4846dd8
+
+COCOAPODS: 1.15.2
diff --git a/demos/react-native-barebones-opsqlite/ios/ReactNativeBareBones.xcodeproj/project.pbxproj b/demos/react-native-barebones-opsqlite/ios/ReactNativeBareBones.xcodeproj/project.pbxproj
new file mode 100644
index 000000000..a71f7f25e
--- /dev/null
+++ b/demos/react-native-barebones-opsqlite/ios/ReactNativeBareBones.xcodeproj/project.pbxproj
@@ -0,0 +1,488 @@
+// !$*UTF8*$!
+{
+ archiveVersion = 1;
+ classes = {
+ };
+ objectVersion = 54;
+ objects = {
+
+/* Begin PBXBuildFile section */
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
+ 761780ED2CA45674006654EE /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 761780EC2CA45674006654EE /* AppDelegate.swift */; };
+ 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
+ 8EB2940ED48561699FD4B73F /* libPods-ReactNativeBareBones.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2778539733AC3BD15659AD32 /* libPods-ReactNativeBareBones.a */; };
+ D5374D560B38751EFA2E5629 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */; };
+/* End PBXBuildFile section */
+
+/* Begin PBXFileReference section */
+ 13B07F961A680F5B00A75B9A /* ReactNativeBareBones.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ReactNativeBareBones.app; sourceTree = BUILT_PRODUCTS_DIR; };
+ 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = ReactNativeBareBones/Images.xcassets; sourceTree = ""; };
+ 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = ReactNativeBareBones/Info.plist; sourceTree = ""; };
+ 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = PrivacyInfo.xcprivacy; path = ReactNativeBareBones/PrivacyInfo.xcprivacy; sourceTree = ""; };
+ 2778539733AC3BD15659AD32 /* libPods-ReactNativeBareBones.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-ReactNativeBareBones.a"; sourceTree = BUILT_PRODUCTS_DIR; };
+ 4A297DFC2D09279B2FD76351 /* Pods-ReactNativeBareBones.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNativeBareBones.debug.xcconfig"; path = "Target Support Files/Pods-ReactNativeBareBones/Pods-ReactNativeBareBones.debug.xcconfig"; sourceTree = ""; };
+ 761780EC2CA45674006654EE /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = ReactNativeBareBones/AppDelegate.swift; sourceTree = ""; };
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = ReactNativeBareBones/LaunchScreen.storyboard; sourceTree = ""; };
+ C68AD6E40C70EB8B4AFB27F2 /* Pods-ReactNativeBareBones.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNativeBareBones.release.xcconfig"; path = "Target Support Files/Pods-ReactNativeBareBones/Pods-ReactNativeBareBones.release.xcconfig"; sourceTree = ""; };
+ 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 */
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 8EB2940ED48561699FD4B73F /* libPods-ReactNativeBareBones.a in Frameworks */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXFrameworksBuildPhase section */
+
+/* Begin PBXGroup section */
+ 13B07FAE1A68108700A75B9A /* ReactNativeBareBones */ = {
+ isa = PBXGroup;
+ children = (
+ 13B07FB51A68108700A75B9A /* Images.xcassets */,
+ 761780EC2CA45674006654EE /* AppDelegate.swift */,
+ 13B07FB61A68108700A75B9A /* Info.plist */,
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
+ 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */,
+ );
+ name = ReactNativeBareBones;
+ sourceTree = "";
+ };
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
+ isa = PBXGroup;
+ children = (
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
+ 2778539733AC3BD15659AD32 /* libPods-ReactNativeBareBones.a */,
+ );
+ name = Frameworks;
+ sourceTree = "";
+ };
+ 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
+ isa = PBXGroup;
+ children = (
+ );
+ name = Libraries;
+ sourceTree = "";
+ };
+ 83CBB9F61A601CBA00E9B192 = {
+ isa = PBXGroup;
+ children = (
+ 13B07FAE1A68108700A75B9A /* ReactNativeBareBones */,
+ 832341AE1AAA6A7D00B99B32 /* Libraries */,
+ 83CBBA001A601CBA00E9B192 /* Products */,
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */,
+ BBD78D7AC51CEA395F1C20DB /* Pods */,
+ );
+ indentWidth = 2;
+ sourceTree = "";
+ tabWidth = 2;
+ usesTabs = 0;
+ };
+ 83CBBA001A601CBA00E9B192 /* Products */ = {
+ isa = PBXGroup;
+ children = (
+ 13B07F961A680F5B00A75B9A /* ReactNativeBareBones.app */,
+ );
+ name = Products;
+ sourceTree = "";
+ };
+ BBD78D7AC51CEA395F1C20DB /* Pods */ = {
+ isa = PBXGroup;
+ children = (
+ 4A297DFC2D09279B2FD76351 /* Pods-ReactNativeBareBones.debug.xcconfig */,
+ C68AD6E40C70EB8B4AFB27F2 /* Pods-ReactNativeBareBones.release.xcconfig */,
+ );
+ path = Pods;
+ sourceTree = "";
+ };
+/* End PBXGroup section */
+
+/* Begin PBXNativeTarget section */
+ 13B07F861A680F5B00A75B9A /* ReactNativeBareBones */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "ReactNativeBareBones" */;
+ buildPhases = (
+ 6DF5F8E64345931DEF8E3DEC /* [CP] Check Pods Manifest.lock */,
+ 13B07F871A680F5B00A75B9A /* Sources */,
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */,
+ 13B07F8E1A680F5B00A75B9A /* Resources */,
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
+ F16EE6D309C6F671BBB510C1 /* [CP] Embed Pods Frameworks */,
+ DCABE7F4F73D5D0036D1EBCA /* [CP] Copy Pods Resources */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ );
+ name = ReactNativeBareBones;
+ productName = ReactNativeBareBones;
+ productReference = 13B07F961A680F5B00A75B9A /* ReactNativeBareBones.app */;
+ productType = "com.apple.product-type.application";
+ };
+/* End PBXNativeTarget section */
+
+/* Begin PBXProject section */
+ 83CBB9F71A601CBA00E9B192 /* Project object */ = {
+ isa = PBXProject;
+ attributes = {
+ LastUpgradeCheck = 1210;
+ TargetAttributes = {
+ 13B07F861A680F5B00A75B9A = {
+ LastSwiftMigration = 1120;
+ };
+ };
+ };
+ buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "ReactNativeBareBones" */;
+ compatibilityVersion = "Xcode 12.0";
+ developmentRegion = en;
+ hasScannedForEncodings = 0;
+ knownRegions = (
+ en,
+ Base,
+ );
+ mainGroup = 83CBB9F61A601CBA00E9B192;
+ productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
+ projectDirPath = "";
+ projectRoot = "";
+ targets = (
+ 13B07F861A680F5B00A75B9A /* ReactNativeBareBones */,
+ );
+ };
+/* End PBXProject section */
+
+/* Begin PBXResourcesBuildPhase section */
+ 13B07F8E1A680F5B00A75B9A /* Resources */ = {
+ isa = PBXResourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
+ D5374D560B38751EFA2E5629 /* PrivacyInfo.xcprivacy in Resources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXResourcesBuildPhase section */
+
+/* Begin PBXShellScriptBuildPhase section */
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
+ isa = PBXShellScriptBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputPaths = (
+ "$(SRCROOT)/.xcode.env.local",
+ "$(SRCROOT)/.xcode.env",
+ );
+ name = "Bundle React Native code and images";
+ outputPaths = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ 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";
+ };
+ 6DF5F8E64345931DEF8E3DEC /* [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-ReactNativeBareBones-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;
+ };
+ DCABE7F4F73D5D0036D1EBCA /* [CP] Copy Pods Resources */ = {
+ isa = PBXShellScriptBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputFileListPaths = (
+ "${PODS_ROOT}/Target Support Files/Pods-ReactNativeBareBones/Pods-ReactNativeBareBones-resources-${CONFIGURATION}-input-files.xcfilelist",
+ );
+ name = "[CP] Copy Pods Resources";
+ outputFileListPaths = (
+ "${PODS_ROOT}/Target Support Files/Pods-ReactNativeBareBones/Pods-ReactNativeBareBones-resources-${CONFIGURATION}-output-files.xcfilelist",
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-ReactNativeBareBones/Pods-ReactNativeBareBones-resources.sh\"\n";
+ showEnvVarsInLog = 0;
+ };
+ F16EE6D309C6F671BBB510C1 /* [CP] Embed Pods Frameworks */ = {
+ isa = PBXShellScriptBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputFileListPaths = (
+ "${PODS_ROOT}/Target Support Files/Pods-ReactNativeBareBones/Pods-ReactNativeBareBones-frameworks-${CONFIGURATION}-input-files.xcfilelist",
+ );
+ name = "[CP] Embed Pods Frameworks";
+ outputFileListPaths = (
+ "${PODS_ROOT}/Target Support Files/Pods-ReactNativeBareBones/Pods-ReactNativeBareBones-frameworks-${CONFIGURATION}-output-files.xcfilelist",
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-ReactNativeBareBones/Pods-ReactNativeBareBones-frameworks.sh\"\n";
+ showEnvVarsInLog = 0;
+ };
+/* End PBXShellScriptBuildPhase section */
+
+/* Begin PBXSourcesBuildPhase section */
+ 13B07F871A680F5B00A75B9A /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 761780ED2CA45674006654EE /* AppDelegate.swift in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXSourcesBuildPhase section */
+
+/* Begin XCBuildConfiguration section */
+ 13B07F941A680F5B00A75B9A /* Debug */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = 4A297DFC2D09279B2FD76351 /* Pods-ReactNativeBareBones.debug.xcconfig */;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ CLANG_ENABLE_MODULES = YES;
+ CURRENT_PROJECT_VERSION = 1;
+ DEVELOPMENT_TEAM = 6WA62GTJNA;
+ ENABLE_BITCODE = NO;
+ INFOPLIST_FILE = ReactNativeBareBones/Info.plist;
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ );
+ MARKETING_VERSION = 1.0;
+ OTHER_LDFLAGS = (
+ "$(inherited)",
+ "-ObjC",
+ "-lc++",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
+ PRODUCT_NAME = ReactNativeBareBones;
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
+ SWIFT_VERSION = 5.0;
+ VERSIONING_SYSTEM = "apple-generic";
+ };
+ name = Debug;
+ };
+ 13B07F951A680F5B00A75B9A /* Release */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = C68AD6E40C70EB8B4AFB27F2 /* Pods-ReactNativeBareBones.release.xcconfig */;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ CLANG_ENABLE_MODULES = YES;
+ CURRENT_PROJECT_VERSION = 1;
+ DEVELOPMENT_TEAM = 6WA62GTJNA;
+ INFOPLIST_FILE = ReactNativeBareBones/Info.plist;
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ );
+ MARKETING_VERSION = 1.0;
+ OTHER_LDFLAGS = (
+ "$(inherited)",
+ "-ObjC",
+ "-lc++",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
+ PRODUCT_NAME = ReactNativeBareBones;
+ SWIFT_VERSION = 5.0;
+ VERSIONING_SYSTEM = "apple-generic";
+ };
+ name = Release;
+ };
+ 83CBBA201A601CBA00E9B192 /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
+ CLANG_CXX_LANGUAGE_STANDARD = "c++20";
+ CLANG_CXX_LIBRARY = "libc++";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_COMMA = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INFINITE_RECURSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CLANG_WARN_UNREACHABLE_CODE = YES;
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
+ COPY_PHASE_STRIP = NO;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ ENABLE_TESTABILITY = YES;
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
+ GCC_C_LANGUAGE_STANDARD = gnu99;
+ GCC_DYNAMIC_NO_PIC = NO;
+ GCC_NO_COMMON_BLOCKS = YES;
+ GCC_OPTIMIZATION_LEVEL = 0;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ "DEBUG=1",
+ "$(inherited)",
+ );
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
+ LD_RUNPATH_SEARCH_PATHS = (
+ /usr/lib/swift,
+ "$(inherited)",
+ );
+ LIBRARY_SEARCH_PATHS = (
+ "\"$(SDKROOT)/usr/lib/swift\"",
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
+ "\"$(inherited)\"",
+ );
+ MTL_ENABLE_DEBUG_INFO = YES;
+ ONLY_ACTIVE_ARCH = YES;
+ OTHER_CPLUSPLUSFLAGS = (
+ "$(OTHER_CFLAGS)",
+ "-DFOLLY_NO_CONFIG",
+ "-DFOLLY_MOBILE=1",
+ "-DFOLLY_USE_LIBCPP=1",
+ "-DFOLLY_CFG_NO_COROUTINES=1",
+ "-DFOLLY_HAVE_CLOCK_GETTIME=1",
+ );
+ OTHER_LDFLAGS = (
+ "$(inherited)",
+ " ",
+ );
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
+ SDKROOT = iphoneos;
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG";
+ USE_HERMES = true;
+ };
+ name = Debug;
+ };
+ 83CBBA211A601CBA00E9B192 /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
+ CLANG_CXX_LANGUAGE_STANDARD = "c++20";
+ CLANG_CXX_LIBRARY = "libc++";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_COMMA = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INFINITE_RECURSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CLANG_WARN_UNREACHABLE_CODE = YES;
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
+ COPY_PHASE_STRIP = YES;
+ ENABLE_NS_ASSERTIONS = NO;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
+ GCC_C_LANGUAGE_STANDARD = gnu99;
+ GCC_NO_COMMON_BLOCKS = YES;
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
+ LD_RUNPATH_SEARCH_PATHS = (
+ /usr/lib/swift,
+ "$(inherited)",
+ );
+ LIBRARY_SEARCH_PATHS = (
+ "\"$(SDKROOT)/usr/lib/swift\"",
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
+ "\"$(inherited)\"",
+ );
+ MTL_ENABLE_DEBUG_INFO = NO;
+ OTHER_CPLUSPLUSFLAGS = (
+ "$(OTHER_CFLAGS)",
+ "-DFOLLY_NO_CONFIG",
+ "-DFOLLY_MOBILE=1",
+ "-DFOLLY_USE_LIBCPP=1",
+ "-DFOLLY_CFG_NO_COROUTINES=1",
+ "-DFOLLY_HAVE_CLOCK_GETTIME=1",
+ );
+ OTHER_LDFLAGS = (
+ "$(inherited)",
+ " ",
+ );
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
+ SDKROOT = iphoneos;
+ USE_HERMES = true;
+ VALIDATE_PRODUCT = YES;
+ };
+ name = Release;
+ };
+/* End XCBuildConfiguration section */
+
+/* Begin XCConfigurationList section */
+ 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "ReactNativeBareBones" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 13B07F941A680F5B00A75B9A /* Debug */,
+ 13B07F951A680F5B00A75B9A /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+ 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "ReactNativeBareBones" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 83CBBA201A601CBA00E9B192 /* Debug */,
+ 83CBBA211A601CBA00E9B192 /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+/* End XCConfigurationList section */
+ };
+ rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
+}
diff --git a/demos/react-native-barebones-opsqlite/ios/ReactNativeBareBones.xcodeproj/xcshareddata/xcschemes/ReactNativeBareBones.xcscheme b/demos/react-native-barebones-opsqlite/ios/ReactNativeBareBones.xcodeproj/xcshareddata/xcschemes/ReactNativeBareBones.xcscheme
new file mode 100644
index 000000000..884806290
--- /dev/null
+++ b/demos/react-native-barebones-opsqlite/ios/ReactNativeBareBones.xcodeproj/xcshareddata/xcschemes/ReactNativeBareBones.xcscheme
@@ -0,0 +1,88 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/demos/react-native-barebones-opsqlite/ios/ReactNativeBareBones.xcworkspace/contents.xcworkspacedata b/demos/react-native-barebones-opsqlite/ios/ReactNativeBareBones.xcworkspace/contents.xcworkspacedata
new file mode 100644
index 000000000..3442a83fa
--- /dev/null
+++ b/demos/react-native-barebones-opsqlite/ios/ReactNativeBareBones.xcworkspace/contents.xcworkspacedata
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
diff --git a/demos/react-native-barebones-opsqlite/ios/ReactNativeBareBones/AppDelegate.swift b/demos/react-native-barebones-opsqlite/ios/ReactNativeBareBones/AppDelegate.swift
new file mode 100644
index 000000000..ca4b2bc74
--- /dev/null
+++ b/demos/react-native-barebones-opsqlite/ios/ReactNativeBareBones/AppDelegate.swift
@@ -0,0 +1,30 @@
+import UIKit
+import React
+import React_RCTAppDelegate
+import ReactAppDependencyProvider
+
+@main
+class AppDelegate: RCTAppDelegate {
+ override func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey : Any]? = nil) -> Bool {
+ self.moduleName = "ReactNativeBareBones"
+ self.dependencyProvider = RCTAppDependencyProvider()
+
+ // 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)
+ }
+
+ 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/demos/react-native-barebones-opsqlite/ios/ReactNativeBareBones/Images.xcassets/AppIcon.appiconset/Contents.json b/demos/react-native-barebones-opsqlite/ios/ReactNativeBareBones/Images.xcassets/AppIcon.appiconset/Contents.json
new file mode 100644
index 000000000..81213230d
--- /dev/null
+++ b/demos/react-native-barebones-opsqlite/ios/ReactNativeBareBones/Images.xcassets/AppIcon.appiconset/Contents.json
@@ -0,0 +1,53 @@
+{
+ "images" : [
+ {
+ "idiom" : "iphone",
+ "scale" : "2x",
+ "size" : "20x20"
+ },
+ {
+ "idiom" : "iphone",
+ "scale" : "3x",
+ "size" : "20x20"
+ },
+ {
+ "idiom" : "iphone",
+ "scale" : "2x",
+ "size" : "29x29"
+ },
+ {
+ "idiom" : "iphone",
+ "scale" : "3x",
+ "size" : "29x29"
+ },
+ {
+ "idiom" : "iphone",
+ "scale" : "2x",
+ "size" : "40x40"
+ },
+ {
+ "idiom" : "iphone",
+ "scale" : "3x",
+ "size" : "40x40"
+ },
+ {
+ "idiom" : "iphone",
+ "scale" : "2x",
+ "size" : "60x60"
+ },
+ {
+ "idiom" : "iphone",
+ "scale" : "3x",
+ "size" : "60x60"
+ },
+ {
+ "idiom" : "ios-marketing",
+ "scale" : "1x",
+ "size" : "1024x1024"
+ }
+ ],
+ "info" : {
+ "author" : "xcode",
+ "version" : 1
+ }
+}
diff --git a/demos/react-native-barebones-opsqlite/ios/ReactNativeBareBones/Images.xcassets/Contents.json b/demos/react-native-barebones-opsqlite/ios/ReactNativeBareBones/Images.xcassets/Contents.json
new file mode 100644
index 000000000..2d92bd53f
--- /dev/null
+++ b/demos/react-native-barebones-opsqlite/ios/ReactNativeBareBones/Images.xcassets/Contents.json
@@ -0,0 +1,6 @@
+{
+ "info" : {
+ "version" : 1,
+ "author" : "xcode"
+ }
+}
diff --git a/demos/react-native-barebones-opsqlite/ios/ReactNativeBareBones/Info.plist b/demos/react-native-barebones-opsqlite/ios/ReactNativeBareBones/Info.plist
new file mode 100644
index 000000000..48170ff97
--- /dev/null
+++ b/demos/react-native-barebones-opsqlite/ios/ReactNativeBareBones/Info.plist
@@ -0,0 +1,52 @@
+
+
+
+
+ CFBundleDevelopmentRegion
+ en
+ CFBundleDisplayName
+ ReactNativeBareBones
+ CFBundleExecutable
+ $(EXECUTABLE_NAME)
+ CFBundleIdentifier
+ $(PRODUCT_BUNDLE_IDENTIFIER)
+ CFBundleInfoDictionaryVersion
+ 6.0
+ CFBundleName
+ $(PRODUCT_NAME)
+ CFBundlePackageType
+ APPL
+ CFBundleShortVersionString
+ $(MARKETING_VERSION)
+ CFBundleSignature
+ ????
+ CFBundleVersion
+ $(CURRENT_PROJECT_VERSION)
+ LSRequiresIPhoneOS
+
+ NSAppTransportSecurity
+
+
+ NSAllowsArbitraryLoads
+
+ NSAllowsLocalNetworking
+
+
+ NSLocationWhenInUseUsageDescription
+
+ UILaunchStoryboardName
+ LaunchScreen
+ UIRequiredDeviceCapabilities
+
+ arm64
+
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UIViewControllerBasedStatusBarAppearance
+
+
+
diff --git a/demos/react-native-barebones-opsqlite/ios/ReactNativeBareBones/LaunchScreen.storyboard b/demos/react-native-barebones-opsqlite/ios/ReactNativeBareBones/LaunchScreen.storyboard
new file mode 100644
index 000000000..bb9607c0c
--- /dev/null
+++ b/demos/react-native-barebones-opsqlite/ios/ReactNativeBareBones/LaunchScreen.storyboard
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/demos/react-native-barebones-opsqlite/ios/ReactNativeBareBones/PrivacyInfo.xcprivacy b/demos/react-native-barebones-opsqlite/ios/ReactNativeBareBones/PrivacyInfo.xcprivacy
new file mode 100644
index 000000000..41b8317f0
--- /dev/null
+++ b/demos/react-native-barebones-opsqlite/ios/ReactNativeBareBones/PrivacyInfo.xcprivacy
@@ -0,0 +1,37 @@
+
+
+
+
+ NSPrivacyAccessedAPITypes
+
+
+ NSPrivacyAccessedAPIType
+ NSPrivacyAccessedAPICategoryFileTimestamp
+ NSPrivacyAccessedAPITypeReasons
+
+ C617.1
+
+
+
+ NSPrivacyAccessedAPIType
+ NSPrivacyAccessedAPICategoryUserDefaults
+ NSPrivacyAccessedAPITypeReasons
+
+ CA92.1
+
+
+
+ NSPrivacyAccessedAPIType
+ NSPrivacyAccessedAPICategorySystemBootTime
+ NSPrivacyAccessedAPITypeReasons
+
+ 35F9.1
+
+
+
+ NSPrivacyCollectedDataTypes
+
+ NSPrivacyTracking
+
+
+
diff --git a/demos/react-native-barebones-opsqlite/metro.config.js b/demos/react-native-barebones-opsqlite/metro.config.js
new file mode 100644
index 000000000..6cc84938b
--- /dev/null
+++ b/demos/react-native-barebones-opsqlite/metro.config.js
@@ -0,0 +1,22 @@
+const {getDefaultConfig, mergeConfig} = require('@react-native/metro-config');
+const path = require('node:path');
+
+// Find the project and workspace directories
+const projectRoot = __dirname;
+const workspaceRoot = path.resolve(projectRoot, '../..');
+
+const config = getDefaultConfig(projectRoot);
+
+// 1. Watch all files within the monorepo
+config.watchFolders = [workspaceRoot];
+// 2. Let Metro know where to resolve packages and in what order
+config.resolver.nodeModulesPaths = [
+ path.resolve(projectRoot, 'node_modules'),
+ path.resolve(workspaceRoot, 'node_modules')
+];
+// #3 - Force resolving nested modules to the folders below
+config.resolver.disableHierarchicalLookup = true;
+config.resolver.unstable_enableSymlinks = true;
+
+/** @type {import('@react-native/metro-config').MetroConfig} */
+module.exports = mergeConfig(getDefaultConfig(__dirname), config);
diff --git a/demos/react-native-barebones-opsqlite/package.json b/demos/react-native-barebones-opsqlite/package.json
new file mode 100644
index 000000000..a86bb645b
--- /dev/null
+++ b/demos/react-native-barebones-opsqlite/package.json
@@ -0,0 +1,39 @@
+{
+ "name": "ReactNativeBareBones",
+ "version": "0.0.1",
+ "private": true,
+ "scripts": {
+ "android": "react-native run-android",
+ "ios": "react-native run-ios",
+ "lint": "eslint .",
+ "start": "react-native start"
+ },
+ "dependencies": {
+ "@azure/core-asynciterator-polyfill": "^1.0.2",
+ "@op-engineering/op-sqlite": "^11.4.4",
+ "@powersync/op-sqlite": "workspace:*",
+ "@powersync/common": "workspace:*",
+ "@powersync/react-native": "workspace:*",
+ "@powersync/react": "workspace:*",
+ "react": "18.3.1",
+ "react-native": "0.77.0"
+ },
+ "devDependencies": {
+ "@babel/core": "^7.26.7",
+ "@babel/plugin-transform-async-generator-functions": "^7.26.8",
+ "@babel/preset-env": "^7.26.7",
+ "@babel/runtime": "^7.26.7",
+ "@react-native-community/cli": "15.1.3",
+ "@react-native-community/cli-platform-android": "15.1.3",
+ "@react-native-community/cli-platform-ios": "15.1.3",
+ "@react-native/babel-preset": "0.77.0",
+ "@react-native/eslint-config": "0.77.0",
+ "@react-native/metro-config": "0.77.0",
+ "@react-native/typescript-config": "0.77.0",
+ "@types/react": "^18.3.18",
+ "typescript": "^5.3.3"
+ },
+ "engines": {
+ "node": ">=18"
+ }
+}
diff --git a/demos/react-native-barebones-opsqlite/tsconfig.json b/demos/react-native-barebones-opsqlite/tsconfig.json
new file mode 100644
index 000000000..0368cf385
--- /dev/null
+++ b/demos/react-native-barebones-opsqlite/tsconfig.json
@@ -0,0 +1,7 @@
+{
+ "extends": "@react-native/typescript-config/tsconfig.json",
+ "compilerOptions": {
+ "strict": true,
+ "composite": true
+ }
+}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 28003cfc4..ac5283517 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -19,7 +19,7 @@ importers:
version: 4.0.11(@pnpm/logger@5.2.0)
'@vitest/browser':
specifier: ^3.0.8
- version: 3.0.8(@testing-library/dom@10.4.0)(@types/node@22.7.4)(playwright@1.51.0)(typescript@5.7.2)(vite@6.1.0(@types/node@22.7.4)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1))(vitest@3.0.8)(webdriverio@9.8.0)
+ version: 3.0.8(@testing-library/dom@10.4.0)(@types/node@22.7.4)(playwright@1.51.0)(typescript@5.7.2)(vite@6.2.0(@types/node@22.7.4)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1))(vitest@3.0.8)(webdriverio@9.4.5)
husky:
specifier: ^9.0.11
version: 9.1.6
@@ -70,7 +70,7 @@ importers:
version: 18.2.7(@angular/common@18.2.7(@angular/core@18.2.7(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@18.2.7(rxjs@7.8.1)(zone.js@0.14.10))
'@journeyapps/wa-sqlite':
specifier: ^1.2.0
- version: 1.2.1
+ version: 1.2.0
'@powersync/web':
specifier: workspace:*
version: link:../../packages/web
@@ -119,7 +119,7 @@ importers:
version: 14.0.4
'@journeyapps/react-native-quick-sqlite':
specifier: ^2.4.2
- version: 2.4.2(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ version: 2.4.2(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@powersync/common':
specifier: workspace:*
version: link:../../packages/common
@@ -131,40 +131,40 @@ importers:
version: link:../../packages/react-native
'@react-native-community/async-storage':
specifier: ^1.12.1
- version: 1.12.1(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ version: 1.12.1(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@react-native-community/masked-view':
specifier: ^0.1.11
- version: 0.1.11(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ version: 0.1.11(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@react-navigation/drawer':
specifier: ^6.6.15
- version: 6.7.2(yaao3llbshooz2bjipuf6mkduy)
+ version: 6.7.2(zv5tx5e2wsbl7ys627d5pvn3mm)
'@react-navigation/native':
specifier: ^6.1.17
- version: 6.1.18(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ version: 6.1.18(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@supabase/supabase-js':
specifier: ^2.42.4
version: 2.45.4
expo:
specifier: ~51.0.27
- version: 51.0.27(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(encoding@0.1.13)
+ version: 51.0.27(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(encoding@0.1.13)
expo-build-properties:
specifier: ~0.12.5
- version: 0.12.5(expo@51.0.27(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(encoding@0.1.13))
+ version: 0.12.5(expo@51.0.27(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(encoding@0.1.13))
expo-constants:
specifier: ~16.0.2
- version: 16.0.2(expo@51.0.27(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(encoding@0.1.13))
+ version: 16.0.2(expo@51.0.27(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(encoding@0.1.13))
expo-linking:
specifier: ~6.3.1
- version: 6.3.1(expo@51.0.27(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(encoding@0.1.13))
+ version: 6.3.1(expo@51.0.27(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(encoding@0.1.13))
expo-modules-autolinking:
specifier: ^1.11.1
version: 1.11.3
expo-router:
specifier: 3.5.21
- version: 3.5.21(gtohwu5bdvnl7tvlmjhokmubum)
+ version: 3.5.21(i67tcj72pvkxin5dp3y3irhi4m)
expo-splash-screen:
specifier: ~0.27.4
- version: 0.27.6(encoding@0.1.13)(expo-modules-autolinking@1.11.3)(expo@51.0.27(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(encoding@0.1.13))
+ version: 0.27.6(encoding@0.1.13)(expo-modules-autolinking@1.11.3)(expo@51.0.27(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(encoding@0.1.13))
expo-status-bar:
specifier: ~1.12.1
version: 1.12.1
@@ -182,31 +182,31 @@ importers:
version: 18.2.0
react-native:
specifier: 0.74.5
- version: 0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
+ version: 0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
react-native-elements:
specifier: ^3.4.3
- version: 3.4.3(react-native-safe-area-context@4.10.5(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-vector-icons@10.2.0)(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ version: 3.4.3(react-native-safe-area-context@4.10.5(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-vector-icons@10.2.0)(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
react-native-encrypted-storage:
specifier: ^4.0.3
- version: 4.0.3(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ version: 4.0.3(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
react-native-gesture-handler:
specifier: ~2.16.2
- version: 2.16.2(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ version: 2.16.2(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
react-native-prompt-android:
specifier: ^1.1.0
version: 1.1.0
react-native-reanimated:
specifier: ~3.10.1
- version: 3.10.1(@babel/core@7.26.0)(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ version: 3.10.1(@babel/core@7.26.8)(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
react-native-safe-area-context:
specifier: 4.10.5
- version: 4.10.5(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ version: 4.10.5(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
react-native-safe-area-view:
specifier: ^1.1.1
- version: 1.1.1(react-native-safe-area-context@4.10.5(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ version: 1.1.1(react-native-safe-area-context@4.10.5(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
react-native-screens:
specifier: ~3.31.1
- version: 3.31.1(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ version: 3.31.1(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
react-native-table-component:
specifier: ^1.2.2
version: 1.2.2
@@ -215,17 +215,17 @@ importers:
version: 10.2.0
react-navigation-stack:
specifier: ^2.10.4
- version: 2.10.4(ei6zhj5w65kzzp3jt27w3zu7ea)
+ version: 2.10.4(x4izpq5pzobiouf7jvcmlljasy)
typed-async-storage:
specifier: ^3.1.2
version: 3.1.2
devDependencies:
'@babel/plugin-transform-async-generator-functions':
specifier: ^7.24.3
- version: 7.25.7(@babel/core@7.26.0)
+ version: 7.25.7(@babel/core@7.26.8)
'@babel/preset-env':
specifier: ^7.24.4
- version: 7.25.7(@babel/core@7.26.0)
+ version: 7.25.7(@babel/core@7.26.8)
'@types/lodash':
specifier: ^4.17.0
version: 4.17.10
@@ -237,7 +237,7 @@ importers:
version: 18.2.25
'@types/react-native-table-component':
specifier: ^1.2.8
- version: 1.2.8(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(encoding@0.1.13)(react@18.2.0)(typescript@5.5.4)
+ version: 1.2.8(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(react@18.2.0)
typescript:
specifier: ^5.3.3
version: 5.5.4
@@ -246,19 +246,19 @@ importers:
dependencies:
'@capacitor/android':
specifier: ^6.0.0
- version: 6.1.2(@capacitor/core@7.0.1)
+ version: 6.1.2(@capacitor/core@7.1.0)
'@capacitor/core':
specifier: latest
- version: 7.0.1
+ version: 7.1.0
'@capacitor/ios':
specifier: ^6.0.0
- version: 6.1.2(@capacitor/core@7.0.1)
+ version: 6.1.2(@capacitor/core@7.1.0)
'@capacitor/splash-screen':
specifier: latest
- version: 7.0.0(@capacitor/core@7.0.1)
+ version: 7.0.0(@capacitor/core@7.1.0)
'@journeyapps/wa-sqlite':
specifier: ^1.2.0
- version: 1.2.1
+ version: 1.2.0
'@powersync/react':
specifier: workspace:*
version: link:../../packages/react
@@ -301,7 +301,7 @@ importers:
version: 1.2.14(@swc/core@1.6.13(@swc/helpers@0.5.5))(vite@5.4.8(@types/node@20.16.10)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))
vite-plugin-top-level-await:
specifier: ^1.4.1
- version: 1.4.4(@swc/helpers@0.5.5)(rollup@4.34.6)(vite@5.4.8(@types/node@20.16.10)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))
+ version: 1.4.4(@swc/helpers@0.5.5)(rollup@4.34.8)(vite@5.4.8(@types/node@20.16.10)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))
vite-plugin-wasm:
specifier: ^3.3.0
version: 3.3.0(vite@5.4.8(@types/node@20.16.10)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))
@@ -316,7 +316,7 @@ importers:
version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react@18.2.0)
'@journeyapps/wa-sqlite':
specifier: ^1.2.0
- version: 1.2.1
+ version: 1.2.0
'@mui/icons-material':
specifier: ^5.15.16
version: 5.16.7(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@types/react@18.3.11)(react@18.2.0)
@@ -398,7 +398,7 @@ importers:
version: 4.3.2(vite@5.4.8(@types/node@20.16.10)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))
autoprefixer:
specifier: ^10.4.19
- version: 10.4.20(postcss@8.5.1)
+ version: 10.4.20(postcss@8.5.3)
babel-loader:
specifier: ^9.1.3
version: 9.2.1(@babel/core@7.25.7)(webpack@5.95.0(@swc/core@1.6.13(@swc/helpers@0.5.5)))
@@ -419,7 +419,7 @@ importers:
version: 1.2.14(@swc/core@1.6.13(@swc/helpers@0.5.5))(vite@5.4.8(@types/node@20.16.10)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))
vite-plugin-top-level-await:
specifier: ^1.4.1
- version: 1.4.4(@swc/helpers@0.5.5)(rollup@4.34.6)(vite@5.4.8(@types/node@20.16.10)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))
+ version: 1.4.4(@swc/helpers@0.5.5)(rollup@4.34.8)(vite@5.4.8(@types/node@20.16.10)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))
vite-plugin-wasm:
specifier: ^3.3.0
version: 3.3.0(vite@5.4.8(@types/node@20.16.10)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))
@@ -437,7 +437,7 @@ importers:
version: 5.1.0
'@journeyapps/wa-sqlite':
specifier: ^1.2.0
- version: 1.2.1
+ version: 1.2.0
'@lexical/react':
specifier: ^0.15.0
version: 0.15.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(yjs@13.6.19)
@@ -464,7 +464,7 @@ importers:
version: 0.15.0
next:
specifier: 14.2.3
- version: 14.2.3(@babel/core@7.26.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass@1.79.4)
+ version: 14.2.3(@babel/core@7.26.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass@1.79.4)
react:
specifier: 18.2.0
version: 18.2.0
@@ -486,7 +486,7 @@ importers:
version: 10.4.20(postcss@8.4.47)
babel-loader:
specifier: ^9.1.3
- version: 9.2.1(@babel/core@7.26.0)(webpack@5.95.0(@swc/core@1.10.1(@swc/helpers@0.5.5)))
+ version: 9.2.1(@babel/core@7.26.8)(webpack@5.95.0(@swc/core@1.10.1(@swc/helpers@0.5.5)))
css-loader:
specifier: ^6.11.0
version: 6.11.0(@rspack/core@1.1.8(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.10.1(@swc/helpers@0.5.5)))
@@ -542,7 +542,7 @@ importers:
version: 5.4.8(@types/node@22.7.4)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)
vite-plugin-top-level-await:
specifier: ^1.4.1
- version: 1.4.4(@swc/helpers@0.5.5)(rollup@4.34.6)(vite@5.4.8(@types/node@22.7.4)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))
+ version: 1.4.4(@swc/helpers@0.5.5)(rollup@4.34.8)(vite@5.4.8(@types/node@22.7.4)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))
vite-plugin-wasm:
specifier: ^3.3.0
version: 3.3.0(vite@5.4.8(@types/node@22.7.4)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))
@@ -573,7 +573,7 @@ importers:
dependencies:
'@journeyapps/wa-sqlite':
specifier: ^1.2.0
- version: 1.2.1
+ version: 1.2.0
'@powersync/react':
specifier: workspace:*
version: link:../../packages/react
@@ -651,6 +651,73 @@ importers:
specifier: ^3.3.0
version: 3.3.0(vite@5.4.8(@types/node@20.16.10)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))
+ demos/react-native-barebones-opsqlite:
+ dependencies:
+ '@azure/core-asynciterator-polyfill':
+ specifier: ^1.0.2
+ version: 1.0.2
+ '@op-engineering/op-sqlite':
+ specifier: ^11.4.4
+ version: 11.4.4(react-native@0.77.0(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))(@react-native-community/cli-server-api@15.1.3)(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
+ '@powersync/common':
+ specifier: workspace:*
+ version: link:../../packages/common
+ '@powersync/op-sqlite':
+ specifier: workspace:*
+ version: link:../../packages/powersync-op-sqlite
+ '@powersync/react':
+ specifier: workspace:*
+ version: link:../../packages/react
+ '@powersync/react-native':
+ specifier: workspace:*
+ version: link:../../packages/react-native
+ react:
+ specifier: 18.3.1
+ version: 18.3.1
+ react-native:
+ specifier: 0.77.0
+ version: 0.77.0(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))(@react-native-community/cli-server-api@15.1.3)(@types/react@18.3.18)(react@18.3.1)
+ devDependencies:
+ '@babel/core':
+ specifier: ^7.26.7
+ version: 7.26.8
+ '@babel/plugin-transform-async-generator-functions':
+ specifier: ^7.26.8
+ version: 7.26.8(@babel/core@7.26.8)
+ '@babel/preset-env':
+ specifier: ^7.26.7
+ version: 7.26.8(@babel/core@7.26.8)
+ '@babel/runtime':
+ specifier: ^7.26.7
+ version: 7.26.7
+ '@react-native-community/cli':
+ specifier: 15.1.3
+ version: 15.1.3(typescript@5.8.2)
+ '@react-native-community/cli-platform-android':
+ specifier: 15.1.3
+ version: 15.1.3
+ '@react-native-community/cli-platform-ios':
+ specifier: 15.1.3
+ version: 15.1.3
+ '@react-native/babel-preset':
+ specifier: 0.77.0
+ version: 0.77.0(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))
+ '@react-native/eslint-config':
+ specifier: 0.77.0
+ version: 0.77.0(eslint@8.57.1)(prettier@3.3.3)(typescript@5.8.2)
+ '@react-native/metro-config':
+ specifier: 0.77.0
+ version: 0.77.0(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))
+ '@react-native/typescript-config':
+ specifier: 0.77.0
+ version: 0.77.0
+ '@types/react':
+ specifier: ^18.3.18
+ version: 18.3.18
+ typescript:
+ specifier: ^5.3.3
+ version: 5.8.2
+
demos/react-native-supabase-group-chat:
dependencies:
'@azure/core-asynciterator-polyfill':
@@ -661,7 +728,7 @@ importers:
version: 8.3.1
'@journeyapps/react-native-quick-sqlite':
specifier: ^2.4.2
- version: 2.4.2(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ version: 2.4.2(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@powersync/common':
specifier: workspace:*
version: link:../../packages/common
@@ -673,28 +740,28 @@ importers:
version: link:../../packages/react-native
'@react-native-async-storage/async-storage':
specifier: 1.23.1
- version: 1.23.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))
+ version: 1.23.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))
'@shopify/flash-list':
specifier: 1.6.4
- version: 1.6.4(@babel/runtime@7.26.0)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ version: 1.6.4(@babel/runtime@7.26.7)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@supabase/supabase-js':
specifier: 2.39.0
version: 2.39.0
'@tamagui/animations-react-native':
specifier: 1.79.6
- version: 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ version: 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/babel-plugin':
specifier: 1.79.6
version: 1.79.6(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@tamagui/config':
specifier: 1.79.6
- version: 1.79.6(react-dom@18.2.0(react@18.2.0))(react-native-reanimated@3.10.1(@babel/core@7.24.5)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ version: 1.79.6(react-dom@18.2.0(react@18.2.0))(react-native-reanimated@3.10.1(@babel/core@7.24.5)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/font-inter':
specifier: 1.79.6
version: 1.79.6(react@18.2.0)
'@tamagui/lucide-icons':
specifier: 1.79.6
- version: 1.79.6(react-native-svg@15.2.0(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react@18.2.0)
+ version: 1.79.6(react-native-svg@15.2.0(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react@18.2.0)
'@tamagui/theme-base':
specifier: 1.79.6
version: 1.79.6
@@ -703,25 +770,25 @@ importers:
version: 2.30.0
expo:
specifier: ~51.0.10
- version: 51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)
+ version: 51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13)
expo-build-properties:
specifier: ~0.12.1
- version: 0.12.5(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13))
+ version: 0.12.5(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13))
expo-crypto:
specifier: ~13.0.2
- version: 13.0.2(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13))
+ version: 13.0.2(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13))
expo-dev-client:
specifier: ~4.0.15
- version: 4.0.27(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13))
+ version: 4.0.27(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13))
expo-linking:
specifier: ~6.3.1
- version: 6.3.1(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13))
+ version: 6.3.1(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13))
expo-router:
specifier: ^3.5.15
- version: 3.5.21(j6qjh2jsuy2ozdtd6girxrw3ky)
+ version: 3.5.21(fbsgzlshl3xmyaq4qt4ismj4fi)
expo-splash-screen:
specifier: ~0.27.4
- version: 0.27.6(encoding@0.1.13)(expo-modules-autolinking@1.11.1)(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13))
+ version: 0.27.6(encoding@0.1.13)(expo-modules-autolinking@1.11.1)(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13))
expo-status-bar:
specifier: ~1.12.1
version: 1.12.1
@@ -736,31 +803,31 @@ importers:
version: 18.2.0(react@18.2.0)
react-native:
specifier: 0.74.1
- version: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
+ version: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
react-native-gesture-handler:
specifier: ~2.16.2
- version: 2.16.2(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ version: 2.16.2(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
react-native-pager-view:
specifier: 6.3.0
- version: 6.3.0(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ version: 6.3.0(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
react-native-reanimated:
specifier: ~3.10.1
- version: 3.10.1(@babel/core@7.24.5)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ version: 3.10.1(@babel/core@7.24.5)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
react-native-safe-area-context:
specifier: 4.10.1
- version: 4.10.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ version: 4.10.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
react-native-screens:
specifier: ~3.31.1
- version: 3.31.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ version: 3.31.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
react-native-svg:
specifier: 15.2.0
- version: 15.2.0(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ version: 15.2.0(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
react-native-web:
specifier: 0.19.12
version: 0.19.12(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
tamagui:
specifier: 1.79.6
- version: 1.79.6(@types/react@18.3.11)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native-web@0.19.12(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ version: 1.79.6(@types/react@18.3.11)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native-web@0.19.12(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
devDependencies:
'@babel/core':
specifier: 7.24.5
@@ -1096,7 +1163,7 @@ importers:
version: 11.11.5(@emotion/react@11.11.4(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react@18.2.0)
'@journeyapps/wa-sqlite':
specifier: ^1.2.0
- version: 1.2.1
+ version: 1.2.0
'@mui/icons-material':
specifier: ^5.15.12
version: 5.16.7(@mui/material@5.16.7(@emotion/react@11.11.4(@types/react@18.3.11)(react@18.2.0))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@types/react@18.3.11)(react@18.2.0)
@@ -1154,10 +1221,10 @@ importers:
version: 4.3.2(vite@5.4.8(@types/node@20.16.10)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))
autoprefixer:
specifier: ^10.4.18
- version: 10.4.20(postcss@8.5.1)
+ version: 10.4.20(postcss@8.5.3)
babel-loader:
specifier: ^9.1.3
- version: 9.2.1(@babel/core@7.26.0)(webpack@5.95.0(@swc/core@1.6.13(@swc/helpers@0.5.5)))
+ version: 9.2.1(@babel/core@7.26.8)(webpack@5.95.0(@swc/core@1.6.13(@swc/helpers@0.5.5)))
typescript:
specifier: ^5.4.2
version: 5.5.4
@@ -1169,7 +1236,7 @@ importers:
version: 0.19.8(vite@5.4.8(@types/node@20.16.10)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))(workbox-build@7.1.1(@types/babel__core@7.20.5))(workbox-window@7.1.0)
vite-plugin-top-level-await:
specifier: ^1.4.1
- version: 1.4.4(@swc/helpers@0.5.5)(rollup@4.34.6)(vite@5.4.8(@types/node@20.16.10)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))
+ version: 1.4.4(@swc/helpers@0.5.5)(rollup@4.34.8)(vite@5.4.8(@types/node@20.16.10)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))
vite-plugin-wasm:
specifier: ^3.3.0
version: 3.3.0(vite@5.4.8(@types/node@20.16.10)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))
@@ -1184,7 +1251,7 @@ importers:
version: 11.11.5(@emotion/react@11.11.4(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react@18.2.0)
'@journeyapps/wa-sqlite':
specifier: ^1.2.0
- version: 1.2.1
+ version: 1.2.0
'@mui/icons-material':
specifier: ^5.15.12
version: 5.16.7(@mui/material@5.16.7(@emotion/react@11.11.4(@types/react@18.3.11)(react@18.2.0))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@types/react@18.3.11)(react@18.2.0)
@@ -1242,10 +1309,10 @@ importers:
version: 4.3.2(vite@5.4.8(@types/node@20.16.10)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))
autoprefixer:
specifier: ^10.4.18
- version: 10.4.20(postcss@8.5.1)
+ version: 10.4.20(postcss@8.5.3)
babel-loader:
specifier: ^9.1.3
- version: 9.2.1(@babel/core@7.26.0)(webpack@5.95.0(@swc/core@1.6.13(@swc/helpers@0.5.5)))
+ version: 9.2.1(@babel/core@7.26.8)(webpack@5.95.0(@swc/core@1.6.13(@swc/helpers@0.5.5)))
typescript:
specifier: ^5.4.2
version: 5.5.4
@@ -1257,7 +1324,7 @@ importers:
version: 0.19.8(vite@5.4.8(@types/node@20.16.10)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))(workbox-build@7.1.1(@types/babel__core@7.20.5))(workbox-window@7.1.0)
vite-plugin-top-level-await:
specifier: ^1.4.1
- version: 1.4.4(@swc/helpers@0.5.5)(rollup@4.34.6)(vite@5.4.8(@types/node@20.16.10)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))
+ version: 1.4.4(@swc/helpers@0.5.5)(rollup@4.34.8)(vite@5.4.8(@types/node@20.16.10)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))
vite-plugin-wasm:
specifier: ^3.3.0
version: 3.3.0(vite@5.4.8(@types/node@20.16.10)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))
@@ -1315,7 +1382,7 @@ importers:
version: 1.1.1(vite@5.4.8(@types/node@22.7.4)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))(webpack-sources@3.2.3)
unplugin-vue-components:
specifier: ^0.26.0
- version: 0.26.0(@babel/parser@7.26.3)(rollup@4.34.6)(vue@3.4.21(typescript@5.5.4))(webpack-sources@3.2.3)
+ version: 0.26.0(@babel/parser@7.26.8)(rollup@4.34.8)(vue@3.4.21(typescript@5.5.4))(webpack-sources@3.2.3)
vite:
specifier: ^5.2.0
version: 5.4.8(@types/node@22.7.4)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)
@@ -1324,7 +1391,7 @@ importers:
version: 0.19.8(vite@5.4.8(@types/node@22.7.4)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))(workbox-build@7.1.1(@types/babel__core@7.20.5))(workbox-window@7.1.0)
vite-plugin-top-level-await:
specifier: ^1.4.1
- version: 1.4.4(@swc/helpers@0.5.5)(rollup@4.34.6)(vite@5.4.8(@types/node@22.7.4)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))
+ version: 1.4.4(@swc/helpers@0.5.5)(rollup@4.34.8)(vite@5.4.8(@types/node@22.7.4)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))
vite-plugin-vuetify:
specifier: ^2.0.3
version: 2.0.4(vite@5.4.8(@types/node@22.7.4)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))(vue@3.4.21(typescript@5.5.4))(vuetify@3.6.8)
@@ -1339,7 +1406,7 @@ importers:
dependencies:
'@journeyapps/wa-sqlite':
specifier: ^1.2.0
- version: 1.2.1
+ version: 1.2.2
'@mui/material':
specifier: ^5.15.12
version: 5.16.7(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
@@ -1442,7 +1509,7 @@ importers:
version: 0.19.8(vite@5.4.8(@types/node@20.16.10)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))(workbox-build@7.1.1(@types/babel__core@7.20.5))(workbox-window@7.1.0)
vite-plugin-top-level-await:
specifier: ^1.4.1
- version: 1.4.4(@swc/helpers@0.5.5)(rollup@4.34.6)(vite@5.4.8(@types/node@20.16.10)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))
+ version: 1.4.4(@swc/helpers@0.5.5)(rollup@4.34.8)(vite@5.4.8(@types/node@20.16.10)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))
vite-plugin-wasm:
specifier: ^3.3.0
version: 3.3.0(vite@5.4.8(@types/node@20.16.10)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))
@@ -1451,13 +1518,13 @@ importers:
dependencies:
'@docusaurus/core':
specifier: ^3.7.0
- version: 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
+ version: 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
'@docusaurus/preset-classic':
specifier: ^3.7.0
- version: 3.7.0(@algolia/client-search@5.19.0)(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(@types/react@18.3.12)(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(search-insights@2.17.2)(typescript@5.5.4)(vue-template-compiler@2.7.16)
+ version: 3.7.0(@algolia/client-search@5.19.0)(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(@types/react@18.3.18)(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(search-insights@2.17.2)(typescript@5.5.4)(vue-template-compiler@2.7.16)
'@mdx-js/react':
specifier: ^3.1.0
- version: 3.1.0(@types/react@18.3.12)(react@18.2.0)
+ version: 3.1.0(@types/react@18.3.18)(react@18.2.0)
dotenv:
specifier: ^16.4.7
version: 16.4.7
@@ -1479,7 +1546,7 @@ importers:
version: 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@docusaurus/theme-classic':
specifier: ^3.7.0
- version: 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(@types/react@18.3.12)(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
+ version: 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(@types/react@18.3.18)(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
'@docusaurus/tsconfig':
specifier: 3.7.0
version: 3.7.0
@@ -1512,10 +1579,10 @@ importers:
version: 20.17.6
vite:
specifier: ^6.1.0
- version: 6.1.0(@types/node@20.17.6)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1)
+ version: 6.2.0(@types/node@20.17.6)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1)
vite-plugin-top-level-await:
specifier: ^1.4.4
- version: 1.4.4(@swc/helpers@0.5.5)(rollup@4.34.6)(vite@6.1.0(@types/node@20.17.6)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1))
+ version: 1.4.4(@swc/helpers@0.5.5)(rollup@4.34.8)(vite@6.2.0(@types/node@20.17.6)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1))
packages/common:
dependencies:
@@ -1586,7 +1653,7 @@ importers:
devDependencies:
'@journeyapps/wa-sqlite':
specifier: ^1.2.0
- version: 1.2.1
+ version: 1.2.0
'@powersync/web':
specifier: workspace:*
version: link:../web
@@ -1595,16 +1662,16 @@ importers:
version: 20.17.6
drizzle-orm:
specifier: ^0.35.2
- version: 0.35.2(@op-engineering/op-sqlite@11.2.13(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1)(typescript@5.8.2))(react@18.3.1))(@types/better-sqlite3@7.6.12)(@types/react@18.3.12)(better-sqlite3@11.7.2)(kysely@0.27.4)(react@18.3.1)
+ version: 0.35.2(@op-engineering/op-sqlite@11.4.4(react-native@0.77.0(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))(@react-native-community/cli-server-api@15.1.3)(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(@types/better-sqlite3@7.6.12)(@types/react@18.3.18)(better-sqlite3@11.7.2)(kysely@0.27.4)(react@18.3.1)
vite:
specifier: ^6.1.0
- version: 6.1.0(@types/node@20.17.6)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1)
+ version: 6.2.0(@types/node@20.17.6)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1)
vite-plugin-top-level-await:
specifier: ^1.4.4
- version: 1.4.4(@swc/helpers@0.5.5)(rollup@4.34.6)(vite@6.1.0(@types/node@20.17.6)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1))
+ version: 1.4.4(@swc/helpers@0.5.5)(rollup@4.34.8)(vite@6.2.0(@types/node@20.17.6)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1))
vite-plugin-wasm:
specifier: ^3.3.0
- version: 3.3.0(vite@6.1.0(@types/node@20.17.6)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1))
+ version: 3.3.0(vite@6.2.0(@types/node@20.17.6)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1))
packages/kysely-driver:
dependencies:
@@ -1617,7 +1684,7 @@ importers:
devDependencies:
'@journeyapps/wa-sqlite':
specifier: ^1.2.0
- version: 1.2.1
+ version: 1.2.0
'@powersync/web':
specifier: workspace:*
version: link:../web
@@ -1626,13 +1693,13 @@ importers:
version: 20.17.6
vite:
specifier: ^6.1.0
- version: 6.1.0(@types/node@20.17.6)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1)
+ version: 6.2.0(@types/node@20.17.6)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1)
vite-plugin-top-level-await:
specifier: ^1.4.4
- version: 1.4.4(@swc/helpers@0.5.5)(rollup@4.34.6)(vite@6.1.0(@types/node@20.17.6)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1))
+ version: 1.4.4(@swc/helpers@0.5.5)(rollup@4.34.8)(vite@6.2.0(@types/node@20.17.6)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1))
vite-plugin-wasm:
specifier: ^3.3.0
- version: 3.3.0(vite@6.1.0(@types/node@20.17.6)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1))
+ version: 3.3.0(vite@6.2.0(@types/node@20.17.6)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1))
packages/node:
dependencies:
@@ -1673,7 +1740,7 @@ importers:
devDependencies:
'@op-engineering/op-sqlite':
specifier: ^11.2.13
- version: 11.2.13(react-native@0.75.3(@babel/core@7.25.7)(@babel/preset-env@7.26.0(@babel/core@7.25.7))(@types/react@18.3.11)(encoding@0.1.13)(react@18.3.1)(typescript@5.8.2))(react@18.3.1)
+ version: 11.2.13(react-native@0.75.3(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))(@types/react@18.3.11)(encoding@0.1.13)(react@18.3.1)(typescript@5.8.2))(react@18.3.1)
'@react-native/eslint-config':
specifier: ^0.73.1
version: 0.73.2(eslint@8.57.1)(prettier@3.3.3)(typescript@5.8.2)
@@ -1703,7 +1770,7 @@ importers:
version: 18.3.1
react-native:
specifier: 0.75.3
- version: 0.75.3(@babel/core@7.25.7)(@babel/preset-env@7.26.0(@babel/core@7.25.7))(@types/react@18.3.11)(encoding@0.1.13)(react@18.3.1)(typescript@5.8.2)
+ version: 0.75.3(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))(@types/react@18.3.11)(encoding@0.1.13)(react@18.3.1)(typescript@5.8.2)
react-native-builder-bob:
specifier: ^0.30.2
version: 0.30.2(typescript@5.8.2)
@@ -1743,10 +1810,10 @@ importers:
devDependencies:
'@craftzdog/react-native-buffer':
specifier: ^6.0.5
- version: 6.0.5(react-native@0.72.4(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ version: 6.0.5(react-native@0.72.4(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@journeyapps/react-native-quick-sqlite':
specifier: ^2.4.2
- version: 2.4.2(react-native@0.72.4(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ version: 2.4.2(react-native@0.72.4(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@rollup/plugin-alias':
specifier: ^5.1.0
version: 5.1.1(rollup@4.14.3)
@@ -1782,7 +1849,7 @@ importers:
version: 18.2.0
react-native:
specifier: 0.72.4
- version: 0.72.4(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)(react@18.2.0)
+ version: 0.72.4(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))(encoding@0.1.13)(react@18.2.0)
react-native-fetch-api:
specifier: ^3.0.0
version: 3.0.0
@@ -1883,13 +1950,13 @@ importers:
version: 9.0.1
vite:
specifier: ^6.1.0
- version: 6.1.0(@types/node@22.7.4)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1)
+ version: 6.2.0(@types/node@22.7.4)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1)
vite-plugin-top-level-await:
specifier: ^1.4.4
- version: 1.4.4(@swc/helpers@0.5.5)(rollup@4.34.6)(vite@6.1.0(@types/node@22.7.4)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1))
+ version: 1.4.4(@swc/helpers@0.5.5)(rollup@4.34.8)(vite@6.2.0(@types/node@22.7.4)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1))
vite-plugin-wasm:
specifier: ^3.3.0
- version: 3.3.0(vite@6.1.0(@types/node@22.7.4)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1))
+ version: 3.3.0(vite@6.2.0(@types/node@22.7.4)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1))
vm-browserify:
specifier: ^1.1.2
version: 1.1.2
@@ -1907,7 +1974,7 @@ importers:
dependencies:
'@journeyapps/wa-sqlite':
specifier: ^1.2.0
- version: 1.2.1
+ version: 1.2.0
'@mui/material':
specifier: ^5.15.12
version: 5.16.7(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
@@ -1950,10 +2017,10 @@ importers:
version: 4.3.2(vite@5.4.8(@types/node@20.16.10)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))
autoprefixer:
specifier: ^10.4.18
- version: 10.4.20(postcss@8.5.1)
+ version: 10.4.20(postcss@8.5.3)
babel-loader:
specifier: ^9.1.3
- version: 9.2.1(@babel/core@7.26.0)(webpack@5.95.0(@swc/core@1.6.13(@swc/helpers@0.5.5)))
+ version: 9.2.1(@babel/core@7.26.8)(webpack@5.95.0(@swc/core@1.6.13(@swc/helpers@0.5.5)))
typescript:
specifier: ^5.5.3
version: 5.5.4
@@ -1965,7 +2032,7 @@ importers:
version: 0.19.8(vite@5.4.8(@types/node@20.16.10)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))(workbox-build@7.1.1(@types/babel__core@7.20.5))(workbox-window@7.1.0)
vite-plugin-top-level-await:
specifier: ^1.4.1
- version: 1.4.4(@swc/helpers@0.5.5)(rollup@4.34.6)(vite@5.4.8(@types/node@20.16.10)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))
+ version: 1.4.4(@swc/helpers@0.5.5)(rollup@4.34.8)(vite@5.4.8(@types/node@20.16.10)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))
vite-plugin-wasm:
specifier: ^3.3.0
version: 3.3.0(vite@5.4.8(@types/node@20.16.10)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))
@@ -2300,6 +2367,10 @@ packages:
resolution: {integrity: sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g==}
engines: {node: '>=6.9.0'}
+ '@babel/compat-data@7.26.8':
+ resolution: {integrity: sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==}
+ engines: {node: '>=6.9.0'}
+
'@babel/core@7.24.5':
resolution: {integrity: sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA==}
engines: {node: '>=6.9.0'}
@@ -2312,8 +2383,8 @@ packages:
resolution: {integrity: sha512-yJ474Zv3cwiSOO9nXJuqzvwEeM+chDuQ8GJirw+pZ91sCGCyOZ3dJkVE09fTV0VEVzXyLWhh3G/AolYTPX7Mow==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.26.0':
- resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==}
+ '@babel/core@7.26.8':
+ resolution: {integrity: sha512-l+lkXCHS6tQEc5oUpK28xBOZ6+HwaH7YwoYQbLFiYb4nS2/l1tKnZEtEWkD0GuiYdvArf9qBS0XlQGXzPMsNqQ==}
engines: {node: '>=6.9.0'}
'@babel/eslint-parser@7.25.8':
@@ -2338,6 +2409,10 @@ packages:
resolution: {integrity: sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==}
engines: {node: '>=6.9.0'}
+ '@babel/generator@7.26.8':
+ resolution: {integrity: sha512-ef383X5++iZHWAXX0SXQR6ZyQhw/0KtTkrTz61WXRhFM6dhpHulO/RJz79L8S6ugZHJkOOkUrUdxgdF2YiPFnA==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-annotate-as-pure@7.24.7':
resolution: {integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==}
engines: {node: '>=6.9.0'}
@@ -2362,6 +2437,10 @@ packages:
resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-compilation-targets@7.26.5':
+ resolution: {integrity: sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-create-class-features-plugin@7.25.7':
resolution: {integrity: sha512-bD4WQhbkx80mAyj/WCm4ZHcF4rDxkoLFO6ph8/5/mQ3z4vAzltQXAmbc7GvVJx5H+lk5Mi5EmbTeox5nMGCsbw==}
engines: {node: '>=6.9.0'}
@@ -2391,6 +2470,11 @@ packages:
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ '@babel/helper-define-polyfill-provider@0.6.3':
+ resolution: {integrity: sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+
'@babel/helper-environment-visitor@7.24.7':
resolution: {integrity: sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==}
engines: {node: '>=6.9.0'}
@@ -2439,6 +2523,10 @@ packages:
resolution: {integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-plugin-utils@7.26.5':
+ resolution: {integrity: sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-remap-async-to-generator@7.25.7':
resolution: {integrity: sha512-kRGE89hLnPfcz6fTrlNU+uhgcwv0mBE4Gv3P9Ke9kLVJYpi4AMVVEElXvB5CabrPZW4nCM8P8UyyjrzCM0O2sw==}
engines: {node: '>=6.9.0'}
@@ -2519,6 +2607,10 @@ packages:
resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==}
engines: {node: '>=6.9.0'}
+ '@babel/helpers@7.26.7':
+ resolution: {integrity: sha512-8NHiL98vsi0mbPQmYAGWwfcFaOy4j2HY49fXJCfuDcdE7fMIsH9a7GdaeXpIBsbT7307WU8KCMp5pUVDNL4f9A==}
+ engines: {node: '>=6.9.0'}
+
'@babel/highlight@7.25.7':
resolution: {integrity: sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw==}
engines: {node: '>=6.9.0'}
@@ -2533,6 +2625,11 @@ packages:
engines: {node: '>=6.0.0'}
hasBin: true
+ '@babel/parser@7.26.8':
+ resolution: {integrity: sha512-TZIQ25pkSoaKEYYaHbbxkfL36GNsQ6iFiBbeuzAkLnXayKR1yP1zFe+NxuZWWsUyvt8icPU9CCq0sgWGXR1GEw==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.7':
resolution: {integrity: sha512-UV9Lg53zyebzD1DwQoT9mzkEKa922LNUp5YkTJ6Uta0RbyXaQNUgcvSt7qIu1PpPzVb6rd10OVNTzkyBGeVmxQ==}
engines: {node: '>=6.9.0'}
@@ -2672,6 +2769,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-syntax-bigint@7.8.3':
+ resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-syntax-class-properties@7.12.13':
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
@@ -2805,12 +2907,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-typescript@7.25.7':
- resolution: {integrity: sha512-rR+5FDjpCHqqZN2bzZm18bVYGaejGq5ZkpVCJLXor/+zlSrSoc4KWcHI0URVWjl/68Dyr1uwZUz/1njycEAv9g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-syntax-typescript@7.25.9':
resolution: {integrity: sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==}
engines: {node: '>=6.9.0'}
@@ -2847,8 +2943,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-async-generator-functions@7.25.9':
- resolution: {integrity: sha512-RXV6QAzTBbhDMO9fWwOmwwTuYaiPbggWQ9INdZqAYeSHyG7FzQ+nOZaUUjNwKv9pV3aE4WFqFm1Hnbci5tBCAw==}
+ '@babel/plugin-transform-async-generator-functions@7.26.8':
+ resolution: {integrity: sha512-He9Ej2X7tNf2zdKMAGOsmg2MrFc+hfoAhd3po4cWfo/NWjzEAKa0oQruj1ROVUdl0e6fb6/kE/G3SSxE0lRJOg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2883,6 +2979,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-block-scoped-functions@7.26.5':
+ resolution: {integrity: sha512-chuTSY+hq09+/f5lMj8ZSYgCFpppV2CbYrhNFJ1BFoXpiWPnnAb7R0MqrafCpN8E1+YRrtM1MXZHJdIx8B6rMQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-block-scoping@7.25.7':
resolution: {integrity: sha512-ZEPJSkVZaeTFG/m2PARwLZQ+OG0vFIhPlKHK/JdIMy8DbRJ/htz6LRrTFtdzxi9EHmcwbNPAKDnadpNSIW+Aow==}
engines: {node: '>=6.9.0'}
@@ -3189,6 +3291,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-nullish-coalescing-operator@7.26.6':
+ resolution: {integrity: sha512-CKW8Vu+uUZneQCPtXmSBUC6NCAUdya26hWCElAWh5mVSlSRsmiCPUUDKb3Z0szng1hiAJa098Hkhg9o4SE35Qw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-numeric-separator@7.25.7':
resolution: {integrity: sha512-8CbutzSSh4hmD+jJHIA8vdTNk15kAzOnFLVVgBSMGr28rt85ouT01/rezMecks9pkU939wDInImwCKv4ahU4IA==}
engines: {node: '>=6.9.0'}
@@ -3303,12 +3411,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-display-name@7.25.7':
- resolution: {integrity: sha512-r0QY7NVU8OnrwE+w2IWiRom0wwsTbjx4+xH2RTd7AVdof3uurXOF+/mXHQDRk+2jIvWgSaCHKMgggfvM4dyUGA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-react-display-name@7.25.9':
resolution: {integrity: sha512-KJfMlYIUxQB1CJfO3e0+h0ZHWOTLCPP115Awhaz8U0Zpq36Gl/cXlpoyMRnUWlhNUBAzldnCiAZNvCDj7CrKxQ==}
engines: {node: '>=6.9.0'}
@@ -3339,12 +3441,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx@7.25.7':
- resolution: {integrity: sha512-vILAg5nwGlR9EXE8JIOX4NHXd49lrYbN8hnjffDtoULwpL9hUx/N55nqh2qd0q6FyNDfjl9V79ecKGvFbcSA0Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-react-jsx@7.25.9':
resolution: {integrity: sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw==}
engines: {node: '>=6.9.0'}
@@ -3399,12 +3495,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-runtime@7.25.7':
- resolution: {integrity: sha512-Y9p487tyTzB0yDYQOtWnC+9HGOuogtP3/wNpun1xJXEEvI6vip59BSBTsHnekZLqxmPcgsrAKt46HAAb//xGhg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-runtime@7.25.9':
resolution: {integrity: sha512-nZp7GlEl+yULJrClz0SwHPqir3lc0zsPrDHQUcxGspSL7AKrexNSEfTbfqnDNJUO13bgKyfuOLMF8Xqtu8j3YQ==}
engines: {node: '>=6.9.0'}
@@ -3465,6 +3555,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-template-literals@7.26.8':
+ resolution: {integrity: sha512-OmGDL5/J0CJPJZTHZbi2XpO0tyT2Ia7fzpW5GURwdtp2X3fMmN8au/ej6peC/T33/+CRiIpA8Krse8hFGVmT5Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-typeof-symbol@7.25.7':
resolution: {integrity: sha512-OmWmQtTHnO8RSUbL0NTdtpbZHeNTnm68Gj5pA4Y2blFNh+V4iZR68V1qL9cI37J21ZN7AaCnkfdHtLExQPf2uA==}
engines: {node: '>=6.9.0'}
@@ -3477,8 +3573,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typescript@7.25.7':
- resolution: {integrity: sha512-VKlgy2vBzj8AmEzunocMun2fF06bsSWV+FvVXohtL6FGve/+L217qhHxRTVGHEDO/YR8IANcjzgJsd04J8ge5Q==}
+ '@babel/plugin-transform-typeof-symbol@7.26.7':
+ resolution: {integrity: sha512-jfoTXXZTgGg36BmhqT3cAYK5qkmqvJpvNrPhaK/52Vgjhw4Rq29s9UqpWWV0D6yuRmgiFH/BUVlkl96zJWqnaw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -3549,8 +3645,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/preset-env@7.26.0':
- resolution: {integrity: sha512-H84Fxq0CQJNdPFT2DrfnylZ3cf5K43rGfWK4LJGPpjKHiZlk0/RzwEus3PDDZZg+/Er7lCA03MVacueUuXdzfw==}
+ '@babel/preset-env@7.26.8':
+ resolution: {integrity: sha512-um7Sy+2THd697S4zJEfv/U5MHGJzkN2xhtsR3T/SWRbVSic62nbISh51VVfU9JiO/L/Z97QczHTaFVkOU8IzNg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -3608,8 +3704,8 @@ packages:
resolution: {integrity: sha512-FjoyLe754PMiYsFaN5C94ttGiOmBNYTf6pLr4xXHAT5uctHb092PBszndLDR5XA/jghQvn4n7JMHl7dmTgbm9w==}
engines: {node: '>=6.9.0'}
- '@babel/runtime@7.26.0':
- resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==}
+ '@babel/runtime@7.26.7':
+ resolution: {integrity: sha512-AOPI3D+a8dXnja+iwsUqGRjr1BbZIe771sXdapOtYI531gSqpi92vXivKcq2asu/DFpdl1ceFAKZyRzK2PCVcQ==}
engines: {node: '>=6.9.0'}
'@babel/template@7.25.7':
@@ -3620,6 +3716,10 @@ packages:
resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==}
engines: {node: '>=6.9.0'}
+ '@babel/template@7.26.8':
+ resolution: {integrity: sha512-iNKaX3ZebKIsCvJ+0jd6embf+Aulaa3vNBqZ41kM7iTWjx5qzWKXGHiJUW3+nTpQ18SG11hdF8OAzKrpXkb96Q==}
+ engines: {node: '>=6.9.0'}
+
'@babel/traverse@7.25.7':
resolution: {integrity: sha512-jatJPT1Zjqvh/1FyJs6qAHL+Dzb7sTb+xr7Q+gM1b+1oBsMsQQ4FkVKb6dFlJvLlVssqkRzV05Jzervt9yhnzg==}
engines: {node: '>=6.9.0'}
@@ -3628,6 +3728,10 @@ packages:
resolution: {integrity: sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==}
engines: {node: '>=6.9.0'}
+ '@babel/traverse@7.26.8':
+ resolution: {integrity: sha512-nic9tRkjYH0oB2dzr/JoGIm+4Q6SuYeLEiIiZDwBscRMYFJ+tMAz98fuel9ZnbXViA2I0HVSSRRK8DW5fjXStA==}
+ engines: {node: '>=6.9.0'}
+
'@babel/types@7.25.7':
resolution: {integrity: sha512-vwIVdXG+j+FOpkwqHRcBgHLYNL7XMkufrlaFvL9o6Ai9sJn9+PdyIL5qa0XzTZw084c+u9LOls53eoZWP/W5WQ==}
engines: {node: '>=6.9.0'}
@@ -3636,6 +3740,10 @@ packages:
resolution: {integrity: sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==}
engines: {node: '>=6.9.0'}
+ '@babel/types@7.26.8':
+ resolution: {integrity: sha512-eUuWapzEGWFEpHFxgEaBG8e3n6S8L3MSu0oda755rOfabWPnh0Our1AozNFVUxGFIhbKgd1ksprsoDGMinTOTA==}
+ engines: {node: '>=6.9.0'}
+
'@bundled-es-modules/cookie@2.0.1':
resolution: {integrity: sha512-8o+5fRPLNbjbdGRRmJj3h6Hh1AQJf2dk3qQ/5ZFb+PXkRNiSoMGGUKlsgLfrxneb72axVJyIYji64E2+nNfYyw==}
@@ -3655,8 +3763,8 @@ packages:
engines: {node: '>=18.0.0'}
hasBin: true
- '@capacitor/core@7.0.1':
- resolution: {integrity: sha512-1Ob9bvA/p8g8aNwK6VesxEekGXowLVf6APjkW4LRnr05H+7z/bke+Q5pn9zqh/GgTbIxAQ/rwZrAZvvxkdm1UA==}
+ '@capacitor/core@7.1.0':
+ resolution: {integrity: sha512-I0a4C8gux5sx+HDamJjCiWHEWRdJU3hejwURFOSwJjUmAMkfkrm4hOsI0dgd+S0eCkKKKYKz9WNm7DAIvhm2zw==}
'@capacitor/ios@6.1.2':
resolution: {integrity: sha512-HaeW68KisBd/7TmavzPDlL2bpoDK5AjR2ZYrqU4TlGwM88GtQfvduBCAlSCj20X0w/4+rWMkseD9dAAkacjiyQ==}
@@ -4422,8 +4530,8 @@ packages:
cpu: [ppc64]
os: [aix]
- '@esbuild/aix-ppc64@0.24.2':
- resolution: {integrity: sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==}
+ '@esbuild/aix-ppc64@0.25.0':
+ resolution: {integrity: sha512-O7vun9Sf8DFjH2UtqK8Ku3LkquL9SZL8OLY1T5NZkA34+wG3OQF7cl4Ql8vdNzM6fzBbYfLaiRLIOZ+2FOCgBQ==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
@@ -4446,8 +4554,8 @@ packages:
cpu: [arm64]
os: [android]
- '@esbuild/android-arm64@0.24.2':
- resolution: {integrity: sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==}
+ '@esbuild/android-arm64@0.25.0':
+ resolution: {integrity: sha512-grvv8WncGjDSyUBjN9yHXNt+cq0snxXbDxy5pJtzMKGmmpPxeAmAhWxXI+01lU5rwZomDgD3kJwulEnhTRUd6g==}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
@@ -4470,8 +4578,8 @@ packages:
cpu: [arm]
os: [android]
- '@esbuild/android-arm@0.24.2':
- resolution: {integrity: sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==}
+ '@esbuild/android-arm@0.25.0':
+ resolution: {integrity: sha512-PTyWCYYiU0+1eJKmw21lWtC+d08JDZPQ5g+kFyxP0V+es6VPPSUhM6zk8iImp2jbV6GwjX4pap0JFbUQN65X1g==}
engines: {node: '>=18'}
cpu: [arm]
os: [android]
@@ -4494,8 +4602,8 @@ packages:
cpu: [x64]
os: [android]
- '@esbuild/android-x64@0.24.2':
- resolution: {integrity: sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==}
+ '@esbuild/android-x64@0.25.0':
+ resolution: {integrity: sha512-m/ix7SfKG5buCnxasr52+LI78SQ+wgdENi9CqyCXwjVR2X4Jkz+BpC3le3AoBPYTC9NHklwngVXvbJ9/Akhrfg==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
@@ -4518,8 +4626,8 @@ packages:
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-arm64@0.24.2':
- resolution: {integrity: sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==}
+ '@esbuild/darwin-arm64@0.25.0':
+ resolution: {integrity: sha512-mVwdUb5SRkPayVadIOI78K7aAnPamoeFR2bT5nszFUZ9P8UpK4ratOdYbZZXYSqPKMHfS1wdHCJk1P1EZpRdvw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
@@ -4542,8 +4650,8 @@ packages:
cpu: [x64]
os: [darwin]
- '@esbuild/darwin-x64@0.24.2':
- resolution: {integrity: sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==}
+ '@esbuild/darwin-x64@0.25.0':
+ resolution: {integrity: sha512-DgDaYsPWFTS4S3nWpFcMn/33ZZwAAeAFKNHNa1QN0rI4pUjgqf0f7ONmXf6d22tqTY+H9FNdgeaAa+YIFUn2Rg==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
@@ -4566,8 +4674,8 @@ packages:
cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-arm64@0.24.2':
- resolution: {integrity: sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==}
+ '@esbuild/freebsd-arm64@0.25.0':
+ resolution: {integrity: sha512-VN4ocxy6dxefN1MepBx/iD1dH5K8qNtNe227I0mnTRjry8tj5MRk4zprLEdG8WPyAPb93/e4pSgi1SoHdgOa4w==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
@@ -4590,8 +4698,8 @@ packages:
cpu: [x64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.24.2':
- resolution: {integrity: sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==}
+ '@esbuild/freebsd-x64@0.25.0':
+ resolution: {integrity: sha512-mrSgt7lCh07FY+hDD1TxiTyIHyttn6vnjesnPoVDNmDfOmggTLXRv8Id5fNZey1gl/V2dyVK1VXXqVsQIiAk+A==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
@@ -4614,8 +4722,8 @@ packages:
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm64@0.24.2':
- resolution: {integrity: sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==}
+ '@esbuild/linux-arm64@0.25.0':
+ resolution: {integrity: sha512-9QAQjTWNDM/Vk2bgBl17yWuZxZNQIF0OUUuPZRKoDtqF2k4EtYbpyiG5/Dk7nqeK6kIJWPYldkOcBqjXjrUlmg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [linux]
@@ -4638,8 +4746,8 @@ packages:
cpu: [arm]
os: [linux]
- '@esbuild/linux-arm@0.24.2':
- resolution: {integrity: sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==}
+ '@esbuild/linux-arm@0.25.0':
+ resolution: {integrity: sha512-vkB3IYj2IDo3g9xX7HqhPYxVkNQe8qTK55fraQyTzTX/fxaDtXiEnavv9geOsonh2Fd2RMB+i5cbhu2zMNWJwg==}
engines: {node: '>=18'}
cpu: [arm]
os: [linux]
@@ -4662,8 +4770,8 @@ packages:
cpu: [ia32]
os: [linux]
- '@esbuild/linux-ia32@0.24.2':
- resolution: {integrity: sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==}
+ '@esbuild/linux-ia32@0.25.0':
+ resolution: {integrity: sha512-43ET5bHbphBegyeqLb7I1eYn2P/JYGNmzzdidq/w0T8E2SsYL1U6un2NFROFRg1JZLTzdCoRomg8Rvf9M6W6Gg==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
@@ -4686,8 +4794,8 @@ packages:
cpu: [loong64]
os: [linux]
- '@esbuild/linux-loong64@0.24.2':
- resolution: {integrity: sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==}
+ '@esbuild/linux-loong64@0.25.0':
+ resolution: {integrity: sha512-fC95c/xyNFueMhClxJmeRIj2yrSMdDfmqJnyOY4ZqsALkDrrKJfIg5NTMSzVBr5YW1jf+l7/cndBfP3MSDpoHw==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
@@ -4710,8 +4818,8 @@ packages:
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-mips64el@0.24.2':
- resolution: {integrity: sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==}
+ '@esbuild/linux-mips64el@0.25.0':
+ resolution: {integrity: sha512-nkAMFju7KDW73T1DdH7glcyIptm95a7Le8irTQNO/qtkoyypZAnjchQgooFUDQhNAy4iu08N79W4T4pMBwhPwQ==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
@@ -4734,8 +4842,8 @@ packages:
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-ppc64@0.24.2':
- resolution: {integrity: sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==}
+ '@esbuild/linux-ppc64@0.25.0':
+ resolution: {integrity: sha512-NhyOejdhRGS8Iwv+KKR2zTq2PpysF9XqY+Zk77vQHqNbo/PwZCzB5/h7VGuREZm1fixhs4Q/qWRSi5zmAiO4Fw==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
@@ -4758,8 +4866,8 @@ packages:
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-riscv64@0.24.2':
- resolution: {integrity: sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==}
+ '@esbuild/linux-riscv64@0.25.0':
+ resolution: {integrity: sha512-5S/rbP5OY+GHLC5qXp1y/Mx//e92L1YDqkiBbO9TQOvuFXM+iDqUNG5XopAnXoRH3FjIUDkeGcY1cgNvnXp/kA==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
@@ -4782,8 +4890,8 @@ packages:
cpu: [s390x]
os: [linux]
- '@esbuild/linux-s390x@0.24.2':
- resolution: {integrity: sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==}
+ '@esbuild/linux-s390x@0.25.0':
+ resolution: {integrity: sha512-XM2BFsEBz0Fw37V0zU4CXfcfuACMrppsMFKdYY2WuTS3yi8O1nFOhil/xhKTmE1nPmVyvQJjJivgDT+xh8pXJA==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
@@ -4806,14 +4914,14 @@ packages:
cpu: [x64]
os: [linux]
- '@esbuild/linux-x64@0.24.2':
- resolution: {integrity: sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==}
+ '@esbuild/linux-x64@0.25.0':
+ resolution: {integrity: sha512-9yl91rHw/cpwMCNytUDxwj2XjFpxML0y9HAOH9pNVQDpQrBxHy01Dx+vaMu0N1CKa/RzBD2hB4u//nfc+Sd3Cw==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
- '@esbuild/netbsd-arm64@0.24.2':
- resolution: {integrity: sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==}
+ '@esbuild/netbsd-arm64@0.25.0':
+ resolution: {integrity: sha512-RuG4PSMPFfrkH6UwCAqBzauBWTygTvb1nxWasEJooGSJ/NwRw7b2HOwyRTQIU97Hq37l3npXoZGYMy3b3xYvPw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [netbsd]
@@ -4836,8 +4944,8 @@ packages:
cpu: [x64]
os: [netbsd]
- '@esbuild/netbsd-x64@0.24.2':
- resolution: {integrity: sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==}
+ '@esbuild/netbsd-x64@0.25.0':
+ resolution: {integrity: sha512-jl+qisSB5jk01N5f7sPCsBENCOlPiS/xptD5yxOx2oqQfyourJwIKLRA2yqWdifj3owQZCL2sn6o08dBzZGQzA==}
engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
@@ -4848,8 +4956,8 @@ packages:
cpu: [arm64]
os: [openbsd]
- '@esbuild/openbsd-arm64@0.24.2':
- resolution: {integrity: sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==}
+ '@esbuild/openbsd-arm64@0.25.0':
+ resolution: {integrity: sha512-21sUNbq2r84YE+SJDfaQRvdgznTD8Xc0oc3p3iW/a1EVWeNj/SdUCbm5U0itZPQYRuRTW20fPMWMpcrciH2EJw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
@@ -4872,8 +4980,8 @@ packages:
cpu: [x64]
os: [openbsd]
- '@esbuild/openbsd-x64@0.24.2':
- resolution: {integrity: sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==}
+ '@esbuild/openbsd-x64@0.25.0':
+ resolution: {integrity: sha512-2gwwriSMPcCFRlPlKx3zLQhfN/2WjJ2NSlg5TKLQOJdV0mSxIcYNTMhk3H3ulL/cak+Xj0lY1Ym9ysDV1igceg==}
engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
@@ -4896,8 +5004,8 @@ packages:
cpu: [x64]
os: [sunos]
- '@esbuild/sunos-x64@0.24.2':
- resolution: {integrity: sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==}
+ '@esbuild/sunos-x64@0.25.0':
+ resolution: {integrity: sha512-bxI7ThgLzPrPz484/S9jLlvUAHYMzy6I0XiU1ZMeAEOBcS0VePBFxh1JjTQt3Xiat5b6Oh4x7UC7IwKQKIJRIg==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
@@ -4920,8 +5028,8 @@ packages:
cpu: [arm64]
os: [win32]
- '@esbuild/win32-arm64@0.24.2':
- resolution: {integrity: sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==}
+ '@esbuild/win32-arm64@0.25.0':
+ resolution: {integrity: sha512-ZUAc2YK6JW89xTbXvftxdnYy3m4iHIkDtK3CLce8wg8M2L+YZhIvO1DKpxrd0Yr59AeNNkTiic9YLf6FTtXWMw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
@@ -4944,8 +5052,8 @@ packages:
cpu: [ia32]
os: [win32]
- '@esbuild/win32-ia32@0.24.2':
- resolution: {integrity: sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==}
+ '@esbuild/win32-ia32@0.25.0':
+ resolution: {integrity: sha512-eSNxISBu8XweVEWG31/JzjkIGbGIJN/TrRoiSVZwZ6pkC6VX4Im/WV2cz559/TXLcYbcrDN8JtKgd9DJVIo8GA==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
@@ -4968,8 +5076,8 @@ packages:
cpu: [x64]
os: [win32]
- '@esbuild/win32-x64@0.24.2':
- resolution: {integrity: sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==}
+ '@esbuild/win32-x64@0.25.0':
+ resolution: {integrity: sha512-ZENoHJBxA20C2zFzh6AI4fT6RraMzjYw4xKWemRTRmRVtN9c5DcH9r/f2ihEkMjOW5eGgrwCslG/+Y/3bL+DHQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [win32]
@@ -5399,6 +5507,10 @@ packages:
resolution: {integrity: sha512-RQgQ4uQ+pLbqXfOmieB91ejmLwvSgv9nLx6sT6sD83s7umBypgg+OIBOBbEUiJXrfpnp9j0mRhYYdzp9uqq3lA==}
engines: {node: '>=12'}
+ '@istanbuljs/load-nyc-config@1.1.0':
+ resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==}
+ engines: {node: '>=8'}
+
'@istanbuljs/schema@0.1.3':
resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==}
engines: {node: '>=8'}
@@ -5419,6 +5531,10 @@ packages:
resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ '@jest/transform@29.7.0':
+ resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
'@jest/types@24.9.0':
resolution: {integrity: sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==}
engines: {node: '>= 6'}
@@ -5441,8 +5557,8 @@ packages:
react: '*'
react-native: '*'
- '@journeyapps/wa-sqlite@1.2.1':
- resolution: {integrity: sha512-vfhhdyNFf5yoXVIfTM5Zb3LFPqIwOSPeuBHfi/BKsBRZPZdxBUmgDab/447BcfwSbH2zA2LNLC1qqQCJYS+wNQ==}
+ '@journeyapps/wa-sqlite@1.2.0':
+ resolution: {integrity: sha512-CL2oTvpr3y+yUExDCgh/MDi8NIpHwMNQ4ywWvpqp/9iErFWVIiKzDRdKbM+82DLceOY2yQJlV/hjejnOMKkgwg==}
'@journeyapps/wa-sqlite@1.2.2':
resolution: {integrity: sha512-JgXf0nvJJEP9r5AbLVYsDXlmtCHD3+U88LB4X0UZrz8urJ+OmQokSHA6eciElNFB9fXlGDa/5PdmqIbF+NT6eg==}
@@ -5960,6 +6076,12 @@ packages:
react: '*'
react-native: '*'
+ '@op-engineering/op-sqlite@11.4.4':
+ resolution: {integrity: sha512-nxj6/yXC0RQg8r5ZSyAI5txeugdX5UHgrdslERUk2to3SlEonzHlJPkZMlgGeIow18lzyE3YmOOfzHbHmWYJ1Q==}
+ peerDependencies:
+ react: '*'
+ react-native: '*'
+
'@open-draft/deferred-promise@2.2.0':
resolution: {integrity: sha512-CecwLWx3rhxVQF6V4bAgPS5t+So2sTbPgAzafKkVizyi7tlwpcFpdFqq+wqF2OwNBmqFuu6tOyouTuxgpMfzmA==}
@@ -6216,6 +6338,15 @@ packages:
'@react-native-community/cli-clean@14.1.0':
resolution: {integrity: sha512-/C4j1yntLo6faztNgZnsDtgpGqa6j0+GYrxOY8LqaKAN03OCnoeUUKO6w78dycbYSGglc1xjJg2RZI/M2oF2AA==}
+ '@react-native-community/cli-clean@15.1.3':
+ resolution: {integrity: sha512-3s9NGapIkONFoCUN2s77NYI987GPSCdr74rTf0TWyGIDf4vTYgKoWKKR+Ml3VTa1BCj51r4cYuHEKE1pjUSc0w==}
+
+ '@react-native-community/cli-config-android@15.1.3':
+ resolution: {integrity: sha512-v9okV/WQfMJEWRddI0S6no2v9Lvk54KgFkw1mvMYhJKVqloCNsIWzoqme0u7zIuYSzwsjXUQXVlGiDzbbwdkBw==}
+
+ '@react-native-community/cli-config-apple@15.1.3':
+ resolution: {integrity: sha512-Qv6jaEaycv+7s8wR9l9bdpIeSNFCeVANfGCX1x76SgOmGfZNIa7J3l1HaeF/5ktERMYsw/hm4u3rUn4Ks0YV1g==}
+
'@react-native-community/cli-config@11.3.6':
resolution: {integrity: sha512-edy7fwllSFLan/6BG6/rznOBCLPrjmJAE10FzkEqNLHowi0bckiAPg1+1jlgQ2qqAxV5kuk+c9eajVfQvPLYDA==}
@@ -6228,6 +6359,9 @@ packages:
'@react-native-community/cli-config@14.1.0':
resolution: {integrity: sha512-P3FK2rPUJBD1fmQHLgTqpHxsc111pnMdEEFR7KeqprCNz+Qr2QpPxfNy0V7s15tGL5rAv+wpbOGcioIV50EbxA==}
+ '@react-native-community/cli-config@15.1.3':
+ resolution: {integrity: sha512-fJ9MrWp+/SszEVg5Wja8A57Whl5EfjRCHWFNkvFBtfjVUfi2hWvSTW3VBxzJuCHnPIIwpQafwjEgOrIRUI8y6w==}
+
'@react-native-community/cli-debugger-ui@11.3.6':
resolution: {integrity: sha512-jhMOSN/iOlid9jn/A2/uf7HbC3u7+lGktpeGSLnHNw21iahFBzcpuO71ekEdlmTZ4zC/WyxBXw9j2ka33T358w==}
@@ -6240,6 +6374,9 @@ packages:
'@react-native-community/cli-debugger-ui@14.1.0':
resolution: {integrity: sha512-+YbeCL0wLcBcqDwraJFGsqzcXu9S+bwTVrfImne/4mT6itfe3Oa93yrOVJgNbstrt5pJHuwpU76ZXfXoiuncsg==}
+ '@react-native-community/cli-debugger-ui@15.1.3':
+ resolution: {integrity: sha512-m+fb9iAUNb9WiDdokCBLh0InJvollcgAM3gLjCT8DGTP6bH/jxtZ3DszzyIRqN9cMamItVrvDM0vkIg48xK7rQ==}
+
'@react-native-community/cli-doctor@11.3.6':
resolution: {integrity: sha512-UT/Tt6omVPi1j6JEX+CObc85eVFghSZwy4GR9JFMsO7gNg2Tvcu1RGWlUkrbmWMAMHw127LUu6TGK66Ugu1NLA==}
@@ -6252,6 +6389,9 @@ packages:
'@react-native-community/cli-doctor@14.1.0':
resolution: {integrity: sha512-xIf0oQDRKt7lufUenRwcLYdINGc0x1FSXHaHjd7lQDGT5FJnCEYlIkYEDDgAl5tnVJSvM/IL2c6O+mffkNEPzQ==}
+ '@react-native-community/cli-doctor@15.1.3':
+ resolution: {integrity: sha512-WC9rawobuITAtJjyZ68E1M0geRt+b9A2CGB354L/tQp+XMKobGGVI4Y0DsattK83Wdg59GPyldE8C0Wevfgm/A==}
+
'@react-native-community/cli-hermes@11.3.6':
resolution: {integrity: sha512-O55YAYGZ3XynpUdePPVvNuUPGPY0IJdctLAOHme73OvS80gNwfntHDXfmY70TGHWIfkK2zBhA0B+2v8s5aTyTA==}
@@ -6273,6 +6413,9 @@ packages:
'@react-native-community/cli-platform-android@14.1.0':
resolution: {integrity: sha512-4JnXkAV+ca8XdUhZ7xjgDhXAMwTVjQs8JqiwP7FTYVrayShXy2cBXm/C3HNDoe+oQOF5tPT2SqsDAF2vYTnKiQ==}
+ '@react-native-community/cli-platform-android@15.1.3':
+ resolution: {integrity: sha512-ZwrBK0UK4DRHoQm2v5m8+PlNHBK5gmibBU6rqNFLo4aZJ2Rufalbv3SF+DukgSyoI9/kI8UVrzSNj17e+HhN5A==}
+
'@react-native-community/cli-platform-apple@13.6.6':
resolution: {integrity: sha512-bOmSSwoqNNT3AmCRZXEMYKz1Jf1l2F86Nhs7qBcXdY/sGiJ+Flng564LOqvdAlVLTbkgz47KjNKCS2pP4Jg0Mg==}
@@ -6282,6 +6425,9 @@ packages:
'@react-native-community/cli-platform-apple@14.1.0':
resolution: {integrity: sha512-DExd+pZ7hHxXt8I6BBmckeYUxxq7PQ+o4YSmGIeQx0xUpi+f82obBct2WNC3VWU72Jw6obwfoN6Fwe6F7Wxp5Q==}
+ '@react-native-community/cli-platform-apple@15.1.3':
+ resolution: {integrity: sha512-awotqCGVcTdeRmTlE3wlsZgNxZUDGojUhPYOVMKejgdCzNM2bvzF8fqhETH2sc64Hbw/tQJg8pYeD4MZR0bHxw==}
+
'@react-native-community/cli-platform-ios@11.3.6':
resolution: {integrity: sha512-tZ9VbXWiRW+F+fbZzpLMZlj93g3Q96HpuMsS6DRhrTiG+vMQ3o6oPWSEEmMGOvJSYU7+y68Dc9ms2liC7VD6cw==}
@@ -6294,6 +6440,9 @@ packages:
'@react-native-community/cli-platform-ios@14.1.0':
resolution: {integrity: sha512-ah/ZTiJXUdCVHujyRJ4OmCL5nTq8OWcURcE3UXa1z0sIIiA8io06n+v5n299T9rtPKMwRtVJlQjtO/nbODABPQ==}
+ '@react-native-community/cli-platform-ios@15.1.3':
+ resolution: {integrity: sha512-DxM8GYkqjrlGuuGiGjrcvUmKC2xv9zDzHbsc4+S160Nn0zbF2OH1DhMlnIuUeCmQnAO6QFMqU99O120iEzCAug==}
+
'@react-native-community/cli-plugin-metro@11.3.6':
resolution: {integrity: sha512-D97racrPX3069ibyabJNKw9aJpVcaZrkYiEzsEnx50uauQtPDoQ1ELb/5c6CtMhAEGKoZ0B5MS23BbsSZcLs2g==}
@@ -6309,6 +6458,9 @@ packages:
'@react-native-community/cli-server-api@14.1.0':
resolution: {integrity: sha512-1k2LBQaYsy9RDWFIfKVne3frOye73O33MV6eYMoRPff7wqxHCrsX1CYJQkmwpgVigZHxYwalHj+Axtu3gpomCA==}
+ '@react-native-community/cli-server-api@15.1.3':
+ resolution: {integrity: sha512-kXZ0evedluLt6flWQiI3JqwnW8rSBspOoQ7JVTQYiG5lDHAeL3Om9PjAyiQBg1EZRMjiWZDV7nDxhR+m+6NX5Q==}
+
'@react-native-community/cli-tools@11.3.6':
resolution: {integrity: sha512-JpmUTcDwAGiTzLsfMlIAYpCMSJ9w2Qlf7PU7mZIRyEu61UzEawyw83DkqfbzDPBuRwRnaeN44JX2CP/yTO3ThQ==}
@@ -6321,6 +6473,9 @@ packages:
'@react-native-community/cli-tools@14.1.0':
resolution: {integrity: sha512-r1KxSu2+OSuhWFoE//1UR7aSTXMLww/UYWQprEw4bSo/kvutGX//4r9ywgXSWp+39udpNN4jQpNTHuWhGZd/Bg==}
+ '@react-native-community/cli-tools@15.1.3':
+ resolution: {integrity: sha512-2RzoUKR+Y03ijBeeSoCSQihyN6dxy3fbHjraO4MheZZUzt/Yd1VMEDd0R5aa6rtiRDoknbHt45RL2GMa8MSaEA==}
+
'@react-native-community/cli-types@11.3.6':
resolution: {integrity: sha512-6DxjrMKx5x68N/tCJYVYRKAtlRHbtUVBZrnAvkxbRWFD9v4vhNgsPM0RQm8i2vRugeksnao5mbnRGpS6c0awCw==}
@@ -6333,6 +6488,9 @@ packages:
'@react-native-community/cli-types@14.1.0':
resolution: {integrity: sha512-aJwZI9mGRx3HdP8U4CGhqjt3S4r8GmeOqv4kRagC1UHDk4QNMC+bZ8JgPA4W7FrGiPey+lJQHMDPAXOo51SOUw==}
+ '@react-native-community/cli-types@15.1.3':
+ resolution: {integrity: sha512-0ZaM8LMsa7z7swBN+ObL2ysc6aA3AdS698Q6uEukym6RyX1uLbiofUdlvFSMpWSEL3D8f9OTymmL4RkCH8k6dw==}
+
'@react-native-community/cli@11.3.6':
resolution: {integrity: sha512-bdwOIYTBVQ9VK34dsf6t3u6vOUU5lfdhKaAxiAVArjsr7Je88Bgs4sAbsOYsNK3tkE8G77U6wLpekknXcanlww==}
engines: {node: '>=16'}
@@ -6353,6 +6511,11 @@ packages:
engines: {node: '>=18'}
hasBin: true
+ '@react-native-community/cli@15.1.3':
+ resolution: {integrity: sha512-+ih/WYUkJsEV2CMAnOHvVoSIz/Ahg5UJk+sqSIOmY79mWAglQzfLP71o7b0neJCnJWLmWiO6G6/S+kmULefD5g==}
+ engines: {node: '>=18'}
+ hasBin: true
+
'@react-native-community/masked-view@0.1.11':
resolution: {integrity: sha512-rQfMIGSR/1r/SyN87+VD8xHHzDYeHaJq6elOSCAD+0iLagXkSI2pfA0LmSXP21uw5i3em7GkkRjfJ8wpqWXZNw==}
deprecated: Repository was moved to @react-native-masked-view/masked-view
@@ -6375,6 +6538,10 @@ packages:
resolution: {integrity: sha512-i7MaRbYR06WdpJWv3a0PQ2ScFBUeevwcJ0tVopnFwTg0tBWp3NFEMDIcU8lyXVy9Y59WmrP1V2ROaRDaPiESgg==}
engines: {node: '>=18'}
+ '@react-native/assets-registry@0.77.0':
+ resolution: {integrity: sha512-Ms4tYYAMScgINAXIhE4riCFJPPL/yltughHS950l0VP5sm5glbimn9n7RFn9Tc8cipX74/ddbk19+ydK2iDMmA==}
+ engines: {node: '>=18'}
+
'@react-native/babel-plugin-codegen@0.74.83':
resolution: {integrity: sha512-+S0st3t4Ro00bi9gjT1jnK8qTFOU+CwmziA7U9odKyWrCoRJrgmrvogq/Dr1YXlpFxexiGIupGut1VHxr+fxJA==}
engines: {node: '>=18'}
@@ -6387,6 +6554,10 @@ packages:
resolution: {integrity: sha512-8JmXEKq+Efb9AffsV48l8gmKe/ZQ2PbBygZjHdIf8DNZZhO/z5mt27J4B43MWNdp5Ww1l59T0mEaf8l/uywQUg==}
engines: {node: '>=18'}
+ '@react-native/babel-plugin-codegen@0.77.0':
+ resolution: {integrity: sha512-5TYPn1k+jdDOZJU4EVb1kZ0p9TCVICXK3uplRev5Gul57oWesAaiWGZOzfRS3lonWeuR4ij8v8PFfIHOaq0vmA==}
+ engines: {node: '>=18'}
+
'@react-native/babel-preset@0.74.83':
resolution: {integrity: sha512-KJuu3XyVh3qgyUer+rEqh9a/JoUxsDOzkJNfRpDyXiAyjDRoVch60X/Xa/NcEQ93iCVHAWs0yQ+XGNGIBCYE6g==}
engines: {node: '>=18'}
@@ -6405,6 +6576,12 @@ packages:
peerDependencies:
'@babel/core': '*'
+ '@react-native/babel-preset@0.77.0':
+ resolution: {integrity: sha512-Z4yxE66OvPyQ/iAlaETI1ptRLcDm7Tk6ZLqtCPuUX3AMg+JNgIA86979T4RSk486/JrBUBH5WZe2xjj7eEHXsA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@babel/core': '*'
+
'@react-native/codegen@0.72.8':
resolution: {integrity: sha512-jQCcBlXV7B7ap5VlHhwIPieYz89yiRgwd2FPUBu+unz+kcJ6pAiB2U8RdLDmyIs8fiWd+Vq1xxaWs4TR329/ng==}
peerDependencies:
@@ -6428,6 +6605,12 @@ packages:
peerDependencies:
'@babel/preset-env': ^7.1.6
+ '@react-native/codegen@0.77.0':
+ resolution: {integrity: sha512-rE9lXx41ZjvE8cG7e62y/yGqzUpxnSvJ6me6axiX+aDewmI4ZrddvRGYyxCnawxy5dIBHSnrpZse3P87/4Lm7w==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@babel/preset-env': ^7.1.6
+
'@react-native/community-cli-plugin@0.74.83':
resolution: {integrity: sha512-7GAFjFOg1mFSj8bnFNQS4u8u7+QtrEeflUIDVZGEfBZQ3wMNI5ycBzbBGycsZYiq00Xvoc6eKFC7kvIaqeJpUQ==}
engines: {node: '>=18'}
@@ -6440,6 +6623,15 @@ packages:
resolution: {integrity: sha512-njsYm+jBWzfLcJcxavAY5QFzYTrmPtjbxq/64GSqwcQYzy9qAkI7LNTK/Wprq1I/4HOuHJO7Km+EddCXB+ByRQ==}
engines: {node: '>=18'}
+ '@react-native/community-cli-plugin@0.77.0':
+ resolution: {integrity: sha512-GRshwhCHhtupa3yyCbel14SlQligV8ffNYN5L1f8HCo2SeGPsBDNjhj2U+JTrMPnoqpwowPGvkCwyqwqYff4MQ==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@react-native-community/cli-server-api': '*'
+ peerDependenciesMeta:
+ '@react-native-community/cli-server-api':
+ optional: true
+
'@react-native/debugger-frontend@0.74.83':
resolution: {integrity: sha512-RGQlVUegBRxAUF9c1ss1ssaHZh6CO+7awgtI9sDeU0PzDZY/40ImoPD5m0o0SI6nXoVzbPtcMGzU+VO590pRfA==}
engines: {node: '>=18'}
@@ -6456,6 +6648,10 @@ packages:
resolution: {integrity: sha512-99bLQsUwsxUMNR7Wa9eV2uyR38yfd6mOEqfN+JIm8/L9sKA926oh+CZkjDy1M8RmCB6spB5N9fVFVkrVdf2yFA==}
engines: {node: '>=18'}
+ '@react-native/debugger-frontend@0.77.0':
+ resolution: {integrity: sha512-glOvSEjCbVXw+KtfiOAmrq21FuLE1VsmBsyT7qud4KWbXP43aUEhzn70mWyFuiIdxnzVPKe2u8iWTQTdJksR1w==}
+ engines: {node: '>=18'}
+
'@react-native/dev-middleware@0.74.83':
resolution: {integrity: sha512-UH8iriqnf7N4Hpi20D7M2FdvSANwTVStwFCSD7VMU9agJX88Yk0D1T6Meh2RMhUu4kY2bv8sTkNRm7LmxvZqgA==}
engines: {node: '>=18'}
@@ -6472,6 +6668,10 @@ packages:
resolution: {integrity: sha512-h2/6+UGmeMWjnT43axy27jNqoDRsE1C1qpjRC3sYpD4g0bI0jSTkY1kAgj8uqGGXLnHXiHOtjLDGdbAgZrsPaA==}
engines: {node: '>=18'}
+ '@react-native/dev-middleware@0.77.0':
+ resolution: {integrity: sha512-DAlEYujm43O+Dq98KP2XfLSX5c/TEGtt+JBDEIOQewk374uYY52HzRb1+Gj6tNaEj/b33no4GibtdxbO5zmPhg==}
+ engines: {node: '>=18'}
+
'@react-native/eslint-config@0.73.2':
resolution: {integrity: sha512-YzMfes19loTfbrkbYNAfHBDXX4oRBzc5wnvHs4h2GIHUj6YKs5ZK5lldqSrBJCdZAI3nuaO9Qj+t5JRwou571w==}
engines: {node: '>=18'}
@@ -6479,10 +6679,21 @@ packages:
eslint: '>=8'
prettier: '>=2'
+ '@react-native/eslint-config@0.77.0':
+ resolution: {integrity: sha512-azEiJNe/v1MjXE5Cekn8ygV4an0T3mNem4Afmeaq9tO9rfbOYr3VpTMFgc4B42SZgS4S6lyIqvwTfc8bSp0KRw==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ eslint: '>=8'
+ prettier: '>=2'
+
'@react-native/eslint-plugin@0.73.1':
resolution: {integrity: sha512-8BNMFE8CAI7JLWLOs3u33wcwcJ821LYs5g53Xyx9GhSg0h8AygTwDrwmYb/pp04FkCNCPjKPBoaYRthQZmxgwA==}
engines: {node: '>=18'}
+ '@react-native/eslint-plugin@0.77.0':
+ resolution: {integrity: sha512-1DXUDiqsgvFpK633SsOF01aAtWAaI/+KqPJAoZOVdSsodk70wNYyrHpF9rJBXWhyT/peTBE5y2kK2kT/Y7JcQA==}
+ engines: {node: '>=18'}
+
'@react-native/gradle-plugin@0.72.11':
resolution: {integrity: sha512-P9iRnxiR2w7EHcZ0mJ+fmbPzMby77ZzV6y9sJI3lVLJzF7TLSdbwcQyD3lwMsiL+q5lKUHoZJS4sYmih+P2HXw==}
@@ -6498,6 +6709,10 @@ packages:
resolution: {integrity: sha512-mSfa/Mq/AsALuG/kvXz5ECrc6HdY5waMHal2sSfa8KA0Gt3JqYQVXF9Pdwd4yR5ClPZDI2HRa1tdE8GVlhMvPA==}
engines: {node: '>=18'}
+ '@react-native/gradle-plugin@0.77.0':
+ resolution: {integrity: sha512-rmfh93jzbndSq7kihYHUQ/EGHTP8CCd3GDCmg5SbxSOHAaAYx2HZ28ZG7AVcGUsWeXp+e/90zGIyfOzDRx0Zaw==}
+ engines: {node: '>=18'}
+
'@react-native/js-polyfills@0.72.1':
resolution: {integrity: sha512-cRPZh2rBswFnGt5X5EUEPs0r+pAsXxYsifv/fgy9ZLQokuT52bPH+9xjDR+7TafRua5CttGW83wP4TntRcWNDA==}
@@ -6513,6 +6728,10 @@ packages:
resolution: {integrity: sha512-+JVFJ351GSJT3V7LuXscMqfnpR/UxzsAjbBjfAHBR3kqTbVqrAmBccqPCA3NLzgb/RY8khLJklwMUVlWrn8iFg==}
engines: {node: '>=18'}
+ '@react-native/js-polyfills@0.77.0':
+ resolution: {integrity: sha512-kHFcMJVkGb3ptj3yg1soUsMHATqal4dh0QTGAbYihngJ6zy+TnP65J3GJq4UlwqFE9K1RZkeCmTwlmyPFHOGvA==}
+ engines: {node: '>=18'}
+
'@react-native/metro-babel-transformer@0.74.83':
resolution: {integrity: sha512-hGdx5N8diu8y+GW/ED39vTZa9Jx1di2ZZ0aapbhH4egN1agIAusj5jXTccfNBwwWF93aJ5oVbRzfteZgjbutKg==}
engines: {node: '>=18'}
@@ -6531,6 +6750,16 @@ packages:
peerDependencies:
'@babel/core': '*'
+ '@react-native/metro-babel-transformer@0.77.0':
+ resolution: {integrity: sha512-19GfvhBRKCU3UDWwCnDR4QjIzz3B2ZuwhnxMRwfAgPxz7QY9uKour9RGmBAVUk1Wxi/SP7dLEvWnmnuBO39e2A==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@babel/core': '*'
+
+ '@react-native/metro-config@0.77.0':
+ resolution: {integrity: sha512-IhcsIDdoIYkXf3FoZxayRGg2oMLBhpqWEH6IDJlJTQamOQ3PUm2uF1e7yzvnatZ18A6JCNhOlxnBK7m5ZWQPYQ==}
+ engines: {node: '>=18'}
+
'@react-native/normalize-color@2.1.0':
resolution: {integrity: sha512-Z1jQI2NpdFJCVgpY+8Dq/Bt3d+YUi1928Q+/CZm/oh66fzM0RUl54vvuXlPJKybH4pdCZey1eDTPaLHkMPNgWA==}
@@ -6555,6 +6784,12 @@ packages:
'@react-native/normalize-colors@0.75.3':
resolution: {integrity: sha512-3mhF8AJFfIN0E5bEs/DQ4U2LzMJYm+FPSwY5bJ1DZhrxW1PFAh24bAPrSd8PwS0iarQ7biLdr1lWf/8LFv8pDA==}
+ '@react-native/normalize-colors@0.77.0':
+ resolution: {integrity: sha512-qjmxW3xRZe4T0ZBEaXZNHtuUbRgyfybWijf1yUuQwjBt24tSapmIslwhCjpKidA0p93ssPcepquhY0ykH25mew==}
+
+ '@react-native/typescript-config@0.77.0':
+ resolution: {integrity: sha512-WunTrKSQtGKi7gVf24jinHkXXi3tSkChRfrUPFY1njNWwVNtJ/H0ElSlJKUIWaBcd6DKG4ZddKsftWBAWTV0Sg==}
+
'@react-native/virtualized-lists@0.72.8':
resolution: {integrity: sha512-J3Q4Bkuo99k7mu+jPS9gSUSgq+lLRSI/+ahXNwV92XgJ/8UgOTxu2LPwhJnBk/sQKxq7E8WkZBnBiozukQMqrw==}
peerDependencies:
@@ -6593,6 +6828,17 @@ packages:
'@types/react':
optional: true
+ '@react-native/virtualized-lists@0.77.0':
+ resolution: {integrity: sha512-ppPtEu9ISO9iuzpA2HBqrfmDpDAnGGduNDVaegadOzbMCPAB3tC9Blxdu9W68LyYlNQILIsP6/FYtLwf7kfNew==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/react': ^18.2.6
+ react: '*'
+ react-native: '*'
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@react-navigation/bottom-tabs@6.5.20':
resolution: {integrity: sha512-ow6Z06iS4VqBO8d7FP+HsGjJLWt2xTWIvuWjpoCvsM/uQXzCRDIjBv9HaKcXbF0yTW7IMir0oDAbU5PFzEDdgA==}
peerDependencies:
@@ -6826,8 +7072,8 @@ packages:
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm-eabi@4.34.6':
- resolution: {integrity: sha512-+GcCXtOQoWuC7hhX1P00LqjjIiS/iOouHXhMdiDSnq/1DGTox4SpUvO52Xm+div6+106r+TcvOeo/cxvyEyTgg==}
+ '@rollup/rollup-android-arm-eabi@4.34.8':
+ resolution: {integrity: sha512-q217OSE8DTp8AFHuNHXo0Y86e1wtlfVrXiAlwkIvGRQv9zbc6mE3sjIVfwI8sYUyNxwOg0j/Vm1RKM04JcWLJw==}
cpu: [arm]
os: [android]
@@ -6846,8 +7092,8 @@ packages:
cpu: [arm64]
os: [android]
- '@rollup/rollup-android-arm64@4.34.6':
- resolution: {integrity: sha512-E8+2qCIjciYUnCa1AiVF1BkRgqIGW9KzJeesQqVfyRITGQN+dFuoivO0hnro1DjT74wXLRZ7QF8MIbz+luGaJA==}
+ '@rollup/rollup-android-arm64@4.34.8':
+ resolution: {integrity: sha512-Gigjz7mNWaOL9wCggvoK3jEIUUbGul656opstjaUSGC3eT0BM7PofdAJaBfPFWWkXNVAXbaQtC99OCg4sJv70Q==}
cpu: [arm64]
os: [android]
@@ -6866,8 +7112,8 @@ packages:
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-arm64@4.34.6':
- resolution: {integrity: sha512-z9Ib+OzqN3DZEjX7PDQMHEhtF+t6Mi2z/ueChQPLS/qUMKY7Ybn5A2ggFoKRNRh1q1T03YTQfBTQCJZiepESAg==}
+ '@rollup/rollup-darwin-arm64@4.34.8':
+ resolution: {integrity: sha512-02rVdZ5tgdUNRxIUrFdcMBZQoaPMrxtwSb+/hOfBdqkatYHR3lZ2A2EGyHq2sGOd0Owk80oV3snlDASC24He3Q==}
cpu: [arm64]
os: [darwin]
@@ -6886,18 +7132,18 @@ packages:
cpu: [x64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.34.6':
- resolution: {integrity: sha512-PShKVY4u0FDAR7jskyFIYVyHEPCPnIQY8s5OcXkdU8mz3Y7eXDJPdyM/ZWjkYdR2m0izD9HHWA8sGcXn+Qrsyg==}
+ '@rollup/rollup-darwin-x64@4.34.8':
+ resolution: {integrity: sha512-qIP/elwR/tq/dYRx3lgwK31jkZvMiD6qUtOycLhTzCvrjbZ3LjQnEM9rNhSGpbLXVJYQ3rq39A6Re0h9tU2ynw==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-freebsd-arm64@4.34.6':
- resolution: {integrity: sha512-YSwyOqlDAdKqs0iKuqvRHLN4SrD2TiswfoLfvYXseKbL47ht1grQpq46MSiQAx6rQEN8o8URtpXARCpqabqxGQ==}
+ '@rollup/rollup-freebsd-arm64@4.34.8':
+ resolution: {integrity: sha512-IQNVXL9iY6NniYbTaOKdrlVP3XIqazBgJOVkddzJlqnCpRi/yAeSOa8PLcECFSQochzqApIOE1GHNu3pCz+BDA==}
cpu: [arm64]
os: [freebsd]
- '@rollup/rollup-freebsd-x64@4.34.6':
- resolution: {integrity: sha512-HEP4CgPAY1RxXwwL5sPFv6BBM3tVeLnshF03HMhJYCNc6kvSqBgTMmsEjb72RkZBAWIqiPUyF1JpEBv5XT9wKQ==}
+ '@rollup/rollup-freebsd-x64@4.34.8':
+ resolution: {integrity: sha512-TYXcHghgnCqYFiE3FT5QwXtOZqDj5GmaFNTNt3jNC+vh22dc/ukG2cG+pi75QO4kACohZzidsq7yKTKwq/Jq7Q==}
cpu: [x64]
os: [freebsd]
@@ -6916,8 +7162,8 @@ packages:
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-gnueabihf@4.34.6':
- resolution: {integrity: sha512-88fSzjC5xeH9S2Vg3rPgXJULkHcLYMkh8faix8DX4h4TIAL65ekwuQMA/g2CXq8W+NJC43V6fUpYZNjaX3+IIg==}
+ '@rollup/rollup-linux-arm-gnueabihf@4.34.8':
+ resolution: {integrity: sha512-A4iphFGNkWRd+5m3VIGuqHnG3MVnqKe7Al57u9mwgbyZ2/xF9Jio72MaY7xxh+Y87VAHmGQr73qoKL9HPbXj1g==}
cpu: [arm]
os: [linux]
@@ -6936,8 +7182,8 @@ packages:
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.34.6':
- resolution: {integrity: sha512-wM4ztnutBqYFyvNeR7Av+reWI/enK9tDOTKNF+6Kk2Q96k9bwhDDOlnCUNRPvromlVXo04riSliMBs/Z7RteEg==}
+ '@rollup/rollup-linux-arm-musleabihf@4.34.8':
+ resolution: {integrity: sha512-S0lqKLfTm5u+QTxlFiAnb2J/2dgQqRy/XvziPtDd1rKZFXHTyYLoVL58M/XFwDI01AQCDIevGLbQrMAtdyanpA==}
cpu: [arm]
os: [linux]
@@ -6956,8 +7202,8 @@ packages:
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.34.6':
- resolution: {integrity: sha512-9RyprECbRa9zEjXLtvvshhw4CMrRa3K+0wcp3KME0zmBe1ILmvcVHnypZ/aIDXpRyfhSYSuN4EPdCCj5Du8FIA==}
+ '@rollup/rollup-linux-arm64-gnu@4.34.8':
+ resolution: {integrity: sha512-jpz9YOuPiSkL4G4pqKrus0pn9aYwpImGkosRKwNi+sJSkz+WU3anZe6hi73StLOQdfXYXC7hUfsQlTnjMd3s1A==}
cpu: [arm64]
os: [linux]
@@ -6976,13 +7222,13 @@ packages:
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.34.6':
- resolution: {integrity: sha512-qTmklhCTyaJSB05S+iSovfo++EwnIEZxHkzv5dep4qoszUMX5Ca4WM4zAVUMbfdviLgCSQOu5oU8YoGk1s6M9Q==}
+ '@rollup/rollup-linux-arm64-musl@4.34.8':
+ resolution: {integrity: sha512-KdSfaROOUJXgTVxJNAZ3KwkRc5nggDk+06P6lgi1HLv1hskgvxHUKZ4xtwHkVYJ1Rep4GNo+uEfycCRRxht7+Q==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-loongarch64-gnu@4.34.6':
- resolution: {integrity: sha512-4Qmkaps9yqmpjY5pvpkfOerYgKNUGzQpFxV6rnS7c/JfYbDSU0y6WpbbredB5cCpLFGJEqYX40WUmxMkwhWCjw==}
+ '@rollup/rollup-linux-loongarch64-gnu@4.34.8':
+ resolution: {integrity: sha512-NyF4gcxwkMFRjgXBM6g2lkT58OWztZvw5KkV2K0qqSnUEqCVcqdh2jN4gQrTn/YUpAcNKyFHfoOZEer9nwo6uQ==}
cpu: [loong64]
os: [linux]
@@ -7001,8 +7247,8 @@ packages:
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-powerpc64le-gnu@4.34.6':
- resolution: {integrity: sha512-Zsrtux3PuaxuBTX/zHdLaFmcofWGzaWW1scwLU3ZbW/X+hSsFbz9wDIp6XvnT7pzYRl9MezWqEqKy7ssmDEnuQ==}
+ '@rollup/rollup-linux-powerpc64le-gnu@4.34.8':
+ resolution: {integrity: sha512-LMJc999GkhGvktHU85zNTDImZVUCJ1z/MbAJTnviiWmmjyckP5aQsHtcujMjpNdMZPT2rQEDBlJfubhs3jsMfw==}
cpu: [ppc64]
os: [linux]
@@ -7021,8 +7267,8 @@ packages:
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.34.6':
- resolution: {integrity: sha512-aK+Zp+CRM55iPrlyKiU3/zyhgzWBxLVrw2mwiQSYJRobCURb781+XstzvA8Gkjg/hbdQFuDw44aUOxVQFycrAg==}
+ '@rollup/rollup-linux-riscv64-gnu@4.34.8':
+ resolution: {integrity: sha512-xAQCAHPj8nJq1PI3z8CIZzXuXCstquz7cIOL73HHdXiRcKk8Ywwqtx2wrIy23EcTn4aZ2fLJNBB8d0tQENPCmw==}
cpu: [riscv64]
os: [linux]
@@ -7041,8 +7287,8 @@ packages:
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.34.6':
- resolution: {integrity: sha512-WoKLVrY9ogmaYPXwTH326+ErlCIgMmsoRSx6bO+l68YgJnlOXhygDYSZe/qbUJCSiCiZAQ+tKm88NcWuUXqOzw==}
+ '@rollup/rollup-linux-s390x-gnu@4.34.8':
+ resolution: {integrity: sha512-DdePVk1NDEuc3fOe3dPPTb+rjMtuFw89gw6gVWxQFAuEqqSdDKnrwzZHrUYdac7A7dXl9Q2Vflxpme15gUWQFA==}
cpu: [s390x]
os: [linux]
@@ -7061,8 +7307,8 @@ packages:
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.34.6':
- resolution: {integrity: sha512-Sht4aFvmA4ToHd2vFzwMFaQCiYm2lDFho5rPcvPBT5pCdC+GwHG6CMch4GQfmWTQ1SwRKS0dhDYb54khSrjDWw==}
+ '@rollup/rollup-linux-x64-gnu@4.34.8':
+ resolution: {integrity: sha512-8y7ED8gjxITUltTUEJLQdgpbPh1sUQ0kMTmufRF/Ns5tI9TNMNlhWtmPKKHCU0SilX+3MJkZ0zERYYGIVBYHIA==}
cpu: [x64]
os: [linux]
@@ -7081,8 +7327,8 @@ packages:
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.34.6':
- resolution: {integrity: sha512-zmmpOQh8vXc2QITsnCiODCDGXFC8LMi64+/oPpPx5qz3pqv0s6x46ps4xoycfUiVZps5PFn1gksZzo4RGTKT+A==}
+ '@rollup/rollup-linux-x64-musl@4.34.8':
+ resolution: {integrity: sha512-SCXcP0ZpGFIe7Ge+McxY5zKxiEI5ra+GT3QRxL0pMMtxPfpyLAKleZODi1zdRHkz5/BhueUrYtYVgubqe9JBNQ==}
cpu: [x64]
os: [linux]
@@ -7101,8 +7347,8 @@ packages:
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-arm64-msvc@4.34.6':
- resolution: {integrity: sha512-3/q1qUsO/tLqGBaD4uXsB6coVGB3usxw3qyeVb59aArCgedSF66MPdgRStUd7vbZOsko/CgVaY5fo2vkvPLWiA==}
+ '@rollup/rollup-win32-arm64-msvc@4.34.8':
+ resolution: {integrity: sha512-YHYsgzZgFJzTRbth4h7Or0m5O74Yda+hLin0irAIobkLQFRQd1qWmnoVfwmKm9TXIZVAD0nZ+GEb2ICicLyCnQ==}
cpu: [arm64]
os: [win32]
@@ -7121,8 +7367,8 @@ packages:
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.34.6':
- resolution: {integrity: sha512-oLHxuyywc6efdKVTxvc0135zPrRdtYVjtVD5GUm55I3ODxhU/PwkQFD97z16Xzxa1Fz0AEe4W/2hzRtd+IfpOA==}
+ '@rollup/rollup-win32-ia32-msvc@4.34.8':
+ resolution: {integrity: sha512-r3NRQrXkHr4uWy5TOjTpTYojR9XmF0j/RYgKCef+Ag46FWUTltm5ziticv8LdNsDMehjJ543x/+TJAek/xBA2w==}
cpu: [ia32]
os: [win32]
@@ -7141,8 +7387,8 @@ packages:
cpu: [x64]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.34.6':
- resolution: {integrity: sha512-0PVwmgzZ8+TZ9oGBmdZoQVXflbvuwzN/HRclujpl4N/q3i+y0lqLw8n1bXA8ru3sApDjlmONaNAuYr38y1Kr9w==}
+ '@rollup/rollup-win32-x64-msvc@4.34.8':
+ resolution: {integrity: sha512-U0FaE5O1BCpZSeE6gBl3c5ObhePQSfk9vDRToMmTkbhCOgW4jqvtS5LGyQ76L1fH8sM0keRp4uDTsbjiUyjk0g==}
cpu: [x64]
os: [win32]
@@ -8473,9 +8719,15 @@ packages:
'@types/fs-extra@9.0.13':
resolution: {integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==}
+ '@types/gensync@1.0.4':
+ resolution: {integrity: sha512-C3YYeRQWp2fmq9OryX+FoDy8nXS6scQ7dPptD8LnFDAUNcKWJjXQKDNJD3HVm+kOUsXhTOkpi69vI4EuAr95bA==}
+
'@types/glob@7.2.0':
resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==}
+ '@types/graceful-fs@4.1.9':
+ resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==}
+
'@types/gtag.js@0.0.12':
resolution: {integrity: sha512-YQV9bUsemkzG81Ea295/nF/5GijnD2Af7QhEofh7xu+kvCN6RdodgNwwGWXB5GMI3NoyvQo0odNctoH/qLMIpg==}
@@ -8635,8 +8887,8 @@ packages:
'@types/react@18.3.11':
resolution: {integrity: sha512-r6QZ069rFTjrEYgFdOck1gK7FLVsgJE7tTz0pQBczlBNUhBNk0MQH4UbnFSwjpQLMkLzgqvBBa+qGpLje16eTQ==}
- '@types/react@18.3.12':
- resolution: {integrity: sha512-D2wOSq/d6Agt28q7rSI3jhU7G6aiuzljDGZ2hTZHIkrTLUI+AF3WMeKkEZ9nN2fkBAlcktT6vcZjDFiIhMYEQw==}
+ '@types/react@18.3.18':
+ resolution: {integrity: sha512-t4yC+vtgnkYjNSKlFx1jkAhH8LgTo2N/7Qvi83kdEaUtMDiwpbLAktKDaAMlRcJ5eSxZkH74eEGt1ky31d7kfQ==}
'@types/resolve@1.20.2':
resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==}
@@ -8753,6 +9005,17 @@ packages:
typescript:
optional: true
+ '@typescript-eslint/eslint-plugin@7.18.0':
+ resolution: {integrity: sha512-94EQTWZ40mzBc42ATNIBimBEDltSJ9RQHCC8vc/PDbxi4k8dVwUAv4o98dk50M1zB+JGFxp43FP7f8+FP8R6Sw==}
+ engines: {node: ^18.18.0 || >=20.0.0}
+ peerDependencies:
+ '@typescript-eslint/parser': ^7.0.0
+ eslint: ^8.56.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
'@typescript-eslint/parser@5.62.0':
resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -8773,6 +9036,16 @@ packages:
typescript:
optional: true
+ '@typescript-eslint/parser@7.18.0':
+ resolution: {integrity: sha512-4Z+L8I2OqhZV8qA132M4wNL30ypZGYOQVBfMgxDH/K5UX0PNqTu1c6za9ST5r9+tavvHiTWmBnKzpCJ/GlVFtg==}
+ engines: {node: ^18.18.0 || >=20.0.0}
+ peerDependencies:
+ eslint: ^8.56.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
'@typescript-eslint/scope-manager@5.62.0':
resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -8781,6 +9054,10 @@ packages:
resolution: {integrity: sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==}
engines: {node: ^16.0.0 || >=18.0.0}
+ '@typescript-eslint/scope-manager@7.18.0':
+ resolution: {integrity: sha512-jjhdIE/FPF2B7Z1uzc6i3oWKbGcHb87Qw7AWj6jmEqNOfDFbJWtjt/XfwCpvNkpGWlcJaog5vTR+VV8+w9JflA==}
+ engines: {node: ^18.18.0 || >=20.0.0}
+
'@typescript-eslint/type-utils@5.62.0':
resolution: {integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -8801,6 +9078,16 @@ packages:
typescript:
optional: true
+ '@typescript-eslint/type-utils@7.18.0':
+ resolution: {integrity: sha512-XL0FJXuCLaDuX2sYqZUUSOJ2sG5/i1AAze+axqmLnSkNEVMVYLF+cbwlB2w8D1tinFuSikHmFta+P+HOofrLeA==}
+ engines: {node: ^18.18.0 || >=20.0.0}
+ peerDependencies:
+ eslint: ^8.56.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
'@typescript-eslint/types@5.62.0':
resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -8809,6 +9096,10 @@ packages:
resolution: {integrity: sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==}
engines: {node: ^16.0.0 || >=18.0.0}
+ '@typescript-eslint/types@7.18.0':
+ resolution: {integrity: sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==}
+ engines: {node: ^18.18.0 || >=20.0.0}
+
'@typescript-eslint/typescript-estree@5.62.0':
resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -8827,6 +9118,15 @@ packages:
typescript:
optional: true
+ '@typescript-eslint/typescript-estree@7.18.0':
+ resolution: {integrity: sha512-aP1v/BSPnnyhMHts8cf1qQ6Q1IFwwRvAQGRvBFkWlo3/lH29OXA3Pts+c10nxRxIBrDnoMqzhgdwVe5f2D6OzA==}
+ engines: {node: ^18.18.0 || >=20.0.0}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
'@typescript-eslint/utils@5.62.0':
resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -8839,6 +9139,12 @@ packages:
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
+ '@typescript-eslint/utils@7.18.0':
+ resolution: {integrity: sha512-kK0/rNa2j74XuHVcoCZxdFBMF+aq/vH83CXAOHieC+2Gis4mF8jJXT5eAfyD3K0sAxtPuwxaIOIOvhwzVDt/kw==}
+ engines: {node: ^18.18.0 || >=20.0.0}
+ peerDependencies:
+ eslint: ^8.56.0
+
'@typescript-eslint/visitor-keys@5.62.0':
resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -8847,6 +9153,10 @@ packages:
resolution: {integrity: sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==}
engines: {node: ^16.0.0 || >=18.0.0}
+ '@typescript-eslint/visitor-keys@7.18.0':
+ resolution: {integrity: sha512-cDF0/Gf81QpY3xYyJKDV14Zwdmid5+uuENhjH2EqFaF0ni+yAyq/LzMaIJdhNJXZI7uLzwIlA+V7oWoyn6Curg==}
+ engines: {node: ^18.18.0 || >=20.0.0}
+
'@ungap/structured-clone@1.2.0':
resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
@@ -9020,27 +9330,27 @@ packages:
vue: ^3.0.0
vuetify: ^3.0.0
- '@wdio/config@9.7.3':
- resolution: {integrity: sha512-rWiGR0WMcUpGTTMn3XP9OzNW3WH64AcNK93b9kSwq9WzVGVIzMBCZK8LPXpdQ+pFwizq/ExIXTx/Z39kc0LCyw==}
+ '@wdio/config@9.4.4':
+ resolution: {integrity: sha512-w1Qo6QywLSGxmoglU4BiqDGNmFbwh/L6BRud4AO9nGgTuwKy6UkT7KevzlkIRiCHtdqkkjExR3xUi2OgjMdHAA==}
engines: {node: '>=18.20.0'}
'@wdio/logger@9.4.4':
resolution: {integrity: sha512-BXx8RXFUW2M4dcO6t5Le95Hi2ZkTQBRsvBQqLekT2rZ6Xmw8ZKZBPf0FptnoftFGg6dYmwnDidYv/0+4PiHjpQ==}
engines: {node: '>=18.20.0'}
- '@wdio/protocols@9.7.0':
- resolution: {integrity: sha512-5DI8cqJqT9K6oQn8UpaSTmcGAl4ufkUWC5FoPT3oXdLjILfxvweZDf/2XNBCbGMk4+VOMKqB2ofOqKhDIB2nAg==}
+ '@wdio/protocols@9.4.4':
+ resolution: {integrity: sha512-IqbAWe5feY3xOwjbiW/2iwcbDU+nm5CX5Om835mxaNWqEoQiaZuTin4YgtgsPeSEBcSFtQ+2ooswr/6vIZdxSw==}
'@wdio/repl@9.4.4':
resolution: {integrity: sha512-kchPRhoG/pCn4KhHGiL/ocNhdpR8OkD2e6sANlSUZ4TGBVi86YSIEjc2yXUwLacHknC/EnQk/SFnqd4MsNjGGg==}
engines: {node: '>=18.20.0'}
- '@wdio/types@9.6.3':
- resolution: {integrity: sha512-K3Lu7K5g5bsUcQV6/95XaS3jMwcGUn2pDdryYibKZafklhHjVt3o/xnw6Vgd/JzoSneCKHdwj941n+yDpTJHAw==}
+ '@wdio/types@9.4.4':
+ resolution: {integrity: sha512-Z2TAVMZiz4wCfP7ZdHqUXlYfF4qj5bBOV25A7tHxFbbdWPvFb8sSW3SU2+fxSwu02n5sV1mgfRYOsloypOXBnw==}
engines: {node: '>=18.20.0'}
- '@wdio/utils@9.7.3':
- resolution: {integrity: sha512-gScYudyuq/aOmiPTz7vTvEhWtmiUMdrrzkOSQqGCQk0AMy7WpAzKM19NESPe9iPTN96i11jLJnpLOXwm2j+6LQ==}
+ '@wdio/utils@9.4.4':
+ resolution: {integrity: sha512-CH2uHziYKZrm6xvI2Drfha+CBAK3cCHTFqhxfjP2dhz5kcCQfCEn22Bj12t2jYTILNvnxKFCxZyk+VEcQNMIKg==}
engines: {node: '>=18.20.0'}
'@web3-storage/multipart-parser@1.0.0':
@@ -9470,6 +9780,10 @@ packages:
resolution: {integrity: sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==}
engines: {node: '>=4'}
+ ast-types@0.16.1:
+ resolution: {integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==}
+ engines: {node: '>=4'}
+
astral-regex@1.0.0:
resolution: {integrity: sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==}
engines: {node: '>=4'}
@@ -9545,6 +9859,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ babel-jest@29.7.0:
+ resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ peerDependencies:
+ '@babel/core': ^7.8.0
+
babel-literal-to-ast@2.1.0:
resolution: {integrity: sha512-CxfpQ0ysQ0bZOhlaPgcWjl79Em16Rhqc6++UAFn0A3duiXmuyhhj8yyl9PYbj0I0CyjrHovdDbp2QEKT7uIMxw==}
peerDependencies:
@@ -9567,6 +9887,14 @@ packages:
babel-plugin-dynamic-import-node@2.3.3:
resolution: {integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==}
+ babel-plugin-istanbul@6.1.1:
+ resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==}
+ engines: {node: '>=8'}
+
+ babel-plugin-jest-hoist@29.6.3:
+ resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
babel-plugin-macros@3.1.0:
resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==}
engines: {node: '>=10', npm: '>=6'}
@@ -9584,6 +9912,11 @@ packages:
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ babel-plugin-polyfill-corejs3@0.11.1:
+ resolution: {integrity: sha512-yGCqvBT4rwMczo28xkH/noxJ6MZ4nJfkVYdoDaC/utLtWrXxv27HVrzAeSbqR8SxDsp46n0YF47EbHoixy6rXQ==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+
babel-plugin-polyfill-regenerator@0.6.2:
resolution: {integrity: sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==}
peerDependencies:
@@ -9598,12 +9931,20 @@ packages:
babel-plugin-react-native-web@0.19.12:
resolution: {integrity: sha512-eYZ4+P6jNcB37lObWIg0pUbi7+3PKoU1Oie2j0C8UF3cXyXoR74tO2NBjI/FORb2LJyItJZEAmjU5pSaJYEL1w==}
+ babel-plugin-syntax-hermes-parser@0.25.1:
+ resolution: {integrity: sha512-IVNpGzboFLfXZUAwkLFcI/bnqVbwky0jP3eBno4HKtqvQJAHBLdgxiG6lQ4to0+Q/YCN3PO0od5NZwIKyY4REQ==}
+
babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0:
resolution: {integrity: sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==}
babel-plugin-transform-flow-enums@0.0.2:
resolution: {integrity: sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==}
+ babel-preset-current-node-syntax@1.1.0:
+ resolution: {integrity: sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
babel-preset-expo@11.0.14:
resolution: {integrity: sha512-4BVYR0Sc2sSNxYTiE/OLSnPiOp+weFNy8eV+hX3aD6YAIbBnw+VubKRWqJV/sOJauzOLz0SgYAYyFciYMqizRA==}
@@ -9615,6 +9956,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
+ babel-preset-jest@29.6.3:
+ resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
bail@2.0.2:
resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==}
@@ -10374,6 +10721,9 @@ packages:
core-js-compat@3.38.1:
resolution: {integrity: sha512-JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw==}
+ core-js-compat@3.40.0:
+ resolution: {integrity: sha512-0XEDpr5y5mijvw8Lbc6E5AkjrHfp7eEoPlu36SWeAbcL8fn1G1ANe8DBlo2XoNN89oVpxWwOjYIPVzR4ZvsKCQ==}
+
core-js-pure@3.38.1:
resolution: {integrity: sha512-BY8Etc1FZqdw1glX0XNOq2FDwfrg/VGqoZOZCdaL+UmdaqDwQwYXkMJT4t6In+zfEfOJDcM9T0KdbBeJg8KKCQ==}
@@ -11348,8 +11698,8 @@ packages:
engines: {node: '>=18'}
hasBin: true
- esbuild@0.24.2:
- resolution: {integrity: sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==}
+ esbuild@0.25.0:
+ resolution: {integrity: sha512-BXq5mqc8ltbaN34cDqWuYKyNhX8D/Z0J1xdtdQ8UcIIIyJyz+ZMKUt58tF3SrZ85jcfN/PZYhjR5uDQAYNVbuw==}
engines: {node: '>=18'}
hasBin: true
@@ -11494,6 +11844,19 @@ packages:
jest:
optional: true
+ eslint-plugin-jest@27.9.0:
+ resolution: {integrity: sha512-QIT7FH7fNmd9n4se7FFKHbsLKGQiw885Ds6Y/sxKgCZ6natwCsXdgPOADnYVxN2QrRweF0FZWbJ6S7Rsn7llug==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ peerDependencies:
+ '@typescript-eslint/eslint-plugin': ^5.0.0 || ^6.0.0 || ^7.0.0
+ eslint: ^7.0.0 || ^8.0.0
+ jest: '*'
+ peerDependenciesMeta:
+ '@typescript-eslint/eslint-plugin':
+ optional: true
+ jest:
+ optional: true
+
eslint-plugin-jsx-a11y@6.10.0:
resolution: {integrity: sha512-ySOHvXX8eSN6zz8Bywacm7CvGNhUtdjvqfQDVe6020TUK34Cywkw7m0KsCCk1Qtm9G1FayfTN1/7mMYnYO2Bhg==}
engines: {node: '>=4.0'}
@@ -12584,6 +12947,9 @@ packages:
hermes-estree@0.23.1:
resolution: {integrity: sha512-eT5MU3f5aVhTqsfIReZ6n41X5sYn4IdQL0nvz6yO+MMlPxw49aSARHLg/MSehQftyjnrE8X6bYregzSumqc6cg==}
+ hermes-estree@0.25.1:
+ resolution: {integrity: sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==}
+
hermes-parser@0.12.0:
resolution: {integrity: sha512-d4PHnwq6SnDLhYl3LHNHvOg7nQ6rcI7QVil418REYksv0Mh3cEkHDcuhGxNQ3vgnLSLl4QSvDrFCwQNYdpWlzw==}
@@ -12596,6 +12962,9 @@ packages:
hermes-parser@0.23.1:
resolution: {integrity: sha512-oxl5h2DkFW83hT4DAUJorpah8ou4yvmweUzLJmmr6YV2cezduCdlil1AvU/a/xSsAFo4WUcNA4GoV5Bvq6JffA==}
+ hermes-parser@0.25.1:
+ resolution: {integrity: sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==}
+
hermes-profile-transformer@0.0.6:
resolution: {integrity: sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ==}
engines: {node: '>=8'}
@@ -12680,8 +13049,8 @@ packages:
webpack:
optional: true
- htmlfy@0.6.0:
- resolution: {integrity: sha512-EV1RNjYuG6xIxwA8zDjAUQVeS/SsPE0nhFsdjM8ALopS22ZRAcePocdrhKaaV26PYiTkUrKplJuSZkGRN6Y0Rg==}
+ htmlfy@0.3.2:
+ resolution: {integrity: sha512-FsxzfpeDYRqn1emox9VpxMPfGjADoUmmup8D604q497R0VNxiXs4ZZTN2QzkaMA5C9aHGUoe1iQRVSm+HK9xuA==}
htmlparser2@6.1.0:
resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==}
@@ -13341,6 +13710,10 @@ packages:
resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==}
engines: {node: '>=8'}
+ istanbul-lib-instrument@5.2.1:
+ resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==}
+ engines: {node: '>=8'}
+
istanbul-lib-instrument@6.0.3:
resolution: {integrity: sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==}
engines: {node: '>=10'}
@@ -13364,6 +13737,10 @@ packages:
resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ jest-haste-map@29.7.0:
+ resolution: {integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
jest-message-util@29.7.0:
resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -13376,6 +13753,10 @@ packages:
resolution: {integrity: sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
+ jest-regex-util@29.6.3:
+ resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
jest-util@27.5.1:
resolution: {integrity: sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
@@ -13444,6 +13825,16 @@ packages:
peerDependencies:
'@babel/preset-env': ^7.1.6
+ jscodeshift@17.1.2:
+ resolution: {integrity: sha512-uime4vFOiZ1o3ICT4Sm/AbItHEVw2oCxQ3a0egYVy3JMMOctxe07H3SKL1v175YqjMt27jn1N+3+Bj9SKDNgdQ==}
+ engines: {node: '>=16'}
+ hasBin: true
+ peerDependencies:
+ '@babel/preset-env': ^7.1.6
+ peerDependenciesMeta:
+ '@babel/preset-env':
+ optional: true
+
jsdom@24.1.3:
resolution: {integrity: sha512-MyL55p3Ut3cXbeBEG7Hcv0mVM8pp8PBNWxRqchZnSfAiES1v1mRnMeFfaHWIPULpwsYfvO+ZmMZz5tGCnjzDUQ==}
engines: {node: '>=18'}
@@ -14168,6 +14559,10 @@ packages:
resolution: {integrity: sha512-YZziRs0MgA3pzCkkvOoQRXjIoVjvrpi/yRlJnObyIvMP6lFdtyG4nUGIwGY9VXnBvxmXD6mPY2e+NSw6JAyiRg==}
engines: {node: '>=18'}
+ metro-babel-transformer@0.81.1:
+ resolution: {integrity: sha512-JECKDrQaUnDmj0x/Q/c8c5YwsatVx38Lu+BfCwX9fR8bWipAzkvJocBpq5rOAJRDXRgDcPv2VO4Q4nFYrpYNQg==}
+ engines: {node: '>=18.18'}
+
metro-cache-key@0.76.7:
resolution: {integrity: sha512-0pecoIzwsD/Whn/Qfa+SDMX2YyasV0ndbcgUFx7w1Ct2sLHClujdhQ4ik6mvQmsaOcnGkIyN0zcceMDjC2+BFQ==}
engines: {node: '>=16'}
@@ -14176,6 +14571,10 @@ packages:
resolution: {integrity: sha512-o4BspKnugg/pE45ei0LGHVuBJXwRgruW7oSFAeSZvBKA/sGr0UhOGY3uycOgWInnS3v5yTTfiBA9lHlNRhsvGA==}
engines: {node: '>=18'}
+ metro-cache-key@0.81.1:
+ resolution: {integrity: sha512-5fDaHR1yTvpaQuwMAeEoZGsVyvjrkw9IFAS7WixSPvaNY5YfleqoJICPc6hbXFJjvwCCpwmIYFkjqzR/qJ6yqA==}
+ engines: {node: '>=18.18'}
+
metro-cache@0.76.7:
resolution: {integrity: sha512-nWBMztrs5RuSxZRI7hgFgob5PhYDmxICh9FF8anm9/ito0u0vpPvRxt7sRu8fyeD2AHdXqE7kX32rWY0LiXgeg==}
engines: {node: '>=16'}
@@ -14184,6 +14583,10 @@ packages:
resolution: {integrity: sha512-p5kNHh2KJ0pbQI/H7ZBPCEwkyNcSz7OUkslzsiIWBMPQGFJ/xArMwkV7I+GJcWh+b4m6zbLxE5fk6fqbVK1xGA==}
engines: {node: '>=18'}
+ metro-cache@0.81.1:
+ resolution: {integrity: sha512-Uqcmn6sZ+Y0VJHM88VrG5xCvSeU7RnuvmjPmSOpEcyJJBe02QkfHL05MX2ZyGDTyZdbKCzaX0IijrTe4hN3F0Q==}
+ engines: {node: '>=18.18'}
+
metro-config@0.76.7:
resolution: {integrity: sha512-CFDyNb9bqxZemiChC/gNdXZ7OQkIwmXzkrEXivcXGbgzlt/b2juCv555GWJHyZSlorwnwJfY3uzAFu4A9iRVfg==}
engines: {node: '>=16'}
@@ -14192,6 +14595,10 @@ packages:
resolution: {integrity: sha512-4rwOWwrhm62LjB12ytiuR5NgK1ZBNr24/He8mqCsC+HXZ+ATbrewLNztzbAZHtFsrxP4D4GLTGgh96pCpYLSAQ==}
engines: {node: '>=18'}
+ metro-config@0.81.1:
+ resolution: {integrity: sha512-VAAJmxsKIZ+Fz5/z1LVgxa32gE6+2TvrDSSx45g85WoX4EtLmdBGP3DSlpQW3DqFUfNHJCGwMLGXpJnxifd08g==}
+ engines: {node: '>=18.18'}
+
metro-core@0.76.7:
resolution: {integrity: sha512-0b8KfrwPmwCMW+1V7ZQPkTy2tsEKZjYG9Pu1PTsu463Z9fxX7WaR0fcHFshv+J1CnQSUTwIGGjbNvj1teKe+pw==}
engines: {node: '>=16'}
@@ -14200,6 +14607,10 @@ packages:
resolution: {integrity: sha512-QqdJ/yAK+IpPs2HU/h5v2pKEdANBagSsc6DRSjnwSyJsCoHlmyJKCaCJ7KhWGx+N4OHxh37hoA8fc2CuZbx0Fw==}
engines: {node: '>=18'}
+ metro-core@0.81.1:
+ resolution: {integrity: sha512-4d2/+02IYqOwJs4dmM0dC8hIZqTzgnx2nzN4GTCaXb3Dhtmi/SJ3v6744zZRnithhN4lxf8TTJSHnQV75M7SSA==}
+ engines: {node: '>=18.18'}
+
metro-file-map@0.76.7:
resolution: {integrity: sha512-s+zEkTcJ4mOJTgEE2ht4jIo1DZfeWreQR3tpT3gDV/Y/0UQ8aJBTv62dE775z0GLsWZApiblAYZsj7ZE8P06nw==}
engines: {node: '>=16'}
@@ -14208,6 +14619,10 @@ packages:
resolution: {integrity: sha512-sYdemWSlk66bWzW2wp79kcPMzwuG32x1ZF3otI0QZTmrnTaaTiGyhE66P1z6KR4n2Eu5QXiABa6EWbAQv0r8bw==}
engines: {node: '>=18'}
+ metro-file-map@0.81.1:
+ resolution: {integrity: sha512-aY72H2ujmRfFxcsbyh83JgqFF+uQ4HFN1VhV2FmcfQG4s1bGKf2Vbkk+vtZ1+EswcBwDZFbkpvAjN49oqwGzAA==}
+ engines: {node: '>=18.18'}
+
metro-inspector-proxy@0.76.7:
resolution: {integrity: sha512-rNZ/6edTl/1qUekAhAbaFjczMphM50/UjtxiKulo6vqvgn/Mjd9hVqDvVYfAMZXqPvlusD88n38UjVYPkruLSg==}
engines: {node: '>=16'}
@@ -14221,6 +14636,10 @@ packages:
resolution: {integrity: sha512-muWzUw3y5k+9083ZoX9VaJLWEV2Jcgi+Oan0Mmb/fBNMPqP9xVDuy4pOMn/HOiGndgfh/MK7s4bsjkyLJKMnXQ==}
engines: {node: '>=18'}
+ metro-minify-terser@0.81.1:
+ resolution: {integrity: sha512-p/Qz3NNh1nebSqMlxlUALAnESo6heQrnvgHtAuxufRPtKvghnVDq9hGGex8H7z7YYLsqe42PWdt4JxTA3mgkvg==}
+ engines: {node: '>=18.18'}
+
metro-minify-uglify@0.76.7:
resolution: {integrity: sha512-FuXIU3j2uNcSvQtPrAJjYWHruPiQ+EpE++J9Z+VznQKEHcIxMMoQZAfIF2IpZSrZYfLOjVFyGMvj41jQMxV1Vw==}
engines: {node: '>=16'}
@@ -14245,6 +14664,10 @@ packages:
resolution: {integrity: sha512-PR24gYRZnYHM3xT9pg6BdbrGbM/Cu1TcyIFBVlAk7qDAuHkUNQ1nMzWumWs+kwSvtd9eZGzHoucGJpTUEeLZAw==}
engines: {node: '>=18'}
+ metro-resolver@0.81.1:
+ resolution: {integrity: sha512-E61t6fxRoYRkl6Zo3iUfCKW4DYfum/bLjcejXBMt1y3I7LFkK84TCR/Rs9OAwsMCY/7GOPB4+CREYZOtCC7CNA==}
+ engines: {node: '>=18.18'}
+
metro-runtime@0.76.7:
resolution: {integrity: sha512-MuWHubQHymUWBpZLwuKZQgA/qbb35WnDAKPo83rk7JRLIFPvzXSvFaC18voPuzJBt1V98lKQIonh6MiC9gd8Ug==}
engines: {node: '>=16'}
@@ -14257,6 +14680,10 @@ packages:
resolution: {integrity: sha512-LIx7+92p5rpI0i6iB4S4GBvvLxStNt6fF0oPMaUd1Weku7jZdfkCZzmrtDD9CSQ6EPb0T9NUZoyXIxlBa3wOCw==}
engines: {node: '>=18'}
+ metro-runtime@0.81.1:
+ resolution: {integrity: sha512-pqu5j5d01rjF85V/K8SDDJ0NR3dRp6bE3z5bKVVb5O2Rx0nbR9KreUxYALQCRCcQHaYySqCg5fYbGKBHC295YQ==}
+ engines: {node: '>=18.18'}
+
metro-source-map@0.76.7:
resolution: {integrity: sha512-Prhx7PeRV1LuogT0Kn5VjCuFu9fVD68eefntdWabrksmNY6mXK8pRqzvNJOhTojh6nek+RxBzZeD6MIOOyXS6w==}
engines: {node: '>=16'}
@@ -14269,6 +14696,10 @@ packages:
resolution: {integrity: sha512-o+AXmE7hpvM8r8MKsx7TI21/eerYYy2DCDkWfoBkv+jNkl61khvDHlQn0cXZa6lrcNZiZkl9oHSMcwLLIrFmpw==}
engines: {node: '>=18'}
+ metro-source-map@0.81.1:
+ resolution: {integrity: sha512-1i8ROpNNiga43F0ZixAXoFE/SS3RqcRDCCslpynb+ytym0VI7pkTH1woAN2HI9pczYtPrp3Nq0AjRpsuY35ieA==}
+ engines: {node: '>=18.18'}
+
metro-symbolicate@0.76.7:
resolution: {integrity: sha512-p0zWEME5qLSL1bJb93iq+zt5fz3sfVn9xFYzca1TJIpY5MommEaS64Va87lp56O0sfEIvh4307Oaf/ZzRjuLiQ==}
engines: {node: '>=16'}
@@ -14284,6 +14715,11 @@ packages:
engines: {node: '>=18'}
hasBin: true
+ metro-symbolicate@0.81.1:
+ resolution: {integrity: sha512-Lgk0qjEigtFtsM7C0miXITbcV47E1ZYIfB+m/hCraihiwRWkNUQEPCWvqZmwXKSwVE5mXA0EzQtghAvQSjZDxw==}
+ engines: {node: '>=18.18'}
+ hasBin: true
+
metro-transform-plugins@0.76.7:
resolution: {integrity: sha512-iSmnjVApbdivjuzb88Orb0JHvcEt5veVyFAzxiS5h0QB+zV79w6JCSqZlHCrbNOkOKBED//LqtKbFVakxllnNg==}
engines: {node: '>=16'}
@@ -14292,6 +14728,10 @@ packages:
resolution: {integrity: sha512-WQWp00AcZvXuQdbjQbx1LzFR31IInlkCDYJNRs6gtEtAyhwpMMlL2KcHmdY+wjDO9RPcliZ+Xl1riOuBecVlPA==}
engines: {node: '>=18'}
+ metro-transform-plugins@0.81.1:
+ resolution: {integrity: sha512-7L1lI44/CyjIoBaORhY9fVkoNe8hrzgxjSCQ/lQlcfrV31cZb7u0RGOQrKmUX7Bw4FpejrB70ArQ7Mse9mk7+Q==}
+ engines: {node: '>=18.18'}
+
metro-transform-worker@0.76.7:
resolution: {integrity: sha512-cGvELqFMVk9XTC15CMVzrCzcO6sO1lURfcbgjuuPdzaWuD11eEyocvkTX0DPiRjsvgAmicz4XYxVzgYl3MykDw==}
engines: {node: '>=16'}
@@ -14300,6 +14740,10 @@ packages:
resolution: {integrity: sha512-KAPFN1y3eVqEbKLx1I8WOarHPqDMUa8WelWxaJCNKO/yHCP26zELeqTJvhsQup+8uwB6EYi/sp0b6TGoh6lOEA==}
engines: {node: '>=18'}
+ metro-transform-worker@0.81.1:
+ resolution: {integrity: sha512-M+2hVT3rEy5K7PBmGDgQNq3Zx53TjScOcO/CieyLnCRFtBGWZiSJ2+bLAXXOKyKa/y3bI3i0owxtyxuPGDwbZg==}
+ engines: {node: '>=18.18'}
+
metro@0.76.7:
resolution: {integrity: sha512-67ZGwDeumEPnrHI+pEDSKH2cx+C81Gx8Mn5qOtmGUPm/Up9Y4I1H2dJZ5n17MWzejNo0XAvPh0QL0CrlJEODVQ==}
engines: {node: '>=16'}
@@ -14310,6 +14754,11 @@ packages:
engines: {node: '>=18'}
hasBin: true
+ metro@0.81.1:
+ resolution: {integrity: sha512-fqRu4fg8ONW7VfqWFMGgKAcOuMzyoQah2azv9Y3VyFXAmG+AoTU6YIFWqAADESCGVWuWEIvxTJhMf3jxU6jwjA==}
+ engines: {node: '>=18.18'}
+ hasBin: true
+
micromark-core-commonmark@2.0.1:
resolution: {integrity: sha512-CUQyKr1e///ZODyD1U3xit6zXwy1a8q2a1S1HKtIlmgvurrEpaw/Y9y6KSIbF8P59cn/NjzHyO+Q2fAyYLQrAA==}
@@ -14998,6 +15447,10 @@ packages:
resolution: {integrity: sha512-VMArClVT6LkhUGpnuEoBuyjG9rzUyEzg4PDkav6wK1cLhOK02gPCYFxoiB4mqVnrMhDpIzJcrGNAMVi9P+hXrw==}
engines: {node: '>=18'}
+ ob1@0.81.1:
+ resolution: {integrity: sha512-1PEbvI+AFvOcgdNcO79FtDI1TUO8S3lhiKOyAiyWQF3sFDDKS+aw2/BZvGlArFnSmqckwOOB9chQuIX0/OahoQ==}
+ engines: {node: '>=18.18'}
+
object-assign@4.1.1:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
@@ -15969,8 +16422,8 @@ packages:
resolution: {integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==}
engines: {node: ^10 || ^12 || >=14}
- postcss@8.5.1:
- resolution: {integrity: sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ==}
+ postcss@8.5.3:
+ resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==}
engines: {node: ^10 || ^12 || >=14}
postject@1.0.0-alpha.6:
@@ -16286,6 +16739,9 @@ packages:
react-devtools-core@5.3.1:
resolution: {integrity: sha512-7FSb9meX0btdBQLwdFOwt6bGqvRPabmVMMslv8fgoSPqXyuGpgQe36kx8gR86XPw7aV1yVouTp6fyZ0EH+NfUw==}
+ react-devtools-core@6.1.1:
+ resolution: {integrity: sha512-TFo1MEnkqE6hzAbaztnyR5uLTMoz6wnEWwWBsCUzNt+sVXJycuRJdDqvL078M4/h65BI/YO5XWTaxZDWVsW0fw==}
+
react-dom@18.2.0:
resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==}
peerDependencies:
@@ -16535,6 +16991,17 @@ packages:
'@types/react':
optional: true
+ react-native@0.77.0:
+ resolution: {integrity: sha512-oCgHLGHFIp6F5UbyHSedyUXrZg6/GPe727freGFvlT7BjPJ3K6yvvdlsp7OEXSAHz6Fe7BI2n5cpUyqmP9Zn+Q==}
+ engines: {node: '>=18'}
+ hasBin: true
+ peerDependencies:
+ '@types/react': ^18.2.6
+ react: ^18.2.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
react-navigation-stack@2.10.4:
resolution: {integrity: sha512-3LE1PFsFV9v4PUlZRATMotqs6H7MOOpIKtjyP+l8D1cyzYmsMQh3EFikeDfzGQUXIvy8VyLAMtcEssicQPYvFA==}
deprecated: This package is no longer supported. Please use @react-navigation/stack instead. See https://reactnavigation.org/docs/stack-navigator/ for usage guide
@@ -16723,6 +17190,10 @@ packages:
resolution: {integrity: sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==}
engines: {node: '>= 4'}
+ recast@0.23.9:
+ resolution: {integrity: sha512-Hx/BGIbwj+Des3+xy5uAtAbdCyqK9y9wbBcDFDYanLS9JnMqf7OeF87HQwUimE87OEc72mr6tkKUKMBBL+hF9Q==}
+ engines: {node: '>= 4'}
+
rechoir@0.6.2:
resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==}
engines: {node: '>= 0.10'}
@@ -17048,8 +17519,8 @@ packages:
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
- rollup@4.34.6:
- resolution: {integrity: sha512-wc2cBWqJgkU3Iz5oztRkQbfVkbxoz5EhnCGOrnJvnLnQ7O0WhQUYyv18qQI79O8L7DdHrrlJNeCHd4VGpnaXKQ==}
+ rollup@4.34.8:
+ resolution: {integrity: sha512-489gTVMzAYdiZHFVA/ig/iYFllCcWFHMvUHI1rpFmkoUtRlQxqh6/yiNqnYibjMZ2b/+FUQwldG+aLsEt6bglQ==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
@@ -17975,6 +18446,10 @@ packages:
engines: {node: '>=10'}
hasBin: true
+ test-exclude@6.0.0:
+ resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==}
+ engines: {node: '>=8'}
+
text-decoder@1.2.0:
resolution: {integrity: sha512-n1yg1mOj9DNpk3NeZOx7T6jchTbyJS3i3cucbNN6FcdPriMZx7NsgrGpWWdWZZGxD7ES1XB+3uoqHMgOKaN+fg==}
@@ -18827,8 +19302,8 @@ packages:
terser:
optional: true
- vite@6.1.0:
- resolution: {integrity: sha512-RjjMipCKVoR4hVfPY6GQTgveinjNuyLw+qruksLDvA5ktI1150VmcMBKmQaEWJhg/j6Uaf6dNCNA0AfdzUb/hQ==}
+ vite@6.2.0:
+ resolution: {integrity: sha512-7dPxoo+WsT/64rDcwoOjk76XHj+TqNTIvHKcuMQ1k4/SeHDaQt5GFAeLYzrimZrMpn/O6DtdI03WUjdxuPM0oQ==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
peerDependencies:
@@ -19014,12 +19489,12 @@ packages:
resolution: {integrity: sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==}
engines: {node: '>= 8'}
- webdriver@9.7.3:
- resolution: {integrity: sha512-Mpi277WKw37Yg5xZ0MT2BcG/Q/5Y5reYA0wDXOMldVI1nLxA7eOzAvsBA8NpjPbi/+yZijZhNMrXRAtQ5Eu8NQ==}
+ webdriver@9.4.4:
+ resolution: {integrity: sha512-F/QxX3TNfkBWzYC0Ywz0oRRUtvUEFUM59pob19gs+lZ2seXKKCJ8vVLzIWcT9XBU8dFAWN6Mzqi5FypHWeBgfw==}
engines: {node: '>=18.20.0'}
- webdriverio@9.8.0:
- resolution: {integrity: sha512-30qTo27eNrqQTFGjzPYarAXD1aJ2fD5J+r+TUfLM3Ozlai6AuqbicLv4ysM8StfvN44jwyN+av/R3ul4SGaFjg==}
+ webdriverio@9.4.5:
+ resolution: {integrity: sha512-tc22NSwKbXNROhafzktoQnhfkx0bhvh9a+XVaVu3mLhaiOmymIGDcS2NyRoOn3Sq4JxWJuOUwTO6f6jNkFJ5bQ==}
engines: {node: '>=18.20.0'}
peerDependencies:
puppeteer-core: ^22.3.0
@@ -19343,6 +19818,10 @@ packages:
write-file-atomic@3.0.3:
resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==}
+ write-file-atomic@4.0.2:
+ resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==}
+ engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
+
write-file-atomic@5.0.1:
resolution: {integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
@@ -20088,6 +20567,8 @@ snapshots:
'@babel/compat-data@7.26.3': {}
+ '@babel/compat-data@7.26.8': {}
+
'@babel/core@7.24.5':
dependencies:
'@ampproject/remapping': 2.3.0
@@ -20111,15 +20592,15 @@ snapshots:
'@babel/core@7.25.2':
dependencies:
'@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.25.7
- '@babel/generator': 7.25.7
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.2)
- '@babel/helpers': 7.25.7
- '@babel/parser': 7.25.7
- '@babel/template': 7.25.7
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.7
+ '@babel/code-frame': 7.26.2
+ '@babel/generator': 7.26.3
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.25.2)
+ '@babel/helpers': 7.26.0
+ '@babel/parser': 7.26.3
+ '@babel/template': 7.25.9
+ '@babel/traverse': 7.26.4
+ '@babel/types': 7.26.3
convert-source-map: 2.0.0
debug: 4.3.7(supports-color@8.1.1)
gensync: 1.0.0-beta.2
@@ -20148,18 +20629,19 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/core@7.26.0':
+ '@babel/core@7.26.8':
dependencies:
'@ampproject/remapping': 2.3.0
'@babel/code-frame': 7.26.2
- '@babel/generator': 7.26.3
- '@babel/helper-compilation-targets': 7.25.9
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
- '@babel/helpers': 7.26.0
- '@babel/parser': 7.26.3
- '@babel/template': 7.25.9
- '@babel/traverse': 7.26.4
- '@babel/types': 7.26.3
+ '@babel/generator': 7.26.8
+ '@babel/helper-compilation-targets': 7.26.5
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.8)
+ '@babel/helpers': 7.26.7
+ '@babel/parser': 7.26.8
+ '@babel/template': 7.26.8
+ '@babel/traverse': 7.26.8
+ '@babel/types': 7.26.8
+ '@types/gensync': 1.0.4
convert-source-map: 2.0.0
debug: 4.4.0(supports-color@8.1.1)
gensync: 1.0.0-beta.2
@@ -20168,9 +20650,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/eslint-parser@7.25.8(@babel/core@7.25.7)(eslint@8.57.1)':
+ '@babel/eslint-parser@7.25.8(@babel/core@7.24.5)(eslint@8.57.1)':
dependencies:
- '@babel/core': 7.25.7
+ '@babel/core': 7.24.5
+ '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1
+ eslint: 8.57.1
+ eslint-visitor-keys: 2.1.0
+ semver: 6.3.1
+
+ '@babel/eslint-parser@7.25.8(@babel/core@7.26.8)(eslint@8.57.1)':
+ dependencies:
+ '@babel/core': 7.26.8
'@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1
eslint: 8.57.1
eslint-visitor-keys: 2.1.0
@@ -20178,7 +20668,7 @@ snapshots:
'@babel/generator@7.2.0':
dependencies:
- '@babel/types': 7.25.7
+ '@babel/types': 7.26.3
jsesc: 2.5.2
lodash: 4.17.21
source-map: 0.5.7
@@ -20186,7 +20676,7 @@ snapshots:
'@babel/generator@7.25.0':
dependencies:
- '@babel/types': 7.25.7
+ '@babel/types': 7.26.3
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
jsesc: 2.5.2
@@ -20206,13 +20696,21 @@ snapshots:
'@jridgewell/trace-mapping': 0.3.25
jsesc: 3.0.2
+ '@babel/generator@7.26.8':
+ dependencies:
+ '@babel/parser': 7.26.8
+ '@babel/types': 7.26.8
+ '@jridgewell/gen-mapping': 0.3.5
+ '@jridgewell/trace-mapping': 0.3.25
+ jsesc: 3.0.2
+
'@babel/helper-annotate-as-pure@7.24.7':
dependencies:
- '@babel/types': 7.25.7
+ '@babel/types': 7.26.3
'@babel/helper-annotate-as-pure@7.25.7':
dependencies:
- '@babel/types': 7.25.7
+ '@babel/types': 7.26.3
'@babel/helper-annotate-as-pure@7.25.9':
dependencies:
@@ -20220,15 +20718,15 @@ snapshots:
'@babel/helper-builder-binary-assignment-operator-visitor@7.25.7':
dependencies:
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.7
+ '@babel/traverse': 7.26.4
+ '@babel/types': 7.26.3
transitivePeerDependencies:
- supports-color
'@babel/helper-compilation-targets@7.25.7':
dependencies:
- '@babel/compat-data': 7.25.7
- '@babel/helper-validator-option': 7.25.7
+ '@babel/compat-data': 7.26.3
+ '@babel/helper-validator-option': 7.25.9
browserslist: 4.24.0
lru-cache: 5.1.1
semver: 6.3.1
@@ -20241,54 +20739,36 @@ snapshots:
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.25.7(@babel/core@7.24.5)':
- dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-member-expression-to-functions': 7.25.7
- '@babel/helper-optimise-call-expression': 7.25.7
- '@babel/helper-replace-supers': 7.25.7(@babel/core@7.24.5)
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
- '@babel/traverse': 7.25.7
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-create-class-features-plugin@7.25.7(@babel/core@7.25.2)':
+ '@babel/helper-compilation-targets@7.26.5':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-member-expression-to-functions': 7.25.7
- '@babel/helper-optimise-call-expression': 7.25.7
- '@babel/helper-replace-supers': 7.25.7(@babel/core@7.25.2)
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/compat-data': 7.26.8
+ '@babel/helper-validator-option': 7.25.9
+ browserslist: 4.24.3
+ lru-cache: 5.1.1
semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
- '@babel/helper-create-class-features-plugin@7.25.7(@babel/core@7.25.7)':
+ '@babel/helper-create-class-features-plugin@7.25.7(@babel/core@7.24.5)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-annotate-as-pure': 7.25.7
+ '@babel/core': 7.24.5
+ '@babel/helper-annotate-as-pure': 7.25.9
'@babel/helper-member-expression-to-functions': 7.25.7
'@babel/helper-optimise-call-expression': 7.25.7
- '@babel/helper-replace-supers': 7.25.7(@babel/core@7.25.7)
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.24.5)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/traverse': 7.26.4
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/helper-create-class-features-plugin@7.25.7(@babel/core@7.26.0)':
+ '@babel/helper-create-class-features-plugin@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-annotate-as-pure': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-annotate-as-pure': 7.25.9
'@babel/helper-member-expression-to-functions': 7.25.7
'@babel/helper-optimise-call-expression': 7.25.7
- '@babel/helper-replace-supers': 7.25.7(@babel/core@7.26.0)
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.8)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/traverse': 7.26.4
semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -20306,26 +20786,26 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.25.7)':
+ '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
+ '@babel/core': 7.25.2
'@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.25.9(@babel/core@7.25.7)
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.25.2)
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
'@babel/traverse': 7.26.4
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.0)':
+ '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
'@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.25.9(@babel/core@7.26.0)
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.8)
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
'@babel/traverse': 7.26.4
semver: 6.3.1
@@ -20335,28 +20815,14 @@ snapshots:
'@babel/helper-create-regexp-features-plugin@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-annotate-as-pure': 7.25.7
- regexpu-core: 6.1.1
- semver: 6.3.1
-
- '@babel/helper-create-regexp-features-plugin@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-annotate-as-pure': 7.25.7
- regexpu-core: 6.1.1
- semver: 6.3.1
-
- '@babel/helper-create-regexp-features-plugin@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-annotate-as-pure': 7.25.7
+ '@babel/helper-annotate-as-pure': 7.25.9
regexpu-core: 6.1.1
semver: 6.3.1
- '@babel/helper-create-regexp-features-plugin@7.25.7(@babel/core@7.26.0)':
+ '@babel/helper-create-regexp-features-plugin@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-annotate-as-pure': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-annotate-as-pure': 7.25.9
regexpu-core: 6.1.1
semver: 6.3.1
@@ -20367,16 +20833,16 @@ snapshots:
regexpu-core: 6.2.0
semver: 6.3.1
- '@babel/helper-create-regexp-features-plugin@7.26.3(@babel/core@7.25.7)':
+ '@babel/helper-create-regexp-features-plugin@7.26.3(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
+ '@babel/core': 7.25.2
'@babel/helper-annotate-as-pure': 7.25.9
regexpu-core: 6.2.0
semver: 6.3.1
- '@babel/helper-create-regexp-features-plugin@7.26.3(@babel/core@7.26.0)':
+ '@babel/helper-create-regexp-features-plugin@7.26.3(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
'@babel/helper-annotate-as-pure': 7.25.9
regexpu-core: 6.2.0
semver: 6.3.1
@@ -20384,8 +20850,8 @@ snapshots:
'@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-compilation-targets': 7.26.5
+ '@babel/helper-plugin-utils': 7.26.5
debug: 4.4.0(supports-color@8.1.1)
lodash.debounce: 4.0.8
resolve: 1.22.8
@@ -20395,31 +20861,42 @@ snapshots:
'@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-compilation-targets': 7.26.5
+ '@babel/helper-plugin-utils': 7.26.5
debug: 4.4.0(supports-color@8.1.1)
lodash.debounce: 4.0.8
resolve: 1.22.8
transitivePeerDependencies:
- supports-color
- '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.25.7)':
+ '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-compilation-targets': 7.26.5
+ '@babel/helper-plugin-utils': 7.26.5
debug: 4.4.0(supports-color@8.1.1)
lodash.debounce: 4.0.8
resolve: 1.22.8
transitivePeerDependencies:
- supports-color
- '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.26.0)':
+ '@babel/helper-define-polyfill-provider@0.6.3(@babel/core@7.24.5)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- debug: 4.4.0(supports-color@8.1.1)
+ '@babel/core': 7.24.5
+ '@babel/helper-compilation-targets': 7.26.5
+ '@babel/helper-plugin-utils': 7.26.5
+ debug: 4.3.7(supports-color@8.1.1)
+ lodash.debounce: 4.0.8
+ resolve: 1.22.8
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-define-polyfill-provider@0.6.3(@babel/core@7.26.8)':
+ dependencies:
+ '@babel/core': 7.26.8
+ '@babel/helper-compilation-targets': 7.26.5
+ '@babel/helper-plugin-utils': 7.26.5
+ debug: 4.3.7(supports-color@8.1.1)
lodash.debounce: 4.0.8
resolve: 1.22.8
transitivePeerDependencies:
@@ -20427,12 +20904,12 @@ snapshots:
'@babel/helper-environment-visitor@7.24.7':
dependencies:
- '@babel/types': 7.25.7
+ '@babel/types': 7.26.3
'@babel/helper-member-expression-to-functions@7.25.7':
dependencies:
'@babel/traverse': 7.26.4
- '@babel/types': 7.25.7
+ '@babel/types': 7.26.3
transitivePeerDependencies:
- supports-color
@@ -20445,15 +20922,15 @@ snapshots:
'@babel/helper-module-imports@7.25.7':
dependencies:
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.7
+ '@babel/traverse': 7.26.4
+ '@babel/types': 7.26.3
transitivePeerDependencies:
- supports-color
'@babel/helper-module-imports@7.25.9':
dependencies:
- '@babel/traverse': 7.26.4
- '@babel/types': 7.26.3
+ '@babel/traverse': 7.26.8
+ '@babel/types': 7.26.8
transitivePeerDependencies:
- supports-color
@@ -20463,17 +20940,7 @@ snapshots:
'@babel/helper-module-imports': 7.25.7
'@babel/helper-simple-access': 7.25.7
'@babel/helper-validator-identifier': 7.25.7
- '@babel/traverse': 7.25.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-module-transforms@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-module-imports': 7.25.7
- '@babel/helper-simple-access': 7.25.7
- '@babel/helper-validator-identifier': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/traverse': 7.26.4
transitivePeerDependencies:
- supports-color
@@ -20483,17 +20950,7 @@ snapshots:
'@babel/helper-module-imports': 7.25.7
'@babel/helper-simple-access': 7.25.7
'@babel/helper-validator-identifier': 7.25.7
- '@babel/traverse': 7.25.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-module-transforms@7.25.7(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-module-imports': 7.25.7
- '@babel/helper-simple-access': 7.25.7
- '@babel/helper-validator-identifier': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/traverse': 7.26.4
transitivePeerDependencies:
- supports-color
@@ -20502,31 +20959,31 @@ snapshots:
'@babel/core': 7.24.5
'@babel/helper-module-imports': 7.25.9
'@babel/helper-validator-identifier': 7.25.9
- '@babel/traverse': 7.26.4
+ '@babel/traverse': 7.26.8
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.26.0(@babel/core@7.25.7)':
+ '@babel/helper-module-transforms@7.26.0(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
+ '@babel/core': 7.25.2
'@babel/helper-module-imports': 7.25.9
'@babel/helper-validator-identifier': 7.25.9
- '@babel/traverse': 7.26.4
+ '@babel/traverse': 7.26.8
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)':
+ '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
'@babel/helper-module-imports': 7.25.9
'@babel/helper-validator-identifier': 7.25.9
- '@babel/traverse': 7.26.4
+ '@babel/traverse': 7.26.8
transitivePeerDependencies:
- supports-color
'@babel/helper-optimise-call-expression@7.25.7':
dependencies:
- '@babel/types': 7.25.7
+ '@babel/types': 7.26.3
'@babel/helper-optimise-call-expression@7.25.9':
dependencies:
@@ -20536,39 +20993,23 @@ snapshots:
'@babel/helper-plugin-utils@7.25.9': {}
+ '@babel/helper-plugin-utils@7.26.5': {}
+
'@babel/helper-remap-async-to-generator@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
'@babel/helper-annotate-as-pure': 7.25.7
'@babel/helper-wrap-function': 7.25.7
- '@babel/traverse': 7.25.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-remap-async-to-generator@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-wrap-function': 7.25.7
- '@babel/traverse': 7.25.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-remap-async-to-generator@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-wrap-function': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/traverse': 7.26.4
transitivePeerDependencies:
- supports-color
- '@babel/helper-remap-async-to-generator@7.25.7(@babel/core@7.26.0)':
+ '@babel/helper-remap-async-to-generator@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
'@babel/helper-annotate-as-pure': 7.25.7
'@babel/helper-wrap-function': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/traverse': 7.26.4
transitivePeerDependencies:
- supports-color
@@ -20577,25 +21018,25 @@ snapshots:
'@babel/core': 7.24.5
'@babel/helper-annotate-as-pure': 7.25.9
'@babel/helper-wrap-function': 7.25.9
- '@babel/traverse': 7.26.4
+ '@babel/traverse': 7.26.8
transitivePeerDependencies:
- supports-color
- '@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.25.7)':
+ '@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
+ '@babel/core': 7.25.2
'@babel/helper-annotate-as-pure': 7.25.9
'@babel/helper-wrap-function': 7.25.9
- '@babel/traverse': 7.26.4
+ '@babel/traverse': 7.26.8
transitivePeerDependencies:
- supports-color
- '@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.26.0)':
+ '@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
'@babel/helper-annotate-as-pure': 7.25.9
'@babel/helper-wrap-function': 7.25.9
- '@babel/traverse': 7.26.4
+ '@babel/traverse': 7.26.8
transitivePeerDependencies:
- supports-color
@@ -20604,34 +21045,16 @@ snapshots:
'@babel/core': 7.24.5
'@babel/helper-member-expression-to-functions': 7.25.7
'@babel/helper-optimise-call-expression': 7.25.7
- '@babel/traverse': 7.25.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-replace-supers@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-member-expression-to-functions': 7.25.7
- '@babel/helper-optimise-call-expression': 7.25.7
- '@babel/traverse': 7.25.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-replace-supers@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-member-expression-to-functions': 7.25.7
- '@babel/helper-optimise-call-expression': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/traverse': 7.26.4
transitivePeerDependencies:
- supports-color
- '@babel/helper-replace-supers@7.25.7(@babel/core@7.26.0)':
+ '@babel/helper-replace-supers@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
'@babel/helper-member-expression-to-functions': 7.25.7
'@babel/helper-optimise-call-expression': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/traverse': 7.26.4
transitivePeerDependencies:
- supports-color
@@ -20644,18 +21067,18 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-replace-supers@7.25.9(@babel/core@7.25.7)':
+ '@babel/helper-replace-supers@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
+ '@babel/core': 7.25.2
'@babel/helper-member-expression-to-functions': 7.25.9
'@babel/helper-optimise-call-expression': 7.25.9
'@babel/traverse': 7.26.4
transitivePeerDependencies:
- supports-color
- '@babel/helper-replace-supers@7.25.9(@babel/core@7.26.0)':
+ '@babel/helper-replace-supers@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
'@babel/helper-member-expression-to-functions': 7.25.9
'@babel/helper-optimise-call-expression': 7.25.9
'@babel/traverse': 7.26.4
@@ -20664,15 +21087,15 @@ snapshots:
'@babel/helper-simple-access@7.25.7':
dependencies:
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.7
+ '@babel/traverse': 7.26.4
+ '@babel/types': 7.26.3
transitivePeerDependencies:
- supports-color
'@babel/helper-skip-transparent-expression-wrappers@7.25.7':
dependencies:
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.7
+ '@babel/traverse': 7.26.4
+ '@babel/types': 7.26.3
transitivePeerDependencies:
- supports-color
@@ -20685,7 +21108,7 @@ snapshots:
'@babel/helper-split-export-declaration@7.24.7':
dependencies:
- '@babel/types': 7.25.7
+ '@babel/types': 7.26.3
'@babel/helper-string-parser@7.25.7': {}
@@ -20701,33 +21124,38 @@ snapshots:
'@babel/helper-wrap-function@7.25.7':
dependencies:
- '@babel/template': 7.25.7
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.7
+ '@babel/template': 7.25.9
+ '@babel/traverse': 7.26.4
+ '@babel/types': 7.26.3
transitivePeerDependencies:
- supports-color
'@babel/helper-wrap-function@7.25.9':
dependencies:
'@babel/template': 7.25.9
- '@babel/traverse': 7.26.4
+ '@babel/traverse': 7.26.8
'@babel/types': 7.26.3
transitivePeerDependencies:
- supports-color
'@babel/helpers@7.25.7':
dependencies:
- '@babel/template': 7.25.7
- '@babel/types': 7.25.7
+ '@babel/template': 7.25.9
+ '@babel/types': 7.26.3
'@babel/helpers@7.26.0':
dependencies:
'@babel/template': 7.25.9
'@babel/types': 7.26.3
+ '@babel/helpers@7.26.7':
+ dependencies:
+ '@babel/template': 7.26.8
+ '@babel/types': 7.26.8
+
'@babel/highlight@7.25.7':
dependencies:
- '@babel/helper-validator-identifier': 7.25.7
+ '@babel/helper-validator-identifier': 7.25.9
chalk: 2.4.2
js-tokens: 4.0.0
picocolors: 1.1.0
@@ -20740,58 +21168,46 @@ snapshots:
dependencies:
'@babel/types': 7.26.3
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.7(@babel/core@7.24.5)':
- dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/traverse': 7.25.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.7(@babel/core@7.25.2)':
+ '@babel/parser@7.26.8':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/traverse': 7.25.7
- transitivePeerDependencies:
- - supports-color
+ '@babel/types': 7.26.8
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.7(@babel/core@7.24.5)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/traverse': 7.26.4
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/traverse': 7.26.4
transitivePeerDependencies:
- supports-color
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/traverse': 7.26.4
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/traverse': 7.26.4
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/traverse': 7.26.4
transitivePeerDependencies:
- supports-color
@@ -20799,188 +21215,134 @@ snapshots:
'@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
- '@babel/plugin-transform-optional-chaining': 7.25.7(@babel/core@7.24.5)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
- '@babel/plugin-transform-optional-chaining': 7.25.7(@babel/core@7.25.2)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/helper-skip-transparent-expression-wrappers': 7.25.7
- '@babel/plugin-transform-optional-chaining': 7.25.7(@babel/core@7.25.7)
+ '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.24.5)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/helper-skip-transparent-expression-wrappers': 7.25.7
- '@babel/plugin-transform-optional-chaining': 7.25.7(@babel/core@7.26.0)
+ '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.8)
transitivePeerDependencies:
- supports-color
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
'@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.24.5)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.25.7)
+ '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.25.2)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.8)
transitivePeerDependencies:
- supports-color
'@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/traverse': 7.25.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/traverse': 7.25.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/traverse': 7.26.4
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/traverse': 7.26.4
transitivePeerDependencies:
- supports-color
'@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/traverse': 7.26.4
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/traverse': 7.26.4
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/traverse': 7.26.4
transitivePeerDependencies:
- supports-color
@@ -20989,43 +21351,35 @@ snapshots:
dependencies:
'@babel/core': 7.24.5
'@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-remap-async-to-generator': 7.25.7(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.24.5)
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.5)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.26.0)':
+ '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
'@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-remap-async-to-generator': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.26.8)
transitivePeerDependencies:
- supports-color
'@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.25.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.26.0)':
+ '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.8)
+ '@babel/helper-plugin-utils': 7.25.9
transitivePeerDependencies:
- supports-color
@@ -21033,143 +21387,113 @@ snapshots:
dependencies:
'@babel/core': 7.24.5
'@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-decorators': 7.25.7(@babel/core@7.24.5)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-decorators@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-proposal-decorators@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-decorators': 7.25.7(@babel/core@7.26.0)
+ '@babel/core': 7.26.8
+ '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.26.8)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-decorators': 7.25.7(@babel/core@7.26.8)
transitivePeerDependencies:
- supports-color
'@babel/plugin-proposal-export-default-from@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-export-default-from': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-proposal-export-default-from@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-export-default-from': 7.25.7(@babel/core@7.25.7)
-
- '@babel/plugin-proposal-export-default-from@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-proposal-export-default-from@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-export-default-from': 7.25.7(@babel/core@7.26.0)
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-export-default-from': 7.25.7(@babel/core@7.26.8)
'@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.5)
- '@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.26.0)':
+ '@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.0)
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.8)
'@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.5)
- '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.25.7)':
+ '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.7)
-
- '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.0)
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.8)
'@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.5)
- '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.26.0)':
+ '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.26.0)
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.26.8)
'@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.24.5)':
dependencies:
- '@babel/compat-data': 7.25.7
+ '@babel/compat-data': 7.26.3
'@babel/core': 7.24.5
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.5)
- '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.24.5)
-
- '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/compat-data': 7.25.7
- '@babel/core': 7.25.7
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.7)
- '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.25.7)
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.26.0)':
+ '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.26.8)':
dependencies:
- '@babel/compat-data': 7.25.7
- '@babel/core': 7.26.0
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.0)
- '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.26.0)
+ '@babel/compat-data': 7.26.3
+ '@babel/core': 7.26.8
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.8)
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.8)
'@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.5)
- '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.26.0)':
+ '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.26.0)
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.26.8)
'@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.5)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.7)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.26.0)':
+ '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.0)
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.8)
transitivePeerDependencies:
- supports-color
@@ -21181,550 +21505,405 @@ snapshots:
dependencies:
'@babel/core': 7.25.2
- '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
-
- '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.0)':
+ '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
'@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.25.7)':
+ '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-decorators@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-decorators@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-decorators@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-export-default-from@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-export-default-from@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-export-default-from@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-export-default-from@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.25.7)':
+ '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-flow@7.25.7(@babel/core@7.24.5)':
+ '@babel/plugin-syntax-flow@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-flow@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-flow@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-flow@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-import-assertions@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-import-assertions@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-import-assertions@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-import-assertions@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-import-assertions@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.25.7)':
+ '@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-import-attributes@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-import-attributes@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-import-attributes@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-import-attributes@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-import-attributes@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.25.7)':
+ '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-jsx@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-jsx@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-jsx@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-jsx@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.9
-
- '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-typescript@7.25.7(@babel/core@7.24.5)':
- dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-typescript@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-typescript@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.25.7)':
+ '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.8)
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/plugin-transform-arrow-functions@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-arrow-functions@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-arrow-functions@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-arrow-functions@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-arrow-functions@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/plugin-transform-async-generator-functions@7.25.0(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-remap-async-to-generator': 7.25.7(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.25.2)
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.2)
- '@babel/traverse': 7.25.7
+ '@babel/traverse': 7.26.4
transitivePeerDependencies:
- supports-color
@@ -21738,50 +21917,40 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-async-generator-functions@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-remap-async-to-generator': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.7)
- '@babel/traverse': 7.25.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-async-generator-functions@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-async-generator-functions@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-remap-async-to-generator': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.26.0)
+ '@babel/helper-remap-async-to-generator': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.26.8)
'@babel/traverse': 7.25.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-async-generator-functions@7.25.9(@babel/core@7.24.5)':
+ '@babel/plugin-transform-async-generator-functions@7.26.8(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.24.5)
- '@babel/traverse': 7.26.4
+ '@babel/traverse': 7.26.8
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-async-generator-functions@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-transform-async-generator-functions@7.26.8(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.9
- '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.25.7)
- '@babel/traverse': 7.26.4
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.25.2)
+ '@babel/traverse': 7.26.8
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-async-generator-functions@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-async-generator-functions@7.26.8(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.9
- '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0)
- '@babel/traverse': 7.26.4
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.8)
+ '@babel/traverse': 7.26.8
transitivePeerDependencies:
- supports-color
@@ -21789,8 +21958,8 @@ snapshots:
dependencies:
'@babel/core': 7.25.2
'@babel/helper-module-imports': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-remap-async-to-generator': 7.25.7(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.25.2)
transitivePeerDependencies:
- supports-color
@@ -21798,26 +21967,17 @@ snapshots:
dependencies:
'@babel/core': 7.24.5
'@babel/helper-module-imports': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-remap-async-to-generator': 7.25.7(@babel/core@7.24.5)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-async-to-generator@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-module-imports': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-remap-async-to-generator': 7.25.7(@babel/core@7.25.7)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.24.5)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-async-to-generator@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-async-to-generator@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
'@babel/helper-module-imports': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-remap-async-to-generator': 7.25.7(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.8)
transitivePeerDependencies:
- supports-color
@@ -21825,128 +21985,97 @@ snapshots:
dependencies:
'@babel/core': 7.24.5
'@babel/helper-module-imports': 7.25.9
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.24.5)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
+ '@babel/core': 7.25.2
'@babel/helper-module-imports': 7.25.9
- '@babel/helper-plugin-utils': 7.25.9
- '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.25.7)
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.25.2)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
'@babel/helper-module-imports': 7.25.9
- '@babel/helper-plugin-utils': 7.25.9
- '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.8)
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-block-scoped-functions@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-block-scoped-functions@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-block-scoped-functions@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-block-scoped-functions@7.25.7(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-block-scoped-functions@7.25.9(@babel/core@7.24.5)':
+ '@babel/plugin-transform-block-scoped-functions@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.24.5
+ '@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-block-scoped-functions@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-transform-block-scoped-functions@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-block-scoped-functions@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-block-scoped-functions@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-block-scoping@7.25.7(@babel/core@7.24.5)':
+ '@babel/plugin-transform-block-scoped-functions@7.26.5(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-block-scoping@7.25.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-block-scoped-functions@7.26.5(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-block-scoping@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-block-scoping@7.25.7(@babel/core@7.24.5)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-block-scoping@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-block-scoping@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/plugin-transform-class-properties@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
'@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.25.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-class-properties@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.25.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-class-properties@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-class-properties@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-class-properties@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.26.8)
+ '@babel/helper-plugin-utils': 7.25.9
transitivePeerDependencies:
- supports-color
@@ -21954,23 +22083,23 @@ snapshots:
dependencies:
'@babel/core': 7.24.5
'@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.25.2
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.26.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.26.8
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.8)
+ '@babel/helper-plugin-utils': 7.26.5
transitivePeerDependencies:
- supports-color
@@ -21978,35 +22107,17 @@ snapshots:
dependencies:
'@babel/core': 7.24.5
'@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.5)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-class-static-block@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.25.2)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-class-static-block@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.25.7)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-class-static-block@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-class-static-block@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.26.0)
+ '@babel/core': 7.26.8
+ '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.26.8)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.26.8)
transitivePeerDependencies:
- supports-color
@@ -22014,23 +22125,23 @@ snapshots:
dependencies:
'@babel/core': 7.24.5
'@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.25.7)':
+ '@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.25.2
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.26.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.26.0)':
+ '@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.26.8
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.8)
+ '@babel/helper-plugin-utils': 7.26.5
transitivePeerDependencies:
- supports-color
@@ -22038,46 +22149,22 @@ snapshots:
dependencies:
'@babel/core': 7.24.5
'@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/helper-replace-supers': 7.25.7(@babel/core@7.24.5)
- '@babel/traverse': 7.25.7
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-classes@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-replace-supers': 7.25.7(@babel/core@7.25.2)
- '@babel/traverse': 7.25.7
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-classes@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-replace-supers': 7.25.7(@babel/core@7.25.7)
- '@babel/traverse': 7.25.7
+ '@babel/traverse': 7.26.4
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-classes@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-classes@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
'@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-replace-supers': 7.25.7(@babel/core@7.26.0)
- '@babel/traverse': 7.25.7
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-replace-supers': 7.25.7(@babel/core@7.26.8)
+ '@babel/traverse': 7.26.4
globals: 11.12.0
transitivePeerDependencies:
- supports-color
@@ -22086,33 +22173,33 @@ snapshots:
dependencies:
'@babel/core': 7.24.5
'@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-compilation-targets': 7.25.9
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-compilation-targets': 7.26.5
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/helper-replace-supers': 7.25.9(@babel/core@7.24.5)
'@babel/traverse': 7.26.4
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-classes@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-transform-classes@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
+ '@babel/core': 7.25.2
'@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/core@7.25.7)
+ '@babel/helper-compilation-targets': 7.26.5
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.25.2)
'@babel/traverse': 7.26.4
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-classes@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-classes@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
'@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/core@7.26.0)
+ '@babel/helper-compilation-targets': 7.26.5
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.8)
'@babel/traverse': 7.26.4
globals: 11.12.0
transitivePeerDependencies:
@@ -22121,370 +22208,252 @@ snapshots:
'@babel/plugin-transform-computed-properties@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/template': 7.25.7
-
- '@babel/plugin-transform-computed-properties@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/template': 7.25.7
-
- '@babel/plugin-transform-computed-properties@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/template': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/template': 7.25.9
- '@babel/plugin-transform-computed-properties@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-computed-properties@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/template': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/template': 7.25.9
'@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/template': 7.25.9
- '@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/template': 7.25.9
- '@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/template': 7.25.9
'@babel/plugin-transform-destructuring@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-destructuring@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-destructuring@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-destructuring@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-destructuring@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/plugin-transform-dotall-regex@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
'@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-dotall-regex@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-dotall-regex@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-dotall-regex@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-dotall-regex@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.26.8)
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
'@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.26.8
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.8)
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/plugin-transform-duplicate-keys@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-duplicate-keys@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-duplicate-keys@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-duplicate-keys@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-duplicate-keys@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
'@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.26.8)
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
'@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.26.8
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.8)
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/plugin-transform-dynamic-import@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.5)
- '@babel/plugin-transform-dynamic-import@7.25.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-dynamic-import@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.2)
-
- '@babel/plugin-transform-dynamic-import@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.7)
-
- '@babel/plugin-transform-dynamic-import@7.25.7(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.0)
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.8)
'@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/plugin-transform-exponentiation-operator@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
'@babel/helper-builder-binary-assignment-operator-visitor': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-exponentiation-operator@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-exponentiation-operator@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-exponentiation-operator@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-exponentiation-operator@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
'@babel/helper-builder-binary-assignment-operator-visitor': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-exponentiation-operator@7.26.3(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-exponentiation-operator@7.26.3(@babel/core@7.25.7)':
+ '@babel/plugin-transform-exponentiation-operator@7.26.3(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-exponentiation-operator@7.26.3(@babel/core@7.26.0)':
+ '@babel/plugin-transform-exponentiation-operator@7.26.3(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/plugin-transform-export-namespace-from@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.5)
- '@babel/plugin-transform-export-namespace-from@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.25.2)
-
- '@babel/plugin-transform-export-namespace-from@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.25.7)
-
- '@babel/plugin-transform-export-namespace-from@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-export-namespace-from@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.26.0)
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.26.8)
'@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/plugin-transform-flow-strip-types@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-flow-strip-types@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.25.7)
-
- '@babel/plugin-transform-flow-strip-types@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-flow-strip-types@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.26.0)
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.26.8)
'@babel/plugin-transform-for-of@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-for-of@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-for-of@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/helper-skip-transparent-expression-wrappers': 7.25.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-for-of@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-for-of@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/helper-skip-transparent-expression-wrappers': 7.25.7
transitivePeerDependencies:
- supports-color
@@ -22492,23 +22461,23 @@ snapshots:
'@babel/plugin-transform-for-of@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-for-of@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-transform-for-of@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-for-of@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-for-of@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
transitivePeerDependencies:
- supports-color
@@ -22516,247 +22485,153 @@ snapshots:
'@babel/plugin-transform-function-name@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/traverse': 7.25.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-function-name@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/traverse': 7.25.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-function-name@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/traverse': 7.26.4
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-function-name@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-function-name@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/traverse': 7.26.4
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-function-name@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-compilation-targets': 7.25.9
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-compilation-targets': 7.26.5
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/traverse': 7.26.4
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-function-name@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-transform-function-name@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-compilation-targets': 7.25.9
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.25.2
+ '@babel/helper-compilation-targets': 7.26.5
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/traverse': 7.26.4
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-compilation-targets': 7.25.9
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.26.8
+ '@babel/helper-compilation-targets': 7.26.5
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/traverse': 7.26.4
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-json-strings@7.25.7(@babel/core@7.24.5)':
- dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.5)
-
- '@babel/plugin-transform-json-strings@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.2)
-
- '@babel/plugin-transform-json-strings@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.7)
-
- '@babel/plugin-transform-json-strings@7.25.7(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.26.0)
-
- '@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.5)
- '@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.9
-
- '@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-json-strings@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.26.8)
- '@babel/plugin-transform-literals@7.25.7(@babel/core@7.24.5)':
+ '@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-literals@7.25.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-literals@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-literals@7.25.7(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-literals@7.25.9(@babel/core@7.24.5)':
+ '@babel/plugin-transform-literals@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-literals@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-transform-literals@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.25.7
+ '@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.9
-
- '@babel/plugin-transform-logical-assignment-operators@7.25.7(@babel/core@7.24.5)':
+ '@babel/plugin-transform-literals@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-logical-assignment-operators@7.25.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-literals@7.25.9(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.2)
-
- '@babel/plugin-transform-logical-assignment-operators@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.7)
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-logical-assignment-operators@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.0)
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.24.5)':
+ '@babel/plugin-transform-logical-assignment-operators@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.5)
- '@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.9
-
- '@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-logical-assignment-operators@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.8)
- '@babel/plugin-transform-member-expression-literals@7.25.7(@babel/core@7.24.5)':
+ '@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-member-expression-literals@7.25.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-member-expression-literals@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-member-expression-literals@7.25.7(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.24.5)':
+ '@babel/plugin-transform-member-expression-literals@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-transform-member-expression-literals@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.9
-
- '@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-modules-amd@7.25.7(@babel/core@7.24.5)':
+ '@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-module-transforms': 7.25.7(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.25.7
- transitivePeerDependencies:
- - supports-color
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-modules-amd@7.25.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.25.7
- transitivePeerDependencies:
- - supports-color
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-modules-amd@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.7
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-modules-amd@7.25.7(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-module-transforms': 7.25.7(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.25.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.24.5)':
+ '@babel/plugin-transform-modules-amd@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
'@babel/helper-module-transforms': 7.26.0(@babel/core@7.24.5)
@@ -22764,54 +22639,52 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-transform-modules-amd@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.25.7)
+ '@babel/core': 7.26.8
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.8)
'@babel/helper-plugin-utils': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.24.5)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.24.5
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.26.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-commonjs@7.25.7(@babel/core@7.24.5)':
+ '@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-module-transforms': 7.25.7(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-simple-access': 7.25.7
+ '@babel/core': 7.25.2
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.26.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-commonjs@7.25.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-simple-access': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.8)
+ '@babel/helper-plugin-utils': 7.26.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-commonjs@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-modules-commonjs@7.25.7(@babel/core@7.24.5)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.24.5
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/helper-simple-access': 7.25.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-commonjs@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-modules-commonjs@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-module-transforms': 7.25.7(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.8)
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/helper-simple-access': 7.25.7
transitivePeerDependencies:
- supports-color
@@ -22820,63 +22693,43 @@ snapshots:
dependencies:
'@babel/core': 7.24.5
'@babel/helper-module-transforms': 7.26.0(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-commonjs@7.26.3(@babel/core@7.25.7)':
+ '@babel/plugin-transform-modules-commonjs@7.26.3(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.25.2
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.26.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-commonjs@7.26.3(@babel/core@7.26.0)':
+ '@babel/plugin-transform-modules-commonjs@7.26.3(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.26.8
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.8)
+ '@babel/helper-plugin-utils': 7.26.5
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-modules-systemjs@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-module-transforms': 7.25.7(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-validator-identifier': 7.25.7
- '@babel/traverse': 7.25.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-modules-systemjs@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-validator-identifier': 7.25.7
- '@babel/traverse': 7.25.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-modules-systemjs@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/helper-validator-identifier': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/traverse': 7.26.4
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-systemjs@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-modules-systemjs@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-module-transforms': 7.25.7(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.8)
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/helper-validator-identifier': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/traverse': 7.26.4
transitivePeerDependencies:
- supports-color
@@ -22884,27 +22737,27 @@ snapshots:
dependencies:
'@babel/core': 7.24.5
'@babel/helper-module-transforms': 7.26.0(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/helper-validator-identifier': 7.25.9
'@babel/traverse': 7.26.4
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.25.2
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/helper-validator-identifier': 7.25.9
'@babel/traverse': 7.26.4
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.26.8
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.8)
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/helper-validator-identifier': 7.25.9
'@babel/traverse': 7.26.4
transitivePeerDependencies:
@@ -22913,32 +22766,16 @@ snapshots:
'@babel/plugin-transform-modules-umd@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-module-transforms': 7.25.7(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.25.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-modules-umd@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.25.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-modules-umd@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-umd@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-modules-umd@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-module-transforms': 7.25.7(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.8)
+ '@babel/helper-plugin-utils': 7.25.9
transitivePeerDependencies:
- supports-color
@@ -22946,23 +22783,23 @@ snapshots:
dependencies:
'@babel/core': 7.24.5
'@babel/helper-module-transforms': 7.26.0(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-umd@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-transform-modules-umd@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.25.2
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.26.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-umd@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-modules-umd@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.26.8
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.8)
+ '@babel/helper-plugin-utils': 7.26.5
transitivePeerDependencies:
- supports-color
@@ -22970,361 +22807,258 @@ snapshots:
dependencies:
'@babel/core': 7.24.5
'@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-named-capturing-groups-regex@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-named-capturing-groups-regex@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-named-capturing-groups-regex@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-named-capturing-groups-regex@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.26.8)
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
'@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.26.8
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.8)
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/plugin-transform-new-target@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-new-target@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-new-target@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-new-target@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-new-target@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-transform-new-target@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-new-target@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-transform-new-target@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-new-target@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-new-target@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/plugin-transform-nullish-coalescing-operator@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.5)
- '@babel/plugin-transform-nullish-coalescing-operator@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.2)
-
- '@babel/plugin-transform-nullish-coalescing-operator@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.7)
-
- '@babel/plugin-transform-nullish-coalescing-operator@7.25.7(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.0)
-
- '@babel/plugin-transform-nullish-coalescing-operator@7.25.9(@babel/core@7.24.5)':
+ '@babel/plugin-transform-nullish-coalescing-operator@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.24.5
+ '@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.8)
- '@babel/plugin-transform-nullish-coalescing-operator@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-transform-nullish-coalescing-operator@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-nullish-coalescing-operator@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-nullish-coalescing-operator@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-numeric-separator@7.25.7(@babel/core@7.24.5)':
+ '@babel/plugin-transform-nullish-coalescing-operator@7.26.6(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-numeric-separator@7.25.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-nullish-coalescing-operator@7.26.6(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.2)
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-numeric-separator@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.7)
-
- '@babel/plugin-transform-numeric-separator@7.25.7(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.26.0)
-
- '@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.24.5)':
+ '@babel/plugin-transform-numeric-separator@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.5)
- '@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.9
-
- '@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-numeric-separator@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.26.8)
- '@babel/plugin-transform-object-rest-spread@7.25.7(@babel/core@7.24.5)':
- dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.5)
- '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.24.5)
-
- '@babel/plugin-transform-object-rest-spread@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-object-rest-spread@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.7)
- '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.25.7)
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-object-rest-spread@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.0)
- '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.26.0)
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.24.5)':
+ '@babel/plugin-transform-object-rest-spread@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
'@babel/helper-compilation-targets': 7.25.9
'@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.5)
'@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-compilation-targets': 7.25.9
- '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.25.7)
-
- '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-object-rest-spread@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
'@babel/helper-compilation-targets': 7.25.9
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.8)
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.8)
- '@babel/plugin-transform-object-super@7.25.7(@babel/core@7.24.5)':
+ '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-replace-supers': 7.25.7(@babel/core@7.24.5)
- transitivePeerDependencies:
- - supports-color
+ '@babel/helper-compilation-targets': 7.26.5
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-object-super@7.25.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-replace-supers': 7.25.7(@babel/core@7.25.2)
- transitivePeerDependencies:
- - supports-color
+ '@babel/helper-compilation-targets': 7.26.5
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.25.2)
- '@babel/plugin-transform-object-super@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-replace-supers': 7.25.7(@babel/core@7.25.7)
+ '@babel/core': 7.26.8
+ '@babel/helper-compilation-targets': 7.26.5
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.8)
+
+ '@babel/plugin-transform-object-super@7.25.7(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-replace-supers': 7.25.7(@babel/core@7.24.5)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-object-super@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-object-super@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-replace-supers': 7.25.7(@babel/core@7.26.0)
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-replace-supers': 7.25.7(@babel/core@7.26.8)
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-object-super@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/helper-replace-supers': 7.25.9(@babel/core@7.24.5)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-object-super@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-transform-object-super@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.9
- '@babel/helper-replace-supers': 7.25.9(@babel/core@7.25.7)
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.25.2)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-object-super@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-object-super@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.9
- '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0)
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.8)
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-optional-catch-binding@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.5)
- '@babel/plugin-transform-optional-catch-binding@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.2)
-
- '@babel/plugin-transform-optional-catch-binding@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.7)
-
- '@babel/plugin-transform-optional-catch-binding@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-optional-catch-binding@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.26.0)
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.26.8)
'@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/plugin-transform-optional-chaining@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/helper-skip-transparent-expression-wrappers': 7.25.7
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.5)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-optional-chaining@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.2)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-optional-chaining@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.7)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-optional-chaining@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-optional-chaining@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/helper-skip-transparent-expression-wrappers': 7.25.7
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.8)
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
transitivePeerDependencies:
- supports-color
@@ -23332,67 +23066,41 @@ snapshots:
'@babel/plugin-transform-parameters@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-parameters@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-parameters@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-parameters@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-parameters@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-transform-parameters@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-parameters@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-transform-parameters@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/plugin-transform-private-methods@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
'@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.25.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-private-methods@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.25.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-private-methods@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-private-methods@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-private-methods@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.26.8)
+ '@babel/helper-plugin-utils': 7.25.9
transitivePeerDependencies:
- supports-color
@@ -23400,23 +23108,23 @@ snapshots:
dependencies:
'@babel/core': 7.24.5
'@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.25.2
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.26.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.26.8
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.8)
+ '@babel/helper-plugin-utils': 7.26.5
transitivePeerDependencies:
- supports-color
@@ -23425,38 +23133,18 @@ snapshots:
'@babel/core': 7.24.5
'@babel/helper-annotate-as-pure': 7.25.7
'@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.5)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-private-property-in-object@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.2)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-private-property-in-object@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.7)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-private-property-in-object@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-private-property-in-object@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
'@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.26.0)
+ '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.26.8)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.26.8)
transitivePeerDependencies:
- supports-color
@@ -23465,130 +23153,86 @@ snapshots:
'@babel/core': 7.24.5
'@babel/helper-annotate-as-pure': 7.25.9
'@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
+ '@babel/core': 7.25.2
'@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.26.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
'@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.8)
+ '@babel/helper-plugin-utils': 7.26.5
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-property-literals@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-property-literals@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-property-literals@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-property-literals@7.25.7(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.24.5)':
- dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.9
-
- '@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-property-literals@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-react-constant-elements@7.25.7(@babel/core@7.24.5)':
+ '@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-react-display-name@7.25.7(@babel/core@7.24.5)':
+ '@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-react-display-name@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-react-display-name@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-react-constant-elements@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-transform-react-display-name@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-react-display-name@7.25.9(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.9
-
- '@babel/plugin-transform-react-display-name@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-react-display-name@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-transform-react-jsx-development@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/plugin-transform-react-jsx': 7.25.7(@babel/core@7.24.5)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-react-jsx-development@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/plugin-transform-react-jsx': 7.25.7(@babel/core@7.25.7)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-react-jsx-development@7.25.7(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/plugin-transform-react-jsx': 7.25.7(@babel/core@7.26.0)
+ '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.24.5)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-react-jsx-development@7.25.9(@babel/core@7.24.5)':
+ '@babel/plugin-transform-react-jsx-development@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.24.5)
+ '@babel/core': 7.26.8
+ '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.8)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-react-jsx-development@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-react-jsx-development@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.0)
+ '@babel/core': 7.26.8
+ '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.8)
transitivePeerDependencies:
- supports-color
@@ -23602,9 +23246,9 @@ snapshots:
'@babel/core': 7.25.7
'@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-react-jsx-self@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-react-jsx-self@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-react-jsx-source@7.25.7(@babel/core@7.24.5)':
@@ -23617,43 +23261,10 @@ snapshots:
'@babel/core': 7.25.7
'@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-react-jsx-source@7.25.7(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-react-jsx@7.25.7(@babel/core@7.24.5)':
- dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-module-imports': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.24.5)
- '@babel/types': 7.25.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-react-jsx@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-module-imports': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.25.7)
- '@babel/types': 7.25.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-react-jsx@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-react-jsx-source@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-module-imports': 7.25.7
+ '@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.26.0)
- '@babel/types': 7.25.7
- transitivePeerDependencies:
- - supports-color
'@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.24.5)':
dependencies:
@@ -23666,24 +23277,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@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/core@7.25.7)
- '@babel/types': 7.26.3
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
'@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/core@7.26.0)
+ '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.8)
'@babel/types': 7.26.3
transitivePeerDependencies:
- supports-color
@@ -23691,133 +23291,93 @@ snapshots:
'@babel/plugin-transform-react-pure-annotations@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-react-pure-annotations@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-react-pure-annotations@7.25.7(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-react-pure-annotations@7.25.9(@babel/core@7.24.5)':
+ '@babel/plugin-transform-react-pure-annotations@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.24.5
+ '@babel/core': 7.26.8
'@babel/helper-annotate-as-pure': 7.25.9
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-react-pure-annotations@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-react-pure-annotations@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
'@babel/helper-annotate-as-pure': 7.25.9
'@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-transform-regenerator@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
- regenerator-transform: 0.15.2
-
- '@babel/plugin-transform-regenerator@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
- regenerator-transform: 0.15.2
-
- '@babel/plugin-transform-regenerator@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
regenerator-transform: 0.15.2
- '@babel/plugin-transform-regenerator@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-regenerator@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
regenerator-transform: 0.15.2
'@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
regenerator-transform: 0.15.2
- '@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.26.5
regenerator-transform: 0.15.2
- '@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.26.5
regenerator-transform: 0.15.2
'@babel/plugin-transform-regexp-modifiers@7.26.0(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
'@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.25.9
-
- '@babel/plugin-transform-regexp-modifiers@7.26.0(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-regexp-modifiers@7.26.0(@babel/core@7.26.0)':
+ '@babel/plugin-transform-regexp-modifiers@7.26.0(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.26.8
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.8)
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/plugin-transform-reserved-words@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-reserved-words@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-reserved-words@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-reserved-words@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-reserved-words@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/plugin-transform-runtime@7.24.7(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-module-imports': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.25.2)
babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.25.2)
babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.25.2)
@@ -23825,30 +23385,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-runtime@7.25.7(@babel/core@7.24.5)':
- dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-module-imports': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.5)
- babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.24.5)
- babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.5)
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-runtime@7.25.7(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-module-imports': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.26.0)
- babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.0)
- babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.26.0)
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-runtime@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
@@ -23861,26 +23397,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-runtime@7.25.9(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-module-imports': 7.25.9
- '@babel/helper-plugin-utils': 7.25.9
- babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.25.7)
- babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.25.7)
- babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.25.7)
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-runtime@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-runtime@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
'@babel/helper-module-imports': 7.25.9
'@babel/helper-plugin-utils': 7.25.9
- babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.26.0)
- babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.0)
- babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.26.0)
+ babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.26.8)
+ babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.8)
+ babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.26.8)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -23888,66 +23412,40 @@ snapshots:
'@babel/plugin-transform-shorthand-properties@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-shorthand-properties@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-shorthand-properties@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-shorthand-properties@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-shorthand-properties@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/plugin-transform-spread@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-spread@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-spread@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/helper-skip-transparent-expression-wrappers': 7.25.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-spread@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-spread@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/helper-skip-transparent-expression-wrappers': 7.25.7
transitivePeerDependencies:
- supports-color
@@ -23955,23 +23453,23 @@ snapshots:
'@babel/plugin-transform-spread@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-spread@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-transform-spread@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
transitivePeerDependencies:
- supports-color
@@ -23979,145 +23477,87 @@ snapshots:
'@babel/plugin-transform-sticky-regex@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-sticky-regex@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-sticky-regex@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-sticky-regex@7.25.7(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.24.5)':
- dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.9
-
- '@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-sticky-regex@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-strict-mode@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-template-literals@7.25.7(@babel/core@7.24.5)':
+ '@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-template-literals@7.25.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-template-literals@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-template-literals@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-strict-mode@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-template-literals@7.25.9(@babel/core@7.24.5)':
+ '@babel/plugin-transform-template-literals@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-template-literals@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-transform-template-literals@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.25.7
+ '@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-template-literals@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-template-literals@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-typeof-symbol@7.25.7(@babel/core@7.24.5)':
- dependencies:
- '@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-typeof-symbol@7.25.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-template-literals@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-typeof-symbol@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-template-literals@7.26.8(@babel/core@7.24.5)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-typeof-symbol@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-template-literals@7.26.8(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-typeof-symbol@7.25.9(@babel/core@7.24.5)':
+ '@babel/plugin-transform-typeof-symbol@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-typeof-symbol@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-transform-typeof-symbol@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.25.7
+ '@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-typeof-symbol@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-typeof-symbol@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-typescript@7.25.7(@babel/core@7.24.5)':
+ '@babel/plugin-transform-typeof-symbol@7.26.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
- '@babel/plugin-syntax-typescript': 7.25.7(@babel/core@7.24.5)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-typescript@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
- '@babel/plugin-syntax-typescript': 7.25.7(@babel/core@7.25.7)
- transitivePeerDependencies:
- - supports-color
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-typescript@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-typeof-symbol@7.26.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
- '@babel/plugin-syntax-typescript': 7.25.7(@babel/core@7.26.0)
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/plugin-transform-typescript@7.26.3(@babel/core@7.24.5)':
dependencies:
@@ -24130,198 +23570,152 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-typescript@7.26.3(@babel/core@7.26.0)':
+ '@babel/plugin-transform-typescript@7.26.3(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
'@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.8)
'@babel/helper-plugin-utils': 7.25.9
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.8)
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-unicode-escapes@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-unicode-escapes@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-unicode-escapes@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-unicode-escapes@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-unicode-escapes@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/plugin-transform-unicode-property-regex@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
'@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-unicode-property-regex@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-unicode-property-regex@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-unicode-property-regex@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-unicode-property-regex@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.26.8)
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
'@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.26.8
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.8)
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/plugin-transform-unicode-regex@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
'@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-unicode-regex@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-unicode-regex@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-unicode-regex@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-unicode-regex@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.26.8)
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
'@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.26.8
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.8)
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/plugin-transform-unicode-sets-regex@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
'@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-unicode-sets-regex@7.25.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-unicode-sets-regex@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-unicode-sets-regex@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-unicode-sets-regex@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.26.8)
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
'@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.25.7)':
+ '@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.25.7)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.26.8
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.8)
+ '@babel/helper-plugin-utils': 7.26.5
'@babel/preset-env@7.25.3(@babel/core@7.25.2)':
dependencies:
- '@babel/compat-data': 7.25.7
+ '@babel/compat-data': 7.26.3
'@babel/core': 7.25.2
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-validator-option': 7.25.7
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.7(@babel/core@7.25.2)
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-validator-option': 7.25.9
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.9(@babel/core@7.25.2)
'@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.2)
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.2)
'@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.25.2)
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.25.2)
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.2)
'@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-import-assertions': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-syntax-import-attributes': 7.25.7(@babel/core@7.25.2)
+ '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.25.2)
+ '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.25.2)
'@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.25.2)
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.2)
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.2)
@@ -24333,55 +23727,55 @@ snapshots:
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.2)
'@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.25.2)
'@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.25.2)
- '@babel/plugin-transform-arrow-functions': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-async-generator-functions': 7.25.0(@babel/core@7.25.2)
- '@babel/plugin-transform-async-to-generator': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-block-scoped-functions': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-block-scoping': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-class-properties': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-class-static-block': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-classes': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-computed-properties': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-destructuring': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-dotall-regex': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-duplicate-keys': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-dynamic-import': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-exponentiation-operator': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-export-namespace-from': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-for-of': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-function-name': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-json-strings': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-literals': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-logical-assignment-operators': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-member-expression-literals': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-modules-amd': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-modules-systemjs': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-modules-umd': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-new-target': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-numeric-separator': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-object-rest-spread': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-object-super': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-optional-catch-binding': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-optional-chaining': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-private-methods': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-private-property-in-object': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-property-literals': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-regenerator': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-reserved-words': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-shorthand-properties': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-spread': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-sticky-regex': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-template-literals': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-typeof-symbol': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-unicode-escapes': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-unicode-property-regex': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-unicode-regex': 7.25.7(@babel/core@7.25.2)
- '@babel/plugin-transform-unicode-sets-regex': 7.25.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-async-generator-functions': 7.26.8(@babel/core@7.25.2)
+ '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-block-scoped-functions': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-class-static-block': 7.26.0(@babel/core@7.25.2)
+ '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-dotall-regex': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-duplicate-keys': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-dynamic-import': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-exponentiation-operator': 7.26.3(@babel/core@7.25.2)
+ '@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-for-of': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-json-strings': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-modules-amd': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.25.2)
+ '@babel/plugin-transform-modules-systemjs': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-modules-umd': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-new-target': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-optional-catch-binding': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-regenerator': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-reserved-words': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-template-literals': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-typeof-symbol': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-unicode-escapes': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-unicode-property-regex': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-unicode-sets-regex': 7.25.9(@babel/core@7.25.2)
'@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.25.2)
babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.25.2)
babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.25.2)
@@ -24423,7 +23817,7 @@ snapshots:
'@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.5)
'@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.5)
'@babel/plugin-transform-arrow-functions': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-async-generator-functions': 7.25.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-async-generator-functions': 7.26.8(@babel/core@7.24.5)
'@babel/plugin-transform-async-to-generator': 7.25.7(@babel/core@7.24.5)
'@babel/plugin-transform-block-scoped-functions': 7.25.7(@babel/core@7.24.5)
'@babel/plugin-transform-block-scoping': 7.25.7(@babel/core@7.24.5)
@@ -24480,190 +23874,101 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/preset-env@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/compat-data': 7.25.7
- '@babel/core': 7.25.7
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-validator-option': 7.25.7
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.7)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.7)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.25.7)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.25.7)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.7)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.25.7)
- '@babel/plugin-syntax-import-assertions': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-syntax-import-attributes': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.25.7)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.7)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.7)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.7)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.7)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.7)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.7)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.7)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.7)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.25.7)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.25.7)
- '@babel/plugin-transform-arrow-functions': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-async-generator-functions': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-async-to-generator': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-block-scoped-functions': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-block-scoping': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-class-properties': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-class-static-block': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-classes': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-computed-properties': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-destructuring': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-dotall-regex': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-duplicate-keys': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-dynamic-import': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-exponentiation-operator': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-export-namespace-from': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-for-of': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-function-name': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-json-strings': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-literals': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-logical-assignment-operators': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-member-expression-literals': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-modules-amd': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-modules-systemjs': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-modules-umd': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-new-target': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-numeric-separator': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-object-rest-spread': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-object-super': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-optional-catch-binding': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-optional-chaining': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-private-methods': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-private-property-in-object': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-property-literals': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-regenerator': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-reserved-words': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-shorthand-properties': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-spread': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-sticky-regex': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-template-literals': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-typeof-symbol': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-unicode-escapes': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-unicode-property-regex': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-unicode-regex': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-unicode-sets-regex': 7.25.7(@babel/core@7.25.7)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.25.7)
- babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.25.7)
- babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.25.7)
- babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.25.7)
- core-js-compat: 3.38.1
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
- '@babel/preset-env@7.25.7(@babel/core@7.26.0)':
+ '@babel/preset-env@7.25.7(@babel/core@7.26.8)':
dependencies:
'@babel/compat-data': 7.25.7
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
'@babel/helper-compilation-targets': 7.25.7
'@babel/helper-plugin-utils': 7.25.7
'@babel/helper-validator-option': 7.25.7
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.0)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.26.0)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.26.0)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.26.0)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.0)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.26.0)
- '@babel/plugin-syntax-import-assertions': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-syntax-import-attributes': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.0)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.26.0)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.0)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.0)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.26.0)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.0)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.26.0)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.0)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.26.0)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.26.0)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.26.0)
- '@babel/plugin-transform-arrow-functions': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-async-generator-functions': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-async-to-generator': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-block-scoped-functions': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-block-scoping': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-class-properties': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-class-static-block': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-classes': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-computed-properties': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-destructuring': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-dotall-regex': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-duplicate-keys': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-dynamic-import': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-exponentiation-operator': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-export-namespace-from': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-for-of': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-function-name': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-json-strings': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-literals': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-logical-assignment-operators': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-member-expression-literals': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-modules-amd': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-modules-systemjs': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-modules-umd': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-new-target': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-numeric-separator': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-object-rest-spread': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-object-super': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-optional-catch-binding': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-optional-chaining': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-private-methods': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-private-property-in-object': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-property-literals': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-regenerator': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-reserved-words': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-shorthand-properties': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-spread': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-sticky-regex': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-template-literals': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-typeof-symbol': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-unicode-escapes': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-unicode-property-regex': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-unicode-regex': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-unicode-sets-regex': 7.25.7(@babel/core@7.26.0)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.0)
- babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.26.0)
- babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.0)
- babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.26.0)
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.8)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.26.8)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.26.8)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.26.8)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.8)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.26.8)
+ '@babel/plugin-syntax-import-assertions': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-syntax-import-attributes': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.8)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.26.8)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.8)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.8)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.26.8)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.8)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.26.8)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.8)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.26.8)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.26.8)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.26.8)
+ '@babel/plugin-transform-arrow-functions': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-async-generator-functions': 7.26.8(@babel/core@7.26.8)
+ '@babel/plugin-transform-async-to-generator': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-block-scoped-functions': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-block-scoping': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-class-properties': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-class-static-block': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-classes': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-computed-properties': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-destructuring': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-dotall-regex': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-duplicate-keys': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-dynamic-import': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-exponentiation-operator': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-export-namespace-from': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-for-of': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-function-name': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-json-strings': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-literals': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-logical-assignment-operators': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-member-expression-literals': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-modules-amd': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-modules-systemjs': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-modules-umd': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-new-target': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-numeric-separator': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-object-rest-spread': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-object-super': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-optional-catch-binding': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-optional-chaining': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-private-methods': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-private-property-in-object': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-property-literals': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-regenerator': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-reserved-words': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-shorthand-properties': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-spread': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-sticky-regex': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-template-literals': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-typeof-symbol': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-unicode-escapes': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-unicode-property-regex': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-unicode-regex': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-unicode-sets-regex': 7.25.7(@babel/core@7.26.8)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.8)
+ babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.26.8)
+ babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.8)
+ babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.26.8)
core-js-compat: 3.38.1
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/preset-env@7.26.0(@babel/core@7.24.5)':
+ '@babel/preset-env@7.26.8(@babel/core@7.24.5)':
dependencies:
- '@babel/compat-data': 7.26.3
+ '@babel/compat-data': 7.26.8
'@babel/core': 7.24.5
- '@babel/helper-compilation-targets': 7.25.9
- '@babel/helper-plugin-utils': 7.25.9
+ '@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/core@7.24.5)
'@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.9(@babel/core@7.24.5)
@@ -24675,9 +23980,9 @@ snapshots:
'@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.24.5)
'@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.5)
'@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-async-generator-functions': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-async-generator-functions': 7.26.8(@babel/core@7.24.5)
'@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-block-scoped-functions': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-block-scoped-functions': 7.26.5(@babel/core@7.24.5)
'@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.24.5)
'@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.24.5)
'@babel/plugin-transform-class-static-block': 7.26.0(@babel/core@7.24.5)
@@ -24702,7 +24007,7 @@ snapshots:
'@babel/plugin-transform-modules-umd': 7.25.9(@babel/core@7.24.5)
'@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.24.5)
'@babel/plugin-transform-new-target': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.26.6(@babel/core@7.24.5)
'@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.24.5)
'@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.24.5)
'@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.24.5)
@@ -24718,324 +24023,196 @@ snapshots:
'@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.24.5)
'@babel/plugin-transform-spread': 7.25.9(@babel/core@7.24.5)
'@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-template-literals': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-typeof-symbol': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-template-literals': 7.26.8(@babel/core@7.24.5)
+ '@babel/plugin-transform-typeof-symbol': 7.26.7(@babel/core@7.24.5)
'@babel/plugin-transform-unicode-escapes': 7.25.9(@babel/core@7.24.5)
'@babel/plugin-transform-unicode-property-regex': 7.25.9(@babel/core@7.24.5)
'@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.24.5)
'@babel/plugin-transform-unicode-sets-regex': 7.25.9(@babel/core@7.24.5)
'@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.5)
babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.5)
- babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.24.5)
+ babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.24.5)
babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.5)
- core-js-compat: 3.38.1
+ core-js-compat: 3.40.0
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/preset-env@7.26.0(@babel/core@7.25.7)':
+ '@babel/preset-env@7.26.8(@babel/core@7.26.8)':
dependencies:
- '@babel/compat-data': 7.26.3
- '@babel/core': 7.25.7
- '@babel/helper-compilation-targets': 7.25.9
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/compat-data': 7.26.8
+ '@babel/core': 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/core@7.25.7)
- '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.7)
- '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.25.7)
- '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.25.7)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.25.7)
- '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-async-generator-functions': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-block-scoped-functions': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-class-static-block': 7.26.0(@babel/core@7.25.7)
- '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-dotall-regex': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-duplicate-keys': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-dynamic-import': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-exponentiation-operator': 7.26.3(@babel/core@7.25.7)
- '@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-for-of': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-json-strings': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-modules-amd': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.25.7)
- '@babel/plugin-transform-modules-systemjs': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-modules-umd': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-new-target': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-optional-catch-binding': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-regenerator': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-regexp-modifiers': 7.26.0(@babel/core@7.25.7)
- '@babel/plugin-transform-reserved-words': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-template-literals': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-typeof-symbol': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-unicode-escapes': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-unicode-property-regex': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-unicode-sets-regex': 7.25.9(@babel/core@7.25.7)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.25.7)
- babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.25.7)
- babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.25.7)
- babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.25.7)
- core-js-compat: 3.38.1
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.8)
+ '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.26.8)
+ '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.8)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.26.8)
+ '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-async-generator-functions': 7.26.8(@babel/core@7.26.8)
+ '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-block-scoped-functions': 7.26.5(@babel/core@7.26.8)
+ '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-class-static-block': 7.26.0(@babel/core@7.26.8)
+ '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-dotall-regex': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-duplicate-keys': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-dynamic-import': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-exponentiation-operator': 7.26.3(@babel/core@7.26.8)
+ '@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-for-of': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-json-strings': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-modules-amd': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.8)
+ '@babel/plugin-transform-modules-systemjs': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-modules-umd': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-new-target': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.26.6(@babel/core@7.26.8)
+ '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-optional-catch-binding': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-regenerator': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-regexp-modifiers': 7.26.0(@babel/core@7.26.8)
+ '@babel/plugin-transform-reserved-words': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-template-literals': 7.26.8(@babel/core@7.26.8)
+ '@babel/plugin-transform-typeof-symbol': 7.26.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-unicode-escapes': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-unicode-property-regex': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-unicode-sets-regex': 7.25.9(@babel/core@7.26.8)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.8)
+ babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.26.8)
+ babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.26.8)
+ babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.26.8)
+ core-js-compat: 3.40.0
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/preset-env@7.26.0(@babel/core@7.26.0)':
+ '@babel/preset-flow@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/compat-data': 7.26.3
- '@babel/core': 7.26.0
- '@babel/helper-compilation-targets': 7.25.9
+ '@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.25.9
'@babel/helper-validator-option': 7.25.9
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.0)
- '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.26.0)
- '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.0)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.26.0)
- '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-async-generator-functions': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-block-scoped-functions': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-class-static-block': 7.26.0(@babel/core@7.26.0)
- '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-dotall-regex': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-duplicate-keys': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-dynamic-import': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-exponentiation-operator': 7.26.3(@babel/core@7.26.0)
- '@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-for-of': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-json-strings': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-modules-amd': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.0)
- '@babel/plugin-transform-modules-systemjs': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-modules-umd': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-new-target': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-optional-catch-binding': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-regenerator': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-regexp-modifiers': 7.26.0(@babel/core@7.26.0)
- '@babel/plugin-transform-reserved-words': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-template-literals': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-typeof-symbol': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-unicode-escapes': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-unicode-property-regex': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-unicode-sets-regex': 7.25.9(@babel/core@7.26.0)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.0)
- babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.26.0)
- babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.0)
- babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.26.0)
- core-js-compat: 3.38.1
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
- '@babel/preset-flow@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-validator-option': 7.25.7
- '@babel/plugin-transform-flow-strip-types': 7.25.7(@babel/core@7.25.7)
+ '@babel/plugin-transform-flow-strip-types': 7.25.7(@babel/core@7.26.8)
'@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/types': 7.25.7
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/types': 7.26.3
esutils: 2.0.3
'@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/types': 7.25.7
- esutils: 2.0.3
-
- '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/types': 7.25.7
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/types': 7.26.3
esutils: 2.0.3
- '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.26.0)':
+ '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/types': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/types': 7.26.3
esutils: 2.0.3
'@babel/preset-react@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-validator-option': 7.25.7
- '@babel/plugin-transform-react-display-name': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-react-jsx': 7.25.7(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-validator-option': 7.25.9
+ '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.24.5)
'@babel/plugin-transform-react-jsx-development': 7.25.7(@babel/core@7.24.5)
'@babel/plugin-transform-react-pure-annotations': 7.25.7(@babel/core@7.24.5)
transitivePeerDependencies:
- supports-color
- '@babel/preset-react@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-validator-option': 7.25.7
- '@babel/plugin-transform-react-display-name': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-react-jsx': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-react-jsx-development': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-react-pure-annotations': 7.25.7(@babel/core@7.25.7)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/preset-react@7.25.7(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-validator-option': 7.25.7
- '@babel/plugin-transform-react-display-name': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-react-jsx': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-react-jsx-development': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-react-pure-annotations': 7.25.7(@babel/core@7.26.0)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/preset-react@7.26.3(@babel/core@7.24.5)':
+ '@babel/preset-react@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.24.5
+ '@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.25.9
'@babel/helper-validator-option': 7.25.9
- '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-react-jsx-development': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-react-pure-annotations': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-react-jsx-development': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-react-pure-annotations': 7.25.7(@babel/core@7.26.8)
transitivePeerDependencies:
- supports-color
- '@babel/preset-react@7.26.3(@babel/core@7.26.0)':
+ '@babel/preset-react@7.26.3(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.25.9
'@babel/helper-validator-option': 7.25.9
- '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-react-jsx-development': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-react-pure-annotations': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-react-jsx-development': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-react-pure-annotations': 7.25.9(@babel/core@7.26.8)
transitivePeerDependencies:
- supports-color
'@babel/preset-typescript@7.25.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-validator-option': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-validator-option': 7.25.9
'@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-typescript': 7.25.7(@babel/core@7.24.5)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/preset-typescript@7.25.7(@babel/core@7.25.7)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-validator-option': 7.25.7
- '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-typescript': 7.25.7(@babel/core@7.25.7)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/preset-typescript@7.25.7(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-validator-option': 7.25.7
- '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-typescript': 7.25.7(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.24.5)
+ '@babel/plugin-transform-typescript': 7.26.3(@babel/core@7.24.5)
transitivePeerDependencies:
- supports-color
- '@babel/preset-typescript@7.26.0(@babel/core@7.24.5)':
+ '@babel/preset-typescript@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.24.5
+ '@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.25.9
'@babel/helper-validator-option': 7.25.9
- '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.24.5)
- '@babel/plugin-transform-typescript': 7.26.3(@babel/core@7.24.5)
+ '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.8)
+ '@babel/plugin-transform-typescript': 7.26.3(@babel/core@7.26.8)
transitivePeerDependencies:
- supports-color
- '@babel/preset-typescript@7.26.0(@babel/core@7.26.0)':
+ '@babel/preset-typescript@7.26.0(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.25.9
'@babel/helper-validator-option': 7.25.9
- '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.0)
- '@babel/plugin-transform-typescript': 7.26.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.8)
+ '@babel/plugin-transform-typescript': 7.26.3(@babel/core@7.26.8)
transitivePeerDependencies:
- supports-color
- '@babel/register@7.25.7(@babel/core@7.25.7)':
+ '@babel/register@7.25.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.25.7
+ '@babel/core': 7.26.8
clone-deep: 4.0.1
find-cache-dir: 2.1.0
make-dir: 2.1.0
@@ -25055,15 +24232,15 @@ snapshots:
dependencies:
regenerator-runtime: 0.14.1
- '@babel/runtime@7.26.0':
+ '@babel/runtime@7.26.7':
dependencies:
regenerator-runtime: 0.14.1
'@babel/template@7.25.7':
dependencies:
- '@babel/code-frame': 7.25.7
- '@babel/parser': 7.25.7
- '@babel/types': 7.25.7
+ '@babel/code-frame': 7.26.2
+ '@babel/parser': 7.26.3
+ '@babel/types': 7.26.3
'@babel/template@7.25.9':
dependencies:
@@ -25071,6 +24248,12 @@ snapshots:
'@babel/parser': 7.26.3
'@babel/types': 7.26.3
+ '@babel/template@7.26.8':
+ dependencies:
+ '@babel/code-frame': 7.26.2
+ '@babel/parser': 7.26.8
+ '@babel/types': 7.26.8
+
'@babel/traverse@7.25.7':
dependencies:
'@babel/code-frame': 7.25.7
@@ -25095,6 +24278,18 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/traverse@7.26.8':
+ dependencies:
+ '@babel/code-frame': 7.26.2
+ '@babel/generator': 7.26.8
+ '@babel/parser': 7.26.8
+ '@babel/template': 7.26.8
+ '@babel/types': 7.26.8
+ debug: 4.3.7(supports-color@8.1.1)
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/types@7.25.7':
dependencies:
'@babel/helper-string-parser': 7.25.7
@@ -25106,6 +24301,11 @@ snapshots:
'@babel/helper-string-parser': 7.25.9
'@babel/helper-validator-identifier': 7.25.9
+ '@babel/types@7.26.8':
+ dependencies:
+ '@babel/helper-string-parser': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
+
'@bundled-es-modules/cookie@2.0.1':
dependencies:
cookie: 0.7.2
@@ -25119,9 +24319,9 @@ snapshots:
'@types/tough-cookie': 4.0.5
tough-cookie: 4.1.4
- '@capacitor/android@6.1.2(@capacitor/core@7.0.1)':
+ '@capacitor/android@6.1.2(@capacitor/core@7.1.0)':
dependencies:
- '@capacitor/core': 7.0.1
+ '@capacitor/core': 7.1.0
'@capacitor/cli@6.1.2':
dependencies:
@@ -25146,17 +24346,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@capacitor/core@7.0.1':
+ '@capacitor/core@7.1.0':
dependencies:
tslib: 2.7.0
- '@capacitor/ios@6.1.2(@capacitor/core@7.0.1)':
+ '@capacitor/ios@6.1.2(@capacitor/core@7.1.0)':
dependencies:
- '@capacitor/core': 7.0.1
+ '@capacitor/core': 7.1.0
- '@capacitor/splash-screen@7.0.0(@capacitor/core@7.0.1)':
+ '@capacitor/splash-screen@7.0.0(@capacitor/core@7.1.0)':
dependencies:
- '@capacitor/core': 7.0.1
+ '@capacitor/core': 7.1.0
'@changesets/apply-release-plan@7.0.5':
dependencies:
@@ -25189,7 +24389,7 @@ snapshots:
'@changesets/cli@2.27.2':
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.7
'@changesets/apply-release-plan': 7.0.5
'@changesets/assemble-release-plan': 6.0.4
'@changesets/changelog-git': 0.2.0
@@ -25307,10 +24507,10 @@ snapshots:
'@colors/colors@1.5.0':
optional: true
- '@craftzdog/react-native-buffer@6.0.5(react-native@0.72.4(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@craftzdog/react-native-buffer@6.0.5(react-native@0.72.4(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
ieee754: 1.2.1
- react-native-quick-base64: 2.1.2(react-native@0.72.4(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ react-native-quick-base64: 2.1.2(react-native@0.72.4(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
transitivePeerDependencies:
- react
- react-native
@@ -25577,14 +24777,14 @@ snapshots:
'@docsearch/css@3.8.2': {}
- '@docsearch/react@3.8.2(@algolia/client-search@5.19.0)(@types/react@18.3.12)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(search-insights@2.17.2)':
+ '@docsearch/react@3.8.2(@algolia/client-search@5.19.0)(@types/react@18.3.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(search-insights@2.17.2)':
dependencies:
'@algolia/autocomplete-core': 1.17.7(@algolia/client-search@5.19.0)(algoliasearch@5.19.0)(search-insights@2.17.2)
'@algolia/autocomplete-preset-algolia': 1.17.7(@algolia/client-search@5.19.0)(algoliasearch@5.19.0)
'@docsearch/css': 3.8.2
algoliasearch: 5.19.0
optionalDependencies:
- '@types/react': 18.3.12
+ '@types/react': 18.3.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
search-insights: 2.17.2
@@ -25593,14 +24793,14 @@ snapshots:
'@docusaurus/babel@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
'@babel/generator': 7.26.3
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.0)
- '@babel/plugin-transform-runtime': 7.25.9(@babel/core@7.26.0)
- '@babel/preset-env': 7.26.0(@babel/core@7.26.0)
- '@babel/preset-react': 7.26.3(@babel/core@7.26.0)
- '@babel/preset-typescript': 7.26.0(@babel/core@7.26.0)
- '@babel/runtime': 7.26.0
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.8)
+ '@babel/plugin-transform-runtime': 7.25.9(@babel/core@7.26.8)
+ '@babel/preset-env': 7.26.8(@babel/core@7.26.8)
+ '@babel/preset-react': 7.26.3(@babel/core@7.26.8)
+ '@babel/preset-typescript': 7.26.0(@babel/core@7.26.8)
+ '@babel/runtime': 7.26.7
'@babel/runtime-corejs3': 7.26.0
'@babel/traverse': 7.26.4
'@docusaurus/logger': 3.7.0
@@ -25619,13 +24819,13 @@ snapshots:
'@docusaurus/bundler@3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
'@docusaurus/babel': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@docusaurus/cssnano-preset': 3.7.0
'@docusaurus/logger': 3.7.0
'@docusaurus/types': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@docusaurus/utils': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- babel-loader: 9.2.1(@babel/core@7.26.0)(webpack@5.95.0(@swc/core@1.10.1(@swc/helpers@0.5.5)))
+ babel-loader: 9.2.1(@babel/core@7.26.8)(webpack@5.95.0(@swc/core@1.10.1(@swc/helpers@0.5.5)))
clean-css: 5.3.3
copy-webpack-plugin: 11.0.0(webpack@5.95.0(@swc/core@1.10.1(@swc/helpers@0.5.5)))
css-loader: 6.11.0(@rspack/core@1.1.8(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.10.1(@swc/helpers@0.5.5)))
@@ -25663,7 +24863,7 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/core@3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)':
+ '@docusaurus/core@3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)':
dependencies:
'@docusaurus/babel': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@docusaurus/bundler': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
@@ -25672,7 +24872,7 @@ snapshots:
'@docusaurus/utils': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@docusaurus/utils-common': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@docusaurus/utils-validation': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@mdx-js/react': 3.1.0(@types/react@18.3.12)(react@18.2.0)
+ '@mdx-js/react': 3.1.0(@types/react@18.3.18)(react@18.2.0)
boxen: 6.2.1
chalk: 4.1.2
chokidar: 3.6.0
@@ -25797,7 +24997,7 @@ snapshots:
dependencies:
'@docusaurus/types': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@types/history': 4.7.11
- '@types/react': 18.3.12
+ '@types/react': 18.3.18
'@types/react-router-config': 5.0.11
'@types/react-router-dom': 5.3.3
react: 18.2.0
@@ -25811,13 +25011,13 @@ snapshots:
- uglify-js
- webpack-cli
- '@docusaurus/plugin-content-blog@3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@docusaurus/plugin-content-docs@3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)':
+ '@docusaurus/plugin-content-blog@3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@docusaurus/plugin-content-docs@3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)':
dependencies:
- '@docusaurus/core': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
+ '@docusaurus/core': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
'@docusaurus/logger': 3.7.0
'@docusaurus/mdx-loader': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@docusaurus/plugin-content-docs': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
- '@docusaurus/theme-common': 3.7.0(@docusaurus/plugin-content-docs@3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16))(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@docusaurus/plugin-content-docs': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
+ '@docusaurus/theme-common': 3.7.0(@docusaurus/plugin-content-docs@3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16))(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@docusaurus/types': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@docusaurus/utils': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@docusaurus/utils-common': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
@@ -25854,13 +25054,13 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/plugin-content-docs@3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)':
+ '@docusaurus/plugin-content-docs@3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)':
dependencies:
- '@docusaurus/core': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
+ '@docusaurus/core': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
'@docusaurus/logger': 3.7.0
'@docusaurus/mdx-loader': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@docusaurus/module-type-aliases': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@docusaurus/theme-common': 3.7.0(@docusaurus/plugin-content-docs@3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16))(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@docusaurus/theme-common': 3.7.0(@docusaurus/plugin-content-docs@3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16))(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@docusaurus/types': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@docusaurus/utils': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@docusaurus/utils-common': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
@@ -25895,9 +25095,9 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/plugin-content-pages@3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)':
+ '@docusaurus/plugin-content-pages@3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)':
dependencies:
- '@docusaurus/core': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
+ '@docusaurus/core': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
'@docusaurus/mdx-loader': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@docusaurus/types': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@docusaurus/utils': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
@@ -25927,9 +25127,9 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/plugin-debug@3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)':
+ '@docusaurus/plugin-debug@3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)':
dependencies:
- '@docusaurus/core': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
+ '@docusaurus/core': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
'@docusaurus/types': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@docusaurus/utils': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
fs-extra: 11.2.0
@@ -25957,9 +25157,9 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/plugin-google-analytics@3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)':
+ '@docusaurus/plugin-google-analytics@3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)':
dependencies:
- '@docusaurus/core': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
+ '@docusaurus/core': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
'@docusaurus/types': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@docusaurus/utils-validation': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react: 18.2.0
@@ -25985,9 +25185,9 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/plugin-google-gtag@3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)':
+ '@docusaurus/plugin-google-gtag@3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)':
dependencies:
- '@docusaurus/core': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
+ '@docusaurus/core': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
'@docusaurus/types': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@docusaurus/utils-validation': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@types/gtag.js': 0.0.12
@@ -26014,9 +25214,9 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/plugin-google-tag-manager@3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)':
+ '@docusaurus/plugin-google-tag-manager@3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)':
dependencies:
- '@docusaurus/core': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
+ '@docusaurus/core': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
'@docusaurus/types': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@docusaurus/utils-validation': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react: 18.2.0
@@ -26042,9 +25242,9 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/plugin-sitemap@3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)':
+ '@docusaurus/plugin-sitemap@3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)':
dependencies:
- '@docusaurus/core': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
+ '@docusaurus/core': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
'@docusaurus/logger': 3.7.0
'@docusaurus/types': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@docusaurus/utils': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
@@ -26075,9 +25275,9 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/plugin-svgr@3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)':
+ '@docusaurus/plugin-svgr@3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)':
dependencies:
- '@docusaurus/core': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
+ '@docusaurus/core': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
'@docusaurus/types': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@docusaurus/utils': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@docusaurus/utils-validation': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
@@ -26107,21 +25307,21 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/preset-classic@3.7.0(@algolia/client-search@5.19.0)(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(@types/react@18.3.12)(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(search-insights@2.17.2)(typescript@5.5.4)(vue-template-compiler@2.7.16)':
- dependencies:
- '@docusaurus/core': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
- '@docusaurus/plugin-content-blog': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@docusaurus/plugin-content-docs@3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
- '@docusaurus/plugin-content-docs': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
- '@docusaurus/plugin-content-pages': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
- '@docusaurus/plugin-debug': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
- '@docusaurus/plugin-google-analytics': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
- '@docusaurus/plugin-google-gtag': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
- '@docusaurus/plugin-google-tag-manager': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
- '@docusaurus/plugin-sitemap': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
- '@docusaurus/plugin-svgr': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
- '@docusaurus/theme-classic': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(@types/react@18.3.12)(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
- '@docusaurus/theme-common': 3.7.0(@docusaurus/plugin-content-docs@3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16))(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@docusaurus/theme-search-algolia': 3.7.0(@algolia/client-search@5.19.0)(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(@types/react@18.3.12)(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(search-insights@2.17.2)(typescript@5.5.4)(vue-template-compiler@2.7.16)
+ '@docusaurus/preset-classic@3.7.0(@algolia/client-search@5.19.0)(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(@types/react@18.3.18)(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(search-insights@2.17.2)(typescript@5.5.4)(vue-template-compiler@2.7.16)':
+ dependencies:
+ '@docusaurus/core': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
+ '@docusaurus/plugin-content-blog': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@docusaurus/plugin-content-docs@3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
+ '@docusaurus/plugin-content-docs': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
+ '@docusaurus/plugin-content-pages': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
+ '@docusaurus/plugin-debug': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
+ '@docusaurus/plugin-google-analytics': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
+ '@docusaurus/plugin-google-gtag': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
+ '@docusaurus/plugin-google-tag-manager': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
+ '@docusaurus/plugin-sitemap': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
+ '@docusaurus/plugin-svgr': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
+ '@docusaurus/theme-classic': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(@types/react@18.3.18)(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
+ '@docusaurus/theme-common': 3.7.0(@docusaurus/plugin-content-docs@3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16))(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@docusaurus/theme-search-algolia': 3.7.0(@algolia/client-search@5.19.0)(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(@types/react@18.3.18)(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(search-insights@2.17.2)(typescript@5.5.4)(vue-template-compiler@2.7.16)
'@docusaurus/types': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -26150,25 +25350,25 @@ snapshots:
'@docusaurus/react-loadable@6.0.0(react@18.2.0)':
dependencies:
- '@types/react': 18.3.12
+ '@types/react': 18.3.18
react: 18.2.0
- '@docusaurus/theme-classic@3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(@types/react@18.3.12)(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)':
+ '@docusaurus/theme-classic@3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(@types/react@18.3.18)(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)':
dependencies:
- '@docusaurus/core': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
+ '@docusaurus/core': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
'@docusaurus/logger': 3.7.0
'@docusaurus/mdx-loader': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@docusaurus/module-type-aliases': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@docusaurus/plugin-content-blog': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@docusaurus/plugin-content-docs@3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
- '@docusaurus/plugin-content-docs': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
- '@docusaurus/plugin-content-pages': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
- '@docusaurus/theme-common': 3.7.0(@docusaurus/plugin-content-docs@3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16))(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@docusaurus/plugin-content-blog': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@docusaurus/plugin-content-docs@3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
+ '@docusaurus/plugin-content-docs': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
+ '@docusaurus/plugin-content-pages': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
+ '@docusaurus/theme-common': 3.7.0(@docusaurus/plugin-content-docs@3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16))(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@docusaurus/theme-translations': 3.7.0
'@docusaurus/types': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@docusaurus/utils': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@docusaurus/utils-common': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@docusaurus/utils-validation': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@mdx-js/react': 3.1.0(@types/react@18.3.12)(react@18.2.0)
+ '@mdx-js/react': 3.1.0(@types/react@18.3.18)(react@18.2.0)
clsx: 2.1.1
copy-text-to-clipboard: 3.2.0
infima: 0.2.0-alpha.45
@@ -26203,15 +25403,15 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/theme-common@3.7.0(@docusaurus/plugin-content-docs@3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16))(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@docusaurus/theme-common@3.7.0(@docusaurus/plugin-content-docs@3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16))(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
'@docusaurus/mdx-loader': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@docusaurus/module-type-aliases': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@docusaurus/plugin-content-docs': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
+ '@docusaurus/plugin-content-docs': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
'@docusaurus/utils': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@docusaurus/utils-common': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@types/history': 4.7.11
- '@types/react': 18.3.12
+ '@types/react': 18.3.18
'@types/react-router-config': 5.0.11
clsx: 2.1.1
parse-numeric-range: 1.3.0
@@ -26227,13 +25427,13 @@ snapshots:
- uglify-js
- webpack-cli
- '@docusaurus/theme-search-algolia@3.7.0(@algolia/client-search@5.19.0)(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(@types/react@18.3.12)(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(search-insights@2.17.2)(typescript@5.5.4)(vue-template-compiler@2.7.16)':
+ '@docusaurus/theme-search-algolia@3.7.0(@algolia/client-search@5.19.0)(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(@types/react@18.3.18)(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(search-insights@2.17.2)(typescript@5.5.4)(vue-template-compiler@2.7.16)':
dependencies:
- '@docsearch/react': 3.8.2(@algolia/client-search@5.19.0)(@types/react@18.3.12)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(search-insights@2.17.2)
- '@docusaurus/core': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
+ '@docsearch/react': 3.8.2(@algolia/client-search@5.19.0)(@types/react@18.3.18)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(search-insights@2.17.2)
+ '@docusaurus/core': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
'@docusaurus/logger': 3.7.0
- '@docusaurus/plugin-content-docs': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
- '@docusaurus/theme-common': 3.7.0(@docusaurus/plugin-content-docs@3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16))(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@docusaurus/plugin-content-docs': 3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)
+ '@docusaurus/theme-common': 3.7.0(@docusaurus/plugin-content-docs@3.7.0(@docusaurus/faster@3.7.0(@docusaurus/types@3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@swc/helpers@0.5.5))(@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0))(@rspack/core@1.1.8(@swc/helpers@0.5.5))(@swc/core@1.10.1(@swc/helpers@0.5.5))(eslint@8.57.1)(lightningcss@1.28.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.4)(vue-template-compiler@2.7.16))(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@docusaurus/theme-translations': 3.7.0
'@docusaurus/utils': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@docusaurus/utils-validation': 3.7.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
@@ -26281,7 +25481,7 @@ snapshots:
dependencies:
'@mdx-js/mdx': 3.0.1
'@types/history': 4.7.11
- '@types/react': 18.3.12
+ '@types/react': 18.3.18
commander: 5.1.0
joi: 17.13.3
react: 18.2.0
@@ -26738,7 +25938,7 @@ snapshots:
'@emotion/babel-plugin@11.12.0':
dependencies:
'@babel/helper-module-imports': 7.25.7
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.7
'@emotion/hash': 0.9.2
'@emotion/memoize': 0.9.0
'@emotion/serialize': 1.3.2
@@ -26777,7 +25977,7 @@ snapshots:
'@emotion/react@11.11.4(@types/react@18.3.11)(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.7
'@emotion/babel-plugin': 11.12.0
'@emotion/cache': 11.13.1
'@emotion/serialize': 1.3.2
@@ -26819,7 +26019,7 @@ snapshots:
'@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.7
'@emotion/babel-plugin': 11.12.0
'@emotion/is-prop-valid': 1.3.1
'@emotion/react': 11.11.4(@types/react@18.3.11)(react@18.2.0)
@@ -26868,7 +26068,7 @@ snapshots:
'@esbuild/aix-ppc64@0.23.0':
optional: true
- '@esbuild/aix-ppc64@0.24.2':
+ '@esbuild/aix-ppc64@0.25.0':
optional: true
'@esbuild/android-arm64@0.19.12':
@@ -26880,7 +26080,7 @@ snapshots:
'@esbuild/android-arm64@0.23.0':
optional: true
- '@esbuild/android-arm64@0.24.2':
+ '@esbuild/android-arm64@0.25.0':
optional: true
'@esbuild/android-arm@0.19.12':
@@ -26892,7 +26092,7 @@ snapshots:
'@esbuild/android-arm@0.23.0':
optional: true
- '@esbuild/android-arm@0.24.2':
+ '@esbuild/android-arm@0.25.0':
optional: true
'@esbuild/android-x64@0.19.12':
@@ -26904,7 +26104,7 @@ snapshots:
'@esbuild/android-x64@0.23.0':
optional: true
- '@esbuild/android-x64@0.24.2':
+ '@esbuild/android-x64@0.25.0':
optional: true
'@esbuild/darwin-arm64@0.19.12':
@@ -26916,7 +26116,7 @@ snapshots:
'@esbuild/darwin-arm64@0.23.0':
optional: true
- '@esbuild/darwin-arm64@0.24.2':
+ '@esbuild/darwin-arm64@0.25.0':
optional: true
'@esbuild/darwin-x64@0.19.12':
@@ -26928,7 +26128,7 @@ snapshots:
'@esbuild/darwin-x64@0.23.0':
optional: true
- '@esbuild/darwin-x64@0.24.2':
+ '@esbuild/darwin-x64@0.25.0':
optional: true
'@esbuild/freebsd-arm64@0.19.12':
@@ -26940,7 +26140,7 @@ snapshots:
'@esbuild/freebsd-arm64@0.23.0':
optional: true
- '@esbuild/freebsd-arm64@0.24.2':
+ '@esbuild/freebsd-arm64@0.25.0':
optional: true
'@esbuild/freebsd-x64@0.19.12':
@@ -26952,7 +26152,7 @@ snapshots:
'@esbuild/freebsd-x64@0.23.0':
optional: true
- '@esbuild/freebsd-x64@0.24.2':
+ '@esbuild/freebsd-x64@0.25.0':
optional: true
'@esbuild/linux-arm64@0.19.12':
@@ -26964,7 +26164,7 @@ snapshots:
'@esbuild/linux-arm64@0.23.0':
optional: true
- '@esbuild/linux-arm64@0.24.2':
+ '@esbuild/linux-arm64@0.25.0':
optional: true
'@esbuild/linux-arm@0.19.12':
@@ -26976,7 +26176,7 @@ snapshots:
'@esbuild/linux-arm@0.23.0':
optional: true
- '@esbuild/linux-arm@0.24.2':
+ '@esbuild/linux-arm@0.25.0':
optional: true
'@esbuild/linux-ia32@0.19.12':
@@ -26988,7 +26188,7 @@ snapshots:
'@esbuild/linux-ia32@0.23.0':
optional: true
- '@esbuild/linux-ia32@0.24.2':
+ '@esbuild/linux-ia32@0.25.0':
optional: true
'@esbuild/linux-loong64@0.19.12':
@@ -27000,7 +26200,7 @@ snapshots:
'@esbuild/linux-loong64@0.23.0':
optional: true
- '@esbuild/linux-loong64@0.24.2':
+ '@esbuild/linux-loong64@0.25.0':
optional: true
'@esbuild/linux-mips64el@0.19.12':
@@ -27012,7 +26212,7 @@ snapshots:
'@esbuild/linux-mips64el@0.23.0':
optional: true
- '@esbuild/linux-mips64el@0.24.2':
+ '@esbuild/linux-mips64el@0.25.0':
optional: true
'@esbuild/linux-ppc64@0.19.12':
@@ -27024,7 +26224,7 @@ snapshots:
'@esbuild/linux-ppc64@0.23.0':
optional: true
- '@esbuild/linux-ppc64@0.24.2':
+ '@esbuild/linux-ppc64@0.25.0':
optional: true
'@esbuild/linux-riscv64@0.19.12':
@@ -27036,7 +26236,7 @@ snapshots:
'@esbuild/linux-riscv64@0.23.0':
optional: true
- '@esbuild/linux-riscv64@0.24.2':
+ '@esbuild/linux-riscv64@0.25.0':
optional: true
'@esbuild/linux-s390x@0.19.12':
@@ -27048,7 +26248,7 @@ snapshots:
'@esbuild/linux-s390x@0.23.0':
optional: true
- '@esbuild/linux-s390x@0.24.2':
+ '@esbuild/linux-s390x@0.25.0':
optional: true
'@esbuild/linux-x64@0.19.12':
@@ -27060,10 +26260,10 @@ snapshots:
'@esbuild/linux-x64@0.23.0':
optional: true
- '@esbuild/linux-x64@0.24.2':
+ '@esbuild/linux-x64@0.25.0':
optional: true
- '@esbuild/netbsd-arm64@0.24.2':
+ '@esbuild/netbsd-arm64@0.25.0':
optional: true
'@esbuild/netbsd-x64@0.19.12':
@@ -27075,13 +26275,13 @@ snapshots:
'@esbuild/netbsd-x64@0.23.0':
optional: true
- '@esbuild/netbsd-x64@0.24.2':
+ '@esbuild/netbsd-x64@0.25.0':
optional: true
'@esbuild/openbsd-arm64@0.23.0':
optional: true
- '@esbuild/openbsd-arm64@0.24.2':
+ '@esbuild/openbsd-arm64@0.25.0':
optional: true
'@esbuild/openbsd-x64@0.19.12':
@@ -27093,7 +26293,7 @@ snapshots:
'@esbuild/openbsd-x64@0.23.0':
optional: true
- '@esbuild/openbsd-x64@0.24.2':
+ '@esbuild/openbsd-x64@0.25.0':
optional: true
'@esbuild/sunos-x64@0.19.12':
@@ -27105,7 +26305,7 @@ snapshots:
'@esbuild/sunos-x64@0.23.0':
optional: true
- '@esbuild/sunos-x64@0.24.2':
+ '@esbuild/sunos-x64@0.25.0':
optional: true
'@esbuild/win32-arm64@0.19.12':
@@ -27117,7 +26317,7 @@ snapshots:
'@esbuild/win32-arm64@0.23.0':
optional: true
- '@esbuild/win32-arm64@0.24.2':
+ '@esbuild/win32-arm64@0.25.0':
optional: true
'@esbuild/win32-ia32@0.19.12':
@@ -27129,7 +26329,7 @@ snapshots:
'@esbuild/win32-ia32@0.23.0':
optional: true
- '@esbuild/win32-ia32@0.24.2':
+ '@esbuild/win32-ia32@0.25.0':
optional: true
'@esbuild/win32-x64@0.19.12':
@@ -27141,7 +26341,7 @@ snapshots:
'@esbuild/win32-x64@0.23.0':
optional: true
- '@esbuild/win32-x64@0.24.2':
+ '@esbuild/win32-x64@0.25.0':
optional: true
'@eslint-community/eslint-utils@4.4.0(eslint@8.55.0)':
@@ -27182,7 +26382,7 @@ snapshots:
'@expo/cli@0.18.28(encoding@0.1.13)(expo-modules-autolinking@1.11.1)':
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.26.7
'@expo/code-signing-certificates': 0.0.5
'@expo/config': 9.0.4
'@expo/config-plugins': 8.0.10
@@ -27268,7 +26468,7 @@ snapshots:
'@expo/cli@0.18.30(encoding@0.1.13)(expo-modules-autolinking@1.11.3)':
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.7
'@expo/code-signing-certificates': 0.0.5
'@expo/config': 9.0.4
'@expo/config-plugins': 8.0.10
@@ -27371,7 +26571,7 @@ snapshots:
getenv: 1.0.0
glob: 7.1.6
resolve-from: 5.0.0
- semver: 7.5.4
+ semver: 7.6.3
slash: 3.0.0
slugify: 1.6.6
xcode: 3.0.1
@@ -27492,7 +26692,7 @@ snapshots:
dependencies:
'@expo/logger': 1.0.57
joi: 17.11.0
- semver: 7.5.4
+ semver: 7.6.3
zod: 3.23.8
'@expo/eas-json@7.8.4':
@@ -27580,10 +26780,10 @@ snapshots:
'@expo/metro-config@0.18.11':
dependencies:
- '@babel/core': 7.25.7
- '@babel/generator': 7.25.7
- '@babel/parser': 7.25.7
- '@babel/types': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/generator': 7.26.3
+ '@babel/parser': 7.26.3
+ '@babel/types': 7.26.3
'@expo/config': 9.0.4
'@expo/env': 0.3.0
'@expo/json-file': 8.3.3
@@ -27601,17 +26801,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@expo/metro-runtime@3.2.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))':
+ '@expo/metro-runtime@3.2.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))':
dependencies:
- react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
'@expo/metro-runtime@3.2.1(react-native@0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))':
dependencies:
react-native: 0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
- '@expo/metro-runtime@3.2.1(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))':
+ '@expo/metro-runtime@3.2.1(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))':
dependencies:
- react-native: 0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
'@expo/metro-runtime@3.2.3(react-native@0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))':
dependencies:
@@ -27695,7 +26895,7 @@ snapshots:
ejs: 3.1.10
fs-extra: 10.1.0
http-call: 5.3.0
- semver: 7.5.4
+ semver: 7.6.3
tslib: 2.7.0
transitivePeerDependencies:
- '@swc/core'
@@ -27906,11 +27106,11 @@ snapshots:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- '@floating-ui/react-native@0.10.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@floating-ui/react-native@0.10.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
'@floating-ui/core': 1.6.8
react: 18.2.0
- react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
'@floating-ui/react@0.24.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
@@ -28227,6 +27427,14 @@ snapshots:
'@isaacs/ttlcache@1.4.1': {}
+ '@istanbuljs/load-nyc-config@1.1.0':
+ dependencies:
+ camelcase: 5.3.1
+ find-up: 4.1.0
+ get-package-type: 0.1.0
+ js-yaml: 3.14.1
+ resolve-from: 5.0.0
+
'@istanbuljs/schema@0.1.3': {}
'@jest/create-cache-key-function@29.7.0':
@@ -28253,6 +27461,26 @@ snapshots:
dependencies:
'@sinclair/typebox': 0.27.8
+ '@jest/transform@29.7.0':
+ dependencies:
+ '@babel/core': 7.26.8
+ '@jest/types': 29.6.3
+ '@jridgewell/trace-mapping': 0.3.25
+ babel-plugin-istanbul: 6.1.1
+ chalk: 4.1.2
+ convert-source-map: 2.0.0
+ fast-json-stable-stringify: 2.1.0
+ graceful-fs: 4.2.11
+ jest-haste-map: 29.7.0
+ jest-regex-util: 29.6.3
+ jest-util: 29.7.0
+ micromatch: 4.0.8
+ pirates: 4.0.6
+ slash: 3.0.0
+ write-file-atomic: 4.0.2
+ transitivePeerDependencies:
+ - supports-color
+
'@jest/types@24.9.0':
dependencies:
'@types/istanbul-lib-coverage': 2.0.6
@@ -28284,27 +27512,27 @@ snapshots:
'@types/yargs': 17.0.33
chalk: 4.1.2
- '@journeyapps/react-native-quick-sqlite@2.4.2(react-native@0.72.4(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@journeyapps/react-native-quick-sqlite@2.4.2(react-native@0.72.4(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
react: 18.2.0
- react-native: 0.72.4(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.72.4(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))(encoding@0.1.13)(react@18.2.0)
- '@journeyapps/react-native-quick-sqlite@2.4.2(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@journeyapps/react-native-quick-sqlite@2.4.2(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
react: 18.2.0
- react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
'@journeyapps/react-native-quick-sqlite@2.4.2(react-native@0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
react: 18.2.0
react-native: 0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
- '@journeyapps/react-native-quick-sqlite@2.4.2(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@journeyapps/react-native-quick-sqlite@2.4.2(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
react: 18.2.0
- react-native: 0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
- '@journeyapps/wa-sqlite@1.2.1': {}
+ '@journeyapps/wa-sqlite@1.2.0': {}
'@journeyapps/wa-sqlite@1.2.2': {}
@@ -28532,14 +27760,14 @@ snapshots:
'@manypkg/find-root@1.1.0':
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.26.7
'@types/node': 12.20.55
find-up: 4.1.0
fs-extra: 8.1.0
'@manypkg/get-packages@1.1.3':
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.7
'@changesets/types': 4.1.0
'@manypkg/find-root': 1.1.0
fs-extra: 8.1.0
@@ -28576,10 +27804,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.2.0)':
+ '@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.2.0)':
dependencies:
'@types/mdx': 2.0.13
- '@types/react': 18.3.12
+ '@types/react': 18.3.18
react: 18.2.0
'@module-federation/error-codes@0.8.4': {}
@@ -28747,7 +27975,7 @@ snapshots:
'@mui/private-theming@5.16.6(@types/react@18.3.11)(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.26.7
'@mui/utils': 5.16.6(@types/react@18.3.11)(react@18.2.0)
prop-types: 15.8.1
react: 18.2.0
@@ -28756,7 +27984,7 @@ snapshots:
'@mui/styled-engine@5.16.6(@emotion/react@11.11.4(@types/react@18.3.11)(react@18.2.0))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react@18.2.0))(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.26.7
'@emotion/cache': 11.13.1
csstype: 3.1.3
prop-types: 15.8.1
@@ -28767,7 +27995,7 @@ snapshots:
'@mui/styled-engine@5.16.6(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react@18.2.0))(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.26.7
'@emotion/cache': 11.13.1
csstype: 3.1.3
prop-types: 15.8.1
@@ -28778,7 +28006,7 @@ snapshots:
'@mui/system@5.16.7(@emotion/react@11.11.4(@types/react@18.3.11)(react@18.2.0))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.7
'@mui/private-theming': 5.16.6(@types/react@18.3.11)(react@18.2.0)
'@mui/styled-engine': 5.16.6(@emotion/react@11.11.4(@types/react@18.3.11)(react@18.2.0))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react@18.2.0))(react@18.2.0)
'@mui/types': 7.2.17(@types/react@18.3.11)
@@ -28794,7 +28022,7 @@ snapshots:
'@mui/system@5.16.7(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.7
'@mui/private-theming': 5.16.6(@types/react@18.3.11)(react@18.2.0)
'@mui/styled-engine': 5.16.6(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react@18.2.0))(react@18.2.0)
'@mui/types': 7.2.17(@types/react@18.3.11)
@@ -28814,7 +28042,7 @@ snapshots:
'@mui/utils@5.16.6(@types/react@18.3.11)(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.7
'@mui/types': 7.2.17(@types/react@18.3.11)
'@types/prop-types': 15.7.13
clsx: 2.1.1
@@ -29006,7 +28234,7 @@ snapshots:
natural-orderby: 2.0.3
object-treeify: 1.1.33
password-prompt: 1.1.3
- semver: 7.5.4
+ semver: 7.6.3
string-width: 4.2.3
strip-ansi: 6.0.1
supports-color: 8.1.1
@@ -29067,16 +28295,15 @@ snapshots:
'@oclif/screen@3.0.8': {}
- '@op-engineering/op-sqlite@11.2.13(react-native@0.75.3(@babel/core@7.25.7)(@babel/preset-env@7.26.0(@babel/core@7.25.7))(@types/react@18.3.11)(encoding@0.1.13)(react@18.3.1)(typescript@5.8.2))(react@18.3.1)':
+ '@op-engineering/op-sqlite@11.2.13(react-native@0.75.3(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))(@types/react@18.3.11)(encoding@0.1.13)(react@18.3.1)(typescript@5.8.2))(react@18.3.1)':
dependencies:
react: 18.3.1
- react-native: 0.75.3(@babel/core@7.25.7)(@babel/preset-env@7.26.0(@babel/core@7.25.7))(@types/react@18.3.11)(encoding@0.1.13)(react@18.3.1)(typescript@5.8.2)
+ react-native: 0.75.3(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))(@types/react@18.3.11)(encoding@0.1.13)(react@18.3.1)(typescript@5.8.2)
- '@op-engineering/op-sqlite@11.2.13(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1)(typescript@5.8.2))(react@18.3.1)':
+ '@op-engineering/op-sqlite@11.4.4(react-native@0.77.0(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))(@react-native-community/cli-server-api@15.1.3)(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)':
dependencies:
react: 18.3.1
- react-native: 0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1)(typescript@5.8.2)
- optional: true
+ react-native: 0.77.0(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))(@react-native-community/cli-server-api@15.1.3)(@types/react@18.3.18)(react@18.3.1)
'@open-draft/deferred-promise@2.2.0': {}
@@ -29405,30 +28632,30 @@ snapshots:
'@radix-ui/react-compose-refs@1.0.0(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.26.7
react: 18.2.0
'@radix-ui/react-slot@1.0.1(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.7
'@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
react: 18.2.0
- '@react-native-async-storage/async-storage@1.23.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))':
+ '@react-native-async-storage/async-storage@1.23.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))':
dependencies:
merge-options: 3.0.4
- react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
'@react-native-async-storage/async-storage@1.23.1(react-native@0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))':
dependencies:
merge-options: 3.0.4
react-native: 0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
- '@react-native-community/async-storage@1.12.1(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@react-native-community/async-storage@1.12.1(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
deep-assign: 3.0.0
react: 18.2.0
- react-native: 0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
'@react-native-community/cli-clean@11.3.6(encoding@0.1.13)':
dependencies:
@@ -29464,6 +28691,27 @@ snapshots:
execa: 5.1.1
fast-glob: 3.3.2
+ '@react-native-community/cli-clean@15.1.3':
+ dependencies:
+ '@react-native-community/cli-tools': 15.1.3
+ chalk: 4.1.2
+ execa: 5.1.1
+ fast-glob: 3.3.2
+
+ '@react-native-community/cli-config-android@15.1.3':
+ dependencies:
+ '@react-native-community/cli-tools': 15.1.3
+ chalk: 4.1.2
+ fast-glob: 3.3.2
+ fast-xml-parser: 4.5.0
+
+ '@react-native-community/cli-config-apple@15.1.3':
+ dependencies:
+ '@react-native-community/cli-tools': 15.1.3
+ chalk: 4.1.2
+ execa: 5.1.1
+ fast-glob: 3.3.2
+
'@react-native-community/cli-config@11.3.6(encoding@0.1.13)':
dependencies:
'@react-native-community/cli-tools': 11.3.6(encoding@0.1.13)
@@ -29497,20 +28745,20 @@ snapshots:
transitivePeerDependencies:
- encoding
- '@react-native-community/cli-config@14.1.0(typescript@5.5.4)':
+ '@react-native-community/cli-config@14.1.0(typescript@5.8.2)':
dependencies:
'@react-native-community/cli-tools': 14.1.0
chalk: 4.1.2
- cosmiconfig: 9.0.0(typescript@5.5.4)
+ cosmiconfig: 9.0.0(typescript@5.8.2)
deepmerge: 4.3.1
fast-glob: 3.3.2
joi: 17.13.3
transitivePeerDependencies:
- typescript
- '@react-native-community/cli-config@14.1.0(typescript@5.8.2)':
+ '@react-native-community/cli-config@15.1.3(typescript@5.8.2)':
dependencies:
- '@react-native-community/cli-tools': 14.1.0
+ '@react-native-community/cli-tools': 15.1.3
chalk: 4.1.2
cosmiconfig: 9.0.0(typescript@5.8.2)
deepmerge: 4.3.1
@@ -29543,6 +28791,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@react-native-community/cli-debugger-ui@15.1.3':
+ dependencies:
+ serve-static: 1.16.2
+ transitivePeerDependencies:
+ - supports-color
+
'@react-native-community/cli-doctor@11.3.6(encoding@0.1.13)':
dependencies:
'@react-native-community/cli-config': 11.3.6(encoding@0.1.13)
@@ -29610,9 +28864,9 @@ snapshots:
transitivePeerDependencies:
- encoding
- '@react-native-community/cli-doctor@14.1.0(typescript@5.5.4)':
+ '@react-native-community/cli-doctor@14.1.0(typescript@5.8.2)':
dependencies:
- '@react-native-community/cli-config': 14.1.0(typescript@5.5.4)
+ '@react-native-community/cli-config': 14.1.0(typescript@5.8.2)
'@react-native-community/cli-platform-android': 14.1.0
'@react-native-community/cli-platform-apple': 14.1.0
'@react-native-community/cli-platform-ios': 14.1.0
@@ -29631,13 +28885,13 @@ snapshots:
transitivePeerDependencies:
- typescript
- '@react-native-community/cli-doctor@14.1.0(typescript@5.8.2)':
+ '@react-native-community/cli-doctor@15.1.3(typescript@5.8.2)':
dependencies:
- '@react-native-community/cli-config': 14.1.0(typescript@5.8.2)
- '@react-native-community/cli-platform-android': 14.1.0
- '@react-native-community/cli-platform-apple': 14.1.0
- '@react-native-community/cli-platform-ios': 14.1.0
- '@react-native-community/cli-tools': 14.1.0
+ '@react-native-community/cli-config': 15.1.3(typescript@5.8.2)
+ '@react-native-community/cli-platform-android': 15.1.3
+ '@react-native-community/cli-platform-apple': 15.1.3
+ '@react-native-community/cli-platform-ios': 15.1.3
+ '@react-native-community/cli-tools': 15.1.3
chalk: 4.1.2
command-exists: 1.2.9
deepmerge: 4.3.1
@@ -29721,6 +28975,14 @@ snapshots:
fast-xml-parser: 4.5.0
logkitty: 0.7.1
+ '@react-native-community/cli-platform-android@15.1.3':
+ dependencies:
+ '@react-native-community/cli-config-android': 15.1.3
+ '@react-native-community/cli-tools': 15.1.3
+ chalk: 4.1.2
+ execa: 5.1.1
+ logkitty: 0.7.1
+
'@react-native-community/cli-platform-apple@13.6.6(encoding@0.1.13)':
dependencies:
'@react-native-community/cli-tools': 13.6.6(encoding@0.1.13)
@@ -29752,6 +29014,14 @@ snapshots:
fast-xml-parser: 4.5.0
ora: 5.4.1
+ '@react-native-community/cli-platform-apple@15.1.3':
+ dependencies:
+ '@react-native-community/cli-config-apple': 15.1.3
+ '@react-native-community/cli-tools': 15.1.3
+ chalk: 4.1.2
+ execa: 5.1.1
+ fast-xml-parser: 4.5.0
+
'@react-native-community/cli-platform-ios@11.3.6(encoding@0.1.13)':
dependencies:
'@react-native-community/cli-tools': 11.3.6(encoding@0.1.13)
@@ -29779,7 +29049,11 @@ snapshots:
dependencies:
'@react-native-community/cli-platform-apple': 14.1.0
- '@react-native-community/cli-plugin-metro@11.3.6(@babel/core@7.24.5)(encoding@0.1.13)':
+ '@react-native-community/cli-platform-ios@15.1.3':
+ dependencies:
+ '@react-native-community/cli-platform-apple': 15.1.3
+
+ '@react-native-community/cli-plugin-metro@11.3.6(@babel/core@7.26.8)(encoding@0.1.13)':
dependencies:
'@react-native-community/cli-server-api': 11.3.6(encoding@0.1.13)
'@react-native-community/cli-tools': 11.3.6(encoding@0.1.13)
@@ -29788,7 +29062,7 @@ snapshots:
metro: 0.76.7(encoding@0.1.13)
metro-config: 0.76.7(encoding@0.1.13)
metro-core: 0.76.7
- metro-react-native-babel-transformer: 0.76.7(@babel/core@7.24.5)
+ metro-react-native-babel-transformer: 0.76.7(@babel/core@7.26.8)
metro-resolver: 0.76.7
metro-runtime: 0.76.7
readline: 1.3.0
@@ -29866,6 +29140,22 @@ snapshots:
- supports-color
- utf-8-validate
+ '@react-native-community/cli-server-api@15.1.3':
+ dependencies:
+ '@react-native-community/cli-debugger-ui': 15.1.3
+ '@react-native-community/cli-tools': 15.1.3
+ compression: 1.7.4
+ connect: 3.7.0
+ errorhandler: 1.5.1
+ nocache: 3.0.4
+ pretty-format: 26.6.2
+ serve-static: 1.16.2
+ ws: 6.2.3
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+
'@react-native-community/cli-tools@11.3.6(encoding@0.1.13)':
dependencies:
appdirsjs: 1.2.7
@@ -29925,6 +29215,20 @@ snapshots:
shell-quote: 1.8.1
sudo-prompt: 9.2.1
+ '@react-native-community/cli-tools@15.1.3':
+ dependencies:
+ appdirsjs: 1.2.7
+ chalk: 4.1.2
+ execa: 5.1.1
+ find-up: 5.0.0
+ mime: 2.6.0
+ open: 6.4.0
+ ora: 5.4.1
+ prompts: 2.4.2
+ semver: 7.6.3
+ shell-quote: 1.8.1
+ sudo-prompt: 9.2.1
+
'@react-native-community/cli-types@11.3.6':
dependencies:
joi: 17.13.3
@@ -29941,14 +29245,18 @@ snapshots:
dependencies:
joi: 17.13.3
- '@react-native-community/cli@11.3.6(@babel/core@7.24.5)(encoding@0.1.13)':
+ '@react-native-community/cli-types@15.1.3':
+ dependencies:
+ joi: 17.13.3
+
+ '@react-native-community/cli@11.3.6(@babel/core@7.26.8)(encoding@0.1.13)':
dependencies:
'@react-native-community/cli-clean': 11.3.6(encoding@0.1.13)
'@react-native-community/cli-config': 11.3.6(encoding@0.1.13)
'@react-native-community/cli-debugger-ui': 11.3.6
'@react-native-community/cli-doctor': 11.3.6(encoding@0.1.13)
'@react-native-community/cli-hermes': 11.3.6(encoding@0.1.13)
- '@react-native-community/cli-plugin-metro': 11.3.6(@babel/core@7.24.5)(encoding@0.1.13)
+ '@react-native-community/cli-plugin-metro': 11.3.6(@babel/core@7.26.8)(encoding@0.1.13)
'@react-native-community/cli-server-api': 11.3.6(encoding@0.1.13)
'@react-native-community/cli-tools': 11.3.6(encoding@0.1.13)
'@react-native-community/cli-types': 11.3.6
@@ -30017,12 +29325,12 @@ snapshots:
- supports-color
- utf-8-validate
- '@react-native-community/cli@14.1.0(typescript@5.5.4)':
+ '@react-native-community/cli@14.1.0(typescript@5.8.2)':
dependencies:
'@react-native-community/cli-clean': 14.1.0
- '@react-native-community/cli-config': 14.1.0(typescript@5.5.4)
+ '@react-native-community/cli-config': 14.1.0(typescript@5.8.2)
'@react-native-community/cli-debugger-ui': 14.1.0
- '@react-native-community/cli-doctor': 14.1.0(typescript@5.5.4)
+ '@react-native-community/cli-doctor': 14.1.0(typescript@5.8.2)
'@react-native-community/cli-server-api': 14.1.0
'@react-native-community/cli-tools': 14.1.0
'@react-native-community/cli-types': 14.1.0
@@ -30041,15 +29349,15 @@ snapshots:
- typescript
- utf-8-validate
- '@react-native-community/cli@14.1.0(typescript@5.8.2)':
+ '@react-native-community/cli@15.1.3(typescript@5.8.2)':
dependencies:
- '@react-native-community/cli-clean': 14.1.0
- '@react-native-community/cli-config': 14.1.0(typescript@5.8.2)
- '@react-native-community/cli-debugger-ui': 14.1.0
- '@react-native-community/cli-doctor': 14.1.0(typescript@5.8.2)
- '@react-native-community/cli-server-api': 14.1.0
- '@react-native-community/cli-tools': 14.1.0
- '@react-native-community/cli-types': 14.1.0
+ '@react-native-community/cli-clean': 15.1.3
+ '@react-native-community/cli-config': 15.1.3(typescript@5.8.2)
+ '@react-native-community/cli-debugger-ui': 15.1.3
+ '@react-native-community/cli-doctor': 15.1.3(typescript@5.8.2)
+ '@react-native-community/cli-server-api': 15.1.3
+ '@react-native-community/cli-tools': 15.1.3
+ '@react-native-community/cli-types': 15.1.3
chalk: 4.1.2
commander: 9.5.0
deepmerge: 4.3.1
@@ -30070,10 +29378,10 @@ snapshots:
react: 18.2.0
react-native: 0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
- '@react-native-community/masked-view@0.1.11(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@react-native-community/masked-view@0.1.11(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
react: 18.2.0
- react-native: 0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
'@react-native/assets-registry@0.72.0': {}
@@ -30083,9 +29391,11 @@ snapshots:
'@react-native/assets-registry@0.75.3': {}
- '@react-native/babel-plugin-codegen@0.74.83(@babel/preset-env@7.26.0(@babel/core@7.24.5))':
+ '@react-native/assets-registry@0.77.0': {}
+
+ '@react-native/babel-plugin-codegen@0.74.83(@babel/preset-env@7.26.8(@babel/core@7.24.5))':
dependencies:
- '@react-native/codegen': 0.74.83(@babel/preset-env@7.26.0(@babel/core@7.24.5))
+ '@react-native/codegen': 0.74.83(@babel/preset-env@7.26.8(@babel/core@7.24.5))
transitivePeerDependencies:
- '@babel/preset-env'
- supports-color
@@ -30097,43 +29407,44 @@ snapshots:
- '@babel/preset-env'
- supports-color
- '@react-native/babel-plugin-codegen@0.74.87(@babel/preset-env@7.25.7(@babel/core@7.26.0))':
+ '@react-native/babel-plugin-codegen@0.74.87(@babel/preset-env@7.25.7(@babel/core@7.26.8))':
dependencies:
- '@react-native/codegen': 0.74.87(@babel/preset-env@7.25.7(@babel/core@7.26.0))
+ '@react-native/codegen': 0.74.87(@babel/preset-env@7.25.7(@babel/core@7.26.8))
transitivePeerDependencies:
- '@babel/preset-env'
- supports-color
- '@react-native/babel-plugin-codegen@0.74.87(@babel/preset-env@7.26.0(@babel/core@7.24.5))':
+ '@react-native/babel-plugin-codegen@0.74.87(@babel/preset-env@7.26.8(@babel/core@7.24.5))':
dependencies:
- '@react-native/codegen': 0.74.87(@babel/preset-env@7.26.0(@babel/core@7.24.5))
+ '@react-native/codegen': 0.74.87(@babel/preset-env@7.26.8(@babel/core@7.24.5))
transitivePeerDependencies:
- '@babel/preset-env'
- supports-color
- '@react-native/babel-plugin-codegen@0.75.3(@babel/preset-env@7.25.7(@babel/core@7.26.0))':
+ '@react-native/babel-plugin-codegen@0.75.3(@babel/preset-env@7.26.8(@babel/core@7.26.8))':
dependencies:
- '@react-native/codegen': 0.75.3(@babel/preset-env@7.25.7(@babel/core@7.26.0))
+ '@react-native/codegen': 0.75.3(@babel/preset-env@7.26.8(@babel/core@7.26.8))
transitivePeerDependencies:
- '@babel/preset-env'
- supports-color
- '@react-native/babel-plugin-codegen@0.75.3(@babel/preset-env@7.26.0(@babel/core@7.25.7))':
+ '@react-native/babel-plugin-codegen@0.77.0(@babel/preset-env@7.25.7(@babel/core@7.26.8))':
dependencies:
- '@react-native/codegen': 0.75.3(@babel/preset-env@7.26.0(@babel/core@7.25.7))
+ '@babel/traverse': 7.26.4
+ '@react-native/codegen': 0.77.0(@babel/preset-env@7.25.7(@babel/core@7.26.8))
transitivePeerDependencies:
- '@babel/preset-env'
- supports-color
- '@react-native/babel-plugin-codegen@0.75.3(@babel/preset-env@7.26.0(@babel/core@7.26.0))':
+ '@react-native/babel-plugin-codegen@0.77.0(@babel/preset-env@7.26.8(@babel/core@7.26.8))':
dependencies:
- '@react-native/codegen': 0.75.3(@babel/preset-env@7.26.0(@babel/core@7.26.0))
+ '@babel/traverse': 7.26.4
+ '@react-native/codegen': 0.77.0(@babel/preset-env@7.26.8(@babel/core@7.26.8))
transitivePeerDependencies:
- '@babel/preset-env'
- supports-color
- optional: true
- '@react-native/babel-preset@0.74.83(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))':
+ '@react-native/babel-preset@0.74.83(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))':
dependencies:
'@babel/core': 7.24.5
'@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.24.5)
@@ -30150,32 +29461,32 @@ snapshots:
'@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.24.5)
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.5)
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.5)
- '@babel/plugin-transform-arrow-functions': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-async-to-generator': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-block-scoping': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-classes': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-computed-properties': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-destructuring': 7.25.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.24.5)
'@babel/plugin-transform-flow-strip-types': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-function-name': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-literals': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-private-methods': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-private-property-in-object': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-react-display-name': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-react-jsx': 7.25.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.24.5)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.24.5)
'@babel/plugin-transform-react-jsx-self': 7.25.7(@babel/core@7.24.5)
'@babel/plugin-transform-react-jsx-source': 7.25.7(@babel/core@7.24.5)
'@babel/plugin-transform-runtime': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-shorthand-properties': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-spread': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-sticky-regex': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-typescript': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-unicode-regex': 7.25.7(@babel/core@7.24.5)
- '@babel/template': 7.25.7
- '@react-native/babel-plugin-codegen': 0.74.83(@babel/preset-env@7.26.0(@babel/core@7.24.5))
+ '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-typescript': 7.26.3(@babel/core@7.24.5)
+ '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.24.5)
+ '@babel/template': 7.25.9
+ '@react-native/babel-plugin-codegen': 0.74.83(@babel/preset-env@7.26.8(@babel/core@7.24.5))
babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.24.5)
react-refresh: 0.14.2
transitivePeerDependencies:
@@ -30199,31 +29510,31 @@ snapshots:
'@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.24.5)
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.5)
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.5)
- '@babel/plugin-transform-arrow-functions': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-async-to-generator': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-block-scoping': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-classes': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-computed-properties': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-destructuring': 7.25.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.24.5)
'@babel/plugin-transform-flow-strip-types': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-function-name': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-literals': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-private-methods': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-private-property-in-object': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-react-display-name': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-react-jsx': 7.25.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.24.5)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.24.5)
'@babel/plugin-transform-react-jsx-self': 7.25.7(@babel/core@7.24.5)
'@babel/plugin-transform-react-jsx-source': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-runtime': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-shorthand-properties': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-spread': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-sticky-regex': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-typescript': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-unicode-regex': 7.25.7(@babel/core@7.24.5)
- '@babel/template': 7.25.7
+ '@babel/plugin-transform-runtime': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-typescript': 7.26.3(@babel/core@7.24.5)
+ '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.24.5)
+ '@babel/template': 7.25.9
'@react-native/babel-plugin-codegen': 0.74.87(@babel/preset-env@7.25.7(@babel/core@7.24.5))
babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.24.5)
react-refresh: 0.14.2
@@ -30231,7 +29542,7 @@ snapshots:
- '@babel/preset-env'
- supports-color
- '@react-native/babel-preset@0.74.87(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))':
+ '@react-native/babel-preset@0.74.87(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))':
dependencies:
'@babel/core': 7.24.5
'@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.24.5)
@@ -30248,262 +29559,261 @@ snapshots:
'@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.24.5)
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.5)
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.5)
- '@babel/plugin-transform-arrow-functions': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-async-to-generator': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-block-scoping': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-classes': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-computed-properties': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-destructuring': 7.25.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.24.5)
'@babel/plugin-transform-flow-strip-types': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-function-name': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-literals': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-private-methods': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-private-property-in-object': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-react-display-name': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-react-jsx': 7.25.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.24.5)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.24.5)
'@babel/plugin-transform-react-jsx-self': 7.25.7(@babel/core@7.24.5)
'@babel/plugin-transform-react-jsx-source': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-runtime': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-shorthand-properties': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-spread': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-sticky-regex': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-typescript': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-unicode-regex': 7.25.7(@babel/core@7.24.5)
- '@babel/template': 7.25.7
- '@react-native/babel-plugin-codegen': 0.74.87(@babel/preset-env@7.26.0(@babel/core@7.24.5))
+ '@babel/plugin-transform-runtime': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-typescript': 7.26.3(@babel/core@7.24.5)
+ '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.24.5)
+ '@babel/template': 7.25.9
+ '@react-native/babel-plugin-codegen': 0.74.87(@babel/preset-env@7.26.8(@babel/core@7.24.5))
babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.24.5)
react-refresh: 0.14.2
transitivePeerDependencies:
- '@babel/preset-env'
- supports-color
- '@react-native/babel-preset@0.74.87(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.26.0)
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.26.0)
- '@babel/plugin-proposal-export-default-from': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.26.0)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.26.0)
- '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.26.0)
- '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.26.0)
- '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.26.0)
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.26.0)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.0)
- '@babel/plugin-syntax-export-default-from': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.0)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.0)
- '@babel/plugin-transform-arrow-functions': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-async-to-generator': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-block-scoping': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-classes': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-computed-properties': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-destructuring': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-flow-strip-types': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-function-name': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-literals': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-private-methods': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-private-property-in-object': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-react-display-name': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-react-jsx': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-react-jsx-self': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-react-jsx-source': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-runtime': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-shorthand-properties': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-spread': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-sticky-regex': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-typescript': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-unicode-regex': 7.25.7(@babel/core@7.26.0)
- '@babel/template': 7.25.7
- '@react-native/babel-plugin-codegen': 0.74.87(@babel/preset-env@7.25.7(@babel/core@7.26.0))
- babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.26.0)
+ '@react-native/babel-preset@0.74.87(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))':
+ dependencies:
+ '@babel/core': 7.26.8
+ '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.26.8)
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.26.8)
+ '@babel/plugin-proposal-export-default-from': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.26.8)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.26.8)
+ '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.26.8)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.26.8)
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.26.8)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.26.8)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.8)
+ '@babel/plugin-syntax-export-default-from': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.8)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.8)
+ '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-flow-strip-types': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.8)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-react-jsx-self': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-react-jsx-source': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-runtime': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-typescript': 7.26.3(@babel/core@7.26.8)
+ '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.8)
+ '@babel/template': 7.25.9
+ '@react-native/babel-plugin-codegen': 0.74.87(@babel/preset-env@7.25.7(@babel/core@7.26.8))
+ babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.26.8)
react-refresh: 0.14.2
transitivePeerDependencies:
- '@babel/preset-env'
- supports-color
- '@react-native/babel-preset@0.75.3(@babel/core@7.25.7)(@babel/preset-env@7.26.0(@babel/core@7.25.7))':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/plugin-proposal-export-default-from': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.7)
- '@babel/plugin-syntax-export-default-from': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.7)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.7)
- '@babel/plugin-transform-arrow-functions': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-async-generator-functions': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-async-to-generator': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-block-scoping': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-class-properties': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-classes': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-computed-properties': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-destructuring': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-flow-strip-types': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-for-of': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-function-name': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-literals': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-logical-assignment-operators': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-numeric-separator': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-object-rest-spread': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-optional-catch-binding': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-optional-chaining': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-private-methods': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-private-property-in-object': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-react-display-name': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-react-jsx': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-react-jsx-self': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-react-jsx-source': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-regenerator': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-runtime': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-shorthand-properties': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-spread': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-sticky-regex': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-typescript': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-unicode-regex': 7.25.7(@babel/core@7.25.7)
- '@babel/template': 7.25.7
- '@react-native/babel-plugin-codegen': 0.75.3(@babel/preset-env@7.26.0(@babel/core@7.25.7))
- babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.25.7)
+ '@react-native/babel-preset@0.75.3(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))':
+ dependencies:
+ '@babel/core': 7.26.8
+ '@babel/plugin-proposal-export-default-from': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.8)
+ '@babel/plugin-syntax-export-default-from': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.8)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.8)
+ '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-async-generator-functions': 7.26.8(@babel/core@7.26.8)
+ '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-flow-strip-types': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-for-of': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.8)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-optional-catch-binding': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-react-jsx-self': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-react-jsx-source': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-regenerator': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-runtime': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-typescript': 7.26.3(@babel/core@7.26.8)
+ '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.8)
+ '@babel/template': 7.25.9
+ '@react-native/babel-plugin-codegen': 0.75.3(@babel/preset-env@7.26.8(@babel/core@7.26.8))
+ babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.26.8)
react-refresh: 0.14.2
transitivePeerDependencies:
- '@babel/preset-env'
- supports-color
- '@react-native/babel-preset@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/plugin-proposal-export-default-from': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.0)
- '@babel/plugin-syntax-export-default-from': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.0)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.0)
- '@babel/plugin-transform-arrow-functions': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-async-generator-functions': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-async-to-generator': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-block-scoping': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-class-properties': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-classes': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-computed-properties': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-destructuring': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-flow-strip-types': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-for-of': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-function-name': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-literals': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-logical-assignment-operators': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-numeric-separator': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-object-rest-spread': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-optional-catch-binding': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-optional-chaining': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-private-methods': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-private-property-in-object': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-react-display-name': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-react-jsx': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-react-jsx-self': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-react-jsx-source': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-regenerator': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-runtime': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-shorthand-properties': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-spread': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-sticky-regex': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-typescript': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-unicode-regex': 7.25.7(@babel/core@7.26.0)
- '@babel/template': 7.25.7
- '@react-native/babel-plugin-codegen': 0.75.3(@babel/preset-env@7.25.7(@babel/core@7.26.0))
- babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.26.0)
+ '@react-native/babel-preset@0.77.0(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))':
+ dependencies:
+ '@babel/core': 7.26.8
+ '@babel/plugin-proposal-export-default-from': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.8)
+ '@babel/plugin-syntax-export-default-from': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.8)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.8)
+ '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-async-generator-functions': 7.26.8(@babel/core@7.26.8)
+ '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-flow-strip-types': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-for-of': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.8)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-optional-catch-binding': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-react-jsx-self': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-react-jsx-source': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-regenerator': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-runtime': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-typescript': 7.26.3(@babel/core@7.26.8)
+ '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.8)
+ '@babel/template': 7.25.9
+ '@react-native/babel-plugin-codegen': 0.77.0(@babel/preset-env@7.25.7(@babel/core@7.26.8))
+ babel-plugin-syntax-hermes-parser: 0.25.1
+ babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.26.8)
react-refresh: 0.14.2
transitivePeerDependencies:
- '@babel/preset-env'
- supports-color
- '@react-native/babel-preset@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))':
- dependencies:
- '@babel/core': 7.26.0
- '@babel/plugin-proposal-export-default-from': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.0)
- '@babel/plugin-syntax-export-default-from': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.0)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.0)
- '@babel/plugin-transform-arrow-functions': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-async-generator-functions': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-async-to-generator': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-block-scoping': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-class-properties': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-classes': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-computed-properties': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-destructuring': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-flow-strip-types': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-for-of': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-function-name': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-literals': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-logical-assignment-operators': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-numeric-separator': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-object-rest-spread': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-optional-catch-binding': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-optional-chaining': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-private-methods': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-private-property-in-object': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-react-display-name': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-react-jsx': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-react-jsx-self': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-react-jsx-source': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-regenerator': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-runtime': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-shorthand-properties': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-spread': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-sticky-regex': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-typescript': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-unicode-regex': 7.25.7(@babel/core@7.26.0)
- '@babel/template': 7.25.7
- '@react-native/babel-plugin-codegen': 0.75.3(@babel/preset-env@7.26.0(@babel/core@7.26.0))
- babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.26.0)
+ '@react-native/babel-preset@0.77.0(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))':
+ dependencies:
+ '@babel/core': 7.26.8
+ '@babel/plugin-proposal-export-default-from': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.8)
+ '@babel/plugin-syntax-export-default-from': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.8)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.8)
+ '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-async-generator-functions': 7.26.8(@babel/core@7.26.8)
+ '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-flow-strip-types': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-for-of': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.8)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-optional-catch-binding': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-react-jsx-self': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-react-jsx-source': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-regenerator': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-runtime': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-typescript': 7.26.3(@babel/core@7.26.8)
+ '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.8)
+ '@babel/template': 7.25.9
+ '@react-native/babel-plugin-codegen': 0.77.0(@babel/preset-env@7.26.8(@babel/core@7.26.8))
+ babel-plugin-syntax-hermes-parser: 0.25.1
+ babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.26.8)
react-refresh: 0.14.2
transitivePeerDependencies:
- '@babel/preset-env'
- supports-color
- optional: true
- '@react-native/codegen@0.72.8(@babel/preset-env@7.26.0(@babel/core@7.24.5))':
+ '@react-native/codegen@0.72.8(@babel/preset-env@7.26.8(@babel/core@7.26.8))':
dependencies:
- '@babel/parser': 7.25.7
- '@babel/preset-env': 7.26.0(@babel/core@7.24.5)
+ '@babel/parser': 7.26.3
+ '@babel/preset-env': 7.26.8(@babel/core@7.26.8)
flow-parser: 0.206.0
glob: 7.2.3
invariant: 2.2.4
- jscodeshift: 0.14.0(@babel/preset-env@7.26.0(@babel/core@7.24.5))
+ jscodeshift: 0.14.0(@babel/preset-env@7.26.8(@babel/core@7.26.8))
mkdirp: 0.5.6
nullthrows: 1.1.1
transitivePeerDependencies:
- supports-color
- '@react-native/codegen@0.74.83(@babel/preset-env@7.26.0(@babel/core@7.24.5))':
+ '@react-native/codegen@0.74.83(@babel/preset-env@7.26.8(@babel/core@7.24.5))':
dependencies:
- '@babel/parser': 7.25.7
- '@babel/preset-env': 7.26.0(@babel/core@7.24.5)
+ '@babel/parser': 7.26.3
+ '@babel/preset-env': 7.26.8(@babel/core@7.24.5)
glob: 7.2.3
hermes-parser: 0.19.1
invariant: 2.2.4
- jscodeshift: 0.14.0(@babel/preset-env@7.26.0(@babel/core@7.24.5))
+ jscodeshift: 0.14.0(@babel/preset-env@7.26.8(@babel/core@7.24.5))
mkdirp: 0.5.6
nullthrows: 1.1.1
transitivePeerDependencies:
@@ -30511,7 +29821,7 @@ snapshots:
'@react-native/codegen@0.74.87(@babel/preset-env@7.25.7(@babel/core@7.24.5))':
dependencies:
- '@babel/parser': 7.25.7
+ '@babel/parser': 7.26.3
'@babel/preset-env': 7.25.7(@babel/core@7.24.5)
glob: 7.2.3
hermes-parser: 0.19.1
@@ -30522,81 +29832,78 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@react-native/codegen@0.74.87(@babel/preset-env@7.25.7(@babel/core@7.26.0))':
+ '@react-native/codegen@0.74.87(@babel/preset-env@7.25.7(@babel/core@7.26.8))':
dependencies:
- '@babel/parser': 7.25.7
- '@babel/preset-env': 7.25.7(@babel/core@7.26.0)
+ '@babel/parser': 7.26.3
+ '@babel/preset-env': 7.25.7(@babel/core@7.26.8)
glob: 7.2.3
hermes-parser: 0.19.1
invariant: 2.2.4
- jscodeshift: 0.14.0(@babel/preset-env@7.25.7(@babel/core@7.26.0))
+ jscodeshift: 0.14.0(@babel/preset-env@7.25.7(@babel/core@7.26.8))
mkdirp: 0.5.6
nullthrows: 1.1.1
transitivePeerDependencies:
- supports-color
- '@react-native/codegen@0.74.87(@babel/preset-env@7.26.0(@babel/core@7.24.5))':
+ '@react-native/codegen@0.74.87(@babel/preset-env@7.26.8(@babel/core@7.24.5))':
dependencies:
- '@babel/parser': 7.25.7
- '@babel/preset-env': 7.26.0(@babel/core@7.24.5)
+ '@babel/parser': 7.26.3
+ '@babel/preset-env': 7.26.8(@babel/core@7.24.5)
glob: 7.2.3
hermes-parser: 0.19.1
invariant: 2.2.4
- jscodeshift: 0.14.0(@babel/preset-env@7.26.0(@babel/core@7.24.5))
+ jscodeshift: 0.14.0(@babel/preset-env@7.26.8(@babel/core@7.24.5))
mkdirp: 0.5.6
nullthrows: 1.1.1
transitivePeerDependencies:
- supports-color
- '@react-native/codegen@0.75.3(@babel/preset-env@7.25.7(@babel/core@7.26.0))':
+ '@react-native/codegen@0.75.3(@babel/preset-env@7.26.8(@babel/core@7.26.8))':
dependencies:
- '@babel/parser': 7.25.7
- '@babel/preset-env': 7.25.7(@babel/core@7.26.0)
+ '@babel/parser': 7.26.3
+ '@babel/preset-env': 7.26.8(@babel/core@7.26.8)
glob: 7.2.3
hermes-parser: 0.22.0
invariant: 2.2.4
- jscodeshift: 0.14.0(@babel/preset-env@7.25.7(@babel/core@7.26.0))
+ jscodeshift: 0.14.0(@babel/preset-env@7.26.8(@babel/core@7.26.8))
mkdirp: 0.5.6
nullthrows: 1.1.1
yargs: 17.7.2
transitivePeerDependencies:
- supports-color
- '@react-native/codegen@0.75.3(@babel/preset-env@7.26.0(@babel/core@7.25.7))':
+ '@react-native/codegen@0.77.0(@babel/preset-env@7.25.7(@babel/core@7.26.8))':
dependencies:
- '@babel/parser': 7.25.7
- '@babel/preset-env': 7.26.0(@babel/core@7.25.7)
+ '@babel/parser': 7.26.3
+ '@babel/preset-env': 7.25.7(@babel/core@7.26.8)
glob: 7.2.3
- hermes-parser: 0.22.0
+ hermes-parser: 0.25.1
invariant: 2.2.4
- jscodeshift: 0.14.0(@babel/preset-env@7.26.0(@babel/core@7.25.7))
- mkdirp: 0.5.6
+ jscodeshift: 17.1.2(@babel/preset-env@7.25.7(@babel/core@7.26.8))
nullthrows: 1.1.1
yargs: 17.7.2
transitivePeerDependencies:
- supports-color
- '@react-native/codegen@0.75.3(@babel/preset-env@7.26.0(@babel/core@7.26.0))':
+ '@react-native/codegen@0.77.0(@babel/preset-env@7.26.8(@babel/core@7.26.8))':
dependencies:
- '@babel/parser': 7.25.7
- '@babel/preset-env': 7.26.0(@babel/core@7.26.0)
+ '@babel/parser': 7.26.3
+ '@babel/preset-env': 7.26.8(@babel/core@7.26.8)
glob: 7.2.3
- hermes-parser: 0.22.0
+ hermes-parser: 0.25.1
invariant: 2.2.4
- jscodeshift: 0.14.0(@babel/preset-env@7.26.0(@babel/core@7.26.0))
- mkdirp: 0.5.6
+ jscodeshift: 17.1.2(@babel/preset-env@7.26.8(@babel/core@7.26.8))
nullthrows: 1.1.1
yargs: 17.7.2
transitivePeerDependencies:
- supports-color
- optional: true
- '@react-native/community-cli-plugin@0.74.83(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)':
+ '@react-native/community-cli-plugin@0.74.83(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13)':
dependencies:
'@react-native-community/cli-server-api': 13.6.6(encoding@0.1.13)
'@react-native-community/cli-tools': 13.6.6(encoding@0.1.13)
'@react-native/dev-middleware': 0.74.83(encoding@0.1.13)
- '@react-native/metro-babel-transformer': 0.74.83(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))
+ '@react-native/metro-babel-transformer': 0.74.83(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))
chalk: 4.1.2
execa: 5.1.1
metro: 0.80.12
@@ -30635,12 +29942,12 @@ snapshots:
- supports-color
- utf-8-validate
- '@react-native/community-cli-plugin@0.74.87(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(encoding@0.1.13)':
+ '@react-native/community-cli-plugin@0.74.87(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(encoding@0.1.13)':
dependencies:
'@react-native-community/cli-server-api': 13.6.9(encoding@0.1.13)
'@react-native-community/cli-tools': 13.6.9(encoding@0.1.13)
'@react-native/dev-middleware': 0.74.87(encoding@0.1.13)
- '@react-native/metro-babel-transformer': 0.74.87(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))
+ '@react-native/metro-babel-transformer': 0.74.87(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))
chalk: 4.1.2
execa: 5.1.1
metro: 0.80.12
@@ -30657,12 +29964,12 @@ snapshots:
- supports-color
- utf-8-validate
- '@react-native/community-cli-plugin@0.75.3(@babel/core@7.25.7)(@babel/preset-env@7.26.0(@babel/core@7.25.7))(encoding@0.1.13)':
+ '@react-native/community-cli-plugin@0.75.3(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))(encoding@0.1.13)':
dependencies:
'@react-native-community/cli-server-api': 14.1.0
'@react-native-community/cli-tools': 14.1.0
'@react-native/dev-middleware': 0.75.3(encoding@0.1.13)
- '@react-native/metro-babel-transformer': 0.75.3(@babel/core@7.25.7)(@babel/preset-env@7.26.0(@babel/core@7.25.7))
+ '@react-native/metro-babel-transformer': 0.75.3(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))
chalk: 4.1.2
execa: 5.1.1
metro: 0.80.12
@@ -30678,48 +29985,45 @@ snapshots:
- supports-color
- utf-8-validate
- '@react-native/community-cli-plugin@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(encoding@0.1.13)':
+ '@react-native/community-cli-plugin@0.77.0(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))':
dependencies:
- '@react-native-community/cli-server-api': 14.1.0
- '@react-native-community/cli-tools': 14.1.0
- '@react-native/dev-middleware': 0.75.3(encoding@0.1.13)
- '@react-native/metro-babel-transformer': 0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))
+ '@react-native/dev-middleware': 0.77.0
+ '@react-native/metro-babel-transformer': 0.77.0(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))
chalk: 4.1.2
- execa: 5.1.1
- metro: 0.80.12
- metro-config: 0.80.12
- metro-core: 0.80.12
- node-fetch: 2.7.0(encoding@0.1.13)
+ debug: 2.6.9
+ invariant: 2.2.4
+ metro: 0.81.1
+ metro-config: 0.81.1
+ metro-core: 0.81.1
readline: 1.3.0
+ semver: 7.6.3
transitivePeerDependencies:
- '@babel/core'
- '@babel/preset-env'
- bufferutil
- - encoding
- supports-color
- utf-8-validate
- '@react-native/community-cli-plugin@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(encoding@0.1.13)':
+ '@react-native/community-cli-plugin@0.77.0(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))(@react-native-community/cli-server-api@15.1.3)':
dependencies:
- '@react-native-community/cli-server-api': 14.1.0
- '@react-native-community/cli-tools': 14.1.0
- '@react-native/dev-middleware': 0.75.3(encoding@0.1.13)
- '@react-native/metro-babel-transformer': 0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))
+ '@react-native/dev-middleware': 0.77.0
+ '@react-native/metro-babel-transformer': 0.77.0(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))
chalk: 4.1.2
- execa: 5.1.1
- metro: 0.80.12
- metro-config: 0.80.12
- metro-core: 0.80.12
- node-fetch: 2.7.0(encoding@0.1.13)
+ debug: 2.6.9
+ invariant: 2.2.4
+ metro: 0.81.1
+ metro-config: 0.81.1
+ metro-core: 0.81.1
readline: 1.3.0
+ semver: 7.6.3
+ optionalDependencies:
+ '@react-native-community/cli-server-api': 15.1.3
transitivePeerDependencies:
- '@babel/core'
- '@babel/preset-env'
- bufferutil
- - encoding
- supports-color
- utf-8-validate
- optional: true
'@react-native/debugger-frontend@0.74.83': {}
@@ -30729,6 +30033,8 @@ snapshots:
'@react-native/debugger-frontend@0.75.3': {}
+ '@react-native/debugger-frontend@0.77.0': {}
+
'@react-native/dev-middleware@0.74.83(encoding@0.1.13)':
dependencies:
'@isaacs/ttlcache': 1.4.1
@@ -30812,10 +30118,28 @@ snapshots:
- supports-color
- utf-8-validate
+ '@react-native/dev-middleware@0.77.0':
+ dependencies:
+ '@isaacs/ttlcache': 1.4.1
+ '@react-native/debugger-frontend': 0.77.0
+ chrome-launcher: 0.15.2
+ chromium-edge-launcher: 0.2.0
+ connect: 3.7.0
+ debug: 2.6.9
+ nullthrows: 1.1.1
+ open: 7.4.2
+ selfsigned: 2.4.1
+ serve-static: 1.16.2
+ ws: 6.2.3
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+
'@react-native/eslint-config@0.73.2(eslint@8.57.1)(prettier@3.3.3)(typescript@5.8.2)':
dependencies:
'@babel/core': 7.24.5
- '@babel/eslint-parser': 7.25.8(@babel/core@7.25.7)(eslint@8.57.1)
+ '@babel/eslint-parser': 7.25.8(@babel/core@7.24.5)(eslint@8.57.1)
'@react-native/eslint-plugin': 0.73.1
'@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.8.2))(eslint@8.57.1)(typescript@5.8.2)
'@typescript-eslint/parser': 5.62.0(eslint@8.57.1)(typescript@5.8.2)
@@ -30834,8 +30158,31 @@ snapshots:
- supports-color
- typescript
+ '@react-native/eslint-config@0.77.0(eslint@8.57.1)(prettier@3.3.3)(typescript@5.8.2)':
+ dependencies:
+ '@babel/core': 7.26.8
+ '@babel/eslint-parser': 7.25.8(@babel/core@7.26.8)(eslint@8.57.1)
+ '@react-native/eslint-plugin': 0.77.0
+ '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.8.2))(eslint@8.57.1)(typescript@5.8.2)
+ '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.8.2)
+ eslint: 8.57.1
+ eslint-config-prettier: 8.10.0(eslint@8.57.1)
+ eslint-plugin-eslint-comments: 3.2.0(eslint@8.57.1)
+ eslint-plugin-ft-flow: 2.0.3(@babel/eslint-parser@7.25.8(@babel/core@7.26.8)(eslint@8.57.1))(eslint@8.57.1)
+ eslint-plugin-jest: 27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.8.2))(eslint@8.57.1)(typescript@5.8.2))(eslint@8.57.1)(typescript@5.8.2)
+ eslint-plugin-react: 7.37.1(eslint@8.57.1)
+ eslint-plugin-react-hooks: 4.6.2(eslint@8.57.1)
+ eslint-plugin-react-native: 4.1.0(eslint@8.57.1)
+ prettier: 3.3.3
+ transitivePeerDependencies:
+ - jest
+ - supports-color
+ - typescript
+
'@react-native/eslint-plugin@0.73.1': {}
+ '@react-native/eslint-plugin@0.77.0': {}
+
'@react-native/gradle-plugin@0.72.11': {}
'@react-native/gradle-plugin@0.74.83': {}
@@ -30844,6 +30191,8 @@ snapshots:
'@react-native/gradle-plugin@0.75.3': {}
+ '@react-native/gradle-plugin@0.77.0': {}
+
'@react-native/js-polyfills@0.72.1': {}
'@react-native/js-polyfills@0.74.83': {}
@@ -30852,10 +30201,12 @@ snapshots:
'@react-native/js-polyfills@0.75.3': {}
- '@react-native/metro-babel-transformer@0.74.83(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))':
+ '@react-native/js-polyfills@0.77.0': {}
+
+ '@react-native/metro-babel-transformer@0.74.83(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))':
dependencies:
'@babel/core': 7.24.5
- '@react-native/babel-preset': 0.74.83(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))
+ '@react-native/babel-preset': 0.74.83(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))
hermes-parser: 0.19.1
nullthrows: 1.1.1
transitivePeerDependencies:
@@ -30872,46 +30223,56 @@ snapshots:
- '@babel/preset-env'
- supports-color
- '@react-native/metro-babel-transformer@0.74.87(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))':
+ '@react-native/metro-babel-transformer@0.74.87(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))':
dependencies:
- '@babel/core': 7.26.0
- '@react-native/babel-preset': 0.74.87(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))
+ '@babel/core': 7.26.8
+ '@react-native/babel-preset': 0.74.87(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))
hermes-parser: 0.19.1
nullthrows: 1.1.1
transitivePeerDependencies:
- '@babel/preset-env'
- supports-color
- '@react-native/metro-babel-transformer@0.75.3(@babel/core@7.25.7)(@babel/preset-env@7.26.0(@babel/core@7.25.7))':
+ '@react-native/metro-babel-transformer@0.75.3(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))':
dependencies:
- '@babel/core': 7.25.7
- '@react-native/babel-preset': 0.75.3(@babel/core@7.25.7)(@babel/preset-env@7.26.0(@babel/core@7.25.7))
+ '@babel/core': 7.26.8
+ '@react-native/babel-preset': 0.75.3(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))
hermes-parser: 0.22.0
nullthrows: 1.1.1
transitivePeerDependencies:
- '@babel/preset-env'
- supports-color
- '@react-native/metro-babel-transformer@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))':
+ '@react-native/metro-babel-transformer@0.77.0(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))':
dependencies:
- '@babel/core': 7.26.0
- '@react-native/babel-preset': 0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))
- hermes-parser: 0.22.0
+ '@babel/core': 7.26.8
+ '@react-native/babel-preset': 0.77.0(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))
+ hermes-parser: 0.25.1
nullthrows: 1.1.1
transitivePeerDependencies:
- '@babel/preset-env'
- supports-color
- '@react-native/metro-babel-transformer@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))':
+ '@react-native/metro-babel-transformer@0.77.0(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))':
dependencies:
- '@babel/core': 7.26.0
- '@react-native/babel-preset': 0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))
- hermes-parser: 0.22.0
+ '@babel/core': 7.26.8
+ '@react-native/babel-preset': 0.77.0(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))
+ hermes-parser: 0.25.1
nullthrows: 1.1.1
transitivePeerDependencies:
- '@babel/preset-env'
- supports-color
- optional: true
+
+ '@react-native/metro-config@0.77.0(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))':
+ dependencies:
+ '@react-native/js-polyfills': 0.77.0
+ '@react-native/metro-babel-transformer': 0.77.0(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))
+ metro-config: 0.81.1
+ metro-runtime: 0.81.1
+ transitivePeerDependencies:
+ - '@babel/core'
+ - '@babel/preset-env'
+ - supports-color
'@react-native/normalize-color@2.1.0': {}
@@ -30929,18 +30290,22 @@ snapshots:
'@react-native/normalize-colors@0.75.3': {}
- '@react-native/virtualized-lists@0.72.8(react-native@0.72.4(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)(react@18.2.0))':
+ '@react-native/normalize-colors@0.77.0': {}
+
+ '@react-native/typescript-config@0.77.0': {}
+
+ '@react-native/virtualized-lists@0.72.8(react-native@0.72.4(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))(encoding@0.1.13)(react@18.2.0))':
dependencies:
invariant: 2.2.4
nullthrows: 1.1.1
- react-native: 0.72.4(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.72.4(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))(encoding@0.1.13)(react@18.2.0)
- '@react-native/virtualized-lists@0.74.83(@types/react@18.3.11)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@react-native/virtualized-lists@0.74.83(@types/react@18.3.11)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
invariant: 2.2.4
nullthrows: 1.1.1
react: 18.2.0
- react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
optionalDependencies:
'@types/react': 18.3.11
@@ -30953,52 +30318,51 @@ snapshots:
optionalDependencies:
'@types/react': 18.2.79
- '@react-native/virtualized-lists@0.74.87(@types/react@18.2.79)(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@react-native/virtualized-lists@0.74.87(@types/react@18.2.79)(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
invariant: 2.2.4
nullthrows: 1.1.1
react: 18.2.0
- react-native: 0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
optionalDependencies:
'@types/react': 18.2.79
- '@react-native/virtualized-lists@0.75.3(@types/react@18.3.11)(react-native@0.75.3(@babel/core@7.25.7)(@babel/preset-env@7.26.0(@babel/core@7.25.7))(@types/react@18.3.11)(encoding@0.1.13)(react@18.3.1)(typescript@5.8.2))(react@18.3.1)':
+ '@react-native/virtualized-lists@0.75.3(@types/react@18.3.11)(react-native@0.75.3(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))(@types/react@18.3.11)(encoding@0.1.13)(react@18.3.1)(typescript@5.8.2))(react@18.3.1)':
dependencies:
invariant: 2.2.4
nullthrows: 1.1.1
react: 18.3.1
- react-native: 0.75.3(@babel/core@7.25.7)(@babel/preset-env@7.26.0(@babel/core@7.25.7))(@types/react@18.3.11)(encoding@0.1.13)(react@18.3.1)(typescript@5.8.2)
+ react-native: 0.75.3(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))(@types/react@18.3.11)(encoding@0.1.13)(react@18.3.1)(typescript@5.8.2)
optionalDependencies:
'@types/react': 18.3.11
- '@react-native/virtualized-lists@0.75.3(@types/react@18.3.12)(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.3.12)(encoding@0.1.13)(react@18.2.0)(typescript@5.5.4))(react@18.2.0)':
+ '@react-native/virtualized-lists@0.77.0(@types/react@18.3.18)(react-native@0.77.0(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)':
dependencies:
invariant: 2.2.4
nullthrows: 1.1.1
react: 18.2.0
- react-native: 0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.3.12)(encoding@0.1.13)(react@18.2.0)(typescript@5.5.4)
+ react-native: 0.77.0(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.3.18)(react@18.2.0)
optionalDependencies:
- '@types/react': 18.3.12
+ '@types/react': 18.3.18
- '@react-native/virtualized-lists@0.75.3(@types/react@18.3.12)(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1)(typescript@5.8.2))(react@18.3.1)':
+ '@react-native/virtualized-lists@0.77.0(@types/react@18.3.18)(react-native@0.77.0(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))(@react-native-community/cli-server-api@15.1.3)(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)':
dependencies:
invariant: 2.2.4
nullthrows: 1.1.1
react: 18.3.1
- react-native: 0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1)(typescript@5.8.2)
+ react-native: 0.77.0(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))(@react-native-community/cli-server-api@15.1.3)(@types/react@18.3.18)(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.12
- optional: true
+ '@types/react': 18.3.18
- '@react-navigation/bottom-tabs@6.5.20(@react-navigation/native@6.1.18(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-screens@3.31.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@react-navigation/bottom-tabs@6.5.20(@react-navigation/native@6.1.18(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-screens@3.31.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
- '@react-navigation/elements': 1.3.31(@react-navigation/native@6.1.18(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@react-navigation/native': 6.1.18(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@react-navigation/elements': 1.3.31(@react-navigation/native@6.1.18(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@react-navigation/native': 6.1.18(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
color: 4.2.3
react: 18.2.0
- react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
- react-native-safe-area-context: 4.10.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- react-native-screens: 3.31.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
+ react-native-safe-area-context: 4.10.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ react-native-screens: 3.31.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
warn-once: 0.1.1
'@react-navigation/bottom-tabs@6.5.20(@react-navigation/native@6.1.18(react-native@0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-screens@3.31.1(react-native@0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
@@ -31012,15 +30376,15 @@ snapshots:
react-native-screens: 3.31.1(react-native@0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
warn-once: 0.1.1
- '@react-navigation/bottom-tabs@6.5.20(@react-navigation/native@6.1.18(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-screens@3.31.1(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@react-navigation/bottom-tabs@6.5.20(@react-navigation/native@6.1.18(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-screens@3.31.1(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
- '@react-navigation/elements': 1.3.31(@react-navigation/native@6.1.18(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@react-navigation/native': 6.1.18(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@react-navigation/elements': 1.3.31(@react-navigation/native@6.1.18(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@react-navigation/native': 6.1.18(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
color: 4.2.3
react: 18.2.0
- react-native: 0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
- react-native-safe-area-context: 4.10.5(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- react-native-screens: 3.31.1(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ react-native: 0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
+ react-native-safe-area-context: 4.10.5(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ react-native-screens: 3.31.1(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
warn-once: 0.1.1
'@react-navigation/core@3.7.9(react@18.2.0)':
@@ -31041,20 +30405,6 @@ snapshots:
react-is: 16.13.1
use-latest-callback: 0.2.1(react@18.2.0)
- '@react-navigation/drawer@6.7.2(bmedeebhe3ixiqe753c2r26xfi)':
- dependencies:
- '@react-navigation/elements': 1.3.31(@react-navigation/native@6.1.18(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@react-navigation/native': 6.1.18(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- color: 4.2.3
- react: 18.2.0
- react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
- react-native-gesture-handler: 2.16.2(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- react-native-reanimated: 3.10.1(@babel/core@7.24.5)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- react-native-safe-area-context: 4.10.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- react-native-screens: 3.31.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- warn-once: 0.1.1
- optional: true
-
'@react-navigation/drawer@6.7.2(f5uupuoecme7pb3346nlwm73my)':
dependencies:
'@react-navigation/elements': 1.3.31(@react-navigation/native@6.1.18(react-native@0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
@@ -31068,25 +30418,39 @@ snapshots:
react-native-screens: 3.31.1(react-native@0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
warn-once: 0.1.1
- '@react-navigation/drawer@6.7.2(yaao3llbshooz2bjipuf6mkduy)':
+ '@react-navigation/drawer@6.7.2(tpeb27s7cxfw5d6bhcsc6gheay)':
+ dependencies:
+ '@react-navigation/elements': 1.3.31(@react-navigation/native@6.1.18(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@react-navigation/native': 6.1.18(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ color: 4.2.3
+ react: 18.2.0
+ react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
+ react-native-gesture-handler: 2.16.2(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ react-native-reanimated: 3.10.1(@babel/core@7.24.5)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ react-native-safe-area-context: 4.10.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ react-native-screens: 3.31.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ warn-once: 0.1.1
+ optional: true
+
+ '@react-navigation/drawer@6.7.2(zv5tx5e2wsbl7ys627d5pvn3mm)':
dependencies:
- '@react-navigation/elements': 1.3.31(@react-navigation/native@6.1.18(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@react-navigation/native': 6.1.18(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@react-navigation/elements': 1.3.31(@react-navigation/native@6.1.18(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@react-navigation/native': 6.1.18(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
color: 4.2.3
react: 18.2.0
- react-native: 0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
- react-native-gesture-handler: 2.16.2(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- react-native-reanimated: 3.10.1(@babel/core@7.26.0)(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- react-native-safe-area-context: 4.10.5(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- react-native-screens: 3.31.1(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ react-native: 0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
+ react-native-gesture-handler: 2.16.2(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ react-native-reanimated: 3.10.1(@babel/core@7.26.8)(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ react-native-safe-area-context: 4.10.5(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ react-native-screens: 3.31.1(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
warn-once: 0.1.1
- '@react-navigation/elements@1.3.31(@react-navigation/native@6.1.18(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@react-navigation/elements@1.3.31(@react-navigation/native@6.1.18(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
- '@react-navigation/native': 6.1.18(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@react-navigation/native': 6.1.18(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
react: 18.2.0
- react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
- react-native-safe-area-context: 4.10.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
+ react-native-safe-area-context: 4.10.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@react-navigation/elements@1.3.31(@react-navigation/native@6.1.18(react-native@0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
@@ -31095,21 +30459,21 @@ snapshots:
react-native: 0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
react-native-safe-area-context: 4.10.5(react-native@0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@react-navigation/elements@1.3.31(@react-navigation/native@6.1.18(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@react-navigation/elements@1.3.31(@react-navigation/native@6.1.18(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
- '@react-navigation/native': 6.1.18(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@react-navigation/native': 6.1.18(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
react: 18.2.0
- react-native: 0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
- react-native-safe-area-context: 4.10.5(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ react-native: 0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
+ react-native-safe-area-context: 4.10.5(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@react-navigation/native-stack@6.9.26(@react-navigation/native@6.1.18(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-screens@3.31.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@react-navigation/native-stack@6.9.26(@react-navigation/native@6.1.18(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-screens@3.31.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
- '@react-navigation/elements': 1.3.31(@react-navigation/native@6.1.18(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@react-navigation/native': 6.1.18(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@react-navigation/elements': 1.3.31(@react-navigation/native@6.1.18(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@react-navigation/native': 6.1.18(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
react: 18.2.0
- react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
- react-native-safe-area-context: 4.10.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- react-native-screens: 3.31.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
+ react-native-safe-area-context: 4.10.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ react-native-screens: 3.31.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
warn-once: 0.1.1
'@react-navigation/native-stack@6.9.26(@react-navigation/native@6.1.18(react-native@0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-screens@3.31.1(react-native@0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
@@ -31122,14 +30486,14 @@ snapshots:
react-native-screens: 3.31.1(react-native@0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
warn-once: 0.1.1
- '@react-navigation/native-stack@6.9.26(@react-navigation/native@6.1.18(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-screens@3.31.1(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@react-navigation/native-stack@6.9.26(@react-navigation/native@6.1.18(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-screens@3.31.1(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
- '@react-navigation/elements': 1.3.31(@react-navigation/native@6.1.18(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@react-navigation/native': 6.1.18(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@react-navigation/elements': 1.3.31(@react-navigation/native@6.1.18(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@react-navigation/native': 6.1.18(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
react: 18.2.0
- react-native: 0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
- react-native-safe-area-context: 4.10.5(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- react-native-screens: 3.31.1(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ react-native: 0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
+ react-native-safe-area-context: 4.10.5(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ react-native-screens: 3.31.1(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
warn-once: 0.1.1
'@react-navigation/native@3.8.4(react-native@0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
@@ -31140,22 +30504,22 @@ snapshots:
- react
- react-native
- '@react-navigation/native@3.8.4(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@react-navigation/native@3.8.4(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
hoist-non-react-statics: 3.3.2
- react-native-safe-area-view: 0.14.9(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ react-native-safe-area-view: 0.14.9(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
transitivePeerDependencies:
- react
- react-native
- '@react-navigation/native@6.1.18(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@react-navigation/native@6.1.18(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
'@react-navigation/core': 6.4.17(react@18.2.0)
escape-string-regexp: 4.0.0
fast-deep-equal: 3.1.3
nanoid: 3.3.7
react: 18.2.0
- react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
'@react-navigation/native@6.1.18(react-native@0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
@@ -31166,14 +30530,14 @@ snapshots:
react: 18.2.0
react-native: 0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
- '@react-navigation/native@6.1.18(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@react-navigation/native@6.1.18(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
'@react-navigation/core': 6.4.17(react@18.2.0)
escape-string-regexp: 4.0.0
fast-deep-equal: 3.1.3
nanoid: 3.3.7
react: 18.2.0
- react-native: 0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
'@react-navigation/routers@6.1.9':
dependencies:
@@ -31292,9 +30656,9 @@ snapshots:
optionalDependencies:
rollup: 4.14.3
- '@rollup/plugin-babel@5.3.1(@babel/core@7.24.5)(@types/babel__core@7.20.5)(rollup@2.79.2)':
+ '@rollup/plugin-babel@5.3.1(@babel/core@7.26.8)(@types/babel__core@7.20.5)(rollup@2.79.2)':
dependencies:
- '@babel/core': 7.24.5
+ '@babel/core': 7.26.8
'@babel/helper-module-imports': 7.25.9
'@rollup/pluginutils': 3.1.0(rollup@2.79.2)
rollup: 2.79.2
@@ -31383,9 +30747,9 @@ snapshots:
optionalDependencies:
rollup: 2.79.2
- '@rollup/plugin-virtual@3.0.2(rollup@4.34.6)':
+ '@rollup/plugin-virtual@3.0.2(rollup@4.34.8)':
optionalDependencies:
- rollup: 4.34.6
+ rollup: 4.34.8
'@rollup/pluginutils@3.1.0(rollup@2.79.2)':
dependencies:
@@ -31410,13 +30774,13 @@ snapshots:
optionalDependencies:
rollup: 4.14.3
- '@rollup/pluginutils@5.1.2(rollup@4.34.6)':
+ '@rollup/pluginutils@5.1.2(rollup@4.34.8)':
dependencies:
'@types/estree': 1.0.6
estree-walker: 2.0.2
picomatch: 2.3.1
optionalDependencies:
- rollup: 4.34.6
+ rollup: 4.34.8
'@rollup/rollup-android-arm-eabi@4.14.3':
optional: true
@@ -31427,7 +30791,7 @@ snapshots:
'@rollup/rollup-android-arm-eabi@4.24.0':
optional: true
- '@rollup/rollup-android-arm-eabi@4.34.6':
+ '@rollup/rollup-android-arm-eabi@4.34.8':
optional: true
'@rollup/rollup-android-arm64@4.14.3':
@@ -31439,7 +30803,7 @@ snapshots:
'@rollup/rollup-android-arm64@4.24.0':
optional: true
- '@rollup/rollup-android-arm64@4.34.6':
+ '@rollup/rollup-android-arm64@4.34.8':
optional: true
'@rollup/rollup-darwin-arm64@4.14.3':
@@ -31451,7 +30815,7 @@ snapshots:
'@rollup/rollup-darwin-arm64@4.24.0':
optional: true
- '@rollup/rollup-darwin-arm64@4.34.6':
+ '@rollup/rollup-darwin-arm64@4.34.8':
optional: true
'@rollup/rollup-darwin-x64@4.14.3':
@@ -31463,13 +30827,13 @@ snapshots:
'@rollup/rollup-darwin-x64@4.24.0':
optional: true
- '@rollup/rollup-darwin-x64@4.34.6':
+ '@rollup/rollup-darwin-x64@4.34.8':
optional: true
- '@rollup/rollup-freebsd-arm64@4.34.6':
+ '@rollup/rollup-freebsd-arm64@4.34.8':
optional: true
- '@rollup/rollup-freebsd-x64@4.34.6':
+ '@rollup/rollup-freebsd-x64@4.34.8':
optional: true
'@rollup/rollup-linux-arm-gnueabihf@4.14.3':
@@ -31481,7 +30845,7 @@ snapshots:
'@rollup/rollup-linux-arm-gnueabihf@4.24.0':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.34.6':
+ '@rollup/rollup-linux-arm-gnueabihf@4.34.8':
optional: true
'@rollup/rollup-linux-arm-musleabihf@4.14.3':
@@ -31493,7 +30857,7 @@ snapshots:
'@rollup/rollup-linux-arm-musleabihf@4.24.0':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.34.6':
+ '@rollup/rollup-linux-arm-musleabihf@4.34.8':
optional: true
'@rollup/rollup-linux-arm64-gnu@4.14.3':
@@ -31505,7 +30869,7 @@ snapshots:
'@rollup/rollup-linux-arm64-gnu@4.24.0':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.34.6':
+ '@rollup/rollup-linux-arm64-gnu@4.34.8':
optional: true
'@rollup/rollup-linux-arm64-musl@4.14.3':
@@ -31517,10 +30881,10 @@ snapshots:
'@rollup/rollup-linux-arm64-musl@4.24.0':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.34.6':
+ '@rollup/rollup-linux-arm64-musl@4.34.8':
optional: true
- '@rollup/rollup-linux-loongarch64-gnu@4.34.6':
+ '@rollup/rollup-linux-loongarch64-gnu@4.34.8':
optional: true
'@rollup/rollup-linux-powerpc64le-gnu@4.14.3':
@@ -31532,7 +30896,7 @@ snapshots:
'@rollup/rollup-linux-powerpc64le-gnu@4.24.0':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.34.6':
+ '@rollup/rollup-linux-powerpc64le-gnu@4.34.8':
optional: true
'@rollup/rollup-linux-riscv64-gnu@4.14.3':
@@ -31544,7 +30908,7 @@ snapshots:
'@rollup/rollup-linux-riscv64-gnu@4.24.0':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.34.6':
+ '@rollup/rollup-linux-riscv64-gnu@4.34.8':
optional: true
'@rollup/rollup-linux-s390x-gnu@4.14.3':
@@ -31556,7 +30920,7 @@ snapshots:
'@rollup/rollup-linux-s390x-gnu@4.24.0':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.34.6':
+ '@rollup/rollup-linux-s390x-gnu@4.34.8':
optional: true
'@rollup/rollup-linux-x64-gnu@4.14.3':
@@ -31568,7 +30932,7 @@ snapshots:
'@rollup/rollup-linux-x64-gnu@4.24.0':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.34.6':
+ '@rollup/rollup-linux-x64-gnu@4.34.8':
optional: true
'@rollup/rollup-linux-x64-musl@4.14.3':
@@ -31580,7 +30944,7 @@ snapshots:
'@rollup/rollup-linux-x64-musl@4.24.0':
optional: true
- '@rollup/rollup-linux-x64-musl@4.34.6':
+ '@rollup/rollup-linux-x64-musl@4.34.8':
optional: true
'@rollup/rollup-win32-arm64-msvc@4.14.3':
@@ -31592,7 +30956,7 @@ snapshots:
'@rollup/rollup-win32-arm64-msvc@4.24.0':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.34.6':
+ '@rollup/rollup-win32-arm64-msvc@4.34.8':
optional: true
'@rollup/rollup-win32-ia32-msvc@4.14.3':
@@ -31604,7 +30968,7 @@ snapshots:
'@rollup/rollup-win32-ia32-msvc@4.24.0':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.34.6':
+ '@rollup/rollup-win32-ia32-msvc@4.34.8':
optional: true
'@rollup/rollup-win32-x64-msvc@4.14.3':
@@ -31616,7 +30980,7 @@ snapshots:
'@rollup/rollup-win32-x64-msvc@4.24.0':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.34.6':
+ '@rollup/rollup-win32-x64-msvc@4.34.8':
optional: true
'@rspack/binding-darwin-arm64@1.1.8':
@@ -31752,12 +31116,12 @@ snapshots:
'@shikijs/vscode-textmate@9.3.1': {}
- '@shopify/flash-list@1.6.4(@babel/runtime@7.26.0)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@shopify/flash-list@1.6.4(@babel/runtime@7.26.7)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.26.7
react: 18.2.0
- react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
- recyclerlistview: 4.2.0(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
+ recyclerlistview: 4.2.0(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
tslib: 2.4.0
'@sideway/address@4.1.5':
@@ -31818,7 +31182,7 @@ snapshots:
'@slorber/react-helmet-async@1.3.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.26.7
invariant: 2.2.4
prop-types: 15.8.1
react: 18.2.0
@@ -31931,54 +31295,54 @@ snapshots:
magic-string: 0.25.9
string.prototype.matchall: 4.0.11
- '@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.24.5)':
+ '@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.24.5
+ '@babel/core': 7.26.8
- '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.24.5)':
+ '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.24.5
+ '@babel/core': 7.26.8
- '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.24.5)':
+ '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.24.5
+ '@babel/core': 7.26.8
- '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.24.5)':
+ '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.24.5
+ '@babel/core': 7.26.8
- '@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.24.5)':
+ '@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.24.5
+ '@babel/core': 7.26.8
- '@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.24.5)':
+ '@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.24.5
+ '@babel/core': 7.26.8
- '@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.24.5)':
+ '@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.24.5
+ '@babel/core': 7.26.8
- '@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.24.5)':
+ '@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.24.5
+ '@babel/core': 7.26.8
- '@svgr/babel-preset@8.1.0(@babel/core@7.24.5)':
+ '@svgr/babel-preset@8.1.0(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.24.5
- '@svgr/babel-plugin-add-jsx-attribute': 8.0.0(@babel/core@7.24.5)
- '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.24.5)
- '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.24.5)
- '@svgr/babel-plugin-replace-jsx-attribute-value': 8.0.0(@babel/core@7.24.5)
- '@svgr/babel-plugin-svg-dynamic-title': 8.0.0(@babel/core@7.24.5)
- '@svgr/babel-plugin-svg-em-dimensions': 8.0.0(@babel/core@7.24.5)
- '@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.24.5)
- '@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.24.5)
+ '@babel/core': 7.26.8
+ '@svgr/babel-plugin-add-jsx-attribute': 8.0.0(@babel/core@7.26.8)
+ '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.26.8)
+ '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.26.8)
+ '@svgr/babel-plugin-replace-jsx-attribute-value': 8.0.0(@babel/core@7.26.8)
+ '@svgr/babel-plugin-svg-dynamic-title': 8.0.0(@babel/core@7.26.8)
+ '@svgr/babel-plugin-svg-em-dimensions': 8.0.0(@babel/core@7.26.8)
+ '@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.26.8)
+ '@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.26.8)
'@svgr/core@8.1.0(typescript@5.5.4)':
dependencies:
- '@babel/core': 7.24.5
- '@svgr/babel-preset': 8.1.0(@babel/core@7.24.5)
+ '@babel/core': 7.26.8
+ '@svgr/babel-preset': 8.1.0(@babel/core@7.26.8)
camelcase: 6.3.0
cosmiconfig: 8.3.6(typescript@5.5.4)
snake-case: 3.0.4
@@ -31993,8 +31357,8 @@ snapshots:
'@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.5.4))':
dependencies:
- '@babel/core': 7.24.5
- '@svgr/babel-preset': 8.1.0(@babel/core@7.24.5)
+ '@babel/core': 7.26.8
+ '@svgr/babel-preset': 8.1.0(@babel/core@7.26.8)
'@svgr/core': 8.1.0(typescript@5.5.4)
'@svgr/hast-util-to-babel-ast': 8.0.0
svg-parser: 2.0.4
@@ -32012,11 +31376,11 @@ snapshots:
'@svgr/webpack@8.1.0(typescript@5.5.4)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/plugin-transform-react-constant-elements': 7.25.7(@babel/core@7.24.5)
- '@babel/preset-env': 7.26.0(@babel/core@7.24.5)
- '@babel/preset-react': 7.26.3(@babel/core@7.24.5)
- '@babel/preset-typescript': 7.26.0(@babel/core@7.24.5)
+ '@babel/core': 7.26.8
+ '@babel/plugin-transform-react-constant-elements': 7.25.7(@babel/core@7.26.8)
+ '@babel/preset-env': 7.26.8(@babel/core@7.26.8)
+ '@babel/preset-react': 7.26.3(@babel/core@7.26.8)
+ '@babel/preset-typescript': 7.26.0(@babel/core@7.26.8)
'@svgr/core': 8.1.0(typescript@5.5.4)
'@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.5.4))
'@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0(typescript@5.5.4))(typescript@5.5.4)
@@ -32204,25 +31568,25 @@ snapshots:
transitivePeerDependencies:
- react
- '@tamagui/alert-dialog@1.79.6(@types/react@18.3.11)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@tamagui/alert-dialog@1.79.6(@types/react@18.3.11)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
'@tamagui/animate-presence': 1.79.6(react@18.2.0)
'@tamagui/aria-hidden': 1.79.6(react@18.2.0)
'@tamagui/compose-refs': 1.79.6(react@18.2.0)
'@tamagui/core': 1.79.6(react@18.2.0)
'@tamagui/create-context': 1.79.6(react@18.2.0)
- '@tamagui/dialog': 1.79.6(@types/react@18.3.11)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/dialog': 1.79.6(@types/react@18.3.11)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/dismissable': 1.79.6(react@18.2.0)
'@tamagui/focus-scope': 1.79.6(react@18.2.0)
'@tamagui/polyfill-dev': 1.79.6
- '@tamagui/popper': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@tamagui/portal': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/popper': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/portal': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/remove-scroll': 1.79.6(@types/react@18.3.11)(react@18.2.0)
'@tamagui/stacks': 1.79.6(react@18.2.0)
- '@tamagui/text': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/text': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/use-controllable-state': 1.79.6(react@18.2.0)
react: 18.2.0
- react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
transitivePeerDependencies:
- '@types/react'
@@ -32247,36 +31611,36 @@ snapshots:
'@tamagui/web': 1.79.6(react@18.3.1)
react: 18.3.1
- '@tamagui/animations-moti@1.79.6(react-dom@18.2.0(react@18.2.0))(react-native-reanimated@3.10.1(@babel/core@7.24.5)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react@18.2.0)':
+ '@tamagui/animations-moti@1.79.6(react-dom@18.2.0(react@18.2.0))(react-native-reanimated@3.10.1(@babel/core@7.24.5)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react@18.2.0)':
dependencies:
'@tamagui/use-presence': 1.79.6(react@18.2.0)
'@tamagui/web': 1.79.6(react@18.2.0)
- moti: 0.25.4(react-dom@18.2.0(react@18.2.0))(react-native-reanimated@3.10.1(@babel/core@7.24.5)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react@18.2.0)
+ moti: 0.25.4(react-dom@18.2.0(react@18.2.0))(react-native-reanimated@3.10.1(@babel/core@7.24.5)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react@18.2.0)
transitivePeerDependencies:
- react
- react-dom
- react-native-reanimated
- '@tamagui/animations-react-native@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@tamagui/animations-react-native@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
'@tamagui/use-presence': 1.79.6(react@18.2.0)
'@tamagui/web': 1.79.6(react@18.2.0)
react: 18.2.0
- react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
'@tamagui/aria-hidden@1.79.6(react@18.2.0)':
dependencies:
aria-hidden: 1.2.4
react: 18.2.0
- '@tamagui/avatar@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@tamagui/avatar@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
'@tamagui/core': 1.79.6(react@18.2.0)
- '@tamagui/image': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/image': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/shapes': 1.79.6(react@18.2.0)
- '@tamagui/text': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/text': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
react: 18.2.0
- react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
'@tamagui/babel-plugin@1.79.6(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
@@ -32302,36 +31666,36 @@ snapshots:
fs-extra: 11.2.0
get-tsconfig: 4.8.1
lodash.debounce: 4.0.8
- typescript: 5.7.2
+ typescript: 5.8.2
- '@tamagui/button@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@tamagui/button@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
'@tamagui/font-size': 1.79.6(react@18.2.0)
- '@tamagui/get-button-sized': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@tamagui/helpers-tamagui': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@tamagui/text': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/get-button-sized': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/helpers-tamagui': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/text': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/web': 1.79.6(react@18.2.0)
react: 18.2.0
transitivePeerDependencies:
- react-native
- '@tamagui/card@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@tamagui/card@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
'@tamagui/create-context': 1.79.6(react@18.2.0)
'@tamagui/stacks': 1.79.6(react@18.2.0)
'@tamagui/web': 1.79.6(react@18.2.0)
react: 18.2.0
- react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
- '@tamagui/checkbox@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@tamagui/checkbox@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
'@tamagui/core': 1.79.6(react@18.2.0)
'@tamagui/create-context': 1.79.6(react@18.2.0)
'@tamagui/focusable': 1.79.6(react@18.2.0)
'@tamagui/font-size': 1.79.6(react@18.2.0)
- '@tamagui/get-token': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@tamagui/helpers-tamagui': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@tamagui/label': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/get-token': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/helpers-tamagui': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/label': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/stacks': 1.79.6(react@18.2.0)
'@tamagui/use-controllable-state': 1.79.6(react@18.2.0)
'@tamagui/use-previous': 1.79.6
@@ -32379,15 +31743,15 @@ snapshots:
transitivePeerDependencies:
- react
- '@tamagui/config@1.79.6(react-dom@18.2.0(react@18.2.0))(react-native-reanimated@3.10.1(@babel/core@7.24.5)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@tamagui/config@1.79.6(react-dom@18.2.0(react@18.2.0))(react-native-reanimated@3.10.1(@babel/core@7.24.5)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
'@tamagui/animations-css': 1.79.6
- '@tamagui/animations-moti': 1.79.6(react-dom@18.2.0(react@18.2.0))(react-native-reanimated@3.10.1(@babel/core@7.24.5)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@tamagui/animations-react-native': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/animations-moti': 1.79.6(react-dom@18.2.0(react@18.2.0))(react-native-reanimated@3.10.1(@babel/core@7.24.5)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react@18.2.0)
+ '@tamagui/animations-react-native': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/colors': 1.79.6
'@tamagui/font-inter': 1.79.6(react@18.2.0)
'@tamagui/font-silkscreen': 1.79.6(react@18.2.0)
- '@tamagui/react-native-media-driver': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/react-native-media-driver': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/shorthands': 1.79.6
'@tamagui/themes': 1.79.6(react@18.2.0)
'@tamagui/web': 1.79.6(react@18.2.0)
@@ -32425,7 +31789,7 @@ snapshots:
'@tamagui/cubic-bezier-animator@1.79.6': {}
- '@tamagui/dialog@1.79.6(@types/react@18.3.11)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@tamagui/dialog@1.79.6(@types/react@18.3.11)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
'@tamagui/adapt': 1.79.6(react@18.2.0)
'@tamagui/animate-presence': 1.79.6(react@18.2.0)
@@ -32436,15 +31800,15 @@ snapshots:
'@tamagui/dismissable': 1.79.6(react@18.2.0)
'@tamagui/focus-scope': 1.79.6(react@18.2.0)
'@tamagui/polyfill-dev': 1.79.6
- '@tamagui/popper': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@tamagui/portal': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/popper': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/portal': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/remove-scroll': 1.79.6(@types/react@18.3.11)(react@18.2.0)
- '@tamagui/sheet': 1.79.6(@types/react@18.3.11)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/sheet': 1.79.6(@types/react@18.3.11)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/stacks': 1.79.6(react@18.2.0)
- '@tamagui/text': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/text': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/use-controllable-state': 1.79.6(react@18.2.0)
react: 18.2.0
- react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
transitivePeerDependencies:
- '@types/react'
@@ -32458,10 +31822,10 @@ snapshots:
'@tamagui/fake-react-native@1.79.6': {}
- '@tamagui/floating@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@tamagui/floating@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
'@floating-ui/react-dom': 2.1.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@floating-ui/react-native': 0.10.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@floating-ui/react-native': 0.10.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
transitivePeerDependencies:
@@ -32496,15 +31860,15 @@ snapshots:
'@tamagui/core': 1.79.6(react@18.2.0)
react: 18.2.0
- '@tamagui/form@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@tamagui/form@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
'@tamagui/compose-refs': 1.79.6(react@18.2.0)
'@tamagui/core': 1.79.6(react@18.2.0)
'@tamagui/create-context': 1.79.6(react@18.2.0)
'@tamagui/focusable': 1.79.6(react@18.2.0)
- '@tamagui/get-button-sized': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/get-button-sized': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/get-font-sized': 1.79.6(react@18.2.0)
- '@tamagui/text': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/text': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
react: 18.2.0
transitivePeerDependencies:
- react-native
@@ -32520,9 +31884,9 @@ snapshots:
- react
- supports-color
- '@tamagui/get-button-sized@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@tamagui/get-button-sized@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
- '@tamagui/get-token': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/get-token': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/web': 1.79.6(react@18.2.0)
react: 18.2.0
transitivePeerDependencies:
@@ -32533,11 +31897,11 @@ snapshots:
'@tamagui/core': 1.79.6(react@18.2.0)
react: 18.2.0
- '@tamagui/get-token@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@tamagui/get-token@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
'@tamagui/web': 1.79.6(react@18.2.0)
react: 18.2.0
- react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
'@tamagui/group@1.79.6(@types/react@18.3.11)(immer@9.0.21)(react@18.2.0)':
dependencies:
@@ -32551,22 +31915,22 @@ snapshots:
- '@types/react'
- immer
- '@tamagui/helpers-icon@1.79.6(react-native-svg@15.2.0(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react@18.2.0)':
+ '@tamagui/helpers-icon@1.79.6(react-native-svg@15.2.0(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react@18.2.0)':
dependencies:
'@tamagui/core': 1.79.6(react@18.2.0)
react: 18.2.0
- react-native-svg: 15.2.0(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ react-native-svg: 15.2.0(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/helpers-node@1.79.6':
dependencies:
'@tamagui/types': 1.79.6
- '@tamagui/helpers-tamagui@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@tamagui/helpers-tamagui@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
'@tamagui/helpers': 1.79.6(react@18.2.0)
'@tamagui/web': 1.79.6(react@18.2.0)
react: 18.2.0
- react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
'@tamagui/helpers@1.79.6(react@18.2.0)':
dependencies:
@@ -32582,23 +31946,23 @@ snapshots:
transitivePeerDependencies:
- react
- '@tamagui/image@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@tamagui/image@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
'@tamagui/core': 1.79.6(react@18.2.0)
react: 18.2.0
- react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
- '@tamagui/label@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@tamagui/label@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
'@tamagui/compose-refs': 1.79.6(react@18.2.0)
'@tamagui/create-context': 1.79.6(react@18.2.0)
'@tamagui/focusable': 1.79.6(react@18.2.0)
- '@tamagui/get-button-sized': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/get-button-sized': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/get-font-sized': 1.79.6(react@18.2.0)
- '@tamagui/text': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/text': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/web': 1.79.6(react@18.2.0)
react: 18.2.0
- react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
'@tamagui/linear-gradient@1.79.6(react@18.2.0)':
dependencies:
@@ -32606,24 +31970,24 @@ snapshots:
'@tamagui/stacks': 1.79.6(react@18.2.0)
react: 18.2.0
- '@tamagui/list-item@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@tamagui/list-item@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
'@tamagui/font-size': 1.79.6(react@18.2.0)
'@tamagui/get-font-sized': 1.79.6(react@18.2.0)
- '@tamagui/get-token': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@tamagui/helpers-tamagui': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@tamagui/text': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/get-token': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/helpers-tamagui': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/text': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/web': 1.79.6(react@18.2.0)
react: 18.2.0
transitivePeerDependencies:
- react-native
- '@tamagui/lucide-icons@1.79.6(react-native-svg@15.2.0(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react@18.2.0)':
+ '@tamagui/lucide-icons@1.79.6(react-native-svg@15.2.0(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react@18.2.0)':
dependencies:
'@tamagui/core': 1.79.6(react@18.2.0)
- '@tamagui/helpers-icon': 1.79.6(react-native-svg@15.2.0(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react@18.2.0)
+ '@tamagui/helpers-icon': 1.79.6(react-native-svg@15.2.0(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react@18.2.0)
react: 18.2.0
- react-native-svg: 15.2.0(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ react-native-svg: 15.2.0(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/normalize-css-color@1.79.6':
dependencies:
@@ -32631,7 +31995,7 @@ snapshots:
'@tamagui/polyfill-dev@1.79.6': {}
- '@tamagui/popover@1.79.6(@types/react@18.3.11)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@tamagui/popover@1.79.6(@types/react@18.3.11)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
'@floating-ui/react': 0.24.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@tamagui/adapt': 1.79.6(react@18.2.0)
@@ -32640,62 +32004,62 @@ snapshots:
'@tamagui/compose-refs': 1.79.6(react@18.2.0)
'@tamagui/core': 1.79.6(react@18.2.0)
'@tamagui/dismissable': 1.79.6(react@18.2.0)
- '@tamagui/floating': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/floating': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/focus-scope': 1.79.6(react@18.2.0)
'@tamagui/polyfill-dev': 1.79.6
- '@tamagui/popper': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@tamagui/portal': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/popper': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/portal': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/remove-scroll': 1.79.6(@types/react@18.3.11)(react@18.2.0)
'@tamagui/scroll-view': 1.79.6(react@18.2.0)
- '@tamagui/sheet': 1.79.6(@types/react@18.3.11)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/sheet': 1.79.6(@types/react@18.3.11)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/stacks': 1.79.6(react@18.2.0)
'@tamagui/use-controllable-state': 1.79.6(react@18.2.0)
react: 18.2.0
react-freeze: 1.0.4(react@18.2.0)
- react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
transitivePeerDependencies:
- '@types/react'
- react-dom
- '@tamagui/popper@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@tamagui/popper@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
'@tamagui/compose-refs': 1.79.6(react@18.2.0)
'@tamagui/core': 1.79.6(react@18.2.0)
- '@tamagui/floating': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@tamagui/get-token': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/floating': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/get-token': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/stacks': 1.79.6(react@18.2.0)
'@tamagui/use-controllable-state': 1.79.6(react@18.2.0)
react: 18.2.0
- react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
- '@tamagui/portal@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@tamagui/portal@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
'@tamagui/core': 1.79.6(react@18.2.0)
'@tamagui/stacks': 1.79.6(react@18.2.0)
'@tamagui/use-event': 1.79.6(react@18.2.0)
react: 18.2.0
- react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
- '@tamagui/progress@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@tamagui/progress@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
'@tamagui/compose-refs': 1.79.6(react@18.2.0)
'@tamagui/core': 1.79.6(react@18.2.0)
'@tamagui/create-context': 1.79.6(react@18.2.0)
- '@tamagui/get-token': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/get-token': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/stacks': 1.79.6(react@18.2.0)
react: 18.2.0
- react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
'@tamagui/proxy-worm@1.79.6': {}
- '@tamagui/radio-group@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@tamagui/radio-group@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
'@tamagui/compose-refs': 1.79.6(react@18.2.0)
'@tamagui/core': 1.79.6(react@18.2.0)
'@tamagui/create-context': 1.79.6(react@18.2.0)
'@tamagui/focusable': 1.79.6(react@18.2.0)
- '@tamagui/get-token': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@tamagui/label': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/get-token': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/label': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/stacks': 1.79.6(react@18.2.0)
'@tamagui/use-controllable-state': 1.79.6(react@18.2.0)
'@tamagui/use-previous': 1.79.6
@@ -32703,10 +32067,10 @@ snapshots:
transitivePeerDependencies:
- react-native
- '@tamagui/react-native-media-driver@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@tamagui/react-native-media-driver@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
'@tamagui/web': 1.79.6(react@18.2.0)
- react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
transitivePeerDependencies:
- react
@@ -32744,11 +32108,11 @@ snapshots:
'@tamagui/web': 1.79.6(react@18.2.0)
react: 18.2.0
- '@tamagui/select@1.79.6(@types/react@18.3.11)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@tamagui/select@1.79.6(@types/react@18.3.11)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
'@floating-ui/react': 0.24.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@floating-ui/react-dom': 2.1.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@floating-ui/react-native': 0.10.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@floating-ui/react-native': 0.10.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/adapt': 1.79.6(react@18.2.0)
'@tamagui/animate-presence': 1.79.6(react@18.2.0)
'@tamagui/compose-refs': 1.79.6(react@18.2.0)
@@ -32756,20 +32120,20 @@ snapshots:
'@tamagui/create-context': 1.79.6(react@18.2.0)
'@tamagui/dismissable': 1.79.6(react@18.2.0)
'@tamagui/focus-scope': 1.79.6(react@18.2.0)
- '@tamagui/get-token': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@tamagui/list-item': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@tamagui/portal': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/get-token': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/list-item': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/portal': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/remove-scroll': 1.79.6(@types/react@18.3.11)(react@18.2.0)
'@tamagui/separator': 1.79.6(react@18.2.0)
- '@tamagui/sheet': 1.79.6(@types/react@18.3.11)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/sheet': 1.79.6(@types/react@18.3.11)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/stacks': 1.79.6(react@18.2.0)
- '@tamagui/text': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/text': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/use-controllable-state': 1.79.6(react@18.2.0)
'@tamagui/use-event': 1.79.6(react@18.2.0)
'@tamagui/use-previous': 1.79.6
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
transitivePeerDependencies:
- '@types/react'
@@ -32784,22 +32148,22 @@ snapshots:
'@tamagui/web': 1.79.6(react@18.2.0)
react: 18.2.0
- '@tamagui/sheet@1.79.6(@types/react@18.3.11)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@tamagui/sheet@1.79.6(@types/react@18.3.11)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
'@tamagui/animate-presence': 1.79.6(react@18.2.0)
- '@tamagui/animations-react-native': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/animations-react-native': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/compose-refs': 1.79.6(react@18.2.0)
'@tamagui/core': 1.79.6(react@18.2.0)
'@tamagui/create-context': 1.79.6(react@18.2.0)
- '@tamagui/portal': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/portal': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/remove-scroll': 1.79.6(@types/react@18.3.11)(react@18.2.0)
'@tamagui/scroll-view': 1.79.6(react@18.2.0)
'@tamagui/stacks': 1.79.6(react@18.2.0)
'@tamagui/use-constant': 1.79.6(react@18.2.0)
'@tamagui/use-controllable-state': 1.79.6(react@18.2.0)
- '@tamagui/use-keyboard-visible': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/use-keyboard-visible': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
react: 18.2.0
- react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
transitivePeerDependencies:
- '@types/react'
@@ -32807,18 +32171,18 @@ snapshots:
'@tamagui/simple-hash@1.79.6': {}
- '@tamagui/slider@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@tamagui/slider@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
'@tamagui/compose-refs': 1.79.6(react@18.2.0)
'@tamagui/core': 1.79.6(react@18.2.0)
'@tamagui/create-context': 1.79.6(react@18.2.0)
- '@tamagui/get-token': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/get-token': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/helpers': 1.79.6(react@18.2.0)
'@tamagui/stacks': 1.79.6(react@18.2.0)
'@tamagui/use-controllable-state': 1.79.6(react@18.2.0)
'@tamagui/use-direction': 1.79.6(react@18.2.0)
react: 18.2.0
- react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
'@tamagui/stacks@1.79.6(react@18.2.0)':
dependencies:
@@ -32827,14 +32191,14 @@ snapshots:
'@tamagui/static@1.79.6(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- '@babel/core': 7.25.7
- '@babel/generator': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/parser': 7.25.7
- '@babel/plugin-transform-react-jsx': 7.25.7(@babel/core@7.25.7)
- '@babel/runtime': 7.25.7
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/generator': 7.26.3
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/parser': 7.26.3
+ '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.8)
+ '@babel/runtime': 7.26.7
+ '@babel/traverse': 7.26.4
+ '@babel/types': 7.26.3
'@tamagui/build': 1.79.6
'@tamagui/cli-color': 1.79.6
'@tamagui/config-default': 1.79.6(react@18.2.0)
@@ -32847,7 +32211,7 @@ snapshots:
'@tamagui/react-native-prebuilt': 1.79.6
'@tamagui/shorthands': 1.79.6
'@tamagui/types': 1.79.6
- babel-literal-to-ast: 2.1.0(@babel/core@7.25.7)
+ babel-literal-to-ast: 2.1.0(@babel/core@7.26.8)
esbuild: 0.19.12
esbuild-register: 3.6.0(esbuild@0.19.12)
find-cache-dir: 3.3.2
@@ -32864,24 +32228,24 @@ snapshots:
- react-dom
- supports-color
- '@tamagui/switch@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@tamagui/switch@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
'@tamagui/compose-refs': 1.79.6(react@18.2.0)
'@tamagui/core': 1.79.6(react@18.2.0)
'@tamagui/create-context': 1.79.6(react@18.2.0)
'@tamagui/focusable': 1.79.6(react@18.2.0)
- '@tamagui/get-token': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@tamagui/label': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/get-token': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/label': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/stacks': 1.79.6(react@18.2.0)
'@tamagui/use-controllable-state': 1.79.6(react@18.2.0)
'@tamagui/use-previous': 1.79.6
react: 18.2.0
- react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
- '@tamagui/tabs@1.79.6(@types/react@18.3.11)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@tamagui/tabs@1.79.6(@types/react@18.3.11)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
'@tamagui/create-context': 1.79.6(react@18.2.0)
- '@tamagui/get-button-sized': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/get-button-sized': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/group': 1.79.6(@types/react@18.3.11)(immer@9.0.21)(react@18.2.0)
'@tamagui/roving-focus': 1.79.6(react@18.2.0)
'@tamagui/stacks': 1.79.6(react@18.2.0)
@@ -32895,10 +32259,10 @@ snapshots:
- immer
- react-native
- '@tamagui/text@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@tamagui/text@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
'@tamagui/get-font-sized': 1.79.6(react@18.2.0)
- '@tamagui/helpers-tamagui': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/helpers-tamagui': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/web': 1.79.6(react@18.2.0)
react: 18.2.0
transitivePeerDependencies:
@@ -32930,14 +32294,14 @@ snapshots:
'@tamagui/timer@1.79.6': {}
- '@tamagui/toggle-group@1.79.6(@types/react@18.3.11)(immer@9.0.21)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@tamagui/toggle-group@1.79.6(@types/react@18.3.11)(immer@9.0.21)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
'@tamagui/create-context': 1.79.6(react@18.2.0)
'@tamagui/focusable': 1.79.6(react@18.2.0)
'@tamagui/font-size': 1.79.6(react@18.2.0)
- '@tamagui/get-token': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/get-token': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/group': 1.79.6(@types/react@18.3.11)(immer@9.0.21)(react@18.2.0)
- '@tamagui/helpers-tamagui': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/helpers-tamagui': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/roving-focus': 1.79.6(react@18.2.0)
'@tamagui/stacks': 1.79.6(react@18.2.0)
'@tamagui/use-controllable-state': 1.79.6(react@18.2.0)
@@ -32949,22 +32313,22 @@ snapshots:
- immer
- react-native
- '@tamagui/tooltip@1.79.6(@types/react@18.3.11)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@tamagui/tooltip@1.79.6(@types/react@18.3.11)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
'@floating-ui/react': 0.24.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@tamagui/compose-refs': 1.79.6(react@18.2.0)
'@tamagui/core': 1.79.6(react@18.2.0)
'@tamagui/create-context': 1.79.6(react@18.2.0)
- '@tamagui/floating': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@tamagui/get-token': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/floating': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/get-token': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/polyfill-dev': 1.79.6
- '@tamagui/popover': 1.79.6(@types/react@18.3.11)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@tamagui/popper': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/popover': 1.79.6(@types/react@18.3.11)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/popper': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/stacks': 1.79.6(react@18.2.0)
- '@tamagui/text': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/text': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/use-controllable-state': 1.79.6(react@18.2.0)
react: 18.2.0
- react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
transitivePeerDependencies:
- '@types/react'
- react-dom
@@ -33020,10 +32384,10 @@ snapshots:
dependencies:
react: 18.3.1
- '@tamagui/use-keyboard-visible@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@tamagui/use-keyboard-visible@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
react: 18.2.0
- react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
'@tamagui/use-presence@1.79.6(react@18.2.0)':
dependencies:
@@ -33037,11 +32401,11 @@ snapshots:
'@tamagui/use-previous@1.79.6': {}
- '@tamagui/use-window-dimensions@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
+ '@tamagui/use-window-dimensions@1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)':
dependencies:
'@tamagui/constants': 1.79.6(react@18.2.0)
react: 18.2.0
- react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
'@tamagui/visually-hidden@1.79.6(react@18.2.0)':
dependencies:
@@ -33081,8 +32445,8 @@ snapshots:
'@testing-library/dom@10.4.0':
dependencies:
- '@babel/code-frame': 7.25.7
- '@babel/runtime': 7.25.7
+ '@babel/code-frame': 7.26.2
+ '@babel/runtime': 7.26.7
'@types/aria-query': 5.0.4
aria-query: 5.3.0
chalk: 4.1.2
@@ -33092,7 +32456,7 @@ snapshots:
'@testing-library/react@15.0.7(@types/react@18.3.11)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.7
'@testing-library/dom': 10.4.0
'@types/react-dom': 18.3.0
react: 18.2.0
@@ -33324,16 +32688,16 @@ snapshots:
'@types/babel__generator@7.6.8':
dependencies:
- '@babel/types': 7.25.7
+ '@babel/types': 7.26.3
'@types/babel__template@7.4.4':
dependencies:
- '@babel/parser': 7.25.7
- '@babel/types': 7.25.7
+ '@babel/parser': 7.26.3
+ '@babel/types': 7.26.3
'@types/babel__traverse@7.20.6':
dependencies:
- '@babel/types': 7.25.7
+ '@babel/types': 7.26.3
'@types/better-sqlite3@7.6.12':
dependencies:
@@ -33351,7 +32715,7 @@ snapshots:
'@types/bunyan@1.8.11':
dependencies:
- '@types/node': 20.17.12
+ '@types/node': 20.17.6
'@types/cacheable-request@6.0.3':
dependencies:
@@ -33422,11 +32786,17 @@ snapshots:
dependencies:
'@types/node': 20.17.12
+ '@types/gensync@1.0.4': {}
+
'@types/glob@7.2.0':
dependencies:
'@types/minimatch': 5.1.2
'@types/node': 20.17.12
+ '@types/graceful-fs@4.1.9':
+ dependencies:
+ '@types/node': 20.17.12
+
'@types/gtag.js@0.0.12': {}
'@types/hammerjs@2.0.45': {}
@@ -33439,7 +32809,7 @@ snapshots:
'@types/hoist-non-react-statics@3.3.5':
dependencies:
- '@types/react': 18.3.12
+ '@types/react': 18.3.18
hoist-non-react-statics: 3.3.2
'@types/html-minifier-terser@6.1.0': {}
@@ -33548,56 +32918,55 @@ snapshots:
'@types/react-dom@18.2.25':
dependencies:
- '@types/react': 18.3.12
+ '@types/react': 18.3.18
'@types/react-dom@18.3.0':
dependencies:
'@types/react': 18.3.11
- '@types/react-native-table-component@1.2.8(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(encoding@0.1.13)(react@18.2.0)(typescript@5.5.4)':
+ '@types/react-native-table-component@1.2.8(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(react@18.2.0)':
dependencies:
- '@types/react': 18.3.12
+ '@types/react': 18.3.18
csstype: 3.1.3
- react-native: 0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.3.12)(encoding@0.1.13)(react@18.2.0)(typescript@5.5.4)
+ react-native: 0.77.0(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.3.18)(react@18.2.0)
transitivePeerDependencies:
- '@babel/core'
- '@babel/preset-env'
+ - '@react-native-community/cli-server-api'
- bufferutil
- - encoding
- react
- supports-color
- - typescript
- utf-8-validate
'@types/react-native-vector-icons@6.4.18':
dependencies:
- '@types/react': 18.3.12
+ '@types/react': 18.3.18
'@types/react-native': 0.70.19
'@types/react-native@0.70.19':
dependencies:
- '@types/react': 18.3.12
+ '@types/react': 18.3.18
'@types/react-router-config@5.0.11':
dependencies:
'@types/history': 4.7.11
- '@types/react': 18.3.12
+ '@types/react': 18.3.18
'@types/react-router': 5.1.20
'@types/react-router-dom@5.3.3':
dependencies:
'@types/history': 4.7.11
- '@types/react': 18.3.12
+ '@types/react': 18.3.18
'@types/react-router': 5.1.20
'@types/react-router@5.1.20':
dependencies:
'@types/history': 4.7.11
- '@types/react': 18.3.12
+ '@types/react': 18.3.18
'@types/react-transition-group@4.4.11':
dependencies:
- '@types/react': 18.3.12
+ '@types/react': 18.3.18
'@types/react@18.2.79':
dependencies:
@@ -33609,7 +32978,7 @@ snapshots:
'@types/prop-types': 15.7.13
csstype: 3.1.3
- '@types/react@18.3.12':
+ '@types/react@18.3.18':
dependencies:
'@types/prop-types': 15.7.13
csstype: 3.1.3
@@ -33758,6 +33127,24 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.8.2))(eslint@8.57.1)(typescript@5.8.2)':
+ dependencies:
+ '@eslint-community/regexpp': 4.11.1
+ '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.8.2)
+ '@typescript-eslint/scope-manager': 7.18.0
+ '@typescript-eslint/type-utils': 7.18.0(eslint@8.57.1)(typescript@5.8.2)
+ '@typescript-eslint/utils': 7.18.0(eslint@8.57.1)(typescript@5.8.2)
+ '@typescript-eslint/visitor-keys': 7.18.0
+ eslint: 8.57.1
+ graphemer: 1.4.0
+ ignore: 5.3.2
+ natural-compare: 1.4.0
+ ts-api-utils: 1.3.0(typescript@5.8.2)
+ optionalDependencies:
+ typescript: 5.8.2
+ transitivePeerDependencies:
+ - supports-color
+
'@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.8.2)':
dependencies:
'@typescript-eslint/scope-manager': 5.62.0
@@ -33796,6 +33183,19 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.8.2)':
+ dependencies:
+ '@typescript-eslint/scope-manager': 7.18.0
+ '@typescript-eslint/types': 7.18.0
+ '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.8.2)
+ '@typescript-eslint/visitor-keys': 7.18.0
+ debug: 4.3.7(supports-color@8.1.1)
+ eslint: 8.57.1
+ optionalDependencies:
+ typescript: 5.8.2
+ transitivePeerDependencies:
+ - supports-color
+
'@typescript-eslint/scope-manager@5.62.0':
dependencies:
'@typescript-eslint/types': 5.62.0
@@ -33806,6 +33206,11 @@ snapshots:
'@typescript-eslint/types': 6.21.0
'@typescript-eslint/visitor-keys': 6.21.0
+ '@typescript-eslint/scope-manager@7.18.0':
+ dependencies:
+ '@typescript-eslint/types': 7.18.0
+ '@typescript-eslint/visitor-keys': 7.18.0
+
'@typescript-eslint/type-utils@5.62.0(eslint@8.57.1)(typescript@5.8.2)':
dependencies:
'@typescript-eslint/typescript-estree': 5.62.0(typescript@5.8.2)
@@ -33830,10 +33235,24 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/type-utils@7.18.0(eslint@8.57.1)(typescript@5.8.2)':
+ dependencies:
+ '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.8.2)
+ '@typescript-eslint/utils': 7.18.0(eslint@8.57.1)(typescript@5.8.2)
+ debug: 4.3.7(supports-color@8.1.1)
+ eslint: 8.57.1
+ ts-api-utils: 1.3.0(typescript@5.8.2)
+ optionalDependencies:
+ typescript: 5.8.2
+ transitivePeerDependencies:
+ - supports-color
+
'@typescript-eslint/types@5.62.0': {}
'@typescript-eslint/types@6.21.0': {}
+ '@typescript-eslint/types@7.18.0': {}
+
'@typescript-eslint/typescript-estree@5.62.0(typescript@5.8.2)':
dependencies:
'@typescript-eslint/types': 5.62.0
@@ -33878,6 +33297,21 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/typescript-estree@7.18.0(typescript@5.8.2)':
+ dependencies:
+ '@typescript-eslint/types': 7.18.0
+ '@typescript-eslint/visitor-keys': 7.18.0
+ debug: 4.3.7(supports-color@8.1.1)
+ globby: 11.1.0
+ is-glob: 4.0.3
+ minimatch: 9.0.5
+ semver: 7.6.3
+ ts-api-utils: 1.3.0(typescript@5.8.2)
+ optionalDependencies:
+ typescript: 5.8.2
+ transitivePeerDependencies:
+ - supports-color
+
'@typescript-eslint/utils@5.62.0(eslint@8.57.1)(typescript@5.8.2)':
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1)
@@ -33907,6 +33341,17 @@ snapshots:
- supports-color
- typescript
+ '@typescript-eslint/utils@7.18.0(eslint@8.57.1)(typescript@5.8.2)':
+ dependencies:
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1)
+ '@typescript-eslint/scope-manager': 7.18.0
+ '@typescript-eslint/types': 7.18.0
+ '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.8.2)
+ eslint: 8.57.1
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+
'@typescript-eslint/visitor-keys@5.62.0':
dependencies:
'@typescript-eslint/types': 5.62.0
@@ -33917,6 +33362,11 @@ snapshots:
'@typescript-eslint/types': 6.21.0
eslint-visitor-keys: 3.4.3
+ '@typescript-eslint/visitor-keys@7.18.0':
+ dependencies:
+ '@typescript-eslint/types': 7.18.0
+ eslint-visitor-keys: 3.4.3
+
'@ungap/structured-clone@1.2.0': {}
'@urql/core@2.3.6(graphql@15.8.0)':
@@ -33972,7 +33422,7 @@ snapshots:
vite: 5.4.8(@types/node@22.7.4)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)
vue: 3.4.21(typescript@5.5.4)
- '@vitest/browser@3.0.8(@testing-library/dom@10.4.0)(@types/node@22.7.4)(playwright@1.51.0)(typescript@5.7.2)(vite@5.4.11(@types/node@22.7.4)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))(vitest@3.0.8)(webdriverio@9.8.0)':
+ '@vitest/browser@3.0.8(@testing-library/dom@10.4.0)(@types/node@22.7.4)(playwright@1.51.0)(typescript@5.7.2)(vite@5.4.11(@types/node@22.7.4)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))(vitest@3.0.8)(webdriverio@9.4.5)':
dependencies:
'@testing-library/user-event': 14.6.1(@testing-library/dom@10.4.0)
'@vitest/mocker': 3.0.8(msw@2.7.3(@types/node@22.7.4)(typescript@5.7.2))(vite@5.4.11(@types/node@22.7.4)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))
@@ -33985,7 +33435,7 @@ snapshots:
ws: 8.18.1
optionalDependencies:
playwright: 1.51.0
- webdriverio: 9.8.0
+ webdriverio: 9.4.5
transitivePeerDependencies:
- '@testing-library/dom'
- '@types/node'
@@ -33995,10 +33445,10 @@ snapshots:
- vite
optional: true
- '@vitest/browser@3.0.8(@testing-library/dom@10.4.0)(@types/node@22.7.4)(playwright@1.51.0)(typescript@5.7.2)(vite@6.1.0(@types/node@22.7.4)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1))(vitest@3.0.8)(webdriverio@9.8.0)':
+ '@vitest/browser@3.0.8(@testing-library/dom@10.4.0)(@types/node@22.7.4)(playwright@1.51.0)(typescript@5.7.2)(vite@6.2.0(@types/node@22.7.4)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1))(vitest@3.0.8)(webdriverio@9.4.5)':
dependencies:
'@testing-library/user-event': 14.6.1(@testing-library/dom@10.4.0)
- '@vitest/mocker': 3.0.8(msw@2.7.3(@types/node@22.7.4)(typescript@5.7.2))(vite@6.1.0(@types/node@22.7.4)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1))
+ '@vitest/mocker': 3.0.8(msw@2.7.3(@types/node@22.7.4)(typescript@5.7.2))(vite@6.2.0(@types/node@22.7.4)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1))
'@vitest/utils': 3.0.8
magic-string: 0.30.17
msw: 2.7.3(@types/node@22.7.4)(typescript@5.7.2)
@@ -34008,7 +33458,7 @@ snapshots:
ws: 8.18.1
optionalDependencies:
playwright: 1.51.0
- webdriverio: 9.8.0
+ webdriverio: 9.4.5
transitivePeerDependencies:
- '@testing-library/dom'
- '@types/node'
@@ -34033,14 +33483,14 @@ snapshots:
msw: 2.7.3(@types/node@22.7.4)(typescript@5.7.2)
vite: 5.4.11(@types/node@22.7.4)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)
- '@vitest/mocker@3.0.8(msw@2.7.3(@types/node@22.7.4)(typescript@5.7.2))(vite@6.1.0(@types/node@22.7.4)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1))':
+ '@vitest/mocker@3.0.8(msw@2.7.3(@types/node@22.7.4)(typescript@5.7.2))(vite@6.2.0(@types/node@22.7.4)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1))':
dependencies:
'@vitest/spy': 3.0.8
estree-walker: 3.0.3
magic-string: 0.30.17
optionalDependencies:
msw: 2.7.3(@types/node@22.7.4)(typescript@5.7.2)
- vite: 6.1.0(@types/node@22.7.4)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1)
+ vite: 6.2.0(@types/node@22.7.4)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1)
'@vitest/pretty-format@3.0.8':
dependencies:
@@ -34082,7 +33532,7 @@ snapshots:
'@vue/compiler-core@3.4.21':
dependencies:
- '@babel/parser': 7.25.7
+ '@babel/parser': 7.26.3
'@vue/shared': 3.4.21
entities: 4.5.0
estree-walker: 2.0.2
@@ -34090,7 +33540,7 @@ snapshots:
'@vue/compiler-core@3.5.11':
dependencies:
- '@babel/parser': 7.25.7
+ '@babel/parser': 7.26.3
'@vue/shared': 3.5.11
entities: 4.5.0
estree-walker: 2.0.2
@@ -34108,7 +33558,7 @@ snapshots:
'@vue/compiler-sfc@2.7.16':
dependencies:
- '@babel/parser': 7.25.7
+ '@babel/parser': 7.26.3
postcss: 8.4.47
source-map: 0.6.1
optionalDependencies:
@@ -34116,7 +33566,7 @@ snapshots:
'@vue/compiler-sfc@3.4.21':
dependencies:
- '@babel/parser': 7.25.7
+ '@babel/parser': 7.26.3
'@vue/compiler-core': 3.4.21
'@vue/compiler-dom': 3.4.21
'@vue/compiler-ssr': 3.4.21
@@ -34209,11 +33659,11 @@ snapshots:
vue: 3.4.21(typescript@5.5.4)
vuetify: 3.6.8(typescript@5.5.4)(vite-plugin-vuetify@2.0.4)(vue@3.4.21(typescript@5.5.4))
- '@wdio/config@9.7.3':
+ '@wdio/config@9.4.4':
dependencies:
'@wdio/logger': 9.4.4
- '@wdio/types': 9.6.3
- '@wdio/utils': 9.7.3
+ '@wdio/types': 9.4.4
+ '@wdio/utils': 9.4.4
deepmerge-ts: 7.1.3
glob: 10.4.5
import-meta-resolve: 4.1.0
@@ -34229,7 +33679,7 @@ snapshots:
strip-ansi: 7.1.0
optional: true
- '@wdio/protocols@9.7.0':
+ '@wdio/protocols@9.4.4':
optional: true
'@wdio/repl@9.4.4':
@@ -34237,16 +33687,16 @@ snapshots:
'@types/node': 20.17.12
optional: true
- '@wdio/types@9.6.3':
+ '@wdio/types@9.4.4':
dependencies:
'@types/node': 20.17.12
optional: true
- '@wdio/utils@9.7.3':
+ '@wdio/utils@9.4.4':
dependencies:
'@puppeteer/browsers': 2.4.1
'@wdio/logger': 9.4.4
- '@wdio/types': 9.6.3
+ '@wdio/types': 9.4.4
decamelize: 6.0.0
deepmerge-ts: 7.1.3
edgedriver: 6.1.1
@@ -34748,6 +34198,10 @@ snapshots:
dependencies:
tslib: 2.7.0
+ ast-types@0.16.1:
+ dependencies:
+ tslib: 2.7.0
+
astral-regex@1.0.0: {}
astral-regex@2.0.0: {}
@@ -34808,14 +34262,14 @@ snapshots:
postcss: 8.4.47
postcss-value-parser: 4.2.0
- autoprefixer@10.4.20(postcss@8.5.1):
+ autoprefixer@10.4.20(postcss@8.5.3):
dependencies:
browserslist: 4.24.0
caniuse-lite: 1.0.30001667
fraction.js: 4.3.7
normalize-range: 0.1.2
picocolors: 1.1.0
- postcss: 8.5.1
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
available-typed-arrays@1.0.7:
@@ -34829,16 +34283,29 @@ snapshots:
b4a@1.6.7:
optional: true
- babel-core@7.0.0-bridge.0(@babel/core@7.25.7):
+ babel-core@7.0.0-bridge.0(@babel/core@7.26.8):
dependencies:
- '@babel/core': 7.25.7
+ '@babel/core': 7.26.8
- babel-literal-to-ast@2.1.0(@babel/core@7.25.7):
+ babel-jest@29.7.0(@babel/core@7.26.8):
dependencies:
- '@babel/core': 7.25.7
- '@babel/parser': 7.25.7
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.7
+ '@babel/core': 7.26.8
+ '@jest/transform': 29.7.0
+ '@types/babel__core': 7.20.5
+ babel-plugin-istanbul: 6.1.1
+ babel-preset-jest: 29.6.3(@babel/core@7.26.8)
+ chalk: 4.1.2
+ graceful-fs: 4.2.11
+ slash: 3.0.0
+ transitivePeerDependencies:
+ - supports-color
+
+ babel-literal-to-ast@2.1.0(@babel/core@7.26.8):
+ dependencies:
+ '@babel/core': 7.26.8
+ '@babel/parser': 7.26.3
+ '@babel/traverse': 7.26.4
+ '@babel/types': 7.26.3
transitivePeerDependencies:
- supports-color
@@ -34856,16 +34323,16 @@ snapshots:
schema-utils: 4.2.0
webpack: 5.95.0(@swc/core@1.6.13(@swc/helpers@0.5.5))
- babel-loader@9.2.1(@babel/core@7.26.0)(webpack@5.95.0(@swc/core@1.10.1(@swc/helpers@0.5.5))):
+ babel-loader@9.2.1(@babel/core@7.26.8)(webpack@5.95.0(@swc/core@1.10.1(@swc/helpers@0.5.5))):
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
find-cache-dir: 4.0.0
schema-utils: 4.2.0
webpack: 5.95.0(@swc/core@1.10.1(@swc/helpers@0.5.5))
- babel-loader@9.2.1(@babel/core@7.26.0)(webpack@5.95.0(@swc/core@1.6.13(@swc/helpers@0.5.5))):
+ babel-loader@9.2.1(@babel/core@7.26.8)(webpack@5.95.0(@swc/core@1.6.13(@swc/helpers@0.5.5))):
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
find-cache-dir: 4.0.0
schema-utils: 4.2.0
webpack: 5.95.0(@swc/core@1.6.13(@swc/helpers@0.5.5))
@@ -34874,9 +34341,26 @@ snapshots:
dependencies:
object.assign: 4.1.5
+ babel-plugin-istanbul@6.1.1:
+ dependencies:
+ '@babel/helper-plugin-utils': 7.25.9
+ '@istanbuljs/load-nyc-config': 1.1.0
+ '@istanbuljs/schema': 0.1.3
+ istanbul-lib-instrument: 5.2.1
+ test-exclude: 6.0.0
+ transitivePeerDependencies:
+ - supports-color
+
+ babel-plugin-jest-hoist@29.6.3:
+ dependencies:
+ '@babel/template': 7.25.9
+ '@babel/types': 7.26.3
+ '@types/babel__core': 7.20.5
+ '@types/babel__traverse': 7.20.6
+
babel-plugin-macros@3.1.0:
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.26.7
cosmiconfig: 7.1.0
resolve: 1.22.8
@@ -34890,7 +34374,7 @@ snapshots:
babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.5):
dependencies:
- '@babel/compat-data': 7.25.7
+ '@babel/compat-data': 7.26.8
'@babel/core': 7.24.5
'@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.5)
semver: 6.3.1
@@ -34899,27 +34383,18 @@ snapshots:
babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.25.2):
dependencies:
- '@babel/compat-data': 7.25.7
+ '@babel/compat-data': 7.26.8
'@babel/core': 7.25.2
'@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.2)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.25.7):
- dependencies:
- '@babel/compat-data': 7.25.7
- '@babel/core': 7.25.7
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.7)
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
- babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.26.0):
+ babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.26.8):
dependencies:
- '@babel/compat-data': 7.25.7
- '@babel/core': 7.26.0
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.26.0)
+ '@babel/compat-data': 7.26.8
+ '@babel/core': 7.26.8
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.26.8)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -34940,19 +34415,27 @@ snapshots:
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.25.7):
+ babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.26.8):
dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.7)
+ '@babel/core': 7.26.8
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.26.8)
core-js-compat: 3.38.1
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.26.0):
+ babel-plugin-polyfill-corejs3@0.11.1(@babel/core@7.24.5):
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.26.0)
- core-js-compat: 3.38.1
+ '@babel/core': 7.24.5
+ '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.24.5)
+ core-js-compat: 3.40.0
+ transitivePeerDependencies:
+ - supports-color
+
+ babel-plugin-polyfill-corejs3@0.11.1(@babel/core@7.26.8):
+ dependencies:
+ '@babel/core': 7.26.8
+ '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.8)
+ core-js-compat: 3.40.0
transitivePeerDependencies:
- supports-color
@@ -34970,24 +34453,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.25.7):
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.7)
- transitivePeerDependencies:
- - supports-color
-
- babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.26.0):
+ babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.26.8):
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.26.0)
+ '@babel/core': 7.26.8
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.26.8)
transitivePeerDependencies:
- supports-color
babel-plugin-react-compiler@0.0.0-experimental-592953e-20240517:
dependencies:
'@babel/generator': 7.2.0
- '@babel/types': 7.25.7
+ '@babel/types': 7.26.3
chalk: 4.1.2
invariant: 2.2.4
pretty-format: 24.9.0
@@ -34997,7 +34473,7 @@ snapshots:
babel-plugin-react-compiler@0.0.0-experimental-734b737-20241003:
dependencies:
'@babel/generator': 7.2.0
- '@babel/types': 7.25.7
+ '@babel/types': 7.26.3
chalk: 4.1.2
invariant: 2.2.4
pretty-format: 24.9.0
@@ -35006,6 +34482,10 @@ snapshots:
babel-plugin-react-native-web@0.19.12: {}
+ babel-plugin-syntax-hermes-parser@0.25.1:
+ dependencies:
+ hermes-parser: 0.25.1
+
babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0: {}
babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.24.5):
@@ -35014,17 +34494,30 @@ snapshots:
transitivePeerDependencies:
- '@babel/core'
- babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.25.7):
+ babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.26.8):
dependencies:
- '@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.25.7)
+ '@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.26.8)
transitivePeerDependencies:
- '@babel/core'
- babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.26.0):
- dependencies:
- '@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.26.0)
- transitivePeerDependencies:
- - '@babel/core'
+ babel-preset-current-node-syntax@1.1.0(@babel/core@7.26.8):
+ dependencies:
+ '@babel/core': 7.26.8
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.26.8)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.26.8)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.26.8)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.26.8)
+ '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.8)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.8)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.26.8)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.8)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.8)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.26.8)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.8)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.26.8)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.8)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.26.8)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.26.8)
babel-preset-expo@11.0.14(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5)):
dependencies:
@@ -35043,7 +34536,7 @@ snapshots:
- '@babel/preset-env'
- supports-color
- babel-preset-expo@11.0.14(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5)):
+ babel-preset-expo@11.0.14(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5)):
dependencies:
'@babel/plugin-proposal-decorators': 7.25.7(@babel/core@7.24.5)
'@babel/plugin-transform-export-namespace-from': 7.25.7(@babel/core@7.24.5)
@@ -35051,7 +34544,7 @@ snapshots:
'@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.24.5)
'@babel/preset-react': 7.25.7(@babel/core@7.24.5)
'@babel/preset-typescript': 7.25.7(@babel/core@7.24.5)
- '@react-native/babel-preset': 0.74.87(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))
+ '@react-native/babel-preset': 0.74.87(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))
babel-plugin-react-compiler: 0.0.0-experimental-734b737-20241003
babel-plugin-react-native-web: 0.19.12
react-refresh: 0.14.2
@@ -35060,15 +34553,15 @@ snapshots:
- '@babel/preset-env'
- supports-color
- babel-preset-expo@11.0.14(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0)):
+ babel-preset-expo@11.0.14(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8)):
dependencies:
- '@babel/plugin-proposal-decorators': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-export-namespace-from': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-object-rest-spread': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.26.0)
- '@babel/preset-react': 7.25.7(@babel/core@7.26.0)
- '@babel/preset-typescript': 7.25.7(@babel/core@7.26.0)
- '@react-native/babel-preset': 0.74.87(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))
+ '@babel/plugin-proposal-decorators': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-export-namespace-from': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-object-rest-spread': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.26.8)
+ '@babel/preset-react': 7.25.7(@babel/core@7.26.8)
+ '@babel/preset-typescript': 7.25.7(@babel/core@7.26.8)
+ '@react-native/babel-preset': 0.74.87(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))
babel-plugin-react-compiler: 0.0.0-experimental-734b737-20241003
babel-plugin-react-native-web: 0.19.12
react-refresh: 0.14.2
@@ -35080,9 +34573,9 @@ snapshots:
babel-preset-expo@11.0.15(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5)):
dependencies:
'@babel/plugin-proposal-decorators': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-export-namespace-from': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-object-rest-spread': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.24.5)
+ '@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.24.5)
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.24.5)
'@babel/preset-react': 7.25.7(@babel/core@7.24.5)
'@babel/preset-typescript': 7.25.7(@babel/core@7.24.5)
'@react-native/babel-preset': 0.74.87(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))
@@ -35094,71 +34587,44 @@ snapshots:
- '@babel/preset-env'
- supports-color
- babel-preset-fbjs@3.4.0(@babel/core@7.24.5):
- dependencies:
- '@babel/core': 7.24.5
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.5)
- '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.5)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.5)
- '@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.5)
- '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-block-scoped-functions': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-flow-strip-types': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-for-of': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.24.5)
- '@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-template-literals': 7.25.9(@babel/core@7.24.5)
+ babel-preset-fbjs@3.4.0(@babel/core@7.26.8):
+ dependencies:
+ '@babel/core': 7.26.8
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.26.8)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.26.8)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.26.8)
+ '@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.8)
+ '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-block-scoped-functions': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-flow-strip-types': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-for-of': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.8)
+ '@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-template-literals': 7.25.9(@babel/core@7.26.8)
babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0
transitivePeerDependencies:
- supports-color
- babel-preset-fbjs@3.4.0(@babel/core@7.25.7):
+ babel-preset-jest@29.6.3(@babel/core@7.26.8):
dependencies:
- '@babel/core': 7.25.7
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.25.7)
- '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.25.7)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.25.7)
- '@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.7)
- '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-block-scoped-functions': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-flow-strip-types': 7.25.7(@babel/core@7.25.7)
- '@babel/plugin-transform-for-of': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.25.7)
- '@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.25.7)
- '@babel/plugin-transform-template-literals': 7.25.9(@babel/core@7.25.7)
- babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.26.8
+ babel-plugin-jest-hoist: 29.6.3
+ babel-preset-current-node-syntax: 1.1.0(@babel/core@7.26.8)
bail@2.0.2: {}
@@ -36028,6 +35494,10 @@ snapshots:
dependencies:
browserslist: 4.24.0
+ core-js-compat@3.40.0:
+ dependencies:
+ browserslist: 4.24.3
+
core-js-pure@3.38.1: {}
core-js@3.38.1: {}
@@ -36415,7 +35885,7 @@ snapshots:
date-fns@2.30.0:
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.7
dateformat@4.6.3: {}
@@ -36593,7 +36063,7 @@ snapshots:
deprecated-react-native-prop-types@4.1.0:
dependencies:
- '@react-native/normalize-colors': 0.72.0
+ '@react-native/normalize-colors': 0.75.3
invariant: 2.2.4
prop-types: 15.8.1
@@ -36683,7 +36153,7 @@ snapshots:
dom-helpers@5.2.1:
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.26.7
csstype: 3.1.3
dom-serializer@1.4.1:
@@ -36741,11 +36211,11 @@ snapshots:
dotenv@16.4.7: {}
- drizzle-orm@0.35.2(@op-engineering/op-sqlite@11.2.13(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1)(typescript@5.8.2))(react@18.3.1))(@types/better-sqlite3@7.6.12)(@types/react@18.3.12)(better-sqlite3@11.7.2)(kysely@0.27.4)(react@18.3.1):
+ drizzle-orm@0.35.2(@op-engineering/op-sqlite@11.4.4(react-native@0.77.0(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))(@react-native-community/cli-server-api@15.1.3)(@types/react@18.3.18)(react@18.3.1))(react@18.3.1))(@types/better-sqlite3@7.6.12)(@types/react@18.3.18)(better-sqlite3@11.7.2)(kysely@0.27.4)(react@18.3.1):
optionalDependencies:
- '@op-engineering/op-sqlite': 11.2.13(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1)(typescript@5.8.2))(react@18.3.1)
+ '@op-engineering/op-sqlite': 11.4.4(react-native@0.77.0(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))(@react-native-community/cli-server-api@15.1.3)(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
'@types/better-sqlite3': 7.6.12
- '@types/react': 18.3.12
+ '@types/react': 18.3.18
better-sqlite3: 11.7.2
kysely: 0.27.4
react: 18.3.1
@@ -37240,33 +36710,33 @@ snapshots:
'@esbuild/win32-ia32': 0.23.0
'@esbuild/win32-x64': 0.23.0
- esbuild@0.24.2:
+ esbuild@0.25.0:
optionalDependencies:
- '@esbuild/aix-ppc64': 0.24.2
- '@esbuild/android-arm': 0.24.2
- '@esbuild/android-arm64': 0.24.2
- '@esbuild/android-x64': 0.24.2
- '@esbuild/darwin-arm64': 0.24.2
- '@esbuild/darwin-x64': 0.24.2
- '@esbuild/freebsd-arm64': 0.24.2
- '@esbuild/freebsd-x64': 0.24.2
- '@esbuild/linux-arm': 0.24.2
- '@esbuild/linux-arm64': 0.24.2
- '@esbuild/linux-ia32': 0.24.2
- '@esbuild/linux-loong64': 0.24.2
- '@esbuild/linux-mips64el': 0.24.2
- '@esbuild/linux-ppc64': 0.24.2
- '@esbuild/linux-riscv64': 0.24.2
- '@esbuild/linux-s390x': 0.24.2
- '@esbuild/linux-x64': 0.24.2
- '@esbuild/netbsd-arm64': 0.24.2
- '@esbuild/netbsd-x64': 0.24.2
- '@esbuild/openbsd-arm64': 0.24.2
- '@esbuild/openbsd-x64': 0.24.2
- '@esbuild/sunos-x64': 0.24.2
- '@esbuild/win32-arm64': 0.24.2
- '@esbuild/win32-ia32': 0.24.2
- '@esbuild/win32-x64': 0.24.2
+ '@esbuild/aix-ppc64': 0.25.0
+ '@esbuild/android-arm': 0.25.0
+ '@esbuild/android-arm64': 0.25.0
+ '@esbuild/android-x64': 0.25.0
+ '@esbuild/darwin-arm64': 0.25.0
+ '@esbuild/darwin-x64': 0.25.0
+ '@esbuild/freebsd-arm64': 0.25.0
+ '@esbuild/freebsd-x64': 0.25.0
+ '@esbuild/linux-arm': 0.25.0
+ '@esbuild/linux-arm64': 0.25.0
+ '@esbuild/linux-ia32': 0.25.0
+ '@esbuild/linux-loong64': 0.25.0
+ '@esbuild/linux-mips64el': 0.25.0
+ '@esbuild/linux-ppc64': 0.25.0
+ '@esbuild/linux-riscv64': 0.25.0
+ '@esbuild/linux-s390x': 0.25.0
+ '@esbuild/linux-x64': 0.25.0
+ '@esbuild/netbsd-arm64': 0.25.0
+ '@esbuild/netbsd-x64': 0.25.0
+ '@esbuild/openbsd-arm64': 0.25.0
+ '@esbuild/openbsd-x64': 0.25.0
+ '@esbuild/sunos-x64': 0.25.0
+ '@esbuild/win32-arm64': 0.25.0
+ '@esbuild/win32-ia32': 0.25.0
+ '@esbuild/win32-x64': 0.25.0
escalade@3.2.0: {}
@@ -37404,7 +36874,14 @@ snapshots:
eslint-plugin-ft-flow@2.0.3(@babel/eslint-parser@7.25.8(@babel/core@7.24.5)(eslint@8.57.1))(eslint@8.57.1):
dependencies:
- '@babel/eslint-parser': 7.25.8(@babel/core@7.25.7)(eslint@8.57.1)
+ '@babel/eslint-parser': 7.25.8(@babel/core@7.24.5)(eslint@8.57.1)
+ eslint: 8.57.1
+ lodash: 4.17.21
+ string-natural-compare: 3.0.1
+
+ eslint-plugin-ft-flow@2.0.3(@babel/eslint-parser@7.25.8(@babel/core@7.26.8)(eslint@8.57.1))(eslint@8.57.1):
+ dependencies:
+ '@babel/eslint-parser': 7.25.8(@babel/core@7.26.8)(eslint@8.57.1)
eslint: 8.57.1
lodash: 4.17.21
string-natural-compare: 3.0.1
@@ -37477,6 +36954,16 @@ snapshots:
- supports-color
- typescript
+ eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.8.2))(eslint@8.57.1)(typescript@5.8.2))(eslint@8.57.1)(typescript@5.8.2):
+ dependencies:
+ '@typescript-eslint/utils': 5.62.0(eslint@8.57.1)(typescript@5.8.2)
+ eslint: 8.57.1
+ optionalDependencies:
+ '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.8.2))(eslint@8.57.1)(typescript@5.8.2)
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+
eslint-plugin-jsx-a11y@6.10.0(eslint@8.57.1):
dependencies:
aria-query: 5.1.3
@@ -37846,19 +37333,19 @@ snapshots:
transitivePeerDependencies:
- supports-color
- expo-asset@10.0.10(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)):
+ expo-asset@10.0.10(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13)):
dependencies:
- expo: 51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)
- expo-constants: 16.0.2(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13))
+ expo: 51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13)
+ expo-constants: 16.0.2(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13))
invariant: 2.2.4
md5-file: 3.2.3
transitivePeerDependencies:
- supports-color
- expo-asset@10.0.10(expo@51.0.27(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(encoding@0.1.13)):
+ expo-asset@10.0.10(expo@51.0.27(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(encoding@0.1.13)):
dependencies:
- expo: 51.0.27(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(encoding@0.1.13)
- expo-constants: 16.0.2(expo@51.0.27(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(encoding@0.1.13))
+ expo: 51.0.27(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(encoding@0.1.13)
+ expo-constants: 16.0.2(expo@51.0.27(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(encoding@0.1.13))
invariant: 2.2.4
md5-file: 3.2.3
transitivePeerDependencies:
@@ -37879,16 +37366,16 @@ snapshots:
expo: 51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(encoding@0.1.13)
semver: 7.6.3
- expo-build-properties@0.12.5(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)):
+ expo-build-properties@0.12.5(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13)):
dependencies:
ajv: 8.17.1
- expo: 51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)
+ expo: 51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13)
semver: 7.6.3
- expo-build-properties@0.12.5(expo@51.0.27(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(encoding@0.1.13)):
+ expo-build-properties@0.12.5(expo@51.0.27(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(encoding@0.1.13)):
dependencies:
ajv: 8.17.1
- expo: 51.0.27(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(encoding@0.1.13)
+ expo: 51.0.27(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(encoding@0.1.13)
semver: 7.6.3
expo-build-properties@0.12.5(expo@51.0.37(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(encoding@0.1.13)):
@@ -37915,19 +37402,19 @@ snapshots:
transitivePeerDependencies:
- supports-color
- expo-constants@16.0.2(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)):
+ expo-constants@16.0.2(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13)):
dependencies:
'@expo/config': 9.0.4
'@expo/env': 0.3.0
- expo: 51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)
+ expo: 51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13)
transitivePeerDependencies:
- supports-color
- expo-constants@16.0.2(expo@51.0.27(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(encoding@0.1.13)):
+ expo-constants@16.0.2(expo@51.0.27(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(encoding@0.1.13)):
dependencies:
'@expo/config': 9.0.4
'@expo/env': 0.3.0
- expo: 51.0.27(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(encoding@0.1.13)
+ expo: 51.0.27(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(encoding@0.1.13)
transitivePeerDependencies:
- supports-color
@@ -37944,59 +37431,59 @@ snapshots:
base64-js: 1.5.1
expo: 51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(encoding@0.1.13)
- expo-crypto@13.0.2(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)):
+ expo-crypto@13.0.2(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13)):
dependencies:
base64-js: 1.5.1
- expo: 51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)
+ expo: 51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13)
expo-crypto@13.0.2(expo@51.0.37(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(encoding@0.1.13)):
dependencies:
base64-js: 1.5.1
expo: 51.0.37(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(encoding@0.1.13)
- expo-dev-client@4.0.27(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)):
+ expo-dev-client@4.0.27(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13)):
dependencies:
- expo: 51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)
- expo-dev-launcher: 4.0.27(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13))
- expo-dev-menu: 5.0.21(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13))
- expo-dev-menu-interface: 1.8.3(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13))
- expo-manifests: 0.14.3(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13))
- expo-updates-interface: 0.16.2(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13))
+ expo: 51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13)
+ expo-dev-launcher: 4.0.27(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13))
+ expo-dev-menu: 5.0.21(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13))
+ expo-dev-menu-interface: 1.8.3(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13))
+ expo-manifests: 0.14.3(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13))
+ expo-updates-interface: 0.16.2(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13))
transitivePeerDependencies:
- supports-color
- expo-dev-launcher@4.0.27(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)):
+ expo-dev-launcher@4.0.27(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13)):
dependencies:
ajv: 8.11.0
- expo: 51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)
- expo-dev-menu: 5.0.21(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13))
- expo-manifests: 0.14.3(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13))
+ expo: 51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13)
+ expo-dev-menu: 5.0.21(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13))
+ expo-manifests: 0.14.3(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13))
resolve-from: 5.0.0
semver: 7.6.3
transitivePeerDependencies:
- supports-color
- expo-dev-menu-interface@1.8.3(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)):
+ expo-dev-menu-interface@1.8.3(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13)):
dependencies:
- expo: 51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)
+ expo: 51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13)
- expo-dev-menu@5.0.21(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)):
+ expo-dev-menu@5.0.21(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13)):
dependencies:
- expo: 51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)
- expo-dev-menu-interface: 1.8.3(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13))
+ expo: 51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13)
+ expo-dev-menu-interface: 1.8.3(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13))
semver: 7.6.3
expo-file-system@17.0.1(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(encoding@0.1.13)):
dependencies:
expo: 51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(encoding@0.1.13)
- expo-file-system@17.0.1(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)):
+ expo-file-system@17.0.1(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13)):
dependencies:
- expo: 51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)
+ expo: 51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13)
- expo-file-system@17.0.1(expo@51.0.27(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(encoding@0.1.13)):
+ expo-file-system@17.0.1(expo@51.0.27(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(encoding@0.1.13)):
dependencies:
- expo: 51.0.27(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(encoding@0.1.13)
+ expo: 51.0.27(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(encoding@0.1.13)
expo-file-system@17.0.1(expo@51.0.37(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(encoding@0.1.13)):
dependencies:
@@ -38007,14 +37494,14 @@ snapshots:
expo: 51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(encoding@0.1.13)
fontfaceobserver: 2.3.0
- expo-font@12.0.10(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)):
+ expo-font@12.0.10(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13)):
dependencies:
- expo: 51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)
+ expo: 51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13)
fontfaceobserver: 2.3.0
- expo-font@12.0.10(expo@51.0.27(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(encoding@0.1.13)):
+ expo-font@12.0.10(expo@51.0.27(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(encoding@0.1.13)):
dependencies:
- expo: 51.0.27(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(encoding@0.1.13)
+ expo: 51.0.27(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(encoding@0.1.13)
fontfaceobserver: 2.3.0
expo-font@12.0.10(expo@51.0.37(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(encoding@0.1.13)):
@@ -38028,13 +37515,13 @@ snapshots:
dependencies:
expo: 51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(encoding@0.1.13)
- expo-keep-awake@13.0.2(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)):
+ expo-keep-awake@13.0.2(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13)):
dependencies:
- expo: 51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)
+ expo: 51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13)
- expo-keep-awake@13.0.2(expo@51.0.27(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(encoding@0.1.13)):
+ expo-keep-awake@13.0.2(expo@51.0.27(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(encoding@0.1.13)):
dependencies:
- expo: 51.0.27(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(encoding@0.1.13)
+ expo: 51.0.27(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(encoding@0.1.13)
expo-keep-awake@13.0.2(expo@51.0.37(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(encoding@0.1.13)):
dependencies:
@@ -38048,17 +37535,17 @@ snapshots:
- expo
- supports-color
- expo-linking@6.3.1(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)):
+ expo-linking@6.3.1(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13)):
dependencies:
- expo-constants: 16.0.2(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13))
+ expo-constants: 16.0.2(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13))
invariant: 2.2.4
transitivePeerDependencies:
- expo
- supports-color
- expo-linking@6.3.1(expo@51.0.27(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(encoding@0.1.13)):
+ expo-linking@6.3.1(expo@51.0.27(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(encoding@0.1.13)):
dependencies:
- expo-constants: 16.0.2(expo@51.0.27(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(encoding@0.1.13))
+ expo-constants: 16.0.2(expo@51.0.27(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(encoding@0.1.13))
invariant: 2.2.4
transitivePeerDependencies:
- expo
@@ -38072,10 +37559,10 @@ snapshots:
- expo
- supports-color
- expo-manifests@0.14.3(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)):
+ expo-manifests@0.14.3(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13)):
dependencies:
'@expo/config': 9.0.4
- expo: 51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)
+ expo: 51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13)
expo-json-utils: 0.13.1
transitivePeerDependencies:
- supports-color
@@ -38106,26 +37593,26 @@ snapshots:
dependencies:
invariant: 2.2.4
- expo-router@3.5.21(gtohwu5bdvnl7tvlmjhokmubum):
+ expo-router@3.5.21(fbsgzlshl3xmyaq4qt4ismj4fi):
dependencies:
- '@expo/metro-runtime': 3.2.1(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))
- '@expo/server': 0.4.4(typescript@5.5.4)
+ '@expo/metro-runtime': 3.2.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))
+ '@expo/server': 0.4.4(typescript@5.3.3)
'@radix-ui/react-slot': 1.0.1(react@18.2.0)
- '@react-navigation/bottom-tabs': 6.5.20(@react-navigation/native@6.1.18(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-screens@3.31.1(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@react-navigation/native': 6.1.18(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@react-navigation/native-stack': 6.9.26(@react-navigation/native@6.1.18(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-screens@3.31.1(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- expo: 51.0.27(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(encoding@0.1.13)
- expo-constants: 16.0.2(expo@51.0.27(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(encoding@0.1.13))
- expo-linking: 6.3.1(expo@51.0.27(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(encoding@0.1.13))
- expo-splash-screen: 0.27.5(encoding@0.1.13)(expo-modules-autolinking@1.11.3)(expo@51.0.27(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(encoding@0.1.13))
+ '@react-navigation/bottom-tabs': 6.5.20(@react-navigation/native@6.1.18(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-screens@3.31.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@react-navigation/native': 6.1.18(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@react-navigation/native-stack': 6.9.26(@react-navigation/native@6.1.18(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-screens@3.31.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ expo: 51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13)
+ expo-constants: 16.0.2(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13))
+ expo-linking: 6.3.1(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13))
+ expo-splash-screen: 0.27.5(encoding@0.1.13)(expo-modules-autolinking@1.11.1)(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13))
expo-status-bar: 1.12.1
react-native-helmet-async: 2.0.4(react@18.2.0)
- react-native-safe-area-context: 4.10.5(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- react-native-screens: 3.31.1(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ react-native-safe-area-context: 4.10.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ react-native-screens: 3.31.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
schema-utils: 4.2.0
optionalDependencies:
- '@react-navigation/drawer': 6.7.2(yaao3llbshooz2bjipuf6mkduy)
- react-native-reanimated: 3.10.1(@babel/core@7.26.0)(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@react-navigation/drawer': 6.7.2(tpeb27s7cxfw5d6bhcsc6gheay)
+ react-native-reanimated: 3.10.1(@babel/core@7.24.5)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
transitivePeerDependencies:
- encoding
- expo-modules-autolinking
@@ -38134,26 +37621,26 @@ snapshots:
- supports-color
- typescript
- expo-router@3.5.21(j6qjh2jsuy2ozdtd6girxrw3ky):
+ expo-router@3.5.21(i67tcj72pvkxin5dp3y3irhi4m):
dependencies:
- '@expo/metro-runtime': 3.2.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))
- '@expo/server': 0.4.4(typescript@5.3.3)
+ '@expo/metro-runtime': 3.2.1(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))
+ '@expo/server': 0.4.4(typescript@5.5.4)
'@radix-ui/react-slot': 1.0.1(react@18.2.0)
- '@react-navigation/bottom-tabs': 6.5.20(@react-navigation/native@6.1.18(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-screens@3.31.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@react-navigation/native': 6.1.18(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@react-navigation/native-stack': 6.9.26(@react-navigation/native@6.1.18(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-screens@3.31.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- expo: 51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)
- expo-constants: 16.0.2(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13))
- expo-linking: 6.3.1(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13))
- expo-splash-screen: 0.27.5(encoding@0.1.13)(expo-modules-autolinking@1.11.1)(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13))
+ '@react-navigation/bottom-tabs': 6.5.20(@react-navigation/native@6.1.18(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-screens@3.31.1(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@react-navigation/native': 6.1.18(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@react-navigation/native-stack': 6.9.26(@react-navigation/native@6.1.18(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-screens@3.31.1(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ expo: 51.0.27(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(encoding@0.1.13)
+ expo-constants: 16.0.2(expo@51.0.27(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(encoding@0.1.13))
+ expo-linking: 6.3.1(expo@51.0.27(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(encoding@0.1.13))
+ expo-splash-screen: 0.27.5(encoding@0.1.13)(expo-modules-autolinking@1.11.3)(expo@51.0.27(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(encoding@0.1.13))
expo-status-bar: 1.12.1
react-native-helmet-async: 2.0.4(react@18.2.0)
- react-native-safe-area-context: 4.10.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- react-native-screens: 3.31.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ react-native-safe-area-context: 4.10.5(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ react-native-screens: 3.31.1(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
schema-utils: 4.2.0
optionalDependencies:
- '@react-navigation/drawer': 6.7.2(bmedeebhe3ixiqe753c2r26xfi)
- react-native-reanimated: 3.10.1(@babel/core@7.24.5)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@react-navigation/drawer': 6.7.2(zv5tx5e2wsbl7ys627d5pvn3mm)
+ react-native-reanimated: 3.10.1(@babel/core@7.26.8)(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
transitivePeerDependencies:
- encoding
- expo-modules-autolinking
@@ -38226,10 +37713,10 @@ snapshots:
dependencies:
expo: 51.0.37(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(encoding@0.1.13)
- expo-splash-screen@0.27.5(encoding@0.1.13)(expo-modules-autolinking@1.11.1)(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)):
+ expo-splash-screen@0.27.5(encoding@0.1.13)(expo-modules-autolinking@1.11.1)(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13)):
dependencies:
'@expo/prebuild-config': 7.0.6(encoding@0.1.13)(expo-modules-autolinking@1.11.1)
- expo: 51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)
+ expo: 51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13)
transitivePeerDependencies:
- encoding
- expo-modules-autolinking
@@ -38244,10 +37731,10 @@ snapshots:
- expo-modules-autolinking
- supports-color
- expo-splash-screen@0.27.5(encoding@0.1.13)(expo-modules-autolinking@1.11.3)(expo@51.0.27(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(encoding@0.1.13)):
+ expo-splash-screen@0.27.5(encoding@0.1.13)(expo-modules-autolinking@1.11.3)(expo@51.0.27(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(encoding@0.1.13)):
dependencies:
'@expo/prebuild-config': 7.0.6(encoding@0.1.13)(expo-modules-autolinking@1.11.3)
- expo: 51.0.27(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(encoding@0.1.13)
+ expo: 51.0.27(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(encoding@0.1.13)
transitivePeerDependencies:
- encoding
- expo-modules-autolinking
@@ -38262,10 +37749,10 @@ snapshots:
- expo-modules-autolinking
- supports-color
- expo-splash-screen@0.27.6(encoding@0.1.13)(expo-modules-autolinking@1.11.1)(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)):
+ expo-splash-screen@0.27.6(encoding@0.1.13)(expo-modules-autolinking@1.11.1)(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13)):
dependencies:
'@expo/prebuild-config': 7.0.8(encoding@0.1.13)(expo-modules-autolinking@1.11.1)
- expo: 51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)
+ expo: 51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13)
transitivePeerDependencies:
- encoding
- expo-modules-autolinking
@@ -38280,10 +37767,10 @@ snapshots:
- expo-modules-autolinking
- supports-color
- expo-splash-screen@0.27.6(encoding@0.1.13)(expo-modules-autolinking@1.11.3)(expo@51.0.27(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(encoding@0.1.13)):
+ expo-splash-screen@0.27.6(encoding@0.1.13)(expo-modules-autolinking@1.11.3)(expo@51.0.27(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(encoding@0.1.13)):
dependencies:
'@expo/prebuild-config': 7.0.8(encoding@0.1.13)(expo-modules-autolinking@1.11.3)
- expo: 51.0.27(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(encoding@0.1.13)
+ expo: 51.0.27(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(encoding@0.1.13)
transitivePeerDependencies:
- encoding
- expo-modules-autolinking
@@ -38300,13 +37787,13 @@ snapshots:
expo-status-bar@1.12.1: {}
- expo-updates-interface@0.16.2(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)):
+ expo-updates-interface@0.16.2(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13)):
dependencies:
- expo: 51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)
+ expo: 51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13)
expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(encoding@0.1.13):
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.7
'@expo/cli': 0.18.28(encoding@0.1.13)(expo-modules-autolinking@1.11.1)
'@expo/config': 9.0.3
'@expo/config-plugins': 8.0.8
@@ -38329,19 +37816,19 @@ snapshots:
- supports-color
- utf-8-validate
- expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13):
+ expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13):
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.7
'@expo/cli': 0.18.28(encoding@0.1.13)(expo-modules-autolinking@1.11.1)
'@expo/config': 9.0.3
'@expo/config-plugins': 8.0.8
'@expo/metro-config': 0.18.11
'@expo/vector-icons': 14.0.4
- babel-preset-expo: 11.0.14(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))
- expo-asset: 10.0.10(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13))
- expo-file-system: 17.0.1(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13))
- expo-font: 12.0.10(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13))
- expo-keep-awake: 13.0.2(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13))
+ babel-preset-expo: 11.0.14(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))
+ expo-asset: 10.0.10(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13))
+ expo-file-system: 17.0.1(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13))
+ expo-font: 12.0.10(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13))
+ expo-keep-awake: 13.0.2(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13))
expo-modules-autolinking: 1.11.1
expo-modules-core: 1.12.21
fbemitter: 3.0.0(encoding@0.1.13)
@@ -38354,19 +37841,19 @@ snapshots:
- supports-color
- utf-8-validate
- expo@51.0.27(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(encoding@0.1.13):
+ expo@51.0.27(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(encoding@0.1.13):
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.7
'@expo/cli': 0.18.28(encoding@0.1.13)(expo-modules-autolinking@1.11.1)
'@expo/config': 9.0.3
'@expo/config-plugins': 8.0.8
'@expo/metro-config': 0.18.11
'@expo/vector-icons': 14.0.4
- babel-preset-expo: 11.0.14(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))
- expo-asset: 10.0.10(expo@51.0.27(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(encoding@0.1.13))
- expo-file-system: 17.0.1(expo@51.0.27(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(encoding@0.1.13))
- expo-font: 12.0.10(expo@51.0.27(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(encoding@0.1.13))
- expo-keep-awake: 13.0.2(expo@51.0.27(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(encoding@0.1.13))
+ babel-preset-expo: 11.0.14(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))
+ expo-asset: 10.0.10(expo@51.0.27(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(encoding@0.1.13))
+ expo-file-system: 17.0.1(expo@51.0.27(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(encoding@0.1.13))
+ expo-font: 12.0.10(expo@51.0.27(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(encoding@0.1.13))
+ expo-keep-awake: 13.0.2(expo@51.0.27(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(encoding@0.1.13))
expo-modules-autolinking: 1.11.1
expo-modules-core: 1.12.21
fbemitter: 3.0.0(encoding@0.1.13)
@@ -38381,7 +37868,7 @@ snapshots:
expo@51.0.37(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(encoding@0.1.13):
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.7
'@expo/cli': 0.18.30(encoding@0.1.13)(expo-modules-autolinking@1.11.3)
'@expo/config': 9.0.4
'@expo/config-plugins': 8.0.10
@@ -39362,6 +38849,8 @@ snapshots:
hermes-estree@0.23.1: {}
+ hermes-estree@0.25.1: {}
+
hermes-parser@0.12.0:
dependencies:
hermes-estree: 0.12.0
@@ -39378,6 +38867,10 @@ snapshots:
dependencies:
hermes-estree: 0.23.1
+ hermes-parser@0.25.1:
+ dependencies:
+ hermes-estree: 0.25.1
+
hermes-profile-transformer@0.0.6:
dependencies:
source-map: 0.7.4
@@ -39386,7 +38879,7 @@ snapshots:
history@4.10.1:
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.26.7
loose-envify: 1.4.0
resolve-pathname: 3.0.0
tiny-invariant: 1.3.3
@@ -39500,7 +38993,7 @@ snapshots:
'@rspack/core': 1.1.8(@swc/helpers@0.5.5)
webpack: 5.95.0(webpack-cli@5.1.4)
- htmlfy@0.6.0:
+ htmlfy@0.3.2:
optional: true
htmlparser2@6.1.0:
@@ -40082,10 +39575,20 @@ snapshots:
istanbul-lib-coverage@3.2.2: {}
+ istanbul-lib-instrument@5.2.1:
+ dependencies:
+ '@babel/core': 7.26.8
+ '@babel/parser': 7.26.3
+ '@istanbuljs/schema': 0.1.3
+ istanbul-lib-coverage: 3.2.2
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
istanbul-lib-instrument@6.0.3:
dependencies:
- '@babel/core': 7.25.7
- '@babel/parser': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/parser': 7.26.3
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 7.6.3
@@ -40124,6 +39627,22 @@ snapshots:
jest-get-type@29.6.3: {}
+ jest-haste-map@29.7.0:
+ dependencies:
+ '@jest/types': 29.6.3
+ '@types/graceful-fs': 4.1.9
+ '@types/node': 20.17.12
+ anymatch: 3.1.3
+ fb-watchman: 2.0.2
+ graceful-fs: 4.2.11
+ jest-regex-util: 29.6.3
+ jest-util: 29.7.0
+ jest-worker: 29.7.0
+ micromatch: 4.0.8
+ walker: 1.0.8
+ optionalDependencies:
+ fsevents: 2.3.3
+
jest-message-util@29.7.0:
dependencies:
'@babel/code-frame': 7.26.2
@@ -40144,6 +39663,8 @@ snapshots:
jest-regex-util@27.5.1: {}
+ jest-regex-util@29.6.3: {}
+
jest-util@27.5.1:
dependencies:
'@jest/types': 27.5.1
@@ -40233,17 +39754,17 @@ snapshots:
jscodeshift@0.14.0(@babel/preset-env@7.25.7(@babel/core@7.24.5)):
dependencies:
- '@babel/core': 7.25.7
- '@babel/parser': 7.25.7
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.25.7)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.25.7)
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.25.7)
- '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.25.7)
+ '@babel/core': 7.26.8
+ '@babel/parser': 7.26.3
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.26.8)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.26.8)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.26.8)
+ '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.8)
'@babel/preset-env': 7.25.7(@babel/core@7.24.5)
- '@babel/preset-flow': 7.25.7(@babel/core@7.25.7)
- '@babel/preset-typescript': 7.25.7(@babel/core@7.25.7)
- '@babel/register': 7.25.7(@babel/core@7.25.7)
- babel-core: 7.0.0-bridge.0(@babel/core@7.25.7)
+ '@babel/preset-flow': 7.25.7(@babel/core@7.26.8)
+ '@babel/preset-typescript': 7.25.7(@babel/core@7.26.8)
+ '@babel/register': 7.25.7(@babel/core@7.26.8)
+ babel-core: 7.0.0-bridge.0(@babel/core@7.26.8)
chalk: 4.1.2
flow-parser: 0.247.1
graceful-fs: 4.2.11
@@ -40256,19 +39777,19 @@ snapshots:
transitivePeerDependencies:
- supports-color
- jscodeshift@0.14.0(@babel/preset-env@7.25.7(@babel/core@7.26.0)):
+ jscodeshift@0.14.0(@babel/preset-env@7.25.7(@babel/core@7.26.8)):
dependencies:
- '@babel/core': 7.25.7
- '@babel/parser': 7.25.7
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.25.7)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.25.7)
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.25.7)
- '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.25.7)
- '@babel/preset-env': 7.25.7(@babel/core@7.26.0)
- '@babel/preset-flow': 7.25.7(@babel/core@7.25.7)
- '@babel/preset-typescript': 7.25.7(@babel/core@7.25.7)
- '@babel/register': 7.25.7(@babel/core@7.25.7)
- babel-core: 7.0.0-bridge.0(@babel/core@7.25.7)
+ '@babel/core': 7.26.8
+ '@babel/parser': 7.26.3
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.26.8)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.26.8)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.26.8)
+ '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.8)
+ '@babel/preset-env': 7.25.7(@babel/core@7.26.8)
+ '@babel/preset-flow': 7.25.7(@babel/core@7.26.8)
+ '@babel/preset-typescript': 7.25.7(@babel/core@7.26.8)
+ '@babel/register': 7.25.7(@babel/core@7.26.8)
+ babel-core: 7.0.0-bridge.0(@babel/core@7.26.8)
chalk: 4.1.2
flow-parser: 0.247.1
graceful-fs: 4.2.11
@@ -40281,19 +39802,19 @@ snapshots:
transitivePeerDependencies:
- supports-color
- jscodeshift@0.14.0(@babel/preset-env@7.26.0(@babel/core@7.24.5)):
+ jscodeshift@0.14.0(@babel/preset-env@7.26.8(@babel/core@7.24.5)):
dependencies:
- '@babel/core': 7.25.7
- '@babel/parser': 7.25.7
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.25.7)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.25.7)
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.25.7)
- '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.25.7)
- '@babel/preset-env': 7.26.0(@babel/core@7.24.5)
- '@babel/preset-flow': 7.25.7(@babel/core@7.25.7)
- '@babel/preset-typescript': 7.25.7(@babel/core@7.25.7)
- '@babel/register': 7.25.7(@babel/core@7.25.7)
- babel-core: 7.0.0-bridge.0(@babel/core@7.25.7)
+ '@babel/core': 7.26.8
+ '@babel/parser': 7.26.3
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.26.8)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.26.8)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.26.8)
+ '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.8)
+ '@babel/preset-env': 7.26.8(@babel/core@7.24.5)
+ '@babel/preset-flow': 7.25.7(@babel/core@7.26.8)
+ '@babel/preset-typescript': 7.25.7(@babel/core@7.26.8)
+ '@babel/register': 7.25.7(@babel/core@7.26.8)
+ babel-core: 7.0.0-bridge.0(@babel/core@7.26.8)
chalk: 4.1.2
flow-parser: 0.247.1
graceful-fs: 4.2.11
@@ -40306,19 +39827,19 @@ snapshots:
transitivePeerDependencies:
- supports-color
- jscodeshift@0.14.0(@babel/preset-env@7.26.0(@babel/core@7.25.7)):
+ jscodeshift@0.14.0(@babel/preset-env@7.26.8(@babel/core@7.26.8)):
dependencies:
- '@babel/core': 7.25.7
- '@babel/parser': 7.25.7
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.25.7)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.25.7)
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.25.7)
- '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.25.7)
- '@babel/preset-env': 7.26.0(@babel/core@7.25.7)
- '@babel/preset-flow': 7.25.7(@babel/core@7.25.7)
- '@babel/preset-typescript': 7.25.7(@babel/core@7.25.7)
- '@babel/register': 7.25.7(@babel/core@7.25.7)
- babel-core: 7.0.0-bridge.0(@babel/core@7.25.7)
+ '@babel/core': 7.26.8
+ '@babel/parser': 7.26.3
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.26.8)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.26.8)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.26.8)
+ '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.8)
+ '@babel/preset-env': 7.26.8(@babel/core@7.26.8)
+ '@babel/preset-flow': 7.25.7(@babel/core@7.26.8)
+ '@babel/preset-typescript': 7.25.7(@babel/core@7.26.8)
+ '@babel/register': 7.25.7(@babel/core@7.26.8)
+ babel-core: 7.0.0-bridge.0(@babel/core@7.26.8)
chalk: 4.1.2
flow-parser: 0.247.1
graceful-fs: 4.2.11
@@ -40331,31 +39852,55 @@ snapshots:
transitivePeerDependencies:
- supports-color
- jscodeshift@0.14.0(@babel/preset-env@7.26.0(@babel/core@7.26.0)):
+ jscodeshift@17.1.2(@babel/preset-env@7.25.7(@babel/core@7.26.8)):
dependencies:
- '@babel/core': 7.25.7
- '@babel/parser': 7.25.7
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.25.7)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.25.7)
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.25.7)
- '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.25.7)
- '@babel/preset-env': 7.26.0(@babel/core@7.26.0)
- '@babel/preset-flow': 7.25.7(@babel/core@7.25.7)
- '@babel/preset-typescript': 7.25.7(@babel/core@7.25.7)
- '@babel/register': 7.25.7(@babel/core@7.25.7)
- babel-core: 7.0.0-bridge.0(@babel/core@7.25.7)
- chalk: 4.1.2
+ '@babel/core': 7.26.8
+ '@babel/parser': 7.26.3
+ '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.8)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.8)
+ '@babel/preset-flow': 7.25.7(@babel/core@7.26.8)
+ '@babel/preset-typescript': 7.26.0(@babel/core@7.26.8)
+ '@babel/register': 7.25.7(@babel/core@7.26.8)
flow-parser: 0.247.1
graceful-fs: 4.2.11
micromatch: 4.0.8
neo-async: 2.6.2
- node-dir: 0.1.17
- recast: 0.21.5
- temp: 0.8.4
- write-file-atomic: 2.4.3
+ picocolors: 1.1.0
+ recast: 0.23.9
+ tmp: 0.2.3
+ write-file-atomic: 5.0.1
+ optionalDependencies:
+ '@babel/preset-env': 7.25.7(@babel/core@7.26.8)
+ transitivePeerDependencies:
+ - supports-color
+
+ jscodeshift@17.1.2(@babel/preset-env@7.26.8(@babel/core@7.26.8)):
+ dependencies:
+ '@babel/core': 7.26.8
+ '@babel/parser': 7.26.3
+ '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.8)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.8)
+ '@babel/preset-flow': 7.25.7(@babel/core@7.26.8)
+ '@babel/preset-typescript': 7.26.0(@babel/core@7.26.8)
+ '@babel/register': 7.25.7(@babel/core@7.26.8)
+ flow-parser: 0.247.1
+ graceful-fs: 4.2.11
+ micromatch: 4.0.8
+ neo-async: 2.6.2
+ picocolors: 1.1.0
+ recast: 0.23.9
+ tmp: 0.2.3
+ write-file-atomic: 5.0.1
+ optionalDependencies:
+ '@babel/preset-env': 7.26.8(@babel/core@7.26.8)
transitivePeerDependencies:
- supports-color
- optional: true
jsdom@24.1.3:
dependencies:
@@ -40447,7 +39992,7 @@ snapshots:
jws: 3.2.2
lodash: 4.17.21
ms: 2.1.3
- semver: 7.5.4
+ semver: 7.6.3
jsx-ast-utils@3.3.5:
dependencies:
@@ -41272,7 +40817,7 @@ snapshots:
metro-babel-transformer@0.76.7:
dependencies:
- '@babel/core': 7.24.5
+ '@babel/core': 7.26.8
hermes-parser: 0.12.0
nullthrows: 1.1.1
transitivePeerDependencies:
@@ -41280,19 +40825,32 @@ snapshots:
metro-babel-transformer@0.80.12:
dependencies:
- '@babel/core': 7.25.7
+ '@babel/core': 7.26.8
flow-enums-runtime: 0.0.6
hermes-parser: 0.23.1
nullthrows: 1.1.1
transitivePeerDependencies:
- supports-color
+ metro-babel-transformer@0.81.1:
+ dependencies:
+ '@babel/core': 7.26.8
+ flow-enums-runtime: 0.0.6
+ hermes-parser: 0.25.1
+ nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - supports-color
+
metro-cache-key@0.76.7: {}
metro-cache-key@0.80.12:
dependencies:
flow-enums-runtime: 0.0.6
+ metro-cache-key@0.81.1:
+ dependencies:
+ flow-enums-runtime: 0.0.6
+
metro-cache@0.76.7:
dependencies:
metro-core: 0.76.7
@@ -41304,6 +40862,12 @@ snapshots:
flow-enums-runtime: 0.0.6
metro-core: 0.80.12
+ metro-cache@0.81.1:
+ dependencies:
+ exponential-backoff: 3.1.1
+ flow-enums-runtime: 0.0.6
+ metro-core: 0.81.1
+
metro-config@0.76.7(encoding@0.1.13):
dependencies:
connect: 3.7.0
@@ -41334,6 +40898,21 @@ snapshots:
- supports-color
- utf-8-validate
+ metro-config@0.81.1:
+ dependencies:
+ connect: 3.7.0
+ cosmiconfig: 5.2.1
+ flow-enums-runtime: 0.0.6
+ jest-validate: 29.7.0
+ metro: 0.81.1
+ metro-cache: 0.81.1
+ metro-core: 0.81.1
+ metro-runtime: 0.81.1
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+
metro-core@0.76.7:
dependencies:
lodash.throttle: 4.1.1
@@ -41345,6 +40924,12 @@ snapshots:
lodash.throttle: 4.1.1
metro-resolver: 0.80.12
+ metro-core@0.81.1:
+ dependencies:
+ flow-enums-runtime: 0.0.6
+ lodash.throttle: 4.1.1
+ metro-resolver: 0.81.1
+
metro-file-map@0.76.7:
dependencies:
anymatch: 3.1.3
@@ -41382,6 +40967,20 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ metro-file-map@0.81.1:
+ dependencies:
+ debug: 2.6.9
+ fb-watchman: 2.0.2
+ flow-enums-runtime: 0.0.6
+ graceful-fs: 4.2.11
+ invariant: 2.2.4
+ jest-worker: 29.7.0
+ micromatch: 4.0.8
+ nullthrows: 1.1.1
+ walker: 1.0.8
+ transitivePeerDependencies:
+ - supports-color
+
metro-inspector-proxy@0.76.7(encoding@0.1.13):
dependencies:
connect: 3.7.0
@@ -41404,60 +41003,65 @@ snapshots:
flow-enums-runtime: 0.0.6
terser: 5.34.1
+ metro-minify-terser@0.81.1:
+ dependencies:
+ flow-enums-runtime: 0.0.6
+ terser: 5.34.1
+
metro-minify-uglify@0.76.7:
dependencies:
uglify-es: 3.3.9
- metro-react-native-babel-preset@0.76.7(@babel/core@7.24.5):
- dependencies:
- '@babel/core': 7.24.5
- '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.24.5)
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.5)
- '@babel/plugin-proposal-export-default-from': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.5)
- '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.24.5)
- '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.5)
- '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.24.5)
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.5)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.5)
- '@babel/plugin-syntax-export-default-from': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.5)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.5)
- '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-flow-strip-types': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.24.5)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-react-jsx-self': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-react-jsx-source': 7.25.7(@babel/core@7.24.5)
- '@babel/plugin-transform-runtime': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.24.5)
- '@babel/plugin-transform-typescript': 7.26.3(@babel/core@7.24.5)
- '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.24.5)
+ metro-react-native-babel-preset@0.76.7(@babel/core@7.26.8):
+ dependencies:
+ '@babel/core': 7.26.8
+ '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.26.8)
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.26.8)
+ '@babel/plugin-proposal-export-default-from': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.26.8)
+ '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.26.8)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.26.8)
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.26.8)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.26.8)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.8)
+ '@babel/plugin-syntax-export-default-from': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.8)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.8)
+ '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-flow-strip-types': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.8)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-react-jsx-self': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-react-jsx-source': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-runtime': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-typescript': 7.26.3(@babel/core@7.26.8)
+ '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.8)
'@babel/template': 7.25.9
- babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.24.5)
+ babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.26.8)
react-refresh: 0.4.3
transitivePeerDependencies:
- supports-color
- metro-react-native-babel-transformer@0.76.7(@babel/core@7.24.5):
+ metro-react-native-babel-transformer@0.76.7(@babel/core@7.26.8):
dependencies:
- '@babel/core': 7.24.5
- babel-preset-fbjs: 3.4.0(@babel/core@7.24.5)
+ '@babel/core': 7.26.8
+ babel-preset-fbjs: 3.4.0(@babel/core@7.26.8)
hermes-parser: 0.12.0
- metro-react-native-babel-preset: 0.76.7(@babel/core@7.24.5)
+ metro-react-native-babel-preset: 0.76.7(@babel/core@7.26.8)
nullthrows: 1.1.1
transitivePeerDependencies:
- supports-color
@@ -41468,19 +41072,28 @@ snapshots:
dependencies:
flow-enums-runtime: 0.0.6
+ metro-resolver@0.81.1:
+ dependencies:
+ flow-enums-runtime: 0.0.6
+
metro-runtime@0.76.7:
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.26.7
react-refresh: 0.4.3
metro-runtime@0.76.8:
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.7
react-refresh: 0.4.3
metro-runtime@0.80.12:
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.7
+ flow-enums-runtime: 0.0.6
+
+ metro-runtime@0.81.1:
+ dependencies:
+ '@babel/runtime': 7.26.7
flow-enums-runtime: 0.0.6
metro-source-map@0.76.7:
@@ -41498,8 +41111,8 @@ snapshots:
metro-source-map@0.76.8:
dependencies:
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.7
+ '@babel/traverse': 7.26.4
+ '@babel/types': 7.26.3
invariant: 2.2.4
metro-symbolicate: 0.76.8
nullthrows: 1.1.1
@@ -41511,8 +41124,8 @@ snapshots:
metro-source-map@0.80.12:
dependencies:
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.7
+ '@babel/traverse': 7.26.4
+ '@babel/types': 7.26.3
flow-enums-runtime: 0.0.6
invariant: 2.2.4
metro-symbolicate: 0.80.12
@@ -41523,6 +41136,21 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ metro-source-map@0.81.1:
+ dependencies:
+ '@babel/traverse': 7.26.4
+ '@babel/traverse--for-generate-function-map': '@babel/traverse@7.26.8'
+ '@babel/types': 7.26.3
+ flow-enums-runtime: 0.0.6
+ invariant: 2.2.4
+ metro-symbolicate: 0.81.1
+ nullthrows: 1.1.1
+ ob1: 0.81.1
+ source-map: 0.5.7
+ vlq: 1.0.1
+ transitivePeerDependencies:
+ - supports-color
+
metro-symbolicate@0.76.7:
dependencies:
invariant: 2.2.4
@@ -41557,9 +41185,20 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ metro-symbolicate@0.81.1:
+ dependencies:
+ flow-enums-runtime: 0.0.6
+ invariant: 2.2.4
+ metro-source-map: 0.81.1
+ nullthrows: 1.1.1
+ source-map: 0.5.7
+ vlq: 1.0.1
+ transitivePeerDependencies:
+ - supports-color
+
metro-transform-plugins@0.76.7:
dependencies:
- '@babel/core': 7.24.5
+ '@babel/core': 7.26.8
'@babel/generator': 7.26.3
'@babel/template': 7.25.9
'@babel/traverse': 7.26.4
@@ -41569,10 +41208,21 @@ snapshots:
metro-transform-plugins@0.80.12:
dependencies:
- '@babel/core': 7.25.7
- '@babel/generator': 7.25.7
- '@babel/template': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/generator': 7.26.3
+ '@babel/template': 7.25.9
+ '@babel/traverse': 7.26.4
+ flow-enums-runtime: 0.0.6
+ nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - supports-color
+
+ metro-transform-plugins@0.81.1:
+ dependencies:
+ '@babel/core': 7.26.8
+ '@babel/generator': 7.26.3
+ '@babel/template': 7.25.9
+ '@babel/traverse': 7.26.4
flow-enums-runtime: 0.0.6
nullthrows: 1.1.1
transitivePeerDependencies:
@@ -41580,11 +41230,11 @@ snapshots:
metro-transform-worker@0.76.7(encoding@0.1.13):
dependencies:
- '@babel/core': 7.25.7
- '@babel/generator': 7.25.7
- '@babel/parser': 7.25.7
- '@babel/types': 7.25.7
- babel-preset-fbjs: 3.4.0(@babel/core@7.25.7)
+ '@babel/core': 7.26.8
+ '@babel/generator': 7.26.3
+ '@babel/parser': 7.26.3
+ '@babel/types': 7.26.3
+ babel-preset-fbjs: 3.4.0(@babel/core@7.26.8)
metro: 0.76.7(encoding@0.1.13)
metro-babel-transformer: 0.76.7
metro-cache: 0.76.7
@@ -41600,10 +41250,10 @@ snapshots:
metro-transform-worker@0.80.12:
dependencies:
- '@babel/core': 7.25.7
- '@babel/generator': 7.25.7
- '@babel/parser': 7.25.7
- '@babel/types': 7.25.7
+ '@babel/core': 7.26.8
+ '@babel/generator': 7.26.3
+ '@babel/parser': 7.26.3
+ '@babel/types': 7.26.3
flow-enums-runtime: 0.0.6
metro: 0.80.12
metro-babel-transformer: 0.80.12
@@ -41618,15 +41268,35 @@ snapshots:
- supports-color
- utf-8-validate
+ metro-transform-worker@0.81.1:
+ dependencies:
+ '@babel/core': 7.26.8
+ '@babel/generator': 7.26.3
+ '@babel/parser': 7.26.3
+ '@babel/types': 7.26.3
+ flow-enums-runtime: 0.0.6
+ metro: 0.81.1
+ metro-babel-transformer: 0.81.1
+ metro-cache: 0.81.1
+ metro-cache-key: 0.81.1
+ metro-minify-terser: 0.81.1
+ metro-source-map: 0.81.1
+ metro-transform-plugins: 0.81.1
+ nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+
metro@0.76.7(encoding@0.1.13):
dependencies:
'@babel/code-frame': 7.26.2
- '@babel/core': 7.24.5
+ '@babel/core': 7.26.8
'@babel/generator': 7.26.3
- '@babel/parser': 7.25.7
- '@babel/template': 7.25.7
+ '@babel/parser': 7.26.3
+ '@babel/template': 7.25.9
'@babel/traverse': 7.26.4
- '@babel/types': 7.25.7
+ '@babel/types': 7.26.3
accepts: 1.3.8
async: 3.2.6
chalk: 4.1.2
@@ -41651,7 +41321,7 @@ snapshots:
metro-inspector-proxy: 0.76.7(encoding@0.1.13)
metro-minify-terser: 0.76.7
metro-minify-uglify: 0.76.7
- metro-react-native-babel-preset: 0.76.7(@babel/core@7.24.5)
+ metro-react-native-babel-preset: 0.76.7(@babel/core@7.26.8)
metro-resolver: 0.76.7
metro-runtime: 0.76.7
metro-source-map: 0.76.7
@@ -41677,7 +41347,7 @@ snapshots:
metro@0.80.12:
dependencies:
'@babel/code-frame': 7.25.7
- '@babel/core': 7.25.7
+ '@babel/core': 7.26.8
'@babel/generator': 7.25.7
'@babel/parser': 7.25.7
'@babel/template': 7.25.7
@@ -41723,6 +41393,53 @@ snapshots:
- supports-color
- utf-8-validate
+ metro@0.81.1:
+ dependencies:
+ '@babel/code-frame': 7.26.2
+ '@babel/core': 7.26.8
+ '@babel/generator': 7.26.3
+ '@babel/parser': 7.26.3
+ '@babel/template': 7.25.9
+ '@babel/traverse': 7.26.4
+ '@babel/types': 7.26.3
+ accepts: 1.3.8
+ chalk: 4.1.2
+ ci-info: 2.0.0
+ connect: 3.7.0
+ debug: 2.6.9
+ error-stack-parser: 2.1.4
+ flow-enums-runtime: 0.0.6
+ graceful-fs: 4.2.11
+ hermes-parser: 0.25.1
+ image-size: 1.1.1
+ invariant: 2.2.4
+ jest-worker: 29.7.0
+ jsc-safe-url: 0.2.4
+ lodash.throttle: 4.1.1
+ metro-babel-transformer: 0.81.1
+ metro-cache: 0.81.1
+ metro-cache-key: 0.81.1
+ metro-config: 0.81.1
+ metro-core: 0.81.1
+ metro-file-map: 0.81.1
+ metro-resolver: 0.81.1
+ metro-runtime: 0.81.1
+ metro-source-map: 0.81.1
+ metro-symbolicate: 0.81.1
+ metro-transform-plugins: 0.81.1
+ metro-transform-worker: 0.81.1
+ mime-types: 2.1.35
+ nullthrows: 1.1.1
+ serialize-error: 2.1.0
+ source-map: 0.5.7
+ throat: 5.0.0
+ ws: 7.5.10
+ yargs: 17.7.2
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+
micromark-core-commonmark@2.0.1:
dependencies:
decode-named-character-reference: 1.0.2
@@ -42188,10 +41905,10 @@ snapshots:
moment@2.30.1:
optional: true
- moti@0.25.4(react-dom@18.2.0(react@18.2.0))(react-native-reanimated@3.10.1(@babel/core@7.24.5)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react@18.2.0):
+ moti@0.25.4(react-dom@18.2.0(react@18.2.0))(react-native-reanimated@3.10.1(@babel/core@7.24.5)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react@18.2.0):
dependencies:
framer-motion: 6.5.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- react-native-reanimated: 3.10.1(@babel/core@7.24.5)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ react-native-reanimated: 3.10.1(@babel/core@7.24.5)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
transitivePeerDependencies:
- react
- react-dom
@@ -42331,7 +42048,7 @@ snapshots:
netmask@2.0.2:
optional: true
- next@14.2.3(@babel/core@7.26.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass@1.79.4):
+ next@14.2.3(@babel/core@7.26.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass@1.79.4):
dependencies:
'@next/env': 14.2.3
'@swc/helpers': 0.5.5
@@ -42341,7 +42058,7 @@ snapshots:
postcss: 8.4.31
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- styled-jsx: 5.1.1(@babel/core@7.26.0)(react@18.2.0)
+ styled-jsx: 5.1.1(@babel/core@7.26.8)(react@18.2.0)
optionalDependencies:
'@next/swc-darwin-arm64': 14.2.3
'@next/swc-darwin-x64': 14.2.3
@@ -42600,6 +42317,10 @@ snapshots:
dependencies:
flow-enums-runtime: 0.0.6
+ ob1@0.81.1:
+ dependencies:
+ flow-enums-runtime: 0.0.6
+
object-assign@4.1.1: {}
object-hash@3.0.0: {}
@@ -42941,7 +42662,7 @@ snapshots:
parse-json@5.2.0:
dependencies:
- '@babel/code-frame': 7.25.7
+ '@babel/code-frame': 7.26.2
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
@@ -43638,7 +43359,7 @@ snapshots:
picocolors: 1.1.0
source-map-js: 1.2.1
- postcss@8.5.1:
+ postcss@8.5.3:
dependencies:
nanoid: 3.3.8
picocolors: 1.1.1
@@ -44048,6 +43769,14 @@ snapshots:
- bufferutil
- utf-8-validate
+ react-devtools-core@6.1.1:
+ dependencies:
+ shell-quote: 1.8.1
+ ws: 7.5.10
+ transitivePeerDependencies:
+ - bufferutil
+ - utf-8-validate
+
react-dom@18.2.0(react@18.2.0):
dependencies:
loose-envify: 1.4.0
@@ -44056,12 +43785,12 @@ snapshots:
react-error-boundary@3.1.4(react@18.2.0):
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.7
react: 18.2.0
react-error-boundary@4.1.0(react@18.2.0):
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.7
react: 18.2.0
react-error-overlay@6.0.11: {}
@@ -44086,18 +43815,18 @@ snapshots:
react-loadable-ssr-addon-v5-slorber@1.0.1(@docusaurus/react-loadable@6.0.0(react@18.2.0))(webpack@5.95.0(@swc/core@1.10.1(@swc/helpers@0.5.5))):
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.26.7
react-loadable: '@docusaurus/react-loadable@6.0.0(react@18.2.0)'
webpack: 5.95.0(@swc/core@1.10.1(@swc/helpers@0.5.5))
react-native-builder-bob@0.30.2(typescript@5.8.2):
dependencies:
- '@babel/core': 7.25.7
- '@babel/plugin-transform-strict-mode': 7.25.7(@babel/core@7.25.7)
- '@babel/preset-env': 7.25.7(@babel/core@7.25.7)
- '@babel/preset-flow': 7.25.7(@babel/core@7.25.7)
- '@babel/preset-react': 7.25.7(@babel/core@7.25.7)
- '@babel/preset-typescript': 7.25.7(@babel/core@7.25.7)
+ '@babel/core': 7.26.8
+ '@babel/plugin-transform-strict-mode': 7.25.7(@babel/core@7.26.8)
+ '@babel/preset-env': 7.26.8(@babel/core@7.26.8)
+ '@babel/preset-flow': 7.25.7(@babel/core@7.26.8)
+ '@babel/preset-react': 7.25.7(@babel/core@7.26.8)
+ '@babel/preset-typescript': 7.25.7(@babel/core@7.26.8)
babel-plugin-module-resolver: 5.0.2
browserslist: 4.24.0
cosmiconfig: 9.0.0(typescript@5.8.2)
@@ -44134,7 +43863,7 @@ snapshots:
- react
- react-native
- react-native-elements@3.4.3(react-native-safe-area-context@4.10.5(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-vector-icons@10.2.0)(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
+ react-native-elements@3.4.3(react-native-safe-area-context@4.10.5(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native-vector-icons@10.2.0)(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
dependencies:
'@types/react-native-vector-icons': 6.4.18
color: 3.2.1
@@ -44142,9 +43871,9 @@ snapshots:
hoist-non-react-statics: 3.3.2
lodash.isequal: 4.5.0
opencollective-postinstall: 2.0.3
- react-native-ratings: 8.0.4(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- react-native-safe-area-context: 4.10.5(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- react-native-size-matters: 0.3.1(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))
+ react-native-ratings: 8.0.4(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ react-native-safe-area-context: 4.10.5(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ react-native-size-matters: 0.3.1(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))
react-native-vector-icons: 10.2.0
transitivePeerDependencies:
- react
@@ -44155,16 +43884,16 @@ snapshots:
react: 18.2.0
react-native: 0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
- react-native-encrypted-storage@4.0.3(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
+ react-native-encrypted-storage@4.0.3(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
dependencies:
react: 18.2.0
- react-native: 0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
react-native-fetch-api@3.0.0:
dependencies:
p-defer: 3.0.0
- react-native-gesture-handler@2.16.2(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
+ react-native-gesture-handler@2.16.2(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
dependencies:
'@egjs/hammerjs': 2.0.17
hoist-non-react-statics: 3.3.2
@@ -44172,7 +43901,7 @@ snapshots:
lodash: 4.17.21
prop-types: 15.8.1
react: 18.2.0
- react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
react-native-gesture-handler@2.16.2(react-native@0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
dependencies:
@@ -44184,7 +43913,7 @@ snapshots:
react: 18.2.0
react-native: 0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
- react-native-gesture-handler@2.16.2(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
+ react-native-gesture-handler@2.16.2(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
dependencies:
'@egjs/hammerjs': 2.0.17
hoist-non-react-statics: 3.3.2
@@ -44192,7 +43921,7 @@ snapshots:
lodash: 4.17.21
prop-types: 15.8.1
react: 18.2.0
- react-native: 0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
react-native-helmet-async@2.0.4(react@18.2.0):
dependencies:
@@ -44205,22 +43934,22 @@ snapshots:
dependencies:
react-native: 0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
- react-native-iphone-x-helper@1.3.1(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)):
+ react-native-iphone-x-helper@1.3.1(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)):
dependencies:
- react-native: 0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
- react-native-pager-view@6.3.0(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
+ react-native-pager-view@6.3.0(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
dependencies:
react: 18.2.0
- react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
react-native-prompt-android@1.1.0: {}
- react-native-quick-base64@2.1.2(react-native@0.72.4(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
+ react-native-quick-base64@2.1.2(react-native@0.72.4(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
dependencies:
base64-js: 1.5.1
react: 18.2.0
- react-native: 0.72.4(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.72.4(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))(encoding@0.1.13)(react@18.2.0)
react-native-ratings@8.0.4(react-native@0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
dependencies:
@@ -44228,11 +43957,11 @@ snapshots:
react: 18.2.0
react-native: 0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
- react-native-ratings@8.0.4(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
+ react-native-ratings@8.0.4(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
dependencies:
lodash: 4.17.21
react: 18.2.0
- react-native: 0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
react-native-ratings@8.1.0(react-native@0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
dependencies:
@@ -44245,7 +43974,7 @@ snapshots:
react: 18.2.0
react-native: 0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
- react-native-reanimated@3.10.1(@babel/core@7.24.5)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
+ react-native-reanimated@3.10.1(@babel/core@7.24.5)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
dependencies:
'@babel/core': 7.24.5
'@babel/plugin-transform-arrow-functions': 7.25.7(@babel/core@7.24.5)
@@ -44257,7 +43986,7 @@ snapshots:
convert-source-map: 2.0.0
invariant: 2.2.4
react: 18.2.0
- react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
transitivePeerDependencies:
- supports-color
@@ -44277,36 +44006,36 @@ snapshots:
transitivePeerDependencies:
- supports-color
- react-native-reanimated@3.10.1(@babel/core@7.26.0)(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
+ react-native-reanimated@3.10.1(@babel/core@7.26.8)(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
dependencies:
- '@babel/core': 7.26.0
- '@babel/plugin-transform-arrow-functions': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-optional-chaining': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-shorthand-properties': 7.25.7(@babel/core@7.26.0)
- '@babel/plugin-transform-template-literals': 7.25.7(@babel/core@7.26.0)
- '@babel/preset-typescript': 7.25.7(@babel/core@7.26.0)
+ '@babel/core': 7.26.8
+ '@babel/plugin-transform-arrow-functions': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-optional-chaining': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-shorthand-properties': 7.25.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-template-literals': 7.25.7(@babel/core@7.26.8)
+ '@babel/preset-typescript': 7.25.7(@babel/core@7.26.8)
convert-source-map: 2.0.0
invariant: 2.2.4
react: 18.2.0
- react-native: 0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
transitivePeerDependencies:
- supports-color
- react-native-safe-area-context@4.10.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
+ react-native-safe-area-context@4.10.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
dependencies:
react: 18.2.0
- react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
react-native-safe-area-context@4.10.5(react-native@0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
dependencies:
react: 18.2.0
react-native: 0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
- react-native-safe-area-context@4.10.5(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
+ react-native-safe-area-context@4.10.5(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
dependencies:
react: 18.2.0
- react-native: 0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
react-native-safe-area-view@0.14.9(react-native@0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
dependencies:
@@ -44314,11 +44043,11 @@ snapshots:
react: 18.2.0
react-native: 0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
- react-native-safe-area-view@0.14.9(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
+ react-native-safe-area-view@0.14.9(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
dependencies:
hoist-non-react-statics: 2.5.5
react: 18.2.0
- react-native: 0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
react-native-safe-area-view@1.1.1(react-native-safe-area-context@4.10.5(react-native@0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
dependencies:
@@ -44327,18 +44056,18 @@ snapshots:
react-native: 0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
react-native-safe-area-context: 4.10.5(react-native@0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- react-native-safe-area-view@1.1.1(react-native-safe-area-context@4.10.5(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
+ react-native-safe-area-view@1.1.1(react-native-safe-area-context@4.10.5(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0))(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
dependencies:
hoist-non-react-statics: 2.5.5
react: 18.2.0
- react-native: 0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
- react-native-safe-area-context: 4.10.5(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ react-native: 0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
+ react-native-safe-area-context: 4.10.5(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- react-native-screens@3.31.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
+ react-native-screens@3.31.1(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
dependencies:
react: 18.2.0
react-freeze: 1.0.4(react@18.2.0)
- react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
warn-once: 0.1.1
react-native-screens@3.31.1(react-native@0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
@@ -44348,31 +44077,31 @@ snapshots:
react-native: 0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
warn-once: 0.1.1
- react-native-screens@3.31.1(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
+ react-native-screens@3.31.1(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
dependencies:
react: 18.2.0
react-freeze: 1.0.4(react@18.2.0)
- react-native: 0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
warn-once: 0.1.1
react-native-size-matters@0.3.1(react-native@0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)):
dependencies:
react-native: 0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
- react-native-size-matters@0.3.1(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)):
+ react-native-size-matters@0.3.1(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)):
dependencies:
- react-native: 0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
react-native-size-matters@0.4.2(react-native@0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)):
dependencies:
react-native: 0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
- react-native-svg@15.2.0(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
+ react-native-svg@15.2.0(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
dependencies:
css-select: 5.1.0
css-tree: 1.1.3
react: 18.2.0
- react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
react-native-table-component@1.2.2: {}
@@ -44401,7 +44130,7 @@ snapshots:
react-native-web@0.19.12(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.7
'@react-native/normalize-colors': 0.74.88
fbjs: 3.0.5(encoding@0.1.13)
inline-style-prefixer: 6.0.4
@@ -44416,7 +44145,7 @@ snapshots:
react-native-web@0.19.13(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.26.7
'@react-native/normalize-colors': 0.74.88
fbjs: 3.0.5(encoding@0.1.13)
inline-style-prefixer: 6.0.4
@@ -44429,18 +44158,18 @@ snapshots:
transitivePeerDependencies:
- encoding
- react-native@0.72.4(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)(react@18.2.0):
+ react-native@0.72.4(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))(encoding@0.1.13)(react@18.2.0):
dependencies:
'@jest/create-cache-key-function': 29.7.0
- '@react-native-community/cli': 11.3.6(@babel/core@7.24.5)(encoding@0.1.13)
+ '@react-native-community/cli': 11.3.6(@babel/core@7.26.8)(encoding@0.1.13)
'@react-native-community/cli-platform-android': 11.3.6(encoding@0.1.13)
'@react-native-community/cli-platform-ios': 11.3.6(encoding@0.1.13)
'@react-native/assets-registry': 0.72.0
- '@react-native/codegen': 0.72.8(@babel/preset-env@7.26.0(@babel/core@7.24.5))
+ '@react-native/codegen': 0.72.8(@babel/preset-env@7.26.8(@babel/core@7.26.8))
'@react-native/gradle-plugin': 0.72.11
'@react-native/js-polyfills': 0.72.1
'@react-native/normalize-colors': 0.72.0
- '@react-native/virtualized-lists': 0.72.8(react-native@0.72.4(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)(react@18.2.0))
+ '@react-native/virtualized-lists': 0.72.8(react-native@0.72.4(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))(encoding@0.1.13)(react@18.2.0))
abort-controller: 3.0.0
anser: 1.4.10
base64-js: 1.5.1
@@ -44476,19 +44205,19 @@ snapshots:
- supports-color
- utf-8-validate
- react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0):
+ react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0):
dependencies:
'@jest/create-cache-key-function': 29.7.0
'@react-native-community/cli': 13.6.6(encoding@0.1.13)
'@react-native-community/cli-platform-android': 13.6.6(encoding@0.1.13)
'@react-native-community/cli-platform-ios': 13.6.6(encoding@0.1.13)
'@react-native/assets-registry': 0.74.83
- '@react-native/codegen': 0.74.83(@babel/preset-env@7.26.0(@babel/core@7.24.5))
- '@react-native/community-cli-plugin': 0.74.83(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(encoding@0.1.13)
+ '@react-native/codegen': 0.74.83(@babel/preset-env@7.26.8(@babel/core@7.24.5))
+ '@react-native/community-cli-plugin': 0.74.83(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(encoding@0.1.13)
'@react-native/gradle-plugin': 0.74.83
'@react-native/js-polyfills': 0.74.83
'@react-native/normalize-colors': 0.74.83
- '@react-native/virtualized-lists': 0.74.83(@types/react@18.3.11)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@react-native/virtualized-lists': 0.74.83(@types/react@18.3.11)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
abort-controller: 3.0.0
anser: 1.4.10
ansi-regex: 5.0.1
@@ -44576,19 +44305,19 @@ snapshots:
- supports-color
- utf-8-validate
- react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0):
+ react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0):
dependencies:
'@jest/create-cache-key-function': 29.7.0
'@react-native-community/cli': 13.6.9(encoding@0.1.13)
'@react-native-community/cli-platform-android': 13.6.9(encoding@0.1.13)
'@react-native-community/cli-platform-ios': 13.6.9(encoding@0.1.13)
'@react-native/assets-registry': 0.74.87
- '@react-native/codegen': 0.74.87(@babel/preset-env@7.25.7(@babel/core@7.26.0))
- '@react-native/community-cli-plugin': 0.74.87(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(encoding@0.1.13)
+ '@react-native/codegen': 0.74.87(@babel/preset-env@7.25.7(@babel/core@7.26.8))
+ '@react-native/community-cli-plugin': 0.74.87(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(encoding@0.1.13)
'@react-native/gradle-plugin': 0.74.87
'@react-native/js-polyfills': 0.74.87
'@react-native/normalize-colors': 0.74.87
- '@react-native/virtualized-lists': 0.74.87(@types/react@18.2.79)(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@react-native/virtualized-lists': 0.74.87(@types/react@18.2.79)(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
abort-controller: 3.0.0
anser: 1.4.10
ansi-regex: 5.0.1
@@ -44626,19 +44355,19 @@ snapshots:
- supports-color
- utf-8-validate
- react-native@0.75.3(@babel/core@7.25.7)(@babel/preset-env@7.26.0(@babel/core@7.25.7))(@types/react@18.3.11)(encoding@0.1.13)(react@18.3.1)(typescript@5.8.2):
+ react-native@0.75.3(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))(@types/react@18.3.11)(encoding@0.1.13)(react@18.3.1)(typescript@5.8.2):
dependencies:
'@jest/create-cache-key-function': 29.7.0
'@react-native-community/cli': 14.1.0(typescript@5.8.2)
'@react-native-community/cli-platform-android': 14.1.0
'@react-native-community/cli-platform-ios': 14.1.0
'@react-native/assets-registry': 0.75.3
- '@react-native/codegen': 0.75.3(@babel/preset-env@7.26.0(@babel/core@7.25.7))
- '@react-native/community-cli-plugin': 0.75.3(@babel/core@7.25.7)(@babel/preset-env@7.26.0(@babel/core@7.25.7))(encoding@0.1.13)
+ '@react-native/codegen': 0.75.3(@babel/preset-env@7.26.8(@babel/core@7.26.8))
+ '@react-native/community-cli-plugin': 0.75.3(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))(encoding@0.1.13)
'@react-native/gradle-plugin': 0.75.3
'@react-native/js-polyfills': 0.75.3
'@react-native/normalize-colors': 0.75.3
- '@react-native/virtualized-lists': 0.75.3(@types/react@18.3.11)(react-native@0.75.3(@babel/core@7.25.7)(@babel/preset-env@7.26.0(@babel/core@7.25.7))(@types/react@18.3.11)(encoding@0.1.13)(react@18.3.1)(typescript@5.8.2))(react@18.3.1)
+ '@react-native/virtualized-lists': 0.75.3(@types/react@18.3.11)(react-native@0.75.3(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))(@types/react@18.3.11)(encoding@0.1.13)(react@18.3.1)(typescript@5.8.2))(react@18.3.1)
abort-controller: 3.0.0
anser: 1.4.10
ansi-regex: 5.0.1
@@ -44679,25 +44408,24 @@ snapshots:
- typescript
- utf-8-validate
- react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.3.12)(encoding@0.1.13)(react@18.2.0)(typescript@5.5.4):
+ react-native@0.77.0(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.3.18)(react@18.2.0):
dependencies:
'@jest/create-cache-key-function': 29.7.0
- '@react-native-community/cli': 14.1.0(typescript@5.5.4)
- '@react-native-community/cli-platform-android': 14.1.0
- '@react-native-community/cli-platform-ios': 14.1.0
- '@react-native/assets-registry': 0.75.3
- '@react-native/codegen': 0.75.3(@babel/preset-env@7.25.7(@babel/core@7.26.0))
- '@react-native/community-cli-plugin': 0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(encoding@0.1.13)
- '@react-native/gradle-plugin': 0.75.3
- '@react-native/js-polyfills': 0.75.3
- '@react-native/normalize-colors': 0.75.3
- '@react-native/virtualized-lists': 0.75.3(@types/react@18.3.12)(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.3.12)(encoding@0.1.13)(react@18.2.0)(typescript@5.5.4))(react@18.2.0)
+ '@react-native/assets-registry': 0.77.0
+ '@react-native/codegen': 0.77.0(@babel/preset-env@7.25.7(@babel/core@7.26.8))
+ '@react-native/community-cli-plugin': 0.77.0(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))
+ '@react-native/gradle-plugin': 0.77.0
+ '@react-native/js-polyfills': 0.77.0
+ '@react-native/normalize-colors': 0.77.0
+ '@react-native/virtualized-lists': 0.77.0(@types/react@18.3.18)(react-native@0.77.0(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)
abort-controller: 3.0.0
anser: 1.4.10
ansi-regex: 5.0.1
+ babel-jest: 29.7.0(@babel/core@7.26.8)
+ babel-plugin-syntax-hermes-parser: 0.25.1
base64-js: 1.5.1
chalk: 4.1.2
- commander: 9.5.0
+ commander: 12.1.0
event-target-shim: 5.0.1
flow-enums-runtime: 0.0.6
glob: 7.2.3
@@ -44705,14 +44433,13 @@ snapshots:
jest-environment-node: 29.7.0
jsc-android: 250231.0.0
memoize-one: 5.2.1
- metro-runtime: 0.80.12
- metro-source-map: 0.80.12
- mkdirp: 0.5.6
+ metro-runtime: 0.81.1
+ metro-source-map: 0.81.1
nullthrows: 1.1.1
- pretty-format: 26.6.2
+ pretty-format: 29.7.0
promise: 8.3.0
react: 18.2.0
- react-devtools-core: 5.3.1
+ react-devtools-core: 6.1.1
react-refresh: 0.14.2
regenerator-runtime: 0.13.11
scheduler: 0.24.0-canary-efb381bbf-20230505
@@ -44722,35 +44449,33 @@ snapshots:
ws: 6.2.3
yargs: 17.7.2
optionalDependencies:
- '@types/react': 18.3.12
+ '@types/react': 18.3.18
transitivePeerDependencies:
- '@babel/core'
- '@babel/preset-env'
+ - '@react-native-community/cli-server-api'
- bufferutil
- - encoding
- supports-color
- - typescript
- utf-8-validate
- react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1)(typescript@5.8.2):
+ react-native@0.77.0(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))(@react-native-community/cli-server-api@15.1.3)(@types/react@18.3.18)(react@18.3.1):
dependencies:
'@jest/create-cache-key-function': 29.7.0
- '@react-native-community/cli': 14.1.0(typescript@5.8.2)
- '@react-native-community/cli-platform-android': 14.1.0
- '@react-native-community/cli-platform-ios': 14.1.0
- '@react-native/assets-registry': 0.75.3
- '@react-native/codegen': 0.75.3(@babel/preset-env@7.26.0(@babel/core@7.26.0))
- '@react-native/community-cli-plugin': 0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(encoding@0.1.13)
- '@react-native/gradle-plugin': 0.75.3
- '@react-native/js-polyfills': 0.75.3
- '@react-native/normalize-colors': 0.75.3
- '@react-native/virtualized-lists': 0.75.3(@types/react@18.3.12)(react-native@0.75.3(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1)(typescript@5.8.2))(react@18.3.1)
+ '@react-native/assets-registry': 0.77.0
+ '@react-native/codegen': 0.77.0(@babel/preset-env@7.26.8(@babel/core@7.26.8))
+ '@react-native/community-cli-plugin': 0.77.0(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))(@react-native-community/cli-server-api@15.1.3)
+ '@react-native/gradle-plugin': 0.77.0
+ '@react-native/js-polyfills': 0.77.0
+ '@react-native/normalize-colors': 0.77.0
+ '@react-native/virtualized-lists': 0.77.0(@types/react@18.3.18)(react-native@0.77.0(@babel/core@7.26.8)(@babel/preset-env@7.26.8(@babel/core@7.26.8))(@react-native-community/cli-server-api@15.1.3)(@types/react@18.3.18)(react@18.3.1))(react@18.3.1)
abort-controller: 3.0.0
anser: 1.4.10
ansi-regex: 5.0.1
+ babel-jest: 29.7.0(@babel/core@7.26.8)
+ babel-plugin-syntax-hermes-parser: 0.25.1
base64-js: 1.5.1
chalk: 4.1.2
- commander: 9.5.0
+ commander: 12.1.0
event-target-shim: 5.0.1
flow-enums-runtime: 0.0.6
glob: 7.2.3
@@ -44758,14 +44483,13 @@ snapshots:
jest-environment-node: 29.7.0
jsc-android: 250231.0.0
memoize-one: 5.2.1
- metro-runtime: 0.80.12
- metro-source-map: 0.80.12
- mkdirp: 0.5.6
+ metro-runtime: 0.81.1
+ metro-source-map: 0.81.1
nullthrows: 1.1.1
- pretty-format: 26.6.2
+ pretty-format: 29.7.0
promise: 8.3.0
react: 18.3.1
- react-devtools-core: 5.3.1
+ react-devtools-core: 6.1.1
react-refresh: 0.14.2
regenerator-runtime: 0.13.11
scheduler: 0.24.0-canary-efb381bbf-20230505
@@ -44775,16 +44499,14 @@ snapshots:
ws: 6.2.3
yargs: 17.7.2
optionalDependencies:
- '@types/react': 18.3.12
+ '@types/react': 18.3.18
transitivePeerDependencies:
- '@babel/core'
- '@babel/preset-env'
+ - '@react-native-community/cli-server-api'
- bufferutil
- - encoding
- supports-color
- - typescript
- utf-8-validate
- optional: true
react-navigation-stack@2.10.4(b23yjknfeew5kcy4o5zrlfz5ae):
dependencies:
@@ -44798,17 +44520,17 @@ snapshots:
react-native-screens: 3.31.1(react-native@0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
react-navigation: 4.4.4(react-native@0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- react-navigation-stack@2.10.4(ei6zhj5w65kzzp3jt27w3zu7ea):
+ react-navigation-stack@2.10.4(x4izpq5pzobiouf7jvcmlljasy):
dependencies:
- '@react-native-community/masked-view': 0.1.11(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@react-native-community/masked-view': 0.1.11(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
color: 3.2.1
react: 18.2.0
- react-native: 0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
- react-native-gesture-handler: 2.16.2(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- react-native-iphone-x-helper: 1.3.1(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))
- react-native-safe-area-context: 4.10.5(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- react-native-screens: 3.31.1(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- react-navigation: 4.4.4(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ react-native: 0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
+ react-native-gesture-handler: 2.16.2(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ react-native-iphone-x-helper: 1.3.1(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))
+ react-native-safe-area-context: 4.10.5(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ react-native-screens: 3.31.1(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ react-navigation: 4.4.4(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
react-navigation@4.4.4(react-native@0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
dependencies:
@@ -44817,12 +44539,12 @@ snapshots:
react: 18.2.0
react-native: 0.74.5(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
- react-navigation@4.4.4(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
+ react-navigation@4.4.4(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
dependencies:
'@react-navigation/core': 3.7.9(react@18.2.0)
- '@react-navigation/native': 3.8.4(react-native@0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@react-navigation/native': 3.8.4(react-native@0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
react: 18.2.0
- react-native: 0.74.5(@babel/core@7.26.0)(@babel/preset-env@7.25.7(@babel/core@7.26.0))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.5(@babel/core@7.26.8)(@babel/preset-env@7.25.7(@babel/core@7.26.8))(@types/react@18.2.79)(encoding@0.1.13)(react@18.2.0)
react-refresh@0.14.2: {}
@@ -44849,13 +44571,13 @@ snapshots:
react-router-config@5.1.1(react-router@5.3.4(react@18.2.0))(react@18.2.0):
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.26.7
react: 18.2.0
react-router: 5.3.4(react@18.2.0)
react-router-dom@5.3.4(react@18.2.0):
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.26.7
history: 4.10.1
loose-envify: 1.4.0
prop-types: 15.8.1
@@ -44873,7 +44595,7 @@ snapshots:
react-router@5.3.4(react@18.2.0):
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.26.7
history: 4.10.1
hoist-non-react-statics: 3.3.2
loose-envify: 1.4.0
@@ -44906,7 +44628,7 @@ snapshots:
react-transition-group@4.4.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.7
dom-helpers: 5.2.1
loose-envify: 1.4.0
prop-types: 15.8.1
@@ -45036,6 +44758,14 @@ snapshots:
source-map: 0.6.1
tslib: 2.7.0
+ recast@0.23.9:
+ dependencies:
+ ast-types: 0.16.1
+ esprima: 4.0.1
+ source-map: 0.6.1
+ tiny-invariant: 1.3.3
+ tslib: 2.7.0
+
rechoir@0.6.2:
dependencies:
resolve: 1.22.8
@@ -45048,12 +44778,12 @@ snapshots:
dependencies:
minimatch: 3.1.2
- recyclerlistview@4.2.0(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
+ recyclerlistview@4.2.0(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
dependencies:
lodash.debounce: 4.0.8
prop-types: 15.8.1
react: 18.2.0
- react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
+ react-native: 0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0)
ts-object-utils: 0.0.5
redent@3.0.0:
@@ -45103,7 +44833,7 @@ snapshots:
regenerator-transform@0.15.2:
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.26.7
regex-parser@2.3.0: {}
@@ -45475,29 +45205,29 @@ snapshots:
'@rollup/rollup-win32-x64-msvc': 4.24.0
fsevents: 2.3.3
- rollup@4.34.6:
+ rollup@4.34.8:
dependencies:
'@types/estree': 1.0.6
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.34.6
- '@rollup/rollup-android-arm64': 4.34.6
- '@rollup/rollup-darwin-arm64': 4.34.6
- '@rollup/rollup-darwin-x64': 4.34.6
- '@rollup/rollup-freebsd-arm64': 4.34.6
- '@rollup/rollup-freebsd-x64': 4.34.6
- '@rollup/rollup-linux-arm-gnueabihf': 4.34.6
- '@rollup/rollup-linux-arm-musleabihf': 4.34.6
- '@rollup/rollup-linux-arm64-gnu': 4.34.6
- '@rollup/rollup-linux-arm64-musl': 4.34.6
- '@rollup/rollup-linux-loongarch64-gnu': 4.34.6
- '@rollup/rollup-linux-powerpc64le-gnu': 4.34.6
- '@rollup/rollup-linux-riscv64-gnu': 4.34.6
- '@rollup/rollup-linux-s390x-gnu': 4.34.6
- '@rollup/rollup-linux-x64-gnu': 4.34.6
- '@rollup/rollup-linux-x64-musl': 4.34.6
- '@rollup/rollup-win32-arm64-msvc': 4.34.6
- '@rollup/rollup-win32-ia32-msvc': 4.34.6
- '@rollup/rollup-win32-x64-msvc': 4.34.6
+ '@rollup/rollup-android-arm-eabi': 4.34.8
+ '@rollup/rollup-android-arm64': 4.34.8
+ '@rollup/rollup-darwin-arm64': 4.34.8
+ '@rollup/rollup-darwin-x64': 4.34.8
+ '@rollup/rollup-freebsd-arm64': 4.34.8
+ '@rollup/rollup-freebsd-x64': 4.34.8
+ '@rollup/rollup-linux-arm-gnueabihf': 4.34.8
+ '@rollup/rollup-linux-arm-musleabihf': 4.34.8
+ '@rollup/rollup-linux-arm64-gnu': 4.34.8
+ '@rollup/rollup-linux-arm64-musl': 4.34.8
+ '@rollup/rollup-linux-loongarch64-gnu': 4.34.8
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.34.8
+ '@rollup/rollup-linux-riscv64-gnu': 4.34.8
+ '@rollup/rollup-linux-s390x-gnu': 4.34.8
+ '@rollup/rollup-linux-x64-gnu': 4.34.8
+ '@rollup/rollup-linux-x64-musl': 4.34.8
+ '@rollup/rollup-win32-arm64-msvc': 4.34.8
+ '@rollup/rollup-win32-ia32-msvc': 4.34.8
+ '@rollup/rollup-win32-x64-msvc': 4.34.8
fsevents: 2.3.3
rope-sequence@1.3.4: {}
@@ -46302,12 +46032,12 @@ snapshots:
hey-listen: 1.0.8
tslib: 2.7.0
- styled-jsx@5.1.1(@babel/core@7.26.0)(react@18.2.0):
+ styled-jsx@5.1.1(@babel/core@7.26.8)(react@18.2.0):
dependencies:
client-only: 0.0.1
react: 18.2.0
optionalDependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.8
stylehacks@6.1.1(postcss@8.4.47):
dependencies:
@@ -46398,7 +46128,7 @@ snapshots:
css-tree: 2.3.1
css-what: 6.1.0
csso: 5.0.5
- picocolors: 1.1.1
+ picocolors: 1.1.0
swc-loader@0.2.6(@swc/core@1.10.1(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.10.1(@swc/helpers@0.5.5))):
dependencies:
@@ -46472,57 +46202,57 @@ snapshots:
- ts-node
optional: true
- tamagui@1.79.6(@types/react@18.3.11)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native-web@0.19.12(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
+ tamagui@1.79.6(@types/react@18.3.11)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native-web@0.19.12(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0):
dependencies:
'@tamagui/accordion': 1.79.6(react@18.2.0)
'@tamagui/adapt': 1.79.6(react@18.2.0)
- '@tamagui/alert-dialog': 1.79.6(@types/react@18.3.11)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/alert-dialog': 1.79.6(@types/react@18.3.11)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/animate-presence': 1.79.6(react@18.2.0)
- '@tamagui/avatar': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@tamagui/button': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@tamagui/card': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@tamagui/checkbox': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/avatar': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/button': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/card': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/checkbox': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/compose-refs': 1.79.6(react@18.2.0)
'@tamagui/core': 1.79.6(react@18.2.0)
'@tamagui/create-context': 1.79.6(react@18.2.0)
- '@tamagui/dialog': 1.79.6(@types/react@18.3.11)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/dialog': 1.79.6(@types/react@18.3.11)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/fake-react-native': 1.79.6
'@tamagui/focusable': 1.79.6(react@18.2.0)
'@tamagui/font-size': 1.79.6(react@18.2.0)
- '@tamagui/form': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@tamagui/get-button-sized': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/form': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/get-button-sized': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/get-font-sized': 1.79.6(react@18.2.0)
- '@tamagui/get-token': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/get-token': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/helpers': 1.79.6(react@18.2.0)
- '@tamagui/helpers-tamagui': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@tamagui/image': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@tamagui/label': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/helpers-tamagui': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/image': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/label': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/linear-gradient': 1.79.6(react@18.2.0)
- '@tamagui/list-item': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/list-item': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/polyfill-dev': 1.79.6
- '@tamagui/popover': 1.79.6(@types/react@18.3.11)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@tamagui/popper': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@tamagui/portal': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@tamagui/progress': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@tamagui/radio-group': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@tamagui/react-native-media-driver': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/popover': 1.79.6(@types/react@18.3.11)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/popper': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/portal': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/progress': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/radio-group': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/react-native-media-driver': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/scroll-view': 1.79.6(react@18.2.0)
- '@tamagui/select': 1.79.6(@types/react@18.3.11)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/select': 1.79.6(@types/react@18.3.11)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/separator': 1.79.6(react@18.2.0)
'@tamagui/shapes': 1.79.6(react@18.2.0)
- '@tamagui/sheet': 1.79.6(@types/react@18.3.11)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@tamagui/slider': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/sheet': 1.79.6(@types/react@18.3.11)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/slider': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/stacks': 1.79.6(react@18.2.0)
- '@tamagui/switch': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@tamagui/tabs': 1.79.6(@types/react@18.3.11)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@tamagui/text': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/switch': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/tabs': 1.79.6(@types/react@18.3.11)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/text': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/theme': 1.79.6(react@18.2.0)
- '@tamagui/toggle-group': 1.79.6(@types/react@18.3.11)(immer@9.0.21)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
- '@tamagui/tooltip': 1.79.6(@types/react@18.3.11)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/toggle-group': 1.79.6(@types/react@18.3.11)(immer@9.0.21)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/tooltip': 1.79.6(@types/react@18.3.11)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/use-controllable-state': 1.79.6(react@18.2.0)
'@tamagui/use-debounce': 1.79.6(react@18.2.0)
'@tamagui/use-force-update': 1.79.6(react@18.2.0)
- '@tamagui/use-window-dimensions': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.0(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
+ '@tamagui/use-window-dimensions': 1.79.6(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.26.8(@babel/core@7.24.5))(@types/react@18.3.11)(encoding@0.1.13)(react@18.2.0))(react@18.2.0)
'@tamagui/visually-hidden': 1.79.6(react@18.2.0)
react: 18.2.0
react-native-web: 0.19.12(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
@@ -46696,6 +46426,12 @@ snapshots:
commander: 2.20.3
source-map-support: 0.5.21
+ test-exclude@6.0.0:
+ dependencies:
+ '@istanbuljs/schema': 0.1.3
+ glob: 7.2.3
+ minimatch: 3.1.2
+
text-decoder@1.2.0:
dependencies:
b4a: 1.6.7
@@ -46764,8 +46500,7 @@ snapshots:
dependencies:
os-tmpdir: 1.0.2
- tmp@0.2.3:
- optional: true
+ tmp@0.2.3: {}
tmpl@1.0.5: {}
@@ -47271,10 +47006,10 @@ snapshots:
transitivePeerDependencies:
- webpack-sources
- unplugin-vue-components@0.26.0(@babel/parser@7.26.3)(rollup@4.34.6)(vue@3.4.21(typescript@5.5.4))(webpack-sources@3.2.3):
+ unplugin-vue-components@0.26.0(@babel/parser@7.26.8)(rollup@4.34.8)(vue@3.4.21(typescript@5.5.4))(webpack-sources@3.2.3):
dependencies:
'@antfu/utils': 0.7.10
- '@rollup/pluginutils': 5.1.2(rollup@4.34.6)
+ '@rollup/pluginutils': 5.1.2(rollup@4.34.8)
chokidar: 3.6.0
debug: 4.3.7(supports-color@8.1.1)
fast-glob: 3.3.2
@@ -47285,7 +47020,7 @@ snapshots:
unplugin: 1.14.1(webpack-sources@3.2.3)
vue: 3.4.21(typescript@5.5.4)
optionalDependencies:
- '@babel/parser': 7.26.3
+ '@babel/parser': 7.26.8
transitivePeerDependencies:
- rollup
- supports-color
@@ -47524,9 +47259,9 @@ snapshots:
- '@swc/helpers'
- rollup
- vite-plugin-top-level-await@1.4.4(@swc/helpers@0.5.5)(rollup@4.34.6)(vite@5.4.8(@types/node@20.16.10)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)):
+ vite-plugin-top-level-await@1.4.4(@swc/helpers@0.5.5)(rollup@4.34.8)(vite@5.4.8(@types/node@20.16.10)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)):
dependencies:
- '@rollup/plugin-virtual': 3.0.2(rollup@4.34.6)
+ '@rollup/plugin-virtual': 3.0.2(rollup@4.34.8)
'@swc/core': 1.10.1(@swc/helpers@0.5.5)
uuid: 10.0.0
vite: 5.4.8(@types/node@20.16.10)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)
@@ -47534,9 +47269,9 @@ snapshots:
- '@swc/helpers'
- rollup
- vite-plugin-top-level-await@1.4.4(@swc/helpers@0.5.5)(rollup@4.34.6)(vite@5.4.8(@types/node@22.7.4)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)):
+ vite-plugin-top-level-await@1.4.4(@swc/helpers@0.5.5)(rollup@4.34.8)(vite@5.4.8(@types/node@22.7.4)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)):
dependencies:
- '@rollup/plugin-virtual': 3.0.2(rollup@4.34.6)
+ '@rollup/plugin-virtual': 3.0.2(rollup@4.34.8)
'@swc/core': 1.10.1(@swc/helpers@0.5.5)
uuid: 10.0.0
vite: 5.4.8(@types/node@22.7.4)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)
@@ -47544,22 +47279,22 @@ snapshots:
- '@swc/helpers'
- rollup
- vite-plugin-top-level-await@1.4.4(@swc/helpers@0.5.5)(rollup@4.34.6)(vite@6.1.0(@types/node@20.17.6)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1)):
+ vite-plugin-top-level-await@1.4.4(@swc/helpers@0.5.5)(rollup@4.34.8)(vite@6.2.0(@types/node@20.17.6)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1)):
dependencies:
- '@rollup/plugin-virtual': 3.0.2(rollup@4.34.6)
+ '@rollup/plugin-virtual': 3.0.2(rollup@4.34.8)
'@swc/core': 1.10.1(@swc/helpers@0.5.5)
uuid: 10.0.0
- vite: 6.1.0(@types/node@20.17.6)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1)
+ vite: 6.2.0(@types/node@20.17.6)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1)
transitivePeerDependencies:
- '@swc/helpers'
- rollup
- vite-plugin-top-level-await@1.4.4(@swc/helpers@0.5.5)(rollup@4.34.6)(vite@6.1.0(@types/node@22.7.4)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1)):
+ vite-plugin-top-level-await@1.4.4(@swc/helpers@0.5.5)(rollup@4.34.8)(vite@6.2.0(@types/node@22.7.4)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1)):
dependencies:
- '@rollup/plugin-virtual': 3.0.2(rollup@4.34.6)
+ '@rollup/plugin-virtual': 3.0.2(rollup@4.34.8)
'@swc/core': 1.10.1(@swc/helpers@0.5.5)
uuid: 10.0.0
- vite: 6.1.0(@types/node@22.7.4)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1)
+ vite: 6.2.0(@types/node@22.7.4)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1)
transitivePeerDependencies:
- '@swc/helpers'
- rollup
@@ -47583,19 +47318,19 @@ snapshots:
dependencies:
vite: 5.4.8(@types/node@22.7.4)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)
- vite-plugin-wasm@3.3.0(vite@6.1.0(@types/node@20.17.6)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1)):
+ vite-plugin-wasm@3.3.0(vite@6.2.0(@types/node@20.17.6)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1)):
dependencies:
- vite: 6.1.0(@types/node@20.17.6)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1)
+ vite: 6.2.0(@types/node@20.17.6)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1)
- vite-plugin-wasm@3.3.0(vite@6.1.0(@types/node@22.7.4)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1)):
+ vite-plugin-wasm@3.3.0(vite@6.2.0(@types/node@22.7.4)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1)):
dependencies:
- vite: 6.1.0(@types/node@22.7.4)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1)
+ vite: 6.2.0(@types/node@22.7.4)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1)
vite@5.4.11(@types/node@22.7.4)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1):
dependencies:
esbuild: 0.21.5
- postcss: 8.5.1
- rollup: 4.34.6
+ postcss: 8.5.3
+ rollup: 4.34.8
optionalDependencies:
'@types/node': 22.7.4
fsevents: 2.3.3
@@ -47643,11 +47378,11 @@ snapshots:
sass: 1.79.4
terser: 5.34.1
- vite@6.1.0(@types/node@20.17.6)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1):
+ vite@6.2.0(@types/node@20.17.6)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1):
dependencies:
- esbuild: 0.24.2
- postcss: 8.5.1
- rollup: 4.34.6
+ esbuild: 0.25.0
+ postcss: 8.5.3
+ rollup: 4.34.8
optionalDependencies:
'@types/node': 20.17.6
fsevents: 2.3.3
@@ -47658,11 +47393,11 @@ snapshots:
terser: 5.34.1
yaml: 2.6.1
- vite@6.1.0(@types/node@22.7.4)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1):
+ vite@6.2.0(@types/node@22.7.4)(jiti@1.21.6)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)(yaml@2.6.1):
dependencies:
- esbuild: 0.24.2
- postcss: 8.5.1
- rollup: 4.34.6
+ esbuild: 0.25.0
+ postcss: 8.5.3
+ rollup: 4.34.8
optionalDependencies:
'@types/node': 22.7.4
fsevents: 2.3.3
@@ -47698,7 +47433,7 @@ snapshots:
optionalDependencies:
'@types/debug': 4.1.12
'@types/node': 22.7.4
- '@vitest/browser': 3.0.8(@testing-library/dom@10.4.0)(@types/node@22.7.4)(playwright@1.51.0)(typescript@5.7.2)(vite@5.4.11(@types/node@22.7.4)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))(vitest@3.0.8)(webdriverio@9.8.0)
+ '@vitest/browser': 3.0.8(@testing-library/dom@10.4.0)(@types/node@22.7.4)(playwright@1.51.0)(typescript@5.7.2)(vite@5.4.11(@types/node@22.7.4)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1))(vitest@3.0.8)(webdriverio@9.4.5)
jsdom: 24.1.3
transitivePeerDependencies:
- less
@@ -47828,15 +47563,15 @@ snapshots:
web-streams-polyfill@3.2.1: {}
- webdriver@9.7.3:
+ webdriver@9.4.4:
dependencies:
'@types/node': 20.17.12
'@types/ws': 8.5.12
- '@wdio/config': 9.7.3
+ '@wdio/config': 9.4.4
'@wdio/logger': 9.4.4
- '@wdio/protocols': 9.7.0
- '@wdio/types': 9.6.3
- '@wdio/utils': 9.7.3
+ '@wdio/protocols': 9.4.4
+ '@wdio/types': 9.4.4
+ '@wdio/utils': 9.4.4
deepmerge-ts: 7.1.3
undici: 6.21.0
ws: 8.18.1
@@ -47846,23 +47581,23 @@ snapshots:
- utf-8-validate
optional: true
- webdriverio@9.8.0:
+ webdriverio@9.4.5:
dependencies:
'@types/node': 20.17.12
'@types/sinonjs__fake-timers': 8.1.5
- '@wdio/config': 9.7.3
+ '@wdio/config': 9.4.4
'@wdio/logger': 9.4.4
- '@wdio/protocols': 9.7.0
+ '@wdio/protocols': 9.4.4
'@wdio/repl': 9.4.4
- '@wdio/types': 9.6.3
- '@wdio/utils': 9.7.3
+ '@wdio/types': 9.4.4
+ '@wdio/utils': 9.4.4
archiver: 7.0.1
aria-query: 5.3.2
cheerio: 1.0.0-rc.12
css-shorthand-properties: 1.1.2
css-value: 0.0.1
grapheme-splitter: 1.0.4
- htmlfy: 0.6.0
+ htmlfy: 0.3.2
import-meta-resolve: 4.1.0
is-plain-obj: 4.1.0
jszip: 3.10.1
@@ -47874,7 +47609,7 @@ snapshots:
rgb2hex: 0.2.5
serialize-error: 11.0.3
urlpattern-polyfill: 10.0.0
- webdriver: 9.7.3
+ webdriver: 9.4.4
transitivePeerDependencies:
- bufferutil
- supports-color
@@ -48326,10 +48061,10 @@ snapshots:
workbox-build@7.1.1(@types/babel__core@7.20.5):
dependencies:
'@apideck/better-ajv-errors': 0.3.6(ajv@8.17.1)
- '@babel/core': 7.24.5
- '@babel/preset-env': 7.26.0(@babel/core@7.24.5)
- '@babel/runtime': 7.26.0
- '@rollup/plugin-babel': 5.3.1(@babel/core@7.24.5)(@types/babel__core@7.20.5)(rollup@2.79.2)
+ '@babel/core': 7.26.8
+ '@babel/preset-env': 7.26.8(@babel/core@7.26.8)
+ '@babel/runtime': 7.26.7
+ '@rollup/plugin-babel': 5.3.1(@babel/core@7.26.8)(@types/babel__core@7.20.5)(rollup@2.79.2)
'@rollup/plugin-node-resolve': 15.2.3(rollup@2.79.2)
'@rollup/plugin-replace': 2.4.2(rollup@2.79.2)
'@rollup/plugin-terser': 0.4.4(rollup@2.79.2)
@@ -48466,6 +48201,11 @@ snapshots:
signal-exit: 3.0.7
typedarray-to-buffer: 3.1.5
+ write-file-atomic@4.0.2:
+ dependencies:
+ imurmurhash: 0.1.4
+ signal-exit: 3.0.7
+
write-file-atomic@5.0.1:
dependencies:
imurmurhash: 0.1.4