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..a911edfec
--- /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.3.1):
+ - DoubleConversion
+ - glog
+ - hermes-engine
+ - powersync-sqlite-core (~> 0.3.8)
+ - 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.11)
+ - 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: 3b354ca04cc19a020ca352a040baf61ec9ff5ca2
+ powersync-op-sqlite: 16da9cbafac4f8b2553a1ba559995d5ea1df5323
+ powersync-sqlite-core: 63f9e7adb74044ab7786e4f60e86994d13dcc7a9
+ 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: 78d74e245ed67bb94275a1316cdc170b9b7fe884
+
+PODFILE CHECKSUM: bb12a365adcc932a9920d41a90a756c0c4846dd8
+
+COCOAPODS: 1.16.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..8a225f8d7
--- /dev/null
+++ b/demos/react-native-barebones-opsqlite/package.json
@@ -0,0 +1,42 @@
+{
+ "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",
+ "test": "jest"
+ },
+ "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/jest": "^29.5.14",
+ "@types/react": "^18.3.18",
+ "@types/react-test-renderer": "^18.3.1",
+ "typescript": "^5.0.4"
+ },
+ "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 3cf1344b9..07d8cce2f 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.5
- version: 3.0.5(@types/node@22.7.4)(playwright@1.50.1)(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.5)(webdriverio@9.8.0)
+ version: 3.0.7(@types/node@22.7.4)(playwright@1.50.1)(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.7)(webdriverio@9.4.5)
husky:
specifier: ^9.0.11
version: 9.1.6
@@ -37,7 +37,7 @@ importers:
version: 5.7.2
vitest:
specifier: ^3.0.5
- version: 3.0.5(@types/debug@4.1.12)(@types/node@22.7.4)(@vitest/browser@3.0.5)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.28.2)(msw@2.7.0(@types/node@22.7.4)(typescript@5.7.2))(sass@1.79.4)(terser@5.34.1)
+ version: 3.0.7(@types/debug@4.1.12)(@types/node@22.7.4)(@vitest/browser@3.0.7)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.28.2)(msw@2.7.3(@types/node@22.7.4)(typescript@5.7.2))(sass@1.79.4)(terser@5.34.1)
demos/angular-supabase-todolist:
dependencies:
@@ -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.3.0
- version: 2.3.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: 2.3.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)
'@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(de9b7caae7cef38a32afa5b76a3c9d54)
+ 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(49b2fd6c45ca81e2d20f2f5a4be05a3e)
+ 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(b5d6035dfb87b14e0677db2e89c1e7ef)
+ 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
@@ -258,7 +258,7 @@ importers:
version: 7.0.0(@capacitor/core@7.0.1)
'@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)))
@@ -526,7 +526,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))
@@ -539,10 +539,10 @@ importers:
devDependencies:
'@types/webpack':
specifier: ^5.28.5
- version: 5.28.5(webpack-cli@5.1.4)
+ version: 5.28.5(webpack-cli@5.1.4(webpack@5.95.0))
html-webpack-plugin:
specifier: ^5.6.0
- version: 5.6.0(@rspack/core@1.1.8(@swc/helpers@0.5.5))(webpack@5.95.0)
+ version: 5.6.0(@rspack/core@1.1.8(@swc/helpers@0.5.5))(webpack@5.95.0(webpack-cli@5.1.4))
serve:
specifier: ^14.2.1
version: 14.2.3
@@ -557,7 +557,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
@@ -635,6 +635,79 @@ 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.7.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.7.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/jest':
+ specifier: ^29.5.14
+ version: 29.5.14
+ '@types/react':
+ specifier: ^18.3.18
+ version: 18.3.18
+ '@types/react-test-renderer':
+ specifier: ^18.3.1
+ version: 18.3.1
+ typescript:
+ specifier: ^5.0.4
+ version: 5.7.2
+
demos/react-native-supabase-group-chat:
dependencies:
'@azure/core-asynciterator-polyfill':
@@ -645,7 +718,7 @@ importers:
version: 8.3.1
'@journeyapps/react-native-quick-sqlite':
specifier: ^2.3.0
- version: 2.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: 2.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)
'@powersync/common':
specifier: workspace:*
version: link:../../packages/common
@@ -657,28 +730,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
@@ -687,25 +760,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(988d822f9e58e176bb73f45e8e45eb4a)
+ 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
@@ -720,31 +793,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
@@ -799,7 +872,7 @@ importers:
version: 0.1.11(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/drawer':
specifier: ^6.6.3
- version: 6.7.2(fe8cd8328c484d4e3eaed8eea351852b)
+ version: 6.7.2(f5uupuoecme7pb3346nlwm73my)
'@react-navigation/native':
specifier: ^6.0.0
version: 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)
@@ -838,7 +911,7 @@ importers:
version: 6.3.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-router:
specifier: 3.5.23
- version: 3.5.23(2f86f7434a59b644ba234fab7be01c9e)
+ version: 3.5.23(x45f6tg66eoafhyrv4brrngbdm)
expo-secure-store:
specifier: ~13.0.1
version: 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))
@@ -886,7 +959,7 @@ importers:
version: 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-stack:
specifier: ^2.10.4
- version: 2.10.4(cf0911ea264205029347060226fe0d29)
+ version: 2.10.4(b23yjknfeew5kcy4o5zrlfz5ae)
devDependencies:
'@babel/core':
specifier: ^7.24.5
@@ -950,7 +1023,7 @@ importers:
version: 0.1.11(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/drawer':
specifier: ^6.6.3
- version: 6.7.2(fe8cd8328c484d4e3eaed8eea351852b)
+ version: 6.7.2(f5uupuoecme7pb3346nlwm73my)
'@react-navigation/native':
specifier: ^6.0.0
version: 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)
@@ -983,7 +1056,7 @@ importers:
version: 6.3.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-router:
specifier: 3.5.21
- version: 3.5.21(43cc03a7fb538f7aef105856925492f6)
+ version: 3.5.21(qrxjjyxvihi5xb6jovt7bb6fjy)
expo-secure-store:
specifier: ~13.0.1
version: 13.0.2(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@babel/core@7.24.5))(encoding@0.1.13))
@@ -1043,7 +1116,7 @@ importers:
version: 0.19.12(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react-navigation-stack:
specifier: ^2.10.4
- version: 2.10.4(cf0911ea264205029347060226fe0d29)
+ version: 2.10.4(b23yjknfeew5kcy4o5zrlfz5ae)
devDependencies:
'@babel/core':
specifier: ^7.24.5
@@ -1080,7 +1153,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)
@@ -1138,10 +1211,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
@@ -1153,7 +1226,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))
@@ -1168,7 +1241,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)
@@ -1226,10 +1299,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
@@ -1241,7 +1314,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))
@@ -1299,7 +1372,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)
@@ -1308,7 +1381,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)
@@ -1332,7 +1405,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.11.3
version: 0.11.3(lexical@0.11.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(yjs@13.6.19)
@@ -1477,7 +1550,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))
@@ -1486,13 +1559,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
@@ -1514,7 +1587,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
@@ -1547,10 +1620,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:
@@ -1621,7 +1694,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
@@ -1630,16 +1703,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.7.2))(react@18.3.1))(@types/react@18.3.12)(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/react@18.3.18)(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:
@@ -1652,7 +1725,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
@@ -1661,13 +1734,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/powersync-op-sqlite:
dependencies:
@@ -1680,7 +1753,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.7.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.7.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.7.2)
@@ -1710,7 +1783,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.7.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.7.2)
react-native-builder-bob:
specifier: ^0.30.2
version: 0.30.2(typescript@5.7.2)
@@ -1750,10 +1823,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.1
- version: 2.4.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@18.2.0)
+ version: 2.4.1(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)
@@ -1789,7 +1862,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
@@ -1878,25 +1951,25 @@ importers:
version: 4.0.1
source-map-loader:
specifier: ^5.0.0
- version: 5.0.0(webpack@5.95.0)
+ version: 5.0.0(webpack@5.95.0(webpack-cli@5.1.4))
stream-browserify:
specifier: ^3.0.0
version: 3.0.0
terser-webpack-plugin:
specifier: ^5.3.9
- version: 5.3.10(webpack@5.95.0)
+ version: 5.3.10(webpack@5.95.0(webpack-cli@5.1.4))
uuid:
specifier: ^9.0.1
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
@@ -1914,7 +1987,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)
@@ -1957,10 +2030,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
@@ -1972,7 +2045,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))
@@ -2307,6 +2380,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'}
@@ -2319,8 +2396,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':
@@ -2345,6 +2422,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'}
@@ -2369,6 +2450,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'}
@@ -2398,6 +2483,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'}
@@ -2446,6 +2536,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'}
@@ -2526,6 +2620,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'}
@@ -2540,6 +2638,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'}
@@ -2679,6 +2782,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:
@@ -2812,12 +2920,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'}
@@ -2854,8 +2956,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
@@ -2890,6 +2992,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'}
@@ -3196,6 +3304,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'}
@@ -3310,12 +3424,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'}
@@ -3346,12 +3454,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'}
@@ -3406,12 +3508,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'}
@@ -3472,6 +3568,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'}
@@ -3484,8 +3586,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
@@ -3556,8 +3658,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
@@ -3615,8 +3717,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':
@@ -3627,6 +3729,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'}
@@ -3635,6 +3741,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'}
@@ -3643,6 +3753,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==}
@@ -4429,8 +4543,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]
@@ -4453,8 +4567,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]
@@ -4477,8 +4591,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]
@@ -4501,8 +4615,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]
@@ -4525,8 +4639,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]
@@ -4549,8 +4663,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]
@@ -4573,8 +4687,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]
@@ -4597,8 +4711,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]
@@ -4621,8 +4735,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]
@@ -4645,8 +4759,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]
@@ -4669,8 +4783,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]
@@ -4693,8 +4807,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]
@@ -4717,8 +4831,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]
@@ -4741,8 +4855,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]
@@ -4765,8 +4879,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]
@@ -4789,8 +4903,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]
@@ -4813,14 +4927,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]
@@ -4843,8 +4957,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]
@@ -4855,8 +4969,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]
@@ -4879,8 +4993,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]
@@ -4903,8 +5017,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]
@@ -4927,8 +5041,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]
@@ -4951,8 +5065,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]
@@ -4975,8 +5089,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]
@@ -5406,6 +5520,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'}
@@ -5418,6 +5536,10 @@ packages:
resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ '@jest/expect-utils@29.7.0':
+ resolution: {integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
'@jest/fake-timers@29.7.0':
resolution: {integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -5426,6 +5548,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'}
@@ -5454,6 +5580,9 @@ packages:
react: '*'
react-native: '*'
+ '@journeyapps/wa-sqlite@1.2.0':
+ resolution: {integrity: sha512-CL2oTvpr3y+yUExDCgh/MDi8NIpHwMNQ4ywWvpqp/9iErFWVIiKzDRdKbM+82DLceOY2yQJlV/hjejnOMKkgwg==}
+
'@journeyapps/wa-sqlite@1.2.1':
resolution: {integrity: sha512-vfhhdyNFf5yoXVIfTM5Zb3LFPqIwOSPeuBHfi/BKsBRZPZdxBUmgDab/447BcfwSbH2zA2LNLC1qqQCJYS+wNQ==}
@@ -6079,6 +6208,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==}
@@ -6332,6 +6467,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==}
@@ -6344,6 +6488,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==}
@@ -6356,6 +6503,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==}
@@ -6368,6 +6518,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==}
@@ -6389,6 +6542,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==}
@@ -6398,6 +6554,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==}
@@ -6410,6 +6569,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==}
@@ -6425,6 +6587,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==}
@@ -6437,6 +6602,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==}
@@ -6449,6 +6617,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'}
@@ -6469,6 +6640,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
@@ -6491,6 +6667,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'}
@@ -6503,6 +6683,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'}
@@ -6521,6 +6705,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:
@@ -6544,6 +6734,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'}
@@ -6556,6 +6752,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'}
@@ -6572,6 +6777,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'}
@@ -6588,6 +6797,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'}
@@ -6595,10 +6808,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==}
@@ -6614,6 +6838,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==}
@@ -6629,6 +6857,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'}
@@ -6647,6 +6879,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==}
@@ -6671,6 +6913,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:
@@ -6709,6 +6957,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:
@@ -6942,8 +7201,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]
@@ -6962,8 +7221,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]
@@ -6982,8 +7241,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]
@@ -7002,18 +7261,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]
@@ -7032,8 +7291,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]
@@ -7052,8 +7311,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]
@@ -7072,8 +7331,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]
@@ -7092,13 +7351,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]
@@ -7117,8 +7376,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]
@@ -7137,8 +7396,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]
@@ -7157,8 +7416,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]
@@ -7177,8 +7436,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]
@@ -7197,8 +7456,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]
@@ -7217,8 +7476,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]
@@ -7237,8 +7496,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]
@@ -7257,8 +7516,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]
@@ -8586,9 +8845,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==}
@@ -8631,6 +8896,9 @@ packages:
'@types/istanbul-reports@3.0.4':
resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==}
+ '@types/jest@29.5.14':
+ resolution: {integrity: sha512-ZN+4sdnLUbo8EVvVc2ao0GFW6oVrQRPn4K2lglySj7APvSrgzxHiNNK99us4WDMi57xxA2yggblIAMNhXOotLQ==}
+
'@types/json-schema@7.0.15':
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
@@ -8742,6 +9010,9 @@ packages:
'@types/react-router@5.1.20':
resolution: {integrity: sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==}
+ '@types/react-test-renderer@18.3.1':
+ resolution: {integrity: sha512-vAhnk0tG2eGa37lkU9+s5SoroCsRI08xnsWFiAXOuPH2jqzMbcXvKExXViPi1P5fIklDeCvXqyrdmipFaSkZrA==}
+
'@types/react-transition-group@4.4.11':
resolution: {integrity: sha512-RM05tAniPZ5DZPzzNFP+DmrcOdD0efDUxMy3145oljWSl3x9ZV5vhme98gTxFrj2lhXvmGNnUiuDyJgY9IKkNA==}
@@ -8751,8 +9022,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==}
@@ -8869,6 +9140,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}
@@ -8889,6 +9171,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}
@@ -8897,6 +9189,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}
@@ -8917,6 +9213,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}
@@ -8925,6 +9231,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}
@@ -8943,6 +9253,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}
@@ -8955,6 +9274,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}
@@ -8963,6 +9288,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==}
@@ -9001,13 +9330,13 @@ packages:
vite: ^5.0.0
vue: ^3.2.25
- '@vitest/browser@3.0.5':
- resolution: {integrity: sha512-5WAWJoucuWcGYU5t0HPBY03k9uogbUEIu4pDmZHoB4Dt+6pXqzDbzEmxGjejZSitSYA3k/udYfuotKNxETVA3A==}
+ '@vitest/browser@3.0.7':
+ resolution: {integrity: sha512-TDzZtnbe37KZLSLhvlO1pUkeRSRzW3rOhPLsshX8agGoPELMlG7EvS4z9GfsdaCxsP7oWLBJpFjNJwLS458Bzg==}
peerDependencies:
playwright: '*'
safaridriver: '*'
- vitest: 3.0.5
- webdriverio: '*'
+ vitest: 3.0.7
+ webdriverio: ^7.0.0 || ^8.0.0 || ^9.0.0
peerDependenciesMeta:
playwright:
optional: true
@@ -9016,11 +9345,11 @@ packages:
webdriverio:
optional: true
- '@vitest/expect@3.0.5':
- resolution: {integrity: sha512-nNIOqupgZ4v5jWuQx2DSlHLEs7Q4Oh/7AYwNyE+k0UQzG7tSmjPXShUikn1mpNGzYEN2jJbTvLejwShMitovBA==}
+ '@vitest/expect@3.0.7':
+ resolution: {integrity: sha512-QP25f+YJhzPfHrHfYHtvRn+uvkCFCqFtW9CktfBxmB+25QqWsx7VB2As6f4GmwllHLDhXNHvqedwhvMmSnNmjw==}
- '@vitest/mocker@3.0.5':
- resolution: {integrity: sha512-CLPNBFBIE7x6aEGbIjaQAX03ZZlBMaWwAjBdMkIf/cAn6xzLTiM3zYqO/WAbieEjsAZir6tO71mzeHZoodThvw==}
+ '@vitest/mocker@3.0.7':
+ resolution: {integrity: sha512-qui+3BLz9Eonx4EAuR/i+QlCX6AUZ35taDQgwGkK/Tw6/WgwodSrjN1X2xf69IA/643ZX5zNKIn2svvtZDrs4w==}
peerDependencies:
msw: ^2.4.9
vite: ^5.0.0 || ^6.0.0
@@ -9030,20 +9359,20 @@ packages:
vite:
optional: true
- '@vitest/pretty-format@3.0.5':
- resolution: {integrity: sha512-CjUtdmpOcm4RVtB+up8r2vVDLR16Mgm/bYdkGFe3Yj/scRfCpbSi2W/BDSDcFK7ohw8UXvjMbOp9H4fByd/cOA==}
+ '@vitest/pretty-format@3.0.7':
+ resolution: {integrity: sha512-CiRY0BViD/V8uwuEzz9Yapyao+M9M008/9oMOSQydwbwb+CMokEq3XVaF3XK/VWaOK0Jm9z7ENhybg70Gtxsmg==}
- '@vitest/runner@3.0.5':
- resolution: {integrity: sha512-BAiZFityFexZQi2yN4OX3OkJC6scwRo8EhRB0Z5HIGGgd2q+Nq29LgHU/+ovCtd0fOfXj5ZI6pwdlUmC5bpi8A==}
+ '@vitest/runner@3.0.7':
+ resolution: {integrity: sha512-WeEl38Z0S2ZcuRTeyYqaZtm4e26tq6ZFqh5y8YD9YxfWuu0OFiGFUbnxNynwLjNRHPsXyee2M9tV7YxOTPZl2g==}
- '@vitest/snapshot@3.0.5':
- resolution: {integrity: sha512-GJPZYcd7v8QNUJ7vRvLDmRwl+a1fGg4T/54lZXe+UOGy47F9yUfE18hRCtXL5aHN/AONu29NGzIXSVFh9K0feA==}
+ '@vitest/snapshot@3.0.7':
+ resolution: {integrity: sha512-eqTUryJWQN0Rtf5yqCGTQWsCFOQe4eNz5Twsu21xYEcnFJtMU5XvmG0vgebhdLlrHQTSq5p8vWHJIeJQV8ovsA==}
- '@vitest/spy@3.0.5':
- resolution: {integrity: sha512-5fOzHj0WbUNqPK6blI/8VzZdkBlQLnT25knX0r4dbZI9qoZDf3qAdjoMmDcLG5A83W6oUUFJgUd0EYBc2P5xqg==}
+ '@vitest/spy@3.0.7':
+ resolution: {integrity: sha512-4T4WcsibB0B6hrKdAZTM37ekuyFZt2cGbEGd2+L0P8ov15J1/HUsUaqkXEQPNAWr4BtPPe1gI+FYfMHhEKfR8w==}
- '@vitest/utils@3.0.5':
- resolution: {integrity: sha512-N9AX0NUoUtVwKwy21JtwzaqR5L5R5A99GAbrHfCCXK1lp593i/3AZAXhSP43wRQuxYsflrdzEfXZFo1reR1Nkg==}
+ '@vitest/utils@3.0.7':
+ resolution: {integrity: sha512-xePVpCRfooFX3rANQjwoditoXgWb1MaFbzmGuPP59MK6i13mrnDw/yEIyJudLeW6/38mCNcwCiJIGmpDPibAIg==}
'@volar/language-core@2.1.6':
resolution: {integrity: sha512-pAlMCGX/HatBSiDFMdMyqUshkbwWbLxpN/RL7HCQDOo2gYBE+uS+nanosLc1qR6pTQ/U8q00xt8bdrrAFPSC0A==}
@@ -9136,27 +9465,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':
@@ -9586,6 +9915,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'}
@@ -9661,6 +9994,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:
@@ -9683,6 +10022,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'}
@@ -9700,6 +10047,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:
@@ -9714,12 +10066,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==}
@@ -9731,6 +10091,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==}
@@ -10065,8 +10431,8 @@ packages:
ccount@2.0.1:
resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
- chai@5.1.2:
- resolution: {integrity: sha512-aGtmf24DW6MLHHG5gCx4zaI3uBq3KRtxeVs0DjFH6Z0rDNbsvTxFASFvdj79pxjxZ8/5u3PIiN3IwEIQkiiuPw==}
+ chai@5.2.0:
+ resolution: {integrity: sha512-mCuXncKXk5iCLhfhwTc0izo0gtEmpz5CtG2y8GiOINBlMVS6v8TMRc5TaLWKS6692m9+dVVfzgeVxR5UxWHTYw==}
engines: {node: '>=12'}
chalk-template@0.4.0:
@@ -10480,6 +10846,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==}
@@ -11162,6 +11531,10 @@ packages:
didyoumean@1.2.2:
resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
+ diff-sequences@29.6.3:
+ resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
diff@4.0.2:
resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==}
engines: {node: '>=0.3.1'}
@@ -11584,8 +11957,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
@@ -11730,6 +12103,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'}
@@ -11938,6 +12324,10 @@ packages:
resolution: {integrity: sha512-bFi65yM+xZgk+u/KRIpekdSYkTB5W1pEf0Lt8Q8Msh7b+eQ7LXVtIB1Bkm4fvclDEL1b2CZkMhv2mOeF8tMdkA==}
engines: {node: '>=12.0.0'}
+ expect@29.7.0:
+ resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
expo-asset@10.0.10:
resolution: {integrity: sha512-0qoTIihB79k+wGus9wy0JMKq7DdenziVx3iUkGvMAy2azscSgWH6bd2gJ9CGnhC6JRd3qTMFBL0ou/fx7WZl7A==}
peerDependencies:
@@ -12807,6 +13197,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==}
@@ -12819,6 +13212,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'}
@@ -12911,8 +13307,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==}
@@ -13576,6 +13972,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'}
@@ -13591,6 +13991,10 @@ packages:
engines: {node: '>=10'}
hasBin: true
+ jest-diff@29.7.0:
+ resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
jest-environment-node@29.7.0:
resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -13599,6 +14003,14 @@ 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-matcher-utils@29.7.0:
+ resolution: {integrity: sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==}
+ 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}
@@ -13611,6 +14023,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}
@@ -13679,6 +14095,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'}
@@ -14158,6 +14584,9 @@ packages:
loupe@3.1.2:
resolution: {integrity: sha512-23I4pFZHmAemUnz8WZXbYRSKYj801VDaNv9ETuMh7IrMc7VuVVSo+Z9iLE3ni30+U48iDWfi30d3twAXBYmnCg==}
+ loupe@3.1.3:
+ resolution: {integrity: sha512-kkIp7XSkP78ZxJEsSxW3712C6teJVoeHHwgo9zJ380de7IYyJ2ISlxojcH2pC5OFLewESmnRi/+XCDIEEVyoug==}
+
lower-case@2.0.2:
resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
@@ -14406,6 +14835,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'}
@@ -14414,6 +14847,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'}
@@ -14422,6 +14859,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'}
@@ -14430,6 +14871,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'}
@@ -14438,6 +14883,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'}
@@ -14446,6 +14895,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'}
@@ -14459,6 +14912,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'}
@@ -14483,6 +14940,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'}
@@ -14495,6 +14956,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'}
@@ -14507,6 +14972,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'}
@@ -14522,6 +14991,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'}
@@ -14530,6 +15004,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'}
@@ -14538,6 +15016,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'}
@@ -14548,6 +15030,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==}
@@ -14897,8 +15384,8 @@ packages:
msgpackr@1.11.0:
resolution: {integrity: sha512-I8qXuuALqJe5laEBYoFykChhSXLikZmUhccjGsPuSJ/7uPip2TJ7lwdIQwWSAi0jGZDXv4WOP8Qg65QZRuXxXw==}
- msw@2.7.0:
- resolution: {integrity: sha512-BIodwZ19RWfCbYTxWTUfTXc+sg4OwjCAgxU1ZsgmggX/7S3LdUifsbUPJs61j0rWb19CZRGY5if77duhc0uXzw==}
+ msw@2.7.3:
+ resolution: {integrity: sha512-+mycXv8l2fEAjFZ5sjrtjJDmm2ceKGjrNbBr1durRg6VkU9fNUE/gsmQ51hWbHqs+l35W1iM+ZsmOD9Fd6lspw==}
engines: {node: '>=18'}
hasBin: true
peerDependencies:
@@ -15230,6 +15717,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'}
@@ -15641,8 +16132,8 @@ packages:
resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==}
engines: {node: '>=12'}
- pathe@2.0.2:
- resolution: {integrity: sha512-15Ztpk+nov8DR524R4BF7uEuzESgzUEAV4Ah7CUMNGXdE5ELuvxElxGXndBl32vMSsWa1jpNf22Z+Er3sKwq+w==}
+ pathe@2.0.3:
+ resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
pathval@2.0.0:
resolution: {integrity: sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==}
@@ -16201,8 +16692,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:
@@ -16513,6 +17004,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:
@@ -16762,6 +17256,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
@@ -16950,6 +17455,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'}
@@ -17278,8 +17787,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
@@ -17610,8 +18119,8 @@ packages:
resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==}
engines: {node: '>= 10'}
- sirv@3.0.0:
- resolution: {integrity: sha512-BPwJGUeDaDCHihkORDchNyyTvWFhcusy1XMmhEVTQTwGeybFbp8YEmB+njbPnth1FibULBSBVwCQni25XlCUDg==}
+ sirv@3.0.1:
+ resolution: {integrity: sha512-FoqMu0NCGBLCcAkS1qA+XJIQTR6/JHfQXl+uGteNCQ76T91DMUjPa9xfmeqMY3z80nLSg9yQmNjK0Px6RWsH/A==}
engines: {node: '>=18'}
sisteransi@1.0.5:
@@ -18201,6 +18710,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==}
@@ -18914,8 +19427,8 @@ packages:
vfile@6.0.3:
resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==}
- vite-node@3.0.5:
- resolution: {integrity: sha512-02JEJl7SbtwSDJdYS537nU6l+ktdvcREfLksk/NDAqtdKWGqHl+joXzEubHROmS3E6pip+Xgu2tFezMu75jH7A==}
+ vite-node@3.0.7:
+ resolution: {integrity: sha512-2fX0QwX4GkkkpULXdT1Pf4q0tC1i1lFOyseKoonavXUNlQ77KpW2XqBGGNIm/J4Ows4KxgGJzDguYVPKwG/n5A==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
@@ -19048,8 +19561,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:
@@ -19088,16 +19601,16 @@ packages:
yaml:
optional: true
- vitest@3.0.5:
- resolution: {integrity: sha512-4dof+HvqONw9bvsYxtkfUp2uHsTN9bV2CZIi1pWgoFpL1Lld8LA1ka9q/ONSsoScAKG7NVGf2stJTI7XRkXb2Q==}
+ vitest@3.0.7:
+ resolution: {integrity: sha512-IP7gPK3LS3Fvn44x30X1dM9vtawm0aesAa2yBIZ9vQf+qB69NXC5776+Qmcr7ohUXIQuLhk7xQR0aSUIDPqavg==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
peerDependencies:
'@edge-runtime/vm': '*'
'@types/debug': ^4.1.12
'@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
- '@vitest/browser': 3.0.5
- '@vitest/ui': 3.0.5
+ '@vitest/browser': 3.0.7
+ '@vitest/ui': 3.0.7
happy-dom: '*'
jsdom: '*'
peerDependenciesMeta:
@@ -19241,12 +19754,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
@@ -19570,6 +20083,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}
@@ -19613,6 +20130,18 @@ packages:
utf-8-validate:
optional: true
+ ws@8.18.1:
+ resolution: {integrity: sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w==}
+ engines: {node: '>=10.0.0'}
+ peerDependencies:
+ bufferutil: ^4.0.1
+ utf-8-validate: '>=5.0.2'
+ peerDependenciesMeta:
+ bufferutil:
+ optional: true
+ utf-8-validate:
+ optional: true
+
xcode@3.0.1:
resolution: {integrity: sha512-kCz5k7J7XbJtjABOvkc5lJmkiDh8VhjVCGNiqdKCscmVpdVUpEAyXv1xmCLkQJ5dsHqx3IPO4XW+NTDhU/fatA==}
engines: {node: '>=10.0.0'}
@@ -20010,7 +20539,7 @@ snapshots:
dependencies:
'@ampproject/remapping': 2.3.0
'@angular-devkit/architect': 0.1802.7(chokidar@3.6.0)
- '@angular-devkit/build-webpack': 0.1802.7(chokidar@3.6.0)(webpack-dev-server@5.0.4(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))))(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5)))
+ '@angular-devkit/build-webpack': 0.1802.7(chokidar@3.6.0)(webpack-dev-server@5.0.4(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0)))(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0))
'@angular-devkit/core': 18.2.7(chokidar@3.6.0)
'@angular/build': 18.2.7(@angular/compiler-cli@18.2.7(@angular/compiler@18.2.7(@angular/core@18.2.7(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.5.4))(@angular/service-worker@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)))(@types/node@22.7.4)(chokidar@3.6.0)(less@4.2.0)(lightningcss@1.28.2)(postcss@8.4.41)(tailwindcss@3.4.13(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.5))(@types/node@22.7.4)(typescript@5.5.4)))(terser@5.31.6)(typescript@5.5.4)
'@angular/compiler-cli': 18.2.7(@angular/compiler@18.2.7(@angular/core@18.2.7(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.5.4)
@@ -20024,15 +20553,15 @@ snapshots:
'@babel/preset-env': 7.25.3(@babel/core@7.25.2)
'@babel/runtime': 7.25.0
'@discoveryjs/json-ext': 0.6.1
- '@ngtools/webpack': 18.2.7(@angular/compiler-cli@18.2.7(@angular/compiler@18.2.7(@angular/core@18.2.7(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.5.4))(typescript@5.5.4)(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5)))
+ '@ngtools/webpack': 18.2.7(@angular/compiler-cli@18.2.7(@angular/compiler@18.2.7(@angular/core@18.2.7(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.5.4))(typescript@5.5.4)(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0))
'@vitejs/plugin-basic-ssl': 1.1.0(vite@5.4.6(@types/node@22.7.4)(less@4.2.0)(lightningcss@1.28.2)(sass@1.77.6)(terser@5.31.6))
ansi-colors: 4.1.3
autoprefixer: 10.4.20(postcss@8.4.41)
- babel-loader: 9.1.3(@babel/core@7.25.2)(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5)))
+ babel-loader: 9.1.3(@babel/core@7.25.2)(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0))
browserslist: 4.24.0
- copy-webpack-plugin: 12.0.2(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5)))
+ copy-webpack-plugin: 12.0.2(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0))
critters: 0.0.24
- css-loader: 7.1.2(@rspack/core@1.1.8(@swc/helpers@0.5.5))(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5)))
+ css-loader: 7.1.2(@rspack/core@1.1.8(@swc/helpers@0.5.5))(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0))
esbuild-wasm: 0.23.0
fast-glob: 3.3.2
http-proxy-middleware: 3.0.0
@@ -20041,11 +20570,11 @@ snapshots:
jsonc-parser: 3.3.1
karma-source-map-support: 1.4.0
less: 4.2.0
- less-loader: 12.2.0(@rspack/core@1.1.8(@swc/helpers@0.5.5))(less@4.2.0)(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5)))
- license-webpack-plugin: 4.0.2(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5)))
+ less-loader: 12.2.0(@rspack/core@1.1.8(@swc/helpers@0.5.5))(less@4.2.0)(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0))
+ license-webpack-plugin: 4.0.2(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0))
loader-utils: 3.3.1
magic-string: 0.30.11
- mini-css-extract-plugin: 2.9.0(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5)))
+ mini-css-extract-plugin: 2.9.0(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0))
mrmime: 2.0.0
open: 10.1.0
ora: 5.4.1
@@ -20053,13 +20582,13 @@ snapshots:
picomatch: 4.0.2
piscina: 4.6.1
postcss: 8.4.41
- postcss-loader: 8.1.1(@rspack/core@1.1.8(@swc/helpers@0.5.5))(postcss@8.4.41)(typescript@5.5.4)(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5)))
+ postcss-loader: 8.1.1(@rspack/core@1.1.8(@swc/helpers@0.5.5))(postcss@8.4.41)(typescript@5.5.4)(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0))
resolve-url-loader: 5.0.0
rxjs: 7.8.1
sass: 1.77.6
- sass-loader: 16.0.0(@rspack/core@1.1.8(@swc/helpers@0.5.5))(sass@1.77.6)(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5)))
+ sass-loader: 16.0.0(@rspack/core@1.1.8(@swc/helpers@0.5.5))(sass@1.77.6)(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0))
semver: 7.6.3
- source-map-loader: 5.0.0(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5)))
+ source-map-loader: 5.0.0(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0))
source-map-support: 0.5.21
terser: 5.31.6
tree-kill: 1.2.2
@@ -20068,10 +20597,10 @@ snapshots:
vite: 5.4.6(@types/node@22.7.4)(less@4.2.0)(lightningcss@1.28.2)(sass@1.77.6)(terser@5.31.6)
watchpack: 2.4.1
webpack: 5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0)
- webpack-dev-middleware: 7.4.2(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5)))
- webpack-dev-server: 5.0.4(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5)))
+ webpack-dev-middleware: 7.4.2(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0))
+ webpack-dev-server: 5.0.4(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0))
webpack-merge: 6.0.1
- webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.0(@rspack/core@1.1.8(@swc/helpers@0.5.5))(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))))(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5)))
+ webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.0(@rspack/core@1.1.8(@swc/helpers@0.5.5))(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))))(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0))
optionalDependencies:
'@angular/service-worker': 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))
esbuild: 0.23.0
@@ -20094,12 +20623,12 @@ snapshots:
- utf-8-validate
- webpack-cli
- '@angular-devkit/build-webpack@0.1802.7(chokidar@3.6.0)(webpack-dev-server@5.0.4(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))))(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5)))':
+ '@angular-devkit/build-webpack@0.1802.7(chokidar@3.6.0)(webpack-dev-server@5.0.4(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0)))(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0))':
dependencies:
'@angular-devkit/architect': 0.1802.7(chokidar@3.6.0)
rxjs: 7.8.1
webpack: 5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0)
- webpack-dev-server: 5.0.4(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5)))
+ webpack-dev-server: 5.0.4(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0))
transitivePeerDependencies:
- chokidar
@@ -20303,6 +20832,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
@@ -20326,15 +20857,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
@@ -20363,29 +20894,30 @@ 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
+ debug: 4.3.7(supports-color@8.1.1)
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/eslint-parser@7.25.8(@babel/core@7.24.5)(eslint@8.57.1)':
+ '@babel/eslint-parser@7.25.8(@babel/core@7.26.8)(eslint@8.57.1)':
dependencies:
- '@babel/core': 7.24.5
+ '@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
@@ -20393,7 +20925,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
@@ -20401,7 +20933,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
@@ -20421,13 +20953,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:
@@ -20435,15 +20975,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
@@ -20456,54 +20996,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
@@ -20521,26 +21043,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
@@ -20550,28 +21072,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
@@ -20582,16 +21090,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
@@ -20599,9 +21107,9 @@ 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
- debug: 4.4.0
+ '@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:
@@ -20610,31 +21118,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
- debug: 4.4.0
+ '@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.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
- debug: 4.4.0
+ '@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:
- 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
+ '@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:
@@ -20642,12 +21161,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
@@ -20660,15 +21179,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
@@ -20678,17 +21197,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
@@ -20698,17 +21207,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
@@ -20717,31 +21216,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:
@@ -20751,39 +21250,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
@@ -20792,25 +21275,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
@@ -20819,34 +21302,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
@@ -20859,18 +21324,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
@@ -20879,15 +21344,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
@@ -20900,7 +21365,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': {}
@@ -20916,33 +21381,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
@@ -20955,58 +21425,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
@@ -21014,188 +21472,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
@@ -21204,43 +21608,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
@@ -21248,143 +21644,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)':
- 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)':
+ '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.26.8)':
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
@@ -21396,550 +21762,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)':
+ '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.8)':
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)':
- 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/plugin-syntax-export-namespace-from@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-export-namespace-from@7.8.3(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-export-namespace-from@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-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)':
+ '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.8)':
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)':
- 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
@@ -21953,50 +22174,40 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-async-generator-functions@7.25.7(@babel/core@7.25.7)':
+ '@babel/plugin-transform-async-generator-functions@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.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/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.7(@babel/core@7.26.0)':
- dependencies:
- '@babel/core': 7.26.0
- '@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/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
@@ -22004,8 +22215,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
@@ -22013,26 +22224,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
@@ -22040,128 +22242,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
@@ -22169,23 +22340,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
@@ -22193,35 +22364,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)':
+ '@babel/plugin-transform-class-static-block@7.25.7(@babel/core@7.26.8)':
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)':
- 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
@@ -22229,23 +22382,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
@@ -22253,46 +22406,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
@@ -22301,33 +22430,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:
@@ -22336,370 +22465,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)':
- 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)':
+ '@babel/plugin-transform-dynamic-import@7.25.7(@babel/core@7.26.8)':
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
@@ -22707,23 +22718,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
@@ -22731,247 +22742,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/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/core': 7.26.8
+ '@babel/helper-plugin-utils': 7.26.5
- '@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)':
- dependencies:
- '@babel/core': 7.25.7
- '@babel/helper-plugin-utils': 7.25.9
-
- '@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-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-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/plugin-transform-member-expression-literals@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.26.5
- '@babel/plugin-transform-member-expression-literals@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-logical-assignment-operators@7.25.9(@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-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)':
- 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)':
+ '@babel/plugin-transform-member-expression-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-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)
@@ -22979,54 +22896,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
@@ -23035,63 +22950,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
@@ -23099,27 +22994,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:
@@ -23128,32 +23023,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
@@ -23161,23 +23040,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
@@ -23185,361 +23064,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)':
+ '@babel/plugin-transform-nullish-coalescing-operator@7.25.7(@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-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)':
- 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/plugin-transform-numeric-separator@7.25.7(@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.2)
-
- '@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/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-numeric-separator@7.25.7(@babel/core@7.26.0)':
+ '@babel/plugin-transform-nullish-coalescing-operator@7.26.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.26.5
- '@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)':
+ '@babel/plugin-transform-numeric-separator@7.25.9(@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/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-object-rest-spread@7.25.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-numeric-separator@7.25.9(@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/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.26.8)':
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.26.8
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-object-rest-spread@7.25.7(@babel/core@7.26.0)':
- 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/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)':
+ '@babel/plugin-transform-optional-chaining@7.25.7(@babel/core@7.26.8)':
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)':
- 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
@@ -23547,67 +23323,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
@@ -23615,23 +23365,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
@@ -23640,38 +23390,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
@@ -23680,130 +23410,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
@@ -23817,9 +23503,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)':
@@ -23832,43 +23518,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:
@@ -23881,24 +23534,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
@@ -23906,133 +23548,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)
@@ -24040,30 +23642,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
@@ -24076,26 +23654,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
@@ -24103,66 +23669,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
@@ -24170,23 +23710,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
@@ -24194,145 +23734,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:
@@ -24345,198 +23827,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)
@@ -24548,55 +23984,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)
@@ -24638,7 +24074,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)
@@ -24695,190 +24131,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)
@@ -24890,9 +24237,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)
@@ -24917,7 +24264,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)
@@ -24933,324 +24280,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
@@ -25270,15 +24489,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:
@@ -25286,6 +24505,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
@@ -25305,7 +24530,19 @@ snapshots:
'@babel/parser': 7.26.3
'@babel/template': 7.25.9
'@babel/types': 7.26.3
- debug: 4.4.0
+ debug: 4.3.7(supports-color@8.1.1)
+ globals: 11.12.0
+ 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
@@ -25321,6 +24558,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
@@ -25404,7 +24646,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
@@ -25522,10 +24764,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
@@ -25792,14 +25034,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
@@ -25808,14 +25050,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
@@ -25834,13 +25076,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)))
@@ -25878,7 +25120,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)
@@ -25887,7 +25129,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
@@ -26012,7 +25254,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
@@ -26026,13 +25268,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)
@@ -26069,13 +25311,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)
@@ -26110,9 +25352,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)
@@ -26142,9 +25384,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
@@ -26172,9 +25414,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
@@ -26200,9 +25442,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
@@ -26229,9 +25471,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
@@ -26257,9 +25499,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)
@@ -26290,9 +25532,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)
@@ -26322,21 +25564,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)
@@ -26365,25 +25607,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
@@ -26418,15 +25660,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
@@ -26442,13 +25684,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)
@@ -26496,7 +25738,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
@@ -26867,7 +26109,7 @@ snapshots:
'@electron/notarize@2.5.0':
dependencies:
- debug: 4.4.0
+ debug: 4.3.7(supports-color@8.1.1)
fs-extra: 9.1.0
promise-retry: 2.0.1
transitivePeerDependencies:
@@ -26876,7 +26118,7 @@ snapshots:
'@electron/osx-sign@1.3.1':
dependencies:
compare-version: 0.1.2
- debug: 4.4.0
+ debug: 4.3.7(supports-color@8.1.1)
fs-extra: 10.1.0
isbinaryfile: 4.0.10
minimist: 1.2.8
@@ -26932,7 +26174,7 @@ snapshots:
dependencies:
'@electron/asar': 3.2.13
'@malept/cross-spawn-promise': 2.0.0
- debug: 4.4.0
+ debug: 4.3.7(supports-color@8.1.1)
dir-compare: 4.2.0
fs-extra: 11.2.0
minimatch: 9.0.5
@@ -26953,7 +26195,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
@@ -26992,7 +26234,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
@@ -27034,7 +26276,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)
@@ -27083,7 +26325,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':
@@ -27095,7 +26337,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':
@@ -27107,7 +26349,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':
@@ -27119,7 +26361,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':
@@ -27131,7 +26373,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':
@@ -27143,7 +26385,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':
@@ -27155,7 +26397,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':
@@ -27167,7 +26409,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':
@@ -27179,7 +26421,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':
@@ -27191,7 +26433,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':
@@ -27203,7 +26445,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':
@@ -27215,7 +26457,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':
@@ -27227,7 +26469,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':
@@ -27239,7 +26481,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':
@@ -27251,7 +26493,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':
@@ -27263,7 +26505,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':
@@ -27275,10 +26517,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':
@@ -27290,13 +26532,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':
@@ -27308,7 +26550,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':
@@ -27320,7 +26562,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':
@@ -27332,7 +26574,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':
@@ -27344,7 +26586,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':
@@ -27356,7 +26598,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)':
@@ -27397,7 +26639,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
@@ -27483,7 +26725,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
@@ -27586,7 +26828,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
@@ -27707,7 +26949,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':
@@ -27795,10 +27037,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
@@ -27816,17 +27058,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:
@@ -27910,7 +27152,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'
@@ -28016,7 +27258,7 @@ snapshots:
'@expo/image-utils': 0.5.1(encoding@0.1.13)
'@expo/json-file': 8.3.3
'@react-native/normalize-colors': 0.74.85
- debug: 4.4.0
+ debug: 4.3.7(supports-color@8.1.1)
expo-modules-autolinking: 1.11.3
fs-extra: 9.1.0
resolve-from: 5.0.0
@@ -28121,11 +27363,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:
@@ -28345,7 +27587,7 @@ snapshots:
'@ionic/utils-object@2.1.5':
dependencies:
- debug: 4.4.0
+ debug: 4.3.7(supports-color@8.1.1)
tslib: 2.7.0
transitivePeerDependencies:
- supports-color
@@ -28442,6 +27684,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':
@@ -28455,6 +27705,10 @@ snapshots:
'@types/node': 20.17.12
jest-mock: 29.7.0
+ '@jest/expect-utils@29.7.0':
+ dependencies:
+ jest-get-type: 29.6.3
+
'@jest/fake-timers@29.7.0':
dependencies:
'@jest/types': 29.6.3
@@ -28468,6 +27722,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
@@ -28499,25 +27773,27 @@ snapshots:
'@types/yargs': 17.0.33
chalk: 4.1.2
- '@journeyapps/react-native-quick-sqlite@2.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)':
+ '@journeyapps/react-native-quick-sqlite@2.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)
'@journeyapps/react-native-quick-sqlite@2.3.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:
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.3.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)':
+ '@journeyapps/react-native-quick-sqlite@2.3.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: 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/react-native-quick-sqlite@2.4.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@18.2.0)':
+ '@journeyapps/react-native-quick-sqlite@2.4.1(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/wa-sqlite@1.2.0': {}
'@journeyapps/wa-sqlite@1.2.1': {}
@@ -28880,14 +28156,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
@@ -28924,10 +28200,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': {}
@@ -29095,7 +28371,7 @@ snapshots:
'@mui/private-theming@5.16.6(@types/react@18.3.11)(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.25.7
+ '@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
@@ -29104,7 +28380,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.25.7
+ '@babel/runtime': 7.26.7
'@emotion/cache': 11.13.1
csstype: 3.1.3
prop-types: 15.8.1
@@ -29115,7 +28391,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.25.7
+ '@babel/runtime': 7.26.7
'@emotion/cache': 11.13.1
csstype: 3.1.3
prop-types: 15.8.1
@@ -29126,7 +28402,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)
@@ -29142,7 +28418,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)
@@ -29162,7 +28438,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
@@ -29233,7 +28509,7 @@ snapshots:
'@next/swc-win32-x64-msvc@14.2.3':
optional: true
- '@ngtools/webpack@18.2.7(@angular/compiler-cli@18.2.7(@angular/compiler@18.2.7(@angular/core@18.2.7(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.5.4))(typescript@5.5.4)(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5)))':
+ '@ngtools/webpack@18.2.7(@angular/compiler-cli@18.2.7(@angular/compiler@18.2.7(@angular/core@18.2.7(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.5.4))(typescript@5.5.4)(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0))':
dependencies:
'@angular/compiler-cli': 18.2.7(@angular/compiler@18.2.7(@angular/core@18.2.7(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.5.4)
typescript: 5.5.4
@@ -29354,7 +28630,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
@@ -29415,16 +28691,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.7.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.7.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.7.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.7.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.7.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.7.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': {}
@@ -29735,7 +29010,7 @@ snapshots:
'@puppeteer/browsers@2.4.1':
dependencies:
- debug: 4.4.0
+ debug: 4.3.7(supports-color@8.1.1)
extract-zip: 2.0.1
progress: 2.0.3
proxy-agent: 6.4.0
@@ -29749,30 +29024,30 @@ snapshots:
'@radix-ui/react-compose-refs@1.0.0(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.25.7
+ '@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:
@@ -29808,6 +29083,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)
@@ -29841,20 +29137,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.7.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.7.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.7.2)':
+ '@react-native-community/cli-config@15.1.3(typescript@5.7.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.7.2)
deepmerge: 4.3.1
@@ -29887,6 +29183,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)
@@ -29954,9 +29256,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.7.2)':
dependencies:
- '@react-native-community/cli-config': 14.1.0(typescript@5.5.4)
+ '@react-native-community/cli-config': 14.1.0(typescript@5.7.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
@@ -29975,13 +29277,13 @@ snapshots:
transitivePeerDependencies:
- typescript
- '@react-native-community/cli-doctor@14.1.0(typescript@5.7.2)':
+ '@react-native-community/cli-doctor@15.1.3(typescript@5.7.2)':
dependencies:
- '@react-native-community/cli-config': 14.1.0(typescript@5.7.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.7.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
@@ -30065,6 +29367,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)
@@ -30096,6 +29406,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)
@@ -30123,7 +29441,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)
@@ -30132,7 +29454,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
@@ -30210,6 +29532,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
@@ -30269,6 +29607,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
@@ -30285,14 +29637,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
@@ -30361,12 +29717,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.7.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.7.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.7.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
@@ -30385,15 +29741,15 @@ snapshots:
- typescript
- utf-8-validate
- '@react-native-community/cli@14.1.0(typescript@5.7.2)':
+ '@react-native-community/cli@15.1.3(typescript@5.7.2)':
dependencies:
- '@react-native-community/cli-clean': 14.1.0
- '@react-native-community/cli-config': 14.1.0(typescript@5.7.2)
- '@react-native-community/cli-debugger-ui': 14.1.0
- '@react-native-community/cli-doctor': 14.1.0(typescript@5.7.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.7.2)
+ '@react-native-community/cli-debugger-ui': 15.1.3
+ '@react-native-community/cli-doctor': 15.1.3(typescript@5.7.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
@@ -30414,10 +29770,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': {}
@@ -30427,9 +29783,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
@@ -30441,43 +29799,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)
@@ -30494,32 +29853,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:
@@ -30543,31 +29902,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
@@ -30575,7 +29934,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)
@@ -30592,262 +29951,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:
@@ -30855,7 +30213,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
@@ -30866,81 +30224,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
@@ -30979,12 +30334,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
@@ -31001,12 +30356,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
@@ -31022,48 +30377,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': {}
@@ -31073,6 +30425,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
@@ -31156,17 +30510,35 @@ 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.7.2)':
dependencies:
- '@babel/core': 7.24.5
- '@babel/eslint-parser': 7.25.8(@babel/core@7.24.5)(eslint@8.57.1)
+ '@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.73.1
'@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2)
'@typescript-eslint/parser': 5.62.0(eslint@8.57.1)(typescript@5.7.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.24.5)(eslint@8.57.1))(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: 26.9.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2)
eslint-plugin-prettier: 4.2.1(eslint-config-prettier@8.10.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3)
eslint-plugin-react: 7.37.1(eslint@8.57.1)
@@ -31178,8 +30550,31 @@ snapshots:
- supports-color
- typescript
+ '@react-native/eslint-config@0.77.0(eslint@8.57.1)(prettier@3.3.3)(typescript@5.7.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.7.2))(eslint@8.57.1)(typescript@5.7.2)
+ '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.7.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.7.2))(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.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': {}
@@ -31188,6 +30583,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': {}
@@ -31196,10 +30593,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:
@@ -31216,46 +30615,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': {}
@@ -31273,18 +30682,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
@@ -31297,52 +30710,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.7.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.7.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.7.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.7.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.7.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.7.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)':
@@ -31356,15 +30768,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)':
@@ -31385,52 +30797,52 @@ snapshots:
react-is: 16.13.1
use-latest-callback: 0.2.1(react@18.2.0)
- '@react-navigation/drawer@6.7.2(038ae2d2ed70d2cde1afeae3252026e4)':
+ '@react-navigation/drawer@6.7.2(f5uupuoecme7pb3346nlwm73my)':
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.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)
+ '@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)
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)
+ 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.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-reanimated: 3.10.1(@babel/core@7.24.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-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)
warn-once: 0.1.1
- optional: true
- '@react-navigation/drawer@6.7.2(de9b7caae7cef38a32afa5b76a3c9d54)':
+ '@react-navigation/drawer@6.7.2(tpeb27s7cxfw5d6bhcsc6gheay)':
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.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.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.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(fe8cd8328c484d4e3eaed8eea351852b)':
+ '@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.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)
- '@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-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.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.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-reanimated: 3.10.1(@babel/core@7.24.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-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.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:
@@ -31439,21 +30851,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)':
@@ -31466,14 +30878,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)':
@@ -31484,22 +30896,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:
@@ -31510,14 +30922,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:
@@ -31636,9 +31048,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
@@ -31727,9 +31139,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:
@@ -31754,13 +31166,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
@@ -31771,7 +31183,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':
@@ -31783,7 +31195,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':
@@ -31795,7 +31207,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':
@@ -31807,13 +31219,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':
@@ -31825,7 +31237,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':
@@ -31837,7 +31249,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':
@@ -31849,7 +31261,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':
@@ -31861,10 +31273,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':
@@ -31876,7 +31288,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':
@@ -31888,7 +31300,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':
@@ -31900,7 +31312,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':
@@ -31912,7 +31324,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':
@@ -31924,7 +31336,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':
@@ -31936,7 +31348,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':
@@ -31948,7 +31360,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':
@@ -31960,7 +31372,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':
@@ -32096,12 +31508,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':
@@ -32162,7 +31574,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
@@ -32275,54 +31687,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
@@ -32337,8 +31749,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
@@ -32356,11 +31768,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)
@@ -32548,25 +31960,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'
@@ -32591,36 +32003,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:
@@ -32648,34 +32060,34 @@ snapshots:
lodash.debounce: 4.0.8
typescript: 5.7.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
@@ -32723,15 +32135,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)
@@ -32769,7 +32181,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)
@@ -32780,15 +32192,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'
@@ -32802,10 +32214,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:
@@ -32840,15 +32252,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
@@ -32864,9 +32276,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:
@@ -32877,11 +32289,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:
@@ -32895,22 +32307,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:
@@ -32926,23 +32338,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:
@@ -32950,24 +32362,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:
@@ -32975,7 +32387,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)
@@ -32984,62 +32396,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
@@ -33047,10 +32459,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
@@ -33088,11 +32500,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)
@@ -33100,20 +32512,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'
@@ -33128,22 +32540,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'
@@ -33151,18 +32563,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:
@@ -33171,14 +32583,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)
@@ -33191,7 +32603,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
@@ -33208,24 +32620,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)
@@ -33239,10 +32651,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:
@@ -33274,14 +32686,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)
@@ -33293,22 +32705,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
@@ -33364,10 +32776,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:
@@ -33381,11 +32793,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:
@@ -33425,8 +32837,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
@@ -33436,7 +32848,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
@@ -33668,16 +33080,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/body-parser@1.19.5':
dependencies:
@@ -33690,7 +33102,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:
@@ -33761,11 +33173,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': {}
@@ -33782,7 +33200,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': {}
@@ -33810,6 +33228,11 @@ snapshots:
dependencies:
'@types/istanbul-lib-report': 3.0.3
+ '@types/jest@29.5.14':
+ dependencies:
+ expect: 29.7.0
+ pretty-format: 29.7.0
+
'@types/json-schema@7.0.15': {}
'@types/json5@0.0.29': {}
@@ -33891,56 +33314,59 @@ 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-test-renderer@18.3.1':
+ dependencies:
+ '@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:
@@ -33952,7 +33378,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
@@ -34019,7 +33445,7 @@ snapshots:
dependencies:
vue: 2.7.16
- '@types/webpack@5.28.5(webpack-cli@5.1.4)':
+ '@types/webpack@5.28.5(webpack-cli@5.1.4(webpack@5.95.0))':
dependencies:
'@types/node': 20.16.10
tapable: 2.2.1
@@ -34101,6 +33527,24 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2)':
+ dependencies:
+ '@eslint-community/regexpp': 4.11.1
+ '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.7.2)
+ '@typescript-eslint/scope-manager': 7.18.0
+ '@typescript-eslint/type-utils': 7.18.0(eslint@8.57.1)(typescript@5.7.2)
+ '@typescript-eslint/utils': 7.18.0(eslint@8.57.1)(typescript@5.7.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.7.2)
+ optionalDependencies:
+ typescript: 5.7.2
+ transitivePeerDependencies:
+ - supports-color
+
'@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.7.2)':
dependencies:
'@typescript-eslint/scope-manager': 5.62.0
@@ -34139,6 +33583,19 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2)':
+ dependencies:
+ '@typescript-eslint/scope-manager': 7.18.0
+ '@typescript-eslint/types': 7.18.0
+ '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.7.2)
+ '@typescript-eslint/visitor-keys': 7.18.0
+ debug: 4.3.7(supports-color@8.1.1)
+ eslint: 8.57.1
+ optionalDependencies:
+ typescript: 5.7.2
+ transitivePeerDependencies:
+ - supports-color
+
'@typescript-eslint/scope-manager@5.62.0':
dependencies:
'@typescript-eslint/types': 5.62.0
@@ -34149,11 +33606,16 @@ 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.7.2)':
dependencies:
'@typescript-eslint/typescript-estree': 5.62.0(typescript@5.7.2)
'@typescript-eslint/utils': 5.62.0(eslint@8.57.1)(typescript@5.7.2)
- debug: 4.4.0
+ debug: 4.3.7(supports-color@8.1.1)
eslint: 8.57.1
tsutils: 3.21.0(typescript@5.7.2)
optionalDependencies:
@@ -34173,15 +33635,29 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/type-utils@7.18.0(eslint@8.57.1)(typescript@5.7.2)':
+ dependencies:
+ '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.7.2)
+ '@typescript-eslint/utils': 7.18.0(eslint@8.57.1)(typescript@5.7.2)
+ debug: 4.3.7(supports-color@8.1.1)
+ eslint: 8.57.1
+ ts-api-utils: 1.3.0(typescript@5.7.2)
+ optionalDependencies:
+ typescript: 5.7.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.7.2)':
dependencies:
'@typescript-eslint/types': 5.62.0
'@typescript-eslint/visitor-keys': 5.62.0
- debug: 4.4.0
+ debug: 4.3.7(supports-color@8.1.1)
globby: 11.1.0
is-glob: 4.0.3
semver: 7.6.3
@@ -34221,6 +33697,21 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/typescript-estree@7.18.0(typescript@5.7.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.7.2)
+ optionalDependencies:
+ typescript: 5.7.2
+ transitivePeerDependencies:
+ - supports-color
+
'@typescript-eslint/utils@5.62.0(eslint@8.57.1)(typescript@5.7.2)':
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1)
@@ -34250,6 +33741,17 @@ snapshots:
- supports-color
- typescript
+ '@typescript-eslint/utils@7.18.0(eslint@8.57.1)(typescript@5.7.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.7.2)
+ eslint: 8.57.1
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+
'@typescript-eslint/visitor-keys@5.62.0':
dependencies:
'@typescript-eslint/types': 5.62.0
@@ -34260,6 +33762,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)':
@@ -34315,21 +33822,21 @@ 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.5(@types/node@22.7.4)(playwright@1.50.1)(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.5)(webdriverio@9.8.0)':
+ '@vitest/browser@3.0.7(@types/node@22.7.4)(playwright@1.50.1)(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.7)(webdriverio@9.4.5)':
dependencies:
'@testing-library/dom': 10.4.0
'@testing-library/user-event': 14.6.1(@testing-library/dom@10.4.0)
- '@vitest/mocker': 3.0.5(msw@2.7.0(@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/utils': 3.0.5
+ '@vitest/mocker': 3.0.7(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/utils': 3.0.7
magic-string: 0.30.17
- msw: 2.7.0(@types/node@22.7.4)(typescript@5.7.2)
- sirv: 3.0.0
+ msw: 2.7.3(@types/node@22.7.4)(typescript@5.7.2)
+ sirv: 3.0.1
tinyrainbow: 2.0.0
- vitest: 3.0.5(@types/debug@4.1.12)(@types/node@22.7.4)(@vitest/browser@3.0.5)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.28.2)(msw@2.7.0(@types/node@22.7.4)(typescript@5.7.2))(sass@1.79.4)(terser@5.34.1)
- ws: 8.18.0
+ vitest: 3.0.7(@types/debug@4.1.12)(@types/node@22.7.4)(@vitest/browser@3.0.7)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.28.2)(msw@2.7.3(@types/node@22.7.4)(typescript@5.7.2))(sass@1.79.4)(terser@5.34.1)
+ ws: 8.18.1
optionalDependencies:
playwright: 1.50.1
- webdriverio: 9.8.0
+ webdriverio: 9.4.5
transitivePeerDependencies:
- '@types/node'
- bufferutil
@@ -34337,45 +33844,45 @@ snapshots:
- utf-8-validate
- vite
- '@vitest/expect@3.0.5':
+ '@vitest/expect@3.0.7':
dependencies:
- '@vitest/spy': 3.0.5
- '@vitest/utils': 3.0.5
- chai: 5.1.2
+ '@vitest/spy': 3.0.7
+ '@vitest/utils': 3.0.7
+ chai: 5.2.0
tinyrainbow: 2.0.0
- '@vitest/mocker@3.0.5(msw@2.7.0(@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.7(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))':
dependencies:
- '@vitest/spy': 3.0.5
+ '@vitest/spy': 3.0.7
estree-walker: 3.0.3
magic-string: 0.30.17
optionalDependencies:
- msw: 2.7.0(@types/node@22.7.4)(typescript@5.7.2)
+ 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/pretty-format@3.0.5':
+ '@vitest/pretty-format@3.0.7':
dependencies:
tinyrainbow: 2.0.0
- '@vitest/runner@3.0.5':
+ '@vitest/runner@3.0.7':
dependencies:
- '@vitest/utils': 3.0.5
- pathe: 2.0.2
+ '@vitest/utils': 3.0.7
+ pathe: 2.0.3
- '@vitest/snapshot@3.0.5':
+ '@vitest/snapshot@3.0.7':
dependencies:
- '@vitest/pretty-format': 3.0.5
+ '@vitest/pretty-format': 3.0.7
magic-string: 0.30.17
- pathe: 2.0.2
+ pathe: 2.0.3
- '@vitest/spy@3.0.5':
+ '@vitest/spy@3.0.7':
dependencies:
tinyspy: 3.0.2
- '@vitest/utils@3.0.5':
+ '@vitest/utils@3.0.7':
dependencies:
- '@vitest/pretty-format': 3.0.5
- loupe: 3.1.2
+ '@vitest/pretty-format': 3.0.7
+ loupe: 3.1.3
tinyrainbow: 2.0.0
'@volar/language-core@2.1.6':
@@ -34393,7 +33900,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
@@ -34401,7 +33908,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
@@ -34419,7 +33926,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:
@@ -34427,7 +33934,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
@@ -34514,17 +34021,17 @@ snapshots:
vue: 3.4.21(typescript@5.5.4)
vue-demi: 0.13.11(vue@3.4.21(typescript@5.5.4))
- '@vuetify/loader-shared@2.0.3(vue@3.4.21(typescript@5.5.4))(vuetify@3.6.8)':
+ '@vuetify/loader-shared@2.0.3(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)))':
dependencies:
upath: 2.0.1
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
@@ -34540,7 +34047,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':
@@ -34548,16 +34055,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
@@ -34654,17 +34161,17 @@ snapshots:
dependencies:
commander: 10.0.1
- '@webpack-cli/configtest@2.1.1(webpack-cli@5.1.4)(webpack@5.95.0)':
+ '@webpack-cli/configtest@2.1.1(webpack-cli@5.1.4(webpack@5.95.0))(webpack@5.95.0(webpack-cli@5.1.4))':
dependencies:
webpack: 5.95.0(webpack-cli@5.1.4)
webpack-cli: 5.1.4(webpack@5.95.0)
- '@webpack-cli/info@2.0.2(webpack-cli@5.1.4)(webpack@5.95.0)':
+ '@webpack-cli/info@2.0.2(webpack-cli@5.1.4(webpack@5.95.0))(webpack@5.95.0(webpack-cli@5.1.4))':
dependencies:
webpack: 5.95.0(webpack-cli@5.1.4)
webpack-cli: 5.1.4(webpack@5.95.0)
- '@webpack-cli/serve@2.0.5(webpack-cli@5.1.4)(webpack@5.95.0)':
+ '@webpack-cli/serve@2.0.5(webpack-cli@5.1.4(webpack@5.95.0))(webpack@5.95.0(webpack-cli@5.1.4))':
dependencies:
webpack: 5.95.0(webpack-cli@5.1.4)
webpack-cli: 5.1.4(webpack@5.95.0)
@@ -35059,6 +34566,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: {}
@@ -35119,14 +34630,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:
@@ -35140,20 +34651,33 @@ 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
- babel-loader@9.1.3(@babel/core@7.25.2)(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))):
+ babel-loader@9.1.3(@babel/core@7.25.2)(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0)):
dependencies:
'@babel/core': 7.25.2
find-cache-dir: 4.0.0
@@ -35167,16 +34691,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))
@@ -35185,9 +34709,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.25.7
+ '@babel/runtime': 7.26.7
cosmiconfig: 7.1.0
resolve: 1.22.8
@@ -35201,7 +34742,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
@@ -35210,27 +34751,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):
+ babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.26.8):
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):
- 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
@@ -35251,19 +34783,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
@@ -35281,24 +34821,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
@@ -35308,7 +34841,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
@@ -35317,6 +34850,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):
@@ -35325,17 +34862,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:
@@ -35354,7 +34904,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)
@@ -35362,7 +34912,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
@@ -35371,15 +34921,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
@@ -35391,9 +34941,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))
@@ -35405,71 +34955,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: {}
@@ -35912,7 +35435,7 @@ snapshots:
ccount@2.0.1: {}
- chai@5.1.2:
+ chai@5.2.0:
dependencies:
assertion-error: 2.0.1
check-error: 2.1.1
@@ -36312,7 +35835,7 @@ snapshots:
serialize-javascript: 6.0.2
webpack: 5.95.0(@swc/core@1.10.1(@swc/helpers@0.5.5))
- copy-webpack-plugin@12.0.2(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))):
+ copy-webpack-plugin@12.0.2(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0)):
dependencies:
fast-glob: 3.3.2
glob-parent: 6.0.2
@@ -36326,6 +35849,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: {}
@@ -36523,7 +36050,7 @@ snapshots:
'@rspack/core': 1.1.8(@swc/helpers@0.5.5)
webpack: 5.95.0(@swc/core@1.10.1(@swc/helpers@0.5.5))
- css-loader@7.1.2(@rspack/core@1.1.8(@swc/helpers@0.5.5))(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))):
+ css-loader@7.1.2(@rspack/core@1.1.8(@swc/helpers@0.5.5))(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0)):
dependencies:
icss-utils: 5.1.0(postcss@8.4.47)
postcss: 8.4.47
@@ -36865,7 +36392,7 @@ snapshots:
date-fns@2.30.0:
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.7
dateformat@4.6.3: {}
@@ -37045,7 +36572,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
@@ -37092,6 +36619,8 @@ snapshots:
didyoumean@1.2.2: {}
+ diff-sequences@29.6.3: {}
+
diff@4.0.2: {}
diffie-hellman@5.0.3:
@@ -37135,7 +36664,7 @@ snapshots:
dom-helpers@5.2.1:
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.7
csstype: 3.1.3
dom-serializer@1.4.1:
@@ -37193,10 +36722,10 @@ 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.7.2))(react@18.3.1))(@types/react@18.3.12)(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/react@18.3.18)(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.7.2))(react@18.3.1)
- '@types/react': 18.3.12
+ '@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/react': 18.3.18
kysely: 0.27.4
react: 18.3.1
@@ -37690,33 +37219,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: {}
@@ -37806,7 +37335,7 @@ snapshots:
debug: 4.3.7(supports-color@8.1.1)
enhanced-resolve: 5.17.1
eslint: 8.57.1
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1)
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1)
fast-glob: 3.3.2
get-tsconfig: 4.8.1
is-bun-module: 1.2.1
@@ -37829,7 +37358,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.12.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1):
+ eslint-module-utils@2.12.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1):
dependencies:
debug: 3.2.7
optionalDependencies:
@@ -37852,9 +37381,9 @@ snapshots:
eslint: 8.57.1
ignore: 5.3.2
- 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):
+ 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.24.5)(eslint@8.57.1)
+ '@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
@@ -37899,7 +37428,7 @@ snapshots:
doctrine: 2.1.0
eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1)
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1)
hasown: 2.0.2
is-core-module: 2.15.1
is-glob: 4.0.3
@@ -37927,6 +37456,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.7.2))(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2):
+ dependencies:
+ '@typescript-eslint/utils': 5.62.0(eslint@8.57.1)(typescript@5.7.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.7.2))(eslint@8.57.1)(typescript@5.7.2)
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+
eslint-plugin-jsx-a11y@6.10.0(eslint@8.57.1):
dependencies:
aria-query: 5.1.3
@@ -38284,6 +37823,14 @@ snapshots:
expect-type@1.1.0: {}
+ expect@29.7.0:
+ dependencies:
+ '@jest/expect-utils': 29.7.0
+ jest-get-type: 29.6.3
+ jest-matcher-utils: 29.7.0
+ jest-message-util: 29.7.0
+ jest-util: 29.7.0
+
expo-asset@10.0.10(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)
@@ -38293,19 +37840,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:
@@ -38326,16 +37873,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)):
@@ -38362,19 +37909,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
@@ -38391,59 +37938,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:
@@ -38454,14 +38001,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)):
@@ -38475,13 +38022,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:
@@ -38495,17 +38042,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
@@ -38519,10 +38066,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
@@ -38553,26 +38100,26 @@ snapshots:
dependencies:
invariant: 2.2.4
- expo-router@3.5.21(43cc03a7fb538f7aef105856925492f6):
+ expo-router@3.5.21(fbsgzlshl3xmyaq4qt4ismj4fi):
dependencies:
- '@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))
- '@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.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)
- '@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-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)
- 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-constants: 16.0.2(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-linking: 6.3.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-splash-screen: 0.27.5(encoding@0.1.13)(expo-modules-autolinking@1.11.3)(expo@51.0.27(@babel/core@7.24.5)(@babel/preset-env@7.25.7(@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.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.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-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(fe8cd8328c484d4e3eaed8eea351852b)
- react-native-reanimated: 3.10.1(@babel/core@7.24.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/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
@@ -38581,26 +38128,26 @@ snapshots:
- supports-color
- typescript
- expo-router@3.5.21(49b2fd6c45ca81e2d20f2f5a4be05a3e):
+ expo-router@3.5.21(i67tcj72pvkxin5dp3y3irhi4m):
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/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.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.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.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.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(de9b7caae7cef38a32afa5b76a3c9d54)
- 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(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
@@ -38609,26 +38156,26 @@ snapshots:
- supports-color
- typescript
- expo-router@3.5.21(988d822f9e58e176bb73f45e8e45eb4a):
+ expo-router@3.5.21(qrxjjyxvihi5xb6jovt7bb6fjy):
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.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/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.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)
+ '@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-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)
+ 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-constants: 16.0.2(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-linking: 6.3.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-splash-screen: 0.27.5(encoding@0.1.13)(expo-modules-autolinking@1.11.3)(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-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.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)
schema-utils: 4.2.0
optionalDependencies:
- '@react-navigation/drawer': 6.7.2(038ae2d2ed70d2cde1afeae3252026e4)
- 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(f5uupuoecme7pb3346nlwm73my)
+ react-native-reanimated: 3.10.1(@babel/core@7.24.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)
transitivePeerDependencies:
- encoding
- expo-modules-autolinking
@@ -38637,7 +38184,7 @@ snapshots:
- supports-color
- typescript
- expo-router@3.5.23(2f86f7434a59b644ba234fab7be01c9e):
+ expo-router@3.5.23(x45f6tg66eoafhyrv4brrngbdm):
dependencies:
'@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))
'@expo/server': 0.4.4(typescript@5.5.4)
@@ -38655,7 +38202,7 @@ 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)
schema-utils: 4.2.0
optionalDependencies:
- '@react-navigation/drawer': 6.7.2(fe8cd8328c484d4e3eaed8eea351852b)
+ '@react-navigation/drawer': 6.7.2(f5uupuoecme7pb3346nlwm73my)
react-native-reanimated: 3.10.1(@babel/core@7.24.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)
transitivePeerDependencies:
- encoding
@@ -38673,10 +38220,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
@@ -38691,10 +38238,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
@@ -38709,10 +38256,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
@@ -38727,10 +38274,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
@@ -38747,13 +38294,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
@@ -38776,19 +38323,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)
@@ -38801,19 +38348,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)
@@ -38828,7 +38375,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
@@ -39135,7 +38682,7 @@ snapshots:
flora-colossus@2.0.0:
dependencies:
- debug: 4.4.0
+ debug: 4.3.7(supports-color@8.1.1)
fs-extra: 10.1.0
transitivePeerDependencies:
- supports-color
@@ -39312,7 +38859,7 @@ snapshots:
galactus@1.0.0:
dependencies:
- debug: 4.4.0
+ debug: 4.3.7(supports-color@8.1.1)
flora-colossus: 2.0.0
fs-extra: 10.1.0
transitivePeerDependencies:
@@ -39421,7 +38968,7 @@ snapshots:
dependencies:
basic-ftp: 5.0.5
data-uri-to-buffer: 6.0.2
- debug: 4.4.0
+ debug: 4.3.7(supports-color@8.1.1)
fs-extra: 11.2.0
transitivePeerDependencies:
- supports-color
@@ -39801,6 +39348,8 @@ snapshots:
hermes-estree@0.23.1: {}
+ hermes-estree@0.25.1: {}
+
hermes-parser@0.12.0:
dependencies:
hermes-estree: 0.12.0
@@ -39817,6 +39366,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
@@ -39829,7 +39382,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
@@ -39918,7 +39471,7 @@ snapshots:
tapable: 2.2.1
optionalDependencies:
'@rspack/core': 1.1.8(@swc/helpers@0.5.5)
- webpack: 5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0)
+ webpack: 5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))
optional: true
html-webpack-plugin@5.6.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))):
@@ -39932,7 +39485,7 @@ snapshots:
'@rspack/core': 1.1.8(@swc/helpers@0.5.5)
webpack: 5.95.0(@swc/core@1.10.1(@swc/helpers@0.5.5))
- html-webpack-plugin@5.6.0(@rspack/core@1.1.8(@swc/helpers@0.5.5))(webpack@5.95.0):
+ html-webpack-plugin@5.6.0(@rspack/core@1.1.8(@swc/helpers@0.5.5))(webpack@5.95.0(webpack-cli@5.1.4)):
dependencies:
'@types/html-minifier-terser': 6.1.0
html-minifier-terser: 6.1.0
@@ -39943,7 +39496,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:
@@ -39996,7 +39549,7 @@ snapshots:
dependencies:
'@tootallnate/once': 2.0.0
agent-base: 6.0.2
- debug: 4.4.0
+ debug: 4.3.7(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
@@ -40527,10 +40080,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
@@ -40558,6 +40121,13 @@ snapshots:
filelist: 1.0.4
minimatch: 3.1.2
+ jest-diff@29.7.0:
+ dependencies:
+ chalk: 4.1.2
+ diff-sequences: 29.6.3
+ jest-get-type: 29.6.3
+ pretty-format: 29.7.0
+
jest-environment-node@29.7.0:
dependencies:
'@jest/environment': 29.7.0
@@ -40569,6 +40139,29 @@ 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-matcher-utils@29.7.0:
+ dependencies:
+ chalk: 4.1.2
+ jest-diff: 29.7.0
+ jest-get-type: 29.6.3
+ pretty-format: 29.7.0
+
jest-message-util@29.7.0:
dependencies:
'@babel/code-frame': 7.26.2
@@ -40589,6 +40182,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
@@ -40678,17 +40273,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
@@ -40701,19 +40296,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
@@ -40726,19 +40321,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
@@ -40751,19 +40346,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
@@ -40776,31 +40371,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:
@@ -40892,7 +40511,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:
@@ -40962,7 +40581,7 @@ snapshots:
readable-stream: 2.3.8
optional: true
- less-loader@12.2.0(@rspack/core@1.1.8(@swc/helpers@0.5.5))(less@4.2.0)(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))):
+ less-loader@12.2.0(@rspack/core@1.1.8(@swc/helpers@0.5.5))(less@4.2.0)(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0)):
dependencies:
less: 4.2.0
optionalDependencies:
@@ -40998,7 +40617,7 @@ snapshots:
dependencies:
isomorphic.js: 0.2.5
- license-webpack-plugin@4.0.2(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))):
+ license-webpack-plugin@4.0.2(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0)):
dependencies:
webpack-sources: 3.2.3
optionalDependencies:
@@ -41299,6 +40918,8 @@ snapshots:
loupe@3.1.2: {}
+ loupe@3.1.3: {}
+
lower-case@2.0.2:
dependencies:
tslib: 2.7.0
@@ -41723,7 +41344,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:
@@ -41731,19 +41352,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
@@ -41755,6 +41389,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
@@ -41785,6 +41425,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
@@ -41796,6 +41451,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
@@ -41833,6 +41494,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
@@ -41855,60 +41530,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
@@ -41919,19 +41599,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:
@@ -41949,8 +41638,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
@@ -41962,8 +41651,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
@@ -41974,6 +41663,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
@@ -42008,9 +41712,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
@@ -42020,10 +41735,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:
@@ -42031,11 +41757,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
@@ -42051,10 +41777,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
@@ -42069,15 +41795,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
@@ -42102,7 +41848,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
@@ -42128,7 +41874,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
@@ -42174,6 +41920,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
@@ -42452,7 +42245,7 @@ snapshots:
micromark@4.0.0:
dependencies:
'@types/debug': 4.1.12
- debug: 4.4.0
+ debug: 4.3.7(supports-color@8.1.1)
decode-named-character-reference: 1.0.2
devlop: 1.1.0
micromark-core-commonmark: 2.0.1
@@ -42519,7 +42312,7 @@ snapshots:
min-indent@1.0.1: {}
- mini-css-extract-plugin@2.9.0(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))):
+ mini-css-extract-plugin@2.9.0(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0)):
dependencies:
schema-utils: 4.2.0
tapable: 2.2.1
@@ -42636,10 +42429,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
@@ -42668,7 +42461,7 @@ snapshots:
optionalDependencies:
msgpackr-extract: 3.0.3
- msw@2.7.0(@types/node@22.7.4)(typescript@5.7.2):
+ msw@2.7.3(@types/node@22.7.4)(typescript@5.7.2):
dependencies:
'@bundled-es-modules/cookie': 2.0.1
'@bundled-es-modules/statuses': 1.0.1
@@ -42776,7 +42569,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
@@ -42786,7 +42579,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
@@ -43045,6 +42838,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: {}
@@ -43291,7 +43088,7 @@ snapshots:
dependencies:
'@tootallnate/quickjs-emscripten': 0.23.0
agent-base: 7.1.1
- debug: 4.4.0
+ debug: 4.3.7(supports-color@8.1.1)
get-uri: 6.0.3
http-proxy-agent: 7.0.2
https-proxy-agent: 7.0.5
@@ -43386,7 +43183,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
@@ -43487,7 +43284,7 @@ snapshots:
path-type@5.0.0: {}
- pathe@2.0.2: {}
+ pathe@2.0.3: {}
pathval@2.0.0: {}
@@ -43765,7 +43562,7 @@ snapshots:
transitivePeerDependencies:
- typescript
- postcss-loader@8.1.1(@rspack/core@1.1.8(@swc/helpers@0.5.5))(postcss@8.4.41)(typescript@5.5.4)(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))):
+ postcss-loader@8.1.1(@rspack/core@1.1.8(@swc/helpers@0.5.5))(postcss@8.4.41)(typescript@5.5.4)(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0)):
dependencies:
cosmiconfig: 9.0.0(typescript@5.5.4)
jiti: 1.21.6
@@ -44083,7 +43880,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
@@ -44313,7 +44110,7 @@ snapshots:
proxy-agent@6.4.0:
dependencies:
agent-base: 7.1.1
- debug: 4.4.0
+ debug: 4.3.7(supports-color@8.1.1)
http-proxy-agent: 7.0.2
https-proxy-agent: 7.0.5
lru-cache: 7.18.3
@@ -44477,6 +44274,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
@@ -44485,12 +44290,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: {}
@@ -44515,18 +44320,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.7.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.7.2)
@@ -44544,8 +44349,10 @@ snapshots:
which: 2.0.2
yargs: 17.7.2
transitivePeerDependencies:
+ - bufferutil
- supports-color
- typescript
+ - utf-8-validate
react-native-elements@3.4.3(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-vector-icons@10.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:
@@ -44563,7 +44370,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
@@ -44571,9 +44378,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
@@ -44584,16 +44391,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
@@ -44601,7 +44408,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:
@@ -44613,7 +44420,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
@@ -44621,7 +44428,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:
@@ -44634,22 +44441,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:
@@ -44657,11 +44464,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:
@@ -44674,7 +44481,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)
@@ -44686,7 +44493,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
@@ -44706,36 +44513,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:
@@ -44743,11 +44550,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:
@@ -44756,18 +44563,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):
@@ -44777,31 +44584,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: {}
@@ -44830,7 +44637,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
@@ -44845,7 +44652,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.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
@@ -44858,18 +44665,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
@@ -44905,19 +44712,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
@@ -45005,19 +44812,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
@@ -45055,19 +44862,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.7.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.7.2):
dependencies:
'@jest/create-cache-key-function': 29.7.0
'@react-native-community/cli': 14.1.0(typescript@5.7.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.7.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.7.2))(react@18.3.1)
abort-controller: 3.0.0
anser: 1.4.10
ansi-regex: 5.0.1
@@ -45108,25 +44915,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
@@ -45134,14 +44940,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
@@ -45151,35 +44956,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.7.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.7.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.7.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
@@ -45187,14 +44990,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
@@ -45204,30 +45006,16 @@ 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(b5d6035dfb87b14e0677db2e89c1e7ef):
- 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)
- 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-navigation-stack@2.10.4(cf0911ea264205029347060226fe0d29):
+ react-navigation-stack@2.10.4(b23yjknfeew5kcy4o5zrlfz5ae):
dependencies:
'@react-native-community/masked-view': 0.1.11(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)
color: 3.2.1
@@ -45239,6 +45027,18 @@ 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(x4izpq5pzobiouf7jvcmlljasy):
+ dependencies:
+ '@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.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:
'@react-navigation/core': 3.7.9(react@18.2.0)
@@ -45246,12 +45046,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: {}
@@ -45278,13 +45078,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
@@ -45302,7 +45102,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
@@ -45335,7 +45135,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
@@ -45352,7 +45152,7 @@ snapshots:
read-binary-file-arch@1.0.6:
dependencies:
- debug: 4.4.0
+ debug: 4.3.7(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
@@ -45465,6 +45265,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
@@ -45477,12 +45285,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:
@@ -45532,7 +45340,7 @@ snapshots:
regenerator-transform@0.15.2:
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.26.7
regex-parser@2.3.0: {}
@@ -45906,29 +45714,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: {}
@@ -45998,7 +45806,7 @@ snapshots:
optionalDependencies:
sass: 1.79.4
- sass-loader@16.0.0(@rspack/core@1.1.8(@swc/helpers@0.5.5))(sass@1.77.6)(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))):
+ sass-loader@16.0.0(@rspack/core@1.1.8(@swc/helpers@0.5.5))(sass@1.77.6)(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0)):
dependencies:
neo-async: 2.6.2
optionalDependencies:
@@ -46311,7 +46119,7 @@ snapshots:
mrmime: 2.0.0
totalist: 3.0.1
- sirv@3.0.0:
+ sirv@3.0.1:
dependencies:
'@polka/url': 1.0.0-next.28
mrmime: 2.0.0
@@ -46393,7 +46201,7 @@ snapshots:
socks-proxy-agent@7.0.0:
dependencies:
agent-base: 6.0.2
- debug: 4.4.0
+ debug: 4.3.7(supports-color@8.1.1)
socks: 2.8.3
transitivePeerDependencies:
- supports-color
@@ -46401,7 +46209,7 @@ snapshots:
socks-proxy-agent@8.0.4:
dependencies:
agent-base: 7.1.1
- debug: 4.4.0
+ debug: 4.3.7(supports-color@8.1.1)
socks: 2.8.3
transitivePeerDependencies:
- supports-color
@@ -46419,13 +46227,13 @@ snapshots:
source-map-js@1.2.1: {}
- source-map-loader@5.0.0(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))):
+ source-map-loader@5.0.0(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0)):
dependencies:
iconv-lite: 0.6.3
source-map-js: 1.2.1
webpack: 5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0)
- source-map-loader@5.0.0(webpack@5.95.0):
+ source-map-loader@5.0.0(webpack@5.95.0(webpack-cli@5.1.4)):
dependencies:
iconv-lite: 0.6.3
source-map-js: 1.2.1
@@ -46474,7 +46282,7 @@ snapshots:
spdy-transport@3.0.0:
dependencies:
- debug: 4.4.0
+ debug: 4.3.7(supports-color@8.1.1)
detect-node: 2.1.0
hpack.js: 2.1.6
obuf: 1.1.2
@@ -46485,7 +46293,7 @@ snapshots:
spdy@4.0.2:
dependencies:
- debug: 4.4.0
+ debug: 4.3.7(supports-color@8.1.1)
handle-thing: 2.0.1
http-deceiver: 1.2.7
select-hose: 2.0.0
@@ -46733,12 +46541,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:
@@ -46829,7 +46637,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:
@@ -46903,57 +46711,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)
@@ -47053,7 +46861,7 @@ snapshots:
ansi-escapes: 4.3.2
supports-hyperlinks: 2.3.0
- terser-webpack-plugin@5.3.10(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0)(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))):
+ terser-webpack-plugin@5.3.10(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0)(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0)):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
@@ -47065,6 +46873,18 @@ snapshots:
'@swc/core': 1.10.1(@swc/helpers@0.5.5)
esbuild: 0.23.0
+ terser-webpack-plugin@5.3.10(@swc/core@1.10.1(@swc/helpers@0.5.5))(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))):
+ dependencies:
+ '@jridgewell/trace-mapping': 0.3.25
+ jest-worker: 27.5.1
+ schema-utils: 3.3.0
+ serialize-javascript: 6.0.2
+ terser: 5.34.1
+ webpack: 5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))
+ optionalDependencies:
+ '@swc/core': 1.10.1(@swc/helpers@0.5.5)
+ optional: true
+
terser-webpack-plugin@5.3.10(@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:
'@jridgewell/trace-mapping': 0.3.25
@@ -47087,7 +46907,7 @@ snapshots:
optionalDependencies:
'@swc/core': 1.6.13(@swc/helpers@0.5.5)
- terser-webpack-plugin@5.3.10(webpack@5.95.0):
+ terser-webpack-plugin@5.3.10(webpack@5.95.0(webpack-cli@5.1.4)):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
@@ -47110,6 +46930,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
@@ -47178,8 +47004,7 @@ snapshots:
dependencies:
os-tmpdir: 1.0.2
- tmp@0.2.3:
- optional: true
+ tmp@0.2.3: {}
tmpl@1.0.5: {}
@@ -47372,7 +47197,7 @@ snapshots:
tuf-js@2.2.1:
dependencies:
'@tufjs/models': 2.0.1
- debug: 4.4.0
+ debug: 4.3.7(supports-color@8.1.1)
make-fetch-happen: 13.0.1
transitivePeerDependencies:
- supports-color
@@ -47663,10 +47488,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
@@ -47677,7 +47502,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
@@ -47848,12 +47673,12 @@ snapshots:
'@types/unist': 3.0.3
vfile-message: 4.0.2
- vite-node@3.0.5(@types/node@22.7.4)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1):
+ vite-node@3.0.7(@types/node@22.7.4)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1):
dependencies:
cac: 6.7.14
debug: 4.4.0
es-module-lexer: 1.6.0
- pathe: 2.0.2
+ pathe: 2.0.3
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)
transitivePeerDependencies:
- '@types/node'
@@ -47916,9 +47741,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)
@@ -47926,9 +47751,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)
@@ -47936,29 +47761,29 @@ 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
vite-plugin-vuetify@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):
dependencies:
- '@vuetify/loader-shared': 2.0.3(vue@3.4.21(typescript@5.5.4))(vuetify@3.6.8)
+ '@vuetify/loader-shared': 2.0.3(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)))
debug: 4.3.7(supports-color@8.1.1)
upath: 2.0.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)
@@ -47975,13 +47800,13 @@ 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:
@@ -48035,11 +47860,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
@@ -48050,11 +47875,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
@@ -48065,32 +47890,32 @@ snapshots:
terser: 5.34.1
yaml: 2.6.1
- vitest@3.0.5(@types/debug@4.1.12)(@types/node@22.7.4)(@vitest/browser@3.0.5)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.28.2)(msw@2.7.0(@types/node@22.7.4)(typescript@5.7.2))(sass@1.79.4)(terser@5.34.1):
+ vitest@3.0.7(@types/debug@4.1.12)(@types/node@22.7.4)(@vitest/browser@3.0.7)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.28.2)(msw@2.7.3(@types/node@22.7.4)(typescript@5.7.2))(sass@1.79.4)(terser@5.34.1):
dependencies:
- '@vitest/expect': 3.0.5
- '@vitest/mocker': 3.0.5(msw@2.7.0(@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/pretty-format': 3.0.5
- '@vitest/runner': 3.0.5
- '@vitest/snapshot': 3.0.5
- '@vitest/spy': 3.0.5
- '@vitest/utils': 3.0.5
- chai: 5.1.2
+ '@vitest/expect': 3.0.7
+ '@vitest/mocker': 3.0.7(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/pretty-format': 3.0.7
+ '@vitest/runner': 3.0.7
+ '@vitest/snapshot': 3.0.7
+ '@vitest/spy': 3.0.7
+ '@vitest/utils': 3.0.7
+ chai: 5.2.0
debug: 4.4.0
expect-type: 1.1.0
magic-string: 0.30.17
- pathe: 2.0.2
+ pathe: 2.0.3
std-env: 3.8.0
tinybench: 2.9.0
tinyexec: 0.3.2
tinypool: 1.0.2
tinyrainbow: 2.0.0
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)
- vite-node: 3.0.5(@types/node@22.7.4)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)
+ vite-node: 3.0.7(@types/node@22.7.4)(less@4.2.0)(lightningcss@1.28.2)(sass@1.79.4)(terser@5.34.1)
why-is-node-running: 2.3.0
optionalDependencies:
'@types/debug': 4.1.12
'@types/node': 22.7.4
- '@vitest/browser': 3.0.5(@types/node@22.7.4)(playwright@1.50.1)(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.5)(webdriverio@9.8.0)
+ '@vitest/browser': 3.0.7(@types/node@22.7.4)(playwright@1.50.1)(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.7)(webdriverio@9.4.5)
jsdom: 24.1.3
transitivePeerDependencies:
- less
@@ -48183,7 +48008,7 @@ snapshots:
dependencies:
chalk: 4.1.2
commander: 9.5.0
- debug: 4.4.0
+ debug: 4.3.7(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
optional: true
@@ -48224,15 +48049,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.0
@@ -48242,23 +48067,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
@@ -48270,7 +48095,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
@@ -48306,9 +48131,9 @@ snapshots:
webpack-cli@5.1.4(webpack@5.95.0):
dependencies:
'@discoveryjs/json-ext': 0.5.7
- '@webpack-cli/configtest': 2.1.1(webpack-cli@5.1.4)(webpack@5.95.0)
- '@webpack-cli/info': 2.0.2(webpack-cli@5.1.4)(webpack@5.95.0)
- '@webpack-cli/serve': 2.0.5(webpack-cli@5.1.4)(webpack@5.95.0)
+ '@webpack-cli/configtest': 2.1.1(webpack-cli@5.1.4(webpack@5.95.0))(webpack@5.95.0(webpack-cli@5.1.4))
+ '@webpack-cli/info': 2.0.2(webpack-cli@5.1.4(webpack@5.95.0))(webpack@5.95.0(webpack-cli@5.1.4))
+ '@webpack-cli/serve': 2.0.5(webpack-cli@5.1.4(webpack@5.95.0))(webpack@5.95.0(webpack-cli@5.1.4))
colorette: 2.0.20
commander: 10.0.1
cross-spawn: 7.0.3
@@ -48329,7 +48154,7 @@ snapshots:
schema-utils: 4.2.0
webpack: 5.95.0(@swc/core@1.10.1(@swc/helpers@0.5.5))
- webpack-dev-middleware@7.4.2(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))):
+ webpack-dev-middleware@7.4.2(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0)):
dependencies:
colorette: 2.0.20
memfs: 4.12.0
@@ -48380,7 +48205,7 @@ snapshots:
- supports-color
- utf-8-validate
- webpack-dev-server@5.0.4(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))):
+ webpack-dev-server@5.0.4(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0)):
dependencies:
'@types/bonjour': 3.5.13
'@types/connect-history-api-fallback': 1.5.4
@@ -48410,7 +48235,7 @@ snapshots:
serve-index: 1.9.1
sockjs: 0.3.24
spdy: 4.0.2
- webpack-dev-middleware: 7.4.2(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5)))
+ webpack-dev-middleware: 7.4.2(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0))
ws: 8.18.0
optionalDependencies:
webpack: 5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0)
@@ -48436,7 +48261,7 @@ snapshots:
webpack-sources@3.2.3: {}
- webpack-subresource-integrity@5.1.0(html-webpack-plugin@5.6.0(@rspack/core@1.1.8(@swc/helpers@0.5.5))(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))))(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))):
+ webpack-subresource-integrity@5.1.0(html-webpack-plugin@5.6.0(@rspack/core@1.1.8(@swc/helpers@0.5.5))(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))))(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0)):
dependencies:
typed-assert: 1.0.9
webpack: 5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0)
@@ -48445,6 +48270,37 @@ snapshots:
webpack-virtual-modules@0.6.2: {}
+ webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5)):
+ dependencies:
+ '@types/estree': 1.0.6
+ '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/wasm-edit': 1.12.1
+ '@webassemblyjs/wasm-parser': 1.12.1
+ acorn: 8.12.1
+ acorn-import-attributes: 1.9.5(acorn@8.12.1)
+ browserslist: 4.24.0
+ chrome-trace-event: 1.0.4
+ enhanced-resolve: 5.17.1
+ es-module-lexer: 1.5.4
+ eslint-scope: 5.1.1
+ events: 3.3.0
+ glob-to-regexp: 0.4.1
+ graceful-fs: 4.2.11
+ json-parse-even-better-errors: 2.3.1
+ loader-runner: 4.3.0
+ mime-types: 2.1.35
+ neo-async: 2.6.2
+ schema-utils: 3.3.0
+ tapable: 2.2.1
+ terser-webpack-plugin: 5.3.10(@swc/core@1.10.1(@swc/helpers@0.5.5))(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5)))
+ watchpack: 2.4.1
+ webpack-sources: 3.2.3
+ transitivePeerDependencies:
+ - '@swc/core'
+ - esbuild
+ - uglify-js
+ optional: true
+
webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0):
dependencies:
'@types/estree': 1.0.6
@@ -48467,7 +48323,7 @@ snapshots:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0)(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5)))
+ terser-webpack-plugin: 5.3.10(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0)(webpack@5.94.0(@swc/core@1.10.1(@swc/helpers@0.5.5))(esbuild@0.23.0))
watchpack: 2.4.1
webpack-sources: 3.2.3
transitivePeerDependencies:
@@ -48557,7 +48413,7 @@ snapshots:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(webpack@5.95.0)
+ terser-webpack-plugin: 5.3.10(webpack@5.95.0(webpack-cli@5.1.4))
watchpack: 2.4.2
webpack-sources: 3.2.3
optionalDependencies:
@@ -48722,10 +48578,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)
@@ -48862,6 +48718,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
@@ -48880,6 +48741,8 @@ snapshots:
ws@8.18.0: {}
+ ws@8.18.1: {}
+
xcode@3.0.1:
dependencies:
simple-plist: 1.3.1