diff --git a/lefthook.yml b/lefthook.yml
new file mode 100644
index 000000000..3ac5730a0
--- /dev/null
+++ b/lefthook.yml
@@ -0,0 +1,42 @@
+# EXAMPLE USAGE:
+#
+# Refer for explanation to following link:
+# https://lefthook.dev/configuration/
+#
+# pre-push:
+# jobs:
+# - name: packages audit
+# tags:
+# - frontend
+# - security
+# run: yarn audit
+#
+# - name: gems audit
+# tags:
+# - backend
+# - security
+# run: bundle audit
+#
+# pre-commit:
+# parallel: true
+# jobs:
+# - run: yarn eslint {staged_files}
+# glob: "*.{js,ts,jsx,tsx}"
+#
+# - name: rubocop
+# glob: "*.rb"
+# exclude:
+# - config/application.rb
+# - config/routes.rb
+# run: bundle exec rubocop --force-exclusion {all_files}
+#
+# - name: govet
+# files: git ls-files -m
+# glob: "*.go"
+# run: go vet {files}
+#
+# - script: "hello.js"
+# runner: node
+#
+# - script: "hello.go"
+# runner: go run
diff --git a/package.json b/package.json
index 3f6efcd3f..e34113c5a 100644
--- a/package.json
+++ b/package.json
@@ -36,10 +36,11 @@
"husky": "^9.1.7",
"prettier": "^3.5.3",
"pretty-quick": "^4.1.1",
- "turbo": "^2.5.0",
+ "turbo": "2.8.7",
"typescript": "^5.8.3"
},
"resolutions": {
+ "turbo": "2.8.7",
"p-limit": "^3.1.0",
"p-locate": "^5.0.0",
"locate-path": "^6.0.0",
diff --git a/rrweb b/rrweb
index 1d59d89bf..192eb9c76 160000
--- a/rrweb
+++ b/rrweb
@@ -1 +1 @@
-Subproject commit 1d59d89bf6d7ffdaa8fada155a10c65aca93ae2e
+Subproject commit 192eb9c761b90fdd1249bf78e99fc00414465fbd
diff --git a/sdk/@launchdarkly/observability-shared/package.json b/sdk/@launchdarkly/observability-shared/package.json
index c7a134d2f..9b5756725 100644
--- a/sdk/@launchdarkly/observability-shared/package.json
+++ b/sdk/@launchdarkly/observability-shared/package.json
@@ -10,7 +10,7 @@
"build": "tsc",
"codegen": "graphql-codegen",
"dev": "tsc --watch",
- "test": "vitest"
+ "test": "vitest run"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.7",
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/.editorconfig b/sdk/@launchdarkly/react-native-ld-session-replay/.editorconfig
new file mode 100644
index 000000000..65365be68
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/.editorconfig
@@ -0,0 +1,15 @@
+# EditorConfig helps developers define and maintain consistent
+# coding styles between different editors and IDEs
+# editorconfig.org
+
+root = true
+
+[*]
+
+indent_style = space
+indent_size = 2
+
+end_of_line = lf
+charset = utf-8
+trim_trailing_whitespace = true
+insert_final_newline = true
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/.eslintrc.js b/sdk/@launchdarkly/react-native-ld-session-replay/.eslintrc.js
new file mode 100644
index 000000000..8f749e6c2
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/.eslintrc.js
@@ -0,0 +1,10 @@
+module.exports = {
+ root: true,
+ extends: ['@react-native', 'prettier'],
+ plugins: ['prettier'],
+ rules: {
+ 'react/react-in-jsx-scope': 'off',
+ 'prettier/prettier': 'error',
+ },
+ ignorePatterns: ['node_modules/', 'lib/'],
+};
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/.gitignore b/sdk/@launchdarkly/react-native-ld-session-replay/.gitignore
new file mode 100644
index 000000000..d529fdbd0
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/.gitignore
@@ -0,0 +1,91 @@
+# OSX
+#
+.DS_Store
+
+# XDE
+.expo/
+
+# VSCode
+.vscode/
+jsconfig.json
+
+# Xcode
+#
+build/
+*.pbxuser
+!default.pbxuser
+*.mode1v3
+!default.mode1v3
+*.mode2v3
+!default.mode2v3
+*.perspectivev3
+!default.perspectivev3
+xcuserdata
+*.xccheckout
+*.moved-aside
+DerivedData
+*.hmap
+*.ipa
+*.xcuserstate
+project.xcworkspace
+**/.xcode.env.local
+
+# Android/IJ
+#
+.classpath
+.cxx
+.gradle
+.idea
+.project
+.settings
+local.properties
+android.iml
+
+# Cocoapods
+#
+example/ios/Pods
+
+# Ruby
+example/vendor/
+
+# node.js
+#
+node_modules/
+npm-debug.log
+yarn-debug.log
+yarn-error.log
+
+# BUCK
+buck-out/
+\.buckd/
+android/app/libs
+android/keystores/debug.keystore
+
+# Yarn
+.yarn/*
+!.yarn/patches
+!.yarn/plugins
+!.yarn/releases
+!.yarn/sdks
+!.yarn/versions
+
+# Expo
+.expo/
+
+# Turborepo
+.turbo/
+
+# generated by bob
+lib/
+
+# React Native Codegen
+ios/generated
+android/generated
+
+# React Native Nitro Modules
+nitrogen/
+
+# Environment variables
+.env
+.env.local
+.env.*.local
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/.watchmanconfig b/sdk/@launchdarkly/react-native-ld-session-replay/.watchmanconfig
new file mode 100644
index 000000000..0967ef424
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/.watchmanconfig
@@ -0,0 +1 @@
+{}
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/CODE_OF_CONDUCT.md b/sdk/@launchdarkly/react-native-ld-session-replay/CODE_OF_CONDUCT.md
new file mode 100644
index 000000000..45d257b29
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/CODE_OF_CONDUCT.md
@@ -0,0 +1,133 @@
+
+# Contributor Covenant Code of Conduct
+
+## Our Pledge
+
+We as members, contributors, and leaders pledge to make participation in our
+community a harassment-free experience for everyone, regardless of age, body
+size, visible or invisible disability, ethnicity, sex characteristics, gender
+identity and expression, level of experience, education, socio-economic status,
+nationality, personal appearance, race, caste, color, religion, or sexual
+identity and orientation.
+
+We pledge to act and interact in ways that contribute to an open, welcoming,
+diverse, inclusive, and healthy community.
+
+## Our Standards
+
+Examples of behavior that contributes to a positive environment for our
+community include:
+
+* Demonstrating empathy and kindness toward other people
+* Being respectful of differing opinions, viewpoints, and experiences
+* Giving and gracefully accepting constructive feedback
+* Accepting responsibility and apologizing to those affected by our mistakes,
+ and learning from the experience
+* Focusing on what is best not just for us as individuals, but for the overall
+ community
+
+Examples of unacceptable behavior include:
+
+* The use of sexualized language or imagery, and sexual attention or advances of
+ any kind
+* Trolling, insulting or derogatory comments, and personal or political attacks
+* Public or private harassment
+* Publishing others' private information, such as a physical or email address,
+ without their explicit permission
+* Other conduct which could reasonably be considered inappropriate in a
+ professional setting
+
+## Enforcement Responsibilities
+
+Community leaders are responsible for clarifying and enforcing our standards of
+acceptable behavior and will take appropriate and fair corrective action in
+response to any behavior that they deem inappropriate, threatening, offensive,
+or harmful.
+
+Community leaders have the right and responsibility to remove, edit, or reject
+comments, commits, code, wiki edits, issues, and other contributions that are
+not aligned to this Code of Conduct, and will communicate reasons for moderation
+decisions when appropriate.
+
+## Scope
+
+This Code of Conduct applies within all community spaces, and also applies when
+an individual is officially representing the community in public spaces.
+Examples of representing our community include using an official e-mail address,
+posting via an official social media account, or acting as an appointed
+representative at an online or offline event.
+
+## Enforcement
+
+Instances of abusive, harassing, or otherwise unacceptable behavior may be
+reported to the community leaders responsible for enforcement at
+[INSERT CONTACT METHOD].
+All complaints will be reviewed and investigated promptly and fairly.
+
+All community leaders are obligated to respect the privacy and security of the
+reporter of any incident.
+
+## Enforcement Guidelines
+
+Community leaders will follow these Community Impact Guidelines in determining
+the consequences for any action they deem in violation of this Code of Conduct:
+
+### 1. Correction
+
+**Community Impact**: Use of inappropriate language or other behavior deemed
+unprofessional or unwelcome in the community.
+
+**Consequence**: A private, written warning from community leaders, providing
+clarity around the nature of the violation and an explanation of why the
+behavior was inappropriate. A public apology may be requested.
+
+### 2. Warning
+
+**Community Impact**: A violation through a single incident or series of
+actions.
+
+**Consequence**: A warning with consequences for continued behavior. No
+interaction with the people involved, including unsolicited interaction with
+those enforcing the Code of Conduct, for a specified period of time. This
+includes avoiding interactions in community spaces as well as external channels
+like social media. Violating these terms may lead to a temporary or permanent
+ban.
+
+### 3. Temporary Ban
+
+**Community Impact**: A serious violation of community standards, including
+sustained inappropriate behavior.
+
+**Consequence**: A temporary ban from any sort of interaction or public
+communication with the community for a specified period of time. No public or
+private interaction with the people involved, including unsolicited interaction
+with those enforcing the Code of Conduct, is allowed during this period.
+Violating these terms may lead to a permanent ban.
+
+### 4. Permanent Ban
+
+**Community Impact**: Demonstrating a pattern of violation of community
+standards, including sustained inappropriate behavior, harassment of an
+individual, or aggression toward or disparagement of classes of individuals.
+
+**Consequence**: A permanent ban from any sort of public interaction within the
+community.
+
+## Attribution
+
+This Code of Conduct is adapted from the [Contributor Covenant][homepage],
+version 2.1, available at
+[https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].
+
+Community Impact Guidelines were inspired by
+[Mozilla's code of conduct enforcement ladder][Mozilla CoC].
+
+For answers to common questions about this code of conduct, see the FAQ at
+[https://www.contributor-covenant.org/faq][FAQ]. Translations are available at
+[https://www.contributor-covenant.org/translations][translations].
+
+[homepage]: https://www.contributor-covenant.org
+[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
+[Mozilla CoC]: https://github.com/mozilla/diversity
+[FAQ]: https://www.contributor-covenant.org/faq
+[translations]: https://www.contributor-covenant.org/translations
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/CONTRIBUTING.md b/sdk/@launchdarkly/react-native-ld-session-replay/CONTRIBUTING.md
new file mode 100644
index 000000000..640695633
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/CONTRIBUTING.md
@@ -0,0 +1,132 @@
+# Contributing
+
+Contributions are always welcome, no matter how large or small!
+
+We want this community to be friendly and respectful to each other. Please follow it in all your interactions with the project. Before contributing, please read the [code of conduct](./CODE_OF_CONDUCT.md).
+
+## Development workflow
+
+This project is a monorepo managed using [Yarn workspaces](https://yarnpkg.com/features/workspaces). It contains the following packages:
+
+- The library package in the root directory.
+- An example app in the `example/` directory.
+
+To get started with the project, make sure you have the correct version of [Node.js](https://nodejs.org/) installed. See the [`.nvmrc`](./.nvmrc) file for the version used in this project.
+
+Run `yarn` in the root directory to install the required dependencies for each package:
+
+```sh
+yarn
+```
+
+> Since the project relies on Yarn workspaces, you cannot use [`npm`](https://github.com/npm/cli) for development without manually migrating.
+
+The [example app](/example/) demonstrates usage of the library. You need to run it to test any changes you make.
+
+It is configured to use the local version of the library, so any changes you make to the library's source code will be reflected in the example app. Changes to the library's JavaScript code will be reflected in the example app without a rebuild, but native code changes will require a rebuild of the example app.
+
+If you want to use Android Studio or Xcode to edit the native code, you can open the `example/android` or `example/ios` directories respectively in those editors. To edit the Objective-C or Swift files, open `example/ios/SessionReplayReactNativeExample.xcworkspace` in Xcode and find the source files at `Pods > Development Pods > session-replay-react-native`.
+
+To edit the Java or Kotlin files, open `example/android` in Android studio and find the source files at `session-replay-react-native` under `Android`.
+
+You can use various commands from the root directory to work with the project.
+
+To start the packager:
+
+```sh
+yarn example start
+```
+
+To run the example app on Android:
+
+```sh
+yarn example android
+```
+
+To run the example app on iOS:
+
+```sh
+yarn example ios
+```
+
+To confirm that the app is running with the new architecture, you can check the Metro logs for a message like this:
+
+```sh
+Running "SessionReplayReactNativeExample" with {"fabric":true,"initialProps":{"concurrentRoot":true},"rootTag":1}
+```
+
+Note the `"fabric":true` and `"concurrentRoot":true` properties.
+
+Make sure your code passes TypeScript:
+
+```sh
+yarn typecheck
+```
+
+To check for linting errors, run the following:
+
+```sh
+yarn lint
+```
+
+To fix formatting errors, run the following:
+
+```sh
+yarn lint --fix
+```
+
+Remember to add tests for your change if possible. Run the unit tests by:
+
+```sh
+yarn test
+```
+
+
+### Commit message convention
+
+We follow the [conventional commits specification](https://www.conventionalcommits.org/en) for our commit messages:
+
+- `fix`: bug fixes, e.g. fix crash due to deprecated method.
+- `feat`: new features, e.g. add new method to the module.
+- `refactor`: code refactor, e.g. migrate from class components to hooks.
+- `docs`: changes into documentation, e.g. add usage example for the module.
+- `test`: adding or updating tests, e.g. add integration tests using detox.
+- `chore`: tooling changes, e.g. change CI config.
+
+Our pre-commit hooks verify that your commit message matches this format when committing.
+
+
+### Publishing to npm
+
+We use [release-it](https://github.com/release-it/release-it) to make it easier to publish new versions. It handles common tasks like bumping version based on semver, creating tags and releases etc.
+
+To publish new versions, run the following:
+
+```sh
+yarn release
+```
+
+
+### Scripts
+
+The `package.json` file contains various scripts for common tasks:
+
+- `yarn`: setup project by installing dependencies.
+- `yarn typecheck`: type-check files with TypeScript.
+- `yarn lint`: lint files with [ESLint](https://eslint.org/).
+- `yarn test`: run unit tests with [Jest](https://jestjs.io/).
+- `yarn example start`: start the Metro server for the example app.
+- `yarn example android`: run the example app on Android.
+- `yarn example ios`: run the example app on iOS.
+
+### Sending a pull request
+
+> **Working on your first pull request?** You can learn how from this _free_ series: [How to Contribute to an Open Source Project on GitHub](https://app.egghead.io/playlists/how-to-contribute-to-an-open-source-project-on-github).
+
+When you're sending a pull request:
+
+- Prefer small pull requests focused on one change.
+- Verify that linters and tests are passing.
+- Review the documentation to make sure it looks good.
+- Follow the pull request template when opening a pull request.
+- For pull requests that change the API or implementation, discuss with maintainers first by opening an issue.
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/LICENSE b/sdk/@launchdarkly/react-native-ld-session-replay/LICENSE
new file mode 100644
index 000000000..5a12e47a3
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/LICENSE
@@ -0,0 +1,20 @@
+MIT License
+
+Copyright (c) 2026 launchdarkly
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/README.md b/sdk/@launchdarkly/react-native-ld-session-replay/README.md
new file mode 100644
index 000000000..9a385994c
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/README.md
@@ -0,0 +1,63 @@
+# session-replay-react-native
+
+session replay for react native
+
+## Installation
+
+
+```sh
+npm install session-replay-react-native
+```
+
+
+## Usage
+
+Use the session replay plugin with the LaunchDarkly React Native client:
+
+```js
+import { ReactNativeLDClient, AutoEnvAttributes } from '@launchdarkly/react-native-client-sdk';
+import { createSessionReplayPlugin } from 'session-replay-react-native';
+
+const plugin = createSessionReplayPlugin({
+ isEnabled: true,
+ maskTextInputs: true,
+ maskWebViews: true,
+ maskLabels: true,
+ maskImages: true,
+});
+
+const client = new ReactNativeLDClient(
+ 'YOUR_LAUNCHDARKLY_MOBILE_KEY',
+ AutoEnvAttributes.Enabled,
+ { plugins: [plugin] }
+);
+```
+
+Or use the imperative API:
+
+```js
+import {
+ configureSessionReplay,
+ startSessionReplay,
+ stopSessionReplay,
+} from 'session-replay-react-native';
+
+await configureSessionReplay('YOUR_LAUNCHDARKLY_MOBILE_KEY', { isEnabled: true });
+await startSessionReplay();
+// later: await stopSessionReplay();
+```
+
+
+## Contributing
+
+- [Development workflow](CONTRIBUTING.md#development-workflow)
+- [Sending a pull request](CONTRIBUTING.md#sending-a-pull-request)
+- [Code of conduct](CODE_OF_CONDUCT.md)
+
+## License
+
+MIT
+
+---
+
+Made with [create-react-native-library](https://github.com/callstack/react-native-builder-bob)
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/SessionReplayReactNative.podspec b/sdk/@launchdarkly/react-native-ld-session-replay/SessionReplayReactNative.podspec
new file mode 100644
index 000000000..7df4fb0e2
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/SessionReplayReactNative.podspec
@@ -0,0 +1,32 @@
+require "json"
+
+package = JSON.parse(File.read(File.join(__dir__, "package.json")))
+
+Pod::Spec.new do |s|
+ s.name = "SessionReplayReactNative"
+ s.version = package["version"]
+ s.summary = package["description"]
+ s.homepage = package["homepage"]
+ s.license = package["license"]
+ s.authors = package["author"]
+
+ s.platforms = { :ios => min_ios_version_supported }
+ s.source = { :git => "https://github.com/launchdarkly/swift-launchdarkly-observability.git", :tag => "#{s.version}" }
+
+ s.source_files = "ios/**/*.{h,m,mm,swift,cpp}"
+ s.private_header_files = "ios/**/*.h"
+
+ # --- Swift Package Manager Dependency ---
+ # This helper adds the SPM package to the generated Pods project
+ spm_dependency(
+ s,
+ url: 'https://github.com/launchdarkly/swift-launchdarkly-observability',
+ requirement: {
+ kind: 'upToNextMajorVersion',
+ minimumVersion: '0.18.1'
+ },
+ products: ['LaunchDarklyObservability', 'LaunchDarklySessionReplay']
+ )
+
+ install_modules_dependencies(s)
+end
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/android/build.gradle b/sdk/@launchdarkly/react-native-ld-session-replay/android/build.gradle
new file mode 100644
index 000000000..34b59b734
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/android/build.gradle
@@ -0,0 +1,77 @@
+buildscript {
+ ext.getExtOrDefault = {name ->
+ return rootProject.ext.has(name) ? rootProject.ext.get(name) : project.properties['SessionReplayReactNative_' + name]
+ }
+
+ repositories {
+ google()
+ mavenCentral()
+ }
+
+ dependencies {
+ classpath "com.android.tools.build:gradle:8.7.2"
+ // noinspection DifferentKotlinGradleVersion
+ classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${getExtOrDefault('kotlinVersion')}"
+ }
+}
+
+
+apply plugin: "com.android.library"
+apply plugin: "kotlin-android"
+
+apply plugin: "com.facebook.react"
+
+def getExtOrIntegerDefault(name) {
+ return rootProject.ext.has(name) ? rootProject.ext.get(name) : (project.properties["SessionReplayReactNative_" + name]).toInteger()
+}
+
+android {
+ namespace "com.sessionreplayreactnative"
+
+ compileSdkVersion getExtOrIntegerDefault("compileSdkVersion")
+
+ defaultConfig {
+ minSdkVersion getExtOrIntegerDefault("minSdkVersion")
+ targetSdkVersion getExtOrIntegerDefault("targetSdkVersion")
+ }
+
+ buildFeatures {
+ buildConfig true
+ }
+
+ buildTypes {
+ release {
+ minifyEnabled false
+ }
+ }
+
+ lintOptions {
+ disable "GradleCompatible"
+ }
+
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_1_8
+ targetCompatibility JavaVersion.VERSION_1_8
+ }
+
+ sourceSets {
+ main {
+ java.srcDirs += [
+ "generated/java",
+ "generated/jni"
+ ]
+ }
+ }
+}
+
+repositories {
+ mavenCentral()
+ google()
+}
+
+def kotlin_version = getExtOrDefault("kotlinVersion")
+
+dependencies {
+ implementation "com.facebook.react:react-android"
+ implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
+}
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/android/gradle.properties b/sdk/@launchdarkly/react-native-ld-session-replay/android/gradle.properties
new file mode 100644
index 000000000..7ca81e1f3
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/android/gradle.properties
@@ -0,0 +1,5 @@
+SessionReplayReactNative_kotlinVersion=2.0.21
+SessionReplayReactNative_minSdkVersion=24
+SessionReplayReactNative_targetSdkVersion=34
+SessionReplayReactNative_compileSdkVersion=35
+SessionReplayReactNative_ndkVersion=27.1.12297006
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/android/src/main/AndroidManifest.xml b/sdk/@launchdarkly/react-native-ld-session-replay/android/src/main/AndroidManifest.xml
new file mode 100644
index 000000000..a2f47b605
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/android/src/main/AndroidManifest.xml
@@ -0,0 +1,2 @@
+
+
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/android/src/main/java/com/sessionreplayreactnative/SessionReplayReactNativeModule.kt b/sdk/@launchdarkly/react-native-ld-session-replay/android/src/main/java/com/sessionreplayreactnative/SessionReplayReactNativeModule.kt
new file mode 100644
index 000000000..5fb799196
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/android/src/main/java/com/sessionreplayreactnative/SessionReplayReactNativeModule.kt
@@ -0,0 +1,46 @@
+package com.sessionreplayreactnative
+
+import com.facebook.react.bridge.ReactApplicationContext
+import com.facebook.react.module.annotations.ReactModule
+import com.facebook.react.bridge.Promise
+
+@ReactModule(name = SessionReplayReactNativeModule.NAME)
+class SessionReplayReactNativeModule(reactContext: ReactApplicationContext) :
+ NativeSessionReplayReactNativeSpec(reactContext) {
+
+ override fun getName(): String {
+ return NAME
+ }
+
+ override fun configure(
+ mobileKey: String,
+ options: com.facebook.react.bridge.ReadableMap?,
+ promise: Promise
+ ) {
+ promise.reject(
+ "NOT_SUPPORTED",
+ "Session replay is not yet supported on Android. iOS support is available.",
+ null
+ )
+ }
+
+ override fun startSessionReplay(promise: Promise) {
+ promise.reject(
+ "NOT_SUPPORTED",
+ "Session replay is not yet supported on Android. iOS support is available.",
+ null
+ )
+ }
+
+ override fun stopSessionReplay(promise: Promise) {
+ promise.reject(
+ "NOT_SUPPORTED",
+ "Session replay is not yet supported on Android. iOS support is available.",
+ null
+ )
+ }
+
+ companion object {
+ const val NAME = "SessionReplayReactNative"
+ }
+}
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/android/src/main/java/com/sessionreplayreactnative/SessionReplayReactNativePackage.kt b/sdk/@launchdarkly/react-native-ld-session-replay/android/src/main/java/com/sessionreplayreactnative/SessionReplayReactNativePackage.kt
new file mode 100644
index 000000000..38d718f65
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/android/src/main/java/com/sessionreplayreactnative/SessionReplayReactNativePackage.kt
@@ -0,0 +1,33 @@
+package com.sessionreplayreactnative
+
+import com.facebook.react.BaseReactPackage
+import com.facebook.react.bridge.NativeModule
+import com.facebook.react.bridge.ReactApplicationContext
+import com.facebook.react.module.model.ReactModuleInfo
+import com.facebook.react.module.model.ReactModuleInfoProvider
+import java.util.HashMap
+
+class SessionReplayReactNativePackage : BaseReactPackage() {
+ override fun getModule(name: String, reactContext: ReactApplicationContext): NativeModule? {
+ return if (name == SessionReplayReactNativeModule.NAME) {
+ SessionReplayReactNativeModule(reactContext)
+ } else {
+ null
+ }
+ }
+
+ override fun getReactModuleInfoProvider(): ReactModuleInfoProvider {
+ return ReactModuleInfoProvider {
+ val moduleInfos: MutableMap = HashMap()
+ moduleInfos[SessionReplayReactNativeModule.NAME] = ReactModuleInfo(
+ SessionReplayReactNativeModule.NAME,
+ SessionReplayReactNativeModule.NAME,
+ false, // canOverrideExistingModule
+ false, // needsEagerInit
+ false, // isCxxModule
+ true // isTurboModule
+ )
+ moduleInfos
+ }
+ }
+}
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/babel.config.js b/sdk/@launchdarkly/react-native-ld-session-replay/babel.config.js
new file mode 100644
index 000000000..0c05fd696
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/babel.config.js
@@ -0,0 +1,12 @@
+module.exports = {
+ overrides: [
+ {
+ exclude: /\/node_modules\//,
+ presets: ['module:react-native-builder-bob/babel-preset'],
+ },
+ {
+ include: /\/node_modules\//,
+ presets: ['module:@react-native/babel-preset'],
+ },
+ ],
+};
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/eslint.config.mjs.bak b/sdk/@launchdarkly/react-native-ld-session-replay/eslint.config.mjs.bak
new file mode 100644
index 000000000..16b00bbcd
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/eslint.config.mjs.bak
@@ -0,0 +1,29 @@
+import { fixupConfigRules } from '@eslint/compat';
+import { FlatCompat } from '@eslint/eslintrc';
+import js from '@eslint/js';
+import prettier from 'eslint-plugin-prettier';
+import { defineConfig } from 'eslint/config';
+import path from 'node:path';
+import { fileURLToPath } from 'node:url';
+
+const __filename = fileURLToPath(import.meta.url);
+const __dirname = path.dirname(__filename);
+const compat = new FlatCompat({
+ baseDirectory: __dirname,
+ recommendedConfig: js.configs.recommended,
+ allConfig: js.configs.all,
+});
+
+export default defineConfig([
+ {
+ extends: fixupConfigRules(compat.extends('@react-native', 'prettier')),
+ plugins: { prettier },
+ rules: {
+ 'react/react-in-jsx-scope': 'off',
+ 'prettier/prettier': 'error',
+ },
+ },
+ {
+ ignores: ['node_modules/', 'lib/'],
+ },
+]);
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/.bundle/config b/sdk/@launchdarkly/react-native-ld-session-replay/example/.bundle/config
new file mode 100644
index 000000000..848943bb5
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/example/.bundle/config
@@ -0,0 +1,2 @@
+BUNDLE_PATH: "vendor/bundle"
+BUNDLE_FORCE_RUBY_PLATFORM: 1
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/.env.example b/sdk/@launchdarkly/react-native-ld-session-replay/example/.env.example
new file mode 100644
index 000000000..34a7378f6
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/example/.env.example
@@ -0,0 +1,4 @@
+# LaunchDarkly Mobile Key
+# Replace with your actual LaunchDarkly mobile key
+# Get your key from: https://app.launchdarkly.com/settings/projects
+LAUNCHDARKLY_MOBILE_KEY=YOUR_LAUNCHDARKLY_MOBILE_KEY_HERE
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/.watchmanconfig b/sdk/@launchdarkly/react-native-ld-session-replay/example/.watchmanconfig
new file mode 100644
index 000000000..0967ef424
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/example/.watchmanconfig
@@ -0,0 +1 @@
+{}
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/Gemfile b/sdk/@launchdarkly/react-native-ld-session-replay/example/Gemfile
new file mode 100644
index 000000000..6a4c5f171
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/example/Gemfile
@@ -0,0 +1,16 @@
+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'
+
+# Ruby 3.4.0 has removed some libraries from the standard library.
+gem 'bigdecimal'
+gem 'logger'
+gem 'benchmark'
+gem 'mutex_m'
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/Gemfile.lock b/sdk/@launchdarkly/react-native-ld-session-replay/example/Gemfile.lock
new file mode 100644
index 000000000..24d46d1f3
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/example/Gemfile.lock
@@ -0,0 +1,169 @@
+GEM
+ remote: https://rubygems.org/
+ specs:
+ CFPropertyList (3.0.8)
+ activesupport (7.2.3)
+ 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.8)
+ public_suffix (>= 2.0.2, < 8.0)
+ algoliasearch (1.27.5)
+ httpclient (~> 2.8, >= 2.8.3)
+ json (>= 1.5.1)
+ atomos (0.1.3)
+ base64 (0.3.0)
+ benchmark (0.5.0)
+ bigdecimal (4.0.1)
+ 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 (3.0.2)
+ drb (2.2.3)
+ escape (0.0.4)
+ ethon (0.15.0)
+ ffi (>= 1.15.0)
+ ffi (1.17.3)
+ fourflusher (2.3.1)
+ fuzzy_match (2.0.4)
+ gh_inspector (1.1.3)
+ httpclient (2.9.0)
+ mutex_m
+ i18n (1.14.8)
+ concurrent-ruby (~> 1.0)
+ json (2.18.0)
+ logger (1.7.0)
+ minitest (6.0.1)
+ prism (~> 1.5)
+ molinillo (0.8.0)
+ mutex_m (0.3.0)
+ nanaimo (0.3.0)
+ nap (1.1.0)
+ netrc (0.11.0)
+ prism (1.8.0)
+ public_suffix (4.0.7)
+ rexml (3.4.4)
+ ruby-macho (2.5.1)
+ securerandom (0.4.1)
+ typhoeus (1.5.0)
+ ethon (>= 0.9.0, < 0.16.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)
+ benchmark
+ bigdecimal
+ cocoapods (>= 1.13, != 1.15.1, != 1.15.0)
+ concurrent-ruby (< 1.3.4)
+ logger
+ mutex_m
+ xcodeproj (< 1.26.0)
+
+CHECKSUMS
+ CFPropertyList (3.0.8) sha256=2c99d0d980536d3d7ab252f7bd59ac8be50fbdd1ff487c98c949bb66bb114261
+ activesupport (7.2.3) sha256=5675c9770dac93e371412684249f9dc3c8cec104efd0624362a520ae685c7b10
+ addressable (2.8.8) sha256=7c13b8f9536cf6364c03b9d417c19986019e28f7c00ac8132da4eb0fe393b057
+ algoliasearch (1.27.5) sha256=26c1cddf3c2ec4bd60c148389e42702c98fdac862881dc6b07a4c0b89ffec853
+ atomos (0.1.3) sha256=7d43b22f2454a36bace5532d30785b06de3711399cb1c6bf932573eda536789f
+ base64 (0.3.0) sha256=27337aeabad6ffae05c265c450490628ef3ebd4b67be58257393227588f5a97b
+ benchmark (0.5.0) sha256=465df122341aedcb81a2a24b4d3bd19b6c67c1530713fd533f3ff034e419236c
+ bigdecimal (4.0.1) sha256=8b07d3d065a9f921c80ceaea7c9d4ae596697295b584c296fe599dd0ad01c4a7
+ claide (1.1.0) sha256=6d3c5c089dde904d96aa30e73306d0d4bd444b1accb9b3125ce14a3c0183f82e
+ cocoapods (1.15.2) sha256=f0f5153de8d028d133b96f423e04f37fb97a1da0d11dda581a9f46c0cba4090a
+ cocoapods-core (1.15.2) sha256=322650d97fe1ad4c0831a09669764b888bd91c6d79d0f6bb07281a17667a2136
+ cocoapods-deintegrate (1.0.5) sha256=517c2a448ef563afe99b6e7668704c27f5de9e02715a88ee9de6974dc1b3f6a2
+ cocoapods-downloader (2.1) sha256=bb6ebe1b3966dc4055de54f7a28b773485ac724fdf575d9bee2212d235e7b6d1
+ cocoapods-plugins (1.0.0) sha256=725d17ce90b52f862e73476623fd91441b4430b742d8a071000831efb440ca9a
+ cocoapods-search (1.0.1) sha256=1b133b0e6719ed439bd840e84a1828cca46425ab73a11eff5e096c3b2df05589
+ cocoapods-trunk (1.6.0) sha256=5f5bda8c172afead48fa2d43a718cf534b1313c367ba1194cebdeb9bfee9ed31
+ cocoapods-try (1.2.0) sha256=145b946c6e7747ed0301d975165157951153d27469e6b2763c83e25c84b9defe
+ colored2 (3.1.2) sha256=b13c2bd7eeae2cf7356a62501d398e72fde78780bd26aec6a979578293c28b4a
+ concurrent-ruby (1.3.3) sha256=4f9cd28965c4dcf83ffd3ea7304f9323277be8525819cb18a3b61edcb56a7c6a
+ connection_pool (3.0.2) sha256=33fff5ba71a12d2aa26cb72b1db8bba2a1a01823559fb01d29eb74c286e62e0a
+ drb (2.2.3) sha256=0b00d6fdb50995fe4a45dea13663493c841112e4068656854646f418fda13373
+ escape (0.0.4) sha256=e49f44ae2b4f47c6a3abd544ae77fe4157802794e32f19b8e773cbc4dcec4169
+ ethon (0.15.0) sha256=0809805a035bc10f54162ca99f15ded49e428e0488bcfe1c08c821e18261a74d
+ ffi (1.17.3) sha256=0e9f39f7bb3934f77ad6feab49662be77e87eedcdeb2a3f5c0234c2938563d4c
+ fourflusher (2.3.1) sha256=1b3de61c7c791b6a4e64f31e3719eb25203d151746bb519a0292bff1065ccaa9
+ fuzzy_match (2.0.4) sha256=b5de4f95816589c5b5c3ad13770c0af539b75131c158135b3f3bbba75d0cfca5
+ gh_inspector (1.1.3) sha256=04cca7171b87164e053aa43147971d3b7f500fcb58177698886b48a9fc4a1939
+ httpclient (2.9.0) sha256=4b645958e494b2f86c2f8a2f304c959baa273a310e77a2931ddb986d83e498c8
+ i18n (1.14.8) sha256=285778639134865c5e0f6269e0b818256017e8cde89993fdfcbfb64d088824a5
+ json (2.18.0) sha256=b10506aee4183f5cf49e0efc48073d7b75843ce3782c68dbeb763351c08fd505
+ logger (1.7.0) sha256=196edec7cc44b66cfb40f9755ce11b392f21f7967696af15d274dde7edff0203
+ minitest (6.0.1) sha256=7854c74f48e2e975969062833adc4013f249a4b212f5e7b9d5c040bf838d54bb
+ molinillo (0.8.0) sha256=efbff2716324e2a30bccd3eba1ff3a735f4d5d53ffddbc6a2f32c0ca9433045d
+ mutex_m (0.3.0) sha256=cfcb04ac16b69c4813777022fdceda24e9f798e48092a2b817eb4c0a782b0751
+ nanaimo (0.3.0) sha256=aaaedc60497070b864a7e220f7c4b4cad3a0daddda2c30055ba8dae306342376
+ nap (1.1.0) sha256=949691660f9d041d75be611bb2a8d2fd559c467537deac241f4097d9b5eea576
+ netrc (0.11.0) sha256=de1ce33da8c99ab1d97871726cba75151113f117146becbe45aa85cb3dabee3f
+ prism (1.8.0) sha256=84453a16ef5530ea62c5f03ec16b52a459575ad4e7b9c2b360fd8ce2c39c1254
+ public_suffix (4.0.7) sha256=8be161e2421f8d45b0098c042c06486789731ea93dc3a896d30554ee38b573b8
+ rexml (3.4.4) sha256=19e0a2c3425dfbf2d4fc1189747bdb2f849b6c5e74180401b15734bc97b5d142
+ ruby-macho (2.5.1) sha256=9075e52e0f9270b552a90b24fcc6219ad149b0d15eae1bc364ecd0ac8984f5c9
+ securerandom (0.4.1) sha256=cc5193d414a4341b6e225f0cb4446aceca8e50d5e1888743fac16987638ea0b1
+ typhoeus (1.5.0) sha256=120b67ed1ef515e6c0e938176db880f15b0916f038e78ce2a66290f3f1de3e3b
+ tzinfo (2.0.6) sha256=8daf828cc77bcf7d63b0e3bdb6caa47e2272dcfaf4fbfe46f8c3a9df087a829b
+ xcodeproj (1.25.1) sha256=9a2310dccf6d717076e86f602b17c640046b6f1dfe64480044596f6f2f13dc84
+
+RUBY VERSION
+ ruby 3.2.2
+
+BUNDLED WITH
+ 4.0.1
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/README.md b/sdk/@launchdarkly/react-native-ld-session-replay/example/README.md
new file mode 100644
index 000000000..020377b84
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/example/README.md
@@ -0,0 +1,111 @@
+This is a new [**React Native**](https://reactnative.dev) project, bootstrapped using [`@react-native-community/cli`](https://github.com/react-native-community/cli).
+
+# Getting Started
+
+> **Note**: Make sure you have completed the [Set Up Your Environment](https://reactnative.dev/docs/set-up-your-environment) guide before proceeding.
+
+## Step 0: Configure LaunchDarkly Mobile Key
+
+Before running the app, you need to configure your LaunchDarkly mobile key. You can do this in one of two ways:
+
+1. **Using environment variables (recommended)**: Copy `.env.example` to `.env` and replace `YOUR_LAUNCHDARKLY_MOBILE_KEY_HERE` with your actual mobile key:
+ ```sh
+ cp .env.example .env
+ # Then edit .env and add your LaunchDarkly mobile key
+ ```
+
+2. **Direct replacement**: Edit `src/App.tsx` and replace `YOUR_LAUNCHDARKLY_MOBILE_KEY_HERE` with your actual mobile key.
+
+> **Note**: Never commit your actual API keys to version control. The `.env` file is already included in `.gitignore`.
+
+## Step 1: Start Metro
+
+First, you will need to run **Metro**, the JavaScript build tool for React Native.
+
+To start the Metro dev server, run the following command from the root of your React Native project:
+
+```sh
+# Using npm
+npm start
+
+# OR using Yarn
+yarn start
+```
+
+## Step 2: Build and run your app
+
+With Metro running, open a new terminal window/pane from the root of your React Native project, and use one of the following commands to build and run your Android or iOS app:
+
+### Android
+
+```sh
+# Using npm
+npm run android
+
+# OR using Yarn
+yarn android
+```
+
+### iOS
+
+For iOS, remember to install CocoaPods dependencies (this only needs to be run on first clone or after updating native deps).
+
+The first time you create a new project, run the Ruby bundler to install CocoaPods itself:
+
+```sh
+bundle install
+```
+
+Then, and every time you update your native dependencies, run:
+
+```sh
+bundle exec pod install
+```
+
+For more information, please visit [CocoaPods Getting Started guide](https://guides.cocoapods.org/using/getting-started.html).
+
+```sh
+# Using npm
+npm run ios
+
+# OR using Yarn
+yarn ios
+```
+
+If everything is set up correctly, you should see your new app running in the Android Emulator, iOS Simulator, or your connected device.
+
+This is one way to run your app — you can also build it directly from Android Studio or Xcode.
+
+## Step 3: Modify your app
+
+Now that you have successfully run the app, let's make changes!
+
+Open `App.tsx` in your text editor of choice and make some changes. When you save, your app will automatically update and reflect these changes — this is powered by [Fast Refresh](https://reactnative.dev/docs/fast-refresh).
+
+When you want to forcefully reload, for example to reset the state of your app, you can perform a full reload:
+
+- **Android**: Press the R key twice or select **"Reload"** from the **Dev Menu**, accessed via Ctrl + M (Windows/Linux) or Cmd ⌘ + M (macOS).
+- **iOS**: Press R in iOS Simulator.
+
+## Congratulations! :tada:
+
+You've successfully run and modified your React Native App. :partying_face:
+
+### Now what?
+
+- If you want to add this new React Native code to an existing application, check out the [Integration guide](https://reactnative.dev/docs/integration-with-existing-apps).
+- If you're curious to learn more about React Native, check out the [docs](https://reactnative.dev/docs/getting-started).
+
+# Troubleshooting
+
+If you're having issues getting the above steps to work, see the [Troubleshooting](https://reactnative.dev/docs/troubleshooting) page.
+
+# Learn More
+
+To learn more about React Native, take a look at the following resources:
+
+- [React Native Website](https://reactnative.dev) - learn more about React Native.
+- [Getting Started](https://reactnative.dev/docs/environment-setup) - an **overview** of React Native and how setup your environment.
+- [Learn the Basics](https://reactnative.dev/docs/getting-started) - a **guided tour** of the React Native **basics**.
+- [Blog](https://reactnative.dev/blog) - read the latest official React Native **Blog** posts.
+- [`@facebook/react-native`](https://github.com/facebook/react-native) - the Open Source; GitHub **repository** for React Native.
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/build.gradle b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/build.gradle
new file mode 100644
index 000000000..41d2c728e
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/example/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 = io.github.react-native-community:jsc-android-intl:2026004.+`
+ *
+ * The international variant includes ICU i18n library and necessary data
+ * allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that
+ * give correct results when using with locales other than en-US. Note that
+ * this variant is about 6MiB larger per architecture than default.
+ */
+def jscFlavor = 'io.github.react-native-community:jsc-android:2026004.+'
+
+android {
+ ndkVersion rootProject.ext.ndkVersion
+ buildToolsVersion rootProject.ext.buildToolsVersion
+ compileSdk rootProject.ext.compileSdkVersion
+
+ namespace "sessionreplayreactnative.example"
+ defaultConfig {
+ applicationId "sessionreplayreactnative.example"
+ 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/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/debug.keystore b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/debug.keystore
new file mode 100644
index 000000000..364e105ed
Binary files /dev/null and b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/debug.keystore differ
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/proguard-rules.pro b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/proguard-rules.pro
new file mode 100644
index 000000000..11b025724
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/example/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/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/AndroidManifest.xml b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/AndroidManifest.xml
new file mode 100644
index 000000000..fb78f3974
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/AndroidManifest.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/java/sessionreplayreactnative/example/MainActivity.kt b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/java/sessionreplayreactnative/example/MainActivity.kt
new file mode 100644
index 000000000..2fa8563b1
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/java/sessionreplayreactnative/example/MainActivity.kt
@@ -0,0 +1,22 @@
+package sessionreplayreactnative.example
+
+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 = "SessionReplayReactNativeExample"
+
+ /**
+ * 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/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/java/sessionreplayreactnative/example/MainApplication.kt b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/java/sessionreplayreactnative/example/MainApplication.kt
new file mode 100644
index 000000000..871eeca3d
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/java/sessionreplayreactnative/example/MainApplication.kt
@@ -0,0 +1,27 @@
+package sessionreplayreactnative.example
+
+import android.app.Application
+import com.facebook.react.PackageList
+import com.facebook.react.ReactApplication
+import com.facebook.react.ReactHost
+import com.facebook.react.ReactNativeApplicationEntryPoint.loadReactNative
+import com.facebook.react.defaults.DefaultReactHost.getDefaultReactHost
+
+class MainApplication : Application(), ReactApplication {
+
+ override val reactHost: ReactHost by lazy {
+ getDefaultReactHost(
+ context = applicationContext,
+ packageList =
+ PackageList(this).packages.apply {
+ // Packages that cannot be autolinked yet can be added manually here, for example:
+ // add(MyReactNativePackage())
+ },
+ )
+ }
+
+ override fun onCreate() {
+ super.onCreate()
+ loadReactNative(this)
+ }
+}
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/res/drawable/rn_edit_text_material.xml b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/res/drawable/rn_edit_text_material.xml
new file mode 100644
index 000000000..5c25e728e
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/res/drawable/rn_edit_text_material.xml
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
new file mode 100644
index 000000000..a2f590828
Binary files /dev/null and b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png differ
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
new file mode 100644
index 000000000..1b5239980
Binary files /dev/null and b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png differ
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
new file mode 100644
index 000000000..ff10afd6e
Binary files /dev/null and b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png differ
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
new file mode 100644
index 000000000..115a4c768
Binary files /dev/null and b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png differ
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
new file mode 100644
index 000000000..dcd3cd808
Binary files /dev/null and b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
new file mode 100644
index 000000000..459ca609d
Binary files /dev/null and b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png differ
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
new file mode 100644
index 000000000..8ca12fe02
Binary files /dev/null and b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
new file mode 100644
index 000000000..8e19b410a
Binary files /dev/null and b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png differ
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
new file mode 100644
index 000000000..b824ebdd4
Binary files /dev/null and b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
new file mode 100644
index 000000000..4c19a13c2
Binary files /dev/null and b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png differ
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/res/values/strings.xml b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/res/values/strings.xml
new file mode 100644
index 000000000..0033b2d1a
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/res/values/strings.xml
@@ -0,0 +1,3 @@
+
+ SessionReplayReactNativeExample
+
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/res/values/styles.xml b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/res/values/styles.xml
new file mode 100644
index 000000000..7ba83a2ad
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/app/src/main/res/values/styles.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/android/build.gradle b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/build.gradle
new file mode 100644
index 000000000..dad99b022
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/build.gradle
@@ -0,0 +1,21 @@
+buildscript {
+ ext {
+ buildToolsVersion = "36.0.0"
+ minSdkVersion = 24
+ compileSdkVersion = 36
+ targetSdkVersion = 36
+ ndkVersion = "27.1.12297006"
+ kotlinVersion = "2.1.20"
+ }
+ 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/sdk/@launchdarkly/react-native-ld-session-replay/example/android/gradle.properties b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/gradle.properties
new file mode 100644
index 000000000..9afe61598
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/gradle.properties
@@ -0,0 +1,44 @@
+# 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
+
+# Use this property to enable edge-to-edge display support.
+# This allows your app to draw behind system bars for an immersive UI.
+# Note: Only works with ReactActivity and should not be used with custom Activity.
+edgeToEdgeEnabled=false
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/android/gradle/wrapper/gradle-wrapper.jar b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/gradle/wrapper/gradle-wrapper.jar
new file mode 100644
index 000000000..8bdaf60c7
Binary files /dev/null and b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/gradle/wrapper/gradle-wrapper.jar differ
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/android/gradle/wrapper/gradle-wrapper.properties b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 000000000..2a84e188b
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/gradle/wrapper/gradle-wrapper.properties
@@ -0,0 +1,7 @@
+distributionBase=GRADLE_USER_HOME
+distributionPath=wrapper/dists
+distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
+networkTimeout=10000
+validateDistributionUrl=true
+zipStoreBase=GRADLE_USER_HOME
+zipStorePath=wrapper/dists
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/android/gradlew b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/gradlew
new file mode 100755
index 000000000..ef07e0162
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/gradlew
@@ -0,0 +1,251 @@
+#!/bin/sh
+
+#
+# Copyright © 2015 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\n' "$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="\\\"\\\""
+
+
+# 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, 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" \
+ -jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \
+ "$@"
+
+# 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/sdk/@launchdarkly/react-native-ld-session-replay/example/android/gradlew.bat b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/gradlew.bat
new file mode 100644
index 000000000..11bf18292
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/gradlew.bat
@@ -0,0 +1,99 @@
+@REM Copyright (c) Meta Platforms, Inc. and affiliates.
+@REM
+@REM This source code is licensed under the MIT license found in the
+@REM LICENSE file in the root directory of this source tree.
+
+@rem
+@rem Copyright 2015 the original author or authors.
+@rem
+@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=
+
+
+@rem Execute Gradle
+"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %*
+
+:end
+@rem End local scope for the variables with windows NT shell
+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/sdk/@launchdarkly/react-native-ld-session-replay/example/android/settings.gradle b/sdk/@launchdarkly/react-native-ld-session-replay/example/android/settings.gradle
new file mode 100644
index 000000000..bfcad72aa
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/example/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 = 'sessionreplayreactnative.example'
+include ':app'
+includeBuild('../node_modules/@react-native/gradle-plugin')
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/app.json b/sdk/@launchdarkly/react-native-ld-session-replay/example/app.json
new file mode 100644
index 000000000..2721926fc
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/example/app.json
@@ -0,0 +1,4 @@
+{
+ "name": "SessionReplayReactNativeExample",
+ "displayName": "SessionReplayReactNativeExample"
+}
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/babel.config.js b/sdk/@launchdarkly/react-native-ld-session-replay/example/babel.config.js
new file mode 100644
index 000000000..486a09304
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/example/babel.config.js
@@ -0,0 +1,12 @@
+const path = require('path');
+const { getConfig } = require('react-native-builder-bob/babel-config');
+const pkg = require('../package.json');
+
+const root = path.resolve(__dirname, '..');
+
+module.exports = getConfig(
+ {
+ presets: ['module:@react-native/babel-preset'],
+ },
+ { root, pkg }
+);
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/index.js b/sdk/@launchdarkly/react-native-ld-session-replay/example/index.js
new file mode 100644
index 000000000..117ddcae4
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/example/index.js
@@ -0,0 +1,5 @@
+import { AppRegistry } from 'react-native';
+import App from './src/App';
+import { name as appName } from './app.json';
+
+AppRegistry.registerComponent(appName, () => App);
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/ios/.xcode.env b/sdk/@launchdarkly/react-native-ld-session-replay/example/ios/.xcode.env
new file mode 100644
index 000000000..3d5782c71
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/example/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/sdk/@launchdarkly/react-native-ld-session-replay/example/ios/Podfile b/sdk/@launchdarkly/react-native-ld-session-replay/example/ios/Podfile
new file mode 100644
index 000000000..9dc847038
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/example/ios/Podfile
@@ -0,0 +1,36 @@
+ENV['RCT_NEW_ARCH_ENABLED'] = '1'
+
+# 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 'SessionReplayReactNativeExample' 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|
+ react_native_post_install(
+ installer,
+ config[:reactNativePath],
+ :mac_catalyst_enabled => false,
+ # :ccache_enabled => true
+ )
+ end
+end
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/ios/Podfile.lock b/sdk/@launchdarkly/react-native-ld-session-replay/example/ios/Podfile.lock
new file mode 100644
index 000000000..a1c69ae8c
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/example/ios/Podfile.lock
@@ -0,0 +1,2811 @@
+PODS:
+ - boost (1.84.0)
+ - DoubleConversion (1.1.6)
+ - fast_float (8.0.0)
+ - FBLazyVector (0.83.0)
+ - fmt (11.0.2)
+ - glog (0.3.5)
+ - hermes-engine (0.14.0):
+ - hermes-engine/Pre-built (= 0.14.0)
+ - hermes-engine/Pre-built (0.14.0)
+ - RCT-Folly (2024.11.18.00):
+ - boost
+ - DoubleConversion
+ - fast_float (= 8.0.0)
+ - fmt (= 11.0.2)
+ - glog
+ - RCT-Folly/Default (= 2024.11.18.00)
+ - RCT-Folly/Default (2024.11.18.00):
+ - boost
+ - DoubleConversion
+ - fast_float (= 8.0.0)
+ - fmt (= 11.0.2)
+ - glog
+ - RCT-Folly/Fabric (2024.11.18.00):
+ - boost
+ - DoubleConversion
+ - fast_float (= 8.0.0)
+ - fmt (= 11.0.2)
+ - glog
+ - RCTDeprecation (0.83.0)
+ - RCTRequired (0.83.0)
+ - RCTSwiftUI (0.83.0)
+ - RCTSwiftUIWrapper (0.83.0):
+ - RCTSwiftUI
+ - RCTTypeSafety (0.83.0):
+ - FBLazyVector (= 0.83.0)
+ - RCTRequired (= 0.83.0)
+ - React-Core (= 0.83.0)
+ - React (0.83.0):
+ - React-Core (= 0.83.0)
+ - React-Core/DevSupport (= 0.83.0)
+ - React-Core/RCTWebSocket (= 0.83.0)
+ - React-RCTActionSheet (= 0.83.0)
+ - React-RCTAnimation (= 0.83.0)
+ - React-RCTBlob (= 0.83.0)
+ - React-RCTImage (= 0.83.0)
+ - React-RCTLinking (= 0.83.0)
+ - React-RCTNetwork (= 0.83.0)
+ - React-RCTSettings (= 0.83.0)
+ - React-RCTText (= 0.83.0)
+ - React-RCTVibration (= 0.83.0)
+ - React-callinvoker (0.83.0)
+ - React-Core (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTDeprecation
+ - React-Core/Default (= 0.83.0)
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-jsinspectorcdp
+ - React-jsitooling
+ - React-perflogger
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket
+ - Yoga
+ - React-Core/CoreModulesHeaders (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTDeprecation
+ - React-Core/Default
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-jsinspectorcdp
+ - React-jsitooling
+ - React-perflogger
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket
+ - Yoga
+ - React-Core/Default (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTDeprecation
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-jsinspectorcdp
+ - React-jsitooling
+ - React-perflogger
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket
+ - Yoga
+ - React-Core/DevSupport (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTDeprecation
+ - React-Core/Default (= 0.83.0)
+ - React-Core/RCTWebSocket (= 0.83.0)
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-jsinspectorcdp
+ - React-jsitooling
+ - React-perflogger
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket
+ - Yoga
+ - React-Core/RCTActionSheetHeaders (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTDeprecation
+ - React-Core/Default
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-jsinspectorcdp
+ - React-jsitooling
+ - React-perflogger
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket
+ - Yoga
+ - React-Core/RCTAnimationHeaders (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTDeprecation
+ - React-Core/Default
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-jsinspectorcdp
+ - React-jsitooling
+ - React-perflogger
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket
+ - Yoga
+ - React-Core/RCTBlobHeaders (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTDeprecation
+ - React-Core/Default
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-jsinspectorcdp
+ - React-jsitooling
+ - React-perflogger
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket
+ - Yoga
+ - React-Core/RCTImageHeaders (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTDeprecation
+ - React-Core/Default
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-jsinspectorcdp
+ - React-jsitooling
+ - React-perflogger
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket
+ - Yoga
+ - React-Core/RCTLinkingHeaders (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTDeprecation
+ - React-Core/Default
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-jsinspectorcdp
+ - React-jsitooling
+ - React-perflogger
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket
+ - Yoga
+ - React-Core/RCTNetworkHeaders (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTDeprecation
+ - React-Core/Default
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-jsinspectorcdp
+ - React-jsitooling
+ - React-perflogger
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket
+ - Yoga
+ - React-Core/RCTSettingsHeaders (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTDeprecation
+ - React-Core/Default
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-jsinspectorcdp
+ - React-jsitooling
+ - React-perflogger
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket
+ - Yoga
+ - React-Core/RCTTextHeaders (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTDeprecation
+ - React-Core/Default
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-jsinspectorcdp
+ - React-jsitooling
+ - React-perflogger
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket
+ - Yoga
+ - React-Core/RCTVibrationHeaders (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTDeprecation
+ - React-Core/Default
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-jsinspectorcdp
+ - React-jsitooling
+ - React-perflogger
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket
+ - Yoga
+ - React-Core/RCTWebSocket (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTDeprecation
+ - React-Core/Default (= 0.83.0)
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-jsinspectorcdp
+ - React-jsitooling
+ - React-perflogger
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket
+ - Yoga
+ - React-CoreModules (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTTypeSafety (= 0.83.0)
+ - React-Core/CoreModulesHeaders (= 0.83.0)
+ - React-debug
+ - React-jsi (= 0.83.0)
+ - React-jsinspector
+ - React-jsinspectorcdp
+ - React-jsinspectortracing
+ - React-NativeModulesApple
+ - React-RCTBlob
+ - React-RCTFBReactNativeSpec
+ - React-RCTImage (= 0.83.0)
+ - React-runtimeexecutor
+ - React-utils
+ - ReactCommon
+ - SocketRocket
+ - React-cxxreact (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-callinvoker (= 0.83.0)
+ - React-debug (= 0.83.0)
+ - React-jsi (= 0.83.0)
+ - React-jsinspector
+ - React-jsinspectorcdp
+ - React-jsinspectortracing
+ - React-logger (= 0.83.0)
+ - React-perflogger (= 0.83.0)
+ - React-runtimeexecutor
+ - React-timing (= 0.83.0)
+ - React-utils
+ - SocketRocket
+ - React-debug (0.83.0)
+ - React-defaultsnativemodule (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-domnativemodule
+ - React-featureflags
+ - React-featureflagsnativemodule
+ - React-idlecallbacksnativemodule
+ - React-intersectionobservernativemodule
+ - React-jsi
+ - React-jsiexecutor
+ - React-microtasksnativemodule
+ - React-RCTFBReactNativeSpec
+ - React-webperformancenativemodule
+ - SocketRocket
+ - Yoga
+ - React-domnativemodule (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-Fabric
+ - React-Fabric/bridging
+ - React-FabricComponents
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-RCTFBReactNativeSpec
+ - React-runtimeexecutor
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - Yoga
+ - React-Fabric (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric/animated (= 0.83.0)
+ - React-Fabric/animationbackend (= 0.83.0)
+ - React-Fabric/animations (= 0.83.0)
+ - React-Fabric/attributedstring (= 0.83.0)
+ - React-Fabric/bridging (= 0.83.0)
+ - React-Fabric/componentregistry (= 0.83.0)
+ - React-Fabric/componentregistrynative (= 0.83.0)
+ - React-Fabric/components (= 0.83.0)
+ - React-Fabric/consistency (= 0.83.0)
+ - React-Fabric/core (= 0.83.0)
+ - React-Fabric/dom (= 0.83.0)
+ - React-Fabric/imagemanager (= 0.83.0)
+ - React-Fabric/leakchecker (= 0.83.0)
+ - React-Fabric/mounting (= 0.83.0)
+ - React-Fabric/observers (= 0.83.0)
+ - React-Fabric/scheduler (= 0.83.0)
+ - React-Fabric/telemetry (= 0.83.0)
+ - React-Fabric/templateprocessor (= 0.83.0)
+ - React-Fabric/uimanager (= 0.83.0)
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - React-Fabric/animated (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - React-Fabric/animationbackend (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - React-Fabric/animations (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - React-Fabric/attributedstring (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - React-Fabric/bridging (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - React-Fabric/componentregistry (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - React-Fabric/componentregistrynative (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - React-Fabric/components (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric/components/legacyviewmanagerinterop (= 0.83.0)
+ - React-Fabric/components/root (= 0.83.0)
+ - React-Fabric/components/scrollview (= 0.83.0)
+ - React-Fabric/components/view (= 0.83.0)
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - React-Fabric/components/legacyviewmanagerinterop (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - React-Fabric/components/root (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - React-Fabric/components/scrollview (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - React-Fabric/components/view (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-renderercss
+ - React-rendererdebug
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - Yoga
+ - React-Fabric/consistency (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - React-Fabric/core (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - React-Fabric/dom (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - React-Fabric/imagemanager (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - React-Fabric/leakchecker (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - React-Fabric/mounting (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - React-Fabric/observers (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric/observers/events (= 0.83.0)
+ - React-Fabric/observers/intersection (= 0.83.0)
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - React-Fabric/observers/events (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - React-Fabric/observers/intersection (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - React-Fabric/scheduler (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric/observers/events
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-performancecdpmetrics
+ - React-performancetimeline
+ - React-rendererdebug
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - React-Fabric/telemetry (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - React-Fabric/templateprocessor (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - React-Fabric/uimanager (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric/uimanager/consistency (= 0.83.0)
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererconsistency
+ - React-rendererdebug
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - React-Fabric/uimanager/consistency (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererconsistency
+ - React-rendererdebug
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - React-FabricComponents (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-FabricComponents/components (= 0.83.0)
+ - React-FabricComponents/textlayoutmanager (= 0.83.0)
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-RCTFBReactNativeSpec
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - Yoga
+ - React-FabricComponents/components (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-FabricComponents/components/inputaccessory (= 0.83.0)
+ - React-FabricComponents/components/iostextinput (= 0.83.0)
+ - React-FabricComponents/components/modal (= 0.83.0)
+ - React-FabricComponents/components/rncore (= 0.83.0)
+ - React-FabricComponents/components/safeareaview (= 0.83.0)
+ - React-FabricComponents/components/scrollview (= 0.83.0)
+ - React-FabricComponents/components/switch (= 0.83.0)
+ - React-FabricComponents/components/text (= 0.83.0)
+ - React-FabricComponents/components/textinput (= 0.83.0)
+ - React-FabricComponents/components/unimplementedview (= 0.83.0)
+ - React-FabricComponents/components/virtualview (= 0.83.0)
+ - React-FabricComponents/components/virtualviewexperimental (= 0.83.0)
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-RCTFBReactNativeSpec
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - Yoga
+ - React-FabricComponents/components/inputaccessory (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-RCTFBReactNativeSpec
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - Yoga
+ - React-FabricComponents/components/iostextinput (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-RCTFBReactNativeSpec
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - Yoga
+ - React-FabricComponents/components/modal (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-RCTFBReactNativeSpec
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - Yoga
+ - React-FabricComponents/components/rncore (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-RCTFBReactNativeSpec
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - Yoga
+ - React-FabricComponents/components/safeareaview (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-RCTFBReactNativeSpec
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - Yoga
+ - React-FabricComponents/components/scrollview (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-RCTFBReactNativeSpec
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - Yoga
+ - React-FabricComponents/components/switch (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-RCTFBReactNativeSpec
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - Yoga
+ - React-FabricComponents/components/text (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-RCTFBReactNativeSpec
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - Yoga
+ - React-FabricComponents/components/textinput (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-RCTFBReactNativeSpec
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - Yoga
+ - React-FabricComponents/components/unimplementedview (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-RCTFBReactNativeSpec
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - Yoga
+ - React-FabricComponents/components/virtualview (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-RCTFBReactNativeSpec
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - Yoga
+ - React-FabricComponents/components/virtualviewexperimental (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-RCTFBReactNativeSpec
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - Yoga
+ - React-FabricComponents/textlayoutmanager (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-RCTFBReactNativeSpec
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - Yoga
+ - React-FabricImage (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired (= 0.83.0)
+ - RCTTypeSafety (= 0.83.0)
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-jsiexecutor (= 0.83.0)
+ - React-logger
+ - React-rendererdebug
+ - React-utils
+ - ReactCommon
+ - SocketRocket
+ - Yoga
+ - React-featureflags (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - SocketRocket
+ - React-featureflagsnativemodule (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-featureflags
+ - React-jsi
+ - React-jsiexecutor
+ - React-RCTFBReactNativeSpec
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - React-graphics (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-jsi
+ - React-jsiexecutor
+ - React-utils
+ - SocketRocket
+ - React-hermes (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-cxxreact (= 0.83.0)
+ - React-jsi
+ - React-jsiexecutor (= 0.83.0)
+ - React-jsinspector
+ - React-jsinspectorcdp
+ - React-jsinspectortracing
+ - React-oscompat
+ - React-perflogger (= 0.83.0)
+ - React-runtimeexecutor
+ - SocketRocket
+ - React-idlecallbacksnativemodule (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-jsi
+ - React-jsiexecutor
+ - React-RCTFBReactNativeSpec
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - React-ImageManager (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-Core/Default
+ - React-debug
+ - React-Fabric
+ - React-graphics
+ - React-rendererdebug
+ - React-utils
+ - SocketRocket
+ - React-intersectionobservernativemodule (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-cxxreact
+ - React-Fabric
+ - React-Fabric/bridging
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-RCTFBReactNativeSpec
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - Yoga
+ - React-jserrorhandler (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-jsi
+ - ReactCommon/turbomodule/bridging
+ - SocketRocket
+ - React-jsi (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - SocketRocket
+ - React-jsiexecutor (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-cxxreact
+ - React-debug
+ - React-jsi
+ - React-jsinspector
+ - React-jsinspectorcdp
+ - React-jsinspectortracing
+ - React-perflogger
+ - React-runtimeexecutor
+ - React-utils
+ - SocketRocket
+ - React-jsinspector (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-featureflags
+ - React-jsi
+ - React-jsinspectorcdp
+ - React-jsinspectornetwork
+ - React-jsinspectortracing
+ - React-oscompat
+ - React-perflogger (= 0.83.0)
+ - React-runtimeexecutor
+ - React-utils
+ - SocketRocket
+ - React-jsinspectorcdp (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - SocketRocket
+ - React-jsinspectornetwork (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-jsinspectorcdp
+ - SocketRocket
+ - React-jsinspectortracing (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-jsi
+ - React-jsinspectornetwork
+ - React-oscompat
+ - React-timing
+ - SocketRocket
+ - React-jsitooling (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-cxxreact (= 0.83.0)
+ - React-debug
+ - React-jsi (= 0.83.0)
+ - React-jsinspector
+ - React-jsinspectorcdp
+ - React-jsinspectortracing
+ - React-runtimeexecutor
+ - React-utils
+ - SocketRocket
+ - React-jsitracing (0.83.0):
+ - React-jsi
+ - React-logger (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - SocketRocket
+ - React-Mapbuffer (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-debug
+ - SocketRocket
+ - React-microtasksnativemodule (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-jsi
+ - React-jsiexecutor
+ - React-RCTFBReactNativeSpec
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - React-NativeModulesApple (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-callinvoker
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-jsi
+ - React-jsinspector
+ - React-jsinspectorcdp
+ - React-runtimeexecutor
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - React-networking (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-featureflags
+ - React-jsinspectornetwork
+ - React-jsinspectortracing
+ - React-performancetimeline
+ - React-timing
+ - SocketRocket
+ - React-oscompat (0.83.0)
+ - React-perflogger (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - SocketRocket
+ - React-performancecdpmetrics (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-jsi
+ - React-performancetimeline
+ - React-runtimeexecutor
+ - React-timing
+ - SocketRocket
+ - React-performancetimeline (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-featureflags
+ - React-jsinspectortracing
+ - React-perflogger
+ - React-timing
+ - SocketRocket
+ - React-RCTActionSheet (0.83.0):
+ - React-Core/RCTActionSheetHeaders (= 0.83.0)
+ - React-RCTAnimation (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTTypeSafety
+ - React-Core/RCTAnimationHeaders
+ - React-featureflags
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFBReactNativeSpec
+ - ReactCommon
+ - SocketRocket
+ - React-RCTAppDelegate (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-CoreModules
+ - React-debug
+ - React-defaultsnativemodule
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-hermes
+ - React-jsitooling
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-RCTFBReactNativeSpec
+ - React-RCTImage
+ - React-RCTNetwork
+ - React-RCTRuntime
+ - React-rendererdebug
+ - React-RuntimeApple
+ - React-RuntimeCore
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon
+ - SocketRocket
+ - React-RCTBlob (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-Core/RCTBlobHeaders
+ - React-Core/RCTWebSocket
+ - React-jsi
+ - React-jsinspector
+ - React-jsinspectorcdp
+ - React-NativeModulesApple
+ - React-RCTFBReactNativeSpec
+ - React-RCTNetwork
+ - ReactCommon
+ - SocketRocket
+ - React-RCTFabric (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTSwiftUIWrapper
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-FabricComponents
+ - React-FabricImage
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-jsinspector
+ - React-jsinspectorcdp
+ - React-jsinspectortracing
+ - React-networking
+ - React-performancecdpmetrics
+ - React-performancetimeline
+ - React-RCTAnimation
+ - React-RCTFBReactNativeSpec
+ - React-RCTImage
+ - React-RCTText
+ - React-rendererconsistency
+ - React-renderercss
+ - React-rendererdebug
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket
+ - Yoga
+ - React-RCTFBReactNativeSpec (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFBReactNativeSpec/components (= 0.83.0)
+ - ReactCommon
+ - SocketRocket
+ - React-RCTFBReactNativeSpec/components (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-NativeModulesApple
+ - React-rendererdebug
+ - React-utils
+ - ReactCommon
+ - SocketRocket
+ - Yoga
+ - React-RCTImage (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTTypeSafety
+ - React-Core/RCTImageHeaders
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFBReactNativeSpec
+ - React-RCTNetwork
+ - ReactCommon
+ - SocketRocket
+ - React-RCTLinking (0.83.0):
+ - React-Core/RCTLinkingHeaders (= 0.83.0)
+ - React-jsi (= 0.83.0)
+ - React-NativeModulesApple
+ - React-RCTFBReactNativeSpec
+ - ReactCommon
+ - ReactCommon/turbomodule/core (= 0.83.0)
+ - React-RCTNetwork (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTTypeSafety
+ - React-Core/RCTNetworkHeaders
+ - React-debug
+ - React-featureflags
+ - React-jsi
+ - React-jsinspectorcdp
+ - React-jsinspectornetwork
+ - React-NativeModulesApple
+ - React-networking
+ - React-RCTFBReactNativeSpec
+ - ReactCommon
+ - SocketRocket
+ - React-RCTRuntime (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-Core
+ - React-debug
+ - React-jsi
+ - React-jsinspector
+ - React-jsinspectorcdp
+ - React-jsinspectortracing
+ - React-jsitooling
+ - React-RuntimeApple
+ - React-RuntimeCore
+ - React-runtimeexecutor
+ - React-RuntimeHermes
+ - React-utils
+ - SocketRocket
+ - React-RCTSettings (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTTypeSafety
+ - React-Core/RCTSettingsHeaders
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFBReactNativeSpec
+ - ReactCommon
+ - SocketRocket
+ - React-RCTText (0.83.0):
+ - React-Core/RCTTextHeaders (= 0.83.0)
+ - Yoga
+ - React-RCTVibration (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-Core/RCTVibrationHeaders
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFBReactNativeSpec
+ - ReactCommon
+ - SocketRocket
+ - React-rendererconsistency (0.83.0)
+ - React-renderercss (0.83.0):
+ - React-debug
+ - React-utils
+ - React-rendererdebug (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-debug
+ - SocketRocket
+ - React-RuntimeApple (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-callinvoker
+ - React-Core/Default
+ - React-CoreModules
+ - React-cxxreact
+ - React-featureflags
+ - React-jserrorhandler
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-jsitooling
+ - React-Mapbuffer
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-RCTFBReactNativeSpec
+ - React-RuntimeCore
+ - React-runtimeexecutor
+ - React-RuntimeHermes
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket
+ - React-RuntimeCore (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-cxxreact
+ - React-Fabric
+ - React-featureflags
+ - React-jserrorhandler
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-jsitooling
+ - React-performancetimeline
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket
+ - React-runtimeexecutor (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-debug
+ - React-featureflags
+ - React-jsi (= 0.83.0)
+ - React-utils
+ - SocketRocket
+ - React-RuntimeHermes (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsinspector
+ - React-jsinspectorcdp
+ - React-jsinspectortracing
+ - React-jsitooling
+ - React-jsitracing
+ - React-RuntimeCore
+ - React-runtimeexecutor
+ - React-utils
+ - SocketRocket
+ - React-runtimescheduler (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-callinvoker
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-jsi
+ - React-jsinspectortracing
+ - React-performancetimeline
+ - React-rendererconsistency
+ - React-rendererdebug
+ - React-runtimeexecutor
+ - React-timing
+ - React-utils
+ - SocketRocket
+ - React-timing (0.83.0):
+ - React-debug
+ - React-utils (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-debug
+ - React-jsi (= 0.83.0)
+ - SocketRocket
+ - React-webperformancenativemodule (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-cxxreact
+ - React-jsi
+ - React-jsiexecutor
+ - React-performancetimeline
+ - React-RCTFBReactNativeSpec
+ - React-runtimeexecutor
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - ReactAppDependencyProvider (0.83.0):
+ - ReactCodegen
+ - ReactCodegen (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - 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
+ - SocketRocket
+ - ReactCommon (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - ReactCommon/turbomodule (= 0.83.0)
+ - SocketRocket
+ - ReactCommon/turbomodule (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-callinvoker (= 0.83.0)
+ - React-cxxreact (= 0.83.0)
+ - React-jsi (= 0.83.0)
+ - React-logger (= 0.83.0)
+ - React-perflogger (= 0.83.0)
+ - ReactCommon/turbomodule/bridging (= 0.83.0)
+ - ReactCommon/turbomodule/core (= 0.83.0)
+ - SocketRocket
+ - ReactCommon/turbomodule/bridging (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-callinvoker (= 0.83.0)
+ - React-cxxreact (= 0.83.0)
+ - React-jsi (= 0.83.0)
+ - React-logger (= 0.83.0)
+ - React-perflogger (= 0.83.0)
+ - SocketRocket
+ - ReactCommon/turbomodule/core (0.83.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - React-callinvoker (= 0.83.0)
+ - React-cxxreact (= 0.83.0)
+ - React-debug (= 0.83.0)
+ - React-featureflags (= 0.83.0)
+ - React-jsi (= 0.83.0)
+ - React-logger (= 0.83.0)
+ - React-perflogger (= 0.83.0)
+ - React-utils (= 0.83.0)
+ - SocketRocket
+ - SessionReplayReactNative (0.1.0):
+ - boost
+ - DoubleConversion
+ - fast_float
+ - fmt
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCT-Folly/Fabric
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-renderercss
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - SocketRocket
+ - Yoga
+ - 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`)
+ - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
+ - RCTDeprecation (from `../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation`)
+ - RCTRequired (from `../node_modules/react-native/Libraries/Required`)
+ - RCTSwiftUI (from `../node_modules/react-native/ReactApple/RCTSwiftUI`)
+ - RCTSwiftUIWrapper (from `../node_modules/react-native/ReactApple/RCTSwiftUIWrapper`)
+ - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
+ - React (from `../node_modules/react-native/`)
+ - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
+ - 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-intersectionobservernativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/intersectionobserver`)
+ - React-jserrorhandler (from `../node_modules/react-native/ReactCommon/jserrorhandler`)
+ - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
+ - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
+ - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector-modern`)
+ - React-jsinspectorcdp (from `../node_modules/react-native/ReactCommon/jsinspector-modern/cdp`)
+ - React-jsinspectornetwork (from `../node_modules/react-native/ReactCommon/jsinspector-modern/network`)
+ - React-jsinspectortracing (from `../node_modules/react-native/ReactCommon/jsinspector-modern/tracing`)
+ - React-jsitooling (from `../node_modules/react-native/ReactCommon/jsitooling`)
+ - React-jsitracing (from `../node_modules/react-native/ReactCommon/hermes/executor/`)
+ - 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-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)
+ - React-networking (from `../node_modules/react-native/ReactCommon/react/networking`)
+ - React-oscompat (from `../node_modules/react-native/ReactCommon/oscompat`)
+ - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
+ - React-performancecdpmetrics (from `../node_modules/react-native/ReactCommon/react/performance/cdpmetrics`)
+ - React-performancetimeline (from `../node_modules/react-native/ReactCommon/react/performance/timeline`)
+ - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
+ - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
+ - 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-RCTRuntime (from `../node_modules/react-native/React/Runtime`)
+ - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
+ - React-RCTText (from `../node_modules/react-native/Libraries/Text`)
+ - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
+ - React-rendererconsistency (from `../node_modules/react-native/ReactCommon/react/renderer/consistency`)
+ - React-renderercss (from `../node_modules/react-native/ReactCommon/react/renderer/css`)
+ - React-rendererdebug (from `../node_modules/react-native/ReactCommon/react/renderer/debug`)
+ - React-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`)
+ - React-webperformancenativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/webperformance`)
+ - ReactAppDependencyProvider (from `build/generated/ios/ReactAppDependencyProvider`)
+ - ReactCodegen (from `build/generated/ios/ReactCodegen`)
+ - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
+ - SessionReplayReactNative (from `../..`)
+ - SocketRocket (~> 0.7.1)
+ - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
+
+SPEC REPOS:
+ trunk:
+ - 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-v0.14.0
+ 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"
+ RCTSwiftUI:
+ :path: "../node_modules/react-native/ReactApple/RCTSwiftUI"
+ RCTSwiftUIWrapper:
+ :path: "../node_modules/react-native/ReactApple/RCTSwiftUIWrapper"
+ RCTTypeSafety:
+ :path: "../node_modules/react-native/Libraries/TypeSafety"
+ React:
+ :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-intersectionobservernativemodule:
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/intersectionobserver"
+ 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-jsinspectorcdp:
+ :path: "../node_modules/react-native/ReactCommon/jsinspector-modern/cdp"
+ React-jsinspectornetwork:
+ :path: "../node_modules/react-native/ReactCommon/jsinspector-modern/network"
+ React-jsinspectortracing:
+ :path: "../node_modules/react-native/ReactCommon/jsinspector-modern/tracing"
+ React-jsitooling:
+ :path: "../node_modules/react-native/ReactCommon/jsitooling"
+ React-jsitracing:
+ :path: "../node_modules/react-native/ReactCommon/hermes/executor/"
+ React-logger:
+ :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-NativeModulesApple:
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios"
+ React-networking:
+ :path: "../node_modules/react-native/ReactCommon/react/networking"
+ React-oscompat:
+ :path: "../node_modules/react-native/ReactCommon/oscompat"
+ React-perflogger:
+ :path: "../node_modules/react-native/ReactCommon/reactperflogger"
+ React-performancecdpmetrics:
+ :path: "../node_modules/react-native/ReactCommon/react/performance/cdpmetrics"
+ React-performancetimeline:
+ :path: "../node_modules/react-native/ReactCommon/react/performance/timeline"
+ React-RCTActionSheet:
+ :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-RCTRuntime:
+ :path: "../node_modules/react-native/React/Runtime"
+ 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-renderercss:
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/css"
+ React-rendererdebug:
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/debug"
+ 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"
+ React-webperformancenativemodule:
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/webperformance"
+ ReactAppDependencyProvider:
+ :path: build/generated/ios/ReactAppDependencyProvider
+ ReactCodegen:
+ :path: build/generated/ios/ReactCodegen
+ ReactCommon:
+ :path: "../node_modules/react-native/ReactCommon"
+ SessionReplayReactNative:
+ :path: "../.."
+ Yoga:
+ :path: "../node_modules/react-native/ReactCommon/yoga"
+
+SPEC CHECKSUMS:
+ boost: 7e761d76ca2ce687f7cc98e698152abd03a18f90
+ DoubleConversion: cb417026b2400c8f53ae97020b2be961b59470cb
+ fast_float: b32c788ed9c6a8c584d114d0047beda9664e7cc6
+ FBLazyVector: a293a88992c4c33f0aee184acab0b64a08ff9458
+ fmt: a40bb5bd0294ea969aaaba240a927bd33d878cdd
+ glog: 5683914934d5b6e4240e497e0f4a3b42d1854183
+ hermes-engine: 87995678d6363a06b44bb25e94d2781cef50aef1
+ RCT-Folly: 846fda9475e61ec7bcbf8a3fe81edfcaeb090669
+ RCTDeprecation: 2b70c6e3abe00396cefd8913efbf6a2db01a2b36
+ RCTRequired: f3540eee8094231581d40c5c6d41b0f170237a81
+ RCTSwiftUI: 5928f7ca7e9e2f1a82d85d4c79ea3065137ad81c
+ RCTSwiftUIWrapper: 8ff2f9da84b47db66d11ece1589d8e5515c0ab8b
+ RCTTypeSafety: 6359ff3fcbe18c52059f4d4ce301e47f9da5f0d5
+ React: f6f8fc5c01e77349cdfaf49102bcb928ac31d8ed
+ React-callinvoker: 032b6d1d03654b9fb7de9e2b3b978d3cb1a893ad
+ React-Core: 418c9278f8a071b44a88a87be9a4943234cc2e77
+ React-CoreModules: 925b8cb677649f967f6000f9b1ef74dc4ff60c30
+ React-cxxreact: 21f6f0cb2a7d26fbed4d09e04482e5c75662beaf
+ React-debug: 8fc21f2fecd3d6244e988dc55d60cb117d122588
+ React-defaultsnativemodule: 05c6115a2d3a7f4a2cc3f96022261570700dbfa5
+ React-domnativemodule: f19d7fd59facf19a4e6cb75bf48357c329acaea7
+ React-Fabric: 94acdbc0b889bdcec2d5b1a90ae48f1032c5a5a1
+ React-FabricComponents: 9754fb783979b88fb82ed3d0c50ae5f5d775a86f
+ React-FabricImage: d8f5bcb5006eafc0e2262c11bf4dedaa610fd66c
+ React-featureflags: 8bd4abaf8adf3cf5cc115f128e8761fd3d95b848
+ React-featureflagsnativemodule: 0062ca1dc92cb5aae22df8aed4e8f261759cb3bd
+ React-graphics: 318048b8f98e040c093adcb77ffeb46d78961c30
+ React-hermes: 05ca52f53557a31b8ef8bac8f94c3f9db1ff00ed
+ React-idlecallbacksnativemodule: d3c5ba0150555ce9b7db85008aeb170a02bbf2d8
+ React-ImageManager: 225b19fcb16fd353851d664c344025a6d4d79870
+ React-intersectionobservernativemodule: d490ebd28572754dfdad4a8d0771573345b1ec92
+ React-jserrorhandler: caafb9c1d42c24422829e71e8178de3dd1c7ea12
+ React-jsi: 749de748ad3b760011255326c63bf7b7dd6f8f9d
+ React-jsiexecutor: 02a5ee45bffcae98197eaa253fbf13b65c95073d
+ React-jsinspector: 4a031b0605009d4bcd079c99df85eb55d142cd12
+ React-jsinspectorcdp: 6d25166ec876053b7b6e290eb57f41a9f9496846
+ React-jsinspectornetwork: 5c481d208eade7a338f545b2645a2cf134fdf265
+ React-jsinspectortracing: b4d2404ecd64a0dd65e2746d9867fbc3a7cd0927
+ React-jsitooling: e0d93e78a5a231e4089459ddbed8d4844be9e238
+ React-jsitracing: f3c4aae144b86799e9e23eb5ef16bae6b474d4e2
+ React-logger: 9e597cbeda7b8cc8aa8fb93860dade97190f69cc
+ React-Mapbuffer: 20046c0447efaa7aace0b76085aa9bb35b0e8105
+ React-microtasksnativemodule: 0e837de56519c92d8a2e3097717df9497feb33cb
+ React-NativeModulesApple: 1a378198515f8e825c5931a7613e98da69320cee
+ React-networking: bfd1695ada5a57023006ce05823ac5391c3ce072
+ React-oscompat: aedc0afbded67280de6bb6bfac8cfde0389e2b33
+ React-perflogger: c174462de00c0b7d768f0b2d61b8e2240717a667
+ React-performancecdpmetrics: 2607a034407d55049f1820b7ec86db1efd3d22e1
+ React-performancetimeline: 6ebdcdf745dbe372508ad7164e732362e7eeae6f
+ React-RCTActionSheet: 175c74d343e92793d3187b3a819d565f534e0b1d
+ React-RCTAnimation: d67919cddb7da39c949b8010b4fd4ea39815fe4e
+ React-RCTAppDelegate: 5f7b1e4b7ee5a44faf5f9518a7d3cabafb801adf
+ React-RCTBlob: 7ceb93e0918511163f036cfd295973f132a2bc57
+ React-RCTFabric: f2250d34e1143c659b845af7e369b3f8f015950c
+ React-RCTFBReactNativeSpec: b0fc0c9c8adaf8b9183f9e9fb5455ca5deedc7a0
+ React-RCTImage: d6297035168312fc3089f8ca0ee7a75216f21715
+ React-RCTLinking: 619a2553c4ef83acaccfb551ada1b7d45cf1cce3
+ React-RCTNetwork: 7df41788a194dc5b628f58db6a765224b6b37eac
+ React-RCTRuntime: f75ec08d991c611f1d74154dfeb852e30b1825dd
+ React-RCTSettings: fa7882ce3d73f1e3482fe05f9cb3167a35a60869
+ React-RCTText: 4d659598d9b7730343d465c43d97b3f4aad13938
+ React-RCTVibration: 968c3184bfe5005bedd86c913a3b52438222e3a4
+ React-rendererconsistency: 1204c62facf6168b69bc5022e0020f19c92f138e
+ React-renderercss: 36c02a3c55402fdb06226c2ef04d82fc06c4e2fc
+ React-rendererdebug: 11b54233498d961d939d2f2ec6c640d44efa3c12
+ React-RuntimeApple: 5287d92680f4b08c8e882afe9791a41eab69d4a7
+ React-RuntimeCore: 402b658d8e9cefb44824624e39a0804f2237e205
+ React-runtimeexecutor: a1ce75c4e153ede11be957ef31bb72eef9cc4daf
+ React-RuntimeHermes: c987b19a1284c685062d3eaad79fd9300a3aa82f
+ React-runtimescheduler: a12722da46f562626f5897edf9b8fa02219de065
+ React-timing: a453a65192dbe400d61d299024e95a302e726661
+ React-utils: 43479e74f806f6633ee04c212c48811530041170
+ React-webperformancenativemodule: bd1ad71ea9e217e55f66233e99d02581ee3d5cb7
+ ReactAppDependencyProvider: ebcf3a78dc1bcdf054c9e8d309244bade6b31568
+ ReactCodegen: 11c08ff43a62009d48c71de000352e4515918801
+ ReactCommon: 424cc34cf5055d69a3dcf02f3436481afb8b0f6f
+ SessionReplayReactNative: 8f3745007cd1336b7728ee577ac3230f1bb4582a
+ SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748
+ Yoga: 6ca93c8c13f56baeec55eb608577619b17a4d64e
+
+PODFILE CHECKSUM: 53fee6f649d87604b0c5ad827154b6c454d1a29a
+
+COCOAPODS: 1.15.2
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/ios/SessionReplayReactNativeExample.xcodeproj/project.pbxproj b/sdk/@launchdarkly/react-native-ld-session-replay/example/ios/SessionReplayReactNativeExample.xcodeproj/project.pbxproj
new file mode 100644
index 000000000..d79bc5e2f
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/example/ios/SessionReplayReactNativeExample.xcodeproj/project.pbxproj
@@ -0,0 +1,480 @@
+// !$*UTF8*$!
+{
+ archiveVersion = 1;
+ classes = {
+ };
+ objectVersion = 54;
+ objects = {
+
+/* Begin PBXBuildFile section */
+ 0C80B921A6F3F58F76C31292 /* libPods-SessionReplayReactNativeExample.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-SessionReplayReactNativeExample.a */; };
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
+ 6926ECDA2008F7F25A1D59F7 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */; };
+ 761780ED2CA45674006654EE /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 761780EC2CA45674006654EE /* AppDelegate.swift */; };
+ 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
+/* End PBXBuildFile section */
+
+/* Begin PBXFileReference section */
+ 13B07F961A680F5B00A75B9A /* SessionReplayReactNativeExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = SessionReplayReactNativeExample.app; sourceTree = BUILT_PRODUCTS_DIR; };
+ 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = SessionReplayReactNativeExample/Images.xcassets; sourceTree = ""; };
+ 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = SessionReplayReactNativeExample/Info.plist; sourceTree = ""; };
+ 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = PrivacyInfo.xcprivacy; path = SessionReplayReactNativeExample/PrivacyInfo.xcprivacy; sourceTree = ""; };
+ 3B4392A12AC88292D35C810B /* Pods-SessionReplayReactNativeExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SessionReplayReactNativeExample.debug.xcconfig"; path = "Target Support Files/Pods-SessionReplayReactNativeExample/Pods-SessionReplayReactNativeExample.debug.xcconfig"; sourceTree = ""; };
+ 5709B34CF0A7D63546082F79 /* Pods-SessionReplayReactNativeExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SessionReplayReactNativeExample.release.xcconfig"; path = "Target Support Files/Pods-SessionReplayReactNativeExample/Pods-SessionReplayReactNativeExample.release.xcconfig"; sourceTree = ""; };
+ 5DCACB8F33CDC322A6C60F78 /* libPods-SessionReplayReactNativeExample.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-SessionReplayReactNativeExample.a"; sourceTree = BUILT_PRODUCTS_DIR; };
+ 761780EC2CA45674006654EE /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = SessionReplayReactNativeExample/AppDelegate.swift; sourceTree = ""; };
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = SessionReplayReactNativeExample/LaunchScreen.storyboard; 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 = (
+ 0C80B921A6F3F58F76C31292 /* libPods-SessionReplayReactNativeExample.a in Frameworks */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXFrameworksBuildPhase section */
+
+/* Begin PBXGroup section */
+ 13B07FAE1A68108700A75B9A /* SessionReplayReactNativeExample */ = {
+ isa = PBXGroup;
+ children = (
+ 13B07FB51A68108700A75B9A /* Images.xcassets */,
+ 761780EC2CA45674006654EE /* AppDelegate.swift */,
+ 13B07FB61A68108700A75B9A /* Info.plist */,
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
+ 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */,
+ );
+ name = SessionReplayReactNativeExample;
+ sourceTree = "";
+ };
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
+ isa = PBXGroup;
+ children = (
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
+ 5DCACB8F33CDC322A6C60F78 /* libPods-SessionReplayReactNativeExample.a */,
+ );
+ name = Frameworks;
+ sourceTree = "";
+ };
+ 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
+ isa = PBXGroup;
+ children = (
+ );
+ name = Libraries;
+ sourceTree = "";
+ };
+ 83CBB9F61A601CBA00E9B192 = {
+ isa = PBXGroup;
+ children = (
+ 13B07FAE1A68108700A75B9A /* SessionReplayReactNativeExample */,
+ 832341AE1AAA6A7D00B99B32 /* Libraries */,
+ 83CBBA001A601CBA00E9B192 /* Products */,
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */,
+ BBD78D7AC51CEA395F1C20DB /* Pods */,
+ );
+ indentWidth = 2;
+ sourceTree = "";
+ tabWidth = 2;
+ usesTabs = 0;
+ };
+ 83CBBA001A601CBA00E9B192 /* Products */ = {
+ isa = PBXGroup;
+ children = (
+ 13B07F961A680F5B00A75B9A /* SessionReplayReactNativeExample.app */,
+ );
+ name = Products;
+ sourceTree = "";
+ };
+ BBD78D7AC51CEA395F1C20DB /* Pods */ = {
+ isa = PBXGroup;
+ children = (
+ 3B4392A12AC88292D35C810B /* Pods-SessionReplayReactNativeExample.debug.xcconfig */,
+ 5709B34CF0A7D63546082F79 /* Pods-SessionReplayReactNativeExample.release.xcconfig */,
+ );
+ path = Pods;
+ sourceTree = "";
+ };
+/* End PBXGroup section */
+
+/* Begin PBXNativeTarget section */
+ 13B07F861A680F5B00A75B9A /* SessionReplayReactNativeExample */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "SessionReplayReactNativeExample" */;
+ buildPhases = (
+ C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */,
+ 13B07F871A680F5B00A75B9A /* Sources */,
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */,
+ 13B07F8E1A680F5B00A75B9A /* Resources */,
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
+ 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */,
+ E235C05ADACE081382539298 /* [CP] Copy Pods Resources */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ );
+ name = SessionReplayReactNativeExample;
+ productName = SessionReplayReactNativeExample;
+ productReference = 13B07F961A680F5B00A75B9A /* SessionReplayReactNativeExample.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 "SessionReplayReactNativeExample" */;
+ compatibilityVersion = "Xcode 12.0";
+ developmentRegion = en;
+ hasScannedForEncodings = 0;
+ knownRegions = (
+ en,
+ Base,
+ );
+ mainGroup = 83CBB9F61A601CBA00E9B192;
+ productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
+ projectDirPath = "";
+ projectRoot = "";
+ targets = (
+ 13B07F861A680F5B00A75B9A /* SessionReplayReactNativeExample */,
+ );
+ };
+/* End PBXProject section */
+
+/* Begin PBXResourcesBuildPhase section */
+ 13B07F8E1A680F5B00A75B9A /* Resources */ = {
+ isa = PBXResourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
+ 6926ECDA2008F7F25A1D59F7 /* 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";
+ };
+ 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */ = {
+ isa = PBXShellScriptBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputFileListPaths = (
+ "${PODS_ROOT}/Target Support Files/Pods-SessionReplayReactNativeExample/Pods-SessionReplayReactNativeExample-frameworks-${CONFIGURATION}-input-files.xcfilelist",
+ );
+ name = "[CP] Embed Pods Frameworks";
+ outputFileListPaths = (
+ "${PODS_ROOT}/Target Support Files/Pods-SessionReplayReactNativeExample/Pods-SessionReplayReactNativeExample-frameworks-${CONFIGURATION}-output-files.xcfilelist",
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-SessionReplayReactNativeExample/Pods-SessionReplayReactNativeExample-frameworks.sh\"\n";
+ showEnvVarsInLog = 0;
+ };
+ C38B50BA6285516D6DCD4F65 /* [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-SessionReplayReactNativeExample-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;
+ };
+ E235C05ADACE081382539298 /* [CP] Copy Pods Resources */ = {
+ isa = PBXShellScriptBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputFileListPaths = (
+ "${PODS_ROOT}/Target Support Files/Pods-SessionReplayReactNativeExample/Pods-SessionReplayReactNativeExample-resources-${CONFIGURATION}-input-files.xcfilelist",
+ );
+ name = "[CP] Copy Pods Resources";
+ outputFileListPaths = (
+ "${PODS_ROOT}/Target Support Files/Pods-SessionReplayReactNativeExample/Pods-SessionReplayReactNativeExample-resources-${CONFIGURATION}-output-files.xcfilelist",
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-SessionReplayReactNativeExample/Pods-SessionReplayReactNativeExample-resources.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 = 3B4392A12AC88292D35C810B /* Pods-SessionReplayReactNativeExample.debug.xcconfig */;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ CLANG_ENABLE_MODULES = YES;
+ CURRENT_PROJECT_VERSION = 1;
+ ENABLE_BITCODE = NO;
+ INFOPLIST_FILE = SessionReplayReactNativeExample/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 = sessionreplayreactnative.example;
+ PRODUCT_NAME = SessionReplayReactNativeExample;
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
+ SWIFT_VERSION = 5.0;
+ VERSIONING_SYSTEM = "apple-generic";
+ };
+ name = Debug;
+ };
+ 13B07F951A680F5B00A75B9A /* Release */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = 5709B34CF0A7D63546082F79 /* Pods-SessionReplayReactNativeExample.release.xcconfig */;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ CLANG_ENABLE_MODULES = YES;
+ CURRENT_PROJECT_VERSION = 1;
+ INFOPLIST_FILE = SessionReplayReactNativeExample/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 = sessionreplayreactnative.example;
+ PRODUCT_NAME = SessionReplayReactNativeExample;
+ 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_CFLAGS = "$(inherited)";
+ OTHER_CPLUSPLUSFLAGS = (
+ "$(OTHER_CFLAGS)",
+ "-DFOLLY_NO_CONFIG",
+ "-DFOLLY_MOBILE=1",
+ "-DFOLLY_USE_LIBCPP=1",
+ "-DFOLLY_CFG_NO_COROUTINES=1",
+ "-DFOLLY_HAVE_CLOCK_GETTIME=1",
+ );
+ 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_CFLAGS = "$(inherited)";
+ OTHER_CPLUSPLUSFLAGS = (
+ "$(OTHER_CFLAGS)",
+ "-DFOLLY_NO_CONFIG",
+ "-DFOLLY_MOBILE=1",
+ "-DFOLLY_USE_LIBCPP=1",
+ "-DFOLLY_CFG_NO_COROUTINES=1",
+ "-DFOLLY_HAVE_CLOCK_GETTIME=1",
+ );
+ 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 "SessionReplayReactNativeExample" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 13B07F941A680F5B00A75B9A /* Debug */,
+ 13B07F951A680F5B00A75B9A /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+ 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "SessionReplayReactNativeExample" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 83CBBA201A601CBA00E9B192 /* Debug */,
+ 83CBBA211A601CBA00E9B192 /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+/* End XCConfigurationList section */
+ };
+ rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
+}
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/ios/SessionReplayReactNativeExample.xcodeproj/xcshareddata/xcschemes/SessionReplayReactNativeExample.xcscheme b/sdk/@launchdarkly/react-native-ld-session-replay/example/ios/SessionReplayReactNativeExample.xcodeproj/xcshareddata/xcschemes/SessionReplayReactNativeExample.xcscheme
new file mode 100644
index 000000000..216711bc9
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/example/ios/SessionReplayReactNativeExample.xcodeproj/xcshareddata/xcschemes/SessionReplayReactNativeExample.xcscheme
@@ -0,0 +1,88 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/ios/SessionReplayReactNativeExample.xcworkspace/contents.xcworkspacedata b/sdk/@launchdarkly/react-native-ld-session-replay/example/ios/SessionReplayReactNativeExample.xcworkspace/contents.xcworkspacedata
new file mode 100644
index 000000000..e7044e9b5
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/example/ios/SessionReplayReactNativeExample.xcworkspace/contents.xcworkspacedata
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/ios/SessionReplayReactNativeExample.xcworkspace/xcshareddata/swiftpm/Package.resolved b/sdk/@launchdarkly/react-native-ld-session-replay/example/ios/SessionReplayReactNativeExample.xcworkspace/xcshareddata/swiftpm/Package.resolved
new file mode 100644
index 000000000..00b523180
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/example/ios/SessionReplayReactNativeExample.xcworkspace/xcshareddata/swiftpm/Package.resolved
@@ -0,0 +1,69 @@
+{
+ "originHash" : "bbeae88f3ff88aecf4c8f0c7bea705d7976fb9f09f71cfb2c0b588ef9b55d9fa",
+ "pins" : [
+ {
+ "identity" : "ios-client-sdk",
+ "kind" : "remoteSourceControl",
+ "location" : "https://github.com/launchdarkly/ios-client-sdk.git",
+ "state" : {
+ "revision" : "34d1a543471753c3a51339af79c12389ca0e6b46",
+ "version" : "11.1.0"
+ }
+ },
+ {
+ "identity" : "kscrash",
+ "kind" : "remoteSourceControl",
+ "location" : "https://github.com/kstenerud/KSCrash.git",
+ "state" : {
+ "revision" : "72e742c81d4ba03fab137e2651a1de342cdd8b3a",
+ "version" : "2.5.0"
+ }
+ },
+ {
+ "identity" : "opentelemetry-swift-core",
+ "kind" : "remoteSourceControl",
+ "location" : "https://github.com/open-telemetry/opentelemetry-swift-core.git",
+ "state" : {
+ "revision" : "240c8d5e36c3c7b774ed961325369f0b1f2c965f",
+ "version" : "2.3.0"
+ }
+ },
+ {
+ "identity" : "swift-atomics",
+ "kind" : "remoteSourceControl",
+ "location" : "https://github.com/apple/swift-atomics.git",
+ "state" : {
+ "revision" : "b601256eab081c0f92f059e12818ac1d4f178ff7",
+ "version" : "1.3.0"
+ }
+ },
+ {
+ "identity" : "swift-eventsource",
+ "kind" : "remoteSourceControl",
+ "location" : "https://github.com/LaunchDarkly/swift-eventsource.git",
+ "state" : {
+ "revision" : "57051701c58a93603ffa2051f8e9cf0c8cff7814",
+ "version" : "3.3.0"
+ }
+ },
+ {
+ "identity" : "swift-launchdarkly-observability",
+ "kind" : "remoteSourceControl",
+ "location" : "https://github.com/launchdarkly/swift-launchdarkly-observability",
+ "state" : {
+ "revision" : "d59ee8cdbcb32640721677755c001979d4ddb700",
+ "version" : "0.18.1"
+ }
+ },
+ {
+ "identity" : "swift-protobuf",
+ "kind" : "remoteSourceControl",
+ "location" : "https://github.com/apple/swift-protobuf.git",
+ "state" : {
+ "revision" : "c169a5744230951031770e27e475ff6eefe51f9d",
+ "version" : "1.33.3"
+ }
+ }
+ ],
+ "version" : 3
+}
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/ios/SessionReplayReactNativeExample/AppDelegate.swift b/sdk/@launchdarkly/react-native-ld-session-replay/example/ios/SessionReplayReactNativeExample/AppDelegate.swift
new file mode 100644
index 000000000..def03c31e
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/example/ios/SessionReplayReactNativeExample/AppDelegate.swift
@@ -0,0 +1,48 @@
+import UIKit
+import React
+import React_RCTAppDelegate
+import ReactAppDependencyProvider
+
+@main
+class AppDelegate: UIResponder, UIApplicationDelegate {
+ var window: UIWindow?
+
+ var reactNativeDelegate: ReactNativeDelegate?
+ var reactNativeFactory: RCTReactNativeFactory?
+
+ func application(
+ _ application: UIApplication,
+ didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? = nil
+ ) -> Bool {
+ let delegate = ReactNativeDelegate()
+ let factory = RCTReactNativeFactory(delegate: delegate)
+ delegate.dependencyProvider = RCTAppDependencyProvider()
+
+ reactNativeDelegate = delegate
+ reactNativeFactory = factory
+
+ window = UIWindow(frame: UIScreen.main.bounds)
+
+ factory.startReactNative(
+ withModuleName: "SessionReplayReactNativeExample",
+ in: window,
+ launchOptions: launchOptions
+ )
+
+ return true
+ }
+}
+
+class ReactNativeDelegate: RCTDefaultReactNativeFactoryDelegate {
+ override func sourceURL(for bridge: RCTBridge) -> URL? {
+ self.bundleURL()
+ }
+
+ override func bundleURL() -> URL? {
+#if DEBUG
+ RCTBundleURLProvider.sharedSettings().jsBundleURL(forBundleRoot: "index")
+#else
+ Bundle.main.url(forResource: "main", withExtension: "jsbundle")
+#endif
+ }
+}
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/ios/SessionReplayReactNativeExample/Images.xcassets/AppIcon.appiconset/Contents.json b/sdk/@launchdarkly/react-native-ld-session-replay/example/ios/SessionReplayReactNativeExample/Images.xcassets/AppIcon.appiconset/Contents.json
new file mode 100644
index 000000000..ddd7fca89
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/example/ios/SessionReplayReactNativeExample/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/sdk/@launchdarkly/react-native-ld-session-replay/example/ios/SessionReplayReactNativeExample/Images.xcassets/Contents.json b/sdk/@launchdarkly/react-native-ld-session-replay/example/ios/SessionReplayReactNativeExample/Images.xcassets/Contents.json
new file mode 100644
index 000000000..97a8662eb
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/example/ios/SessionReplayReactNativeExample/Images.xcassets/Contents.json
@@ -0,0 +1,6 @@
+{
+ "info": {
+ "version": 1,
+ "author": "xcode"
+ }
+}
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/ios/SessionReplayReactNativeExample/Info.plist b/sdk/@launchdarkly/react-native-ld-session-replay/example/ios/SessionReplayReactNativeExample/Info.plist
new file mode 100644
index 000000000..a6b7af1c6
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/example/ios/SessionReplayReactNativeExample/Info.plist
@@ -0,0 +1,55 @@
+
+
+
+
+ CADisableMinimumFrameDurationOnPhone
+
+ CFBundleDevelopmentRegion
+ en
+ CFBundleDisplayName
+ SessionReplayReactNativeExample
+ 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
+
+ RCTNewArchEnabled
+
+ UILaunchStoryboardName
+ LaunchScreen
+ UIRequiredDeviceCapabilities
+
+ arm64
+
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UIViewControllerBasedStatusBarAppearance
+
+
+
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/ios/SessionReplayReactNativeExample/LaunchScreen.storyboard b/sdk/@launchdarkly/react-native-ld-session-replay/example/ios/SessionReplayReactNativeExample/LaunchScreen.storyboard
new file mode 100644
index 000000000..201498ed0
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/example/ios/SessionReplayReactNativeExample/LaunchScreen.storyboard
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/ios/SessionReplayReactNativeExample/PrivacyInfo.xcprivacy b/sdk/@launchdarkly/react-native-ld-session-replay/example/ios/SessionReplayReactNativeExample/PrivacyInfo.xcprivacy
new file mode 100644
index 000000000..41b8317f0
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/example/ios/SessionReplayReactNativeExample/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/sdk/@launchdarkly/react-native-ld-session-replay/example/jest.config.js b/sdk/@launchdarkly/react-native-ld-session-replay/example/jest.config.js
new file mode 100644
index 000000000..8eb675e9b
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/example/jest.config.js
@@ -0,0 +1,3 @@
+module.exports = {
+ preset: 'react-native',
+};
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/metro.config.js b/sdk/@launchdarkly/react-native-ld-session-replay/example/metro.config.js
new file mode 100644
index 000000000..2da198e82
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/example/metro.config.js
@@ -0,0 +1,16 @@
+const path = require('path');
+const { getDefaultConfig } = require('@react-native/metro-config');
+const { withMetroConfig } = require('react-native-monorepo-config');
+
+const root = path.resolve(__dirname, '..');
+
+/**
+ * Metro configuration
+ * https://facebook.github.io/metro/docs/configuration
+ *
+ * @type {import('metro-config').MetroConfig}
+ */
+module.exports = withMetroConfig(getDefaultConfig(__dirname), {
+ root,
+ dirname: __dirname,
+});
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/package.json b/sdk/@launchdarkly/react-native-ld-session-replay/example/package.json
new file mode 100644
index 000000000..9903f0cbf
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/example/package.json
@@ -0,0 +1,35 @@
+{
+ "name": "session-replay-react-native-example",
+ "version": "0.0.1",
+ "private": true,
+ "scripts": {
+ "android": "react-native run-android",
+ "ios": "react-native run-ios",
+ "start": "react-native start",
+ "build:android": "react-native build-android --extra-params \"--no-daemon --console=plain -PreactNativeArchitectures=arm64-v8a\"",
+ "build:ios": "react-native build-ios --mode Debug"
+ },
+ "dependencies": {
+ "@launchdarkly/react-native-client-sdk": "^10.12.5",
+ "@launchdarkly/session-replay-react-native": "workspace:*",
+ "react": "19.2.0",
+ "react-native": "0.83.0"
+ },
+ "devDependencies": {
+ "@babel/core": "^7.25.2",
+ "@babel/preset-env": "^7.25.3",
+ "@babel/runtime": "^7.25.0",
+ "@react-native-community/cli": "20.0.0",
+ "@react-native-community/cli-platform-android": "20.0.0",
+ "@react-native-community/cli-platform-ios": "20.0.0",
+ "@react-native/babel-preset": "0.83.0",
+ "@react-native/metro-config": "0.83.0",
+ "@react-native/typescript-config": "0.83.0",
+ "@types/react": "^19.2.0",
+ "react-native-builder-bob": "^0.40.17",
+ "react-native-monorepo-config": "^0.3.1"
+ },
+ "engines": {
+ "node": ">=20"
+ }
+}
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/react-native.config.js b/sdk/@launchdarkly/react-native-ld-session-replay/example/react-native.config.js
new file mode 100644
index 000000000..59d969820
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/example/react-native.config.js
@@ -0,0 +1,21 @@
+const path = require('path');
+const pkg = require('../package.json');
+
+module.exports = {
+ project: {
+ ios: {
+ automaticPodsInstallation: true,
+ },
+ },
+ dependencies: {
+ [pkg.name]: {
+ root: path.join(__dirname, '..'),
+ platforms: {
+ // Codegen script incorrectly fails without this
+ // So we explicitly specify the platforms with empty object
+ ios: {},
+ android: {},
+ },
+ },
+ },
+};
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/example/src/App.tsx b/sdk/@launchdarkly/react-native-ld-session-replay/example/src/App.tsx
new file mode 100644
index 000000000..70b926408
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/example/src/App.tsx
@@ -0,0 +1,83 @@
+import { Text, View, StyleSheet, TextInput } from 'react-native';
+import {
+ ReactNativeLDClient,
+ LDProvider,
+ AutoEnvAttributes,
+} from '@launchdarkly/react-native-client-sdk';
+
+import { useEffect, useState } from 'react';
+
+import { createSessionReplayPlugin } from '@launchdarkly/session-replay-react-native';
+
+const plugin = createSessionReplayPlugin({
+ isEnabled: true,
+ maskTextInputs: true,
+ maskWebViews: true,
+ maskLabels: true,
+ maskImages: true,
+ maskAccessibilityIdentifiers: ['password', 'ssn', 'welcome_text', 'good_bye'],
+ minimumAlpha: 0.05,
+});
+
+const options = {
+ plugins: [plugin],
+};
+
+// Replace with your LaunchDarkly mobile key
+// You can set LAUNCHDARKLY_MOBILE_KEY as an environment variable
+// or replace this placeholder directly
+const MOBILE_KEY =
+ process.env.LAUNCHDARKLY_MOBILE_KEY || 'YOUR_LAUNCHDARKLY_MOBILE_KEY_HERE';
+
+const client = new ReactNativeLDClient(
+ MOBILE_KEY,
+ AutoEnvAttributes.Enabled,
+ options
+);
+const context = { kind: 'user', key: 'user-key-123abc' };
+
+export default function App() {
+ useEffect(() => {
+ console.log('App started');
+ client.identify(context).catch((e: any) => console.log(e));
+ }, []);
+
+ const [text, setText] = useState('');
+
+ return (
+
+
+ Hello World from react native
+ Session Replay from native swift code
+ Good Bye
+
+ setText(value)}
+ />
+ setText(value)}
+ />
+
+
+ );
+}
+
+const styles = StyleSheet.create({
+ container: {
+ flex: 1,
+ alignItems: 'center',
+ justifyContent: 'center',
+ },
+ input: {
+ borderWidth: 1,
+ borderColor: '#ccc',
+ padding: 10,
+ borderRadius: 5,
+ },
+});
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/ios/SessionReplayClientAdapter.swift b/sdk/@launchdarkly/react-native-ld-session-replay/ios/SessionReplayClientAdapter.swift
new file mode 100644
index 000000000..ff04ba67a
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/ios/SessionReplayClientAdapter.swift
@@ -0,0 +1,197 @@
+import Foundation
+import LaunchDarklyObservability // From Dependency A
+import LaunchDarklySessionReplay
+
+@objc(SessionReplayClientAdapter)
+//@objcMembers
+public class SessionReplayClientAdapter: NSObject {
+ @objc public static let shared = SessionReplayClientAdapter()
+ private let clientQueue = DispatchQueue(label: "com.launchdarkly.sessionreplay.client.queue")
+ private var mobileKey: String?
+ private var sessionReplayOptions: SessionReplayOptions?
+ private var isLDClientState: LDClientState = .idle
+ enum LDClientState {
+ case idle, starting, started
+ }
+
+ private override init() {
+ super.init()
+ }
+
+ @objc public func setMobileKey(_ mobileKey: String, options: NSDictionary?) {
+ clientQueue.sync { [weak self] in
+ guard let self else {
+ return assertionFailure("[SessionReplayClientAdapter] setMobileKey called on deallocated object")
+ }
+ let key = mobileKey.trimmingCharacters(in: .whitespacesAndNewlines)
+ guard !key.isEmpty else {
+ return assertionFailure("[SessionReplayClientAdapter] setMobileKey called with empty key; session replay will not connect. Configure with a valid LaunchDarkly mobile key.")
+ }
+
+ let options = self.sessionReplayOptionsFrom(dictionary: options)
+
+ self.mobileKey = key
+ self.sessionReplayOptions = options
+ }
+ }
+
+ private func makeConfig(mobileKey: String, options: SessionReplayOptions) -> LDConfig {
+ var config = LDConfig(
+ mobileKey: mobileKey,
+ autoEnvAttributes: .enabled
+ )
+ config.plugins = [
+ Observability(
+ options: .init(
+ serviceName: options.serviceName,
+ sessionBackgroundTimeout: 10
+ )
+ ),
+ SessionReplay(options: options)
+ ]
+ /// we set the LDClient offline to stop communication with the LaunchDarkly servers.
+ /// The React Native LDClient will be in charge of communicating with the LaunchDarkly servers.
+ /// offline is considered a short circuited timed out case
+ config.startOnline = false
+ return config
+ }
+
+ private func makeContext() -> LDContext? {
+ var contextBuilder = LDContextBuilder(
+ key: "12345"
+ )
+ contextBuilder.kind("user")
+ do {
+ return try contextBuilder.build().get()
+ } catch {
+ NSLog("[SessionReplayAdapter] Failed to build LDContext: %@", error.localizedDescription)
+ return nil
+ }
+ }
+
+ private func setLDReplayEnabled(_ enabled: Bool, completion: @escaping () -> Void) {
+ Task { @MainActor in
+ /// If LDReplay state is different, toggle it
+ guard LDReplay.shared.isEnabled != enabled else {
+ return completion()
+ }
+ LDReplay.shared.isEnabled = enabled
+ completion()
+ }
+ }
+
+ /// completion: (timed out, error message)
+ /// offline is considered a short circuited timed out case
+ private func start(mobileKey: String, options: SessionReplayOptions, completion: @escaping (Bool, String?) -> Void) {
+ switch isLDClientState {
+ case .idle:
+ isLDClientState = .starting
+ let config = self.makeConfig(mobileKey: mobileKey, options: options)
+ let context = self.makeContext()
+ LDClient
+ .start(
+ config: config,
+ context: context,
+ startWaitSeconds: 5.0) { timedOut in
+ self.clientQueue.sync { [weak self] in
+ self?.isLDClientState = .started
+ self?.setLDReplayEnabled(true) {
+ /// offline is considered a short circuited timed out case
+ completion(true, nil)
+ }
+ }
+ }
+ case .starting:
+ /// Client is starting, we must await until it finishes and state is started
+ /// LDReplay will be started after LDClient finishes
+ /// offline is considered a short circuited timed out case
+ completion(true, nil)
+ case .started:
+ /// Client is started, we can now focus on the session replay client
+ /// Since this is the start method, we want to do so for LDReplay, set enabled to true
+ /// offline is considered a short circuited timed out case
+ setLDReplayEnabled(true) {
+ completion(true, nil)
+ }
+ break
+ }
+ }
+
+ @objc public func start(completion: @escaping (Bool, String?) -> Void) {
+ clientQueue.sync { [weak self] in
+ guard let self else {
+ return assertionFailure("[SessionReplayClientAdapter] setMobileKey called on deallocated object")
+ }
+ guard let mobileKey = self.mobileKey, let options = self.sessionReplayOptions else {
+ completion(false, "Client not initialized. Call SetMobileKey first.")
+ return
+ }
+ self.start(mobileKey: mobileKey, options: options, completion: completion)
+ }
+ }
+
+ /// LDClient should not be closed, will be offline all the times
+ private func _stop(_ completion: @escaping () -> Void) {
+ setLDReplayEnabled(false, completion: completion)
+ }
+
+ /// There is almost no reason to stop the LDClient. Normally, set the LDClient offline to stop communication with the LaunchDarkly servers. Stop the LDClient to stop recording events. There is no need to stop the LDClient prior to suspending, moving to the background, or terminating the app. The SDK will respond to these events as the system requires and as configured in LDConfig.
+ ///
+ /// So in order to not record anything from the Swift's LDClient, LDClient is configured to be offline in the start method
+ /// LDClient is only needed as a holder of the SessionReplay plugin
+ ///
+ /// Stop is intended to provide a stop like API, internally is disabling session replay until app start it with start method
+ @objc public func stop(completion: @escaping () -> Void) {
+ _stop(completion)
+ }
+}
+
+extension SessionReplayClientAdapter {
+ private func sessionReplayOptionsFrom(dictionary: NSDictionary?) -> SessionReplayOptions {
+ // Handle nil dictionary by using all default values
+ guard let dictionary = dictionary else {
+ let privacy = SessionReplayOptions.PrivacyOptions(
+ maskTextInputs: true,
+ maskWebViews: false,
+ maskLabels: false,
+ maskImages: false,
+ maskUIViews: [],
+ unmaskUIViews: [],
+ ignoreUIViews: [],
+ maskAccessibilityIdentifiers: [],
+ unmaskAccessibilityIdentifiers: [],
+ ignoreAccessibilityIdentifiers: [],
+ minimumAlpha: 0.02
+ )
+ return .init(
+ isEnabled: true,
+ serviceName: "sessionreplay-react-native",
+ privacy: privacy
+ )
+ }
+
+ let privacy = SessionReplayOptions.PrivacyOptions(
+ maskTextInputs: dictionary["maskTextInputs"] as? Bool ?? true,
+ maskWebViews: dictionary["maskWebViews"] as? Bool ?? false,
+ maskLabels: dictionary["maskLabels"] as? Bool ?? false,
+ maskImages: dictionary["maskImages"] as? Bool ?? false,
+ maskUIViews: [], /// Not supported, since AnyClass has type erased and it is very likely is not serializable
+ unmaskUIViews: [], /// Not supported, since AnyClass has type erased and it is very likely is not serializable
+ ignoreUIViews: [], /// Not supported, since AnyClass has type erased and it is very likely is not serializable
+ maskAccessibilityIdentifiers:
+ dictionary["maskAccessibilityIdentifiers"] as? [String] ?? [],
+ unmaskAccessibilityIdentifiers:
+ dictionary["unmaskAccessibilityIdentifiers"] as? [String] ?? [],
+ ignoreAccessibilityIdentifiers:
+ dictionary["ignoreAccessibilityIdentifiers"] as? [String] ?? [],
+ minimumAlpha:
+ CGFloat((dictionary["minimumAlpha"] as? NSNumber)?.doubleValue ?? 0.02)
+ )
+
+ return .init(
+ isEnabled: dictionary["isEnabled"] as? Bool ?? true,
+ serviceName: dictionary["serviceName"] as? String ?? "sessionreplay-react-native",
+ privacy: privacy
+ )
+ }
+}
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/ios/SessionReplayReactNative.h b/sdk/@launchdarkly/react-native-ld-session-replay/ios/SessionReplayReactNative.h
new file mode 100644
index 000000000..fce4362da
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/ios/SessionReplayReactNative.h
@@ -0,0 +1,4 @@
+#import
+
+@interface SessionReplayReactNative : NSObject
+@end
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/ios/SessionReplayReactNative.mm b/sdk/@launchdarkly/react-native-ld-session-replay/ios/SessionReplayReactNative.mm
new file mode 100644
index 000000000..8c4392b72
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/ios/SessionReplayReactNative.mm
@@ -0,0 +1,67 @@
+#import
+#import "SessionReplayReactNative.h"
+#import "SessionReplayReactNative-Swift.h" // Auto-generated header
+
+@implementation SessionReplayReactNative
+- (void)configure:(NSString *)mobileKey
+ options:(NSDictionary *)options
+ resolve:(RCTPromiseResolveBlock)resolve
+ reject:(RCTPromiseRejectBlock)reject
+{
+ NSString *trimmed = [mobileKey stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];
+ if (!trimmed || trimmed.length == 0) {
+ reject(@"invalid_mobile_key", @"Session replay requires a non-empty mobile key.", nil);
+ return;
+ }
+ @try {
+ [[SessionReplayClientAdapter shared] setMobileKey:trimmed options:options];
+ resolve(nil);
+ } @catch(NSException *exception) {
+ NSLog(@"⚠️ configure crash: %@", exception);
+ reject(@"configure_failed", exception.reason, nil);
+ }
+}
+
+- (void)startSessionReplay:(RCTPromiseResolveBlock)resolve
+ reject:(RCTPromiseRejectBlock)reject
+{
+ @try {
+ [[SessionReplayClientAdapter shared] startWithCompletion:^(BOOL success, NSString * _Nullable errorMessage) {
+ if (success) {
+ resolve(nil);
+ } else {
+ NSString *error = errorMessage ?: @"Session replay failed to start";
+ reject(@"start_failed", error, nil);
+ }
+ }];
+ } @catch(NSException *exception) {
+ NSLog(@"⚠️ startSessionReplay crash: %@", exception);
+ reject(@"start_failed", exception.reason, nil);
+ }
+}
+
+- (void)stopSessionReplay:(RCTPromiseResolveBlock)resolve
+ reject:(RCTPromiseRejectBlock)reject
+{
+ @try {
+ [[SessionReplayClientAdapter shared] stopWithCompletion:^{
+ resolve(nil);
+ }];
+ } @catch(NSException *exception) {
+ NSLog(@"⚠️ stopSessionReplay crash: %@", exception);
+ reject(@"stop_failed", exception.reason, nil);
+ }
+}
+
+- (std::shared_ptr)getTurboModule:
+ (const facebook::react::ObjCTurboModule::InitParams &)params
+{
+ return std::make_shared(params);
+}
+
++ (NSString *)moduleName
+{
+ return @"SessionReplayReactNative";
+}
+
+@end
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/lefthook.yml b/sdk/@launchdarkly/react-native-ld-session-replay/lefthook.yml
new file mode 100644
index 000000000..9cf851102
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/lefthook.yml
@@ -0,0 +1,15 @@
+pre-commit:
+ parallel: true
+ commands:
+ lint:
+ glob: '*.{js,ts,jsx,tsx}'
+ run: npx eslint {staged_files}
+
+ types:
+ glob: '*.{js,ts,jsx,tsx}'
+ run: npx tsc
+commit-msg:
+ parallel: true
+ commands:
+ commitlint:
+ run: npx commitlint --edit
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/package.json b/sdk/@launchdarkly/react-native-ld-session-replay/package.json
new file mode 100644
index 000000000..10f77b51b
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/package.json
@@ -0,0 +1,177 @@
+{
+ "name": "@launchdarkly/session-replay-react-native",
+ "version": "0.1.0",
+ "description": "session replay for react native",
+ "main": "./lib/module/index.js",
+ "types": "./lib/typescript/src/index.d.ts",
+ "exports": {
+ ".": {
+ "source": "./src/index.tsx",
+ "types": "./lib/typescript/src/index.d.ts",
+ "default": "./lib/module/index.js"
+ },
+ "./package.json": "./package.json"
+ },
+ "files": [
+ "src",
+ "lib",
+ "android",
+ "ios",
+ "cpp",
+ "*.podspec",
+ "react-native.config.js",
+ "!ios/build",
+ "!android/build",
+ "!android/gradle",
+ "!android/gradlew",
+ "!android/gradlew.bat",
+ "!android/local.properties",
+ "!**/__tests__",
+ "!**/__fixtures__",
+ "!**/__mocks__",
+ "!**/.*"
+ ],
+ "scripts": {
+ "example": "yarn workspace session-replay-react-native-example",
+ "clean": "del-cli android/build example/android/build example/android/app/build example/ios/build lib",
+ "prepare": "bob build",
+ "typecheck": "tsc",
+ "lint": "echo 'Linting temporarily disabled - TODO: fix ESLint config'",
+ "test": "jest",
+ "release": "release-it --only-version"
+ },
+ "keywords": [
+ "react-native",
+ "ios",
+ "android"
+ ],
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/launchdarkly/observability-sdk.git"
+ },
+ "author": "launchdarkly (https://github.com/launchdarkly/observability-sdk)",
+ "license": "MIT",
+ "bugs": {
+ "url": "https://github.com/launchdarkly/observability-sdk/issues"
+ },
+ "homepage": "https://github.com/launchdarkly/observability-sdk#readme",
+ "publishConfig": {
+ "registry": "https://registry.npmjs.org/"
+ },
+ "installConfig": {
+ "hoistingLimits": "dependencies"
+ },
+ "dependencies": {
+ "@launchdarkly/js-sdk-common": "^2.20.0",
+ "@launchdarkly/observability-react-native": "workspace:*",
+ "@launchdarkly/react-native-client-sdk": "^10.12.5"
+ },
+ "devDependencies": {
+ "@commitlint/config-conventional": "^19.8.1",
+ "@eslint/compat": "^1.3.2",
+ "@eslint/eslintrc": "^3.3.1",
+ "@eslint/js": "^9.35.0",
+ "@react-native/babel-preset": "0.83.0",
+ "@react-native/eslint-config": "0.83.0",
+ "@react-native/eslint-plugin": "0.83.0",
+ "@release-it/conventional-changelog": "^10.0.1",
+ "@types/jest": "^29.5.14",
+ "@types/react": "^19.2.0",
+ "commitlint": "^19.8.1",
+ "del-cli": "^6.0.0",
+ "eslint": "^8.57.1",
+ "eslint-config-prettier": "^10.1.8",
+ "jest": "^29.7.0",
+ "lefthook": "^2.0.3",
+ "prettier": "^3.0.0",
+ "react": "19.2.0",
+ "react-native": "0.83.0",
+ "react-native-builder-bob": "^0.40.17",
+ "release-it": "^19.0.4",
+ "turbo": "^2.5.6",
+ "typescript": "^5.9.2"
+ },
+ "peerDependencies": {
+ "react": "*",
+ "react-native": "*"
+ },
+ "workspaces": [
+ "example"
+ ],
+ "packageManager": "yarn@4.11.0",
+ "react-native-builder-bob": {
+ "source": "src",
+ "output": "lib",
+ "targets": [
+ [
+ "module",
+ {
+ "esm": true
+ }
+ ],
+ [
+ "typescript",
+ {
+ "project": "tsconfig.build.json"
+ }
+ ]
+ ]
+ },
+ "codegenConfig": {
+ "name": "SessionReplayReactNativeSpec",
+ "type": "modules",
+ "jsSrcsDir": "src",
+ "android": {
+ "javaPackageName": "com.sessionreplayreactnative"
+ }
+ },
+ "prettier": {
+ "quoteProps": "consistent",
+ "singleQuote": true,
+ "tabWidth": 2,
+ "trailingComma": "es5",
+ "useTabs": false
+ },
+ "jest": {
+ "preset": "react-native",
+ "modulePathIgnorePatterns": [
+ "/example/node_modules",
+ "/lib/"
+ ]
+ },
+ "commitlint": {
+ "extends": [
+ "@commitlint/config-conventional"
+ ]
+ },
+ "release-it": {
+ "git": {
+ "commitMessage": "chore: release ${version}",
+ "tagName": "v${version}"
+ },
+ "npm": {
+ "publish": true
+ },
+ "github": {
+ "release": true
+ },
+ "plugins": {
+ "@release-it/conventional-changelog": {
+ "preset": {
+ "name": "angular"
+ }
+ }
+ }
+ },
+ "create-react-native-library": {
+ "type": "turbo-module",
+ "languages": "kotlin-objc",
+ "tools": [
+ "eslint",
+ "jest",
+ "lefthook",
+ "release-it"
+ ],
+ "version": "0.56.1"
+ }
+}
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/src/NativeSessionReplayReactNative.ts b/sdk/@launchdarkly/react-native-ld-session-replay/src/NativeSessionReplayReactNative.ts
new file mode 100644
index 000000000..4a15b89eb
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/src/NativeSessionReplayReactNative.ts
@@ -0,0 +1,24 @@
+import { TurboModuleRegistry, type TurboModule } from 'react-native';
+
+export type SessionReplayOptions = {
+ isEnabled?: boolean;
+ serviceName?: string;
+ maskTextInputs?: boolean;
+ maskWebViews?: boolean;
+ maskLabels?: boolean;
+ maskImages?: boolean;
+ maskAccessibilityIdentifiers?: string[];
+ unmaskAccessibilityIdentifiers?: string[];
+ ignoreAccessibilityIdentifiers?: string[];
+ minimumAlpha?: number;
+};
+
+export interface Spec extends TurboModule {
+ configure(mobileKey: string, options?: Object): Promise;
+ startSessionReplay(): Promise;
+ stopSessionReplay(): Promise;
+}
+
+export default TurboModuleRegistry.getEnforcing(
+ 'SessionReplayReactNative'
+);
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/src/__tests__/index.test.tsx b/sdk/@launchdarkly/react-native-ld-session-replay/src/__tests__/index.test.tsx
new file mode 100644
index 000000000..bf84291a5
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/src/__tests__/index.test.tsx
@@ -0,0 +1 @@
+it.todo('write a test');
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/src/index.tsx b/sdk/@launchdarkly/react-native-ld-session-replay/src/index.tsx
new file mode 100644
index 000000000..6f6464861
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/src/index.tsx
@@ -0,0 +1,71 @@
+import SessionReplayReactNative from './NativeSessionReplayReactNative';
+import type { SessionReplayOptions } from './NativeSessionReplayReactNative';
+import type { LDPlugin } from '@launchdarkly/react-native-client-sdk';
+import type {
+ LDPluginEnvironmentMetadata,
+ LDPluginMetadata,
+} from '@launchdarkly/js-sdk-common';
+import type { LDClient } from '@launchdarkly/react-native-client-sdk';
+
+const MOBILE_KEY_REQUIRED_MESSAGE =
+ 'Session replay requires a non-empty mobile key. Provide metadata.sdkKey or metadata.mobileKey when initializing the LaunchDarkly client.';
+
+export function configureSessionReplay(
+ mobileKey: string,
+ options: SessionReplayOptions = {}
+): Promise {
+ const key = typeof mobileKey === 'string' ? mobileKey.trim() : '';
+ if (!key) {
+ return Promise.reject(new Error(MOBILE_KEY_REQUIRED_MESSAGE));
+ }
+ return SessionReplayReactNative.configure(key, options);
+}
+
+export function startSessionReplay(): Promise {
+ return SessionReplayReactNative.startSessionReplay();
+}
+
+export function stopSessionReplay(): Promise {
+ return SessionReplayReactNative.stopSessionReplay();
+}
+
+class SessionReplayPluginAdapter implements LDPlugin {
+ private options: SessionReplayOptions;
+
+ constructor(options: SessionReplayOptions = {}) {
+ this.options = options;
+ }
+
+ getMetadata(): LDPluginMetadata {
+ return {
+ name: 'session-replay-react-native',
+ };
+ }
+
+ register(_client: LDClient, metadata: LDPluginEnvironmentMetadata): void {
+ const sdkKey = metadata.sdkKey || metadata.mobileKey || '';
+ const key = typeof sdkKey === 'string' ? sdkKey.trim() : '';
+ if (!key) {
+ console.error('[SessionReplay]', MOBILE_KEY_REQUIRED_MESSAGE);
+ return;
+ }
+ configureSessionReplay(key, this.options)
+ .then(() => {
+ return startSessionReplay();
+ })
+ .catch((error) => {
+ console.error(
+ '[SessionReplay] Failed to initialize session replay:',
+ error
+ );
+ });
+ }
+}
+
+export function createSessionReplayPlugin(
+ options: SessionReplayOptions = {}
+): LDPlugin {
+ return new SessionReplayPluginAdapter(options);
+}
+
+export type { SessionReplayOptions };
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/tsconfig.build.json b/sdk/@launchdarkly/react-native-ld-session-replay/tsconfig.build.json
new file mode 100644
index 000000000..3c0636adf
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/tsconfig.build.json
@@ -0,0 +1,4 @@
+{
+ "extends": "./tsconfig",
+ "exclude": ["example", "lib"]
+}
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/tsconfig.json b/sdk/@launchdarkly/react-native-ld-session-replay/tsconfig.json
new file mode 100644
index 000000000..e388f9135
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/tsconfig.json
@@ -0,0 +1,30 @@
+{
+ "compilerOptions": {
+ "rootDir": ".",
+ "paths": {
+ "session-replay-react-native": ["./src/index"]
+ },
+ "allowUnreachableCode": false,
+ "allowUnusedLabels": false,
+ "customConditions": ["react-native-strict-api"],
+ "esModuleInterop": true,
+ "forceConsistentCasingInFileNames": true,
+ "jsx": "react-jsx",
+ "lib": ["ESNext"],
+ "module": "ESNext",
+ "moduleResolution": "bundler",
+ "noEmit": true,
+ "noFallthroughCasesInSwitch": true,
+ "noImplicitReturns": true,
+ "noImplicitUseStrict": false,
+ "noStrictGenericChecks": false,
+ "noUncheckedIndexedAccess": true,
+ "noUnusedLocals": true,
+ "noUnusedParameters": true,
+ "resolveJsonModule": true,
+ "skipLibCheck": true,
+ "strict": true,
+ "target": "ESNext",
+ "verbatimModuleSyntax": true
+ }
+}
diff --git a/sdk/@launchdarkly/react-native-ld-session-replay/turbo.json b/sdk/@launchdarkly/react-native-ld-session-replay/turbo.json
new file mode 100644
index 000000000..ac070f5ea
--- /dev/null
+++ b/sdk/@launchdarkly/react-native-ld-session-replay/turbo.json
@@ -0,0 +1,42 @@
+{
+ "$schema": "https://turbo.build/schema.json",
+ "tasks": {
+ "build:android": {
+ "env": ["ANDROID_HOME", "ORG_GRADLE_PROJECT_newArchEnabled"],
+ "inputs": [
+ "package.json",
+ "android",
+ "!android/build",
+ "src/*.ts",
+ "src/*.tsx",
+ "example/package.json",
+ "example/android",
+ "!example/android/.gradle",
+ "!example/android/build",
+ "!example/android/app/build"
+ ],
+ "outputs": []
+ },
+ "build:ios": {
+ "env": [
+ "RCT_NEW_ARCH_ENABLED",
+ "RCT_REMOVE_LEGACY_ARCH",
+ "RCT_USE_RN_DEP",
+ "RCT_USE_PREBUILT_RNCORE"
+ ],
+ "inputs": [
+ "package.json",
+ "*.podspec",
+ "ios",
+ "src/*.ts",
+ "src/*.tsx",
+ "example/package.json",
+ "example/ios",
+ "!example/ios/build",
+ "!example/ios/Pods"
+ ],
+ "outputs": []
+ }
+ },
+ "extends": ["//"]
+}
diff --git a/sdk/highlight-run/src/client/workers/highlight-client-worker.test.ts b/sdk/highlight-run/src/client/workers/highlight-client-worker.test.ts
index 68f14c050..70d57870e 100644
--- a/sdk/highlight-run/src/client/workers/highlight-client-worker.test.ts
+++ b/sdk/highlight-run/src/client/workers/highlight-client-worker.test.ts
@@ -129,9 +129,8 @@ describe('highlight-client-worker', () => {
beforeEach(async () => {
vi.resetModules()
- const { default: HighlightClientWorker } = await import(
- './highlight-client-worker?worker&inline'
- )
+ const { default: HighlightClientWorker } =
+ await import('./highlight-client-worker?worker&inline')
worker = new HighlightClientWorker() as unknown as TestWorker
})
diff --git a/sdk/highlight-sourcemap-uploader/src/lib.ts b/sdk/highlight-sourcemap-uploader/src/lib.ts
index 69b5c8753..22d806149 100644
--- a/sdk/highlight-sourcemap-uploader/src/lib.ts
+++ b/sdk/highlight-sourcemap-uploader/src/lib.ts
@@ -207,6 +207,6 @@ function getS3Key(
async function uploadFile(filePath: string, uploadUrl: string, name: string) {
const fileContent = readFileSync(filePath);
- await fetch(uploadUrl, { method: "put", body: fileContent });
+ await fetch(uploadUrl, { method: "put", body: new Uint8Array(fileContent) });
console.log(`[Highlight] Uploaded ${filePath} to ${name}`);
}
diff --git a/turbo.json b/turbo.json
index d870981df..72fbecc4b 100644
--- a/turbo.json
+++ b/turbo.json
@@ -96,7 +96,6 @@
"env": ["HIGHLIGHT_API_KEY"]
}
},
- "globalEnv": ["DOPPLER_TOKEN"],
- "globalDependencies": ["yarn.lock"],
- "extends": ["//"]
+ "globalEnv": ["DOPPLER_TOKEN", "NODE_ENV"],
+ "globalDependencies": ["yarn.lock", ".nvmrc", ".yarnrc.yml"]
}
diff --git a/yarn.lock b/yarn.lock
index d4b302426..e450642be 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -860,6 +860,22 @@ __metadata:
languageName: node
linkType: hard
+"@ark/schema@npm:0.56.0":
+ version: 0.56.0
+ resolution: "@ark/schema@npm:0.56.0"
+ dependencies:
+ "@ark/util": "npm:0.56.0"
+ checksum: 10/59d9007ab43ee41814bf3c91acf44fbcff82086eb2b8aa7715ec388f6897ebb6f3ef56ba6b7815fae8d4db702e6a6a3e5897cd48a50112caa3784df0ed4fd7e4
+ languageName: node
+ linkType: hard
+
+"@ark/util@npm:0.56.0":
+ version: 0.56.0
+ resolution: "@ark/util@npm:0.56.0"
+ checksum: 10/eb3477c6c1c126e708885721dd518d55dac133d642a916535ef0d75403182407cb36729d954181db82a6388b5e71cdeb486ea72dbfa3a58542f8d0435b79fb35
+ languageName: node
+ linkType: hard
+
"@babel/code-frame@npm:7.10.4, @babel/code-frame@npm:~7.10.4":
version: 7.10.4
resolution: "@babel/code-frame@npm:7.10.4"
@@ -869,7 +885,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.16.7, @babel/code-frame@npm:^7.21.4, @babel/code-frame@npm:^7.24.7, @babel/code-frame@npm:^7.25.7, @babel/code-frame@npm:^7.26.2, @babel/code-frame@npm:^7.27.1, @babel/code-frame@npm:^7.28.6, @babel/code-frame@npm:^7.29.0":
+"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.16.7, @babel/code-frame@npm:^7.21.4, @babel/code-frame@npm:^7.24.7, @babel/code-frame@npm:^7.25.7, @babel/code-frame@npm:^7.26.2, @babel/code-frame@npm:^7.28.6, @babel/code-frame@npm:^7.29.0":
version: 7.29.0
resolution: "@babel/code-frame@npm:7.29.0"
dependencies:
@@ -880,7 +896,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/compat-data@npm:^7.20.5, @babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.26.8, @babel/compat-data@npm:^7.28.6":
+"@babel/compat-data@npm:^7.20.5, @babel/compat-data@npm:^7.26.8, @babel/compat-data@npm:^7.28.6":
version: 7.29.0
resolution: "@babel/compat-data@npm:7.29.0"
checksum: 10/7f21beedb930ed8fbf7eabafc60e6e6521c1d905646bf1317a61b2163339157fe797efeb85962bf55136e166b01fd1a6b526a15974b92a8b877d564dcb6c9580
@@ -933,40 +949,40 @@ __metadata:
languageName: node
linkType: hard
-"@babel/core@npm:^7.1.0, @babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3, @babel/core@npm:^7.13.16, @babel/core@npm:^7.14.0, @babel/core@npm:^7.20.0, @babel/core@npm:^7.20.7, @babel/core@npm:^7.21.8, @babel/core@npm:^7.22.9, @babel/core@npm:^7.23.9, @babel/core@npm:^7.24.5, @babel/core@npm:^7.25.2, @babel/core@npm:^7.7.2, @babel/core@npm:^7.8.0":
- version: 7.28.0
- resolution: "@babel/core@npm:7.28.0"
+"@babel/core@npm:^7.1.0, @babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3, @babel/core@npm:^7.13.16, @babel/core@npm:^7.14.0, @babel/core@npm:^7.20.0, @babel/core@npm:^7.20.7, @babel/core@npm:^7.21.8, @babel/core@npm:^7.22.9, @babel/core@npm:^7.23.9, @babel/core@npm:^7.24.4, @babel/core@npm:^7.24.5, @babel/core@npm:^7.25.2, @babel/core@npm:^7.7.2, @babel/core@npm:^7.8.0":
+ version: 7.28.6
+ resolution: "@babel/core@npm:7.28.6"
dependencies:
- "@ampproject/remapping": "npm:^2.2.0"
- "@babel/code-frame": "npm:^7.27.1"
- "@babel/generator": "npm:^7.28.0"
- "@babel/helper-compilation-targets": "npm:^7.27.2"
- "@babel/helper-module-transforms": "npm:^7.27.3"
- "@babel/helpers": "npm:^7.27.6"
- "@babel/parser": "npm:^7.28.0"
- "@babel/template": "npm:^7.27.2"
- "@babel/traverse": "npm:^7.28.0"
- "@babel/types": "npm:^7.28.0"
+ "@babel/code-frame": "npm:^7.28.6"
+ "@babel/generator": "npm:^7.28.6"
+ "@babel/helper-compilation-targets": "npm:^7.28.6"
+ "@babel/helper-module-transforms": "npm:^7.28.6"
+ "@babel/helpers": "npm:^7.28.6"
+ "@babel/parser": "npm:^7.28.6"
+ "@babel/template": "npm:^7.28.6"
+ "@babel/traverse": "npm:^7.28.6"
+ "@babel/types": "npm:^7.28.6"
+ "@jridgewell/remapping": "npm:^2.3.5"
convert-source-map: "npm:^2.0.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.2.3"
semver: "npm:^6.3.1"
- checksum: 10/1c86eec8d76053f7b1c5f65296d51d7b8ac00f80d169ff76d3cd2e7d85ab222eb100d40cc3314f41b96c8cc06e9abab21c63d246161f0f3f70ef14c958419c33
+ checksum: 10/1a150a69c547daf13c457be1fdaf1a0935d02b94605e777e049537ec2f279b4bb442ffbe1c2d8ff62c688878b1d5530a5784daf72ece950d1917fb78717f51d2
languageName: node
linkType: hard
-"@babel/eslint-parser@npm:^7.21.8":
- version: 7.22.9
- resolution: "@babel/eslint-parser@npm:7.22.9"
+"@babel/eslint-parser@npm:^7.21.8, @babel/eslint-parser@npm:^7.25.1":
+ version: 7.28.6
+ resolution: "@babel/eslint-parser@npm:7.28.6"
dependencies:
"@nicolo-ribaudo/eslint-scope-5-internals": "npm:5.1.1-v1"
eslint-visitor-keys: "npm:^2.1.0"
semver: "npm:^6.3.1"
peerDependencies:
- "@babel/core": ">=7.11.0"
- eslint: ^7.5.0 || ^8.0.0
- checksum: 10/3660ce8c7e56a2d342a491ea549bf61d13df9bbd60e46d58ea528ab1b357ec5e08c646575d98c08566daea45068d9d84a9b3b0868af98707b98c03709ddd5481
+ "@babel/core": ^7.11.0
+ eslint: ^7.5.0 || ^8.0.0 || ^9.0.0
+ checksum: 10/15c0c9c78abcc5f267a34bab95437c37dfc468e3ac5e11094ed26bebd63c7a5b056fa47c005ba74eb9fbed6c79e37f90cbe2a24ed09425921275391fe9a5bbe7
languageName: node
linkType: hard
@@ -983,7 +999,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/generator@npm:^7.14.0, @babel/generator@npm:^7.18.13, @babel/generator@npm:^7.20.5, @babel/generator@npm:^7.21.5, @babel/generator@npm:^7.25.0, @babel/generator@npm:^7.25.7, @babel/generator@npm:^7.26.10, @babel/generator@npm:^7.26.9, @babel/generator@npm:^7.28.0, @babel/generator@npm:^7.29.0, @babel/generator@npm:^7.7.2":
+"@babel/generator@npm:^7.14.0, @babel/generator@npm:^7.18.13, @babel/generator@npm:^7.20.5, @babel/generator@npm:^7.21.5, @babel/generator@npm:^7.25.0, @babel/generator@npm:^7.25.7, @babel/generator@npm:^7.26.10, @babel/generator@npm:^7.26.9, @babel/generator@npm:^7.28.6, @babel/generator@npm:^7.29.0, @babel/generator@npm:^7.7.2":
version: 7.29.1
resolution: "@babel/generator@npm:7.29.1"
dependencies:
@@ -1005,7 +1021,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/helper-annotate-as-pure@npm:^7.25.9, @babel/helper-annotate-as-pure@npm:^7.27.1, @babel/helper-annotate-as-pure@npm:^7.27.3":
+"@babel/helper-annotate-as-pure@npm:^7.27.1, @babel/helper-annotate-as-pure@npm:^7.27.3":
version: 7.27.3
resolution: "@babel/helper-annotate-as-pure@npm:7.27.3"
dependencies:
@@ -1014,7 +1030,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/helper-compilation-targets@npm:^7.20.7, @babel/helper-compilation-targets@npm:^7.25.9, @babel/helper-compilation-targets@npm:^7.26.5, @babel/helper-compilation-targets@npm:^7.27.2, @babel/helper-compilation-targets@npm:^7.28.6":
+"@babel/helper-compilation-targets@npm:^7.20.7, @babel/helper-compilation-targets@npm:^7.26.5, @babel/helper-compilation-targets@npm:^7.27.1, @babel/helper-compilation-targets@npm:^7.28.6":
version: 7.28.6
resolution: "@babel/helper-compilation-targets@npm:7.28.6"
dependencies:
@@ -1027,37 +1043,37 @@ __metadata:
languageName: node
linkType: hard
-"@babel/helper-create-class-features-plugin@npm:^7.18.6, @babel/helper-create-class-features-plugin@npm:^7.25.9, @babel/helper-create-class-features-plugin@npm:^7.27.1":
- version: 7.27.1
- resolution: "@babel/helper-create-class-features-plugin@npm:7.27.1"
+"@babel/helper-create-class-features-plugin@npm:^7.18.6, @babel/helper-create-class-features-plugin@npm:^7.25.9, @babel/helper-create-class-features-plugin@npm:^7.28.6":
+ version: 7.28.6
+ resolution: "@babel/helper-create-class-features-plugin@npm:7.28.6"
dependencies:
- "@babel/helper-annotate-as-pure": "npm:^7.27.1"
- "@babel/helper-member-expression-to-functions": "npm:^7.27.1"
+ "@babel/helper-annotate-as-pure": "npm:^7.27.3"
+ "@babel/helper-member-expression-to-functions": "npm:^7.28.5"
"@babel/helper-optimise-call-expression": "npm:^7.27.1"
- "@babel/helper-replace-supers": "npm:^7.27.1"
+ "@babel/helper-replace-supers": "npm:^7.28.6"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^7.27.1"
- "@babel/traverse": "npm:^7.27.1"
+ "@babel/traverse": "npm:^7.28.6"
semver: "npm:^6.3.1"
peerDependencies:
"@babel/core": ^7.0.0
- checksum: 10/701579b49046cd42f6a6b1e693e6827df8623185adf0911c4d68a219a082d8fd4501672880d92b6b96263d1c92a3beb891b3464a662a55e69e7539d8db9277da
+ checksum: 10/11f55607fcf66827ade745c0616aa3c6086aa655c0fab665dd3c4961829752e4c94c942262db30c4831ef9bce37ad444722e85ef1b7136587e28c6b1ef8ad43c
languageName: node
linkType: hard
-"@babel/helper-create-regexp-features-plugin@npm:^7.18.6, @babel/helper-create-regexp-features-plugin@npm:^7.25.9":
- version: 7.26.3
- resolution: "@babel/helper-create-regexp-features-plugin@npm:7.26.3"
+"@babel/helper-create-regexp-features-plugin@npm:^7.18.6, @babel/helper-create-regexp-features-plugin@npm:^7.27.1, @babel/helper-create-regexp-features-plugin@npm:^7.28.5":
+ version: 7.28.5
+ resolution: "@babel/helper-create-regexp-features-plugin@npm:7.28.5"
dependencies:
- "@babel/helper-annotate-as-pure": "npm:^7.25.9"
- regexpu-core: "npm:^6.2.0"
+ "@babel/helper-annotate-as-pure": "npm:^7.27.3"
+ regexpu-core: "npm:^6.3.1"
semver: "npm:^6.3.1"
peerDependencies:
"@babel/core": ^7.0.0
- checksum: 10/4c44122ea11c4253ee78a9c083b7fbce96c725e2cb43cc864f0e8ea2749f7b6658617239c6278df9f132d09a7545c8fe0336ed2895ad7c80c71507828a7bc8ba
+ checksum: 10/d8791350fe0479af0909aa5efb6dfd3bacda743c7c3f8fa1b0bb18fe014c206505834102ee24382df1cfe5a83b4e4083220e97f420a48b2cec15bb1ad6c7c9d3
languageName: node
linkType: hard
-"@babel/helper-define-polyfill-provider@npm:^0.6.2, @babel/helper-define-polyfill-provider@npm:^0.6.3":
+"@babel/helper-define-polyfill-provider@npm:^0.6.3, @babel/helper-define-polyfill-provider@npm:^0.6.5, @babel/helper-define-polyfill-provider@npm:^0.6.6":
version: 0.6.6
resolution: "@babel/helper-define-polyfill-provider@npm:0.6.6"
dependencies:
@@ -1079,13 +1095,13 @@ __metadata:
languageName: node
linkType: hard
-"@babel/helper-member-expression-to-functions@npm:^7.27.1":
- version: 7.27.1
- resolution: "@babel/helper-member-expression-to-functions@npm:7.27.1"
+"@babel/helper-member-expression-to-functions@npm:^7.28.5":
+ version: 7.28.5
+ resolution: "@babel/helper-member-expression-to-functions@npm:7.28.5"
dependencies:
- "@babel/traverse": "npm:^7.27.1"
- "@babel/types": "npm:^7.27.1"
- checksum: 10/533a5a2cf1c9a8770d241b86d5f124c88e953c831a359faf1ac7ba1e632749c1748281b83295d227fe6035b202d81f3d3a1ea13891f150c6538e040668d6126a
+ "@babel/traverse": "npm:^7.28.5"
+ "@babel/types": "npm:^7.28.5"
+ checksum: 10/05e0857cf7913f03d88ca62952d3888693c21a4f4d7cfc141c630983f71fc0a64393e05cecceb7701dfe98298f7cc38fcb735d892e3c8c6f56f112c85ee1b154
languageName: node
linkType: hard
@@ -1099,7 +1115,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/helper-module-transforms@npm:^7.25.9, @babel/helper-module-transforms@npm:^7.26.0, @babel/helper-module-transforms@npm:^7.27.3, @babel/helper-module-transforms@npm:^7.28.6":
+"@babel/helper-module-transforms@npm:^7.26.0, @babel/helper-module-transforms@npm:^7.27.1, @babel/helper-module-transforms@npm:^7.28.3, @babel/helper-module-transforms@npm:^7.28.6":
version: 7.28.6
resolution: "@babel/helper-module-transforms@npm:7.28.6"
dependencies:
@@ -1141,20 +1157,20 @@ __metadata:
languageName: node
linkType: hard
-"@babel/helper-replace-supers@npm:^7.25.9, @babel/helper-replace-supers@npm:^7.27.1":
- version: 7.27.1
- resolution: "@babel/helper-replace-supers@npm:7.27.1"
+"@babel/helper-replace-supers@npm:^7.27.1, @babel/helper-replace-supers@npm:^7.28.6":
+ version: 7.28.6
+ resolution: "@babel/helper-replace-supers@npm:7.28.6"
dependencies:
- "@babel/helper-member-expression-to-functions": "npm:^7.27.1"
+ "@babel/helper-member-expression-to-functions": "npm:^7.28.5"
"@babel/helper-optimise-call-expression": "npm:^7.27.1"
- "@babel/traverse": "npm:^7.27.1"
+ "@babel/traverse": "npm:^7.28.6"
peerDependencies:
"@babel/core": ^7.0.0
- checksum: 10/72e3f8bef744c06874206bf0d80a0abbedbda269586966511c2491df4f6bf6d47a94700810c7a6737345a545dfb8295222e1e72f506bcd0b40edb3f594f739ea
+ checksum: 10/ad2724713a4d983208f509e9607e8f950855f11bd97518a700057eb8bec69d687a8f90dc2da0c3c47281d2e3b79cf1d14ecf1fe3e1ee0a8e90b61aee6759c9a7
languageName: node
linkType: hard
-"@babel/helper-skip-transparent-expression-wrappers@npm:^7.20.0, @babel/helper-skip-transparent-expression-wrappers@npm:^7.25.9, @babel/helper-skip-transparent-expression-wrappers@npm:^7.27.1":
+"@babel/helper-skip-transparent-expression-wrappers@npm:^7.20.0, @babel/helper-skip-transparent-expression-wrappers@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.27.1"
dependencies:
@@ -1205,7 +1221,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/helpers@npm:^7.26.10, @babel/helpers@npm:^7.26.9, @babel/helpers@npm:^7.27.6":
+"@babel/helpers@npm:^7.26.10, @babel/helpers@npm:^7.26.9, @babel/helpers@npm:^7.28.6":
version: 7.28.6
resolution: "@babel/helpers@npm:7.28.6"
dependencies:
@@ -1227,7 +1243,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.13.16, @babel/parser@npm:^7.14.0, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.16.8, @babel/parser@npm:^7.20.0, @babel/parser@npm:^7.20.15, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.21.8, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.25.3, @babel/parser@npm:^7.25.4, @babel/parser@npm:^7.25.7, @babel/parser@npm:^7.26.10, @babel/parser@npm:^7.26.9, @babel/parser@npm:^7.28.0, @babel/parser@npm:^7.28.6, @babel/parser@npm:^7.29.0":
+"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.13.16, @babel/parser@npm:^7.14.0, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.16.8, @babel/parser@npm:^7.20.0, @babel/parser@npm:^7.20.15, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.21.8, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.24.4, @babel/parser@npm:^7.25.3, @babel/parser@npm:^7.25.4, @babel/parser@npm:^7.25.7, @babel/parser@npm:^7.26.10, @babel/parser@npm:^7.26.9, @babel/parser@npm:^7.28.6, @babel/parser@npm:^7.29.0":
version: 7.29.0
resolution: "@babel/parser@npm:7.29.0"
dependencies:
@@ -1238,62 +1254,62 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-bugfix-firefox-class-in-computed-class-key@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-bugfix-firefox-class-in-computed-class-key@npm:7.25.9"
+"@babel/plugin-bugfix-firefox-class-in-computed-class-key@npm:^7.25.9, @babel/plugin-bugfix-firefox-class-in-computed-class-key@npm:^7.28.5":
+ version: 7.28.5
+ resolution: "@babel/plugin-bugfix-firefox-class-in-computed-class-key@npm:7.28.5"
dependencies:
- "@babel/helper-plugin-utils": "npm:^7.25.9"
- "@babel/traverse": "npm:^7.25.9"
+ "@babel/helper-plugin-utils": "npm:^7.27.1"
+ "@babel/traverse": "npm:^7.28.5"
peerDependencies:
"@babel/core": ^7.0.0
- checksum: 10/3c23ef34e3fd7da3578428cb488180ab6b7b96c9c141438374b6d87fa814d87de099f28098e5fc64726c19193a1da397e4d2351d40b459bcd2489993557e2c74
+ checksum: 10/750de98b34e6d09b545ded6e635b43cbab02fe319622964175259b98f41b16052e5931c4fbd45bad8cd0a37ebdd381233edecec9ee395b8ec51f47f47d1dbcd4
languageName: node
linkType: hard
-"@babel/plugin-bugfix-safari-class-field-initializer-scope@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-bugfix-safari-class-field-initializer-scope@npm:7.25.9"
+"@babel/plugin-bugfix-safari-class-field-initializer-scope@npm:^7.25.9, @babel/plugin-bugfix-safari-class-field-initializer-scope@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-bugfix-safari-class-field-initializer-scope@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": "npm:^7.25.9"
+ "@babel/helper-plugin-utils": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0
- checksum: 10/d3e14ab1cb9cb50246d20cab9539f2fbd1e7ef1ded73980c8ad7c0561b4d5e0b144d362225f0976d47898e04cbd40f2000e208b0913bd788346cf7791b96af91
+ checksum: 10/eb7f4146dc01f1198ce559a90b077e58b951a07521ec414e3c7d4593bf6c4ab5c2af22242a7e9fec085e20299e0ba6ea97f44a45e84ab148141bf9eb959ad25e
languageName: node
linkType: hard
-"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:7.25.9"
+"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.25.9, @babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": "npm:^7.25.9"
+ "@babel/helper-plugin-utils": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0
- checksum: 10/a9d1ee3fd100d3eb6799a2f2bbd785296f356c531d75c9369f71541811fa324270258a374db103ce159156d006da2f33370330558d0133e6f7584152c34997ca
+ checksum: 10/621cfddfcc99a81e74f8b6f9101fd260b27500cb1a568e3ceae9cc8afe9aee45ac3bca3900a2b66c612b1a2366d29ef67d4df5a1c975be727eaad6906f98c2c6
languageName: node
linkType: hard
-"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:7.25.9"
+"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.25.9, @babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": "npm:^7.25.9"
- "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.25.9"
- "@babel/plugin-transform-optional-chaining": "npm:^7.25.9"
+ "@babel/helper-plugin-utils": "npm:^7.27.1"
+ "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.27.1"
+ "@babel/plugin-transform-optional-chaining": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.13.0
- checksum: 10/5b298b28e156f64de51cdb03a2c5b80c7f978815ef1026f3ae8b9fc48d28bf0a83817d8fbecb61ef8fb94a7201f62cca5103cc6e7b9e8f28e38f766d7905b378
+ checksum: 10/f07aa80272bd7a46b7ba11a4644da6c9b6a5a64e848dfaffdad6f02663adefd512e1aaebe664c4dd95f7ed4f80c872c7f8db8d8e34b47aae0930b412a28711a0
languageName: node
linkType: hard
-"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:7.25.9"
+"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:^7.25.9, @babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:^7.28.6":
+ version: 7.28.6
+ resolution: "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:7.28.6"
dependencies:
- "@babel/helper-plugin-utils": "npm:^7.25.9"
- "@babel/traverse": "npm:^7.25.9"
+ "@babel/helper-plugin-utils": "npm:^7.28.6"
+ "@babel/traverse": "npm:^7.28.6"
peerDependencies:
"@babel/core": ^7.0.0
- checksum: 10/cb893e5deb9312a0120a399835b6614a016c036714de7123c8edabccc56a09c4455016e083c5c4dd485248546d4e5e55fc0e9132b3c3a9bd16abf534138fe3f2
+ checksum: 10/9377897aa7cba3a0b78a7c6015799ff71504b2b203329357e42ab3185d44aab07344ba33f5dd53f14d5340c1dc5a2587346343e0859538947bbab0484e72b914
languageName: node
linkType: hard
@@ -1459,18 +1475,18 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-syntax-import-assertions@npm:^7.20.0, @babel/plugin-syntax-import-assertions@npm:^7.26.0":
- version: 7.26.0
- resolution: "@babel/plugin-syntax-import-assertions@npm:7.26.0"
+"@babel/plugin-syntax-import-assertions@npm:^7.20.0, @babel/plugin-syntax-import-assertions@npm:^7.26.0, @babel/plugin-syntax-import-assertions@npm:^7.28.6":
+ version: 7.28.6
+ resolution: "@babel/plugin-syntax-import-assertions@npm:7.28.6"
dependencies:
- "@babel/helper-plugin-utils": "npm:^7.25.9"
+ "@babel/helper-plugin-utils": "npm:^7.28.6"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/b58f2306df4a690ca90b763d832ec05202c50af787158ff8b50cdf3354359710bce2e1eb2b5135fcabf284756ac8eadf09ca74764aa7e76d12a5cac5f6b21e67
+ checksum: 10/25017235e1e2c4ed892aa327a3fa10f4209cc618c6dd7806fc40c07d8d7d24a39743d3d5568b8d1c8f416cffe03c174e78874ded513c9338b07a7ab1dcbab050
languageName: node
linkType: hard
-"@babel/plugin-syntax-import-attributes@npm:7.26.0, @babel/plugin-syntax-import-attributes@npm:^7.26.0":
+"@babel/plugin-syntax-import-attributes@npm:7.26.0":
version: 7.26.0
resolution: "@babel/plugin-syntax-import-attributes@npm:7.26.0"
dependencies:
@@ -1481,6 +1497,17 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-syntax-import-attributes@npm:^7.26.0, @babel/plugin-syntax-import-attributes@npm:^7.28.6":
+ version: 7.28.6
+ resolution: "@babel/plugin-syntax-import-attributes@npm:7.28.6"
+ dependencies:
+ "@babel/helper-plugin-utils": "npm:^7.28.6"
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 10/6c8c6a5988dbb9799d6027360d1a5ba64faabf551f2ef11ba4eade0c62253b5c85d44ddc8eb643c74b9acb2bcaa664a950bd5de9a5d4aef291c4f2a48223bb4b
+ languageName: node
+ linkType: hard
+
"@babel/plugin-syntax-import-meta@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-import-meta@npm:7.10.4"
@@ -1503,14 +1530,14 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-syntax-jsx@npm:^7.0.0, @babel/plugin-syntax-jsx@npm:^7.21.4, @babel/plugin-syntax-jsx@npm:^7.25.9, @babel/plugin-syntax-jsx@npm:^7.27.1, @babel/plugin-syntax-jsx@npm:^7.7.2":
- version: 7.27.1
- resolution: "@babel/plugin-syntax-jsx@npm:7.27.1"
+"@babel/plugin-syntax-jsx@npm:^7.0.0, @babel/plugin-syntax-jsx@npm:^7.21.4, @babel/plugin-syntax-jsx@npm:^7.27.1, @babel/plugin-syntax-jsx@npm:^7.28.6, @babel/plugin-syntax-jsx@npm:^7.7.2":
+ version: 7.28.6
+ resolution: "@babel/plugin-syntax-jsx@npm:7.28.6"
dependencies:
- "@babel/helper-plugin-utils": "npm:^7.27.1"
+ "@babel/helper-plugin-utils": "npm:^7.28.6"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/c6d1324cff286a369aa95d99b8abd21dd07821b5d3affd5fe7d6058c84cff9190743287826463ee57a7beecd10fa1e4bc99061df532ee14e188c1c8937b13e3a
+ checksum: 10/572e38f5c1bb4b8124300e7e3dd13e82ae84a21f90d3f0786c98cd05e63c78ca1f32d1cfe462dfbaf5e7d5102fa7cd8fd741dfe4f3afc2e01a3b2877dcc8c866
languageName: node
linkType: hard
@@ -1591,14 +1618,14 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-syntax-typescript@npm:^7.20.0, @babel/plugin-syntax-typescript@npm:^7.27.1, @babel/plugin-syntax-typescript@npm:^7.7.2":
- version: 7.27.1
- resolution: "@babel/plugin-syntax-typescript@npm:7.27.1"
+"@babel/plugin-syntax-typescript@npm:^7.20.0, @babel/plugin-syntax-typescript@npm:^7.28.6, @babel/plugin-syntax-typescript@npm:^7.7.2":
+ version: 7.28.6
+ resolution: "@babel/plugin-syntax-typescript@npm:7.28.6"
dependencies:
- "@babel/helper-plugin-utils": "npm:^7.27.1"
+ "@babel/helper-plugin-utils": "npm:^7.28.6"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/87836f7e32af624c2914c73cd6b9803cf324e07d43f61dbb973c6a86f75df725e12540d91fac7141c14b697aa9268fd064220998daced156e96ac3062d7afb41
+ checksum: 10/5c55f9c63bd36cf3d7e8db892294c8f85000f9c1526c3a1cc310d47d1e174f5c6f6605e5cc902c4636d885faba7a9f3d5e5edc6b35e4f3b1fd4c2d58d0304fa5
languageName: node
linkType: hard
@@ -1614,14 +1641,14 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-arrow-functions@npm:^7.0.0, @babel/plugin-transform-arrow-functions@npm:^7.0.0-0, @babel/plugin-transform-arrow-functions@npm:^7.24.7, @babel/plugin-transform-arrow-functions@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-arrow-functions@npm:7.25.9"
+"@babel/plugin-transform-arrow-functions@npm:^7.0.0, @babel/plugin-transform-arrow-functions@npm:^7.0.0-0, @babel/plugin-transform-arrow-functions@npm:^7.24.7, @babel/plugin-transform-arrow-functions@npm:^7.25.9, @babel/plugin-transform-arrow-functions@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-arrow-functions@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": "npm:^7.25.9"
+ "@babel/helper-plugin-utils": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/c29f081224859483accf55fb4d091db2aac0dcd0d7954bac5ca889030cc498d3f771aa20eb2e9cd8310084ec394d85fa084b97faf09298b6bc9541182b3eb5bb
+ checksum: 10/62c2cc0ae2093336b1aa1376741c5ed245c0987d9e4b4c5313da4a38155509a7098b5acce582b6781cc0699381420010da2e3086353344abe0a6a0ec38961eb7
languageName: node
linkType: hard
@@ -1638,7 +1665,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-async-generator-functions@npm:^7.25.4, @babel/plugin-transform-async-generator-functions@npm:^7.26.8":
+"@babel/plugin-transform-async-generator-functions@npm:^7.25.4, @babel/plugin-transform-async-generator-functions@npm:^7.26.8, @babel/plugin-transform-async-generator-functions@npm:^7.28.6":
version: 7.29.0
resolution: "@babel/plugin-transform-async-generator-functions@npm:7.29.0"
dependencies:
@@ -1651,7 +1678,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-async-to-generator@npm:7.25.9, @babel/plugin-transform-async-to-generator@npm:^7.24.7, @babel/plugin-transform-async-to-generator@npm:^7.25.9":
+"@babel/plugin-transform-async-to-generator@npm:7.25.9":
version: 7.25.9
resolution: "@babel/plugin-transform-async-to-generator@npm:7.25.9"
dependencies:
@@ -1664,7 +1691,20 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-block-scoped-functions@npm:^7.0.0, @babel/plugin-transform-block-scoped-functions@npm:^7.26.5":
+"@babel/plugin-transform-async-to-generator@npm:^7.24.7, @babel/plugin-transform-async-to-generator@npm:^7.25.9, @babel/plugin-transform-async-to-generator@npm:^7.28.6":
+ version: 7.28.6
+ resolution: "@babel/plugin-transform-async-to-generator@npm:7.28.6"
+ dependencies:
+ "@babel/helper-module-imports": "npm:^7.28.6"
+ "@babel/helper-plugin-utils": "npm:^7.28.6"
+ "@babel/helper-remap-async-to-generator": "npm:^7.27.1"
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 10/bca5774263ec01dd2bf71c74bbaf7baa183bf03576636b7826c3346be70c8c8cb15cff549112f2983c36885131a0afde6c443591278c281f733ee17f455aa9b1
+ languageName: node
+ linkType: hard
+
+"@babel/plugin-transform-block-scoped-functions@npm:^7.0.0, @babel/plugin-transform-block-scoped-functions@npm:^7.26.5, @babel/plugin-transform-block-scoped-functions@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.27.1"
dependencies:
@@ -1675,128 +1715,140 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-block-scoping@npm:^7.0.0, @babel/plugin-transform-block-scoping@npm:^7.25.0, @babel/plugin-transform-block-scoping@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-block-scoping@npm:7.25.9"
+"@babel/plugin-transform-block-scoping@npm:^7.0.0, @babel/plugin-transform-block-scoping@npm:^7.25.0, @babel/plugin-transform-block-scoping@npm:^7.25.9, @babel/plugin-transform-block-scoping@npm:^7.28.6":
+ version: 7.28.6
+ resolution: "@babel/plugin-transform-block-scoping@npm:7.28.6"
dependencies:
- "@babel/helper-plugin-utils": "npm:^7.25.9"
+ "@babel/helper-plugin-utils": "npm:^7.28.6"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/89dcdd7edb1e0c2f44e3c568a8ad8202e2574a8a8308248550a9391540bc3f5c9fbd8352c60ae90769d46f58d3ab36f2c3a0fbc1c3620813d92ff6fccdfa79c8
+ checksum: 10/7ab8a0856024a5360ba16c3569b739385e939bc5a15ad7d811bec8459361a9aa5ee7c5f154a4e2ce79f5d66779c19464e7532600c31a1b6f681db4eb7e1c7bde
languageName: node
linkType: hard
-"@babel/plugin-transform-class-properties@npm:^7.0.0-0, @babel/plugin-transform-class-properties@npm:^7.25.4, @babel/plugin-transform-class-properties@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-class-properties@npm:7.25.9"
+"@babel/plugin-transform-class-properties@npm:^7.0.0-0, @babel/plugin-transform-class-properties@npm:^7.25.4, @babel/plugin-transform-class-properties@npm:^7.25.9, @babel/plugin-transform-class-properties@npm:^7.28.6":
+ version: 7.28.6
+ resolution: "@babel/plugin-transform-class-properties@npm:7.28.6"
dependencies:
- "@babel/helper-create-class-features-plugin": "npm:^7.25.9"
- "@babel/helper-plugin-utils": "npm:^7.25.9"
+ "@babel/helper-create-class-features-plugin": "npm:^7.28.6"
+ "@babel/helper-plugin-utils": "npm:^7.28.6"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/a8d69e2c285486b63f49193cbcf7a15e1d3a5f632c1c07d7a97f65306df7f554b30270b7378dde143f8b557d1f8f6336c643377943dec8ec405e4cd11e90b9ea
+ checksum: 10/200f30d44b36a768fa3a8cf690db9e333996af2ad14d9fa1b4c91a427ed9302907873b219b4ce87517ca1014a810eb2e929a6a66be68473f72b546fc64d04fbc
languageName: node
linkType: hard
-"@babel/plugin-transform-class-static-block@npm:^7.26.0":
- version: 7.26.0
- resolution: "@babel/plugin-transform-class-static-block@npm:7.26.0"
+"@babel/plugin-transform-class-static-block@npm:^7.26.0, @babel/plugin-transform-class-static-block@npm:^7.28.6":
+ version: 7.28.6
+ resolution: "@babel/plugin-transform-class-static-block@npm:7.28.6"
dependencies:
- "@babel/helper-create-class-features-plugin": "npm:^7.25.9"
- "@babel/helper-plugin-utils": "npm:^7.25.9"
+ "@babel/helper-create-class-features-plugin": "npm:^7.28.6"
+ "@babel/helper-plugin-utils": "npm:^7.28.6"
peerDependencies:
"@babel/core": ^7.12.0
- checksum: 10/60cba3f125a7bc4f90706af0a011697c7ffd2eddfba336ed6f84c5f358c44c3161af18b0202475241a96dee7964d96dd3a342f46dbf85b75b38bb789326e1766
+ checksum: 10/bea7836846deefd02d9976ad1b30b5ade0d6329ecd92866db789dcf6aacfaf900b7a77031e25680f8de5ad636a771a5bdca8961361e6218d45d538ec5d9b71cc
languageName: node
linkType: hard
-"@babel/plugin-transform-classes@npm:^7.0.0, @babel/plugin-transform-classes@npm:^7.0.0-0, @babel/plugin-transform-classes@npm:^7.25.4, @babel/plugin-transform-classes@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-classes@npm:7.25.9"
+"@babel/plugin-transform-classes@npm:^7.0.0, @babel/plugin-transform-classes@npm:^7.0.0-0, @babel/plugin-transform-classes@npm:^7.25.4, @babel/plugin-transform-classes@npm:^7.25.9, @babel/plugin-transform-classes@npm:^7.28.6":
+ version: 7.28.6
+ resolution: "@babel/plugin-transform-classes@npm:7.28.6"
dependencies:
- "@babel/helper-annotate-as-pure": "npm:^7.25.9"
- "@babel/helper-compilation-targets": "npm:^7.25.9"
- "@babel/helper-plugin-utils": "npm:^7.25.9"
- "@babel/helper-replace-supers": "npm:^7.25.9"
- "@babel/traverse": "npm:^7.25.9"
- globals: "npm:^11.1.0"
+ "@babel/helper-annotate-as-pure": "npm:^7.27.3"
+ "@babel/helper-compilation-targets": "npm:^7.28.6"
+ "@babel/helper-globals": "npm:^7.28.0"
+ "@babel/helper-plugin-utils": "npm:^7.28.6"
+ "@babel/helper-replace-supers": "npm:^7.28.6"
+ "@babel/traverse": "npm:^7.28.6"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/1914ebe152f35c667fba7bf17ce0d9d0f33df2fb4491990ce9bb1f9ec5ae8cbd11d95b0dc371f7a4cc5e7ce4cf89467c3e34857302911fc6bfb6494a77f7b37e
+ checksum: 10/9c3278a314d1c4bcda792bb22aced20e30c735557daf9bcc56397c0f3eb54761b21c770219e4581036a10dabda3e597321ed093bc245d5f4d561e19ceff66a6d
languageName: node
linkType: hard
-"@babel/plugin-transform-computed-properties@npm:^7.0.0, @babel/plugin-transform-computed-properties@npm:^7.24.7, @babel/plugin-transform-computed-properties@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-computed-properties@npm:7.25.9"
+"@babel/plugin-transform-computed-properties@npm:^7.0.0, @babel/plugin-transform-computed-properties@npm:^7.24.7, @babel/plugin-transform-computed-properties@npm:^7.25.9, @babel/plugin-transform-computed-properties@npm:^7.28.6":
+ version: 7.28.6
+ resolution: "@babel/plugin-transform-computed-properties@npm:7.28.6"
dependencies:
- "@babel/helper-plugin-utils": "npm:^7.25.9"
- "@babel/template": "npm:^7.25.9"
+ "@babel/helper-plugin-utils": "npm:^7.28.6"
+ "@babel/template": "npm:^7.28.6"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/aa1a9064d6a9d3b569b8cae6972437315a38a8f6553ee618406da5122500a06c2f20b9fa93aeed04dd895923bf6f529c09fc79d4be987ec41785ceb7d2203122
+ checksum: 10/4a5e270f7e1f1e9787cf7cf133d48e3c1e38eb935d29a90331a1324d7c720f589b7b626b2e6485cd5521a7a13f2dbdc89a3e46ecbe7213d5bbb631175267c4aa
languageName: node
linkType: hard
-"@babel/plugin-transform-destructuring@npm:^7.0.0, @babel/plugin-transform-destructuring@npm:^7.24.8, @babel/plugin-transform-destructuring@npm:^7.25.9, @babel/plugin-transform-destructuring@npm:^7.28.0":
- version: 7.28.0
- resolution: "@babel/plugin-transform-destructuring@npm:7.28.0"
+"@babel/plugin-transform-destructuring@npm:^7.0.0, @babel/plugin-transform-destructuring@npm:^7.24.8, @babel/plugin-transform-destructuring@npm:^7.25.9, @babel/plugin-transform-destructuring@npm:^7.28.5":
+ version: 7.28.5
+ resolution: "@babel/plugin-transform-destructuring@npm:7.28.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.27.1"
- "@babel/traverse": "npm:^7.28.0"
+ "@babel/traverse": "npm:^7.28.5"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/cddab2520ff32d18005670fc6646396a253d3811d1ccc49f6f858469f05985ee896c346a0cb34d1cf25155c9be76d1068ff878cf8e8459bd3fa27513ec5a6802
+ checksum: 10/9cc67d3377bc5d8063599f2eb4588f5f9a8ab3abc9b64a40c24501fb3c1f91f4d5cf281ea9f208fd6b2ef8d9d8b018dacf1bed9493334577c966cd32370a7036
languageName: node
linkType: hard
-"@babel/plugin-transform-dotall-regex@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-dotall-regex@npm:7.25.9"
+"@babel/plugin-transform-dotall-regex@npm:^7.25.9, @babel/plugin-transform-dotall-regex@npm:^7.28.6":
+ version: 7.28.6
+ resolution: "@babel/plugin-transform-dotall-regex@npm:7.28.6"
dependencies:
- "@babel/helper-create-regexp-features-plugin": "npm:^7.25.9"
- "@babel/helper-plugin-utils": "npm:^7.25.9"
+ "@babel/helper-create-regexp-features-plugin": "npm:^7.28.5"
+ "@babel/helper-plugin-utils": "npm:^7.28.6"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/8bdf1bb9e6e3a2cc8154ae88a3872faa6dc346d6901994505fb43ac85f858728781f1219f40b67f7bb0687c507450236cb7838ac68d457e65637f98500aa161b
+ checksum: 10/866ffbbdee77fa955063b37c75593db8dbbe46b1ebb64cc788ea437e3a9aa41cb7b9afcee617c678a32b6705baa0892ec8e5d4b8af3bbb0ab1b254514ccdbd37
languageName: node
linkType: hard
-"@babel/plugin-transform-duplicate-keys@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-duplicate-keys@npm:7.25.9"
+"@babel/plugin-transform-duplicate-keys@npm:^7.25.9, @babel/plugin-transform-duplicate-keys@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-duplicate-keys@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": "npm:^7.25.9"
+ "@babel/helper-plugin-utils": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/10dbb87bc09582416f9f97ca6c40563655abf33e3fd0fee25eeaeff28e946a06651192112a2bc2b18c314a638fa15c55b8365a677ef67aa490848cefdc57e1d8
+ checksum: 10/987b718d2fab7626f61b72325c8121ead42341d6f46ad3a9b5e5f67f3ec558c903f1b8336277ffc43caac504ce00dd23a5456b5d1da23913333e1da77751f08d
languageName: node
linkType: hard
-"@babel/plugin-transform-duplicate-named-capturing-groups-regex@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-duplicate-named-capturing-groups-regex@npm:7.25.9"
+"@babel/plugin-transform-duplicate-named-capturing-groups-regex@npm:^7.25.9, @babel/plugin-transform-duplicate-named-capturing-groups-regex@npm:^7.28.6":
+ version: 7.28.6
+ resolution: "@babel/plugin-transform-duplicate-named-capturing-groups-regex@npm:7.28.6"
dependencies:
- "@babel/helper-create-regexp-features-plugin": "npm:^7.25.9"
- "@babel/helper-plugin-utils": "npm:^7.25.9"
+ "@babel/helper-create-regexp-features-plugin": "npm:^7.28.5"
+ "@babel/helper-plugin-utils": "npm:^7.28.6"
peerDependencies:
"@babel/core": ^7.0.0
- checksum: 10/f7233cf596be8c6843d31951afaf2464a62a610cb89c72c818c044765827fab78403ab8a7d3a6386f838c8df574668e2a48f6c206b1d7da965aff9c6886cb8e6
+ checksum: 10/3f2e2b85199adfdc3297983412c2ecdacc0004bc5ac3263d29909219b8c5afa2ca49e3b6efc11ce67034d5780eef27882a94873444cf27d841d7fa7f01d7dcff
languageName: node
linkType: hard
-"@babel/plugin-transform-dynamic-import@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-dynamic-import@npm:7.25.9"
+"@babel/plugin-transform-dynamic-import@npm:^7.25.9, @babel/plugin-transform-dynamic-import@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-dynamic-import@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": "npm:^7.25.9"
+ "@babel/helper-plugin-utils": "npm:^7.27.1"
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 10/7a9fbc8d17148b7f11a1d1ca3990d2c2cd44bd08a45dcaf14f20a017721235b9044b20e6168b6940282bb1b48fb78e6afbdfb9dd9d82fde614e15baa7d579932
+ languageName: node
+ linkType: hard
+
+"@babel/plugin-transform-explicit-resource-management@npm:^7.28.6":
+ version: 7.28.6
+ resolution: "@babel/plugin-transform-explicit-resource-management@npm:7.28.6"
+ dependencies:
+ "@babel/helper-plugin-utils": "npm:^7.28.6"
+ "@babel/plugin-transform-destructuring": "npm:^7.28.5"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/aaca1ccda819be9b2b85af47ba08ddd2210ff2dbea222f26e4cd33f97ab020884bf81a66197e50872721e9daf36ceb5659502c82199884ea74d5d75ecda5c58b
+ checksum: 10/36d638a253dbdaee5548b4ddd21c04ee4e39914b207437bb64cf79bb41c2caadb4321768d3dba308c1016702649bc44efe751e2052de393004563c7376210d86
languageName: node
linkType: hard
-"@babel/plugin-transform-exponentiation-operator@npm:^7.26.3":
+"@babel/plugin-transform-exponentiation-operator@npm:^7.26.3, @babel/plugin-transform-exponentiation-operator@npm:^7.28.6":
version: 7.28.6
resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.28.6"
dependencies:
@@ -1807,7 +1859,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-export-namespace-from@npm:^7.22.11, @babel/plugin-transform-export-namespace-from@npm:^7.25.9":
+"@babel/plugin-transform-export-namespace-from@npm:^7.22.11, @babel/plugin-transform-export-namespace-from@npm:^7.25.9, @babel/plugin-transform-export-namespace-from@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/plugin-transform-export-namespace-from@npm:7.27.1"
dependencies:
@@ -1818,7 +1870,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-flow-strip-types@npm:^7.0.0, @babel/plugin-transform-flow-strip-types@npm:^7.25.2, @babel/plugin-transform-flow-strip-types@npm:^7.27.1":
+"@babel/plugin-transform-flow-strip-types@npm:^7.0.0, @babel/plugin-transform-flow-strip-types@npm:^7.25.2, @babel/plugin-transform-flow-strip-types@npm:^7.26.5, @babel/plugin-transform-flow-strip-types@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/plugin-transform-flow-strip-types@npm:7.27.1"
dependencies:
@@ -1830,7 +1882,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-for-of@npm:^7.0.0, @babel/plugin-transform-for-of@npm:^7.24.7, @babel/plugin-transform-for-of@npm:^7.26.9":
+"@babel/plugin-transform-for-of@npm:^7.0.0, @babel/plugin-transform-for-of@npm:^7.24.7, @babel/plugin-transform-for-of@npm:^7.26.9, @babel/plugin-transform-for-of@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/plugin-transform-for-of@npm:7.27.1"
dependencies:
@@ -1842,76 +1894,76 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-function-name@npm:^7.0.0, @babel/plugin-transform-function-name@npm:^7.25.1, @babel/plugin-transform-function-name@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-function-name@npm:7.25.9"
+"@babel/plugin-transform-function-name@npm:^7.0.0, @babel/plugin-transform-function-name@npm:^7.25.1, @babel/plugin-transform-function-name@npm:^7.25.9, @babel/plugin-transform-function-name@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-function-name@npm:7.27.1"
dependencies:
- "@babel/helper-compilation-targets": "npm:^7.25.9"
- "@babel/helper-plugin-utils": "npm:^7.25.9"
- "@babel/traverse": "npm:^7.25.9"
+ "@babel/helper-compilation-targets": "npm:^7.27.1"
+ "@babel/helper-plugin-utils": "npm:^7.27.1"
+ "@babel/traverse": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/a8d7c8d019a6eb57eab5ca1be3e3236f175557d55b1f3b11f8ad7999e3fbb1cf37905fd8cb3a349bffb4163a558e9f33b63f631597fdc97c858757deac1b2fd7
+ checksum: 10/26a2a183c3c52a96495967420a64afc5a09f743a230272a131668abf23001e393afa6371e6f8e6c60f4182bea210ed31d1caf866452d91009c1daac345a52f23
languageName: node
linkType: hard
-"@babel/plugin-transform-json-strings@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-json-strings@npm:7.25.9"
+"@babel/plugin-transform-json-strings@npm:^7.25.9, @babel/plugin-transform-json-strings@npm:^7.28.6":
+ version: 7.28.6
+ resolution: "@babel/plugin-transform-json-strings@npm:7.28.6"
dependencies:
- "@babel/helper-plugin-utils": "npm:^7.25.9"
+ "@babel/helper-plugin-utils": "npm:^7.28.6"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/e2498d84761cfd05aaea53799933d55af309c9d6204e66b38778792d171e4d1311ad34f334259a3aa3407dd0446f6bd3e390a1fcb8ce2e42fe5aabed0e41bee1
+ checksum: 10/69d82a1a0a72ed6e6f7969e09cf330516599d79b2b4e680e9dd3c57616a8c6af049b5103456e370ab56642815e80e46ed88bb81e9e059304a85c5fe0bf137c29
languageName: node
linkType: hard
-"@babel/plugin-transform-literals@npm:^7.0.0, @babel/plugin-transform-literals@npm:^7.25.2, @babel/plugin-transform-literals@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-literals@npm:7.25.9"
+"@babel/plugin-transform-literals@npm:^7.0.0, @babel/plugin-transform-literals@npm:^7.25.2, @babel/plugin-transform-literals@npm:^7.25.9, @babel/plugin-transform-literals@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-literals@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": "npm:^7.25.9"
+ "@babel/helper-plugin-utils": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/3cca75823a38aab599bc151b0fa4d816b5e1b62d6e49c156aa90436deb6e13649f5505973151a10418b64f3f9d1c3da53e38a186402e0ed7ad98e482e70c0c14
+ checksum: 10/0a76d12ab19f32dd139964aea7da48cecdb7de0b75e207e576f0f700121fe92367d788f328bf4fb44b8261a0f605c97b44e62ae61cddbb67b14e94c88b411f95
languageName: node
linkType: hard
-"@babel/plugin-transform-logical-assignment-operators@npm:^7.24.7, @babel/plugin-transform-logical-assignment-operators@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-logical-assignment-operators@npm:7.25.9"
+"@babel/plugin-transform-logical-assignment-operators@npm:^7.24.7, @babel/plugin-transform-logical-assignment-operators@npm:^7.25.9, @babel/plugin-transform-logical-assignment-operators@npm:^7.28.6":
+ version: 7.28.6
+ resolution: "@babel/plugin-transform-logical-assignment-operators@npm:7.28.6"
dependencies:
- "@babel/helper-plugin-utils": "npm:^7.25.9"
+ "@babel/helper-plugin-utils": "npm:^7.28.6"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/8c6febb4ac53852314d28b5e2c23d5dbbff7bf1e57d61f9672e0d97531ef7778b3f0ad698dcf1179f5486e626c77127508916a65eb846a89e98a92f70ed3537b
+ checksum: 10/36095d5d1cfc680e95298b5389a16016da800ae3379b130dabf557e94652c47b06610407e9fa44aaa03e9b0a5aa7b4b93348123985d44a45e369bf5f3497d149
languageName: node
linkType: hard
-"@babel/plugin-transform-member-expression-literals@npm:^7.0.0, @babel/plugin-transform-member-expression-literals@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-member-expression-literals@npm:7.25.9"
+"@babel/plugin-transform-member-expression-literals@npm:^7.0.0, @babel/plugin-transform-member-expression-literals@npm:^7.25.9, @babel/plugin-transform-member-expression-literals@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-member-expression-literals@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": "npm:^7.25.9"
+ "@babel/helper-plugin-utils": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/db92041ae87b8f59f98b50359e0bb172480f6ba22e5e76b13bdfe07122cbf0daa9cd8ad2e78dcb47939938fed88ad57ab5989346f64b3a16953fc73dea3a9b1f
+ checksum: 10/804121430a6dcd431e6ffe99c6d1fbbc44b43478113b79c677629e7f877b4f78a06b69c6bfb2747fd84ee91879fe2eb32e4620b53124603086cf5b727593ebe8
languageName: node
linkType: hard
-"@babel/plugin-transform-modules-amd@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-modules-amd@npm:7.25.9"
+"@babel/plugin-transform-modules-amd@npm:^7.25.9, @babel/plugin-transform-modules-amd@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-modules-amd@npm:7.27.1"
dependencies:
- "@babel/helper-module-transforms": "npm:^7.25.9"
- "@babel/helper-plugin-utils": "npm:^7.25.9"
+ "@babel/helper-module-transforms": "npm:^7.27.1"
+ "@babel/helper-plugin-utils": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/75d34c6e709a23bcfa0e06f722c9a72b1d9ac3e7d72a07ef54a943d32f65f97cbbf0e387d874eb9d9b4c8d33045edfa8e8441d0f8794f3c2b9f1d71b928acf2c
+ checksum: 10/5ca9257981f2bbddd9dccf9126f1368de1cb335e7a5ff5cca9282266825af5b18b5f06c144320dcf5d2a200d2b53b6d22d9b801a55dc0509ab5a5838af7e61b7
languageName: node
linkType: hard
-"@babel/plugin-transform-modules-commonjs@npm:^7.0.0, @babel/plugin-transform-modules-commonjs@npm:^7.13.8, @babel/plugin-transform-modules-commonjs@npm:^7.24.8, @babel/plugin-transform-modules-commonjs@npm:^7.26.3, @babel/plugin-transform-modules-commonjs@npm:^7.27.1":
+"@babel/plugin-transform-modules-commonjs@npm:^7.0.0, @babel/plugin-transform-modules-commonjs@npm:^7.13.8, @babel/plugin-transform-modules-commonjs@npm:^7.24.8, @babel/plugin-transform-modules-commonjs@npm:^7.26.3, @babel/plugin-transform-modules-commonjs@npm:^7.27.1, @babel/plugin-transform-modules-commonjs@npm:^7.28.6":
version: 7.28.6
resolution: "@babel/plugin-transform-modules-commonjs@npm:7.28.6"
dependencies:
@@ -1923,56 +1975,56 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-modules-systemjs@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-modules-systemjs@npm:7.25.9"
+"@babel/plugin-transform-modules-systemjs@npm:^7.25.9, @babel/plugin-transform-modules-systemjs@npm:^7.28.5":
+ version: 7.28.5
+ resolution: "@babel/plugin-transform-modules-systemjs@npm:7.28.5"
dependencies:
- "@babel/helper-module-transforms": "npm:^7.25.9"
- "@babel/helper-plugin-utils": "npm:^7.25.9"
- "@babel/helper-validator-identifier": "npm:^7.25.9"
- "@babel/traverse": "npm:^7.25.9"
+ "@babel/helper-module-transforms": "npm:^7.28.3"
+ "@babel/helper-plugin-utils": "npm:^7.27.1"
+ "@babel/helper-validator-identifier": "npm:^7.28.5"
+ "@babel/traverse": "npm:^7.28.5"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/03145aa89b7c867941a03755216cfb503df6d475a78df84849a157fa5f2fcc17ba114a968d0579ae34e7c61403f35d1ba5d188fdfb9ad05f19354eb7605792f9
+ checksum: 10/1b91b4848845eaf6e21663d97a2a6c896553b127deaf3c2e9a2a4f041249277d13ebf71fd42d0ecbc4385e9f76093eff592fe0da0dcf1401b3f38c1615d8c539
languageName: node
linkType: hard
-"@babel/plugin-transform-modules-umd@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-modules-umd@npm:7.25.9"
+"@babel/plugin-transform-modules-umd@npm:^7.25.9, @babel/plugin-transform-modules-umd@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-modules-umd@npm:7.27.1"
dependencies:
- "@babel/helper-module-transforms": "npm:^7.25.9"
- "@babel/helper-plugin-utils": "npm:^7.25.9"
+ "@babel/helper-module-transforms": "npm:^7.27.1"
+ "@babel/helper-plugin-utils": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/47d03485fedac828832d9fee33b3b982a6db8197e8651ceb5d001890e276150b5a7ee3e9780749e1ba76453c471af907a159108832c24f93453dd45221788e97
+ checksum: 10/7388932863b4ee01f177eb6c2e2df9e2312005e43ada99897624d5565db4b9cef1e30aa7ad2c79bbe5373f284cfcddea98d8fe212714a24c6aba223272163058
languageName: node
linkType: hard
-"@babel/plugin-transform-named-capturing-groups-regex@npm:^7.24.7, @babel/plugin-transform-named-capturing-groups-regex@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-named-capturing-groups-regex@npm:7.25.9"
+"@babel/plugin-transform-named-capturing-groups-regex@npm:^7.24.7, @babel/plugin-transform-named-capturing-groups-regex@npm:^7.25.9, @babel/plugin-transform-named-capturing-groups-regex@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-named-capturing-groups-regex@npm:7.27.1"
dependencies:
- "@babel/helper-create-regexp-features-plugin": "npm:^7.25.9"
- "@babel/helper-plugin-utils": "npm:^7.25.9"
+ "@babel/helper-create-regexp-features-plugin": "npm:^7.27.1"
+ "@babel/helper-plugin-utils": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0
- checksum: 10/434346ba05cf74e3f4704b3bdd439287b95cd2a8676afcdc607810b8c38b6f4798cd69c1419726b2e4c7204e62e4a04d31b0360e91ca57a930521c9211e07789
+ checksum: 10/a711c92d9753df26cefc1792481e5cbff4fe4f32b383d76b25e36fa865d8023b1b9aa6338cf18f5c0e864c71a7fbe8115e840872ccd61a914d9953849c68de7d
languageName: node
linkType: hard
-"@babel/plugin-transform-new-target@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-new-target@npm:7.25.9"
+"@babel/plugin-transform-new-target@npm:^7.25.9, @babel/plugin-transform-new-target@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-new-target@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": "npm:^7.25.9"
+ "@babel/helper-plugin-utils": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/07bb3a09028ee7b8e8ede6e6390e3b3aecc5cf9adb2fc5475ff58036c552b8a3f8e63d4c43211a60545f3307cdc15919f0e54cb5455d9546daed162dc54ff94e
+ checksum: 10/620d78ee476ae70960989e477dc86031ffa3d554b1b1999e6ec95261629f7a13e5a7b98579c63a009f9fdf14def027db57de1f0ae1f06fb6eaed8908ff65cf68
languageName: node
linkType: hard
-"@babel/plugin-transform-nullish-coalescing-operator@npm:^7.0.0-0, @babel/plugin-transform-nullish-coalescing-operator@npm:^7.24.7, @babel/plugin-transform-nullish-coalescing-operator@npm:^7.26.6":
+"@babel/plugin-transform-nullish-coalescing-operator@npm:^7.0.0-0, @babel/plugin-transform-nullish-coalescing-operator@npm:^7.24.7, @babel/plugin-transform-nullish-coalescing-operator@npm:^7.26.6, @babel/plugin-transform-nullish-coalescing-operator@npm:^7.28.6":
version: 7.28.6
resolution: "@babel/plugin-transform-nullish-coalescing-operator@npm:7.28.6"
dependencies:
@@ -1983,64 +2035,64 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-numeric-separator@npm:^7.24.7, @babel/plugin-transform-numeric-separator@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-numeric-separator@npm:7.25.9"
+"@babel/plugin-transform-numeric-separator@npm:^7.24.7, @babel/plugin-transform-numeric-separator@npm:^7.25.9, @babel/plugin-transform-numeric-separator@npm:^7.28.6":
+ version: 7.28.6
+ resolution: "@babel/plugin-transform-numeric-separator@npm:7.28.6"
dependencies:
- "@babel/helper-plugin-utils": "npm:^7.25.9"
+ "@babel/helper-plugin-utils": "npm:^7.28.6"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/0528ef041ed88e8c3f51624ee87b8182a7f246fe4013f0572788e0727d20795b558f2b82e3989b5dd416cbd339500f0d88857de41b6d3b6fdacb1d5344bcc5b1
+ checksum: 10/4b5ca60e481e22f0842761a3badca17376a230b5a7e5482338604eb95836c2d0c9c9bde53bdc5c2de1c6a12ae6c12de7464d098bf74b0943f85905ca358f0b68
languageName: node
linkType: hard
-"@babel/plugin-transform-object-rest-spread@npm:^7.12.13, @babel/plugin-transform-object-rest-spread@npm:^7.24.7, @babel/plugin-transform-object-rest-spread@npm:^7.25.9":
- version: 7.28.0
- resolution: "@babel/plugin-transform-object-rest-spread@npm:7.28.0"
+"@babel/plugin-transform-object-rest-spread@npm:^7.12.13, @babel/plugin-transform-object-rest-spread@npm:^7.24.7, @babel/plugin-transform-object-rest-spread@npm:^7.25.9, @babel/plugin-transform-object-rest-spread@npm:^7.28.6":
+ version: 7.28.6
+ resolution: "@babel/plugin-transform-object-rest-spread@npm:7.28.6"
dependencies:
- "@babel/helper-compilation-targets": "npm:^7.27.2"
- "@babel/helper-plugin-utils": "npm:^7.27.1"
- "@babel/plugin-transform-destructuring": "npm:^7.28.0"
+ "@babel/helper-compilation-targets": "npm:^7.28.6"
+ "@babel/helper-plugin-utils": "npm:^7.28.6"
+ "@babel/plugin-transform-destructuring": "npm:^7.28.5"
"@babel/plugin-transform-parameters": "npm:^7.27.7"
- "@babel/traverse": "npm:^7.28.0"
+ "@babel/traverse": "npm:^7.28.6"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/55d37dbc0d5d47db860b7cc9fe5e3660d83108113fc3f2a7daecb95c20d4046a70247777969006f7db8fb2005eeeda719b9ff21e9f6d43355d0a62fc41b5880e
+ checksum: 10/9c8c51a515a5ec98a33a715e82d49f873e58b04b53fa1e826f3c2009f7133cd396d6730553a53d265e096dbfbea17dd100ae38815d0b506c094cb316a7a5519e
languageName: node
linkType: hard
-"@babel/plugin-transform-object-super@npm:^7.0.0, @babel/plugin-transform-object-super@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-object-super@npm:7.25.9"
+"@babel/plugin-transform-object-super@npm:^7.0.0, @babel/plugin-transform-object-super@npm:^7.25.9, @babel/plugin-transform-object-super@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-object-super@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": "npm:^7.25.9"
- "@babel/helper-replace-supers": "npm:^7.25.9"
+ "@babel/helper-plugin-utils": "npm:^7.27.1"
+ "@babel/helper-replace-supers": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/1817b5d8b80e451ae1ad9080cca884f4f16df75880a158947df76a2ed8ab404d567a7dce71dd8051ef95f90fbe3513154086a32aba55cc76027f6cbabfbd7f98
+ checksum: 10/46b819cb9a6cd3cfefe42d07875fee414f18d5e66040366ae856116db560ad4e16f3899a0a7fddd6773e0d1458444f94b208b67c0e3b6977a27ea17a5c13dbf6
languageName: node
linkType: hard
-"@babel/plugin-transform-optional-catch-binding@npm:^7.24.7, @babel/plugin-transform-optional-catch-binding@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-optional-catch-binding@npm:7.25.9"
+"@babel/plugin-transform-optional-catch-binding@npm:^7.24.7, @babel/plugin-transform-optional-catch-binding@npm:^7.25.9, @babel/plugin-transform-optional-catch-binding@npm:^7.28.6":
+ version: 7.28.6
+ resolution: "@babel/plugin-transform-optional-catch-binding@npm:7.28.6"
dependencies:
- "@babel/helper-plugin-utils": "npm:^7.25.9"
+ "@babel/helper-plugin-utils": "npm:^7.28.6"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/b46a8d1e91829f3db5c252583eb00d05a779b4660abeea5500fda0f8ffa3584fd18299443c22f7fddf0ed9dfdb73c782c43b445dc468d4f89803f2356963b406
+ checksum: 10/ee24a17defec056eb9ef01824d7e4a1f65d531af6b4b79acfd0bcb95ce0b47926e80c61897f36f8c01ce733b069c9acdb1c9ce5ec07a729d0dbf9e8d859fe992
languageName: node
linkType: hard
-"@babel/plugin-transform-optional-chaining@npm:^7.0.0-0, @babel/plugin-transform-optional-chaining@npm:^7.24.8, @babel/plugin-transform-optional-chaining@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-optional-chaining@npm:7.25.9"
+"@babel/plugin-transform-optional-chaining@npm:^7.0.0-0, @babel/plugin-transform-optional-chaining@npm:^7.24.8, @babel/plugin-transform-optional-chaining@npm:^7.25.9, @babel/plugin-transform-optional-chaining@npm:^7.27.1, @babel/plugin-transform-optional-chaining@npm:^7.28.6":
+ version: 7.28.6
+ resolution: "@babel/plugin-transform-optional-chaining@npm:7.28.6"
dependencies:
- "@babel/helper-plugin-utils": "npm:^7.25.9"
- "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.25.9"
+ "@babel/helper-plugin-utils": "npm:^7.28.6"
+ "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/bc838a499fd9892e163b8bc9bfbc4bf0b28cc3232ee0a6406ae078257c8096518f871d09b4a32c11f4a2d6953c3bc1984619ef748f7ad45aed0b0d9689a8eb36
+ checksum: 10/c7cf29f99384a9a98748f04489a122c0106e0316aa64a2e61ef8af74c1057b587b96d9a08eb4e33d2ac17d1aaff1f0a86fae658d429fa7bcce4ef977e0ad684b
languageName: node
linkType: hard
@@ -2055,61 +2107,61 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-private-methods@npm:^7.24.7, @babel/plugin-transform-private-methods@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-private-methods@npm:7.25.9"
+"@babel/plugin-transform-private-methods@npm:^7.24.7, @babel/plugin-transform-private-methods@npm:^7.25.9, @babel/plugin-transform-private-methods@npm:^7.28.6":
+ version: 7.28.6
+ resolution: "@babel/plugin-transform-private-methods@npm:7.28.6"
dependencies:
- "@babel/helper-create-class-features-plugin": "npm:^7.25.9"
- "@babel/helper-plugin-utils": "npm:^7.25.9"
+ "@babel/helper-create-class-features-plugin": "npm:^7.28.6"
+ "@babel/helper-plugin-utils": "npm:^7.28.6"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/6e3671b352c267847c53a170a1937210fa8151764d70d25005e711ef9b21969aaf422acc14f9f7fb86bc0e4ec43e7aefcc0ad9196ae02d262ec10f509f126a58
+ checksum: 10/b80179b28f6a165674d0b0d6c6349b13a01dd282b18f56933423c0a33c23fc0626c8f011f859fc20737d021fe966eb8474a5233e4596401482e9ee7fb00e2aa2
languageName: node
linkType: hard
-"@babel/plugin-transform-private-property-in-object@npm:^7.24.7, @babel/plugin-transform-private-property-in-object@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-private-property-in-object@npm:7.25.9"
+"@babel/plugin-transform-private-property-in-object@npm:^7.24.7, @babel/plugin-transform-private-property-in-object@npm:^7.25.9, @babel/plugin-transform-private-property-in-object@npm:^7.28.6":
+ version: 7.28.6
+ resolution: "@babel/plugin-transform-private-property-in-object@npm:7.28.6"
dependencies:
- "@babel/helper-annotate-as-pure": "npm:^7.25.9"
- "@babel/helper-create-class-features-plugin": "npm:^7.25.9"
- "@babel/helper-plugin-utils": "npm:^7.25.9"
+ "@babel/helper-annotate-as-pure": "npm:^7.27.3"
+ "@babel/helper-create-class-features-plugin": "npm:^7.28.6"
+ "@babel/helper-plugin-utils": "npm:^7.28.6"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/aa45bb5669b610afa763d774a4b5583bb60ce7d38e4fd2dedfd0703e73e25aa560e6c6124e155aa90b101601743b127d9e5d3eb00989a7e4b4ab9c2eb88475ba
+ checksum: 10/d02008c62fd32ff747b850b8581ab5076b717320e1cb01c7fc66ebf5169095bd922e18cfb269992f85bc7fbd2cc61e5b5af25e2b54aad67411474b789ea94d5f
languageName: node
linkType: hard
-"@babel/plugin-transform-property-literals@npm:^7.0.0, @babel/plugin-transform-property-literals@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-property-literals@npm:7.25.9"
+"@babel/plugin-transform-property-literals@npm:^7.0.0, @babel/plugin-transform-property-literals@npm:^7.25.9, @babel/plugin-transform-property-literals@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-property-literals@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": "npm:^7.25.9"
+ "@babel/helper-plugin-utils": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/436046ab07d54a9b44a384eeffec701d4e959a37a7547dda72e069e751ca7ff753d1782a8339e354b97c78a868b49ea97bf41bf5a44c6d7a3c0a05ad40eeb49c
+ checksum: 10/7caec27d5ed8870895c9faf4f71def72745d69da0d8e77903146a4e135fd7bed5778f5f9cebb36c5fba86338e6194dd67a08c033fc84b4299b7eceab6d9630cb
languageName: node
linkType: hard
-"@babel/plugin-transform-react-display-name@npm:^7.0.0, @babel/plugin-transform-react-display-name@npm:^7.24.7, @babel/plugin-transform-react-display-name@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-react-display-name@npm:7.25.9"
+"@babel/plugin-transform-react-display-name@npm:^7.0.0, @babel/plugin-transform-react-display-name@npm:^7.24.7, @babel/plugin-transform-react-display-name@npm:^7.28.0":
+ version: 7.28.0
+ resolution: "@babel/plugin-transform-react-display-name@npm:7.28.0"
dependencies:
- "@babel/helper-plugin-utils": "npm:^7.25.9"
+ "@babel/helper-plugin-utils": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/dc7affde0ed98e40f629ee92a2fc44fbd8008aabda1ddb3f5bd2632699d3289b08dff65b26cf3b89dab46397ec440f453d19856bbb3a9a83df5b4ac6157c5c39
+ checksum: 10/d623644a078086f410b1952429d82c10e2833ebffb97800b25f55ab7f3ffafde34e57a4a71958da73f4abfcef39b598e2ca172f2b43531f98b3f12e0de17c219
languageName: node
linkType: hard
-"@babel/plugin-transform-react-jsx-development@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-react-jsx-development@npm:7.25.9"
+"@babel/plugin-transform-react-jsx-development@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-react-jsx-development@npm:7.27.1"
dependencies:
- "@babel/plugin-transform-react-jsx": "npm:^7.25.9"
+ "@babel/plugin-transform-react-jsx": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/537d38369537f1eb56041c4b770bc0733fde1801a7f5ffef40a1217ea448f33ee2fa8e6098a58a82fd00e432c1b9426a66849496da419020c9eca3b1b1a23779
+ checksum: 10/b88865d5b8c018992f2332da939faa15c4d4a864c9435a5937beaff3fe43781432cc42e0a5d5631098e0bd4066fc33f5fa72203b388b074c3545fe7aaa21e474
languageName: node
linkType: hard
@@ -2135,65 +2187,64 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-react-jsx@npm:^7.0.0, @babel/plugin-transform-react-jsx@npm:^7.25.2, @babel/plugin-transform-react-jsx@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-react-jsx@npm:7.25.9"
+"@babel/plugin-transform-react-jsx@npm:^7.0.0, @babel/plugin-transform-react-jsx@npm:^7.25.2, @babel/plugin-transform-react-jsx@npm:^7.27.1":
+ version: 7.28.6
+ resolution: "@babel/plugin-transform-react-jsx@npm:7.28.6"
dependencies:
- "@babel/helper-annotate-as-pure": "npm:^7.25.9"
- "@babel/helper-module-imports": "npm:^7.25.9"
- "@babel/helper-plugin-utils": "npm:^7.25.9"
- "@babel/plugin-syntax-jsx": "npm:^7.25.9"
- "@babel/types": "npm:^7.25.9"
+ "@babel/helper-annotate-as-pure": "npm:^7.27.3"
+ "@babel/helper-module-imports": "npm:^7.28.6"
+ "@babel/helper-plugin-utils": "npm:^7.28.6"
+ "@babel/plugin-syntax-jsx": "npm:^7.28.6"
+ "@babel/types": "npm:^7.28.6"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/eb179ecdf0ae19aed254105cf78fbac35f9983f51ed04b7b67c863a4820a70a879bd5da250ac518321f86df20eac010e53e3411c8750c386d51da30e4814bfb6
+ checksum: 10/c6eade7309f0710b6aac9e747f8c3305633801c035a35efc5e2436742cc466e457ed5848d3dd5dade36e34332cfc50ac92d69a33f7803d66ae2d72f13a76c3bc
languageName: node
linkType: hard
-"@babel/plugin-transform-react-pure-annotations@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-react-pure-annotations@npm:7.25.9"
+"@babel/plugin-transform-react-pure-annotations@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-react-pure-annotations@npm:7.27.1"
dependencies:
- "@babel/helper-annotate-as-pure": "npm:^7.25.9"
- "@babel/helper-plugin-utils": "npm:^7.25.9"
+ "@babel/helper-annotate-as-pure": "npm:^7.27.1"
+ "@babel/helper-plugin-utils": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/9995c0fc7c25d3aaaa0ce84233de02eab2564ea111d0813ec5baa538eb21520402879cc787ad1ad4c2061b99cebc3beb09910e64c9592e8ccb42ae62d9e4fd9a
+ checksum: 10/a6f591c5e85a1ab0685d4a25afe591fe8d11dc0b73c677cf9560ff8d540d036a1cce9efcb729fc9092def4d854dc304ffdc063a89a9247900b69c516bf971a4c
languageName: node
linkType: hard
-"@babel/plugin-transform-regenerator@npm:^7.24.7, @babel/plugin-transform-regenerator@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-regenerator@npm:7.25.9"
+"@babel/plugin-transform-regenerator@npm:^7.24.7, @babel/plugin-transform-regenerator@npm:^7.25.9, @babel/plugin-transform-regenerator@npm:^7.28.6":
+ version: 7.28.6
+ resolution: "@babel/plugin-transform-regenerator@npm:7.28.6"
dependencies:
- "@babel/helper-plugin-utils": "npm:^7.25.9"
- regenerator-transform: "npm:^0.15.2"
+ "@babel/helper-plugin-utils": "npm:^7.28.6"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/1c09e8087b476c5967282c9790fb8710e065eda77c60f6cb5da541edd59ded9d003d96f8ef640928faab4a0b35bf997673499a194973da4f0c97f0935807a482
+ checksum: 10/09028ed8ed7f5e3879cbfdcf92a8a730c13b15ce042ef86b29b31cca5a250da641f777dfaf81ab1706fb8cf9252c177f02e882fc7465d3a10b9f385c0bb2ea16
languageName: node
linkType: hard
-"@babel/plugin-transform-regexp-modifiers@npm:^7.26.0":
- version: 7.26.0
- resolution: "@babel/plugin-transform-regexp-modifiers@npm:7.26.0"
+"@babel/plugin-transform-regexp-modifiers@npm:^7.26.0, @babel/plugin-transform-regexp-modifiers@npm:^7.28.6":
+ version: 7.28.6
+ resolution: "@babel/plugin-transform-regexp-modifiers@npm:7.28.6"
dependencies:
- "@babel/helper-create-regexp-features-plugin": "npm:^7.25.9"
- "@babel/helper-plugin-utils": "npm:^7.25.9"
+ "@babel/helper-create-regexp-features-plugin": "npm:^7.28.5"
+ "@babel/helper-plugin-utils": "npm:^7.28.6"
peerDependencies:
"@babel/core": ^7.0.0
- checksum: 10/726deca486bbd4b176f8a966eb0f4aabc19d9def3b8dabb8b3a656778eca0df1fda3f3c92b213aa5a184232fdafd5b7bd73b4e24ca4345c498ef6baff2bda4e1
+ checksum: 10/5aacc570034c085afa0165137bb9a04cd4299b86eb9092933a96dcc1132c8f591d9d534419988f5f762b2f70d43a3c719a6b8fa05fdd3b2b1820d01cf85500da
languageName: node
linkType: hard
-"@babel/plugin-transform-reserved-words@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-reserved-words@npm:7.25.9"
+"@babel/plugin-transform-reserved-words@npm:^7.25.9, @babel/plugin-transform-reserved-words@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-reserved-words@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": "npm:^7.25.9"
+ "@babel/helper-plugin-utils": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/8beda04481b25767acbd1f6b9ef7b3a9c12fbd9dcb24df45a6ad120e1dc4b247c073db60ac742f9093657d6d8c050501fc0606af042f81a3bb6a3ff862cddc47
+ checksum: 10/dea0b66742d2863b369c06c053e11e15ba785892ea19cccf7aef3c1bdaa38b6ab082e19984c5ea7810d275d9445c5400fcc385ad71ce707ed9256fadb102af3b
languageName: node
linkType: hard
@@ -2213,41 +2264,52 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-shorthand-properties@npm:^7.0.0, @babel/plugin-transform-shorthand-properties@npm:^7.0.0-0, @babel/plugin-transform-shorthand-properties@npm:^7.24.7, @babel/plugin-transform-shorthand-properties@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-shorthand-properties@npm:7.25.9"
+"@babel/plugin-transform-shorthand-properties@npm:^7.0.0, @babel/plugin-transform-shorthand-properties@npm:^7.0.0-0, @babel/plugin-transform-shorthand-properties@npm:^7.24.7, @babel/plugin-transform-shorthand-properties@npm:^7.25.9, @babel/plugin-transform-shorthand-properties@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-shorthand-properties@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": "npm:^7.25.9"
+ "@babel/helper-plugin-utils": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/f774995d58d4e3a992b732cf3a9b8823552d471040e280264dd15e0735433d51b468fef04d75853d061309389c66bda10ce1b298297ce83999220eb0ad62741d
+ checksum: 10/fbba6e2aef0b69681acb68202aa249c0598e470cc0853d7ff5bd0171fd6a7ec31d77cfabcce9df6360fc8349eded7e4a65218c32551bd3fc0caaa1ac899ac6d4
languageName: node
linkType: hard
-"@babel/plugin-transform-spread@npm:^7.0.0, @babel/plugin-transform-spread@npm:^7.24.7, @babel/plugin-transform-spread@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-spread@npm:7.25.9"
+"@babel/plugin-transform-spread@npm:^7.0.0, @babel/plugin-transform-spread@npm:^7.24.7, @babel/plugin-transform-spread@npm:^7.25.9, @babel/plugin-transform-spread@npm:^7.28.6":
+ version: 7.28.6
+ resolution: "@babel/plugin-transform-spread@npm:7.28.6"
dependencies:
- "@babel/helper-plugin-utils": "npm:^7.25.9"
- "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.25.9"
+ "@babel/helper-plugin-utils": "npm:^7.28.6"
+ "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/fe72c6545267176cdc9b6f32f30f9ced37c1cafa1290e4436b83b8f377b4f1c175dad404228c96e3efdec75da692f15bfb9db2108fcd9ad260bc9968778ee41e
+ checksum: 10/1fa02ac60ae5e49d46fa2966aaf3f7578cf37255534c2ecf379d65855088a1623c3eea28b9ee6a0b1413b0199b51f9019d0da3fe9da89986bc47e07242415f60
languageName: node
linkType: hard
-"@babel/plugin-transform-sticky-regex@npm:^7.24.7, @babel/plugin-transform-sticky-regex@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-sticky-regex@npm:7.25.9"
+"@babel/plugin-transform-sticky-regex@npm:^7.24.7, @babel/plugin-transform-sticky-regex@npm:^7.25.9, @babel/plugin-transform-sticky-regex@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-sticky-regex@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": "npm:^7.25.9"
+ "@babel/helper-plugin-utils": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/7454b00844dbe924030dd15e2b3615b36e196500c4c47e98dabc6b37a054c5b1038ecd437e910aabf0e43bf56b973cb148d3437d50f6e2332d8309568e3e979b
+ checksum: 10/e1414a502efba92c7974681767e365a8cda6c5e9e5f33472a9eaa0ce2e75cea0a9bef881ff8dda37c7810ad902f98d3c00ead92a3ac3b73a79d011df85b5a189
languageName: node
linkType: hard
-"@babel/plugin-transform-template-literals@npm:^7.0.0, @babel/plugin-transform-template-literals@npm:^7.0.0-0, @babel/plugin-transform-template-literals@npm:^7.26.8":
+"@babel/plugin-transform-strict-mode@npm:^7.24.7":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-strict-mode@npm:7.27.1"
+ dependencies:
+ "@babel/helper-plugin-utils": "npm:^7.27.1"
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 10/0c5bbc9f913b2cea1a1f5697bac320f11575016eed2eee16d2430af5ddceff5382ad3f1b70bf7158ff458db38568a903fab03b308150753453354785365667ec
+ languageName: node
+ linkType: hard
+
+"@babel/plugin-transform-template-literals@npm:^7.0.0, @babel/plugin-transform-template-literals@npm:^7.0.0-0, @babel/plugin-transform-template-literals@npm:^7.26.8, @babel/plugin-transform-template-literals@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/plugin-transform-template-literals@npm:7.27.1"
dependencies:
@@ -2258,7 +2320,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-typeof-symbol@npm:^7.26.7":
+"@babel/plugin-transform-typeof-symbol@npm:^7.26.7, @babel/plugin-transform-typeof-symbol@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/plugin-transform-typeof-symbol@npm:7.27.1"
dependencies:
@@ -2269,65 +2331,65 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-typescript@npm:^7.25.2, @babel/plugin-transform-typescript@npm:^7.27.1":
- version: 7.28.0
- resolution: "@babel/plugin-transform-typescript@npm:7.28.0"
+"@babel/plugin-transform-typescript@npm:^7.25.2, @babel/plugin-transform-typescript@npm:^7.28.5":
+ version: 7.28.6
+ resolution: "@babel/plugin-transform-typescript@npm:7.28.6"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.27.3"
- "@babel/helper-create-class-features-plugin": "npm:^7.27.1"
- "@babel/helper-plugin-utils": "npm:^7.27.1"
+ "@babel/helper-create-class-features-plugin": "npm:^7.28.6"
+ "@babel/helper-plugin-utils": "npm:^7.28.6"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^7.27.1"
- "@babel/plugin-syntax-typescript": "npm:^7.27.1"
+ "@babel/plugin-syntax-typescript": "npm:^7.28.6"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/5ad7aae0e900974585c7e0d0ec08bde8cd70a31a9e79f5c9ddadb4f8f6207cb86a5882181c2b262b0fe27558e9f9743306259911bc1445635ec58dd96613cef4
+ checksum: 10/a0bccc531fa8710a45b0b593140273741e0e4a0721b1ef6ef9dfefae0bbe61528440d65aab7936929551fd76793272257d74f60cf66891352f793294930a4b67
languageName: node
linkType: hard
-"@babel/plugin-transform-unicode-escapes@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-unicode-escapes@npm:7.25.9"
+"@babel/plugin-transform-unicode-escapes@npm:^7.25.9, @babel/plugin-transform-unicode-escapes@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-unicode-escapes@npm:7.27.1"
dependencies:
- "@babel/helper-plugin-utils": "npm:^7.25.9"
+ "@babel/helper-plugin-utils": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/f138cbee539963fb3da13f684e6f33c9f7495220369ae12a682b358f1e25ac68936825562c38eae87f01ac9992b2129208b35ec18533567fc805ce5ed0ffd775
+ checksum: 10/87b9e49dee4ab6e78f4cdcdbdd837d7784f02868a96bfc206c8dbb17dd85db161b5a0ecbe95b19a42e8aea0ce57e80249e1facbf9221d7f4114d52c3b9136c9e
languageName: node
linkType: hard
-"@babel/plugin-transform-unicode-property-regex@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-unicode-property-regex@npm:7.25.9"
+"@babel/plugin-transform-unicode-property-regex@npm:^7.25.9, @babel/plugin-transform-unicode-property-regex@npm:^7.28.6":
+ version: 7.28.6
+ resolution: "@babel/plugin-transform-unicode-property-regex@npm:7.28.6"
dependencies:
- "@babel/helper-create-regexp-features-plugin": "npm:^7.25.9"
- "@babel/helper-plugin-utils": "npm:^7.25.9"
+ "@babel/helper-create-regexp-features-plugin": "npm:^7.28.5"
+ "@babel/helper-plugin-utils": "npm:^7.28.6"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/201f6f46c1beb399e79aa208b94c5d54412047511795ce1e790edcd189cef73752e6a099fdfc01b3ad12205f139ae344143b62f21f44bbe02338a95e8506a911
+ checksum: 10/d14e8c51aa73f592575c1543400fd67d96df6410d75c9dc10dd640fd7eecb37366a2f2368bbdd7529842532eda4af181c921bda95146c6d373c64ea59c6e9991
languageName: node
linkType: hard
-"@babel/plugin-transform-unicode-regex@npm:^7.0.0-0, @babel/plugin-transform-unicode-regex@npm:^7.24.7, @babel/plugin-transform-unicode-regex@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-unicode-regex@npm:7.25.9"
+"@babel/plugin-transform-unicode-regex@npm:^7.0.0-0, @babel/plugin-transform-unicode-regex@npm:^7.24.7, @babel/plugin-transform-unicode-regex@npm:^7.25.9, @babel/plugin-transform-unicode-regex@npm:^7.27.1":
+ version: 7.27.1
+ resolution: "@babel/plugin-transform-unicode-regex@npm:7.27.1"
dependencies:
- "@babel/helper-create-regexp-features-plugin": "npm:^7.25.9"
- "@babel/helper-plugin-utils": "npm:^7.25.9"
+ "@babel/helper-create-regexp-features-plugin": "npm:^7.27.1"
+ "@babel/helper-plugin-utils": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/e8baae867526e179467c6ef5280d70390fa7388f8763a19a27c21302dd59b121032568be080749514b097097ceb9af716bf4b90638f1b3cf689aa837ba20150f
+ checksum: 10/a34d89a2b75fb78e66d97c3dc90d4877f7e31f43316b52176f95a5dee20e9bb56ecf158eafc42a001676ddf7b393d9e67650bad6b32f5405780f25fb83cd68e3
languageName: node
linkType: hard
-"@babel/plugin-transform-unicode-sets-regex@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/plugin-transform-unicode-sets-regex@npm:7.25.9"
+"@babel/plugin-transform-unicode-sets-regex@npm:^7.25.9, @babel/plugin-transform-unicode-sets-regex@npm:^7.28.6":
+ version: 7.28.6
+ resolution: "@babel/plugin-transform-unicode-sets-regex@npm:7.28.6"
dependencies:
- "@babel/helper-create-regexp-features-plugin": "npm:^7.25.9"
- "@babel/helper-plugin-utils": "npm:^7.25.9"
+ "@babel/helper-create-regexp-features-plugin": "npm:^7.28.5"
+ "@babel/helper-plugin-utils": "npm:^7.28.6"
peerDependencies:
"@babel/core": ^7.0.0
- checksum: 10/4445ef20de687cb4dcc95169742a8d9013d680aa5eee9186d8e25875bbfa7ee5e2de26a91177ccf70b1db518e36886abcd44750d28db5d7a9539f0efa6839f4b
+ checksum: 10/423971fe2eef9d18782b1c30f5f42613ee510e5b9c08760c5538a0997b36c34495acce261e0e37a27831f81330359230bd1f33c2e1822de70241002b45b7d68e
languageName: node
linkType: hard
@@ -2410,6 +2472,86 @@ __metadata:
languageName: node
linkType: hard
+"@babel/preset-env@npm:^7.25.2, @babel/preset-env@npm:^7.25.3":
+ version: 7.28.6
+ resolution: "@babel/preset-env@npm:7.28.6"
+ dependencies:
+ "@babel/compat-data": "npm:^7.28.6"
+ "@babel/helper-compilation-targets": "npm:^7.28.6"
+ "@babel/helper-plugin-utils": "npm:^7.28.6"
+ "@babel/helper-validator-option": "npm:^7.27.1"
+ "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "npm:^7.28.5"
+ "@babel/plugin-bugfix-safari-class-field-initializer-scope": "npm:^7.27.1"
+ "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "npm:^7.27.1"
+ "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "npm:^7.27.1"
+ "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "npm:^7.28.6"
+ "@babel/plugin-proposal-private-property-in-object": "npm:7.21.0-placeholder-for-preset-env.2"
+ "@babel/plugin-syntax-import-assertions": "npm:^7.28.6"
+ "@babel/plugin-syntax-import-attributes": "npm:^7.28.6"
+ "@babel/plugin-syntax-unicode-sets-regex": "npm:^7.18.6"
+ "@babel/plugin-transform-arrow-functions": "npm:^7.27.1"
+ "@babel/plugin-transform-async-generator-functions": "npm:^7.28.6"
+ "@babel/plugin-transform-async-to-generator": "npm:^7.28.6"
+ "@babel/plugin-transform-block-scoped-functions": "npm:^7.27.1"
+ "@babel/plugin-transform-block-scoping": "npm:^7.28.6"
+ "@babel/plugin-transform-class-properties": "npm:^7.28.6"
+ "@babel/plugin-transform-class-static-block": "npm:^7.28.6"
+ "@babel/plugin-transform-classes": "npm:^7.28.6"
+ "@babel/plugin-transform-computed-properties": "npm:^7.28.6"
+ "@babel/plugin-transform-destructuring": "npm:^7.28.5"
+ "@babel/plugin-transform-dotall-regex": "npm:^7.28.6"
+ "@babel/plugin-transform-duplicate-keys": "npm:^7.27.1"
+ "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "npm:^7.28.6"
+ "@babel/plugin-transform-dynamic-import": "npm:^7.27.1"
+ "@babel/plugin-transform-explicit-resource-management": "npm:^7.28.6"
+ "@babel/plugin-transform-exponentiation-operator": "npm:^7.28.6"
+ "@babel/plugin-transform-export-namespace-from": "npm:^7.27.1"
+ "@babel/plugin-transform-for-of": "npm:^7.27.1"
+ "@babel/plugin-transform-function-name": "npm:^7.27.1"
+ "@babel/plugin-transform-json-strings": "npm:^7.28.6"
+ "@babel/plugin-transform-literals": "npm:^7.27.1"
+ "@babel/plugin-transform-logical-assignment-operators": "npm:^7.28.6"
+ "@babel/plugin-transform-member-expression-literals": "npm:^7.27.1"
+ "@babel/plugin-transform-modules-amd": "npm:^7.27.1"
+ "@babel/plugin-transform-modules-commonjs": "npm:^7.28.6"
+ "@babel/plugin-transform-modules-systemjs": "npm:^7.28.5"
+ "@babel/plugin-transform-modules-umd": "npm:^7.27.1"
+ "@babel/plugin-transform-named-capturing-groups-regex": "npm:^7.27.1"
+ "@babel/plugin-transform-new-target": "npm:^7.27.1"
+ "@babel/plugin-transform-nullish-coalescing-operator": "npm:^7.28.6"
+ "@babel/plugin-transform-numeric-separator": "npm:^7.28.6"
+ "@babel/plugin-transform-object-rest-spread": "npm:^7.28.6"
+ "@babel/plugin-transform-object-super": "npm:^7.27.1"
+ "@babel/plugin-transform-optional-catch-binding": "npm:^7.28.6"
+ "@babel/plugin-transform-optional-chaining": "npm:^7.28.6"
+ "@babel/plugin-transform-parameters": "npm:^7.27.7"
+ "@babel/plugin-transform-private-methods": "npm:^7.28.6"
+ "@babel/plugin-transform-private-property-in-object": "npm:^7.28.6"
+ "@babel/plugin-transform-property-literals": "npm:^7.27.1"
+ "@babel/plugin-transform-regenerator": "npm:^7.28.6"
+ "@babel/plugin-transform-regexp-modifiers": "npm:^7.28.6"
+ "@babel/plugin-transform-reserved-words": "npm:^7.27.1"
+ "@babel/plugin-transform-shorthand-properties": "npm:^7.27.1"
+ "@babel/plugin-transform-spread": "npm:^7.28.6"
+ "@babel/plugin-transform-sticky-regex": "npm:^7.27.1"
+ "@babel/plugin-transform-template-literals": "npm:^7.27.1"
+ "@babel/plugin-transform-typeof-symbol": "npm:^7.27.1"
+ "@babel/plugin-transform-unicode-escapes": "npm:^7.27.1"
+ "@babel/plugin-transform-unicode-property-regex": "npm:^7.28.6"
+ "@babel/plugin-transform-unicode-regex": "npm:^7.27.1"
+ "@babel/plugin-transform-unicode-sets-regex": "npm:^7.28.6"
+ "@babel/preset-modules": "npm:0.1.6-no-external-plugins"
+ babel-plugin-polyfill-corejs2: "npm:^0.4.14"
+ babel-plugin-polyfill-corejs3: "npm:^0.13.0"
+ babel-plugin-polyfill-regenerator: "npm:^0.6.5"
+ core-js-compat: "npm:^3.43.0"
+ semver: "npm:^6.3.1"
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 10/ee1b96dec8518436013c4a758003734842e9fed2a3af2013bee7a462289bae4e7bbce99733701164c28a93554be5a9a4c50818fa32335274d19e8b7d3dd53316
+ languageName: node
+ linkType: hard
+
"@babel/preset-flow@npm:^7.13.13":
version: 7.27.1
resolution: "@babel/preset-flow@npm:7.27.1"
@@ -2436,34 +2578,34 @@ __metadata:
languageName: node
linkType: hard
-"@babel/preset-react@npm:^7.18.6, @babel/preset-react@npm:^7.22.15":
- version: 7.26.3
- resolution: "@babel/preset-react@npm:7.26.3"
+"@babel/preset-react@npm:^7.18.6, @babel/preset-react@npm:^7.22.15, @babel/preset-react@npm:^7.24.7":
+ version: 7.28.5
+ resolution: "@babel/preset-react@npm:7.28.5"
dependencies:
- "@babel/helper-plugin-utils": "npm:^7.25.9"
- "@babel/helper-validator-option": "npm:^7.25.9"
- "@babel/plugin-transform-react-display-name": "npm:^7.25.9"
- "@babel/plugin-transform-react-jsx": "npm:^7.25.9"
- "@babel/plugin-transform-react-jsx-development": "npm:^7.25.9"
- "@babel/plugin-transform-react-pure-annotations": "npm:^7.25.9"
+ "@babel/helper-plugin-utils": "npm:^7.27.1"
+ "@babel/helper-validator-option": "npm:^7.27.1"
+ "@babel/plugin-transform-react-display-name": "npm:^7.28.0"
+ "@babel/plugin-transform-react-jsx": "npm:^7.27.1"
+ "@babel/plugin-transform-react-jsx-development": "npm:^7.27.1"
+ "@babel/plugin-transform-react-pure-annotations": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/88cb78c402b79f32389ee06451da51698d5b1da7641d9a47482883f537fe5441a138bd4c077d8533fd6d557406b08911c47b94402cea843db598e020bdd9a373
+ checksum: 10/c00d43b27790caddee7c4971b11b4bf479a761175433e2f168b3d7e1ac6ee36d4d929a76acc7f302e9bff3a5b26d02d37f0ad7ae6359e076e5baa862b00843b2
languageName: node
linkType: hard
-"@babel/preset-typescript@npm:^7.13.0, @babel/preset-typescript@npm:^7.16.7, @babel/preset-typescript@npm:^7.21.5, @babel/preset-typescript@npm:^7.23.0":
- version: 7.27.1
- resolution: "@babel/preset-typescript@npm:7.27.1"
+"@babel/preset-typescript@npm:^7.13.0, @babel/preset-typescript@npm:^7.16.7, @babel/preset-typescript@npm:^7.21.5, @babel/preset-typescript@npm:^7.23.0, @babel/preset-typescript@npm:^7.24.7":
+ version: 7.28.5
+ resolution: "@babel/preset-typescript@npm:7.28.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.27.1"
"@babel/helper-validator-option": "npm:^7.27.1"
"@babel/plugin-syntax-jsx": "npm:^7.27.1"
"@babel/plugin-transform-modules-commonjs": "npm:^7.27.1"
- "@babel/plugin-transform-typescript": "npm:^7.27.1"
+ "@babel/plugin-transform-typescript": "npm:^7.28.5"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10/9d8e75326b3c93fa016ba7aada652800fc77bc05fcc181888700a049935e8cf1284b549de18a5d62ef3591d02f097ea6de1111f7d71a991aaf36ba74657bd145
+ checksum: 10/72c03e01c34906041b1813542761a283c52da1751e7ddf63191bc5fb2a0354eca30a00537c5a92951688bec3975bdc0e50ef4516b5e94cfd6d4cf947f2125bdc
languageName: node
linkType: hard
@@ -2489,7 +2631,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/template@npm:^7.18.10, @babel/template@npm:^7.20.7, @babel/template@npm:^7.25.0, @babel/template@npm:^7.25.7, @babel/template@npm:^7.25.9, @babel/template@npm:^7.26.9, @babel/template@npm:^7.27.2, @babel/template@npm:^7.28.6, @babel/template@npm:^7.3.3":
+"@babel/template@npm:^7.18.10, @babel/template@npm:^7.20.7, @babel/template@npm:^7.25.0, @babel/template@npm:^7.25.7, @babel/template@npm:^7.26.9, @babel/template@npm:^7.28.6, @babel/template@npm:^7.3.3":
version: 7.28.6
resolution: "@babel/template@npm:7.28.6"
dependencies:
@@ -2515,7 +2657,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/traverse@npm:^7.14.0, @babel/traverse@npm:^7.16.8, @babel/traverse@npm:^7.23.2, @babel/traverse@npm:^7.25.3, @babel/traverse@npm:^7.25.9, @babel/traverse@npm:^7.26.10, @babel/traverse@npm:^7.26.8, @babel/traverse@npm:^7.26.9, @babel/traverse@npm:^7.27.1, @babel/traverse@npm:^7.28.0, @babel/traverse@npm:^7.28.6, @babel/traverse@npm:^7.29.0, @babel/traverse@npm:^7.7.2":
+"@babel/traverse@npm:^7.14.0, @babel/traverse@npm:^7.16.8, @babel/traverse@npm:^7.23.2, @babel/traverse@npm:^7.25.3, @babel/traverse@npm:^7.26.10, @babel/traverse@npm:^7.26.8, @babel/traverse@npm:^7.26.9, @babel/traverse@npm:^7.27.1, @babel/traverse@npm:^7.28.5, @babel/traverse@npm:^7.28.6, @babel/traverse@npm:^7.29.0, @babel/traverse@npm:^7.7.2":
version: 7.29.0
resolution: "@babel/traverse@npm:7.29.0"
dependencies:
@@ -2530,7 +2672,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/types@npm:^7.0.0, @babel/types@npm:^7.16.8, @babel/types@npm:^7.18.13, @babel/types@npm:^7.20.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.22.5, @babel/types@npm:^7.24.7, @babel/types@npm:^7.25.2, @babel/types@npm:^7.25.4, @babel/types@npm:^7.25.7, @babel/types@npm:^7.25.9, @babel/types@npm:^7.26.10, @babel/types@npm:^7.26.9, @babel/types@npm:^7.27.1, @babel/types@npm:^7.27.3, @babel/types@npm:^7.28.0, @babel/types@npm:^7.28.6, @babel/types@npm:^7.29.0, @babel/types@npm:^7.3.3, @babel/types@npm:^7.4.4":
+"@babel/types@npm:^7.0.0, @babel/types@npm:^7.16.8, @babel/types@npm:^7.18.13, @babel/types@npm:^7.20.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.22.5, @babel/types@npm:^7.24.7, @babel/types@npm:^7.25.2, @babel/types@npm:^7.25.4, @babel/types@npm:^7.25.7, @babel/types@npm:^7.25.9, @babel/types@npm:^7.26.10, @babel/types@npm:^7.26.9, @babel/types@npm:^7.27.1, @babel/types@npm:^7.27.3, @babel/types@npm:^7.28.5, @babel/types@npm:^7.28.6, @babel/types@npm:^7.29.0, @babel/types@npm:^7.3.3, @babel/types@npm:^7.4.4":
version: 7.29.0
resolution: "@babel/types@npm:7.29.0"
dependencies:
@@ -4072,6 +4214,216 @@ __metadata:
languageName: node
linkType: hard
+"@commitlint/cli@npm:^19.8.1":
+ version: 19.8.1
+ resolution: "@commitlint/cli@npm:19.8.1"
+ dependencies:
+ "@commitlint/format": "npm:^19.8.1"
+ "@commitlint/lint": "npm:^19.8.1"
+ "@commitlint/load": "npm:^19.8.1"
+ "@commitlint/read": "npm:^19.8.1"
+ "@commitlint/types": "npm:^19.8.1"
+ tinyexec: "npm:^1.0.0"
+ yargs: "npm:^17.0.0"
+ bin:
+ commitlint: ./cli.js
+ checksum: 10/c41f5a42319e38e1da2addd27b32ced461eae2d01c9bbfc75be069d88467974255dfbe4593d3e107a0e3f68350f482490bcda69d9d6a4192cde8084f203e7c8b
+ languageName: node
+ linkType: hard
+
+"@commitlint/config-conventional@npm:^19.8.1":
+ version: 19.8.1
+ resolution: "@commitlint/config-conventional@npm:19.8.1"
+ dependencies:
+ "@commitlint/types": "npm:^19.8.1"
+ conventional-changelog-conventionalcommits: "npm:^7.0.2"
+ checksum: 10/aa61837baaf49e8ccf5eb8fa1bd78656abbea58edb73dacddc64c8915f1d28b27590005d66664c88b9a28a57e9a03ff11cf3b1d913af1ea4e86f3b66678ce630
+ languageName: node
+ linkType: hard
+
+"@commitlint/config-validator@npm:^19.8.1":
+ version: 19.8.1
+ resolution: "@commitlint/config-validator@npm:19.8.1"
+ dependencies:
+ "@commitlint/types": "npm:^19.8.1"
+ ajv: "npm:^8.11.0"
+ checksum: 10/26eee15c1c0564fc8857b4bbc4f06305a32e049a724ede73753f66fc15316eb79a5dde4c8e2765bd75952a27b138cd80cffc49491281f122b834f8467c658d80
+ languageName: node
+ linkType: hard
+
+"@commitlint/ensure@npm:^19.8.1":
+ version: 19.8.1
+ resolution: "@commitlint/ensure@npm:19.8.1"
+ dependencies:
+ "@commitlint/types": "npm:^19.8.1"
+ lodash.camelcase: "npm:^4.3.0"
+ lodash.kebabcase: "npm:^4.1.1"
+ lodash.snakecase: "npm:^4.1.1"
+ lodash.startcase: "npm:^4.4.0"
+ lodash.upperfirst: "npm:^4.3.1"
+ checksum: 10/af342f61b246c301937cc03477c64b86ca6dea47de23f94d237181d346d020ec23c8a458f56aec8bfe9cdcb80a06adcc34964f32c05a2649282a959ce6fae39d
+ languageName: node
+ linkType: hard
+
+"@commitlint/execute-rule@npm:^19.8.1":
+ version: 19.8.1
+ resolution: "@commitlint/execute-rule@npm:19.8.1"
+ checksum: 10/a39d9a87c0962c290e4f7d7438e8fca7642384a5aa97ec84c0b3dbbf91dc048496dd25447ba3dbec37b00006eec1951f8f22f30a98448e90e22d44d585d8a68f
+ languageName: node
+ linkType: hard
+
+"@commitlint/format@npm:^19.8.1":
+ version: 19.8.1
+ resolution: "@commitlint/format@npm:19.8.1"
+ dependencies:
+ "@commitlint/types": "npm:^19.8.1"
+ chalk: "npm:^5.3.0"
+ checksum: 10/5af80e489c1470e20519780867145492c145690bd8e6b0dc049f53d317b045fa39ba012faed2715307e105ca439e6b16bdd4fe9c39c146d38bb5d93f1542fc5f
+ languageName: node
+ linkType: hard
+
+"@commitlint/is-ignored@npm:^19.8.1":
+ version: 19.8.1
+ resolution: "@commitlint/is-ignored@npm:19.8.1"
+ dependencies:
+ "@commitlint/types": "npm:^19.8.1"
+ semver: "npm:^7.6.0"
+ checksum: 10/a70631bb7825ed49f2d6164c7547d025ca184a5e65eb7b1bd63f041ae7aa9189991c2dbef18b1160951aeb59595307b75d5ba151ea10e0de4d36f22709b9c877
+ languageName: node
+ linkType: hard
+
+"@commitlint/lint@npm:^19.8.1":
+ version: 19.8.1
+ resolution: "@commitlint/lint@npm:19.8.1"
+ dependencies:
+ "@commitlint/is-ignored": "npm:^19.8.1"
+ "@commitlint/parse": "npm:^19.8.1"
+ "@commitlint/rules": "npm:^19.8.1"
+ "@commitlint/types": "npm:^19.8.1"
+ checksum: 10/6206236649b2214c9c81d76e00bb9d010fc5be6c990d14e473a01253e178ad3a4e081b5c458154314291805de843eebfdd35d720d2eff889f86f43269c9d392a
+ languageName: node
+ linkType: hard
+
+"@commitlint/load@npm:^19.8.1":
+ version: 19.8.1
+ resolution: "@commitlint/load@npm:19.8.1"
+ dependencies:
+ "@commitlint/config-validator": "npm:^19.8.1"
+ "@commitlint/execute-rule": "npm:^19.8.1"
+ "@commitlint/resolve-extends": "npm:^19.8.1"
+ "@commitlint/types": "npm:^19.8.1"
+ chalk: "npm:^5.3.0"
+ cosmiconfig: "npm:^9.0.0"
+ cosmiconfig-typescript-loader: "npm:^6.1.0"
+ lodash.isplainobject: "npm:^4.0.6"
+ lodash.merge: "npm:^4.6.2"
+ lodash.uniq: "npm:^4.5.0"
+ checksum: 10/e78c997ef529f80f8b62f686e553d0f2cb33d88b8b907d2e3890195851cd783fd44bd780addaa49f1cceb12ed073c10bb10e11dc082f51e4fdc54640f5ac1cca
+ languageName: node
+ linkType: hard
+
+"@commitlint/message@npm:^19.8.1":
+ version: 19.8.1
+ resolution: "@commitlint/message@npm:19.8.1"
+ checksum: 10/e365590dd539fe2519a15bd99ee8499c3ffbd80852839783ae6fd0b65feef08b26d2134a4e9ea32e006c2b3aa04447a38b011e73975b4fc3d7c7380a0fbf2377
+ languageName: node
+ linkType: hard
+
+"@commitlint/parse@npm:^19.8.1":
+ version: 19.8.1
+ resolution: "@commitlint/parse@npm:19.8.1"
+ dependencies:
+ "@commitlint/types": "npm:^19.8.1"
+ conventional-changelog-angular: "npm:^7.0.0"
+ conventional-commits-parser: "npm:^5.0.0"
+ checksum: 10/f6264bb30399b420a875532905e18049b4ab6f24d79f42d20fa06e64b9f355649ac18a33874e02643f0a826f3cec69423d6bc96cf852fa692338603ce910a95f
+ languageName: node
+ linkType: hard
+
+"@commitlint/read@npm:^19.8.1":
+ version: 19.8.1
+ resolution: "@commitlint/read@npm:19.8.1"
+ dependencies:
+ "@commitlint/top-level": "npm:^19.8.1"
+ "@commitlint/types": "npm:^19.8.1"
+ git-raw-commits: "npm:^4.0.0"
+ minimist: "npm:^1.2.8"
+ tinyexec: "npm:^1.0.0"
+ checksum: 10/ee0f42e2e5a3ade673b2d14f3b2056a86804afe7d09b6703d51b41edc099b33b9c09dc715b30d7113879999381a198d78b4fcbc649785ed3beb9c3f7d1dc2bb2
+ languageName: node
+ linkType: hard
+
+"@commitlint/resolve-extends@npm:^19.8.1":
+ version: 19.8.1
+ resolution: "@commitlint/resolve-extends@npm:19.8.1"
+ dependencies:
+ "@commitlint/config-validator": "npm:^19.8.1"
+ "@commitlint/types": "npm:^19.8.1"
+ global-directory: "npm:^4.0.1"
+ import-meta-resolve: "npm:^4.0.0"
+ lodash.mergewith: "npm:^4.6.2"
+ resolve-from: "npm:^5.0.0"
+ checksum: 10/736e62f5fe819337a95de8ac50b65b04bdd472a652ebe18ac3a92efc3428d62dcf16d9c62b222ef2e8a7e2e8737bd49d13b9c9d3b061a588869a42acdc620bf0
+ languageName: node
+ linkType: hard
+
+"@commitlint/rules@npm:^19.8.1":
+ version: 19.8.1
+ resolution: "@commitlint/rules@npm:19.8.1"
+ dependencies:
+ "@commitlint/ensure": "npm:^19.8.1"
+ "@commitlint/message": "npm:^19.8.1"
+ "@commitlint/to-lines": "npm:^19.8.1"
+ "@commitlint/types": "npm:^19.8.1"
+ checksum: 10/dc3a90b4561369991b851224c5cc1c0e2297c68ce148e21a7a5893a0556fffced192d59bf491a6c80270da012840fafdb34d991b7048170f4b2e7b0122211cee
+ languageName: node
+ linkType: hard
+
+"@commitlint/to-lines@npm:^19.8.1":
+ version: 19.8.1
+ resolution: "@commitlint/to-lines@npm:19.8.1"
+ checksum: 10/47f33d5e0d77aa0cc2fc14daa3e73661c64c9cffb5fc9c723714ced4fcfc758bf5ba2e084143fa55bc512ad896d115b9983a308a97a005200484f04f2ed0fd90
+ languageName: node
+ linkType: hard
+
+"@commitlint/top-level@npm:^19.8.1":
+ version: 19.8.1
+ resolution: "@commitlint/top-level@npm:19.8.1"
+ dependencies:
+ find-up: "npm:^7.0.0"
+ checksum: 10/c875b6c1be495675c77d86e80419d27fd5eb70fc061ef412d041541219c3222d9c4dbd6f0353247d49e9b2cd6d86a7ffc9df1ba20f96c77726c1f9a0edeeb8fe
+ languageName: node
+ linkType: hard
+
+"@commitlint/types@npm:^19.8.1":
+ version: 19.8.1
+ resolution: "@commitlint/types@npm:19.8.1"
+ dependencies:
+ "@types/conventional-commits-parser": "npm:^5.0.0"
+ chalk: "npm:^5.3.0"
+ checksum: 10/d1943a5789a02c75b0c72755673ab8d50c850b025abb7806b7eef83b373591948f5d1d9cd22022f89302a256546934d797445913c5c495d8e92711cf17b0fbf0
+ languageName: node
+ linkType: hard
+
+"@conventional-changelog/git-client@npm:^2.5.1":
+ version: 2.5.1
+ resolution: "@conventional-changelog/git-client@npm:2.5.1"
+ dependencies:
+ "@simple-libs/child-process-utils": "npm:^1.0.0"
+ "@simple-libs/stream-utils": "npm:^1.1.0"
+ semver: "npm:^7.5.2"
+ peerDependencies:
+ conventional-commits-filter: ^5.0.0
+ conventional-commits-parser: ^6.1.0
+ peerDependenciesMeta:
+ conventional-commits-filter:
+ optional: true
+ conventional-commits-parser:
+ optional: true
+ checksum: 10/39ed505f8b93529ae278f71a75a67c52be54b20a374c7a209918e6c0374e3a4bebd8f8ca7497cbc28c8c062a3923890f54fe8077bca5424c9c42fb7fb4daf71f
+ languageName: node
+ linkType: hard
+
"@cspotcode/source-map-support@npm:0.8.1, @cspotcode/source-map-support@npm:^0.8.0":
version: 0.8.1
resolution: "@cspotcode/source-map-support@npm:0.8.1"
@@ -4559,6 +4911,20 @@ __metadata:
languageName: node
linkType: hard
+"@eslint/compat@npm:^1.3.2":
+ version: 1.4.1
+ resolution: "@eslint/compat@npm:1.4.1"
+ dependencies:
+ "@eslint/core": "npm:^0.17.0"
+ peerDependencies:
+ eslint: ^8.40 || 9
+ peerDependenciesMeta:
+ eslint:
+ optional: true
+ checksum: 10/2345ba0991aaf57f79feed0417eac61fd0e09fb1d2f5bc3f723d5790a4f0881cca16b7a48c82555ab907a3469dce7d3cb43cc5e5100c22e2a369a561f4b421cd
+ languageName: node
+ linkType: hard
+
"@eslint/config-array@npm:^0.21.1":
version: 0.21.1
resolution: "@eslint/config-array@npm:0.21.1"
@@ -4629,7 +4995,7 @@ __metadata:
languageName: node
linkType: hard
-"@eslint/js@npm:9.39.2, @eslint/js@npm:^9.26.0":
+"@eslint/js@npm:9.39.2, @eslint/js@npm:^9.26.0, @eslint/js@npm:^9.35.0":
version: 9.39.2
resolution: "@eslint/js@npm:9.39.2"
checksum: 10/6b7f676746f3111b5d1b23715319212ab9297868a0fa9980d483c3da8965d5841673aada2d5653e85a3f7156edee0893a7ae7035211b4efdcb2848154bb947f2
@@ -6472,6 +6838,22 @@ __metadata:
languageName: node
linkType: hard
+"@hapi/hoek@npm:^9.0.0, @hapi/hoek@npm:^9.3.0":
+ version: 9.3.0
+ resolution: "@hapi/hoek@npm:9.3.0"
+ checksum: 10/ad83a223787749f3873bce42bd32a9a19673765bf3edece0a427e138859ff729469e68d5fdf9ff6bbee6fb0c8e21bab61415afa4584f527cfc40b59ea1957e70
+ languageName: node
+ linkType: hard
+
+"@hapi/topo@npm:^5.1.0":
+ version: 5.1.0
+ resolution: "@hapi/topo@npm:5.1.0"
+ dependencies:
+ "@hapi/hoek": "npm:^9.0.0"
+ checksum: 10/084bfa647015f4fd3fdd51fadb2747d09ef2f5e1443d6cbada2988b0c88494f85edf257ec606c790db146ac4e34ff57f3fcb22e3299b8e06ed5c87ba7583495c
+ languageName: node
+ linkType: hard
+
"@highlight-run/apollo@workspace:*, @highlight-run/apollo@workspace:sdk/highlight-apollo":
version: 0.0.0-use.local
resolution: "@highlight-run/apollo@workspace:sdk/highlight-apollo"
@@ -6755,7 +7137,7 @@ __metadata:
markdownlint-cli: "npm:^0.31.1"
prettier: "npm:2.8.4"
rollup-plugin-visualizer: "npm:^5.12.0"
- turbo: "npm:^2.0.4"
+ turbo: "npm:2.8.7"
typescript: "npm:^5.4.5"
languageName: unknown
linkType: soft
@@ -7365,7 +7747,7 @@ __metadata:
languageName: node
linkType: hard
-"@inquirer/checkbox@npm:^4.1.2":
+"@inquirer/checkbox@npm:^4.1.2, @inquirer/checkbox@npm:^4.3.2":
version: 4.3.2
resolution: "@inquirer/checkbox@npm:4.3.2"
dependencies:
@@ -7398,7 +7780,7 @@ __metadata:
languageName: node
linkType: hard
-"@inquirer/confirm@npm:^5.1.6":
+"@inquirer/confirm@npm:^5.1.21, @inquirer/confirm@npm:^5.1.6":
version: 5.1.21
resolution: "@inquirer/confirm@npm:5.1.21"
dependencies:
@@ -7434,7 +7816,7 @@ __metadata:
languageName: node
linkType: hard
-"@inquirer/editor@npm:^4.2.7":
+"@inquirer/editor@npm:^4.2.23, @inquirer/editor@npm:^4.2.7":
version: 4.2.23
resolution: "@inquirer/editor@npm:4.2.23"
dependencies:
@@ -7450,7 +7832,7 @@ __metadata:
languageName: node
linkType: hard
-"@inquirer/expand@npm:^4.0.9":
+"@inquirer/expand@npm:^4.0.23, @inquirer/expand@npm:^4.0.9":
version: 4.0.23
resolution: "@inquirer/expand@npm:4.0.23"
dependencies:
@@ -7488,7 +7870,7 @@ __metadata:
languageName: node
linkType: hard
-"@inquirer/input@npm:^4.1.6":
+"@inquirer/input@npm:^4.1.6, @inquirer/input@npm:^4.3.1":
version: 4.3.1
resolution: "@inquirer/input@npm:4.3.1"
dependencies:
@@ -7503,7 +7885,7 @@ __metadata:
languageName: node
linkType: hard
-"@inquirer/number@npm:^3.0.9":
+"@inquirer/number@npm:^3.0.23, @inquirer/number@npm:^3.0.9":
version: 3.0.23
resolution: "@inquirer/number@npm:3.0.23"
dependencies:
@@ -7518,7 +7900,7 @@ __metadata:
languageName: node
linkType: hard
-"@inquirer/password@npm:^4.0.9":
+"@inquirer/password@npm:^4.0.23, @inquirer/password@npm:^4.0.9":
version: 4.0.23
resolution: "@inquirer/password@npm:4.0.23"
dependencies:
@@ -7557,7 +7939,30 @@ __metadata:
languageName: node
linkType: hard
-"@inquirer/rawlist@npm:^4.0.9":
+"@inquirer/prompts@npm:^7.10.1":
+ version: 7.10.1
+ resolution: "@inquirer/prompts@npm:7.10.1"
+ dependencies:
+ "@inquirer/checkbox": "npm:^4.3.2"
+ "@inquirer/confirm": "npm:^5.1.21"
+ "@inquirer/editor": "npm:^4.2.23"
+ "@inquirer/expand": "npm:^4.0.23"
+ "@inquirer/input": "npm:^4.3.1"
+ "@inquirer/number": "npm:^3.0.23"
+ "@inquirer/password": "npm:^4.0.23"
+ "@inquirer/rawlist": "npm:^4.1.11"
+ "@inquirer/search": "npm:^3.2.2"
+ "@inquirer/select": "npm:^4.4.2"
+ peerDependencies:
+ "@types/node": ">=18"
+ peerDependenciesMeta:
+ "@types/node":
+ optional: true
+ checksum: 10/b3e3386edd255e4e91c7908050674f8a2e69b043883c00feec2f87d697be37bc6e8cd4a360e7e3233a9825ae7ea044a2ac63d5700926d27f9959013d8566f890
+ languageName: node
+ linkType: hard
+
+"@inquirer/rawlist@npm:^4.0.9, @inquirer/rawlist@npm:^4.1.11":
version: 4.1.11
resolution: "@inquirer/rawlist@npm:4.1.11"
dependencies:
@@ -7573,7 +7978,7 @@ __metadata:
languageName: node
linkType: hard
-"@inquirer/search@npm:^3.0.9":
+"@inquirer/search@npm:^3.0.9, @inquirer/search@npm:^3.2.2":
version: 3.2.2
resolution: "@inquirer/search@npm:3.2.2"
dependencies:
@@ -7590,7 +7995,7 @@ __metadata:
languageName: node
linkType: hard
-"@inquirer/select@npm:^4.0.9":
+"@inquirer/select@npm:^4.0.9, @inquirer/select@npm:^4.4.2":
version: 4.4.2
resolution: "@inquirer/select@npm:4.4.2"
dependencies:
@@ -8159,6 +8564,16 @@ __metadata:
languageName: node
linkType: hard
+"@jridgewell/remapping@npm:^2.3.5":
+ version: 2.3.5
+ resolution: "@jridgewell/remapping@npm:2.3.5"
+ dependencies:
+ "@jridgewell/gen-mapping": "npm:^0.3.5"
+ "@jridgewell/trace-mapping": "npm:^0.3.24"
+ checksum: 10/c2bb01856e65b506d439455f28aceacf130d6c023d1d4e3b48705e88def3571753e1a887daa04b078b562316c92d26ce36408a60534bceca3f830aec88a339ad
+ languageName: node
+ linkType: hard
+
"@jridgewell/resolve-uri@npm:^3.0.3, @jridgewell/resolve-uri@npm:^3.1.0":
version: 3.1.2
resolution: "@jridgewell/resolve-uri@npm:3.1.2"
@@ -8265,15 +8680,6 @@ __metadata:
languageName: node
linkType: hard
-"@launchdarkly/js-client-sdk-common@npm:1.15.0":
- version: 1.15.0
- resolution: "@launchdarkly/js-client-sdk-common@npm:1.15.0"
- dependencies:
- "@launchdarkly/js-sdk-common": "npm:2.18.0"
- checksum: 10/c81e1facadd39c29b97c8853c2fd245723a47ad422a1b836dc86d57b6d8c932abbca10fa1a4f8c574f366c876122ccf3b10764d62c973527b568ce8edb124ee9
- languageName: node
- linkType: hard
-
"@launchdarkly/js-client-sdk-common@npm:1.17.2":
version: 1.17.2
resolution: "@launchdarkly/js-client-sdk-common@npm:1.17.2"
@@ -8299,7 +8705,7 @@ __metadata:
languageName: node
linkType: hard
-"@launchdarkly/js-sdk-common@npm:2.20.0":
+"@launchdarkly/js-sdk-common@npm:2.20.0, @launchdarkly/js-sdk-common@npm:^2.20.0":
version: 2.20.0
resolution: "@launchdarkly/js-sdk-common@npm:2.20.0"
checksum: 10/9997bfb517aa9edaa689b6f44eb86a4847f45d798d8a32c8bd6614af42f5ab432acac989d755578137db2892aad43c32eb8ad61330ced24ecfbf001855349116
@@ -8424,7 +8830,7 @@ __metadata:
husky: "npm:^9.1.7"
prettier: "npm:^3.5.3"
pretty-quick: "npm:^4.1.1"
- turbo: "npm:^2.5.0"
+ turbo: "npm:2.8.7"
typescript: "npm:^5.8.3"
languageName: unknown
linkType: soft
@@ -8456,20 +8862,56 @@ __metadata:
languageName: unknown
linkType: soft
-"@launchdarkly/react-native-client-sdk@npm:^10.0.0, @launchdarkly/react-native-client-sdk@npm:^10.10.4":
- version: 10.10.4
- resolution: "@launchdarkly/react-native-client-sdk@npm:10.10.4"
+"@launchdarkly/react-native-client-sdk@npm:^10.0.0, @launchdarkly/react-native-client-sdk@npm:^10.10.4, @launchdarkly/react-native-client-sdk@npm:^10.12.5":
+ version: 10.12.6
+ resolution: "@launchdarkly/react-native-client-sdk@npm:10.12.6"
dependencies:
- "@launchdarkly/js-client-sdk-common": "npm:1.15.0"
- "@react-native-async-storage/async-storage": "npm:^1.21.0"
+ "@launchdarkly/js-client-sdk-common": "npm:1.17.2"
+ "@react-native-async-storage/async-storage": "npm:^2.0.0"
base64-js: "npm:^1.5.1"
peerDependencies:
react: "*"
react-native: "*"
- checksum: 10/aade0d80d19d8c18a8fad09bca6441ca49248149b0fa5fd35e4df7000740277a2c32311a5f15b424b3a489a92ffe36ea1f2678c067ca45534ad0fc65e7e19b4c
+ checksum: 10/b04c5e84901a643edccd946dbfd33499962b99218a804e41fdbab6984c953c9d30aa27130b387343bd2bd72fd1beb74e00dfc502f5b9eb627b8ea5c70511ad94
languageName: node
linkType: hard
+"@launchdarkly/session-replay-react-native@workspace:*, @launchdarkly/session-replay-react-native@workspace:sdk/@launchdarkly/react-native-ld-session-replay":
+ version: 0.0.0-use.local
+ resolution: "@launchdarkly/session-replay-react-native@workspace:sdk/@launchdarkly/react-native-ld-session-replay"
+ dependencies:
+ "@commitlint/config-conventional": "npm:^19.8.1"
+ "@eslint/compat": "npm:^1.3.2"
+ "@eslint/eslintrc": "npm:^3.3.1"
+ "@eslint/js": "npm:^9.35.0"
+ "@launchdarkly/js-sdk-common": "npm:^2.20.0"
+ "@launchdarkly/observability-react-native": "workspace:*"
+ "@launchdarkly/react-native-client-sdk": "npm:^10.12.5"
+ "@react-native/babel-preset": "npm:0.83.0"
+ "@react-native/eslint-config": "npm:0.83.0"
+ "@react-native/eslint-plugin": "npm:0.83.0"
+ "@release-it/conventional-changelog": "npm:^10.0.1"
+ "@types/jest": "npm:^29.5.14"
+ "@types/react": "npm:^19.2.0"
+ commitlint: "npm:^19.8.1"
+ del-cli: "npm:^6.0.0"
+ eslint: "npm:^8.57.1"
+ eslint-config-prettier: "npm:^10.1.8"
+ jest: "npm:^29.7.0"
+ lefthook: "npm:^2.0.3"
+ prettier: "npm:^3.0.0"
+ react: "npm:19.2.0"
+ react-native: "npm:0.83.0"
+ react-native-builder-bob: "npm:^0.40.17"
+ release-it: "npm:^19.0.4"
+ turbo: "npm:^2.5.6"
+ typescript: "npm:^5.9.2"
+ peerDependencies:
+ react: "*"
+ react-native: "*"
+ languageName: unknown
+ linkType: soft
+
"@launchdarkly/session-replay@workspace:*, @launchdarkly/session-replay@workspace:sdk/@launchdarkly/session-replay":
version: 0.0.0-use.local
resolution: "@launchdarkly/session-replay@workspace:sdk/@launchdarkly/session-replay"
@@ -9384,6 +9826,15 @@ __metadata:
languageName: node
linkType: hard
+"@nodeutils/defaults-deep@npm:1.1.0":
+ version: 1.1.0
+ resolution: "@nodeutils/defaults-deep@npm:1.1.0"
+ dependencies:
+ lodash: "npm:^4.15.0"
+ checksum: 10/4651c6e2179b0207f1a848f1e13eff7f2c24e7b6e52c965a8a5ef5140aea5df1fdafbf714026559e4f1f5828d3723eb35fe1b18dc2c7b0ec2265dc70b577bc34
+ languageName: node
+ linkType: hard
+
"@nolyfill/is-core-module@npm:1.0.39":
version: 1.0.39
resolution: "@nolyfill/is-core-module@npm:1.0.39"
@@ -9676,6 +10127,130 @@ __metadata:
languageName: node
linkType: hard
+"@octokit/auth-token@npm:^6.0.0":
+ version: 6.0.0
+ resolution: "@octokit/auth-token@npm:6.0.0"
+ checksum: 10/a30f5c4c984964b57193de5b6f67169f74e4779fedbe716157dd3558dd9de3ca5c105cae521b7bd8ce1ae180773a2ef01afe2306ad5a329f4fd291eba2b7c7d1
+ languageName: node
+ linkType: hard
+
+"@octokit/core@npm:^7.0.6":
+ version: 7.0.6
+ resolution: "@octokit/core@npm:7.0.6"
+ dependencies:
+ "@octokit/auth-token": "npm:^6.0.0"
+ "@octokit/graphql": "npm:^9.0.3"
+ "@octokit/request": "npm:^10.0.6"
+ "@octokit/request-error": "npm:^7.0.2"
+ "@octokit/types": "npm:^16.0.0"
+ before-after-hook: "npm:^4.0.0"
+ universal-user-agent: "npm:^7.0.0"
+ checksum: 10/852d41fc3150d2a891156427dd0575c77889f1c7a109894ee541594e3fd47c0d4e0a93fee22966c507dfd6158b522e42846c2ac46b9d896078194c95fa81f4ae
+ languageName: node
+ linkType: hard
+
+"@octokit/endpoint@npm:^11.0.2":
+ version: 11.0.2
+ resolution: "@octokit/endpoint@npm:11.0.2"
+ dependencies:
+ "@octokit/types": "npm:^16.0.0"
+ universal-user-agent: "npm:^7.0.2"
+ checksum: 10/0d088747baf94eafbba69da23ba840b40cd3f5d0bfbc51c692ff9d9d78de6d81f06366e6e30df8c1783355be826c27d38ab9ab0708396af8f430b06cfa29db35
+ languageName: node
+ linkType: hard
+
+"@octokit/graphql@npm:^9.0.3":
+ version: 9.0.3
+ resolution: "@octokit/graphql@npm:9.0.3"
+ dependencies:
+ "@octokit/request": "npm:^10.0.6"
+ "@octokit/types": "npm:^16.0.0"
+ universal-user-agent: "npm:^7.0.0"
+ checksum: 10/7b16f281f8571dce55280b3986fbb8d15465a7236164a5f6497ded7597ff9ee95d5796924555b979903fe8c6706fe6be1b3e140d807297f85ac8edeadc28f9fe
+ languageName: node
+ linkType: hard
+
+"@octokit/openapi-types@npm:^27.0.0":
+ version: 27.0.0
+ resolution: "@octokit/openapi-types@npm:27.0.0"
+ checksum: 10/5cd2cdf4e41fdf522e15e3d53f3ece8380d98dda9173a6fc905828fb2c33e8733d5f5d2a757ae3a572525f4749748e66cb40e7939372132988d8eb4ba978d54f
+ languageName: node
+ linkType: hard
+
+"@octokit/plugin-paginate-rest@npm:^14.0.0":
+ version: 14.0.0
+ resolution: "@octokit/plugin-paginate-rest@npm:14.0.0"
+ dependencies:
+ "@octokit/types": "npm:^16.0.0"
+ peerDependencies:
+ "@octokit/core": ">=6"
+ checksum: 10/57ddd857528dad9c02431bc6254c2374c06057872cf9656a4a88b162ebe1c2bc9f34fbec360f2ccff72c940f29b120758ce14e8135bd027223d381eb1b8b6579
+ languageName: node
+ linkType: hard
+
+"@octokit/plugin-request-log@npm:^6.0.0":
+ version: 6.0.0
+ resolution: "@octokit/plugin-request-log@npm:6.0.0"
+ peerDependencies:
+ "@octokit/core": ">=6"
+ checksum: 10/8a79973b1429bfead9113c4117f418aaef5ff368795daded3415ba14623d97d5fc08d1e822dbd566ecc9f041119e1a48a11853a9c48d9eb1caa62baa79c17f83
+ languageName: node
+ linkType: hard
+
+"@octokit/plugin-rest-endpoint-methods@npm:^17.0.0":
+ version: 17.0.0
+ resolution: "@octokit/plugin-rest-endpoint-methods@npm:17.0.0"
+ dependencies:
+ "@octokit/types": "npm:^16.0.0"
+ peerDependencies:
+ "@octokit/core": ">=6"
+ checksum: 10/e9d9ad4d9755cc7fb82fdcbfa870ddea8a432180f0f76c8469095557fd1e26f8caea8cae58401209be17c4f3d8cc48c0e16a3643e37e48f4d23c39e058bf2c55
+ languageName: node
+ linkType: hard
+
+"@octokit/request-error@npm:^7.0.2":
+ version: 7.1.0
+ resolution: "@octokit/request-error@npm:7.1.0"
+ dependencies:
+ "@octokit/types": "npm:^16.0.0"
+ checksum: 10/c1d447ff7482382c69f7a4b2eaa44c672906dd111d8a9196a5d07f2adc4ae0f0e12ec4ce0063f14f9b2fb5f0cef4451c95ec961a7a711bd900e5d6441d546570
+ languageName: node
+ linkType: hard
+
+"@octokit/request@npm:^10.0.6":
+ version: 10.0.7
+ resolution: "@octokit/request@npm:10.0.7"
+ dependencies:
+ "@octokit/endpoint": "npm:^11.0.2"
+ "@octokit/request-error": "npm:^7.0.2"
+ "@octokit/types": "npm:^16.0.0"
+ fast-content-type-parse: "npm:^3.0.0"
+ universal-user-agent: "npm:^7.0.2"
+ checksum: 10/eaf6d347340729b47d482b487411e3543384d1c07f9125c4e53c11ece53f22a0245b71be22dd48bd6ad16af48c7c323c7317da49a238206d07fb7cd3ef0c6e74
+ languageName: node
+ linkType: hard
+
+"@octokit/rest@npm:22.0.1":
+ version: 22.0.1
+ resolution: "@octokit/rest@npm:22.0.1"
+ dependencies:
+ "@octokit/core": "npm:^7.0.6"
+ "@octokit/plugin-paginate-rest": "npm:^14.0.0"
+ "@octokit/plugin-request-log": "npm:^6.0.0"
+ "@octokit/plugin-rest-endpoint-methods": "npm:^17.0.0"
+ checksum: 10/ec2e94cfa8766716faeb3ca18527d9af746482d35aaa6e4265a30cb669ae3f31f4ebb6235edebe5ae62bc2cec2b8e88902584f698df2e7cabac3a15fd27da665
+ languageName: node
+ linkType: hard
+
+"@octokit/types@npm:^16.0.0":
+ version: 16.0.0
+ resolution: "@octokit/types@npm:16.0.0"
+ dependencies:
+ "@octokit/openapi-types": "npm:^27.0.0"
+ checksum: 10/03d5cfc29556a9b53eae8beb1bf15c0b704dc722db2c51b53f093f3c3ee6c1d8e20b682be8117a3a17034b458be7746d1b22aaefb959ceb5152ad7589b39e2c9
+ languageName: node
+ linkType: hard
+
"@open-tech-world/cli-progress-bar@npm:^2.0.2":
version: 2.0.2
resolution: "@open-tech-world/cli-progress-bar@npm:2.0.2"
@@ -12375,6 +12950,13 @@ __metadata:
languageName: node
linkType: hard
+"@phun-ky/typeof@npm:2.0.3":
+ version: 2.0.3
+ resolution: "@phun-ky/typeof@npm:2.0.3"
+ checksum: 10/ca7daa8e520ca3e947c2cd47e25ab1f299acc87c05d5750747665c531a70395b8e4e5e510347bebc98d89d6c65dbe16b8d6604da2327d832aa5abe91703d0598
+ languageName: node
+ linkType: hard
+
"@pkgjs/parseargs@npm:^0.11.0":
version: 0.11.0
resolution: "@pkgjs/parseargs@npm:0.11.0"
@@ -12382,10 +12964,10 @@ __metadata:
languageName: node
linkType: hard
-"@pkgr/core@npm:^0.2.4":
- version: 0.2.7
- resolution: "@pkgr/core@npm:0.2.7"
- checksum: 10/b16959878940f3d3016b79a4b2c23fd518aaec6b47295baa3154fbcf6574fee644c51023bb69069fa3ea9cdcaca40432818f54695f11acc0ae326cf56676e4d1
+"@pkgr/core@npm:^0.2.9":
+ version: 0.2.9
+ resolution: "@pkgr/core@npm:0.2.9"
+ checksum: 10/bb2fb86977d63f836f8f5b09015d74e6af6488f7a411dcd2bfdca79d76b5a681a9112f41c45bdf88a9069f049718efc6f3900d7f1de66a2ec966068308ae517f
languageName: node
linkType: hard
@@ -12692,18 +13274,7 @@ __metadata:
languageName: node
linkType: hard
-"@react-native-async-storage/async-storage@npm:^1.21.0":
- version: 1.24.0
- resolution: "@react-native-async-storage/async-storage@npm:1.24.0"
- dependencies:
- merge-options: "npm:^3.0.4"
- peerDependencies:
- react-native: ^0.0.0-0 || >=0.60 <1.0
- checksum: 10/5a6b7ac8bd7a9e537a53a3f2301530c284fd885a45ce4a4e0014859bc0f7c89bee5c4b5a6b3740b8d83751561159b237474d18f32fad75ea7d56d4ddb2180d91
- languageName: node
- linkType: hard
-
-"@react-native-async-storage/async-storage@npm:^2.1.2":
+"@react-native-async-storage/async-storage@npm:^2.0.0, @react-native-async-storage/async-storage@npm:^2.1.2":
version: 2.2.0
resolution: "@react-native-async-storage/async-storage@npm:2.2.0"
dependencies:
@@ -12714,6 +13285,184 @@ __metadata:
languageName: node
linkType: hard
+"@react-native-community/cli-clean@npm:20.0.0":
+ version: 20.0.0
+ resolution: "@react-native-community/cli-clean@npm:20.0.0"
+ dependencies:
+ "@react-native-community/cli-tools": "npm:20.0.0"
+ chalk: "npm:^4.1.2"
+ execa: "npm:^5.0.0"
+ fast-glob: "npm:^3.3.2"
+ checksum: 10/56a261a83eb4fc60e81778659ace53997cc5d045fc09c7e7a3a991eaae60347a7349868bcc5b45db73d3234fc714fe6adbaf641669eddd94cfcfe1037dd616c1
+ languageName: node
+ linkType: hard
+
+"@react-native-community/cli-config-android@npm:20.0.0":
+ version: 20.0.0
+ resolution: "@react-native-community/cli-config-android@npm:20.0.0"
+ dependencies:
+ "@react-native-community/cli-tools": "npm:20.0.0"
+ chalk: "npm:^4.1.2"
+ fast-glob: "npm:^3.3.2"
+ fast-xml-parser: "npm:^4.4.1"
+ checksum: 10/fbd897df48793b050429e77114b8fcf42364b8847a199873818977cb8102ce303bb3e4fbf1842fd66608d96409e27835111e19e80c670dc6067066e53d4c500f
+ languageName: node
+ linkType: hard
+
+"@react-native-community/cli-config-apple@npm:20.0.0":
+ version: 20.0.0
+ resolution: "@react-native-community/cli-config-apple@npm:20.0.0"
+ dependencies:
+ "@react-native-community/cli-tools": "npm:20.0.0"
+ chalk: "npm:^4.1.2"
+ execa: "npm:^5.0.0"
+ fast-glob: "npm:^3.3.2"
+ checksum: 10/7c4e01c894199db48c15265d6d336ece4e103bf23e282e09f08eaa9e03b2237e8dae659e41a2f5fe7f091c9b31f22b3756bdd0f92b8eb6483d279c71b7fc6c99
+ languageName: node
+ linkType: hard
+
+"@react-native-community/cli-config@npm:20.0.0":
+ version: 20.0.0
+ resolution: "@react-native-community/cli-config@npm:20.0.0"
+ dependencies:
+ "@react-native-community/cli-tools": "npm:20.0.0"
+ chalk: "npm:^4.1.2"
+ cosmiconfig: "npm:^9.0.0"
+ deepmerge: "npm:^4.3.0"
+ fast-glob: "npm:^3.3.2"
+ joi: "npm:^17.2.1"
+ checksum: 10/aaf5e5cb07105abe0eb179b2ed230f24546068780cee02986b5d71447f928f5bff0e2fbc84e02302cf60f2795da8fa919eb204da41f9421f2cfaec9dc53c98c7
+ languageName: node
+ linkType: hard
+
+"@react-native-community/cli-doctor@npm:20.0.0":
+ version: 20.0.0
+ resolution: "@react-native-community/cli-doctor@npm:20.0.0"
+ dependencies:
+ "@react-native-community/cli-config": "npm:20.0.0"
+ "@react-native-community/cli-platform-android": "npm:20.0.0"
+ "@react-native-community/cli-platform-apple": "npm:20.0.0"
+ "@react-native-community/cli-platform-ios": "npm:20.0.0"
+ "@react-native-community/cli-tools": "npm:20.0.0"
+ chalk: "npm:^4.1.2"
+ command-exists: "npm:^1.2.8"
+ deepmerge: "npm:^4.3.0"
+ envinfo: "npm:^7.13.0"
+ execa: "npm:^5.0.0"
+ node-stream-zip: "npm:^1.9.1"
+ ora: "npm:^5.4.1"
+ semver: "npm:^7.5.2"
+ wcwidth: "npm:^1.0.1"
+ yaml: "npm:^2.2.1"
+ checksum: 10/c78de0b83287c1db03e780123a83c3f26a8883dc54b5b3a1c34e2d3ed1050e39fbf597b95d8899f878b5ef61a89e05493c62d644e84293008eb4da73a4feb2a8
+ languageName: node
+ linkType: hard
+
+"@react-native-community/cli-platform-android@npm:20.0.0":
+ version: 20.0.0
+ resolution: "@react-native-community/cli-platform-android@npm:20.0.0"
+ dependencies:
+ "@react-native-community/cli-config-android": "npm:20.0.0"
+ "@react-native-community/cli-tools": "npm:20.0.0"
+ chalk: "npm:^4.1.2"
+ execa: "npm:^5.0.0"
+ logkitty: "npm:^0.7.1"
+ checksum: 10/a5b4da7a329e3723d4285f60b18068e78a18451cc948ef79088f1dfbfffc22413a7e94a3c3cc91aee27cf9438bb6b57212b5275e7e5d7af7db41011c4c628f12
+ languageName: node
+ linkType: hard
+
+"@react-native-community/cli-platform-apple@npm:20.0.0":
+ version: 20.0.0
+ resolution: "@react-native-community/cli-platform-apple@npm:20.0.0"
+ dependencies:
+ "@react-native-community/cli-config-apple": "npm:20.0.0"
+ "@react-native-community/cli-tools": "npm:20.0.0"
+ chalk: "npm:^4.1.2"
+ execa: "npm:^5.0.0"
+ fast-xml-parser: "npm:^4.4.1"
+ checksum: 10/a1a4c0fcdf9e3c819e0804de2447aed230d1f16c36107728374121deda60acd644550c0f5aeb98f6cd25846da9e6358617c67aaf895eab6e9a81cff1030cf8dd
+ languageName: node
+ linkType: hard
+
+"@react-native-community/cli-platform-ios@npm:20.0.0":
+ version: 20.0.0
+ resolution: "@react-native-community/cli-platform-ios@npm:20.0.0"
+ dependencies:
+ "@react-native-community/cli-platform-apple": "npm:20.0.0"
+ checksum: 10/c7fc89332a7cb9fa71c1c5d4fe928d39b0514c74fdcc85251a7a35344f1f5e9e3b4cd23a85a70ce447dded6e6552a5edfa848cf07d8b26127a0c3b05ce3e1768
+ languageName: node
+ linkType: hard
+
+"@react-native-community/cli-server-api@npm:20.0.0":
+ version: 20.0.0
+ resolution: "@react-native-community/cli-server-api@npm:20.0.0"
+ dependencies:
+ "@react-native-community/cli-tools": "npm:20.0.0"
+ body-parser: "npm:^1.20.3"
+ compression: "npm:^1.7.1"
+ connect: "npm:^3.6.5"
+ errorhandler: "npm:^1.5.1"
+ nocache: "npm:^3.0.1"
+ open: "npm:^6.2.0"
+ pretty-format: "npm:^29.7.0"
+ serve-static: "npm:^1.13.1"
+ ws: "npm:^6.2.3"
+ checksum: 10/1d58c5a4a451c861db13065898f6c825b8c811fb37fa588fc76edede10d4899fd786055137339eda4033335db97630419017b4f843f4f36a1b00b37296710f47
+ languageName: node
+ linkType: hard
+
+"@react-native-community/cli-tools@npm:20.0.0":
+ version: 20.0.0
+ resolution: "@react-native-community/cli-tools@npm:20.0.0"
+ dependencies:
+ "@vscode/sudo-prompt": "npm:^9.0.0"
+ appdirsjs: "npm:^1.2.4"
+ chalk: "npm:^4.1.2"
+ execa: "npm:^5.0.0"
+ find-up: "npm:^5.0.0"
+ launch-editor: "npm:^2.9.1"
+ mime: "npm:^2.4.1"
+ ora: "npm:^5.4.1"
+ prompts: "npm:^2.4.2"
+ semver: "npm:^7.5.2"
+ checksum: 10/5418844eb46e159d05d6ca4af38e054ffd157ae016576eed4d10bb3bdc345bdb8ca30e3cc5a27aff4a7a49727fd4b1da88f7855469ebbfbbdd042ad58951b764
+ languageName: node
+ linkType: hard
+
+"@react-native-community/cli-types@npm:20.0.0":
+ version: 20.0.0
+ resolution: "@react-native-community/cli-types@npm:20.0.0"
+ dependencies:
+ joi: "npm:^17.2.1"
+ checksum: 10/b64b03ff09eb3952c37ba96544156f0b6ffa76e616361a48254e645f914beaa844943ff77ee1fba46445ef8b45f726109fc9ad249afb9d360602cb03db846368
+ languageName: node
+ linkType: hard
+
+"@react-native-community/cli@npm:20.0.0":
+ version: 20.0.0
+ resolution: "@react-native-community/cli@npm:20.0.0"
+ dependencies:
+ "@react-native-community/cli-clean": "npm:20.0.0"
+ "@react-native-community/cli-config": "npm:20.0.0"
+ "@react-native-community/cli-doctor": "npm:20.0.0"
+ "@react-native-community/cli-server-api": "npm:20.0.0"
+ "@react-native-community/cli-tools": "npm:20.0.0"
+ "@react-native-community/cli-types": "npm:20.0.0"
+ chalk: "npm:^4.1.2"
+ commander: "npm:^9.4.1"
+ deepmerge: "npm:^4.3.0"
+ execa: "npm:^5.0.0"
+ find-up: "npm:^5.0.0"
+ fs-extra: "npm:^8.1.0"
+ graceful-fs: "npm:^4.1.3"
+ prompts: "npm:^2.4.2"
+ semver: "npm:^7.5.2"
+ bin:
+ rnc-cli: build/bin.js
+ checksum: 10/9f52dce4f6c25d414ba4549153b70daef7708f5603f88f90147c9ec4dd29118f62995294eb20cb3f7c4018367bda66dac344d25ed0e9ffaad6b62a94b29ba75b
+ languageName: node
+ linkType: hard
+
"@react-native/assets-registry@npm:0.76.6":
version: 0.76.6
resolution: "@react-native/assets-registry@npm:0.76.6"
@@ -12728,6 +13477,13 @@ __metadata:
languageName: node
linkType: hard
+"@react-native/assets-registry@npm:0.83.0":
+ version: 0.83.0
+ resolution: "@react-native/assets-registry@npm:0.83.0"
+ checksum: 10/9c314a311739e5ea555155df54821f888f3c61de6bcd71db60a253b27aefb42116892d487efb57a5ba99998c9835e1b123019bfe4397c087d0bcef38bad43c8c
+ languageName: node
+ linkType: hard
+
"@react-native/babel-plugin-codegen@npm:0.76.6":
version: 0.76.6
resolution: "@react-native/babel-plugin-codegen@npm:0.76.6"
@@ -12756,6 +13512,16 @@ __metadata:
languageName: node
linkType: hard
+"@react-native/babel-plugin-codegen@npm:0.83.0":
+ version: 0.83.0
+ resolution: "@react-native/babel-plugin-codegen@npm:0.83.0"
+ dependencies:
+ "@babel/traverse": "npm:^7.25.3"
+ "@react-native/codegen": "npm:0.83.0"
+ checksum: 10/e43452305c2fcbfbc1647f1818241366a0924a6869ffae871cd86bffa7d6cd4d789edd1542f919a2f2906ebb2a425f4ad78766a4f3df8d5bc5317994d0a026f6
+ languageName: node
+ linkType: hard
+
"@react-native/babel-preset@npm:0.76.6":
version: 0.76.6
resolution: "@react-native/babel-preset@npm:0.76.6"
@@ -12921,6 +13687,61 @@ __metadata:
languageName: node
linkType: hard
+"@react-native/babel-preset@npm:0.83.0":
+ version: 0.83.0
+ resolution: "@react-native/babel-preset@npm:0.83.0"
+ dependencies:
+ "@babel/core": "npm:^7.25.2"
+ "@babel/plugin-proposal-export-default-from": "npm:^7.24.7"
+ "@babel/plugin-syntax-dynamic-import": "npm:^7.8.3"
+ "@babel/plugin-syntax-export-default-from": "npm:^7.24.7"
+ "@babel/plugin-syntax-nullish-coalescing-operator": "npm:^7.8.3"
+ "@babel/plugin-syntax-optional-chaining": "npm:^7.8.3"
+ "@babel/plugin-transform-arrow-functions": "npm:^7.24.7"
+ "@babel/plugin-transform-async-generator-functions": "npm:^7.25.4"
+ "@babel/plugin-transform-async-to-generator": "npm:^7.24.7"
+ "@babel/plugin-transform-block-scoping": "npm:^7.25.0"
+ "@babel/plugin-transform-class-properties": "npm:^7.25.4"
+ "@babel/plugin-transform-classes": "npm:^7.25.4"
+ "@babel/plugin-transform-computed-properties": "npm:^7.24.7"
+ "@babel/plugin-transform-destructuring": "npm:^7.24.8"
+ "@babel/plugin-transform-flow-strip-types": "npm:^7.25.2"
+ "@babel/plugin-transform-for-of": "npm:^7.24.7"
+ "@babel/plugin-transform-function-name": "npm:^7.25.1"
+ "@babel/plugin-transform-literals": "npm:^7.25.2"
+ "@babel/plugin-transform-logical-assignment-operators": "npm:^7.24.7"
+ "@babel/plugin-transform-modules-commonjs": "npm:^7.24.8"
+ "@babel/plugin-transform-named-capturing-groups-regex": "npm:^7.24.7"
+ "@babel/plugin-transform-nullish-coalescing-operator": "npm:^7.24.7"
+ "@babel/plugin-transform-numeric-separator": "npm:^7.24.7"
+ "@babel/plugin-transform-object-rest-spread": "npm:^7.24.7"
+ "@babel/plugin-transform-optional-catch-binding": "npm:^7.24.7"
+ "@babel/plugin-transform-optional-chaining": "npm:^7.24.8"
+ "@babel/plugin-transform-parameters": "npm:^7.24.7"
+ "@babel/plugin-transform-private-methods": "npm:^7.24.7"
+ "@babel/plugin-transform-private-property-in-object": "npm:^7.24.7"
+ "@babel/plugin-transform-react-display-name": "npm:^7.24.7"
+ "@babel/plugin-transform-react-jsx": "npm:^7.25.2"
+ "@babel/plugin-transform-react-jsx-self": "npm:^7.24.7"
+ "@babel/plugin-transform-react-jsx-source": "npm:^7.24.7"
+ "@babel/plugin-transform-regenerator": "npm:^7.24.7"
+ "@babel/plugin-transform-runtime": "npm:^7.24.7"
+ "@babel/plugin-transform-shorthand-properties": "npm:^7.24.7"
+ "@babel/plugin-transform-spread": "npm:^7.24.7"
+ "@babel/plugin-transform-sticky-regex": "npm:^7.24.7"
+ "@babel/plugin-transform-typescript": "npm:^7.25.2"
+ "@babel/plugin-transform-unicode-regex": "npm:^7.24.7"
+ "@babel/template": "npm:^7.25.0"
+ "@react-native/babel-plugin-codegen": "npm:0.83.0"
+ babel-plugin-syntax-hermes-parser: "npm:0.32.0"
+ babel-plugin-transform-flow-enums: "npm:^0.0.2"
+ react-refresh: "npm:^0.14.0"
+ peerDependencies:
+ "@babel/core": "*"
+ checksum: 10/c68fcec86eabdce17c83b2f500d6bf09d5f25755dccb10d1c0117522152331474d605ccfc7f53e4b9e3df63482616e1143d554897b76fcd7154a1f2079192f32
+ languageName: node
+ linkType: hard
+
"@react-native/codegen@npm:0.76.6":
version: 0.76.6
resolution: "@react-native/codegen@npm:0.76.6"
@@ -12972,6 +13793,23 @@ __metadata:
languageName: node
linkType: hard
+"@react-native/codegen@npm:0.83.0":
+ version: 0.83.0
+ resolution: "@react-native/codegen@npm:0.83.0"
+ dependencies:
+ "@babel/core": "npm:^7.25.2"
+ "@babel/parser": "npm:^7.25.3"
+ glob: "npm:^7.1.1"
+ hermes-parser: "npm:0.32.0"
+ invariant: "npm:^2.2.4"
+ nullthrows: "npm:^1.1.1"
+ yargs: "npm:^17.6.2"
+ peerDependencies:
+ "@babel/core": "*"
+ checksum: 10/6a201c7760aa7404e869eca97ebbeb233eec318d4881c218b899a8c1534793bd1d17c6ff334c3ef827ccf5e43d90fbab6ca9d932af8f4bf19a8d5c8e9dc8f021
+ languageName: node
+ linkType: hard
+
"@react-native/community-cli-plugin@npm:0.76.6":
version: 0.76.6
resolution: "@react-native/community-cli-plugin@npm:0.76.6"
@@ -13017,6 +13855,29 @@ __metadata:
languageName: node
linkType: hard
+"@react-native/community-cli-plugin@npm:0.83.0":
+ version: 0.83.0
+ resolution: "@react-native/community-cli-plugin@npm:0.83.0"
+ dependencies:
+ "@react-native/dev-middleware": "npm:0.83.0"
+ debug: "npm:^4.4.0"
+ invariant: "npm:^2.2.4"
+ metro: "npm:^0.83.3"
+ metro-config: "npm:^0.83.3"
+ metro-core: "npm:^0.83.3"
+ semver: "npm:^7.1.3"
+ peerDependencies:
+ "@react-native-community/cli": "*"
+ "@react-native/metro-config": "*"
+ peerDependenciesMeta:
+ "@react-native-community/cli":
+ optional: true
+ "@react-native/metro-config":
+ optional: true
+ checksum: 10/b0a664d828270c7be320c84b6f6f37dc08682d899157865cd8655f5bac99d2b990c9cc4dcaf57f4c284c698af41dd97bc4acd34fec5fc052f535c83a74cf0cb9
+ languageName: node
+ linkType: hard
+
"@react-native/debugger-frontend@npm:0.76.6":
version: 0.76.6
resolution: "@react-native/debugger-frontend@npm:0.76.6"
@@ -13038,6 +13899,23 @@ __metadata:
languageName: node
linkType: hard
+"@react-native/debugger-frontend@npm:0.83.0":
+ version: 0.83.0
+ resolution: "@react-native/debugger-frontend@npm:0.83.0"
+ checksum: 10/3f52e5400c24173f7619d35be95b6899f15e087e218d8ad580a5a931e908c2d0ef0e752619a73752bc5ed18f35a96fd38723c1967fa65f68e9f8cc6bd43972dc
+ languageName: node
+ linkType: hard
+
+"@react-native/debugger-shell@npm:0.83.0":
+ version: 0.83.0
+ resolution: "@react-native/debugger-shell@npm:0.83.0"
+ dependencies:
+ cross-spawn: "npm:^7.0.6"
+ fb-dotslash: "npm:0.5.8"
+ checksum: 10/51b61131b90a9e09f259a5999759b77d9384cf9b0f38e4c4da1b63a1a729126349f9d20f51d599e527ebe5430945e2e1ddde17d933aa30c0775e2437694db50f
+ languageName: node
+ linkType: hard
+
"@react-native/dev-middleware@npm:0.76.6":
version: 0.76.6
resolution: "@react-native/dev-middleware@npm:0.76.6"
@@ -13096,6 +13974,56 @@ __metadata:
languageName: node
linkType: hard
+"@react-native/dev-middleware@npm:0.83.0":
+ version: 0.83.0
+ resolution: "@react-native/dev-middleware@npm:0.83.0"
+ dependencies:
+ "@isaacs/ttlcache": "npm:^1.4.1"
+ "@react-native/debugger-frontend": "npm:0.83.0"
+ "@react-native/debugger-shell": "npm:0.83.0"
+ chrome-launcher: "npm:^0.15.2"
+ chromium-edge-launcher: "npm:^0.2.0"
+ connect: "npm:^3.6.5"
+ debug: "npm:^4.4.0"
+ invariant: "npm:^2.2.4"
+ nullthrows: "npm:^1.1.1"
+ open: "npm:^7.0.3"
+ serve-static: "npm:^1.16.2"
+ ws: "npm:^7.5.10"
+ checksum: 10/524df13d559e4593887b6183cedafb43ea0d6b07e4b04b527549efcce03e2809044937c7fc0c6483fc14fb237d74b0c706c2fd01825e3abb5a3cc009a27aba8b
+ languageName: node
+ linkType: hard
+
+"@react-native/eslint-config@npm:0.83.0":
+ version: 0.83.0
+ resolution: "@react-native/eslint-config@npm:0.83.0"
+ dependencies:
+ "@babel/core": "npm:^7.25.2"
+ "@babel/eslint-parser": "npm:^7.25.1"
+ "@react-native/eslint-plugin": "npm:0.83.0"
+ "@typescript-eslint/eslint-plugin": "npm:^8.36.0"
+ "@typescript-eslint/parser": "npm:^8.36.0"
+ eslint-config-prettier: "npm:^8.5.0"
+ eslint-plugin-eslint-comments: "npm:^3.2.0"
+ eslint-plugin-ft-flow: "npm:^2.0.1"
+ eslint-plugin-jest: "npm:^29.0.1"
+ eslint-plugin-react: "npm:^7.30.1"
+ eslint-plugin-react-hooks: "npm:^7.0.1"
+ eslint-plugin-react-native: "npm:^4.0.0"
+ peerDependencies:
+ eslint: ">=8"
+ prettier: ">=2"
+ checksum: 10/57499395d2438257830aa745da0b5ce520a8c5bded4b300c6b86fbc5695a56ffe2d684559071066ec04686b2c7a1bfb688913ade7f0754ac9dff03871964a63b
+ languageName: node
+ linkType: hard
+
+"@react-native/eslint-plugin@npm:0.83.0":
+ version: 0.83.0
+ resolution: "@react-native/eslint-plugin@npm:0.83.0"
+ checksum: 10/aa62a1157094926b1cc616ad73887045a189b63e8d3d9b021633019ff92f1bbe5188b5f3c9cd110ea4c33cd3f696ab6b578ed3c1b347f6dc48adef2cf1cb3ecc
+ languageName: node
+ linkType: hard
+
"@react-native/gradle-plugin@npm:0.76.6":
version: 0.76.6
resolution: "@react-native/gradle-plugin@npm:0.76.6"
@@ -13110,6 +14038,13 @@ __metadata:
languageName: node
linkType: hard
+"@react-native/gradle-plugin@npm:0.83.0":
+ version: 0.83.0
+ resolution: "@react-native/gradle-plugin@npm:0.83.0"
+ checksum: 10/dcd7a47b21629a78a6f079a16a87d85ed78214dd19efafb054e7718624774b07e8c10572d054b9e31ac80c96148127a40da164b44e04e8aa434cfb93ead258fc
+ languageName: node
+ linkType: hard
+
"@react-native/js-polyfills@npm:0.76.6":
version: 0.76.6
resolution: "@react-native/js-polyfills@npm:0.76.6"
@@ -13124,6 +14059,13 @@ __metadata:
languageName: node
linkType: hard
+"@react-native/js-polyfills@npm:0.83.0":
+ version: 0.83.0
+ resolution: "@react-native/js-polyfills@npm:0.83.0"
+ checksum: 10/ce6b4d7586cb3abf866437f1590b496ab288bf19e4e4b9e58e5f6ccddb57926825cecad244ed80004f6624ad8a2b624c77becb3107c59cc27101791bf1807556
+ languageName: node
+ linkType: hard
+
"@react-native/metro-babel-transformer@npm:0.76.6":
version: 0.76.6
resolution: "@react-native/metro-babel-transformer@npm:0.76.6"
@@ -13138,6 +14080,32 @@ __metadata:
languageName: node
linkType: hard
+"@react-native/metro-babel-transformer@npm:0.83.0":
+ version: 0.83.0
+ resolution: "@react-native/metro-babel-transformer@npm:0.83.0"
+ dependencies:
+ "@babel/core": "npm:^7.25.2"
+ "@react-native/babel-preset": "npm:0.83.0"
+ hermes-parser: "npm:0.32.0"
+ nullthrows: "npm:^1.1.1"
+ peerDependencies:
+ "@babel/core": "*"
+ checksum: 10/b87885155d6809ae5171a793a036e17b2c0489d1d5326f4852b07abedd6d8ee316c93466db451818d85f9f783dfd5652ece349a7bea9a9762e3eb829cc5598f8
+ languageName: node
+ linkType: hard
+
+"@react-native/metro-config@npm:0.83.0":
+ version: 0.83.0
+ resolution: "@react-native/metro-config@npm:0.83.0"
+ dependencies:
+ "@react-native/js-polyfills": "npm:0.83.0"
+ "@react-native/metro-babel-transformer": "npm:0.83.0"
+ metro-config: "npm:^0.83.3"
+ metro-runtime: "npm:^0.83.3"
+ checksum: 10/7316d21730443a38195ec1222c1de27a09b219c310d1bc057e0b9a9af503213d71ec9df387c65bbc3cadbb0b4dd1d5ee9958ab3b6b499d1f71a281c13e522614
+ languageName: node
+ linkType: hard
+
"@react-native/normalize-colors@npm:0.76.6":
version: 0.76.6
resolution: "@react-native/normalize-colors@npm:0.76.6"
@@ -13166,6 +14134,13 @@ __metadata:
languageName: node
linkType: hard
+"@react-native/normalize-colors@npm:0.83.0":
+ version: 0.83.0
+ resolution: "@react-native/normalize-colors@npm:0.83.0"
+ checksum: 10/84e3122bd0292ae9ee61a6d2997119196a5dc128ede7770a2a70e3b9de1b78f5f2a10b44dc683ce2652ad8f45767f249a74d1a86f7657a5dae7a377790512f68
+ languageName: node
+ linkType: hard
+
"@react-native/normalize-colors@npm:^0.74.1":
version: 0.74.88
resolution: "@react-native/normalize-colors@npm:0.74.88"
@@ -13173,6 +14148,13 @@ __metadata:
languageName: node
linkType: hard
+"@react-native/typescript-config@npm:0.83.0":
+ version: 0.83.0
+ resolution: "@react-native/typescript-config@npm:0.83.0"
+ checksum: 10/ad256ffa3602a34539b5f94886c1ce7960537d6992a28d7bbc833996139394081dfbe2ae9f2e40cb505050e8d6c1c9d841330928218281637e34c1b9c5aa0366
+ languageName: node
+ linkType: hard
+
"@react-native/virtualized-lists@npm:0.76.6":
version: 0.76.6
resolution: "@react-native/virtualized-lists@npm:0.76.6"
@@ -13207,6 +14189,23 @@ __metadata:
languageName: node
linkType: hard
+"@react-native/virtualized-lists@npm:0.83.0":
+ version: 0.83.0
+ resolution: "@react-native/virtualized-lists@npm:0.83.0"
+ dependencies:
+ invariant: "npm:^2.2.4"
+ nullthrows: "npm:^1.1.1"
+ peerDependencies:
+ "@types/react": ^19.2.0
+ react: "*"
+ react-native: "*"
+ peerDependenciesMeta:
+ "@types/react":
+ optional: true
+ checksum: 10/b51a3c0c110b6d259b6cf25fa4d143b03cbd6b637e5b33ea07453c0aa12a061e2f861a67c1b4089f96817ef46a1bd3709ecae3133026e92b77979b96a08bff06
+ languageName: node
+ linkType: hard
+
"@react-navigation/bottom-tabs@npm:^7.2.0, @react-navigation/bottom-tabs@npm:^7.3.10":
version: 7.4.2
resolution: "@react-navigation/bottom-tabs@npm:7.4.2"
@@ -13464,6 +14463,23 @@ __metadata:
languageName: node
linkType: hard
+"@release-it/conventional-changelog@npm:^10.0.1":
+ version: 10.0.4
+ resolution: "@release-it/conventional-changelog@npm:10.0.4"
+ dependencies:
+ "@conventional-changelog/git-client": "npm:^2.5.1"
+ concat-stream: "npm:^2.0.0"
+ conventional-changelog: "npm:^7.1.1"
+ conventional-changelog-angular: "npm:^8.1.0"
+ conventional-changelog-conventionalcommits: "npm:^9.1.0"
+ conventional-recommended-bump: "npm:^11.2.0"
+ semver: "npm:^7.7.3"
+ peerDependencies:
+ release-it: ^18.0.0 || ^19.0.0
+ checksum: 10/b3f55ab81f10041be0a8c367d1898c4d04fe8f05f7f6e3b1636805a3df58f0dbb6560d8725bfbd16442d7cd860856d227ba5e950dbee4ee3a9c8e1168a475394
+ languageName: node
+ linkType: hard
+
"@remix-run/css-bundle@npm:^2.17.3":
version: 2.17.4
resolution: "@remix-run/css-bundle@npm:2.17.4"
@@ -14474,6 +15490,29 @@ __metadata:
languageName: node
linkType: hard
+"@sideway/address@npm:^4.1.5":
+ version: 4.1.5
+ resolution: "@sideway/address@npm:4.1.5"
+ dependencies:
+ "@hapi/hoek": "npm:^9.0.0"
+ checksum: 10/c4c73ac0339504f34e016d3a687118e7ddf197c1c968579572123b67b230be84caa705f0f634efdfdde7f2e07a6e0224b3c70665dc420d8bc95bf400cfc4c998
+ languageName: node
+ linkType: hard
+
+"@sideway/formula@npm:^3.0.1":
+ version: 3.0.1
+ resolution: "@sideway/formula@npm:3.0.1"
+ checksum: 10/8d3ee7f80df4e5204b2cbe92a2a711ca89684965a5c9eb3b316b7051212d3522e332a65a0bb2a07cc708fcd1d0b27fcb30f43ff0bcd5089d7006c7160a89eefe
+ languageName: node
+ linkType: hard
+
+"@sideway/pinpoint@npm:^2.0.0":
+ version: 2.0.0
+ resolution: "@sideway/pinpoint@npm:2.0.0"
+ checksum: 10/1ed21800128b2b23280ba4c9db26c8ff6142b97a8683f17639fd7f2128aa09046461574800b30fb407afc5b663c2331795ccf3b654d4b38fa096e41a5c786bf8
+ languageName: node
+ linkType: hard
+
"@sigstore/bundle@npm:^3.0.0":
version: 3.0.0
resolution: "@sigstore/bundle@npm:3.0.0"
@@ -14539,6 +15578,25 @@ __metadata:
languageName: node
linkType: hard
+"@simple-libs/child-process-utils@npm:^1.0.0":
+ version: 1.0.1
+ resolution: "@simple-libs/child-process-utils@npm:1.0.1"
+ dependencies:
+ "@simple-libs/stream-utils": "npm:^1.1.0"
+ "@types/node": "npm:^22.0.0"
+ checksum: 10/5a8aa820fa635a116027b782fe601ec673a98f302e991e4b84097e007d7d65106caad96d5674d38a673c8fb63e0a737345498e982db5d53562b6cae5a680ee6c
+ languageName: node
+ linkType: hard
+
+"@simple-libs/stream-utils@npm:^1.1.0":
+ version: 1.1.0
+ resolution: "@simple-libs/stream-utils@npm:1.1.0"
+ dependencies:
+ "@types/node": "npm:^22.0.0"
+ checksum: 10/13cb27400fa96c3d212d273ebc501851eaf4b13067be9961cfcc51e19e715e698c12cebd974ffa3135e94c7fd59c5bc857135cc64c1f61f3dd5f38e1a80d88a1
+ languageName: node
+ linkType: hard
+
"@sinclair/typebox@npm:0.25.24":
version: 0.25.24
resolution: "@sinclair/typebox@npm:0.25.24"
@@ -15353,6 +16411,15 @@ __metadata:
languageName: node
linkType: hard
+"@types/conventional-commits-parser@npm:^5.0.0":
+ version: 5.0.2
+ resolution: "@types/conventional-commits-parser@npm:5.0.2"
+ dependencies:
+ "@types/node": "npm:*"
+ checksum: 10/c6f9a47f66dc4f8d0de89ba44f47a1574db010b012c082c43ff1a86856053424e84dd53f59f88ab7cd64b9b20f7ee8957553aba2408768a128a9feb8d0ecfd60
+ languageName: node
+ linkType: hard
+
"@types/cookie@npm:^0.4.1":
version: 0.4.1
resolution: "@types/cookie@npm:0.4.1"
@@ -15726,7 +16793,7 @@ __metadata:
languageName: node
linkType: hard
-"@types/jest@npm:*, @types/jest@npm:^29.5.12, @types/jest@npm:^29.5.2":
+"@types/jest@npm:*, @types/jest@npm:^29.5.12, @types/jest@npm:^29.5.14, @types/jest@npm:^29.5.2":
version: 29.5.14
resolution: "@types/jest@npm:29.5.14"
dependencies:
@@ -15986,12 +17053,12 @@ __metadata:
languageName: node
linkType: hard
-"@types/node@npm:*, @types/node@npm:>=10.0.0, @types/node@npm:>=12.12.47, @types/node@npm:>=13.7.0":
- version: 25.2.1
- resolution: "@types/node@npm:25.2.1"
+"@types/node@npm:*, @types/node@npm:>=10.0.0, @types/node@npm:>=12.12.47, @types/node@npm:>=13.7.0, @types/node@npm:^22.0.0, @types/node@npm:^22.13.5, @types/node@npm:^22.14.0, @types/node@npm:^22.15.29":
+ version: 22.19.7
+ resolution: "@types/node@npm:22.19.7"
dependencies:
- undici-types: "npm:~7.16.0"
- checksum: 10/aab73de56dbb674a173a49618b9f9b4aff3ed5815c47104a8fcaa8ca0728effced8d6ed941aa342b7d1f9dfcd641513250a178f4a656067f461dd793ab422911
+ undici-types: "npm:~6.21.0"
+ checksum: 10/0a5c9cc3bdd2a2d8105735b136e280a2dec90136679adfe82faa7e4de375dcc6b4cebaa6b2de35cc6b37e5e135cdc9486373d574782a4ca22f5eeab299111aa6
languageName: node
linkType: hard
@@ -16050,19 +17117,10 @@ __metadata:
languageName: node
linkType: hard
-"@types/node@npm:^22.13.5, @types/node@npm:^22.14.0, @types/node@npm:^22.15.29":
- version: 22.16.4
- resolution: "@types/node@npm:22.16.4"
- dependencies:
- undici-types: "npm:~6.21.0"
- checksum: 10/6d2c133bf1ac498b78f15f8a13b2d5a5853e62606feaec1c9d2c93088f038d4ef94dc869a9a1155554e77643e2f4630afb3697daca5471843e08684ee9a1cc8a
- languageName: node
- linkType: hard
-
-"@types/normalize-package-data@npm:^2.4.0":
- version: 2.4.0
- resolution: "@types/normalize-package-data@npm:2.4.0"
- checksum: 10/f98b30d59e968be565846347b6ec34dd5ee709f85eb440d294e359e67397af8d3e0211e51ba2f1890783df49802e160f04ce438f6816814923b92d1a62e831c8
+"@types/normalize-package-data@npm:^2.4.0, @types/normalize-package-data@npm:^2.4.4":
+ version: 2.4.4
+ resolution: "@types/normalize-package-data@npm:2.4.4"
+ checksum: 10/65dff72b543997b7be8b0265eca7ace0e34b75c3e5fee31de11179d08fa7124a7a5587265d53d0409532ecb7f7fba662c2012807963e1f9b059653ec2c83ee05
languageName: node
linkType: hard
@@ -16096,6 +17154,13 @@ __metadata:
languageName: node
linkType: hard
+"@types/parse-path@npm:^7.0.0":
+ version: 7.0.3
+ resolution: "@types/parse-path@npm:7.0.3"
+ checksum: 10/21a12c228d38f5a75659dfd7cb127dc2001ed3f6acbd1b2e0575d1348c735594c0bab06a97fe849c151438384829f20ea5971cb045f7ecd37d53c76a9fcb9de3
+ languageName: node
+ linkType: hard
+
"@types/pg-pool@npm:2.0.6":
version: 2.0.6
resolution: "@types/pg-pool@npm:2.0.6"
@@ -16232,12 +17297,12 @@ __metadata:
languageName: node
linkType: hard
-"@types/react@npm:*, @types/react@npm:^19.0.10, @types/react@npm:^19.0.4":
- version: 19.1.0
- resolution: "@types/react@npm:19.1.0"
+"@types/react@npm:*, @types/react@npm:^19.0.10, @types/react@npm:^19.0.4, @types/react@npm:^19.2.0":
+ version: 19.2.10
+ resolution: "@types/react@npm:19.2.10"
dependencies:
- csstype: "npm:^3.0.2"
- checksum: 10/bfa3bb7e2efe929bdf41bf36461f2598611a29647852b8b7ecde510e83f797caf7f290388d13e2b71055df10587b3c41fc4345c1d9cbc38b4e897b03ad11c02f
+ csstype: "npm:^3.2.2"
+ checksum: 10/0e34a0e42db02f4b3f4bed446128c555446c2854b833d71d597e6c8b08800dd90519a03a226ad250cccc4a0c9e51bd3f9c54cdcb79ee1219f4d5b318fb3a3813
languageName: node
linkType: hard
@@ -16497,7 +17562,7 @@ __metadata:
languageName: node
linkType: hard
-"@typescript-eslint/eslint-plugin@npm:8.54.0, @typescript-eslint/eslint-plugin@npm:^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0, @typescript-eslint/eslint-plugin@npm:^8.0.0, @typescript-eslint/eslint-plugin@npm:^8.18.2, @typescript-eslint/eslint-plugin@npm:^8.9.0":
+"@typescript-eslint/eslint-plugin@npm:8.54.0, @typescript-eslint/eslint-plugin@npm:^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0, @typescript-eslint/eslint-plugin@npm:^8.0.0, @typescript-eslint/eslint-plugin@npm:^8.18.2, @typescript-eslint/eslint-plugin@npm:^8.36.0, @typescript-eslint/eslint-plugin@npm:^8.9.0":
version: 8.54.0
resolution: "@typescript-eslint/eslint-plugin@npm:8.54.0"
dependencies:
@@ -16564,7 +17629,7 @@ __metadata:
languageName: node
linkType: hard
-"@typescript-eslint/parser@npm:8.54.0, @typescript-eslint/parser@npm:^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0, @typescript-eslint/parser@npm:^8.0.0, @typescript-eslint/parser@npm:^8.18.2, @typescript-eslint/parser@npm:^8.9.0":
+"@typescript-eslint/parser@npm:8.54.0, @typescript-eslint/parser@npm:^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0, @typescript-eslint/parser@npm:^8.0.0, @typescript-eslint/parser@npm:^8.18.2, @typescript-eslint/parser@npm:^8.36.0, @typescript-eslint/parser@npm:^8.9.0":
version: 8.54.0
resolution: "@typescript-eslint/parser@npm:8.54.0"
dependencies:
@@ -16826,7 +17891,7 @@ __metadata:
languageName: node
linkType: hard
-"@typescript-eslint/utils@npm:8.54.0, @typescript-eslint/utils@npm:^8.29.1":
+"@typescript-eslint/utils@npm:8.54.0, @typescript-eslint/utils@npm:^8.0.0, @typescript-eslint/utils@npm:^8.29.1":
version: 8.54.0
resolution: "@typescript-eslint/utils@npm:8.54.0"
dependencies:
@@ -17840,6 +18905,13 @@ __metadata:
languageName: node
linkType: hard
+"@vscode/sudo-prompt@npm:^9.0.0":
+ version: 9.3.2
+ resolution: "@vscode/sudo-prompt@npm:9.3.2"
+ checksum: 10/2eabbf59ba784c5828d9f45cde2ada83f51796d88dea05ed0c270a98545ad5f47c8d48e54c2ed335273ec75499e9700ee8b48f1d9bf2bb3e42050faf1070d8c3
+ languageName: node
+ linkType: hard
+
"@vue/compiler-core@npm:3.5.13":
version: 3.5.13
resolution: "@vue/compiler-core@npm:3.5.13"
@@ -18215,6 +19287,18 @@ __metadata:
languageName: node
linkType: hard
+"JSONStream@npm:^1.3.5":
+ version: 1.3.5
+ resolution: "JSONStream@npm:1.3.5"
+ dependencies:
+ jsonparse: "npm:^1.2.0"
+ through: "npm:>=2.2.7 <3"
+ bin:
+ JSONStream: ./bin.js
+ checksum: 10/e30daf7b9b2da23076181d9a0e4bec33bc1d97e8c0385b949f1b16ba3366a1d241ec6f077850c01fe32379b5ebb8b96b65496984bc1545a93a5150bf4c267439
+ languageName: node
+ linkType: hard
+
"abab@npm:^2.0.3, abab@npm:^2.0.5, abab@npm:^2.0.6":
version: 2.0.6
resolution: "abab@npm:2.0.6"
@@ -18647,6 +19731,17 @@ __metadata:
languageName: node
linkType: hard
+"ansi-fragments@npm:^0.2.1":
+ version: 0.2.1
+ resolution: "ansi-fragments@npm:0.2.1"
+ dependencies:
+ colorette: "npm:^1.0.7"
+ slice-ansi: "npm:^2.0.0"
+ strip-ansi: "npm:^5.0.0"
+ checksum: 10/2380829941c8884290f65ed0af9ed2e0449efc24d8d15d0bc451f0836f14a70076ddd1322dc2c60372874c4598228ca707edf578ed353f8054cfbf872a7ecac2
+ languageName: node
+ linkType: hard
+
"ansi-html-community@npm:^0.0.8":
version: 0.0.8
resolution: "ansi-html-community@npm:0.0.8"
@@ -18871,6 +19966,13 @@ __metadata:
languageName: node
linkType: hard
+"appdirsjs@npm:^1.2.4":
+ version: 1.2.7
+ resolution: "appdirsjs@npm:1.2.7"
+ checksum: 10/8f6cb9cc18de2b38e2f5efddf764c5f0331aba4168ee28cb7370b98e1dc69316352b9a936acf4d628b4dcc510d77b1645ed4b68ab2231e302f835d35e11348d3
+ languageName: node
+ linkType: hard
+
"append-field@npm:^1.0.0":
version: 1.0.0
resolution: "append-field@npm:1.0.0"
@@ -18971,6 +20073,26 @@ __metadata:
languageName: node
linkType: hard
+"arkregex@npm:0.0.5":
+ version: 0.0.5
+ resolution: "arkregex@npm:0.0.5"
+ dependencies:
+ "@ark/util": "npm:0.56.0"
+ checksum: 10/c5eca109df57639b3245e1e72efe1b43cf881a2234b29736b11f57d29674d9ef78a2dcf54f5381a33690d53ce8989520bc123bb686dcce83f15c44f141c7f8a9
+ languageName: node
+ linkType: hard
+
+"arktype@npm:^2.1.15":
+ version: 2.1.29
+ resolution: "arktype@npm:2.1.29"
+ dependencies:
+ "@ark/schema": "npm:0.56.0"
+ "@ark/util": "npm:0.56.0"
+ arkregex: "npm:0.0.5"
+ checksum: 10/091df54e5df0282a26f5de74cc001569483fc61b3297277a51cb8244f277334a549cf8ae3342ca3bbde95bd10172aaa2f86e6c5738e2853b2b66c088a7c9f398
+ languageName: node
+ linkType: hard
+
"array-buffer-byte-length@npm:^1.0.1, array-buffer-byte-length@npm:^1.0.2":
version: 1.0.2
resolution: "array-buffer-byte-length@npm:1.0.2"
@@ -18995,6 +20117,13 @@ __metadata:
languageName: node
linkType: hard
+"array-ify@npm:^1.0.0":
+ version: 1.0.0
+ resolution: "array-ify@npm:1.0.0"
+ checksum: 10/c0502015b319c93dd4484f18036bcc4b654eb76a4aa1f04afbcef11ac918859bb1f5d71ba1f0f1141770db9eef1a4f40f1761753650873068010bbf7bcdae4a4
+ languageName: node
+ linkType: hard
+
"array-includes@npm:^3.1.6, array-includes@npm:^3.1.8, array-includes@npm:^3.1.9":
version: 3.1.9
resolution: "array-includes@npm:3.1.9"
@@ -19225,6 +20354,13 @@ __metadata:
languageName: node
linkType: hard
+"astral-regex@npm:^1.0.0":
+ version: 1.0.0
+ resolution: "astral-regex@npm:1.0.0"
+ checksum: 10/93417fc0879531cd95ace2560a54df865c9461a3ac0714c60cbbaa5f1f85d2bee85489e78d82f70b911b71ac25c5f05fc5a36017f44c9bb33c701bee229ff848
+ languageName: node
+ linkType: hard
+
"astral-regex@npm:^2.0.0":
version: 2.0.0
resolution: "astral-regex@npm:2.0.0"
@@ -19269,7 +20405,7 @@ __metadata:
languageName: node
linkType: hard
-"async-retry@npm:^1.2.1, async-retry@npm:^1.3.3":
+"async-retry@npm:1.3.3, async-retry@npm:^1.2.1, async-retry@npm:^1.3.3":
version: 1.3.3
resolution: "async-retry@npm:1.3.3"
dependencies:
@@ -19506,16 +20642,16 @@ __metadata:
languageName: node
linkType: hard
-"babel-plugin-polyfill-corejs2@npm:^0.4.10":
- version: 0.4.11
- resolution: "babel-plugin-polyfill-corejs2@npm:0.4.11"
+"babel-plugin-polyfill-corejs2@npm:^0.4.10, babel-plugin-polyfill-corejs2@npm:^0.4.14":
+ version: 0.4.15
+ resolution: "babel-plugin-polyfill-corejs2@npm:0.4.15"
dependencies:
- "@babel/compat-data": "npm:^7.22.6"
- "@babel/helper-define-polyfill-provider": "npm:^0.6.2"
+ "@babel/compat-data": "npm:^7.28.6"
+ "@babel/helper-define-polyfill-provider": "npm:^0.6.6"
semver: "npm:^6.3.1"
peerDependencies:
"@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
- checksum: 10/9c79908bed61b9f52190f254e22d3dca6ce25769738642579ba8d23832f3f9414567a90d8367a31831fa45d9b9607ac43d8d07ed31167d8ca8cda22871f4c7a1
+ checksum: 10/e5f8a4e716400b2b5c51f7b3c0eec58da92f1d8cc1c6fe2e32555c98bc594be1de7fa1da373f8e42ab098c33867c4cc2931ce648c92aab7a4f4685417707c438
languageName: node
linkType: hard
@@ -19531,14 +20667,26 @@ __metadata:
languageName: node
linkType: hard
-"babel-plugin-polyfill-regenerator@npm:^0.6.1":
- version: 0.6.2
- resolution: "babel-plugin-polyfill-regenerator@npm:0.6.2"
+"babel-plugin-polyfill-corejs3@npm:^0.13.0":
+ version: 0.13.0
+ resolution: "babel-plugin-polyfill-corejs3@npm:0.13.0"
+ dependencies:
+ "@babel/helper-define-polyfill-provider": "npm:^0.6.5"
+ core-js-compat: "npm:^3.43.0"
+ peerDependencies:
+ "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
+ checksum: 10/aa36f9a09521404dd0569a4cbd5f88aa4b9abff59508749abde5d09d66c746012fb94ed1e6e2c8be3710939a2a4c6293ee3be889125d7611c93e5897d9e5babd
+ languageName: node
+ linkType: hard
+
+"babel-plugin-polyfill-regenerator@npm:^0.6.1, babel-plugin-polyfill-regenerator@npm:^0.6.5":
+ version: 0.6.6
+ resolution: "babel-plugin-polyfill-regenerator@npm:0.6.6"
dependencies:
- "@babel/helper-define-polyfill-provider": "npm:^0.6.2"
+ "@babel/helper-define-polyfill-provider": "npm:^0.6.6"
peerDependencies:
"@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
- checksum: 10/150233571072b6b3dfe946242da39cba8587b7f908d1c006f7545fc88b0e3c3018d445739beb61e7a75835f0c2751dbe884a94ff9b245ec42369d9267e0e1b3f
+ checksum: 10/8de7ea32856e75784601cacf8f4e3cbf04ce1fd05d56614b08b7bbe0674d1e59e37ccaa1c7ed16e3b181a63abe5bd43a1ab0e28b8c95618a9ebf0be5e24d6b25
languageName: node
linkType: hard
@@ -19558,6 +20706,15 @@ __metadata:
languageName: node
linkType: hard
+"babel-plugin-syntax-hermes-parser@npm:0.32.0":
+ version: 0.32.0
+ resolution: "babel-plugin-syntax-hermes-parser@npm:0.32.0"
+ dependencies:
+ hermes-parser: "npm:0.32.0"
+ checksum: 10/ec76abeefabf940e2d571db3b47d022a9be7602286133291e8e047d4855af6a8afc079e4631bc9a56209d751fad54b5199932a55753b1e2b56a719d20e2d5065
+ languageName: node
+ linkType: hard
+
"babel-plugin-syntax-hermes-parser@npm:^0.23.1":
version: 0.23.1
resolution: "babel-plugin-syntax-hermes-parser@npm:0.23.1"
@@ -19567,6 +20724,15 @@ __metadata:
languageName: node
linkType: hard
+"babel-plugin-syntax-hermes-parser@npm:^0.28.0":
+ version: 0.28.1
+ resolution: "babel-plugin-syntax-hermes-parser@npm:0.28.1"
+ dependencies:
+ hermes-parser: "npm:0.28.1"
+ checksum: 10/2cbc921e663463480ead9ccc8bb229a5196032367ba2b5ccb18a44faa3afa84b4dc493297749983b9a837a3d76b0b123664aecc06f9122618c3246f03e076a9d
+ languageName: node
+ linkType: hard
+
"babel-plugin-syntax-trailing-function-commas@npm:^7.0.0-beta.0":
version: 7.0.0-beta.0
resolution: "babel-plugin-syntax-trailing-function-commas@npm:7.0.0-beta.0"
@@ -19896,6 +21062,13 @@ __metadata:
languageName: node
linkType: hard
+"before-after-hook@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "before-after-hook@npm:4.0.0"
+ checksum: 10/9fd52bc0c3cca0fb115e04dacbeeaacff38fa23e1af725d62392254c31ef433b15da60efcba61552e44d64e26f25ea259f72dba005115924389e88d2fd56e19f
+ languageName: node
+ linkType: hard
+
"better-opn@npm:~3.0.2":
version: 3.0.2
resolution: "better-opn@npm:3.0.2"
@@ -20036,7 +21209,7 @@ __metadata:
languageName: node
linkType: hard
-"body-parser@npm:^1.19.0, body-parser@npm:^1.20.4":
+"body-parser@npm:^1.19.0, body-parser@npm:^1.20.3, body-parser@npm:^1.20.4":
version: 1.20.4
resolution: "body-parser@npm:1.20.4"
dependencies:
@@ -20186,7 +21359,7 @@ __metadata:
languageName: node
linkType: hard
-"browserslist@npm:^4.21.10, browserslist@npm:^4.21.5, browserslist@npm:^4.22.1, browserslist@npm:^4.23.0, browserslist@npm:^4.23.3, browserslist@npm:^4.24.0, browserslist@npm:^4.28.1":
+"browserslist@npm:^4.20.4, browserslist@npm:^4.21.10, browserslist@npm:^4.21.5, browserslist@npm:^4.22.1, browserslist@npm:^4.23.0, browserslist@npm:^4.23.3, browserslist@npm:^4.24.0, browserslist@npm:^4.28.1":
version: 4.28.1
resolution: "browserslist@npm:4.28.1"
dependencies:
@@ -20394,6 +21567,31 @@ __metadata:
languageName: node
linkType: hard
+"c12@npm:3.3.3":
+ version: 3.3.3
+ resolution: "c12@npm:3.3.3"
+ dependencies:
+ chokidar: "npm:^5.0.0"
+ confbox: "npm:^0.2.2"
+ defu: "npm:^6.1.4"
+ dotenv: "npm:^17.2.3"
+ exsolve: "npm:^1.0.8"
+ giget: "npm:^2.0.0"
+ jiti: "npm:^2.6.1"
+ ohash: "npm:^2.0.11"
+ pathe: "npm:^2.0.3"
+ perfect-debounce: "npm:^2.0.0"
+ pkg-types: "npm:^2.3.0"
+ rc9: "npm:^2.1.2"
+ peerDependencies:
+ magicast: "*"
+ peerDependenciesMeta:
+ magicast:
+ optional: true
+ checksum: 10/058026b87656fba996ab9f05d2f5c037f057a314df2ea7410bd812a6eb5881faa585485a337cbbc291a4c0e90c1ecbe5ae704104db72005e9c41c6373414b990
+ languageName: node
+ linkType: hard
+
"cac@npm:^6.7.14":
version: 6.7.14
resolution: "cac@npm:6.7.14"
@@ -20658,9 +21856,9 @@ __metadata:
linkType: hard
"caniuse-lite@npm:^1.0.30001579, caniuse-lite@npm:^1.0.30001605, caniuse-lite@npm:^1.0.30001646, caniuse-lite@npm:^1.0.30001759":
- version: 1.0.30001769
- resolution: "caniuse-lite@npm:1.0.30001769"
- checksum: 10/4b7d087832d4330a8b1fa02cd9455bdb068ea67f1735f2aa6324d5b64b24f5079cf6349b13d209f268ffa59644b9f4f784266b780bafd877ceb83c9797ca80ba
+ version: 1.0.30001766
+ resolution: "caniuse-lite@npm:1.0.30001766"
+ checksum: 10/0edeb69bdb741c98deda609b75e35e5c31e944537e9873ea89a4cf9e9baa3e158675b224951a6f3a212d1f0c328a8494ace323c551ca1fa58ce4915562c4e4d3
languageName: node
linkType: hard
@@ -20770,10 +21968,10 @@ __metadata:
languageName: node
linkType: hard
-"chalk@npm:^5.0.1, chalk@npm:^5.2.0, chalk@npm:^5.3.0, chalk@npm:^5.4.1":
- version: 5.4.1
- resolution: "chalk@npm:5.4.1"
- checksum: 10/29df3ffcdf25656fed6e95962e2ef86d14dfe03cd50e7074b06bad9ffbbf6089adbb40f75c00744d843685c8d008adaf3aed31476780312553caf07fa86e5bc7
+"chalk@npm:^5.0.1, chalk@npm:^5.2.0, chalk@npm:^5.3.0, chalk@npm:^5.4.1, chalk@npm:^5.6.2":
+ version: 5.6.2
+ resolution: "chalk@npm:5.6.2"
+ checksum: 10/1b2f48f6fba1370670d5610f9cd54c391d6ede28f4b7062dd38244ea5768777af72e5be6b74fb6c6d54cb84c4a2dff3f3afa9b7cb5948f7f022cfd3d087989e0
languageName: node
linkType: hard
@@ -20992,6 +22190,15 @@ __metadata:
languageName: node
linkType: hard
+"chokidar@npm:^5.0.0":
+ version: 5.0.0
+ resolution: "chokidar@npm:5.0.0"
+ dependencies:
+ readdirp: "npm:^5.0.0"
+ checksum: 10/a1c2a4ee6ee81ba6409712c295a47be055fb9de1186dfbab33c1e82f28619de962ba02fc5f9d433daaedc96c35747460d8b2079ac2907de2c95e3f7cce913113
+ languageName: node
+ linkType: hard
+
"chownr@npm:^2.0.0":
version: 2.0.0
resolution: "chownr@npm:2.0.0"
@@ -21080,10 +22287,10 @@ __metadata:
languageName: node
linkType: hard
-"ci-info@npm:^4.0.0, ci-info@npm:^4.2.0":
- version: 4.3.0
- resolution: "ci-info@npm:4.3.0"
- checksum: 10/01e359032a34782fa2503530dd350c3ffaecede7d9ea0b120efa2ddda4c8dc80d8c2566caf1ea2287c739fad2bf277c65f70063a21f31f66203b889039c70eea
+"ci-info@npm:^4.0.0, ci-info@npm:^4.2.0, ci-info@npm:^4.3.1":
+ version: 4.3.1
+ resolution: "ci-info@npm:4.3.1"
+ checksum: 10/9dc952bef67e665ccde2e7a552d42d5d095529d21829ece060a00925ede2dfa136160c70ef2471ea6ed6c9b133218b47c007f56955c0f1734a2e57f240aa7445
languageName: node
linkType: hard
@@ -21103,6 +22310,22 @@ __metadata:
languageName: node
linkType: hard
+"citty@npm:^0.1.6":
+ version: 0.1.6
+ resolution: "citty@npm:0.1.6"
+ dependencies:
+ consola: "npm:^3.2.3"
+ checksum: 10/3208947e73abb699a12578ee2bfee254bf8dd1ce0d5698e8a298411cabf16bd3620d63433aef5bd88cdb2b9da71aef18adefa3b4ffd18273bb62dd1d28c344f5
+ languageName: node
+ linkType: hard
+
+"citty@npm:^0.2.0":
+ version: 0.2.0
+ resolution: "citty@npm:0.2.0"
+ checksum: 10/023f84b0610e9b7717f930b8d419a42fa079cc6178f6dedfd8b2d13d7cc4898d0b09c1a9e13480200d660201d924e65131d59bc432497a7c185fc6d389ca4b05
+ languageName: node
+ linkType: hard
+
"cjs-module-lexer@npm:1.2.3, cjs-module-lexer@npm:^1.0.0, cjs-module-lexer@npm:^1.2.2":
version: 1.2.3
resolution: "cjs-module-lexer@npm:1.2.3"
@@ -21193,6 +22416,13 @@ __metadata:
languageName: node
linkType: hard
+"cli-spinners@npm:^3.2.0":
+ version: 3.4.0
+ resolution: "cli-spinners@npm:3.4.0"
+ checksum: 10/6a4021c1999011fc34ae714f055dcdafb56309abc1f8fb021ea7d9370dfc524485fe8684226015e5fe6053dd30544e74270184ff7edc3fa4d37043b8efd0a054
+ languageName: node
+ linkType: hard
+
"cli-table3@npm:0.6.5":
version: 0.6.5
resolution: "cli-table3@npm:0.6.5"
@@ -21448,6 +22678,13 @@ __metadata:
languageName: node
linkType: hard
+"colorette@npm:^1.0.7":
+ version: 1.4.0
+ resolution: "colorette@npm:1.4.0"
+ checksum: 10/c8d6c8c3ef5a99acfc3dd9a68f48019f1479ec347551387e4a1762e40f69e98ce19d4dc321ffb4919d1f28a7bdc90c39d4e9a901f4c474fd2124ad93a00c0454
+ languageName: node
+ linkType: hard
+
"colorette@npm:^2.0.10, colorette@npm:^2.0.16, colorette@npm:^2.0.20, colorette@npm:^2.0.7":
version: 2.0.20
resolution: "colorette@npm:2.0.20"
@@ -21488,7 +22725,7 @@ __metadata:
languageName: node
linkType: hard
-"command-exists@npm:^1.2.4":
+"command-exists@npm:^1.2.4, command-exists@npm:^1.2.8":
version: 1.2.9
resolution: "command-exists@npm:1.2.9"
checksum: 10/46fb3c4d626ca5a9d274f8fe241230817496abc34d12911505370b7411999e183c11adff7078dd8a03ec4cf1391290facda40c6a4faac8203ae38c985eaedd63
@@ -21539,7 +22776,7 @@ __metadata:
languageName: node
linkType: hard
-"commander@npm:^9.1.0":
+"commander@npm:^9.1.0, commander@npm:^9.4.1":
version: 9.5.0
resolution: "commander@npm:9.5.0"
checksum: 10/41c49b3d0f94a1fbeb0463c85b13f15aa15a9e0b4d5e10a49c0a1d58d4489b549d62262b052ae0aa6cfda53299bee487bfe337825df15e342114dde543f82906
@@ -21578,6 +22815,18 @@ __metadata:
languageName: node
linkType: hard
+"commitlint@npm:^19.8.1":
+ version: 19.8.1
+ resolution: "commitlint@npm:19.8.1"
+ dependencies:
+ "@commitlint/cli": "npm:^19.8.1"
+ "@commitlint/types": "npm:^19.8.1"
+ bin:
+ commitlint: cli.js
+ checksum: 10/23e9a34b074361ec66c89573b1eba3ab65e7fe8044e22c3f044db87071817d8fe32e9e63313703c65385f5db1ab8e204eb2b3fa5e5a9481bc2fdef56eab478c1
+ languageName: node
+ linkType: hard
+
"common-ancestor-path@npm:^1.0.1":
version: 1.0.1
resolution: "common-ancestor-path@npm:1.0.1"
@@ -21606,6 +22855,16 @@ __metadata:
languageName: node
linkType: hard
+"compare-func@npm:^2.0.0":
+ version: 2.0.0
+ resolution: "compare-func@npm:2.0.0"
+ dependencies:
+ array-ify: "npm:^1.0.0"
+ dot-prop: "npm:^5.1.0"
+ checksum: 10/fb71d70632baa1e93283cf9d80f30ac97f003aabee026e0b4426c9716678079ef5fea7519b84d012cbed938c476493866a38a79760564a9e21ae9433e40e6f0d
+ languageName: node
+ linkType: hard
+
"compare-versions@npm:^4.1.3":
version: 4.1.4
resolution: "compare-versions@npm:4.1.4"
@@ -21636,7 +22895,7 @@ __metadata:
languageName: node
linkType: hard
-"compression@npm:^1.7.4, compression@npm:^1.8.1":
+"compression@npm:^1.7.1, compression@npm:^1.7.4, compression@npm:^1.8.1":
version: 1.8.1
resolution: "compression@npm:1.8.1"
dependencies:
@@ -21723,7 +22982,7 @@ __metadata:
languageName: node
linkType: hard
-"confbox@npm:^0.2.1":
+"confbox@npm:^0.2.2":
version: 0.2.2
resolution: "confbox@npm:0.2.2"
checksum: 10/988c7216f9b5aee5d8a8f32153a9164e1b58d92d8335c5daa323fd3fdee91f742ffc25f6c28b059474b6319204085eca985ab14c5a246988dc7ef1fe29414108
@@ -21843,6 +23102,128 @@ __metadata:
languageName: node
linkType: hard
+"conventional-changelog-angular@npm:^7.0.0":
+ version: 7.0.0
+ resolution: "conventional-changelog-angular@npm:7.0.0"
+ dependencies:
+ compare-func: "npm:^2.0.0"
+ checksum: 10/e7966d2fee5475e76263f30f8b714b2b592b5bf556df225b7091e5090831fc9a20b99598a7d2997e19c2ef8118c0a3150b1eba290786367b0f55a5ccfa804ec9
+ languageName: node
+ linkType: hard
+
+"conventional-changelog-angular@npm:^8.1.0":
+ version: 8.1.0
+ resolution: "conventional-changelog-angular@npm:8.1.0"
+ dependencies:
+ compare-func: "npm:^2.0.0"
+ checksum: 10/2211efa2bebbb00c3976d7b860979d3c04c2bcbb661cfc0c61445986dd3efa391f6e56636482cda83dfb3da3e2327a05c80f647a9147072627046bcbe0de7d39
+ languageName: node
+ linkType: hard
+
+"conventional-changelog-conventionalcommits@npm:^7.0.2":
+ version: 7.0.2
+ resolution: "conventional-changelog-conventionalcommits@npm:7.0.2"
+ dependencies:
+ compare-func: "npm:^2.0.0"
+ checksum: 10/3cc6586ac57cc54c0595b28ae22e8b674c970034bad35e467f71aba395278a6ef43351cfbf782a5fc33eb13ed4ad843a145b89ad1444f5fa571e3bf9c1d5519b
+ languageName: node
+ linkType: hard
+
+"conventional-changelog-conventionalcommits@npm:^9.1.0":
+ version: 9.1.0
+ resolution: "conventional-changelog-conventionalcommits@npm:9.1.0"
+ dependencies:
+ compare-func: "npm:^2.0.0"
+ checksum: 10/932522a9eb2f19f8b6efc05f1de0b8d4775842e2156c2c58358d25069bfc43ca1a6198fb07666d7abc83695a10591787c23b7ff2e1e2d73ac484cfb2f57f5f7f
+ languageName: node
+ linkType: hard
+
+"conventional-changelog-preset-loader@npm:^5.0.0":
+ version: 5.0.0
+ resolution: "conventional-changelog-preset-loader@npm:5.0.0"
+ checksum: 10/7630c2826b43f8f546f0575b46d3eb8c2ac2b5bcfae60b7d1186e9a87f07b7a689d9463afc125a40ab84a030574c9ce7965dd96e6506323e5a7d1ac2b9f2df19
+ languageName: node
+ linkType: hard
+
+"conventional-changelog-writer@npm:^8.2.0":
+ version: 8.2.0
+ resolution: "conventional-changelog-writer@npm:8.2.0"
+ dependencies:
+ conventional-commits-filter: "npm:^5.0.0"
+ handlebars: "npm:^4.7.7"
+ meow: "npm:^13.0.0"
+ semver: "npm:^7.5.2"
+ bin:
+ conventional-changelog-writer: dist/cli/index.js
+ checksum: 10/050387a37a295bf8d0f91733432ea1e3959478d5b7d71f19654b83943503f2a37f24d69cf7688d9bb371c537693da024bc4e7c72a7029df8d121a44035ff7949
+ languageName: node
+ linkType: hard
+
+"conventional-changelog@npm:^7.1.1":
+ version: 7.1.1
+ resolution: "conventional-changelog@npm:7.1.1"
+ dependencies:
+ "@conventional-changelog/git-client": "npm:^2.5.1"
+ "@types/normalize-package-data": "npm:^2.4.4"
+ conventional-changelog-preset-loader: "npm:^5.0.0"
+ conventional-changelog-writer: "npm:^8.2.0"
+ conventional-commits-parser: "npm:^6.2.0"
+ fd-package-json: "npm:^2.0.0"
+ meow: "npm:^13.0.0"
+ normalize-package-data: "npm:^7.0.0"
+ bin:
+ conventional-changelog: dist/cli/index.js
+ checksum: 10/983ce0498fa9e6103c602342f93b3a9b13dd414be594cd1ec4f7715916253caca1f42a98df7646a8ee629108e0f9bb33b1e45c58f2e689918097063c783cb0d9
+ languageName: node
+ linkType: hard
+
+"conventional-commits-filter@npm:^5.0.0":
+ version: 5.0.0
+ resolution: "conventional-commits-filter@npm:5.0.0"
+ checksum: 10/2345546ea9e40412558d508311d7729b38f8d4c0fd554837c10721a432e8598ec1152320f6b601a9c11c023a31bccbb5a12067736b2227de8591f4de707e11a7
+ languageName: node
+ linkType: hard
+
+"conventional-commits-parser@npm:^5.0.0":
+ version: 5.0.0
+ resolution: "conventional-commits-parser@npm:5.0.0"
+ dependencies:
+ JSONStream: "npm:^1.3.5"
+ is-text-path: "npm:^2.0.0"
+ meow: "npm:^12.0.1"
+ split2: "npm:^4.0.0"
+ bin:
+ conventional-commits-parser: cli.mjs
+ checksum: 10/3b56a9313127f18c56b7fc0fdb0c49d2184ec18e0574e64580a0d5a3c3e0f3eecfb8bc3131dce967bfe9fd27debd5f42b7fc1f09e8e541e688e1dd2b57f49278
+ languageName: node
+ linkType: hard
+
+"conventional-commits-parser@npm:^6.1.0, conventional-commits-parser@npm:^6.2.0":
+ version: 6.2.1
+ resolution: "conventional-commits-parser@npm:6.2.1"
+ dependencies:
+ meow: "npm:^13.0.0"
+ bin:
+ conventional-commits-parser: dist/cli/index.js
+ checksum: 10/342764ac7c8114e3030d9d86968eafa3023ed887bc66412f89891fb55f09179d151a02342142a4039ca3375a7e39553d29789e022afd08edddbd995a1d5d9c24
+ languageName: node
+ linkType: hard
+
+"conventional-recommended-bump@npm:^11.2.0":
+ version: 11.2.0
+ resolution: "conventional-recommended-bump@npm:11.2.0"
+ dependencies:
+ "@conventional-changelog/git-client": "npm:^2.5.1"
+ conventional-changelog-preset-loader: "npm:^5.0.0"
+ conventional-commits-filter: "npm:^5.0.0"
+ conventional-commits-parser: "npm:^6.1.0"
+ meow: "npm:^13.0.0"
+ bin:
+ conventional-recommended-bump: dist/cli/index.js
+ checksum: 10/b6330542675399d1053c9092c5ddcc4ab0904046b5f767478f9434ada2cb1e9adbd9555e6952e1ad5a3bae6775cf67a14062b0be3b5c61b93c22abc702b00175
+ languageName: node
+ linkType: hard
+
"convert-hrtime@npm:^3.0.0":
version: 3.0.0
resolution: "convert-hrtime@npm:3.0.0"
@@ -21944,7 +23325,7 @@ __metadata:
languageName: node
linkType: hard
-"core-js-compat@npm:^3.40.0":
+"core-js-compat@npm:^3.40.0, core-js-compat@npm:^3.43.0":
version: 3.48.0
resolution: "core-js-compat@npm:3.48.0"
dependencies:
@@ -21977,6 +23358,19 @@ __metadata:
languageName: node
linkType: hard
+"cosmiconfig-typescript-loader@npm:^6.1.0":
+ version: 6.2.0
+ resolution: "cosmiconfig-typescript-loader@npm:6.2.0"
+ dependencies:
+ jiti: "npm:^2.6.1"
+ peerDependencies:
+ "@types/node": "*"
+ cosmiconfig: ">=9"
+ typescript: ">=5"
+ checksum: 10/f905077c7233e561810b030342e6b85a2a58ddcfdaaad7d7b0a52f6376581957826e3aa64238d80d1aaf4d24013342d7c780888cffb36ba445d728d6e12588f3
+ languageName: node
+ linkType: hard
+
"cosmiconfig@npm:8.2.0":
version: 8.2.0
resolution: "cosmiconfig@npm:8.2.0"
@@ -22312,10 +23706,10 @@ __metadata:
languageName: node
linkType: hard
-"csstype@npm:^3.0.11, csstype@npm:^3.0.2, csstype@npm:^3.0.7":
- version: 3.1.3
- resolution: "csstype@npm:3.1.3"
- checksum: 10/f593cce41ff5ade23f44e77521e3a1bcc2c64107041e1bf6c3c32adc5187d0d60983292fda326154d20b01079e24931aa5b08e4467cc488b60bb1e7f6d478ade
+"csstype@npm:^3.0.11, csstype@npm:^3.0.2, csstype@npm:^3.0.7, csstype@npm:^3.2.2":
+ version: 3.2.3
+ resolution: "csstype@npm:3.2.3"
+ checksum: 10/ad41baf7e2ffac65ab544d79107bf7cd1a4bb9bab9ac3302f59ab4ba655d5e30942a8ae46e10ba160c6f4ecea464cc95b975ca2fefbdeeacd6ac63f12f99fe1f
languageName: node
linkType: hard
@@ -22333,6 +23727,13 @@ __metadata:
languageName: node
linkType: hard
+"dargs@npm:^8.0.0":
+ version: 8.1.0
+ resolution: "dargs@npm:8.1.0"
+ checksum: 10/33f1b8f5f08e72c8a28355a87c0e1a9b6a0fec99252ecd9cf4735e65dd5f2e19747c860251ed5747b38e7204c7915fd7a7146aee5aaef5882c69169aae8b1d09
+ languageName: node
+ linkType: hard
+
"dashdash@npm:^1.12.0":
version: 1.14.1
resolution: "dashdash@npm:1.14.1"
@@ -22448,6 +23849,13 @@ __metadata:
languageName: node
linkType: hard
+"dayjs@npm:^1.8.15":
+ version: 1.11.19
+ resolution: "dayjs@npm:1.11.19"
+ checksum: 10/185b820d68492b83a3ce2b8ddc7543034edc1dfd1423183f6ae4707b29929a3cc56503a81826309279f9084680c15966b99456e74cf41f7d1f6a2f98f9c7196f
+ languageName: node
+ linkType: hard
+
"de-indent@npm:^1.0.2":
version: 1.0.2
resolution: "de-indent@npm:1.0.2"
@@ -22665,7 +24073,7 @@ __metadata:
languageName: node
linkType: hard
-"deepmerge@npm:^4.2.2, deepmerge@npm:^4.3.1":
+"deepmerge@npm:^4.2.2, deepmerge@npm:^4.3.0, deepmerge@npm:^4.3.1":
version: 4.3.1
resolution: "deepmerge@npm:4.3.1"
checksum: 10/058d9e1b0ff1a154468bf3837aea436abcfea1ba1d165ddaaf48ca93765fdd01a30d33c36173da8fbbed951dd0a267602bc782fe288b0fc4b7e1e7091afc4529
@@ -22751,6 +24159,13 @@ __metadata:
languageName: node
linkType: hard
+"defu@npm:^6.1.4":
+ version: 6.1.4
+ resolution: "defu@npm:6.1.4"
+ checksum: 10/aeffdb47300f45b4fdef1c5bd3880ac18ea7a1fd5b8a8faf8df29350ff03bf16dd34f9800205cab513d476e4c0a3783aa0cff0a433aff0ac84a67ddc4c8a2d64
+ languageName: node
+ linkType: hard
+
"degenerator@npm:^5.0.0":
version: 5.0.1
resolution: "degenerator@npm:5.0.1"
@@ -22762,6 +24177,19 @@ __metadata:
languageName: node
linkType: hard
+"del-cli@npm:^6.0.0":
+ version: 6.0.0
+ resolution: "del-cli@npm:6.0.0"
+ dependencies:
+ del: "npm:^8.0.0"
+ meow: "npm:^13.2.0"
+ bin:
+ del: cli.js
+ del-cli: cli.js
+ checksum: 10/5441e55c9181f364e84a1d211e53a03476a806e795f6b7d576673f164a9f76e0dc846413a47730f6224913974ba54dabb1884f854a9cf4d418084872bdaaa229
+ languageName: node
+ linkType: hard
+
"del@npm:^2.2.0":
version: 2.2.2
resolution: "del@npm:2.2.2"
@@ -22777,7 +24205,7 @@ __metadata:
languageName: node
linkType: hard
-"del@npm:^6.0.0":
+"del@npm:^6.0.0, del@npm:^6.1.1":
version: 6.1.1
resolution: "del@npm:6.1.1"
dependencies:
@@ -22793,6 +24221,21 @@ __metadata:
languageName: node
linkType: hard
+"del@npm:^8.0.0":
+ version: 8.0.1
+ resolution: "del@npm:8.0.1"
+ dependencies:
+ globby: "npm:^14.0.2"
+ is-glob: "npm:^4.0.3"
+ is-path-cwd: "npm:^3.0.0"
+ is-path-inside: "npm:^4.0.0"
+ p-map: "npm:^7.0.2"
+ presentable-error: "npm:^0.0.1"
+ slash: "npm:^5.1.0"
+ checksum: 10/53ed4a379a68c90e7d6d3bcce09c49229e77de9a946d0a5fc25f45b16c950cb8665986b7d0d0423416c03bfd43e0f31e528c5a19c558fe47449be9d6fae7f846
+ languageName: node
+ linkType: hard
+
"delayed-stream@npm:~1.0.0":
version: 1.0.0
resolution: "delayed-stream@npm:1.0.0"
@@ -22835,6 +24278,13 @@ __metadata:
languageName: node
linkType: hard
+"destr@npm:^2.0.3":
+ version: 2.0.5
+ resolution: "destr@npm:2.0.5"
+ checksum: 10/0e4fba62a55a4188c7ab13eed5ebeeda037ead1ab21cf6be40ca39828b258475ad9eb1e7de50a5ea8041705d454a4d090caf9f92b89f03b04d2e229716f7da0a
+ languageName: node
+ linkType: hard
+
"destroy@npm:1.2.0, destroy@npm:~1.2.0":
version: 1.2.0
resolution: "destroy@npm:1.2.0"
@@ -23072,6 +24522,15 @@ __metadata:
languageName: node
linkType: hard
+"dot-prop@npm:^5.1.0":
+ version: 5.3.0
+ resolution: "dot-prop@npm:5.3.0"
+ dependencies:
+ is-obj: "npm:^2.0.0"
+ checksum: 10/33b2561617bd5c73cf9305368ba4638871c5dbf9c8100c8335acd2e2d590a81ec0e75c11cfaea5cc3cf8c2f668cad4beddb52c11856d0c9e666348eee1baf57a
+ languageName: node
+ linkType: hard
+
"dot-prop@npm:^6.0.1":
version: 6.0.1
resolution: "dot-prop@npm:6.0.1"
@@ -23097,6 +24556,13 @@ __metadata:
languageName: node
linkType: hard
+"dotenv@npm:^17.2.3":
+ version: 17.2.3
+ resolution: "dotenv@npm:17.2.3"
+ checksum: 10/f8b78626ebfff6e44420f634773375c9651808b3e1a33df6d4cc19120968eea53e100f59f04ec35f2a20b2beb334b6aba4f24040b2f8ad61773f158ac042a636
+ languageName: node
+ linkType: hard
+
"dotenv@npm:^8.1.0":
version: 8.6.0
resolution: "dotenv@npm:8.6.0"
@@ -23493,6 +24959,15 @@ __metadata:
languageName: node
linkType: hard
+"envinfo@npm:^7.13.0":
+ version: 7.21.0
+ resolution: "envinfo@npm:7.21.0"
+ bin:
+ envinfo: dist/cli.js
+ checksum: 10/2469a72802ded4e43c007dcd1c5dd44d8049b7d18276874dcc3f3f14a54bc72806fa35e82760974ca1442d82f5f9df3651048204e72791f81bcdd5f07422a561
+ languageName: node
+ linkType: hard
+
"environment@npm:^1.0.0":
version: 1.1.0
resolution: "environment@npm:1.1.0"
@@ -23569,6 +25044,16 @@ __metadata:
languageName: node
linkType: hard
+"errorhandler@npm:^1.5.1":
+ version: 1.5.2
+ resolution: "errorhandler@npm:1.5.2"
+ dependencies:
+ accepts: "npm:~1.3.8"
+ escape-html: "npm:~1.0.3"
+ checksum: 10/7ce0a598cc2c52840e32b46d2da8c7b0a4594aa67e93db46112cf791d4c8a4a1299af7f7aa65253d2e9d42af4d275c96387c0d186427df5ee93d33670bdac541
+ languageName: node
+ linkType: hard
+
"es-abstract@npm:^1.17.5, es-abstract@npm:^1.19.1, es-abstract@npm:^1.23.2, es-abstract@npm:^1.23.3, es-abstract@npm:^1.23.5, es-abstract@npm:^1.23.6, es-abstract@npm:^1.23.9, es-abstract@npm:^1.24.0":
version: 1.24.0
resolution: "es-abstract@npm:1.24.0"
@@ -23955,6 +25440,13 @@ __metadata:
languageName: node
linkType: hard
+"escape-string-regexp@npm:^5.0.0":
+ version: 5.0.0
+ resolution: "escape-string-regexp@npm:5.0.0"
+ checksum: 10/20daabe197f3cb198ec28546deebcf24b3dbb1a5a269184381b3116d12f0532e06007f4bc8da25669d6a7f8efb68db0758df4cd981f57bc5b57f521a3e12c59e
+ languageName: node
+ linkType: hard
+
"escodegen@npm:^1.13.0":
version: 1.14.3
resolution: "escodegen@npm:1.14.3"
@@ -24062,6 +25554,28 @@ __metadata:
languageName: node
linkType: hard
+"eslint-config-prettier@npm:^10.1.8":
+ version: 10.1.8
+ resolution: "eslint-config-prettier@npm:10.1.8"
+ peerDependencies:
+ eslint: ">=7.0.0"
+ bin:
+ eslint-config-prettier: bin/cli.js
+ checksum: 10/03f8e6ea1a6a9b8f9eeaf7c8c52a96499ec4b275b9ded33331a6cc738ed1d56de734097dbd0091f136f0e84bc197388bd8ec22a52a4658105883f8c8b7d8921a
+ languageName: node
+ linkType: hard
+
+"eslint-config-prettier@npm:^8.5.0":
+ version: 8.10.2
+ resolution: "eslint-config-prettier@npm:8.10.2"
+ peerDependencies:
+ eslint: ">=7.0.0"
+ bin:
+ eslint-config-prettier: bin/cli.js
+ checksum: 10/9818f26eebf32c5698bcc68d9b05e985ccaa6862488a32305681f9f025248c4b9192e587969594b3e79a814f965f808f513f63921dbb14639501fa61d6e6560d
+ languageName: node
+ linkType: hard
+
"eslint-config-prettier@npm:^9.0.0":
version: 9.1.0
resolution: "eslint-config-prettier@npm:9.1.0"
@@ -24161,6 +25675,18 @@ __metadata:
languageName: node
linkType: hard
+"eslint-plugin-eslint-comments@npm:^3.2.0":
+ version: 3.2.0
+ resolution: "eslint-plugin-eslint-comments@npm:3.2.0"
+ dependencies:
+ escape-string-regexp: "npm:^1.0.5"
+ ignore: "npm:^5.0.5"
+ peerDependencies:
+ eslint: ">=4.19.1"
+ checksum: 10/4aa0d31a78ac7746002e37ca0cb436f3e5b481a97d28be07bad831e161a2ffcc4dedff44820edef9a1e80f6a0ab1ef44ed9a46e3a4c4a050350438451908972b
+ languageName: node
+ linkType: hard
+
"eslint-plugin-expo@npm:^0.1.0, eslint-plugin-expo@npm:^0.1.4":
version: 0.1.4
resolution: "eslint-plugin-expo@npm:0.1.4"
@@ -24174,6 +25700,19 @@ __metadata:
languageName: node
linkType: hard
+"eslint-plugin-ft-flow@npm:^2.0.1":
+ version: 2.0.3
+ resolution: "eslint-plugin-ft-flow@npm:2.0.3"
+ dependencies:
+ lodash: "npm:^4.17.21"
+ string-natural-compare: "npm:^3.0.1"
+ peerDependencies:
+ "@babel/eslint-parser": ^7.12.0
+ eslint: ^8.1.0
+ checksum: 10/ea03496d247b9de915f0c5cee3724d4cbec8c0ab22029e4c06301c524bd8a7cbc20598971bed792304c5b3a17c1a1004a1bf7c7f59b55d3887aa7581e00ad0e1
+ languageName: node
+ linkType: hard
+
"eslint-plugin-import@npm:^2.27.5, eslint-plugin-import@npm:^2.30.0, eslint-plugin-import@npm:^2.31.0":
version: 2.32.0
resolution: "eslint-plugin-import@npm:2.32.0"
@@ -24251,6 +25790,24 @@ __metadata:
languageName: node
linkType: hard
+"eslint-plugin-jest@npm:^29.0.1":
+ version: 29.12.1
+ resolution: "eslint-plugin-jest@npm:29.12.1"
+ dependencies:
+ "@typescript-eslint/utils": "npm:^8.0.0"
+ peerDependencies:
+ "@typescript-eslint/eslint-plugin": ^8.0.0
+ eslint: ^8.57.0 || ^9.0.0
+ jest: "*"
+ peerDependenciesMeta:
+ "@typescript-eslint/eslint-plugin":
+ optional: true
+ jest:
+ optional: true
+ checksum: 10/2758d55bc536f936a6dfa61353210fcf607a212d55c4cbdd1778b4e9f9638c63c723c53c2aac9d82ef9a539d98c09ad2b1aa3d6dac2b2b91c8cb3520fcfe6d8f
+ languageName: node
+ linkType: hard
+
"eslint-plugin-jsx-a11y@npm:^6.10.0, eslint-plugin-jsx-a11y@npm:^6.7.1":
version: 6.10.2
resolution: "eslint-plugin-jsx-a11y@npm:6.10.2"
@@ -24293,11 +25850,11 @@ __metadata:
linkType: hard
"eslint-plugin-prettier@npm:^5.0.0":
- version: 5.5.1
- resolution: "eslint-plugin-prettier@npm:5.5.1"
+ version: 5.5.5
+ resolution: "eslint-plugin-prettier@npm:5.5.5"
dependencies:
- prettier-linter-helpers: "npm:^1.0.0"
- synckit: "npm:^0.11.7"
+ prettier-linter-helpers: "npm:^1.0.1"
+ synckit: "npm:^0.11.12"
peerDependencies:
"@types/eslint": ">=8.0.0"
eslint: ">=8.0.0"
@@ -24308,7 +25865,7 @@ __metadata:
optional: true
eslint-config-prettier:
optional: true
- checksum: 10/4d750c70d97d6ef50776bc0a27eeececaac64792fb50713213c69231ed475aa9822a3d177870300fee537d3e24d0dc8eed1528929cab2d20f6e7ec37484648a3
+ checksum: 10/36c22c2fa2fd7c61ed292af1280e1d8f94dfe1671eacc5a503a249ca4b27fd226dbf6a1820457d611915926946f42729488d2dc7a5c320601e6cf1fad0d28f66
languageName: node
linkType: hard
@@ -24330,6 +25887,39 @@ __metadata:
languageName: node
linkType: hard
+"eslint-plugin-react-hooks@npm:^7.0.1":
+ version: 7.0.1
+ resolution: "eslint-plugin-react-hooks@npm:7.0.1"
+ dependencies:
+ "@babel/core": "npm:^7.24.4"
+ "@babel/parser": "npm:^7.24.4"
+ hermes-parser: "npm:^0.25.1"
+ zod: "npm:^3.25.0 || ^4.0.0"
+ zod-validation-error: "npm:^3.5.0 || ^4.0.0"
+ peerDependencies:
+ eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0
+ checksum: 10/12e96c68d58c6588305fd17d660524a1ef1e872650ec591d5b138f059431290831c373d4b1c9ae8991fb25f96c43935497d2149678c027e65d0417d3d99ecc85
+ languageName: node
+ linkType: hard
+
+"eslint-plugin-react-native-globals@npm:^0.1.1":
+ version: 0.1.2
+ resolution: "eslint-plugin-react-native-globals@npm:0.1.2"
+ checksum: 10/ab91e8ecbb51718fb0763f29226b1c2d402251ab2c4730a8bf85f38b805e32d4243da46d07ccdb12cb9dcce9e7514364a1706142cf970f58dcc9a820bcf4b732
+ languageName: node
+ linkType: hard
+
+"eslint-plugin-react-native@npm:^4.0.0":
+ version: 4.1.0
+ resolution: "eslint-plugin-react-native@npm:4.1.0"
+ dependencies:
+ eslint-plugin-react-native-globals: "npm:^0.1.1"
+ peerDependencies:
+ eslint: ^3.17.0 || ^4 || ^5 || ^6 || ^7 || ^8
+ checksum: 10/fb2d65a3faca9bf775a0fa430eb7e86b7c27d0b256916d4f79a94def9ad353c8a10605f1f0dc9a5fb10e446b003341d53af9d8cbca4dd7ba394350355efa30c6
+ languageName: node
+ linkType: hard
+
"eslint-plugin-react-refresh@npm:^0.4.1, eslint-plugin-react-refresh@npm:^0.4.5":
version: 0.4.5
resolution: "eslint-plugin-react-refresh@npm:0.4.5"
@@ -24339,7 +25929,7 @@ __metadata:
languageName: node
linkType: hard
-"eslint-plugin-react@npm:^7.32.2, eslint-plugin-react@npm:^7.36.1, eslint-plugin-react@npm:^7.37.0, eslint-plugin-react@npm:^7.37.3, eslint-plugin-react@npm:^7.37.5":
+"eslint-plugin-react@npm:^7.30.1, eslint-plugin-react@npm:^7.32.2, eslint-plugin-react@npm:^7.36.1, eslint-plugin-react@npm:^7.37.0, eslint-plugin-react@npm:^7.37.3, eslint-plugin-react@npm:^7.37.5":
version: 7.37.5
resolution: "eslint-plugin-react@npm:7.37.5"
dependencies:
@@ -24480,7 +26070,7 @@ __metadata:
languageName: node
linkType: hard
-"eslint@npm:^8.15.0, eslint@npm:^8.53.0, eslint@npm:^8.57.0":
+"eslint@npm:^8.15.0, eslint@npm:^8.53.0, eslint@npm:^8.57.0, eslint@npm:^8.57.1":
version: 8.57.1
resolution: "eslint@npm:8.57.1"
dependencies:
@@ -24735,6 +26325,13 @@ __metadata:
languageName: node
linkType: hard
+"eta@npm:4.5.0":
+ version: 4.5.0
+ resolution: "eta@npm:4.5.0"
+ checksum: 10/e9012cc58538c2c3735b0a25daa53b30dfe7af5e4e9a5a1e25ef9e161bfa5cfe41ae3dae08a9e50456e64790e0857b06f0f8a3e5c273789cbdfbdecd27cebff6
+ languageName: node
+ linkType: hard
+
"etag@npm:1.8.1, etag@npm:^1.8.1, etag@npm:~1.8.1":
version: 1.8.1
resolution: "etag@npm:1.8.1"
@@ -24852,6 +26449,23 @@ __metadata:
languageName: node
linkType: hard
+"execa@npm:^4.0.3":
+ version: 4.1.0
+ resolution: "execa@npm:4.1.0"
+ dependencies:
+ cross-spawn: "npm:^7.0.0"
+ get-stream: "npm:^5.0.0"
+ human-signals: "npm:^1.1.1"
+ is-stream: "npm:^2.0.0"
+ merge-stream: "npm:^2.0.0"
+ npm-run-path: "npm:^4.0.0"
+ onetime: "npm:^5.1.0"
+ signal-exit: "npm:^3.0.2"
+ strip-final-newline: "npm:^2.0.0"
+ checksum: 10/ed58e41fe424797f3d837c8fb622548eeb72fa03324f2676af95f806568904eb55f196127a097f87d4517cab524c169ece13e6c9e201867de57b089584864b8f
+ languageName: node
+ linkType: hard
+
"execa@npm:^8.0.1":
version: 8.0.1
resolution: "execa@npm:8.0.1"
@@ -25581,10 +27195,10 @@ __metadata:
languageName: node
linkType: hard
-"exsolve@npm:^1.0.1":
- version: 1.0.4
- resolution: "exsolve@npm:1.0.4"
- checksum: 10/1cef4fee4c1ec2a2d316731e7df856cd835791c0e18a2ef74a39921e4e09653ddee3be5d6a589f92d81b0e7b776d96100459780a7727715021c189aa9ceed920
+"exsolve@npm:^1.0.7, exsolve@npm:^1.0.8":
+ version: 1.0.8
+ resolution: "exsolve@npm:1.0.8"
+ checksum: 10/e7e8eac048af9f6856628a46df15529ab37428bdb5f7bc5b7824614383223de1aff60ebe85f44d9c8d4ee218d98c71df1a3e2d336f7d022a4dccd97a0651ec5b
languageName: node
linkType: hard
@@ -25651,6 +27265,13 @@ __metadata:
languageName: node
linkType: hard
+"fast-content-type-parse@npm:^3.0.0":
+ version: 3.0.0
+ resolution: "fast-content-type-parse@npm:3.0.0"
+ checksum: 10/8616a8aa6c9b4f8f4f3c90eaa4e7bfc2240cfa6f41f0eef5b5aa2b2c8b38bd9ad435f1488b6d817ffd725c54651e2777b882ae9dd59366e71e7896f1ec11d473
+ languageName: node
+ linkType: hard
+
"fast-copy@npm:^3.0.0, fast-copy@npm:^3.0.2":
version: 3.0.2
resolution: "fast-copy@npm:3.0.2"
@@ -25706,7 +27327,7 @@ __metadata:
languageName: node
linkType: hard
-"fast-glob@npm:3.3.3, fast-glob@npm:^3.2.5, fast-glob@npm:^3.2.7, fast-glob@npm:^3.2.9, fast-glob@npm:^3.3.2":
+"fast-glob@npm:3.3.3, fast-glob@npm:^3.2.5, fast-glob@npm:^3.2.7, fast-glob@npm:^3.2.9, fast-glob@npm:^3.3.2, fast-glob@npm:^3.3.3":
version: 3.3.3
resolution: "fast-glob@npm:3.3.3"
dependencies:
@@ -25790,6 +27411,17 @@ __metadata:
languageName: node
linkType: hard
+"fast-xml-parser@npm:^4.4.1":
+ version: 4.5.3
+ resolution: "fast-xml-parser@npm:4.5.3"
+ dependencies:
+ strnum: "npm:^1.1.1"
+ bin:
+ fxparser: src/cli/cli.js
+ checksum: 10/ca22bf9d65c10b8447c1034c13403e90ecee210e2b3852690df3d8a42b8a46ec655fae7356096abd98a15b89ddaf11878587b1773e0c3be4cbc2ac4af4c7bf95
+ languageName: node
+ linkType: hard
+
"fastest-levenshtein@npm:^1.0.16":
version: 1.0.16
resolution: "fastest-levenshtein@npm:1.0.16"
@@ -25824,6 +27456,15 @@ __metadata:
languageName: node
linkType: hard
+"fb-dotslash@npm:0.5.8":
+ version: 0.5.8
+ resolution: "fb-dotslash@npm:0.5.8"
+ bin:
+ dotslash: bin/dotslash
+ checksum: 10/9335e6835b6bb6d12807fe60e37af197295d26d671c20f355df188f3359188dda3d3bf93b978e3df93f67c4f67a281122399b828f0e49360302431db23480dee
+ languageName: node
+ linkType: hard
+
"fb-watchman@npm:^2.0.0":
version: 2.0.1
resolution: "fb-watchman@npm:2.0.1"
@@ -25864,6 +27505,15 @@ __metadata:
languageName: node
linkType: hard
+"fd-package-json@npm:^2.0.0":
+ version: 2.0.0
+ resolution: "fd-package-json@npm:2.0.0"
+ dependencies:
+ walk-up-path: "npm:^4.0.0"
+ checksum: 10/e595a1a23f8e208815cdcf26c92218240da00acce80468324408dc4a5cb6c26b6efb5076f0458a02f044562a1e60253731187a627d5416b4961468ddfc0ae426
+ languageName: node
+ linkType: hard
+
"fd-slicer@npm:~1.1.0":
version: 1.1.0
resolution: "fd-slicer@npm:1.1.0"
@@ -26733,10 +28383,10 @@ __metadata:
languageName: node
linkType: hard
-"get-east-asian-width@npm:^1.0.0":
- version: 1.3.0
- resolution: "get-east-asian-width@npm:1.3.0"
- checksum: 10/8e8e779eb28701db7fdb1c8cab879e39e6ae23f52dadd89c8aed05869671cee611a65d4f8557b83e981428623247d8bc5d0c7a4ef3ea7a41d826e73600112ad8
+"get-east-asian-width@npm:^1.0.0, get-east-asian-width@npm:^1.3.0":
+ version: 1.4.0
+ resolution: "get-east-asian-width@npm:1.4.0"
+ checksum: 10/c9ae85bfc2feaf4cc71cdb236e60f1757ae82281964c206c6aa89a25f1987d326ddd8b0de9f9ccd56e37711b9fcd988f7f5137118b49b0b45e19df93c3be8f45
languageName: node
linkType: hard
@@ -26904,6 +28554,54 @@ __metadata:
languageName: node
linkType: hard
+"giget@npm:^2.0.0":
+ version: 2.0.0
+ resolution: "giget@npm:2.0.0"
+ dependencies:
+ citty: "npm:^0.1.6"
+ consola: "npm:^3.4.0"
+ defu: "npm:^6.1.4"
+ node-fetch-native: "npm:^1.6.6"
+ nypm: "npm:^0.6.0"
+ pathe: "npm:^2.0.3"
+ bin:
+ giget: dist/cli.mjs
+ checksum: 10/3ee0f4aa06bdaeda9d4d31791d6a1e4349f15e20ff1dbe60535c709d3acc03f29f36a648cd047851a332fc1a0e9997ab6c5036410cc1629c09ad45ee155ee6dd
+ languageName: node
+ linkType: hard
+
+"git-raw-commits@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "git-raw-commits@npm:4.0.0"
+ dependencies:
+ dargs: "npm:^8.0.0"
+ meow: "npm:^12.0.1"
+ split2: "npm:^4.0.0"
+ bin:
+ git-raw-commits: cli.mjs
+ checksum: 10/95546f4afcb33cf00ff638f7fec55ad61d4d927447737900e1f6fcbbdbb341b3f150908424cc62acb6d9faaea6f1e8f55d0697b899f0589af9d2733afb20abfb
+ languageName: node
+ linkType: hard
+
+"git-up@npm:^8.1.0":
+ version: 8.1.1
+ resolution: "git-up@npm:8.1.1"
+ dependencies:
+ is-ssh: "npm:^1.4.0"
+ parse-url: "npm:^9.2.0"
+ checksum: 10/475bfb816ee6003c505f25f2d6859148eedf684b2381f59774a8b4baf279d603710b888ecd1c5f5619fd7a582b131c2c52f8d247d59c7cc10bb7f7edffc704f7
+ languageName: node
+ linkType: hard
+
+"git-url-parse@npm:16.1.0":
+ version: 16.1.0
+ resolution: "git-url-parse@npm:16.1.0"
+ dependencies:
+ git-up: "npm:^8.1.0"
+ checksum: 10/1522e86ce89bb854ac5eaab13e71f9a72e93c4eb9897559d9731e03b700a7e2d38d16a77dddede9f79c8dac6f50633e2e420702bb1677580e797312e9b55379d
+ languageName: node
+ linkType: hard
+
"glob-parent@npm:^5.1.2, glob-parent@npm:~5.1.2":
version: 5.1.2
resolution: "glob-parent@npm:5.1.2"
@@ -26945,6 +28643,15 @@ __metadata:
languageName: node
linkType: hard
+"global-directory@npm:^4.0.1":
+ version: 4.0.1
+ resolution: "global-directory@npm:4.0.1"
+ dependencies:
+ ini: "npm:4.1.1"
+ checksum: 10/5b4df24438a4e5f21e43fbdd9e54f5e12bb48dce01a0a83b415d8052ce91be2d3a97e0c8f98a535e69649b2190036155e9f0f7d3c62f9318f31bdc3fd4f235f5
+ languageName: node
+ linkType: hard
+
"global-dirs@npm:^3.0.0":
version: 3.0.0
resolution: "global-dirs@npm:3.0.0"
@@ -27008,17 +28715,17 @@ __metadata:
languageName: node
linkType: hard
-"globby@npm:^14.0.0":
- version: 14.0.2
- resolution: "globby@npm:14.0.2"
+"globby@npm:^14.0.0, globby@npm:^14.0.2":
+ version: 14.1.0
+ resolution: "globby@npm:14.1.0"
dependencies:
"@sindresorhus/merge-streams": "npm:^2.1.0"
- fast-glob: "npm:^3.3.2"
- ignore: "npm:^5.2.4"
- path-type: "npm:^5.0.0"
+ fast-glob: "npm:^3.3.3"
+ ignore: "npm:^7.0.3"
+ path-type: "npm:^6.0.0"
slash: "npm:^5.1.0"
- unicorn-magic: "npm:^0.1.0"
- checksum: 10/67660da70fc1223f7170c1a62ba6c373385e9e39765d952b6518606dec15ed8c7958e9dae6ba5752a31dbc1e9126f146938b830ad680fe794141734ffc3fbb75
+ unicorn-magic: "npm:^0.3.0"
+ checksum: 10/e527ff54f0dddf60abfabd0d9e799768619d957feecd8b13ef60481f270bfdce0d28f6b09267c60f8064798fb3003b8ec991375f7fe0233fbce5304e1741368c
languageName: node
linkType: hard
@@ -27282,6 +28989,24 @@ __metadata:
languageName: node
linkType: hard
+"handlebars@npm:^4.7.7":
+ version: 4.7.8
+ resolution: "handlebars@npm:4.7.8"
+ dependencies:
+ minimist: "npm:^1.2.5"
+ neo-async: "npm:^2.6.2"
+ source-map: "npm:^0.6.1"
+ uglify-js: "npm:^3.1.4"
+ wordwrap: "npm:^1.0.0"
+ dependenciesMeta:
+ uglify-js:
+ optional: true
+ bin:
+ handlebars: bin/handlebars
+ checksum: 10/bd528f4dd150adf67f3f857118ef0fa43ff79a153b1d943fa0a770f2599e38b25a7a0dbac1a3611a4ec86970fd2325a81310fb788b5c892308c9f8743bd02e11
+ languageName: node
+ linkType: hard
+
"happy-dom@npm:^14.12.0":
version: 14.12.3
resolution: "happy-dom@npm:14.12.3"
@@ -27474,6 +29199,13 @@ __metadata:
languageName: node
linkType: hard
+"hermes-compiler@npm:0.14.0":
+ version: 0.14.0
+ resolution: "hermes-compiler@npm:0.14.0"
+ checksum: 10/880a5570770a977731f98fe2bedf5b7079e2e851a16e08ec89aeaa1de552e885734de3be513bc5633e5415fd1ac497b7b630aab75a46c359a5d30a243a1dcf11
+ languageName: node
+ linkType: hard
+
"hermes-estree@npm:0.23.1":
version: 0.23.1
resolution: "hermes-estree@npm:0.23.1"
@@ -27495,6 +29227,13 @@ __metadata:
languageName: node
linkType: hard
+"hermes-estree@npm:0.32.0":
+ version: 0.32.0
+ resolution: "hermes-estree@npm:0.32.0"
+ checksum: 10/65a30a86a5a560152a2de1842c7bc7ecdadebd62e9cdd7d1809a824de7bc19e8d6a42907d3caff91d9f823862405d4b200447aa0bc25ba16072937e93d0acbd5
+ languageName: node
+ linkType: hard
+
"hermes-parser@npm:0.23.1":
version: 0.23.1
resolution: "hermes-parser@npm:0.23.1"
@@ -27504,7 +29243,7 @@ __metadata:
languageName: node
linkType: hard
-"hermes-parser@npm:0.25.1":
+"hermes-parser@npm:0.25.1, hermes-parser@npm:^0.25.1":
version: 0.25.1
resolution: "hermes-parser@npm:0.25.1"
dependencies:
@@ -27522,6 +29261,15 @@ __metadata:
languageName: node
linkType: hard
+"hermes-parser@npm:0.32.0":
+ version: 0.32.0
+ resolution: "hermes-parser@npm:0.32.0"
+ dependencies:
+ hermes-estree: "npm:0.32.0"
+ checksum: 10/496210490cb45e97df14796d94aec6c817c4cefa20f1dbe3ba1df323cc58c930033cfec93f3ecfad6b90e09166fc9ffc4f665843d25b4862523aa70dacbae81f
+ languageName: node
+ linkType: hard
+
"hexer@npm:^1.5.0":
version: 1.5.0
resolution: "hexer@npm:1.5.0"
@@ -27828,7 +29576,7 @@ __metadata:
languageName: node
linkType: hard
-"http-proxy-agent@npm:^7.0.0":
+"http-proxy-agent@npm:^7.0.0, http-proxy-agent@npm:^7.0.1":
version: 7.0.2
resolution: "http-proxy-agent@npm:7.0.2"
dependencies:
@@ -27904,7 +29652,7 @@ __metadata:
languageName: node
linkType: hard
-"https-proxy-agent@npm:7.0.6, https-proxy-agent@npm:^7.0.0, https-proxy-agent@npm:^7.0.1, https-proxy-agent@npm:^7.0.5":
+"https-proxy-agent@npm:7.0.6, https-proxy-agent@npm:^7.0.0, https-proxy-agent@npm:^7.0.1, https-proxy-agent@npm:^7.0.5, https-proxy-agent@npm:^7.0.6":
version: 7.0.6
resolution: "https-proxy-agent@npm:7.0.6"
dependencies:
@@ -28068,7 +29816,7 @@ __metadata:
languageName: node
linkType: hard
-"ignore@npm:^5.1.1, ignore@npm:^5.2.0, ignore@npm:^5.2.4, ignore@npm:^5.3.1":
+"ignore@npm:^5.0.5, ignore@npm:^5.1.1, ignore@npm:^5.2.0, ignore@npm:^5.3.1":
version: 5.3.2
resolution: "ignore@npm:5.3.2"
checksum: 10/cceb6a457000f8f6a50e1196429750d782afce5680dd878aa4221bd79972d68b3a55b4b1458fc682be978f4d3c6a249046aa0880637367216444ab7b014cfc98
@@ -28179,10 +29927,10 @@ __metadata:
languageName: node
linkType: hard
-"import-meta-resolve@npm:^4.1.0":
- version: 4.1.0
- resolution: "import-meta-resolve@npm:4.1.0"
- checksum: 10/40162f67eb406c8d5d49266206ef12ff07b54f5fad8cfd806db9efe3a055958e9969be51d6efaf82e34b8bea6758113dcc17bb79ff148292a4badcabc3472f22
+"import-meta-resolve@npm:^4.0.0, import-meta-resolve@npm:^4.1.0":
+ version: 4.2.0
+ resolution: "import-meta-resolve@npm:4.2.0"
+ checksum: 10/3499ee8b7eddb79be77067b368bcdf39e6f144306dea4686d08071ae7e65a2e3bdca3f98f2a0f4babdcd4ba9d9e7d379ae7e27c4b9bf8b08c1e812a28c674bf3
languageName: node
linkType: hard
@@ -28228,6 +29976,13 @@ __metadata:
languageName: node
linkType: hard
+"ini@npm:4.1.1":
+ version: 4.1.1
+ resolution: "ini@npm:4.1.1"
+ checksum: 10/64c7102301742a7527bb17257d18451410eacf63b4b5648a20e108816c355c21c4e8a1761bbcbf3fe8c4ded3297f1b832b885d5e3e485d781e293ebfaf56fea6
+ languageName: node
+ linkType: hard
+
"ini@npm:5.0.0, ini@npm:^5.0.0":
version: 5.0.0
resolution: "ini@npm:5.0.0"
@@ -28290,6 +30045,26 @@ __metadata:
languageName: node
linkType: hard
+"inquirer@npm:12.11.1":
+ version: 12.11.1
+ resolution: "inquirer@npm:12.11.1"
+ dependencies:
+ "@inquirer/ansi": "npm:^1.0.2"
+ "@inquirer/core": "npm:^10.3.2"
+ "@inquirer/prompts": "npm:^7.10.1"
+ "@inquirer/type": "npm:^3.0.10"
+ mute-stream: "npm:^2.0.0"
+ run-async: "npm:^4.0.6"
+ rxjs: "npm:^7.8.2"
+ peerDependencies:
+ "@types/node": ">=18"
+ peerDependenciesMeta:
+ "@types/node":
+ optional: true
+ checksum: 10/1405b1a10e3d49bc992965ebe003cfa2b2a61004f2274e251bec636013f4821b84f50bf526bc5c7e79d377650e2d2bbbb0b9916e9e2c4f087fe90c4a572c950c
+ languageName: node
+ linkType: hard
+
"inquirer@npm:8.2.6, inquirer@npm:^8.0.0":
version: 8.2.6
resolution: "inquirer@npm:8.2.6"
@@ -28700,6 +30475,26 @@ __metadata:
languageName: node
linkType: hard
+"is-git-dirty@npm:^2.0.1":
+ version: 2.0.2
+ resolution: "is-git-dirty@npm:2.0.2"
+ dependencies:
+ execa: "npm:^4.0.3"
+ is-git-repository: "npm:^2.0.0"
+ checksum: 10/13c8f58600e1ea0874703c1fa0ca87825119cf05347bb3b0bbbd331eec42b6a0e89519be4dcb173ac8eda84d1ade97fe187df8af10df599f1df8d0267680abdd
+ languageName: node
+ linkType: hard
+
+"is-git-repository@npm:^2.0.0":
+ version: 2.0.0
+ resolution: "is-git-repository@npm:2.0.0"
+ dependencies:
+ execa: "npm:^4.0.3"
+ is-absolute: "npm:^1.0.0"
+ checksum: 10/9eba76437998b3239adc6e87ceb9b81f8ef00d6209f8700f2ba523e61359d5b068d11f8f94474bc90f92b39fd3c8261c4d60feb3cd62d18e1838480b0b135b88
+ languageName: node
+ linkType: hard
+
"is-glob@npm:4.0.3, is-glob@npm:^4.0.0, is-glob@npm:^4.0.1, is-glob@npm:^4.0.3, is-glob@npm:~4.0.1":
version: 4.0.3
resolution: "is-glob@npm:4.0.3"
@@ -28751,6 +30546,13 @@ __metadata:
languageName: node
linkType: hard
+"is-interactive@npm:^2.0.0":
+ version: 2.0.0
+ resolution: "is-interactive@npm:2.0.0"
+ checksum: 10/e8d52ad490bed7ae665032c7675ec07732bbfe25808b0efbc4d5a76b1a1f01c165f332775c63e25e9a03d319ebb6b24f571a9e902669fc1e40b0a60b5be6e26c
+ languageName: node
+ linkType: hard
+
"is-lambda@npm:^1.0.1":
version: 1.0.1
resolution: "is-lambda@npm:1.0.1"
@@ -28847,6 +30649,13 @@ __metadata:
languageName: node
linkType: hard
+"is-path-cwd@npm:^3.0.0":
+ version: 3.0.0
+ resolution: "is-path-cwd@npm:3.0.0"
+ checksum: 10/bc34d13b6a03dfca4a3ab6a8a5ba78ae4b24f4f1db4b2b031d2760c60d0913bd16a4b980dcb4e590adfc906649d5f5132684079a3972bd219da49deebb9adea8
+ languageName: node
+ linkType: hard
+
"is-path-in-cwd@npm:^1.0.0":
version: 1.0.1
resolution: "is-path-in-cwd@npm:1.0.1"
@@ -28872,6 +30681,13 @@ __metadata:
languageName: node
linkType: hard
+"is-path-inside@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "is-path-inside@npm:4.0.0"
+ checksum: 10/8810fa11c58e6360b82c3e0d6cd7d9c7d0392d3ac9eb10f980b81f9839f40ac6d1d6d6f05d069db0d227759801228f0b072e1b6c343e4469b065ab5fe0b68fe5
+ languageName: node
+ linkType: hard
+
"is-plain-obj@npm:^1.1.0":
version: 1.1.0
resolution: "is-plain-obj@npm:1.1.0"
@@ -28985,6 +30801,15 @@ __metadata:
languageName: node
linkType: hard
+"is-ssh@npm:^1.4.0":
+ version: 1.4.1
+ resolution: "is-ssh@npm:1.4.1"
+ dependencies:
+ protocols: "npm:^2.0.1"
+ checksum: 10/f60910cd83fa94e9874655a672c3849312c12af83c0fe3dbff9945755fe838a73985d8f94e32ebf5626ba4148ee10eef51b7240b0218dbb6e9a43a06899b0529
+ languageName: node
+ linkType: hard
+
"is-stream-ended@npm:^0.1.4":
version: 0.1.4
resolution: "is-stream-ended@npm:0.1.4"
@@ -29043,6 +30868,15 @@ __metadata:
languageName: node
linkType: hard
+"is-text-path@npm:^2.0.0":
+ version: 2.0.0
+ resolution: "is-text-path@npm:2.0.0"
+ dependencies:
+ text-extensions: "npm:^2.0.0"
+ checksum: 10/e26ade26a6aa6b26c3f00c913871c3c1ceb5a2a5ca4380aac3f0e092b151ad8e2ce4cee1060fb7a13a5684fa55ce62c9df04fa7723b180c82a34ae4c0fa34adb
+ languageName: node
+ linkType: hard
+
"is-typed-array@npm:^1.1.13, is-typed-array@npm:^1.1.14, is-typed-array@npm:^1.1.15, is-typed-array@npm:^1.1.3":
version: 1.1.15
resolution: "is-typed-array@npm:1.1.15"
@@ -29075,6 +30909,13 @@ __metadata:
languageName: node
linkType: hard
+"is-unicode-supported@npm:^2.0.0, is-unicode-supported@npm:^2.1.0":
+ version: 2.1.0
+ resolution: "is-unicode-supported@npm:2.1.0"
+ checksum: 10/f254e3da6b0ab1a57a94f7273a7798dd35d1d45b227759f600d0fa9d5649f9c07fa8d3c8a6360b0e376adf916d151ec24fc9a50c5295c58bae7ca54a76a063f9
+ languageName: node
+ linkType: hard
+
"is-upper-case@npm:^2.0.2":
version: 2.0.2
resolution: "is-upper-case@npm:2.0.2"
@@ -29124,6 +30965,13 @@ __metadata:
languageName: node
linkType: hard
+"is-wsl@npm:^1.1.0":
+ version: 1.1.0
+ resolution: "is-wsl@npm:1.1.0"
+ checksum: 10/ea157d232351e68c92bd62fc541771096942fe72f69dff452dd26dcc31466258c570a3b04b8cda2e01cd2968255b02951b8670d08ea4ed76d6b1a646061ac4fe
+ languageName: node
+ linkType: hard
+
"is-wsl@npm:^2.1.1, is-wsl@npm:^2.2.0":
version: 2.2.0
resolution: "is-wsl@npm:2.2.0"
@@ -29228,6 +31076,19 @@ __metadata:
languageName: node
linkType: hard
+"issue-parser@npm:7.0.1":
+ version: 7.0.1
+ resolution: "issue-parser@npm:7.0.1"
+ dependencies:
+ lodash.capitalize: "npm:^4.2.1"
+ lodash.escaperegexp: "npm:^4.1.2"
+ lodash.isplainobject: "npm:^4.0.6"
+ lodash.isstring: "npm:^4.0.1"
+ lodash.uniqby: "npm:^4.7.0"
+ checksum: 10/04d14d987567008a270f5ed165e9464e131faf9c1d373b13c53bc7a1fe78b4e3aa91fcf2a1be2bac73983624084260b72957926fa35a1df4d60afbb61b645c95
+ languageName: node
+ linkType: hard
+
"istanbul-lib-coverage@npm:^3.0.0, istanbul-lib-coverage@npm:^3.2.0, istanbul-lib-coverage@npm:^3.2.2":
version: 3.2.2
resolution: "istanbul-lib-coverage@npm:3.2.2"
@@ -30437,7 +32298,7 @@ __metadata:
languageName: node
linkType: hard
-"jest@npm:^29.2.1, jest@npm:^29.5.0":
+"jest@npm:^29.2.1, jest@npm:^29.5.0, jest@npm:^29.7.0":
version: 29.7.0
resolution: "jest@npm:29.7.0"
dependencies:
@@ -30472,12 +32333,12 @@ __metadata:
languageName: node
linkType: hard
-"jiti@npm:^2.0.0":
- version: 2.4.2
- resolution: "jiti@npm:2.4.2"
+"jiti@npm:^2.0.0, jiti@npm:^2.6.1":
+ version: 2.6.1
+ resolution: "jiti@npm:2.6.1"
bin:
jiti: lib/jiti-cli.mjs
- checksum: 10/e2b07eb2e3fbb245e29ad288dddecab31804967fc84d5e01d39858997d2743b5e248946defcecf99272275a00284ecaf7ec88b8c841331324f0c946d8274414b
+ checksum: 10/8cd72c5fd03a0502564c3f46c49761090f6dadead21fa191b73535724f095ad86c2fa89ee6fe4bc3515337e8d406cc8fb2d37b73fa0c99a34584bac35cd4a4de
languageName: node
linkType: hard
@@ -30488,6 +32349,19 @@ __metadata:
languageName: node
linkType: hard
+"joi@npm:^17.2.1":
+ version: 17.13.3
+ resolution: "joi@npm:17.13.3"
+ dependencies:
+ "@hapi/hoek": "npm:^9.3.0"
+ "@hapi/topo": "npm:^5.1.0"
+ "@sideway/address": "npm:^4.1.5"
+ "@sideway/formula": "npm:^3.0.1"
+ "@sideway/pinpoint": "npm:^2.0.0"
+ checksum: 10/4c150db0c820c3a52f4a55c82c1fc5e144a5b5f4da9ffebc7339a15469d1a447ebb427ced446efcb9709ab56bd71a06c4c67c9381bc1b9f9ae63fc7c89209bdf
+ languageName: node
+ linkType: hard
+
"join-component@npm:^1.1.0":
version: 1.1.0
resolution: "join-component@npm:1.1.0"
@@ -30750,7 +32624,7 @@ __metadata:
languageName: node
linkType: hard
-"jsesc@npm:3.0.2, jsesc@npm:^3.0.2, jsesc@npm:~3.0.2":
+"jsesc@npm:3.0.2":
version: 3.0.2
resolution: "jsesc@npm:3.0.2"
bin:
@@ -30759,6 +32633,15 @@ __metadata:
languageName: node
linkType: hard
+"jsesc@npm:^3.0.2, jsesc@npm:~3.1.0":
+ version: 3.1.0
+ resolution: "jsesc@npm:3.1.0"
+ bin:
+ jsesc: bin/jsesc
+ checksum: 10/20bd37a142eca5d1794f354db8f1c9aeb54d85e1f5c247b371de05d23a9751ecd7bd3a9c4fc5298ea6fa09a100dafb4190fa5c98c6610b75952c3487f3ce7967
+ languageName: node
+ linkType: hard
+
"json-bigint@npm:^1.0.0":
version: 1.0.0
resolution: "json-bigint@npm:1.0.0"
@@ -30874,7 +32757,7 @@ __metadata:
languageName: node
linkType: hard
-"json5@npm:2.x, json5@npm:^2.1.2, json5@npm:^2.2.2, json5@npm:^2.2.3":
+"json5@npm:2.x, json5@npm:^2.1.2, json5@npm:^2.2.1, json5@npm:^2.2.2, json5@npm:^2.2.3":
version: 2.2.3
resolution: "json5@npm:2.2.3"
bin:
@@ -30947,7 +32830,7 @@ __metadata:
languageName: node
linkType: hard
-"jsonparse@npm:^1.3.1":
+"jsonparse@npm:^1.2.0, jsonparse@npm:^1.3.1":
version: 1.3.1
resolution: "jsonparse@npm:1.3.1"
checksum: 10/24531e956f0f19d79e22c157cebd81b37af3486ae22f9bc1028f8c2a4d1b70df48b168ff86f8568d9c2248182de9b6da9f50f685d5e4b9d1d2d339d2a29d15bc
@@ -31198,7 +33081,7 @@ __metadata:
languageName: node
linkType: hard
-"kleur@npm:^4.0.3, kleur@npm:^4.1.5":
+"kleur@npm:^4.0.3, kleur@npm:^4.1.4, kleur@npm:^4.1.5":
version: 4.1.5
resolution: "kleur@npm:4.1.5"
checksum: 10/44d84cc4eedd4311099402ef6d4acd9b2d16e08e499d6ef3bb92389bd4692d7ef09e35248c26e27f98acac532122acb12a1bfee645994ae3af4f0a37996da7df
@@ -31267,13 +33150,13 @@ __metadata:
languageName: node
linkType: hard
-"launch-editor@npm:^2.6.1":
- version: 2.9.1
- resolution: "launch-editor@npm:2.9.1"
+"launch-editor@npm:^2.6.1, launch-editor@npm:^2.9.1":
+ version: 2.12.0
+ resolution: "launch-editor@npm:2.12.0"
dependencies:
- picocolors: "npm:^1.0.0"
- shell-quote: "npm:^1.8.1"
- checksum: 10/69eb1e69db4f0fcd34a42bd47e9adbad27cb5413408fcc746eb7b016128ce19d71a30629534b17aa5886488936aaa959bf7dab17307ad5ed6c7247a0d145be18
+ picocolors: "npm:^1.1.1"
+ shell-quote: "npm:^1.8.3"
+ checksum: 10/43d2b66c674d129f9a96bbae602808a0afa7e6bb6f38de5518479e33b1a542e9772b262304505c2aa363b0185424580b4011a9198082d306e2b419c6f12da5e2
languageName: node
linkType: hard
@@ -31319,6 +33202,117 @@ __metadata:
languageName: node
linkType: hard
+"lefthook-darwin-arm64@npm:2.0.16":
+ version: 2.0.16
+ resolution: "lefthook-darwin-arm64@npm:2.0.16"
+ conditions: os=darwin & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"lefthook-darwin-x64@npm:2.0.16":
+ version: 2.0.16
+ resolution: "lefthook-darwin-x64@npm:2.0.16"
+ conditions: os=darwin & cpu=x64
+ languageName: node
+ linkType: hard
+
+"lefthook-freebsd-arm64@npm:2.0.16":
+ version: 2.0.16
+ resolution: "lefthook-freebsd-arm64@npm:2.0.16"
+ conditions: os=freebsd & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"lefthook-freebsd-x64@npm:2.0.16":
+ version: 2.0.16
+ resolution: "lefthook-freebsd-x64@npm:2.0.16"
+ conditions: os=freebsd & cpu=x64
+ languageName: node
+ linkType: hard
+
+"lefthook-linux-arm64@npm:2.0.16":
+ version: 2.0.16
+ resolution: "lefthook-linux-arm64@npm:2.0.16"
+ conditions: os=linux & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"lefthook-linux-x64@npm:2.0.16":
+ version: 2.0.16
+ resolution: "lefthook-linux-x64@npm:2.0.16"
+ conditions: os=linux & cpu=x64
+ languageName: node
+ linkType: hard
+
+"lefthook-openbsd-arm64@npm:2.0.16":
+ version: 2.0.16
+ resolution: "lefthook-openbsd-arm64@npm:2.0.16"
+ conditions: os=openbsd & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"lefthook-openbsd-x64@npm:2.0.16":
+ version: 2.0.16
+ resolution: "lefthook-openbsd-x64@npm:2.0.16"
+ conditions: os=openbsd & cpu=x64
+ languageName: node
+ linkType: hard
+
+"lefthook-windows-arm64@npm:2.0.16":
+ version: 2.0.16
+ resolution: "lefthook-windows-arm64@npm:2.0.16"
+ conditions: os=win32 & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"lefthook-windows-x64@npm:2.0.16":
+ version: 2.0.16
+ resolution: "lefthook-windows-x64@npm:2.0.16"
+ conditions: os=win32 & cpu=x64
+ languageName: node
+ linkType: hard
+
+"lefthook@npm:^2.0.3":
+ version: 2.0.16
+ resolution: "lefthook@npm:2.0.16"
+ dependencies:
+ lefthook-darwin-arm64: "npm:2.0.16"
+ lefthook-darwin-x64: "npm:2.0.16"
+ lefthook-freebsd-arm64: "npm:2.0.16"
+ lefthook-freebsd-x64: "npm:2.0.16"
+ lefthook-linux-arm64: "npm:2.0.16"
+ lefthook-linux-x64: "npm:2.0.16"
+ lefthook-openbsd-arm64: "npm:2.0.16"
+ lefthook-openbsd-x64: "npm:2.0.16"
+ lefthook-windows-arm64: "npm:2.0.16"
+ lefthook-windows-x64: "npm:2.0.16"
+ dependenciesMeta:
+ lefthook-darwin-arm64:
+ optional: true
+ lefthook-darwin-x64:
+ optional: true
+ lefthook-freebsd-arm64:
+ optional: true
+ lefthook-freebsd-x64:
+ optional: true
+ lefthook-linux-arm64:
+ optional: true
+ lefthook-linux-x64:
+ optional: true
+ lefthook-openbsd-arm64:
+ optional: true
+ lefthook-openbsd-x64:
+ optional: true
+ lefthook-windows-arm64:
+ optional: true
+ lefthook-windows-x64:
+ optional: true
+ bin:
+ lefthook: bin/index.js
+ checksum: 10/178d694b1ee9b501166475f5e76762d8996a53fb8ac2a5c2ca1dd22b86760447a6000de7977b3e599a20ca8584c98310cd78ec93f63f27c020558e3409ddd055
+ languageName: node
+ linkType: hard
+
"less-loader@npm:12.2.0":
version: 12.2.0
resolution: "less-loader@npm:12.2.0"
@@ -31925,6 +33919,13 @@ __metadata:
languageName: node
linkType: hard
+"lodash.capitalize@npm:^4.2.1":
+ version: 4.2.1
+ resolution: "lodash.capitalize@npm:4.2.1"
+ checksum: 10/54d61121bd040212954faee94703a999282987a104fab4ea6a85027d5fb2ce482a737478b76d292d07753da1c15911541adf0f6db840abf121c4cab85b92e962
+ languageName: node
+ linkType: hard
+
"lodash.clonedeep@npm:^4.5.0":
version: 4.5.0
resolution: "lodash.clonedeep@npm:4.5.0"
@@ -31939,6 +33940,13 @@ __metadata:
languageName: node
linkType: hard
+"lodash.escaperegexp@npm:^4.1.2":
+ version: 4.1.2
+ resolution: "lodash.escaperegexp@npm:4.1.2"
+ checksum: 10/6d99452b1cfd6073175a9b741a9b09ece159eac463f86f02ea3bee2e2092923fce812c8d2bf446309cc52d1d61bf9af51c8118b0d7421388e6cead7bd3798f0f
+ languageName: node
+ linkType: hard
+
"lodash.get@npm:^4.4.2":
version: 4.4.2
resolution: "lodash.get@npm:4.4.2"
@@ -31995,6 +34003,13 @@ __metadata:
languageName: node
linkType: hard
+"lodash.kebabcase@npm:^4.1.1":
+ version: 4.1.1
+ resolution: "lodash.kebabcase@npm:4.1.1"
+ checksum: 10/d84ec5441ef8e5c718c50315f35b0a045a77c7e8ee3e54472c06dc31f6f3602e95551a16c0923d689198b51deb8902c4bbc54fc9b965b26c1f86e21df3a05f34
+ languageName: node
+ linkType: hard
+
"lodash.memoize@npm:4.x, lodash.memoize@npm:^4.1.2":
version: 4.1.2
resolution: "lodash.memoize@npm:4.1.2"
@@ -32002,14 +34017,14 @@ __metadata:
languageName: node
linkType: hard
-"lodash.merge@npm:^4.6.2":
+"lodash.merge@npm:4.6.2, lodash.merge@npm:^4.6.2":
version: 4.6.2
resolution: "lodash.merge@npm:4.6.2"
checksum: 10/d0ea2dd0097e6201be083865d50c3fb54fbfbdb247d9cc5950e086c991f448b7ab0cdab0d57eacccb43473d3f2acd21e134db39f22dac2d6c9ba6bf26978e3d6
languageName: node
linkType: hard
-"lodash.mergewith@npm:4.6.2":
+"lodash.mergewith@npm:4.6.2, lodash.mergewith@npm:^4.6.2":
version: 4.6.2
resolution: "lodash.mergewith@npm:4.6.2"
checksum: 10/aea75a4492541a4902ac7e551dc6c54b722da0c187f84385d02e8fc33a7ae3454b837822446e5f63fcd5ad1671534ea408740b776670ea4d9c7890b10105fce0
@@ -32023,6 +34038,13 @@ __metadata:
languageName: node
linkType: hard
+"lodash.snakecase@npm:^4.1.1":
+ version: 4.1.1
+ resolution: "lodash.snakecase@npm:4.1.1"
+ checksum: 10/82ed40935d840477ef8fee64f9f263f75989c6cde36b84aae817246d95826228e1b5a7f6093c51de324084f86433634c7af244cb89496633cacfe443071450d0
+ languageName: node
+ linkType: hard
+
"lodash.sortby@npm:^4.7.0":
version: 4.7.0
resolution: "lodash.sortby@npm:4.7.0"
@@ -32058,6 +34080,13 @@ __metadata:
languageName: node
linkType: hard
+"lodash.upperfirst@npm:^4.3.1":
+ version: 4.3.1
+ resolution: "lodash.upperfirst@npm:4.3.1"
+ checksum: 10/3e849d4eb4dbf26faee6435edda8e707b65a5dbd2f10f8def5a16a57bbbf38d3b7506950f0dd455e9c46ba73af35f1de75df4ef83952106949413d64eed59333
+ languageName: node
+ linkType: hard
+
"lodash@npm:^4.17.23":
version: 4.17.23
resolution: "lodash@npm:4.17.23"
@@ -32084,6 +34113,16 @@ __metadata:
languageName: node
linkType: hard
+"log-symbols@npm:^7.0.1":
+ version: 7.0.1
+ resolution: "log-symbols@npm:7.0.1"
+ dependencies:
+ is-unicode-supported: "npm:^2.0.0"
+ yoctocolors: "npm:^2.1.1"
+ checksum: 10/0862313d84826b551582e39659b8586c56b65130c5f4f976420e2c23985228334f2a26fc4251ac22bf0a5b415d9430e86bf332557d934c10b036f9a549d63a09
+ languageName: node
+ linkType: hard
+
"log-update@npm:^4.0.0":
version: 4.0.0
resolution: "log-update@npm:4.0.0"
@@ -32136,6 +34175,19 @@ __metadata:
languageName: node
linkType: hard
+"logkitty@npm:^0.7.1":
+ version: 0.7.1
+ resolution: "logkitty@npm:0.7.1"
+ dependencies:
+ ansi-fragments: "npm:^0.2.1"
+ dayjs: "npm:^1.8.15"
+ yargs: "npm:^15.1.0"
+ bin:
+ logkitty: bin/logkitty.js
+ checksum: 10/1b9ab873198f31d42f353ab05cee93678b66788de159ea8ff2425afb20bf929eb021cbd2890d7dbdea59ddacdc029e8d8d0d485a35af0583435ff36daeef180c
+ languageName: node
+ linkType: hard
+
"loglevel@npm:^1.6.8":
version: 1.8.1
resolution: "loglevel@npm:1.8.1"
@@ -32332,6 +34384,13 @@ __metadata:
languageName: node
linkType: hard
+"macos-release@npm:^3.3.0":
+ version: 3.4.0
+ resolution: "macos-release@npm:3.4.0"
+ checksum: 10/f4c0cb8b3f93b05d73c502b4bbe2b811c44facfc9bd072c13a30ff2a8ba1cad5d9de517d10be8b31e2b917643245a81587a2eec8300e66a7364419d11402ab02
+ languageName: node
+ linkType: hard
+
"magic-string@npm:0.30.17, magic-string@npm:^0.30.10, magic-string@npm:^0.30.12, magic-string@npm:^0.30.17, magic-string@npm:^0.30.3, magic-string@npm:^0.30.4, magic-string@npm:^0.30.5, magic-string@npm:^0.30.8":
version: 0.30.17
resolution: "magic-string@npm:0.30.17"
@@ -32844,6 +34903,20 @@ __metadata:
languageName: node
linkType: hard
+"meow@npm:^12.0.1":
+ version: 12.1.1
+ resolution: "meow@npm:12.1.1"
+ checksum: 10/8594c319f4671a562c1fef584422902f1bbbad09ea49cdf9bb26dc92f730fa33398dd28a8cf34fcf14167f1d1148d05a867e50911fc4286751a4fb662fdd2dc2
+ languageName: node
+ linkType: hard
+
+"meow@npm:^13.0.0, meow@npm:^13.2.0":
+ version: 13.2.0
+ resolution: "meow@npm:13.2.0"
+ checksum: 10/4eff5bc921fed0b8a471ad79069d741a0210036d717547d0c7f36fdaf84ef7a3036225f38b6a53830d84dc9cbf8b944b097fde62381b8b5b215119e735ce1063
+ languageName: node
+ linkType: hard
+
"meow@npm:^7.1.1":
version: 7.1.1
resolution: "meow@npm:7.1.1"
@@ -32959,6 +35032,18 @@ __metadata:
languageName: node
linkType: hard
+"metro-babel-transformer@npm:0.83.3":
+ version: 0.83.3
+ resolution: "metro-babel-transformer@npm:0.83.3"
+ dependencies:
+ "@babel/core": "npm:^7.25.2"
+ flow-enums-runtime: "npm:^0.0.6"
+ hermes-parser: "npm:0.32.0"
+ nullthrows: "npm:^1.1.1"
+ checksum: 10/dd178409d1718dae12dfffb6572ebc5bb78f1e0d7e93dce829c945957f8a686cb1b4c466c69585d7b982b3937fbea28d5c53a80691f2fc66717a0bcc800bc5b8
+ languageName: node
+ linkType: hard
+
"metro-cache-key@npm:0.81.5":
version: 0.81.5
resolution: "metro-cache-key@npm:0.81.5"
@@ -32977,6 +35062,15 @@ __metadata:
languageName: node
linkType: hard
+"metro-cache-key@npm:0.83.3":
+ version: 0.83.3
+ resolution: "metro-cache-key@npm:0.83.3"
+ dependencies:
+ flow-enums-runtime: "npm:^0.0.6"
+ checksum: 10/a6f9d2bf8b810f57d330d6f8f1ebf029e1224f426c5895f73d9bc1007482684048bfc7513a855626ee7f3ae72ca46e1b08cf983aefbfa84321bb7c0cef4ba4ae
+ languageName: node
+ linkType: hard
+
"metro-cache@npm:0.81.5":
version: 0.81.5
resolution: "metro-cache@npm:0.81.5"
@@ -33000,6 +35094,18 @@ __metadata:
languageName: node
linkType: hard
+"metro-cache@npm:0.83.3":
+ version: 0.83.3
+ resolution: "metro-cache@npm:0.83.3"
+ dependencies:
+ exponential-backoff: "npm:^3.1.1"
+ flow-enums-runtime: "npm:^0.0.6"
+ https-proxy-agent: "npm:^7.0.5"
+ metro-core: "npm:0.83.3"
+ checksum: 10/4bc263ac92f176451710ebd330d156675e40f028be02eb9659a9b024db9897f3ad8510809d699969cb6f06dc0f06d85c38ca7162fb9a70be44510fa03270e089
+ languageName: node
+ linkType: hard
+
"metro-config@npm:0.81.5, metro-config@npm:^0.81.0":
version: 0.81.5
resolution: "metro-config@npm:0.81.5"
@@ -33032,6 +35138,22 @@ __metadata:
languageName: node
linkType: hard
+"metro-config@npm:0.83.3, metro-config@npm:^0.83.3":
+ version: 0.83.3
+ resolution: "metro-config@npm:0.83.3"
+ dependencies:
+ connect: "npm:^3.6.5"
+ flow-enums-runtime: "npm:^0.0.6"
+ jest-validate: "npm:^29.7.0"
+ metro: "npm:0.83.3"
+ metro-cache: "npm:0.83.3"
+ metro-core: "npm:0.83.3"
+ metro-runtime: "npm:0.83.3"
+ yaml: "npm:^2.6.1"
+ checksum: 10/e377c375a48afc85a4d742f80a17fc178f9af7f5b007375e65bb49472ad78bc8e1f0ba4399411310ee8b856fb767bd81bd6dae19bec6ef6a44f0ece4d8457b30
+ languageName: node
+ linkType: hard
+
"metro-core@npm:0.81.5, metro-core@npm:^0.81.0":
version: 0.81.5
resolution: "metro-core@npm:0.81.5"
@@ -33054,6 +35176,17 @@ __metadata:
languageName: node
linkType: hard
+"metro-core@npm:0.83.3, metro-core@npm:^0.83.3":
+ version: 0.83.3
+ resolution: "metro-core@npm:0.83.3"
+ dependencies:
+ flow-enums-runtime: "npm:^0.0.6"
+ lodash.throttle: "npm:^4.1.1"
+ metro-resolver: "npm:0.83.3"
+ checksum: 10/6ef06214faa1d727396d986f989a8150f699d73c5764c66e06e61b08017e462141a7b4c9ca63f67becee58ea1394b41aabfff441e644fc1e945c715e07c60612
+ languageName: node
+ linkType: hard
+
"metro-file-map@npm:0.81.5":
version: 0.81.5
resolution: "metro-file-map@npm:0.81.5"
@@ -33088,6 +35221,23 @@ __metadata:
languageName: node
linkType: hard
+"metro-file-map@npm:0.83.3":
+ version: 0.83.3
+ resolution: "metro-file-map@npm:0.83.3"
+ dependencies:
+ debug: "npm:^4.4.0"
+ fb-watchman: "npm:^2.0.0"
+ flow-enums-runtime: "npm:^0.0.6"
+ graceful-fs: "npm:^4.2.4"
+ invariant: "npm:^2.2.4"
+ jest-worker: "npm:^29.7.0"
+ micromatch: "npm:^4.0.4"
+ nullthrows: "npm:^1.1.1"
+ walker: "npm:^1.0.7"
+ checksum: 10/be621b144168b6a35567d4313557596df68ee61c1b9a067fbf8272ec3db7c2d9d76849c9b8d2331716d6839c3f8e243e2b715ca2551d7ffebbd206a34c19591a
+ languageName: node
+ linkType: hard
+
"metro-minify-terser@npm:0.81.5":
version: 0.81.5
resolution: "metro-minify-terser@npm:0.81.5"
@@ -33108,6 +35258,16 @@ __metadata:
languageName: node
linkType: hard
+"metro-minify-terser@npm:0.83.3":
+ version: 0.83.3
+ resolution: "metro-minify-terser@npm:0.83.3"
+ dependencies:
+ flow-enums-runtime: "npm:^0.0.6"
+ terser: "npm:^5.15.0"
+ checksum: 10/1de88b70b7c903147807baa46497491a87600594fd0868b6538bbb9d7785242cabfbe8bccf36cc2285d0e17be72445b512d00c496952a159572545f3e6bcb199
+ languageName: node
+ linkType: hard
+
"metro-resolver@npm:0.81.5":
version: 0.81.5
resolution: "metro-resolver@npm:0.81.5"
@@ -33126,6 +35286,15 @@ __metadata:
languageName: node
linkType: hard
+"metro-resolver@npm:0.83.3":
+ version: 0.83.3
+ resolution: "metro-resolver@npm:0.83.3"
+ dependencies:
+ flow-enums-runtime: "npm:^0.0.6"
+ checksum: 10/a425376447505a088a365fc1fbe2753d452c0353a189f2c74833f2b30d6401de7ed90e36a927d355fa454d6c439a156eb66bcfcedfbbe8a78d313cf49acfbb4c
+ languageName: node
+ linkType: hard
+
"metro-runtime@npm:0.81.5, metro-runtime@npm:^0.81.0":
version: 0.81.5
resolution: "metro-runtime@npm:0.81.5"
@@ -33146,6 +35315,16 @@ __metadata:
languageName: node
linkType: hard
+"metro-runtime@npm:0.83.3, metro-runtime@npm:^0.83.3":
+ version: 0.83.3
+ resolution: "metro-runtime@npm:0.83.3"
+ dependencies:
+ "@babel/runtime": "npm:^7.25.0"
+ flow-enums-runtime: "npm:^0.0.6"
+ checksum: 10/bf916759a7178e1d12e131c64ac67d6015ba35ead7a178e6efedd23f12ec65de99f450fe7da0ffb6c6edbfeb3cd186d2006b979a1c1c588377ae54f5f5d7921d
+ languageName: node
+ linkType: hard
+
"metro-source-map@npm:0.81.5, metro-source-map@npm:^0.81.0":
version: 0.81.5
resolution: "metro-source-map@npm:0.81.5"
@@ -33182,6 +35361,24 @@ __metadata:
languageName: node
linkType: hard
+"metro-source-map@npm:0.83.3, metro-source-map@npm:^0.83.3":
+ version: 0.83.3
+ resolution: "metro-source-map@npm:0.83.3"
+ dependencies:
+ "@babel/traverse": "npm:^7.25.3"
+ "@babel/traverse--for-generate-function-map": "npm:@babel/traverse@^7.25.3"
+ "@babel/types": "npm:^7.25.2"
+ flow-enums-runtime: "npm:^0.0.6"
+ invariant: "npm:^2.2.4"
+ metro-symbolicate: "npm:0.83.3"
+ nullthrows: "npm:^1.1.1"
+ ob1: "npm:0.83.3"
+ source-map: "npm:^0.5.6"
+ vlq: "npm:^1.0.0"
+ checksum: 10/1dcfce503628275f97dd85945ca575c71e5654fd8872b7d86449f3352cfc84ea7a59889b2aad012361245b5497e1e097db73390245952dcfb63258ba32fa90bf
+ languageName: node
+ linkType: hard
+
"metro-symbolicate@npm:0.81.5":
version: 0.81.5
resolution: "metro-symbolicate@npm:0.81.5"
@@ -33214,6 +35411,22 @@ __metadata:
languageName: node
linkType: hard
+"metro-symbolicate@npm:0.83.3":
+ version: 0.83.3
+ resolution: "metro-symbolicate@npm:0.83.3"
+ dependencies:
+ flow-enums-runtime: "npm:^0.0.6"
+ invariant: "npm:^2.2.4"
+ metro-source-map: "npm:0.83.3"
+ nullthrows: "npm:^1.1.1"
+ source-map: "npm:^0.5.6"
+ vlq: "npm:^1.0.0"
+ bin:
+ metro-symbolicate: src/index.js
+ checksum: 10/f3be0740655732044e92728a3bccd5f4a73ab2f9e4423ca05faee02446e9b2efd9400cc7bcd761fad9bc2a1b92855ce5b03bf13e0421a203fe179be40dcc9381
+ languageName: node
+ linkType: hard
+
"metro-transform-plugins@npm:0.81.5":
version: 0.81.5
resolution: "metro-transform-plugins@npm:0.81.5"
@@ -33242,6 +35455,20 @@ __metadata:
languageName: node
linkType: hard
+"metro-transform-plugins@npm:0.83.3":
+ version: 0.83.3
+ resolution: "metro-transform-plugins@npm:0.83.3"
+ dependencies:
+ "@babel/core": "npm:^7.25.2"
+ "@babel/generator": "npm:^7.25.0"
+ "@babel/template": "npm:^7.25.0"
+ "@babel/traverse": "npm:^7.25.3"
+ flow-enums-runtime: "npm:^0.0.6"
+ nullthrows: "npm:^1.1.1"
+ checksum: 10/fa7efe6ab4f2ce5f66e1cb302f71341cf7fd55319cf360a269b187d2f507cecce8db8069f92585cf43517aee63e18cf6e66dd124db95c293902ab27c68ac43b1
+ languageName: node
+ linkType: hard
+
"metro-transform-worker@npm:0.81.5":
version: 0.81.5
resolution: "metro-transform-worker@npm:0.81.5"
@@ -33284,6 +35511,27 @@ __metadata:
languageName: node
linkType: hard
+"metro-transform-worker@npm:0.83.3":
+ version: 0.83.3
+ resolution: "metro-transform-worker@npm:0.83.3"
+ dependencies:
+ "@babel/core": "npm:^7.25.2"
+ "@babel/generator": "npm:^7.25.0"
+ "@babel/parser": "npm:^7.25.3"
+ "@babel/types": "npm:^7.25.2"
+ flow-enums-runtime: "npm:^0.0.6"
+ metro: "npm:0.83.3"
+ metro-babel-transformer: "npm:0.83.3"
+ metro-cache: "npm:0.83.3"
+ metro-cache-key: "npm:0.83.3"
+ metro-minify-terser: "npm:0.83.3"
+ metro-source-map: "npm:0.83.3"
+ metro-transform-plugins: "npm:0.83.3"
+ nullthrows: "npm:^1.1.1"
+ checksum: 10/e6db9b54a9b21f4b06fc665321a7aebc6206dbac3976bda74bdf4d101dbd50f91b2e49163581ca1c27b684a4eecc2db988f0fc7aaeb200d2d947cb05d3e89f18
+ languageName: node
+ linkType: hard
+
"metro@npm:0.81.5, metro@npm:^0.81.0":
version: 0.81.5
resolution: "metro@npm:0.81.5"
@@ -33384,6 +35632,56 @@ __metadata:
languageName: node
linkType: hard
+"metro@npm:0.83.3, metro@npm:^0.83.3":
+ version: 0.83.3
+ resolution: "metro@npm:0.83.3"
+ dependencies:
+ "@babel/code-frame": "npm:^7.24.7"
+ "@babel/core": "npm:^7.25.2"
+ "@babel/generator": "npm:^7.25.0"
+ "@babel/parser": "npm:^7.25.3"
+ "@babel/template": "npm:^7.25.0"
+ "@babel/traverse": "npm:^7.25.3"
+ "@babel/types": "npm:^7.25.2"
+ accepts: "npm:^1.3.7"
+ chalk: "npm:^4.0.0"
+ ci-info: "npm:^2.0.0"
+ connect: "npm:^3.6.5"
+ debug: "npm:^4.4.0"
+ error-stack-parser: "npm:^2.0.6"
+ flow-enums-runtime: "npm:^0.0.6"
+ graceful-fs: "npm:^4.2.4"
+ hermes-parser: "npm:0.32.0"
+ image-size: "npm:^1.0.2"
+ invariant: "npm:^2.2.4"
+ jest-worker: "npm:^29.7.0"
+ jsc-safe-url: "npm:^0.2.2"
+ lodash.throttle: "npm:^4.1.1"
+ metro-babel-transformer: "npm:0.83.3"
+ metro-cache: "npm:0.83.3"
+ metro-cache-key: "npm:0.83.3"
+ metro-config: "npm:0.83.3"
+ metro-core: "npm:0.83.3"
+ metro-file-map: "npm:0.83.3"
+ metro-resolver: "npm:0.83.3"
+ metro-runtime: "npm:0.83.3"
+ metro-source-map: "npm:0.83.3"
+ metro-symbolicate: "npm:0.83.3"
+ metro-transform-plugins: "npm:0.83.3"
+ metro-transform-worker: "npm:0.83.3"
+ mime-types: "npm:^2.1.27"
+ nullthrows: "npm:^1.1.1"
+ serialize-error: "npm:^2.1.0"
+ source-map: "npm:^0.5.6"
+ throat: "npm:^5.0.0"
+ ws: "npm:^7.5.10"
+ yargs: "npm:^17.6.2"
+ bin:
+ metro: src/cli.js
+ checksum: 10/c989031710f02e51d3030660f1913870885647c5a216068333f7b4c43363f9ede03a9efb3b068b6750c6decab40f541376c3d81b32389d24932a46e10d19ebe1
+ languageName: node
+ linkType: hard
+
"micro@npm:9.3.5-canary.3":
version: 9.3.5-canary.3
resolution: "micro@npm:9.3.5-canary.3"
@@ -33783,12 +36081,12 @@ __metadata:
languageName: node
linkType: hard
-"mime-types@npm:^3.0.0, mime-types@npm:^3.0.1":
- version: 3.0.1
- resolution: "mime-types@npm:3.0.1"
+"mime-types@npm:3.0.2, mime-types@npm:^3.0.0, mime-types@npm:^3.0.1":
+ version: 3.0.2
+ resolution: "mime-types@npm:3.0.2"
dependencies:
mime-db: "npm:^1.54.0"
- checksum: 10/fa1d3a928363723a8046c346d87bf85d35014dae4285ad70a3ff92bd35957992b3094f8417973cfe677330916c6ef30885109624f1fb3b1e61a78af509dba120
+ checksum: 10/9db0ad31f5eff10ee8f848130779b7f2d056ddfdb6bda696cb69be68d486d33a3457b4f3f9bdeb60d0736edb471bd5a7c0a384375c011c51c889fd0d5c3b893e
languageName: node
linkType: hard
@@ -33801,7 +36099,7 @@ __metadata:
languageName: node
linkType: hard
-"mime@npm:^2.5.2":
+"mime@npm:^2.4.1, mime@npm:^2.5.2":
version: 2.6.0
resolution: "mime@npm:2.6.0"
bin:
@@ -34533,6 +36831,15 @@ __metadata:
languageName: node
linkType: hard
+"new-github-release-url@npm:2.0.0":
+ version: 2.0.0
+ resolution: "new-github-release-url@npm:2.0.0"
+ dependencies:
+ type-fest: "npm:^2.5.1"
+ checksum: 10/3d4ae0f3b775623ceed8e558b6f9850e897aea981a9c937d3ad4e018669c829beccb2c4b5a6af996726ebf86c5b7638368dfc01f3ac2e395d1df29309bc0c5ca
+ languageName: node
+ linkType: hard
+
"next-build-id@npm:^3.0.0":
version: 3.0.0
resolution: "next-build-id@npm:3.0.0"
@@ -34655,6 +36962,13 @@ __metadata:
languageName: node
linkType: hard
+"nocache@npm:^3.0.1":
+ version: 3.0.4
+ resolution: "nocache@npm:3.0.4"
+ checksum: 10/e980eac3c6c81ff6336728e10e798a251b48866822a3fbf98f74b800cafe2b1a8ac8f676a48ac454d4db9509cd501d72ffb9d5509c30b054b5d8800117a079fc
+ languageName: node
+ linkType: hard
+
"node-abort-controller@npm:^3.0.1, node-abort-controller@npm:^3.1.1":
version: 3.1.1
resolution: "node-abort-controller@npm:3.1.1"
@@ -34721,6 +37035,13 @@ __metadata:
languageName: unknown
linkType: soft
+"node-fetch-native@npm:^1.6.6":
+ version: 1.6.7
+ resolution: "node-fetch-native@npm:1.6.7"
+ checksum: 10/b8a99e6adafbdbdd9373a6784c467ca5c7b95eeed4896ee2d604f0729962fda8d07cf7a85edd1e8bb3ee51e791dc55c30cbebeb46cbd1f086d74141b3769a680
+ languageName: node
+ linkType: hard
+
"node-fetch@npm:2.6.7":
version: 2.6.7
resolution: "node-fetch@npm:2.6.7"
@@ -34862,6 +37183,13 @@ __metadata:
languageName: node
linkType: hard
+"node-stream-zip@npm:^1.9.1":
+ version: 1.15.0
+ resolution: "node-stream-zip@npm:1.15.0"
+ checksum: 10/3fb56144d23456e1b42fe9d24656999e4ef6aeccce3cae43fc97ba6c341ee448aeceb4dc8fb57ee78eab1a6da49dd46c9650fdb2f16b137630a335df9560c647
+ languageName: node
+ linkType: hard
+
"nodemon@npm:^3.1.10":
version: 3.1.10
resolution: "nodemon@npm:3.1.10"
@@ -35305,6 +37633,19 @@ __metadata:
languageName: node
linkType: hard
+"nypm@npm:^0.6.0":
+ version: 0.6.4
+ resolution: "nypm@npm:0.6.4"
+ dependencies:
+ citty: "npm:^0.2.0"
+ pathe: "npm:^2.0.3"
+ tinyexec: "npm:^1.0.2"
+ bin:
+ nypm: dist/cli.mjs
+ checksum: 10/a11e34ebb8ed5e4952341b0376307bb65a619ea5a252d7da825a641bcf88f3880f46d1633725f08b6d263d212bc9ae18b24249964d7ca41c3031f7cf8f1c5b6c
+ languageName: node
+ linkType: hard
+
"oauth-sign@npm:~0.9.0":
version: 0.9.0
resolution: "oauth-sign@npm:0.9.0"
@@ -35330,6 +37671,15 @@ __metadata:
languageName: node
linkType: hard
+"ob1@npm:0.83.3":
+ version: 0.83.3
+ resolution: "ob1@npm:0.83.3"
+ dependencies:
+ flow-enums-runtime: "npm:^0.0.6"
+ checksum: 10/20dfe91d48d0cadd97159cfd53f5abdca435b55d58b1f562e0687485e8f44f8a95e8ab3c835badd13d0d8c01e3d7b14d639a316aa4bf82841ac78b49611d4e5c
+ languageName: node
+ linkType: hard
+
"object-assign@npm:^4, object-assign@npm:^4.0.1, object-assign@npm:^4.1.0, object-assign@npm:^4.1.1":
version: 4.1.1
resolution: "object-assign@npm:4.1.1"
@@ -35436,6 +37786,13 @@ __metadata:
languageName: node
linkType: hard
+"ohash@npm:^2.0.11":
+ version: 2.0.11
+ resolution: "ohash@npm:2.0.11"
+ checksum: 10/6b0423f42cc95c3d643f390a88364aac824178b7788dccb4e8c64e2124463d0069e60d4d90bad88ed9823808368d051e088aa27058ca4722b1397a201ffbfa4b
+ languageName: node
+ linkType: hard
+
"ohm-js@npm:^17.1.0":
version: 17.3.0
resolution: "ohm-js@npm:17.3.0"
@@ -35538,7 +37895,7 @@ __metadata:
languageName: node
linkType: hard
-"open@npm:10.1.0, open@npm:^10.0.3":
+"open@npm:10.1.0":
version: 10.1.0
resolution: "open@npm:10.1.0"
dependencies:
@@ -35550,6 +37907,27 @@ __metadata:
languageName: node
linkType: hard
+"open@npm:10.2.0, open@npm:^10.0.3":
+ version: 10.2.0
+ resolution: "open@npm:10.2.0"
+ dependencies:
+ default-browser: "npm:^5.2.1"
+ define-lazy-prop: "npm:^3.0.0"
+ is-inside-container: "npm:^1.0.0"
+ wsl-utils: "npm:^0.1.0"
+ checksum: 10/e6ad9474734eac3549dcc7d85e952394856ccaee48107c453bd6a725b82e3b8ed5f427658935df27efa76b411aeef62888edea8a9e347e8e7c82632ec966b30e
+ languageName: node
+ linkType: hard
+
+"open@npm:^6.2.0":
+ version: 6.4.0
+ resolution: "open@npm:6.4.0"
+ dependencies:
+ is-wsl: "npm:^1.1.0"
+ checksum: 10/9b1cfda7a649f432c8bfa281796d28b5a49f7afcb470d9054ca94c7d0b1e8273432f55134dd953eb593ffce244de1b701ee89e6fe9c25ea8215eb1ca1ae8a1a9
+ languageName: node
+ linkType: hard
+
"open@npm:^7.0.3":
version: 7.4.2
resolution: "open@npm:7.4.2"
@@ -35623,6 +38001,23 @@ __metadata:
languageName: node
linkType: hard
+"ora@npm:9.0.0":
+ version: 9.0.0
+ resolution: "ora@npm:9.0.0"
+ dependencies:
+ chalk: "npm:^5.6.2"
+ cli-cursor: "npm:^5.0.0"
+ cli-spinners: "npm:^3.2.0"
+ is-interactive: "npm:^2.0.0"
+ is-unicode-supported: "npm:^2.1.0"
+ log-symbols: "npm:^7.0.1"
+ stdin-discarder: "npm:^0.2.2"
+ string-width: "npm:^8.1.0"
+ strip-ansi: "npm:^7.1.2"
+ checksum: 10/b6074c9cec4a39c1b4f41c2ce2741982a99c53c86bd6f07a28fb6274857263af7fe1a340136629939934b553af35b03fc62ca2a88baa6803b2f9bfdf269fb850
+ languageName: node
+ linkType: hard
+
"ora@npm:^3.4.0":
version: 3.4.0
resolution: "ora@npm:3.4.0"
@@ -35644,6 +38039,16 @@ __metadata:
languageName: node
linkType: hard
+"os-name@npm:6.1.0":
+ version: 6.1.0
+ resolution: "os-name@npm:6.1.0"
+ dependencies:
+ macos-release: "npm:^3.3.0"
+ windows-release: "npm:^6.1.0"
+ checksum: 10/d69a2060bea01dc502bd9a08802f43bebce85e95adde7740d0629a8522c16a92c05e0ee052819cac49f82aa61324ff038a3b79e015e26f122bbc08b40aa4ead3
+ languageName: node
+ linkType: hard
+
"os-paths@npm:^4.0.1":
version: 4.4.0
resolution: "os-paths@npm:4.4.0"
@@ -35841,19 +38246,19 @@ __metadata:
languageName: node
linkType: hard
-"pac-proxy-agent@npm:^7.0.0":
- version: 7.0.2
- resolution: "pac-proxy-agent@npm:7.0.2"
+"pac-proxy-agent@npm:^7.0.0, pac-proxy-agent@npm:^7.1.0":
+ version: 7.2.0
+ resolution: "pac-proxy-agent@npm:7.2.0"
dependencies:
"@tootallnate/quickjs-emscripten": "npm:^0.23.0"
- agent-base: "npm:^7.0.2"
+ agent-base: "npm:^7.1.2"
debug: "npm:^4.3.4"
get-uri: "npm:^6.0.1"
http-proxy-agent: "npm:^7.0.0"
- https-proxy-agent: "npm:^7.0.5"
+ https-proxy-agent: "npm:^7.0.6"
pac-resolver: "npm:^7.0.1"
- socks-proxy-agent: "npm:^8.0.4"
- checksum: 10/bb9b53b32ba98f085fd98ad0ea5e4201498585bf8d9390b3365c057b692b8562997be166d44224878ac216a81f1016c1f55f4e1dec52a6d92e5aa659eba9124c
+ socks-proxy-agent: "npm:^8.0.5"
+ checksum: 10/187656be62d5a6b983d90a86d64106a38b1a9ee78f591fabb27b3cf0d51e5d528456a9faaaf981c93dd54dc9c9ee8d33e35a51072b73a19ec1a8e0d0c36a2b99
languageName: node
linkType: hard
@@ -36067,6 +38472,15 @@ __metadata:
languageName: node
linkType: hard
+"parse-path@npm:^7.0.0":
+ version: 7.1.0
+ resolution: "parse-path@npm:7.1.0"
+ dependencies:
+ protocols: "npm:^2.0.0"
+ checksum: 10/6da6c6803fa73bacfee98e694c6c95fa55caae632c765369e4fd917f1043ef71f35ecaae420ef0e39e933bd1f939c4bc1e01522b62145191cdbe72e58d37a8ab
+ languageName: node
+ linkType: hard
+
"parse-png@npm:^2.1.0":
version: 2.1.0
resolution: "parse-png@npm:2.1.0"
@@ -36076,6 +38490,16 @@ __metadata:
languageName: node
linkType: hard
+"parse-url@npm:^9.2.0":
+ version: 9.2.0
+ resolution: "parse-url@npm:9.2.0"
+ dependencies:
+ "@types/parse-path": "npm:^7.0.0"
+ parse-path: "npm:^7.0.0"
+ checksum: 10/d2746f0dbcd34d39df966a0726c00ede272aa34d825513baca721ad95480786c664f91ab22cf4e79cdb130468056e41834f6c9cc912b9180539f73aa5bafa982
+ languageName: node
+ linkType: hard
+
"parse5-html-rewriting-stream@npm:7.0.0":
version: 7.0.0
resolution: "parse5-html-rewriting-stream@npm:7.0.0"
@@ -36285,10 +38709,10 @@ __metadata:
languageName: node
linkType: hard
-"path-type@npm:^5.0.0":
- version: 5.0.0
- resolution: "path-type@npm:5.0.0"
- checksum: 10/15ec24050e8932c2c98d085b72cfa0d6b4eeb4cbde151a0a05726d8afae85784fc5544f733d8dfc68536587d5143d29c0bd793623fad03d7e61cc00067291cd5
+"path-type@npm:^6.0.0":
+ version: 6.0.0
+ resolution: "path-type@npm:6.0.0"
+ checksum: 10/b9f6eaf7795c48d5c9bc4c6bc3ac61315b8d36975a73497ab2e02b764c0836b71fb267ea541863153f633a069a1c2ed3c247cb781633842fc571c655ac57c00e
languageName: node
linkType: hard
@@ -36338,6 +38762,13 @@ __metadata:
languageName: node
linkType: hard
+"perfect-debounce@npm:^2.0.0":
+ version: 2.1.0
+ resolution: "perfect-debounce@npm:2.1.0"
+ checksum: 10/1e45b92ab585fa1bfafaf01783b693b6d164a4da3b80865487f716a010d95e3d8b1131693258e342da25da671312c194cddb103c4743161f57dcf26574273fe6
+ languageName: node
+ linkType: hard
+
"performance-now@npm:^2.1.0":
version: 2.1.0
resolution: "performance-now@npm:2.1.0"
@@ -36740,14 +39171,14 @@ __metadata:
languageName: node
linkType: hard
-"pkg-types@npm:^2.0.1":
- version: 2.1.0
- resolution: "pkg-types@npm:2.1.0"
+"pkg-types@npm:^2.0.1, pkg-types@npm:^2.3.0":
+ version: 2.3.0
+ resolution: "pkg-types@npm:2.3.0"
dependencies:
- confbox: "npm:^0.2.1"
- exsolve: "npm:^1.0.1"
+ confbox: "npm:^0.2.2"
+ exsolve: "npm:^1.0.7"
pathe: "npm:^2.0.3"
- checksum: 10/10c9038113d2ada3cfc1fde19b6f367d50d80990f27337e78d86583c96ff2b2ce13fd19cca6bf57a59aa5230ed23e384ec92a4da4c1995c80ea75abe9a8e5dbd
+ checksum: 10/4b36e4eb12693a1beb145573c564ec6fb74b1008d3b457eaa1f0072331edf05cb7c479c47fe0c4bfdec76c2caff5b68215ff270e5fe49634c07984a7a0197118
languageName: node
linkType: hard
@@ -37134,12 +39565,19 @@ __metadata:
languageName: node
linkType: hard
-"prettier-linter-helpers@npm:^1.0.0":
- version: 1.0.0
- resolution: "prettier-linter-helpers@npm:1.0.0"
+"presentable-error@npm:^0.0.1":
+ version: 0.0.1
+ resolution: "presentable-error@npm:0.0.1"
+ checksum: 10/013809ee7a47ced847a8d860e9b89a56cdd8c4f1ad04ad8da1e58fd60843f77f497d204146bb15aaa9793d3b94ad8626eed01256fc9eb5839a545af2000a5fa4
+ languageName: node
+ linkType: hard
+
+"prettier-linter-helpers@npm:^1.0.1":
+ version: 1.0.1
+ resolution: "prettier-linter-helpers@npm:1.0.1"
dependencies:
fast-diff: "npm:^1.1.2"
- checksum: 10/00ce8011cf6430158d27f9c92cfea0a7699405633f7f1d4a45f07e21bf78e99895911cbcdc3853db3a824201a7c745bd49bfea8abd5fb9883e765a90f74f8392
+ checksum: 10/2dc35f5036a35f4c4f5e645887edda1436acb63687a7f12b2383e0a6f3c1f76b8a0a4709fe4d82e19157210feb5984b159bb714d43290022911ab53d606474ec
languageName: node
linkType: hard
@@ -37171,12 +39609,12 @@ __metadata:
languageName: node
linkType: hard
-"prettier@npm:^3.3.3, prettier@npm:^3.5.3":
- version: 3.5.3
- resolution: "prettier@npm:3.5.3"
+"prettier@npm:^3.0.0, prettier@npm:^3.3.3, prettier@npm:^3.5.3":
+ version: 3.8.1
+ resolution: "prettier@npm:3.8.1"
bin:
prettier: bin/prettier.cjs
- checksum: 10/7050c08f674d9e49fbd9a4c008291d0715471f64e94cc5e4b01729affce221dfc6875c8de7e66b728c64abc9352eefb7eaae071b5f79d30081be207b53774b78
+ checksum: 10/3da1cf8c1ef9bea828aa618553696c312e951f810bee368f6887109b203f18ee869fe88f66e65f9cf60b7cb1f2eae859892c860a300c062ff8ec69c381fc8dbd
languageName: node
linkType: hard
@@ -37394,7 +39832,7 @@ __metadata:
languageName: node
linkType: hard
-"prompts@npm:^2.0.1, prompts@npm:^2.2.1, prompts@npm:^2.3.2":
+"prompts@npm:^2.0.1, prompts@npm:^2.2.1, prompts@npm:^2.3.2, prompts@npm:^2.4.2":
version: 2.4.2
resolution: "prompts@npm:2.4.2"
dependencies:
@@ -37490,6 +39928,13 @@ __metadata:
languageName: node
linkType: hard
+"protocols@npm:^2.0.0, protocols@npm:^2.0.1":
+ version: 2.0.2
+ resolution: "protocols@npm:2.0.2"
+ checksum: 10/031cc068eb800468a50eb7c1e1c528bf142fb8314f5df9b9ea3c3f9df1697a19f97b9915b1229cef694d156812393172d9c3051ef7878d26eaa8c6faa5cccec4
+ languageName: node
+ linkType: hard
+
"protractor@npm:^7.0.0":
version: 7.0.0
resolution: "protractor@npm:7.0.0"
@@ -37542,6 +39987,22 @@ __metadata:
languageName: node
linkType: hard
+"proxy-agent@npm:6.5.0":
+ version: 6.5.0
+ resolution: "proxy-agent@npm:6.5.0"
+ dependencies:
+ agent-base: "npm:^7.1.2"
+ debug: "npm:^4.3.4"
+ http-proxy-agent: "npm:^7.0.1"
+ https-proxy-agent: "npm:^7.0.6"
+ lru-cache: "npm:^7.14.1"
+ pac-proxy-agent: "npm:^7.1.0"
+ proxy-from-env: "npm:^1.1.0"
+ socks-proxy-agent: "npm:^8.0.5"
+ checksum: 10/56d5a494d96dafad94868870af776939e7b9aaca172465a5c251d2523496a8353b029c32d2a72a012bd62622cdc9a43ba3df59b5738ab7b740bc6b362e9f9477
+ languageName: node
+ linkType: hard
+
"proxy-from-env@npm:1.1.0, proxy-from-env@npm:^1.1.0":
version: 1.1.0
resolution: "proxy-from-env@npm:1.1.0"
@@ -37909,6 +40370,16 @@ __metadata:
languageName: node
linkType: hard
+"rc9@npm:^2.1.2":
+ version: 2.1.2
+ resolution: "rc9@npm:2.1.2"
+ dependencies:
+ defu: "npm:^6.1.4"
+ destr: "npm:^2.0.3"
+ checksum: 10/0694d2a80579983a5e4f0452092d9f6a06b785b104b32f48f3d6bb263f637e53d9ebd1fd77a41b157b84c1c7e8e4ecc87c3824907738653a296e6d2faf3d1844
+ languageName: node
+ linkType: hard
+
"rc@npm:1.2.8, rc@npm:~1.2.7":
version: 1.2.8
resolution: "rc@npm:1.2.8"
@@ -37955,13 +40426,13 @@ __metadata:
languageName: node
linkType: hard
-"react-devtools-core@npm:^6.1.1":
- version: 6.1.3
- resolution: "react-devtools-core@npm:6.1.3"
+"react-devtools-core@npm:^6.1.1, react-devtools-core@npm:^6.1.5":
+ version: 6.1.5
+ resolution: "react-devtools-core@npm:6.1.5"
dependencies:
shell-quote: "npm:^1.6.1"
ws: "npm:^7"
- checksum: 10/5c9e2b0c3bc79f62e44809fb3df49082b654865d649793b0e28c35f39d614d10b78365ef971849cb3f844474bc077e5a383171f862680fba93650dafea102a8d
+ checksum: 10/0323f1d006979374b79ac83fced5bb10c04f2817d7bd4338074ead815ff441b943290d563d7796233767dd973787116a4b3c62040de4d770e0ae5b207fc8d480
languageName: node
linkType: hard
@@ -38084,6 +40555,38 @@ __metadata:
languageName: node
linkType: hard
+"react-native-builder-bob@npm:^0.40.17":
+ version: 0.40.17
+ resolution: "react-native-builder-bob@npm:0.40.17"
+ dependencies:
+ "@babel/core": "npm:^7.25.2"
+ "@babel/plugin-transform-flow-strip-types": "npm:^7.26.5"
+ "@babel/plugin-transform-strict-mode": "npm:^7.24.7"
+ "@babel/preset-env": "npm:^7.25.2"
+ "@babel/preset-react": "npm:^7.24.7"
+ "@babel/preset-typescript": "npm:^7.24.7"
+ arktype: "npm:^2.1.15"
+ babel-plugin-syntax-hermes-parser: "npm:^0.28.0"
+ browserslist: "npm:^4.20.4"
+ cross-spawn: "npm:^7.0.3"
+ dedent: "npm:^0.7.0"
+ del: "npm:^6.1.1"
+ escape-string-regexp: "npm:^4.0.0"
+ fs-extra: "npm:^10.1.0"
+ glob: "npm:^10.5.0"
+ is-git-dirty: "npm:^2.0.1"
+ json5: "npm:^2.2.1"
+ kleur: "npm:^4.1.4"
+ prompts: "npm:^2.4.2"
+ react-native-monorepo-config: "npm:^0.3.1"
+ which: "npm:^2.0.2"
+ yargs: "npm:^17.5.1"
+ bin:
+ bob: bin/bob
+ checksum: 10/80dd815dd870a5344c535e637576b9a487152f65a7908492f59a3a4a05db0f80e32bbb665322ff2588adda9c3c034e0092b13adc4d29083468431758869d9c4b
+ languageName: node
+ linkType: hard
+
"react-native-edge-to-edge@npm:1.6.0":
version: 1.6.0
resolution: "react-native-edge-to-edge@npm:1.6.0"
@@ -38146,6 +40649,16 @@ __metadata:
languageName: node
linkType: hard
+"react-native-monorepo-config@npm:^0.3.1":
+ version: 0.3.2
+ resolution: "react-native-monorepo-config@npm:0.3.2"
+ dependencies:
+ escape-string-regexp: "npm:^5.0.0"
+ fast-glob: "npm:^3.3.3"
+ checksum: 10/1a345f5300d4a056ae3f93a2f2062a5a2af3d7f49fa9492532a89cbe502932bac930f153d48fe1f5d80d4df18924075d4dc8a9d5dbe62114a0310846a25831ed
+ languageName: node
+ linkType: hard
+
"react-native-otel@workspace:e2e/react-native-otel":
version: 0.0.0-use.local
resolution: "react-native-otel@workspace:e2e/react-native-otel"
@@ -38453,6 +40966,57 @@ __metadata:
languageName: node
linkType: hard
+"react-native@npm:0.83.0":
+ version: 0.83.0
+ resolution: "react-native@npm:0.83.0"
+ dependencies:
+ "@jest/create-cache-key-function": "npm:^29.7.0"
+ "@react-native/assets-registry": "npm:0.83.0"
+ "@react-native/codegen": "npm:0.83.0"
+ "@react-native/community-cli-plugin": "npm:0.83.0"
+ "@react-native/gradle-plugin": "npm:0.83.0"
+ "@react-native/js-polyfills": "npm:0.83.0"
+ "@react-native/normalize-colors": "npm:0.83.0"
+ "@react-native/virtualized-lists": "npm:0.83.0"
+ abort-controller: "npm:^3.0.0"
+ anser: "npm:^1.4.9"
+ ansi-regex: "npm:^5.0.0"
+ babel-jest: "npm:^29.7.0"
+ babel-plugin-syntax-hermes-parser: "npm:0.32.0"
+ base64-js: "npm:^1.5.1"
+ commander: "npm:^12.0.0"
+ flow-enums-runtime: "npm:^0.0.6"
+ glob: "npm:^7.1.1"
+ hermes-compiler: "npm:0.14.0"
+ invariant: "npm:^2.2.4"
+ jest-environment-node: "npm:^29.7.0"
+ memoize-one: "npm:^5.0.0"
+ metro-runtime: "npm:^0.83.3"
+ metro-source-map: "npm:^0.83.3"
+ nullthrows: "npm:^1.1.1"
+ pretty-format: "npm:^29.7.0"
+ promise: "npm:^8.3.0"
+ react-devtools-core: "npm:^6.1.5"
+ react-refresh: "npm:^0.14.0"
+ regenerator-runtime: "npm:^0.13.2"
+ scheduler: "npm:0.27.0"
+ semver: "npm:^7.1.3"
+ stacktrace-parser: "npm:^0.1.10"
+ whatwg-fetch: "npm:^3.0.0"
+ ws: "npm:^7.5.10"
+ yargs: "npm:^17.6.2"
+ peerDependencies:
+ "@types/react": ^19.1.1
+ react: ^19.2.0
+ peerDependenciesMeta:
+ "@types/react":
+ optional: true
+ bin:
+ react-native: cli.js
+ checksum: 10/78454fa89c2f5c8794d8d04c099c6d5f43f569696b6e04afb927181bcdcc73646921e428bd29b32a79c94678d572ec00c5d3355e7a43fa94d58065eed4ba78f2
+ languageName: node
+ linkType: hard
+
"react-reconciler@npm:^0.27.0":
version: 0.27.0
resolution: "react-reconciler@npm:0.27.0"
@@ -38673,6 +41237,13 @@ __metadata:
languageName: node
linkType: hard
+"react@npm:19.2.0":
+ version: 19.2.0
+ resolution: "react@npm:19.2.0"
+ checksum: 10/e13bcdb8e994c3cfa922743cb75ca8deb60531bf02f584d2d8dab940a8132ce8a2e6ef16f8ed7f372b4072e7a7eeff589b2812dabbedfa73e6e46201dac8a9d0
+ languageName: node
+ linkType: hard
+
"read-cmd-shim@npm:^5.0.0":
version: 5.0.0
resolution: "read-cmd-shim@npm:5.0.0"
@@ -38812,6 +41383,13 @@ __metadata:
languageName: node
linkType: hard
+"readdirp@npm:^5.0.0":
+ version: 5.0.0
+ resolution: "readdirp@npm:5.0.0"
+ checksum: 10/a17a591b51d8b912083660df159e8bd17305dc1a9ef27c869c818bd95ff59e3a6496f97e91e724ef433e789d559d24e39496ea1698822eb5719606dc9c1a923d
+ languageName: node
+ linkType: hard
+
"readline@npm:^1.3.0":
version: 1.3.0
resolution: "readline@npm:1.3.0"
@@ -38871,12 +41449,12 @@ __metadata:
languageName: node
linkType: hard
-"regenerate-unicode-properties@npm:^10.2.0":
- version: 10.2.0
- resolution: "regenerate-unicode-properties@npm:10.2.0"
+"regenerate-unicode-properties@npm:^10.2.2":
+ version: 10.2.2
+ resolution: "regenerate-unicode-properties@npm:10.2.2"
dependencies:
regenerate: "npm:^1.4.2"
- checksum: 10/9150eae6fe04a8c4f2ff06077396a86a98e224c8afad8344b1b656448e89e84edcd527e4b03aa5476774129eb6ad328ed684f9c1459794a935ec0cc17ce14329
+ checksum: 10/5041ee31185c4700de9dd76783fab9def51c412751190d523d621db5b8e35a6c2d91f1642c12247e7d94f84b8ae388d044baac1e88fc2ba0ac215ca8dc7bed38
languageName: node
linkType: hard
@@ -38894,15 +41472,6 @@ __metadata:
languageName: node
linkType: hard
-"regenerator-transform@npm:^0.15.2":
- version: 0.15.2
- resolution: "regenerator-transform@npm:0.15.2"
- dependencies:
- "@babel/runtime": "npm:^7.8.4"
- checksum: 10/c4fdcb46d11bbe32605b4b9ed76b21b8d3f241a45153e9dc6f5542fed4c7744fed459f42701f650d5d5956786bf7de57547329d1c05a9df2ed9e367b9d903302
- languageName: node
- linkType: hard
-
"regex-parser@npm:^2.2.11":
version: 2.3.0
resolution: "regex-parser@npm:2.3.0"
@@ -38931,17 +41500,17 @@ __metadata:
languageName: node
linkType: hard
-"regexpu-core@npm:^6.2.0":
- version: 6.2.0
- resolution: "regexpu-core@npm:6.2.0"
+"regexpu-core@npm:^6.3.1":
+ version: 6.4.0
+ resolution: "regexpu-core@npm:6.4.0"
dependencies:
regenerate: "npm:^1.4.2"
- regenerate-unicode-properties: "npm:^10.2.0"
+ regenerate-unicode-properties: "npm:^10.2.2"
regjsgen: "npm:^0.8.0"
- regjsparser: "npm:^0.12.0"
+ regjsparser: "npm:^0.13.0"
unicode-match-property-ecmascript: "npm:^2.0.0"
- unicode-match-property-value-ecmascript: "npm:^2.1.0"
- checksum: 10/4d054ffcd98ca4f6ca7bf0df6598ed5e4a124264602553308add41d4fa714a0c5bcfb5bc868ac91f7060a9c09889cc21d3180a3a14c5f9c5838442806129ced3
+ unicode-match-property-value-ecmascript: "npm:^2.2.1"
+ checksum: 10/bf5f85a502a17f127a1f922270e2ecc1f0dd071ff76a3ec9afcd6b1c2bf7eae1486d1e3b1a6d621aee8960c8b15139e6b5058a84a68e518e1a92b52e9322faf9
languageName: node
linkType: hard
@@ -38970,14 +41539,14 @@ __metadata:
languageName: node
linkType: hard
-"regjsparser@npm:^0.12.0":
- version: 0.12.0
- resolution: "regjsparser@npm:0.12.0"
+"regjsparser@npm:^0.13.0":
+ version: 0.13.0
+ resolution: "regjsparser@npm:0.13.0"
dependencies:
- jsesc: "npm:~3.0.2"
+ jsesc: "npm:~3.1.0"
bin:
regjsparser: bin/parser
- checksum: 10/c2d6506b3308679de5223a8916984198e0493649a67b477c66bdb875357e3785abbf3bedf7c5c2cf8967d3b3a7bdf08b7cbd39e65a70f9e1ffad584aecf5f06a
+ checksum: 10/eeaabd3454f59394cbb3bfeb15fd789e638040f37d0bee9071a9b0b85524ddc52b5f7aaaaa4847304c36fa37429e53d109c4dbf6b878cb5ffa4f4198c1042fb7
languageName: node
linkType: hard
@@ -38992,6 +41561,39 @@ __metadata:
languageName: node
linkType: hard
+"release-it@npm:^19.0.4":
+ version: 19.2.4
+ resolution: "release-it@npm:19.2.4"
+ dependencies:
+ "@nodeutils/defaults-deep": "npm:1.1.0"
+ "@octokit/rest": "npm:22.0.1"
+ "@phun-ky/typeof": "npm:2.0.3"
+ async-retry: "npm:1.3.3"
+ c12: "npm:3.3.3"
+ ci-info: "npm:^4.3.1"
+ eta: "npm:4.5.0"
+ git-url-parse: "npm:16.1.0"
+ inquirer: "npm:12.11.1"
+ issue-parser: "npm:7.0.1"
+ lodash.merge: "npm:4.6.2"
+ mime-types: "npm:3.0.2"
+ new-github-release-url: "npm:2.0.0"
+ open: "npm:10.2.0"
+ ora: "npm:9.0.0"
+ os-name: "npm:6.1.0"
+ proxy-agent: "npm:6.5.0"
+ semver: "npm:7.7.3"
+ tinyglobby: "npm:0.2.15"
+ undici: "npm:6.23.0"
+ url-join: "npm:5.0.0"
+ wildcard-match: "npm:5.1.4"
+ yargs-parser: "npm:21.1.1"
+ bin:
+ release-it: bin/release-it.js
+ checksum: 10/f47ad2c379ff6c651500899cdf1434d3449f51ae686cc692af21b5964459b3365f3dd143f45834cfa52e2fcb97d5613eee127f456b3d3e9dfa7b2ea1514b133d
+ languageName: node
+ linkType: hard
+
"remark-frontmatter@npm:4.0.1":
version: 4.0.1
resolution: "remark-frontmatter@npm:4.0.1"
@@ -39821,6 +42423,13 @@ __metadata:
languageName: node
linkType: hard
+"run-async@npm:^4.0.6":
+ version: 4.0.6
+ resolution: "run-async@npm:4.0.6"
+ checksum: 10/d23929e36d0422b871a8964d5cfcb1b88295950ea5f72e1dfed458d4c3f3a33a7395e08167d8a4446f2110cfaac7d7653d9c804d2becab8afa8a63e16b97da81
+ languageName: node
+ linkType: hard
+
"run-con@npm:~1.2.10":
version: 1.2.12
resolution: "run-con@npm:1.2.12"
@@ -39844,7 +42453,7 @@ __metadata:
languageName: node
linkType: hard
-"rxjs@npm:7.8.1, rxjs@npm:^7.0.0, rxjs@npm:^7.5.5, rxjs@npm:^7.8.1":
+"rxjs@npm:7.8.1":
version: 7.8.1
resolution: "rxjs@npm:7.8.1"
dependencies:
@@ -39853,6 +42462,15 @@ __metadata:
languageName: node
linkType: hard
+"rxjs@npm:^7.0.0, rxjs@npm:^7.5.5, rxjs@npm:^7.8.1, rxjs@npm:^7.8.2":
+ version: 7.8.2
+ resolution: "rxjs@npm:7.8.2"
+ dependencies:
+ tslib: "npm:^2.1.0"
+ checksum: 10/03dff09191356b2b87d94fbc1e97c4e9eb3c09d4452399dddd451b09c2f1ba8d56925a40af114282d7bc0c6fe7514a2236ca09f903cf70e4bbf156650dddb49d
+ languageName: node
+ linkType: hard
+
"sade@npm:^1.7.3, sade@npm:^1.7.4, sade@npm:^1.8.1":
version: 1.8.1
resolution: "sade@npm:1.8.1"
@@ -40036,6 +42654,13 @@ __metadata:
languageName: node
linkType: hard
+"scheduler@npm:0.27.0":
+ version: 0.27.0
+ resolution: "scheduler@npm:0.27.0"
+ checksum: 10/eab3c3a8373195173e59c147224fc30dabe6dd453f248f5e610e8458512a5a2ee3a06465dc400ebfe6d35c9f5b7f3bb6b2e41c88c86fd177c25a73e7286a1e06
+ languageName: node
+ linkType: hard
+
"scheduler@npm:^0.21.0":
version: 0.21.0
resolution: "scheduler@npm:0.21.0"
@@ -40277,6 +42902,29 @@ __metadata:
languageName: node
linkType: hard
+"session-replay-react-native-example@workspace:sdk/@launchdarkly/react-native-ld-session-replay/example":
+ version: 0.0.0-use.local
+ resolution: "session-replay-react-native-example@workspace:sdk/@launchdarkly/react-native-ld-session-replay/example"
+ dependencies:
+ "@babel/core": "npm:^7.25.2"
+ "@babel/preset-env": "npm:^7.25.3"
+ "@babel/runtime": "npm:^7.25.0"
+ "@launchdarkly/react-native-client-sdk": "npm:^10.12.5"
+ "@launchdarkly/session-replay-react-native": "workspace:*"
+ "@react-native-community/cli": "npm:20.0.0"
+ "@react-native-community/cli-platform-android": "npm:20.0.0"
+ "@react-native-community/cli-platform-ios": "npm:20.0.0"
+ "@react-native/babel-preset": "npm:0.83.0"
+ "@react-native/metro-config": "npm:0.83.0"
+ "@react-native/typescript-config": "npm:0.83.0"
+ "@types/react": "npm:^19.2.0"
+ react: "npm:19.2.0"
+ react-native: "npm:0.83.0"
+ react-native-builder-bob: "npm:^0.40.17"
+ react-native-monorepo-config: "npm:^0.3.1"
+ languageName: unknown
+ linkType: soft
+
"set-blocking@npm:^2.0.0":
version: 2.0.0
resolution: "set-blocking@npm:2.0.0"
@@ -40522,10 +43170,10 @@ __metadata:
languageName: node
linkType: hard
-"shell-quote@npm:^1.6.1, shell-quote@npm:^1.7.3, shell-quote@npm:^1.8.1":
- version: 1.8.1
- resolution: "shell-quote@npm:1.8.1"
- checksum: 10/af19ab5a1ec30cb4b2f91fd6df49a7442d5c4825a2e269b3712eded10eedd7f9efeaab96d57829880733fc55bcdd8e9b1d8589b4befb06667c731d08145e274d
+"shell-quote@npm:^1.6.1, shell-quote@npm:^1.7.3, shell-quote@npm:^1.8.3":
+ version: 1.8.3
+ resolution: "shell-quote@npm:1.8.3"
+ checksum: 10/5473e354637c2bd698911224129c9a8961697486cff1fb221f234d71c153fc377674029b0223d1d3c953a68d451d79366abfe53d1a0b46ee1f28eb9ade928f4c
languageName: node
linkType: hard
@@ -40726,6 +43374,17 @@ __metadata:
languageName: node
linkType: hard
+"slice-ansi@npm:^2.0.0":
+ version: 2.1.0
+ resolution: "slice-ansi@npm:2.1.0"
+ dependencies:
+ ansi-styles: "npm:^3.2.0"
+ astral-regex: "npm:^1.0.0"
+ is-fullwidth-code-point: "npm:^2.0.0"
+ checksum: 10/4e82995aa59cef7eb03ef232d73c2239a15efa0ace87a01f3012ebb942e963fbb05d448ce7391efcd52ab9c32724164aba2086f5143e0445c969221dde3b6b1e
+ languageName: node
+ linkType: hard
+
"slice-ansi@npm:^3.0.0":
version: 3.0.0
resolution: "slice-ansi@npm:3.0.0"
@@ -40862,7 +43521,7 @@ __metadata:
languageName: node
linkType: hard
-"socks-proxy-agent@npm:^8.0.1, socks-proxy-agent@npm:^8.0.3, socks-proxy-agent@npm:^8.0.4":
+"socks-proxy-agent@npm:^8.0.1, socks-proxy-agent@npm:^8.0.3, socks-proxy-agent@npm:^8.0.5":
version: 8.0.5
resolution: "socks-proxy-agent@npm:8.0.5"
dependencies:
@@ -41342,6 +44001,13 @@ __metadata:
languageName: node
linkType: hard
+"stdin-discarder@npm:^0.2.2":
+ version: 0.2.2
+ resolution: "stdin-discarder@npm:0.2.2"
+ checksum: 10/642ffd05bd5b100819d6b24a613d83c6e3857c6de74eb02fc51506fa61dc1b0034665163831873868157c4538d71e31762bcf319be86cea04c3aba5336470478
+ languageName: node
+ linkType: hard
+
"stop-iteration-iterator@npm:^1.0.0, stop-iteration-iterator@npm:^1.1.0":
version: 1.1.0
resolution: "stop-iteration-iterator@npm:1.1.0"
@@ -41479,6 +44145,13 @@ __metadata:
languageName: node
linkType: hard
+"string-natural-compare@npm:^3.0.1":
+ version: 3.0.1
+ resolution: "string-natural-compare@npm:3.0.1"
+ checksum: 10/bc1fd0ee196466489e121bbe11844094ddcdee5a687dca9dbb18ba2ace73b1f6c96c9b448df2dfed0879b781b6b12e329ca1c1fc0a86d70b00c7823b76109b1e
+ languageName: node
+ linkType: hard
+
"string-template@npm:~0.2.1":
version: 0.2.1
resolution: "string-template@npm:0.2.1"
@@ -41541,6 +44214,16 @@ __metadata:
languageName: node
linkType: hard
+"string-width@npm:^8.1.0":
+ version: 8.1.0
+ resolution: "string-width@npm:8.1.0"
+ dependencies:
+ get-east-asian-width: "npm:^1.3.0"
+ strip-ansi: "npm:^7.1.0"
+ checksum: 10/51ee97c4ffee7b94f8a2ee785fac14f81ec9809b9fcec9a4db44e25c717c263af0cc4387c111aef76195c0718dc43766f3678c07fb542294fb0244f7bfbde883
+ languageName: node
+ linkType: hard
+
"string.prototype.includes@npm:^2.0.1":
version: 2.0.1
resolution: "string.prototype.includes@npm:2.0.1"
@@ -41694,12 +44377,12 @@ __metadata:
languageName: node
linkType: hard
-"strip-ansi@npm:^7.0.1, strip-ansi@npm:^7.1.0":
- version: 7.1.0
- resolution: "strip-ansi@npm:7.1.0"
+"strip-ansi@npm:^7.0.1, strip-ansi@npm:^7.1.0, strip-ansi@npm:^7.1.2":
+ version: 7.1.2
+ resolution: "strip-ansi@npm:7.1.2"
dependencies:
ansi-regex: "npm:^6.0.1"
- checksum: 10/475f53e9c44375d6e72807284024ac5d668ee1d06010740dec0b9744f2ddf47de8d7151f80e5f6190fc8f384e802fdf9504b76a7e9020c9faee7103623338be2
+ checksum: 10/db0e3f9654e519c8a33c50fc9304d07df5649388e7da06d3aabf66d29e5ad65d5e6315d8519d409c15b32fa82c1df7e11ed6f8cd50b0e4404463f0c9d77c8d0b
languageName: node
linkType: hard
@@ -41802,6 +44485,13 @@ __metadata:
languageName: node
linkType: hard
+"strnum@npm:^1.1.1":
+ version: 1.1.2
+ resolution: "strnum@npm:1.1.2"
+ checksum: 10/ccd6297a1fdaf0fc8ea0ea904acdae76878d49a4b0d98a70155df4bc081fd88eac5ec99fb150f3d1d1af065c1898d38420705259ba6c39aa850c671bcd54e35d
+ languageName: node
+ linkType: hard
+
"strtok3@npm:^10.2.0":
version: 10.3.4
resolution: "strtok3@npm:10.3.4"
@@ -42112,12 +44802,12 @@ __metadata:
languageName: node
linkType: hard
-"synckit@npm:^0.11.7":
- version: 0.11.8
- resolution: "synckit@npm:0.11.8"
+"synckit@npm:^0.11.12":
+ version: 0.11.12
+ resolution: "synckit@npm:0.11.12"
dependencies:
- "@pkgr/core": "npm:^0.2.4"
- checksum: 10/9bb2cf11edaf31ba781f1c719dd58087323201bda6392254538aef4dea216aa02a32e25f06643bcfa1c1a2c95e0d84186d82cfb66f9a0ab3a2be4816c696a8a3
+ "@pkgr/core": "npm:^0.2.9"
+ checksum: 10/2f51978bfed81aaf0b093f596709a72c49b17909020f42b43c5549f9c0fe18b1fe29f82e41ef771172d729b32e9ce82900a85d2b87fa14d59f886d4df8d7a329
languageName: node
linkType: hard
@@ -42305,6 +44995,13 @@ __metadata:
languageName: node
linkType: hard
+"text-extensions@npm:^2.0.0":
+ version: 2.4.0
+ resolution: "text-extensions@npm:2.4.0"
+ checksum: 10/9bdbc9959e004ccc86a6ec076d6c5bb6765978263e9d0d5febb640d7675c09919ea912f3fe9d50b68c3c7c43cc865610a7cb24954343abb31f74c205fbae4e45
+ languageName: node
+ linkType: hard
+
"text-hex@npm:1.0.x":
version: 1.0.0
resolution: "text-hex@npm:1.0.0"
@@ -42440,7 +45137,7 @@ __metadata:
languageName: node
linkType: hard
-"through@npm:2, through@npm:^2.3.6, through@npm:^2.3.8":
+"through@npm:2, through@npm:>=2.2.7 <3, through@npm:^2.3.6, through@npm:^2.3.8":
version: 2.3.8
resolution: "through@npm:2.3.8"
checksum: 10/5da78346f70139a7d213b65a0106f3c398d6bc5301f9248b5275f420abc2c4b1e77c2abc72d218dedc28c41efb2e7c312cb76a7730d04f9c2d37d247da3f4198
@@ -42491,7 +45188,14 @@ __metadata:
languageName: node
linkType: hard
-"tinyglobby@npm:^0.2.11, tinyglobby@npm:^0.2.12, tinyglobby@npm:^0.2.13, tinyglobby@npm:^0.2.14, tinyglobby@npm:^0.2.15, tinyglobby@npm:^0.2.9":
+"tinyexec@npm:^1.0.0, tinyexec@npm:^1.0.2":
+ version: 1.0.2
+ resolution: "tinyexec@npm:1.0.2"
+ checksum: 10/cb709ed4240e873d3816e67f851d445f5676e0ae3a52931a60ff571d93d388da09108c8057b62351766133ee05ff3159dd56c3a0fbd39a5933c6639ce8771405
+ languageName: node
+ linkType: hard
+
+"tinyglobby@npm:0.2.15, tinyglobby@npm:^0.2.11, tinyglobby@npm:^0.2.12, tinyglobby@npm:^0.2.13, tinyglobby@npm:^0.2.14, tinyglobby@npm:^0.2.15, tinyglobby@npm:^0.2.9":
version: 0.2.15
resolution: "tinyglobby@npm:0.2.15"
dependencies:
@@ -43227,30 +45931,30 @@ __metadata:
languageName: node
linkType: hard
-"turbo-darwin-64@npm:2.5.0":
- version: 2.5.0
- resolution: "turbo-darwin-64@npm:2.5.0"
+"turbo-darwin-64@npm:2.8.7":
+ version: 2.8.7
+ resolution: "turbo-darwin-64@npm:2.8.7"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
-"turbo-darwin-arm64@npm:2.5.0":
- version: 2.5.0
- resolution: "turbo-darwin-arm64@npm:2.5.0"
+"turbo-darwin-arm64@npm:2.8.7":
+ version: 2.8.7
+ resolution: "turbo-darwin-arm64@npm:2.8.7"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
-"turbo-linux-64@npm:2.5.0":
- version: 2.5.0
- resolution: "turbo-linux-64@npm:2.5.0"
+"turbo-linux-64@npm:2.8.7":
+ version: 2.8.7
+ resolution: "turbo-linux-64@npm:2.8.7"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
-"turbo-linux-arm64@npm:2.5.0":
- version: 2.5.0
- resolution: "turbo-linux-arm64@npm:2.5.0"
+"turbo-linux-arm64@npm:2.8.7":
+ version: 2.8.7
+ resolution: "turbo-linux-arm64@npm:2.8.7"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
@@ -43262,30 +45966,30 @@ __metadata:
languageName: node
linkType: hard
-"turbo-windows-64@npm:2.5.0":
- version: 2.5.0
- resolution: "turbo-windows-64@npm:2.5.0"
+"turbo-windows-64@npm:2.8.7":
+ version: 2.8.7
+ resolution: "turbo-windows-64@npm:2.8.7"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
-"turbo-windows-arm64@npm:2.5.0":
- version: 2.5.0
- resolution: "turbo-windows-arm64@npm:2.5.0"
+"turbo-windows-arm64@npm:2.8.7":
+ version: 2.8.7
+ resolution: "turbo-windows-arm64@npm:2.8.7"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
-"turbo@npm:^2.0.4, turbo@npm:^2.0.5, turbo@npm:^2.5.0":
- version: 2.5.0
- resolution: "turbo@npm:2.5.0"
- dependencies:
- turbo-darwin-64: "npm:2.5.0"
- turbo-darwin-arm64: "npm:2.5.0"
- turbo-linux-64: "npm:2.5.0"
- turbo-linux-arm64: "npm:2.5.0"
- turbo-windows-64: "npm:2.5.0"
- turbo-windows-arm64: "npm:2.5.0"
+"turbo@npm:2.8.7":
+ version: 2.8.7
+ resolution: "turbo@npm:2.8.7"
+ dependencies:
+ turbo-darwin-64: "npm:2.8.7"
+ turbo-darwin-arm64: "npm:2.8.7"
+ turbo-linux-64: "npm:2.8.7"
+ turbo-linux-arm64: "npm:2.8.7"
+ turbo-windows-64: "npm:2.8.7"
+ turbo-windows-arm64: "npm:2.8.7"
dependenciesMeta:
turbo-darwin-64:
optional: true
@@ -43301,7 +46005,7 @@ __metadata:
optional: true
bin:
turbo: bin/turbo
- checksum: 10/09a9a441bee424925444a9d3c071efe6139187257296a2b04a6474b719ce385a118c42677a67db1b77ca34f041a72a3fc152a60efcd96d407fd8d3a708c259a4
+ checksum: 10/cc6858afa4088562e516f5f86a670f582598ddca09a9375ba0e4fb093864fb47110cfa85729a5697a588b4a2652d6fe433b6d89099a2d3f909eef589824747fa
languageName: node
linkType: hard
@@ -43393,7 +46097,7 @@ __metadata:
languageName: node
linkType: hard
-"type-fest@npm:^2.13.0, type-fest@npm:^2.19.0":
+"type-fest@npm:^2.13.0, type-fest@npm:^2.19.0, type-fest@npm:^2.5.1":
version: 2.19.0
resolution: "type-fest@npm:2.19.0"
checksum: 10/7bf9e8fdf34f92c8bb364c0af14ca875fac7e0183f2985498b77be129dc1b3b1ad0a6b3281580f19e48c6105c037fb966ad9934520c69c6434d17fd0af4eed78
@@ -43536,7 +46240,7 @@ __metadata:
languageName: node
linkType: hard
-"typescript5@npm:typescript@5.9.3":
+"typescript5@npm:typescript@5.9.3, typescript@npm:^5.0.2, typescript@npm:^5.0.3, typescript@npm:^5.0.4, typescript@npm:^5.1.3, typescript@npm:^5.1.6, typescript@npm:^5.3.2, typescript@npm:^5.3.3, typescript@npm:^5.4.3, typescript@npm:^5.4.5, typescript@npm:^5.7.2, typescript@npm:^5.7.3, typescript@npm:^5.8.2, typescript@npm:^5.8.3, typescript@npm:^5.9.2":
version: 5.9.3
resolution: "typescript@npm:5.9.3"
bin:
@@ -43596,7 +46300,7 @@ __metadata:
languageName: node
linkType: hard
-"typescript@npm:^5.0.2, typescript@npm:^5.0.3, typescript@npm:^5.0.4, typescript@npm:^5.1.3, typescript@npm:^5.1.6, typescript@npm:^5.3.2, typescript@npm:^5.3.3, typescript@npm:^5.4.3, typescript@npm:^5.4.5, typescript@npm:^5.7.2, typescript@npm:^5.7.3, typescript@npm:^5.8.2, typescript@npm:^5.8.3, typescript@npm:~5.8.3":
+"typescript@npm:~5.8.3":
version: 5.8.3
resolution: "typescript@npm:5.8.3"
bin:
@@ -43656,8 +46360,18 @@ __metadata:
languageName: node
linkType: hard
-? "typescript@patch:typescript@npm%3A^5.0.2#optional!builtin, typescript@patch:typescript@npm%3A^5.0.3#optional!builtin, typescript@patch:typescript@npm%3A^5.0.4#optional!builtin, typescript@patch:typescript@npm%3A^5.1.3#optional!builtin, typescript@patch:typescript@npm%3A^5.1.6#optional!builtin, typescript@patch:typescript@npm%3A^5.3.2#optional!builtin, typescript@patch:typescript@npm%3A^5.3.3#optional!builtin, typescript@patch:typescript@npm%3A^5.4.3#optional!builtin, typescript@patch:typescript@npm%3A^5.4.5#optional!builtin, typescript@patch:typescript@npm%3A^5.7.2#optional!builtin, typescript@patch:typescript@npm%3A^5.7.3#optional!builtin, typescript@patch:typescript@npm%3A^5.8.2#optional!builtin, typescript@patch:typescript@npm%3A^5.8.3#optional!builtin, typescript@patch:typescript@npm%3A~5.8.3#optional!builtin"
+? "typescript@patch:typescript@npm%3A^5.0.2#optional!builtin, typescript@patch:typescript@npm%3A^5.0.3#optional!builtin, typescript@patch:typescript@npm%3A^5.0.4#optional!builtin, typescript@patch:typescript@npm%3A^5.1.3#optional!builtin, typescript@patch:typescript@npm%3A^5.1.6#optional!builtin, typescript@patch:typescript@npm%3A^5.3.2#optional!builtin, typescript@patch:typescript@npm%3A^5.3.3#optional!builtin, typescript@patch:typescript@npm%3A^5.4.3#optional!builtin, typescript@patch:typescript@npm%3A^5.4.5#optional!builtin, typescript@patch:typescript@npm%3A^5.7.2#optional!builtin, typescript@patch:typescript@npm%3A^5.7.3#optional!builtin, typescript@patch:typescript@npm%3A^5.8.2#optional!builtin, typescript@patch:typescript@npm%3A^5.8.3#optional!builtin, typescript@patch:typescript@npm%3A^5.9.2#optional!builtin"
:
+ version: 5.9.3
+ resolution: "typescript@patch:typescript@npm%3A5.9.3#optional!builtin::version=5.9.3&hash=5786d5"
+ bin:
+ tsc: bin/tsc
+ tsserver: bin/tsserver
+ checksum: 10/696e1b017bc2635f4e0c94eb4435357701008e2f272f553d06e35b494b8ddc60aa221145e286c28ace0c89ee32827a28c2040e3a69bdc108b1a5dc8fb40b72e3
+ languageName: node
+ linkType: hard
+
+"typescript@patch:typescript@npm%3A~5.8.3#optional!builtin":
version: 5.8.3
resolution: "typescript@patch:typescript@npm%3A5.8.3#optional!builtin::version=5.8.3&hash=5786d5"
bin:
@@ -43704,12 +46418,12 @@ __metadata:
languageName: node
linkType: hard
-"uglify-js@npm:^3.7.7":
- version: 3.17.4
- resolution: "uglify-js@npm:3.17.4"
+"uglify-js@npm:^3.1.4, uglify-js@npm:^3.7.7":
+ version: 3.19.3
+ resolution: "uglify-js@npm:3.19.3"
bin:
uglifyjs: bin/uglifyjs
- checksum: 10/4c0b800e0ff192079d2c3ce8414fd3b656a570028c7c79af5c29c53d5c532b68bbcae4ad47307f89c2ee124d11826fff7a136b59d5c5bb18422bcdf5568afe1e
+ checksum: 10/6b9639c1985d24580b01bb0ab68e78de310d38eeba7db45bec7850ab4093d8ee464d80ccfaceda9c68d1c366efbee28573b52f95e69ac792354c145acd380b11
languageName: node
linkType: hard
@@ -43807,13 +46521,6 @@ __metadata:
languageName: node
linkType: hard
-"undici-types@npm:~7.16.0":
- version: 7.16.0
- resolution: "undici-types@npm:7.16.0"
- checksum: 10/db43439f69c2d94cc29f75cbfe9de86df87061d6b0c577ebe9bb3255f49b22c50162a7d7eb413b0458b6510b8ca299ac7cff38c3a29fbd31af9f504bcf7fbc0d
- languageName: node
- linkType: hard
-
"undici@npm:5.29.0, undici@npm:^5.28.4":
version: 5.29.0
resolution: "undici@npm:5.29.0"
@@ -43823,6 +46530,13 @@ __metadata:
languageName: node
linkType: hard
+"undici@npm:6.23.0, undici@npm:^6.18.2, undici@npm:^6.21.2":
+ version: 6.23.0
+ resolution: "undici@npm:6.23.0"
+ checksum: 10/56950995e7b628e62c996430445d17995ca9b70f6f2afe760a63da54205660d968bd08f0741b6f4fb008f40aa35c69cce979cd96ced399585d8c897a76a4f1d1
+ languageName: node
+ linkType: hard
+
"undici@npm:^6.18.2 || ^7.0.0, undici@npm:^7.18.2":
version: 7.20.0
resolution: "undici@npm:7.20.0"
@@ -43830,13 +46544,6 @@ __metadata:
languageName: node
linkType: hard
-"undici@npm:^6.18.2, undici@npm:^6.21.2":
- version: 6.23.0
- resolution: "undici@npm:6.23.0"
- checksum: 10/56950995e7b628e62c996430445d17995ca9b70f6f2afe760a63da54205660d968bd08f0741b6f4fb008f40aa35c69cce979cd96ced399585d8c897a76a4f1d1
- languageName: node
- linkType: hard
-
"unenv@npm:2.0.0-rc.24":
version: 2.0.0-rc.24
resolution: "unenv@npm:2.0.0-rc.24"
@@ -43863,10 +46570,10 @@ __metadata:
languageName: node
linkType: hard
-"unicode-match-property-value-ecmascript@npm:^2.1.0":
- version: 2.1.0
- resolution: "unicode-match-property-value-ecmascript@npm:2.1.0"
- checksum: 10/06661bc8aba2a60c7733a7044f3e13085808939ad17924ffd4f5222a650f88009eb7c09481dc9c15cfc593d4ad99bd1cde8d54042733b335672591a81c52601c
+"unicode-match-property-value-ecmascript@npm:^2.2.1":
+ version: 2.2.1
+ resolution: "unicode-match-property-value-ecmascript@npm:2.2.1"
+ checksum: 10/a42bebebab4c82ea6d8363e487b1fb862f82d1b54af1b67eb3fef43672939b685780f092c4f235266b90225863afa1258d57e7be3578d8986a08d8fc309aabe1
languageName: node
linkType: hard
@@ -43877,10 +46584,10 @@ __metadata:
languageName: node
linkType: hard
-"unicorn-magic@npm:^0.1.0":
- version: 0.1.0
- resolution: "unicorn-magic@npm:0.1.0"
- checksum: 10/9b4d0e9809807823dc91d0920a4a4c0cff2de3ebc54ee87ac1ee9bc75eafd609b09d1f14495e0173aef26e01118706196b6ab06a75fe0841028b3983a8af313f
+"unicorn-magic@npm:^0.3.0":
+ version: 0.3.0
+ resolution: "unicorn-magic@npm:0.3.0"
+ checksum: 10/bdd7d7c522f9456f32a0b77af23f8854f9a7db846088c3868ec213f9550683ab6a2bdf3803577eacbafddb4e06900974385841ccb75338d17346ccef45f9cb01
languageName: node
linkType: hard
@@ -44043,6 +46750,13 @@ __metadata:
languageName: node
linkType: hard
+"universal-user-agent@npm:^7.0.0, universal-user-agent@npm:^7.0.2":
+ version: 7.0.3
+ resolution: "universal-user-agent@npm:7.0.3"
+ checksum: 10/c497e85f8b11eb8fa4dce584d7a39cc98710164959f494cafc3c269b51abb20fff269951838efd7424d15f6b3d001507f3cb8b52bb5676fdb642019dfd17e63e
+ languageName: node
+ linkType: hard
+
"universalify@npm:^0.1.0":
version: 0.1.2
resolution: "universalify@npm:0.1.2"
@@ -44231,6 +46945,13 @@ __metadata:
languageName: node
linkType: hard
+"url-join@npm:5.0.0":
+ version: 5.0.0
+ resolution: "url-join@npm:5.0.0"
+ checksum: 10/5921384a8ad4395b49ce4b50aa26efbc429cebe0bc8b3660ad693dd12fd859747b5369be0443e60e53a7850b2bc9d7d0687bcb94386662b40e743596bbf38101
+ languageName: node
+ linkType: hard
+
"url-parse@npm:^1.5.3":
version: 1.5.10
resolution: "url-parse@npm:1.5.10"
@@ -45822,6 +48543,13 @@ __metadata:
languageName: node
linkType: hard
+"wildcard-match@npm:5.1.4":
+ version: 5.1.4
+ resolution: "wildcard-match@npm:5.1.4"
+ checksum: 10/4a6821e91def808a38aa7c7c2e774c5b6dc8c6eb37743f18fae182802af52f19f19375de1bc1d465ff1e6b188489eab2716bf3eba1789b25b3f495f55e10fc57
+ languageName: node
+ linkType: hard
+
"wildcard@npm:^2.0.1":
version: 2.0.1
resolution: "wildcard@npm:2.0.1"
@@ -45829,6 +48557,15 @@ __metadata:
languageName: node
linkType: hard
+"windows-release@npm:^6.1.0":
+ version: 6.1.0
+ resolution: "windows-release@npm:6.1.0"
+ dependencies:
+ execa: "npm:^8.0.1"
+ checksum: 10/2af39c94d5e4e250c3239e70177f3a97291c505e364b85a7ae63ca9d06c91496e8bd3a75c55e03184d9c27e58c0a0fa21a4a8457ac72cc560d8796a75f12d0a3
+ languageName: node
+ linkType: hard
+
"winreg@npm:0.0.12":
version: 0.0.12
resolution: "winreg@npm:0.0.12"
@@ -45880,6 +48617,13 @@ __metadata:
languageName: node
linkType: hard
+"wordwrap@npm:^1.0.0":
+ version: 1.0.0
+ resolution: "wordwrap@npm:1.0.0"
+ checksum: 10/497d40beb2bdb08e6d38754faa17ce20b0bf1306327f80cb777927edb23f461ee1f6bc659b3c3c93f26b08e1cf4b46acc5bae8fda1f0be3b5ab9a1a0211034cd
+ languageName: node
+ linkType: hard
+
"workerd@npm:1.20260205.0":
version: 1.20260205.0
resolution: "workerd@npm:1.20260205.0"
@@ -46054,6 +48798,15 @@ __metadata:
languageName: node
linkType: hard
+"wsl-utils@npm:^0.1.0":
+ version: 0.1.0
+ resolution: "wsl-utils@npm:0.1.0"
+ dependencies:
+ is-wsl: "npm:^3.1.0"
+ checksum: 10/de4c92187e04c3c27b4478f410a02e81c351dc85efa3447bf1666f34fc80baacd890a6698ec91995631714086992036013286aea3d77e6974020d40a08e00aec
+ languageName: node
+ linkType: hard
+
"xcode@npm:^3.0.1":
version: 3.0.1
resolution: "xcode@npm:3.0.1"
@@ -46230,12 +48983,12 @@ __metadata:
languageName: node
linkType: hard
-"yaml@npm:^2.1.1, yaml@npm:^2.1.3, yaml@npm:^2.3.1, yaml@npm:^2.3.4, yaml@npm:^2.8.0":
- version: 2.8.0
- resolution: "yaml@npm:2.8.0"
+"yaml@npm:^2.1.1, yaml@npm:^2.1.3, yaml@npm:^2.2.1, yaml@npm:^2.3.1, yaml@npm:^2.3.4, yaml@npm:^2.6.1, yaml@npm:^2.8.0":
+ version: 2.8.2
+ resolution: "yaml@npm:2.8.2"
bin:
yaml: bin.mjs
- checksum: 10/7d4bd9c10d0e467601f496193f2ac254140f8e36f96f5ff7f852b9ce37974168eb7354f4c36dc8837dde527a2043d004b6aff48818ec24a69ab2dd3c6b6c381c
+ checksum: 10/4eab0074da6bc5a5bffd25b9b359cf7061b771b95d1b3b571852098380db3b1b8f96e0f1f354b56cc7216aa97cea25163377ccbc33a2e9ce00316fe8d02f4539
languageName: node
linkType: hard
@@ -46321,7 +49074,7 @@ __metadata:
languageName: node
linkType: hard
-"yargs@npm:^15.3.1":
+"yargs@npm:^15.1.0, yargs@npm:^15.3.1":
version: 15.4.1
resolution: "yargs@npm:15.4.1"
dependencies:
@@ -46412,6 +49165,13 @@ __metadata:
languageName: node
linkType: hard
+"yoctocolors@npm:^2.1.1":
+ version: 2.1.2
+ resolution: "yoctocolors@npm:2.1.2"
+ checksum: 10/6ee42d665a4cc161c7de3f015b2a65d6c65d2808bfe3b99e228bd2b1b784ef1e54d1907415c025fc12b400f26f372bfc1b71966c6c738d998325ca422eb39363
+ languageName: node
+ linkType: hard
+
"youch-core@npm:^0.3.3":
version: 0.3.3
resolution: "youch-core@npm:0.3.3"
@@ -46462,6 +49222,15 @@ __metadata:
languageName: node
linkType: hard
+"zod-validation-error@npm:^3.5.0 || ^4.0.0":
+ version: 4.0.2
+ resolution: "zod-validation-error@npm:4.0.2"
+ peerDependencies:
+ zod: ^3.25.0 || ^4.0.0
+ checksum: 10/5e35ca8ebb4602dcb526e122d7e9fca695c4a479bd97535f3400a732d49160f24f7213a9ed64986fc9dc3a2e8a6c4e1241ec0c4d8a4e3e69ea91a0328ded2192
+ languageName: node
+ linkType: hard
+
"zod@npm:3.22.4":
version: 3.22.4
resolution: "zod@npm:3.22.4"
@@ -46476,6 +49245,13 @@ __metadata:
languageName: node
linkType: hard
+"zod@npm:^3.25.0 || ^4.0.0":
+ version: 4.3.6
+ resolution: "zod@npm:4.3.6"
+ checksum: 10/25fc0f62e01b557b4644bf0b393bbaf47542ab30877c37837ea8caf314a8713d220c7d7fe51f68ffa72f0e1018ddfa34d96f1973d23033f5a2a5a9b6b9d9da01
+ languageName: node
+ linkType: hard
+
"zone.js@npm:^0.15.0":
version: 0.15.0
resolution: "zone.js@npm:0.15.0"