diff --git a/CLAUDE.md b/CLAUDE.md index 347bf3e3..7c93696b 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -4,10 +4,10 @@ This document serves as a comprehensive guide for working with the Pimlico docum ## Repository Overview -The Pimlico documentation is built using **Vocs v1.0.5**, a React-based documentation framework. The site is deployed on Vercel and uses MDX format for content, allowing React components within markdown files. +The Pimlico documentation is built using **Vocs v1.4.x**, a React-based documentation framework. The site is deployed on Vercel and uses MDX format for content, allowing React components within markdown files. ### Technology Stack -- **Framework**: Vocs (v1.0.5) +- **Framework**: Vocs (v1.4.x) - **Package Manager**: pnpm (v9.6.0) - **Language**: TypeScript/MDX - **Styling**: Tailwind CSS diff --git a/docs/pages/guides/conceptual/account-abstraction.mdx b/docs/pages/guides/conceptual/account-abstraction.mdx index b4a66515..649a4b2d 100644 --- a/docs/pages/guides/conceptual/account-abstraction.mdx +++ b/docs/pages/guides/conceptual/account-abstraction.mdx @@ -1,8 +1,8 @@ --- -title: About Account Abstraction +title: Account Abstraction (ERC-4337) --- -# Account Abstraction +# Account Abstraction (ERC-4337) Account abstraction is a feature that allows users to customize their Ethereum accounts with smart contract logic. It simplifies the account system by reducing Ethereum's two types of accounts (Externally Owned Accounts and Contract Accounts) to one type - Contract Accounts. The resulting contract accounts can initiate transactions, pay transaction fees, and have more flexibility and security than regular accounts. diff --git a/docs/pages/guides/conceptual/erc4337.mdx b/docs/pages/guides/conceptual/erc4337.mdx deleted file mode 100644 index e83444a5..00000000 --- a/docs/pages/guides/conceptual/erc4337.mdx +++ /dev/null @@ -1,4 +0,0 @@ -# ERC-4337 - -ERC-4337 is the leading proposal to achieve account abstraction on EVM chains. The standard works by creating a new type of transaction, called user operation, that special relayers called bundlers can submit through a so-called EntryPoint contract that is able to prompt smart accounts compatible with the ERC-4337 interface to check whether the smart account considers the user operation to be valid, and then execute said user operation. - diff --git a/docs/pages/guides/conceptual/erc7579.mdx b/docs/pages/guides/conceptual/erc7579.mdx deleted file mode 100644 index 7fae26db..00000000 --- a/docs/pages/guides/conceptual/erc7579.mdx +++ /dev/null @@ -1,3 +0,0 @@ -# ERC-7579 - -ERC-7579 is a proposal that aims to standardize modular smart accounts in a minimal way to allow for continued innovation while making module interoperability between different account implementations far more achievable. \ No newline at end of file diff --git a/docs/pages/guides/conceptual/index.mdx b/docs/pages/guides/conceptual/index.mdx deleted file mode 100644 index d1c43ab6..00000000 --- a/docs/pages/guides/conceptual/index.mdx +++ /dev/null @@ -1,5 +0,0 @@ -# Conceptual Guides - -High-level explanations of core Account Abstraction and Pimlico concepts. Most useful when you want to understand how Pimlico works under the hood. - - diff --git a/docs/pages/guides/getting-started.mdx b/docs/pages/guides/getting-started.mdx index 478a3f90..ebf87770 100644 --- a/docs/pages/guides/getting-started.mdx +++ b/docs/pages/guides/getting-started.mdx @@ -81,10 +81,8 @@ To use Pimlico's services, you'll need an API key. [Learn how to create one](/gu If you're new to account abstraction, we recommend starting with our conceptual guides: -- [About Account Abstraction](/guides/conceptual/account-abstraction) -- [ERC-4337 Explained](/guides/conceptual/erc4337) +- [Account Abstraction (ERC-4337)](/guides/conceptual/account-abstraction) - [EIP-7702 Explained](/guides/eip7702) -- [ERC-7579 Explained](/guides/conceptual/erc7579) ## Choosing a Smart Account @@ -104,7 +102,6 @@ Or jump directly to implementation guides for specific accounts: Once you're familiar with the basics, explore these advanced topics: -- [Dapp Gas Sponsorship](/guides/how-to/dapp-gas-sponsorship) - [Parallel Transactions](/guides/how-to/parallel-transactions) - [Conditional Sponsoring](/guides/how-to/paymasters/conditional-sponsoring) diff --git a/docs/pages/guides/how-to/dapp-gas-sponsorship.mdx b/docs/pages/guides/how-to/dapp-gas-sponsorship.mdx deleted file mode 100644 index 6f62e11f..00000000 --- a/docs/pages/guides/how-to/dapp-gas-sponsorship.mdx +++ /dev/null @@ -1,17 +0,0 @@ -# Update your existing app to sponsor gas fees for smart account users - -If you are looking to sponsor gas fees for your users without embedding a wallet in your app, you can use this guide to update your existing app to sponsor gas fees for smart accounts. - -## Steps - -::::steps - -### Spin up an ERC-7677 proxy server - -Follow the deployment guide on the [ERC-7677 Proxy Server](https://github.com/pimlicolabs/erc7677-proxy) repository readme to deploy an ERC-7677 proxy server. - -### Update your app to sponsor gas fees - -Follow the [@permissionless/wagmi tutorial](/references/permissionless/wagmi/tutorial/tutorial-1) to update your app to support ERC-5792 requests and enable the paymaster service capability feature, using the public URL you created for the ERC-7677 proxy in the previous step. - -:::: \ No newline at end of file diff --git a/docs/pages/guides/how-to/signers/social-logins.mdx b/docs/pages/guides/how-to/signers/social-logins.mdx new file mode 100644 index 00000000..23bf6060 --- /dev/null +++ b/docs/pages/guides/how-to/signers/social-logins.mdx @@ -0,0 +1,20 @@ +# Social login signers + +permissionless.js works with a wide range of embedded-wallet and social-login providers, so you can let users sign in with Google, email, phone, passkeys, and more while still benefiting from the power of smart accounts (gas sponsorship, batched transactions, session keys, and programmable permissions). + +Below is the documentation for some of the most known providers: + +- [Dynamic](/guides/how-to/signers/dynamic) — embedded wallets with social, email, and wallet connectors. +- [Privy](/guides/how-to/signers/privy) — embedded wallets with social and email login. +- [Magic](/guides/how-to/signers/magic) — email and social login with a hosted wallet UI. +- [Web3Auth](/guides/how-to/signers/web3auth) — MPC-based social login with native account abstraction support. +- [Openfort](/guides/how-to/signers/openfort) — embedded wallets tailored for consumer and gaming apps. +- [Para](/guides/how-to/signers/para) — portable MPC embedded wallets accessible via email or social login. +- [Particle Network](/guides/how-to/signers/particle-network) — MPC-TSS wallet-as-a-service with Web2 login methods. +- [Lit Protocol](/guides/how-to/signers/lit-protocol) — OTP sign-in via email, SMS, or WhatsApp backed by a decentralized key management network. + +Looking for passkeys? Check out [Passkey (WebAuthn) signer](/guides/how-to/signers/passkey) and [Passkey (WebAuthn) server](/guides/how-to/signers/passkey-server). + +## Don't see your provider? + +Using a custom signer, or a provider we don't have documentation for yet? Reach out to [support@pimlico.io](mailto:support@pimlico.io) and we'll help you integrate it. diff --git a/docs/pages/guides/tutorials/index.mdx b/docs/pages/guides/tutorials/index.mdx index e98e9ecf..bfff8980 100644 --- a/docs/pages/guides/tutorials/index.mdx +++ b/docs/pages/guides/tutorials/index.mdx @@ -2,6 +2,8 @@ Learning-oriented lessons that take you through a series of steps to complete a project. Most useful when you want to get started with Pimlico. -[Tutorial 1](/references/permissionless/tutorial/tutorial-1) takes you through the journey of leveraging permissionless.js's high-level APIs to easily create and bundle a user operation. +[Send your first gasless transaction](/guides/tutorials/tutorial-1) takes you through the journey of leveraging permissionless.js's high-level APIs to easily create and bundle a gasless user operation sponsored by Pimlico's verifying paymaster. -[Tutorial 2](/references/permissionless/tutorial/tutorial-2) takes you through the journey of sponsoring your first user operation with USDC with an ERC-20 paymaster. +[Batch multiple transactions from a smart account](/guides/tutorials/send-transaction) walks you through deploying a smart account and sending a batched user operation (multiple calls in one tx) paid for by the account's own ETH. + +[Submit a user operation with an ERC-20 Paymaster](/guides/tutorials/tutorial-2) takes you through the journey of sponsoring your first user operation with USDC with an ERC-20 paymaster. diff --git a/docs/pages/guides/tutorials/send-transaction.mdx b/docs/pages/guides/tutorials/send-transaction.mdx new file mode 100644 index 00000000..deec5999 --- /dev/null +++ b/docs/pages/guides/tutorials/send-transaction.mdx @@ -0,0 +1,144 @@ +# Tutorial — Batch multiple transactions from a smart account + +In this tutorial, you will deploy an ERC-4337 smart account and submit your first user operation — one that batches **multiple calls** into a single on-chain transaction. + +Batching is one of the core superpowers of smart accounts. Instead of asking the user to sign two transactions (e.g. an ERC-20 `approve` followed by a `swap`), you can bundle them into a single user operation that executes atomically: either everything succeeds, or nothing does. + +You will set up the necessary permissionless.js clients, build a batched user operation, fund the smart account with Sepolia ETH so it can pay its own gas, and then submit it on-chain with Pimlico's bundler. + +:::tip[Want gasless transactions instead?] +If you'd rather have a paymaster sponsor the gas for your user, jump to [Tutorial 1 — Send your first gasless transaction](/guides/tutorials/tutorial-1). +::: + +## Steps + +::::steps + +### Get a Pimlico API key + +[Create your API key](/guides/create-api-key) + +### Clone the Pimlico tutorial template repository + +We have created a [Pimlico tutorial template repository](https://github.com/pimlicolabs/tutorial-template) that you can use to get started. It comes set up with Typescript, viem, and permissionless.js. + +```bash +git clone https://github.com/pimlicolabs/tutorial-template.git pimlico-tutorial-send-transaction +cd pimlico-tutorial-send-transaction +``` + +Now, let's install the dependencies: + +```bash +npm install +``` + +The main file we will be working with is `index.ts`. Let's run it to make sure everything is working: + +```bash +npm start +``` + +If everything has been set up correctly, you should see `Hello world!` printed to the console. + +### Create the public client and generate a private key + +The public client will be responsible for querying the blockchain. We will also use a Pimlico client to fetch gas prices from the bundler. + +Make sure to replace `YOUR_PIMLICO_API_KEY` in the code below with your actual Pimlico API key. + +Let's open up `index.ts`, and add the following to the bottom: + +```ts +// [!include ~/snippets/send-transaction.ts:clients] +``` + +### Create the `SmartAccount` instance + +For the purposes of this guide, we will be using [Safe](https://safe.global) accounts. This account is an ERC-4337 wallet controlled by a single EOA signer. + +:::tip[Tip] +Want to learn more about using Safe accounts? Take a look at our [dedicated Safe guide](/references/permissionless/how-to/accounts/use-safe-account) +::: + +To create the Safe account, we will use the `toSafeSmartAccount` utility function from permissionless.js. We need to specify the Safe version we are using as well as the global ERC-4337 EntryPoint address. For the signer, we will be using the previously generated private key. + +Add the following to the bottom of `index.ts`: + +```ts +// [!include ~/snippets/send-transaction.ts:smartAccount] +``` + +Let's run this code with `npm start`. You should see the smart account address printed to the console. + +```txt +Smart account address: https://sepolia.etherscan.io/address/0x374b42bCFAcf85FDCaAB84774EA15ff36D42cdA7 +``` + +:::info +If you visit the address on Etherscan, you might notice that no contract is actually deployed to this address yet. This is because smart accounts are counterfactual, meaning that they are only deployed on-chain the first time you send a transaction through the account. +::: + +### Fund the smart account with Sepolia ETH + +Since we are not using a paymaster in this tutorial, the smart account needs to pay its own gas. Send a small amount of Sepolia ETH (0.01 ETH is plenty) to the smart account address printed above. + +You can get Sepolia ETH from a public faucet, for example the [PoW Sepolia Faucet](https://sepolia-faucet.pk910.de/). + +:::note +If you'd prefer to skip funding and have the gas sponsored instead, see [Tutorial 1](/guides/tutorials/tutorial-1), which uses Pimlico's verifying paymaster. +::: + +### Create the bundler and smart account clients + +Now that we have a `SmartAccount` instance, we need to create a `SmartAccountClient` instance to be able to transact from it. `SmartAccountClient` is an almost drop-in replacement for a viem [`WalletClient`](https://viem.sh/docs/clients/wallet), but it also includes some additional functionality for interacting with smart accounts. + +We specify the `gasPrice` middleware function to fetch the gas price from the bundler that we will use to submit the user operation in the next step. We do **not** configure a paymaster — the smart account will pay for its own gas using the ETH you just sent it. + +Add the following to the bottom of `index.ts`: + +```typescript +// [!include ~/snippets/send-transaction.ts:smartAccountClient] +``` + +### Batch multiple calls in one user operation + +Finally, let's submit a batched user operation from the smart account. We will send **two calls** to `0xd8da6bf26964af9d7eed9e03e53415d37aa96045` (vitalik.eth) with different `callData`, packed into a single user operation. + +Instead of passing a single `to`/`data` pair, we pass an array of `calls` — the smart account will execute them atomically. + +Underneath the hood, the `SmartAccountClient` will build a user operation, sign it with the smart account's private key, and then submit it to the bundler. The bundler will then query for receipts until it sees the user operation included on-chain. + +Add the following to the bottom of `index.ts`: + +```typescript +// [!include ~/snippets/send-transaction.ts:submit] +``` + +:::tip[Real-world batching] +In production, batching is how you deliver "one-click" UX for multi-step flows — for example, combining an ERC-20 `approve` and a DEX `swap` into a single signature, or minting an NFT and listing it for sale in one go. +::: + +Let's run this code again with `npm start`. You should see the transaction hash bundling the user operation on-chain printed to the console. + +```txt +User operation included: https://sepolia.etherscan.io/tx/0x7a2b61b4b7b6e9e66c459e3c9c24c7a292fc6c740533ce35dbf58710960cc0e5 +``` + +You can now view the transaction on the Sepolia testnet explorer. By sending this user operation, you have: +- Deployed the counterfactual smart account contract +- Had this newly-deployed smart account verify the private key's signature +- Paid for the user operation's gas fees from the smart account's own ETH balance +- Executed **two calls atomically** in a single on-chain transaction + +All in a couple lines of code. + +Congratulations, you are now a pioneer of Account Abstraction! 🎉 + +Please [get in touch](https://t.me/pimlicoHQ) if you have any questions or if you'd like to share what you're building! + +:::: + +### Combined code + +If you want to see the complete code that combines all of the previous steps, we uploaded it to a [separate repository](https://github.com/pimlicolabs/tutorials). If you're looking to run it, remember to replace the API key with your own! diff --git a/docs/pages/index.mdx b/docs/pages/index.mdx index 89cdfd52..405d235e 100644 --- a/docs/pages/index.mdx +++ b/docs/pages/index.mdx @@ -16,27 +16,30 @@ import { HomePage } from 'vocs/components'
+
+ ## [Sponsor gas →](/guides/tutorials/tutorial-1) + + Use the verifying paymaster to submit a gasless transaction. +
- ## [permissionless.js →](/references/permissionless) + ## [Batch multiple transactions →](/guides/tutorials/send-transaction) - Our TypeScript library built on viem for interacting with ERC-4337 bundlers, paymasters, and user operations. + Combine actions like `approve` + `swap` into a single user operation.
- ## [Bundler →](/references/bundler) - Powering smart accounts by relaying ERC-4337 user operations for fast and reliable on-chain inclusion. + ## [Pay gas in any token →](/guides/tutorials/tutorial-2) + + Let users pay gas in any token via our ERC-20 paymaster.
- ## [Paymasters →](/guides/tutorials/tutorial-1) - Sponsoring the gas fees for user operations on 100+ chains with a simple API endpoint. -
- {/*
- ## [Batua →](https://batua.sh/) - Fully customizable smart account shadcn/ui component secured with passkeys. + ## [Social logins →](/guides/how-to/signers/social-logins) + + Onboard users with passkeys, Privy, Dynamic, Magic, Web3Auth, and more.
-
- ## [FlashFund →](/references/flash-fund) - Access instant ETH across any chain through developer-funded credit or user-controlled resource locks. -
*/} +
+ +
+ Looking for product references? [permissionless.js](/references/permissionless), [Bundler](/references/bundler), [Paymasters](/references/paymaster).
diff --git a/docs/snippets/send-transaction.ts b/docs/snippets/send-transaction.ts new file mode 100644 index 00000000..ddf9b5a0 --- /dev/null +++ b/docs/snippets/send-transaction.ts @@ -0,0 +1,84 @@ +import "dotenv/config" +import { writeFileSync } from "fs" +import { toSafeSmartAccount } from "permissionless/accounts" +import { Hex, createPublicClient, http } from "viem" +import { generatePrivateKey, privateKeyToAccount } from "viem/accounts" +import { sepolia } from "viem/chains" +import { createPimlicoClient } from "permissionless/clients/pimlico" +import { entryPoint07Address } from "viem/account-abstraction" +import { createSmartAccountClient } from "permissionless" + +// [!region clients] +const apiKey = process.env.PIMLICO_API_KEY +if (!apiKey) throw new Error("Missing PIMLICO_API_KEY") + +const privateKey = + (process.env.PRIVATE_KEY as Hex) ?? + (() => { + const pk = generatePrivateKey() + writeFileSync(".env", `PRIVATE_KEY=${pk}`) + return pk + })() + +export const publicClient = createPublicClient({ + chain: sepolia, + transport: http("https://sepolia.rpc.thirdweb.com"), +}) + +const pimlicoUrl = `https://api.pimlico.io/v2/sepolia/rpc?apikey=${apiKey}` + +const pimlicoClient = createPimlicoClient({ + transport: http(pimlicoUrl), + entryPoint: { + address: entryPoint07Address, + version: "0.7", + }, +}) +// [!endregion clients] + +// [!region smartAccount] +const account = await toSafeSmartAccount({ + client: publicClient, + owners: [privateKeyToAccount(privateKey)], + entryPoint: { + address: entryPoint07Address, + version: "0.7", + }, // global entrypoint + version: "1.4.1", +}) + +// Send some Sepolia ETH to this address so the smart account can pay its own gas. +console.log(`Smart account address: https://sepolia.etherscan.io/address/${account.address}`) +// [!endregion smartAccount] + +// [!region smartAccountClient] +const smartAccountClient = createSmartAccountClient({ + account, + chain: sepolia, + bundlerTransport: http(pimlicoUrl), + userOperation: { + estimateFeesPerGas: async () => { + return (await pimlicoClient.getUserOperationGasPrice()).fast + }, + }, +}) +// [!endregion smartAccountClient] + +// [!region submit] +const txHash = await smartAccountClient.sendTransaction({ + calls: [ + { + to: "0xd8da6bf26964af9d7eed9e03e53415d37aa96045", + value: 0n, + data: "0x1234", + }, + { + to: "0xd8da6bf26964af9d7eed9e03e53415d37aa96045", + value: 0n, + data: "0x5678", + }, + ], +}) + +console.log(`User operation included: https://sepolia.etherscan.io/tx/${txHash}`) +// [!endregion submit] diff --git a/docs/styles.css b/docs/styles.css index 7beb9aba..87b8c9b1 100644 --- a/docs/styles.css +++ b/docs/styles.css @@ -1,11 +1,12 @@ @import "tailwindcss"; /* - * Vocs still sizes the desktop right gutter as 100vh while also offsetting it by - * the fixed banner height, which pushes the bottom of the outline off-screen. + * Vocs still sizes the desktop gutters as 100vh while also offsetting them by + * the fixed banner height, which pushes the bottom of the sidebar/outline off-screen. * Limit this override to desktop because the gutter layout changes below 1081px. */ @media screen and (min-width: 1081px) { + .vocs_DocsLayout_gutterLeft, .vocs_DocsLayout_gutterRight { bottom: 0; height: auto !important; diff --git a/package.json b/package.json index 97c57c04..ea115f82 100644 --- a/package.json +++ b/package.json @@ -35,19 +35,19 @@ "@web3auth/base": "^7.3.2", "@web3auth/modal": "^7.3.2", "caniuse-lite": "^1.0.30001655", - "lucide-react": "^0.309.0", + "lucide-react": "^1.8.0", "magic-sdk": "^22.1.1", "permissionless": "0.2.50", - "react": "latest", - "react-dom": "latest", + "react": "^19.0.0", + "react-dom": "^19.0.0", "viem": "^2.32.1", "vitest": "^2.0.5", - "vocs": "1.0.14-main.20250716T102132", + "vocs": "^1.4.1", "wagmi": "^2.5.5" }, "devDependencies": { "@biomejs/biome": "^2.1.1", - "@types/react": "^18.2.47", + "@types/react": "^19.0.0", "dotenv": "^16.4.5", "tailwindcss": "^4.0.12", "tsx": "^4.7.1" diff --git a/patches/vocs@1.0.13.patch b/patches/vocs@1.0.13.patch deleted file mode 100644 index 2b5b454a..00000000 --- a/patches/vocs@1.0.13.patch +++ /dev/null @@ -1,79 +0,0 @@ -diff --git a/_lib/vite/plugins/llms.js b/_lib/vite/plugins/llms.js -index ce64c723e0165145405c8a382acc57ff553c51a6..a4ca3387880a2273a58d96fcb979cfef0a1c2a96 100644 ---- a/_lib/vite/plugins/llms.js -+++ b/_lib/vite/plugins/llms.js -@@ -13,6 +13,7 @@ import { unified } from 'unified'; - import { visit } from 'unist-util-visit'; - import { resolveVocsConfig } from '../utils/resolveVocsConfig.js'; - import { getRemarkPlugins } from './mdx.js'; -+import { resolveVocsModules } from '../utils/search.js'; - const remarkPlugins = getRemarkPlugins(); - export async function llms() { - let viteConfig; -@@ -36,6 +37,9 @@ export async function llms() { - const llmsTxtContent = [...content, '## Docs', '']; - const llmsCtxTxtContent = content; - for (const file of files) { -+ // Skip files that contain v0_1 in their path -+ if (file.includes('v0_1')) continue; -+ - let path = file.replace(pagesPath, '').replace(/\.[^.]*$/, ''); - if (path.endsWith('index')) - path = path.replace('index', '').replace(/\/$/, ''); -@@ -45,7 +49,7 @@ export async function llms() { - const parser = unified().use(remarkParse).use(remarkMdx).use(remarkStringify); - for (const plugin of remarkPlugins) - parser.use(plugin); -- const ast = parser.parse(contents); -+ const ast = parser.parse(await resolveVocsModules(file, contents)); - // process llms.txt content - visit(ast, { type: 'heading', depth: 1 }, (n, i) => { - const node = n.children[0]; -diff --git a/_lib/vite/utils/search.js b/_lib/vite/utils/search.js -index b2c1d6548f7b263ceabf0a8d39c9973e14a01823..56d49360e530b75997edc2ba3a07675b5f37dc24 100644 ---- a/_lib/vite/utils/search.js -+++ b/_lib/vite/utils/search.js -@@ -1,5 +1,5 @@ - import { readFileSync } from 'node:fs'; --import { join, relative, resolve } from 'node:path'; -+import { join, relative, resolve, extname } from 'node:path'; - import { pathToFileURL } from 'node:url'; - import { compile, run } from '@mdx-js/mdx'; - import debug_ from 'debug'; -@@ -14,6 +14,7 @@ import { getRehypePlugins, getRemarkPlugins } from '../plugins/mdx.js'; - import * as cache_ from './cache.js'; - import { hash } from './hash.js'; - import { slash } from './slash.js'; -+import { resolveVocsConfig } from '../utils/resolveVocsConfig.js'; - const limit = pLimit(30); - export const debug = debug_('vocs:search'); - export async function buildIndex({ baseDir, cacheDir, }) { -@@ -70,6 +71,28 @@ export function saveIndex(outDir, index, { cacheDir } = {}) { - return hash_; - } - const remarkPlugins = getRemarkPlugins(); -+ -+export async function resolveVocsModules(filePath, file) { -+ const { config } = await resolveVocsConfig() -+ -+ // Transform imports in the file content similar to resolveVocsModules plugin -+ let transformedFile = file -+ if (filePath.startsWith(resolve(config.rootDir))) { -+ if ([".js", ".jsx", ".ts", ".tsx", ".md", ".mdx"].includes(extname(filePath))) { -+ transformedFile = file.replace( -+ /import (.*) from ("|')vocs("|')/g, -+ `import $1 from $2${resolve(import.meta.dirname, "../..")}.js$3`, -+ ) -+ transformedFile = transformedFile.replace( -+ /import (.*) from ("|')vocs\/components("|')/g, -+ `import $1 from $2${resolve(import.meta.dirname, "../../components")}.js$3`, -+ ) -+ } -+ } -+ -+ return transformedFile -+} -+ - export async function processMdx(filePath, file, options) { - const { rehypePlugins } = options; - try { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 4b4c026b..487b6869 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -31,10 +31,10 @@ importers: version: 3.1.2(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)) '@lit-protocol/lit-node-client': specifier: ^3.0.0 - version: 3.1.2(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10) + version: 3.1.2(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10) '@lit-protocol/pkp-ethers': specifier: ^3.0.0 - version: 3.1.2(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10) + version: 3.1.2(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10) '@lit-protocol/types': specifier: ^3.0.0 version: 3.1.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -52,22 +52,22 @@ importers: version: 1.3.2(@particle-network/auth@1.3.1) '@permissionless/wagmi': specifier: ^0.1.0 - version: 0.1.0(wagmi@2.5.5(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.18.0)(@tanstack/react-query@5.18.0(react@18.2.0))(@types/react@18.2.47)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.35.0)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@2.33.1(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10))) + version: 0.1.0(wagmi@2.5.5(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.18.0)(@tanstack/react-query@5.18.0(react@19.2.5))(@types/react@19.2.14)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.2.5(react@19.2.5))(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))(react@19.2.5)(rollup@4.60.2)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@2.33.1(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10))) '@radix-ui/colors': specifier: ^3.0.0 version: 3.0.0 '@radix-ui/react-checkbox': specifier: ^1.0.4 - version: 1.0.4(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.0.4(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) '@radix-ui/react-slider': specifier: ^1.1.2 - version: 1.1.2(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.1.2(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) '@radix-ui/react-tooltip': specifier: ^1.0.7 - version: 1.0.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.0.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) '@tanstack/react-query': specifier: ^5.18.0 - version: 5.18.0(react@18.2.0) + version: 5.18.0(react@19.2.5) '@turnkey/http': specifier: ^2.7.1 version: 2.7.1(encoding@0.1.13) @@ -82,13 +82,13 @@ importers: version: 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@web3auth/modal': specifier: ^7.3.2 - version: 7.3.2(75i23fgko2agoq24u3itzg23am) + version: 7.3.2(ikzba6xgmj6fcjoef623g5hi7a) caniuse-lite: specifier: ^1.0.30001655 version: 1.0.30001667 lucide-react: - specifier: ^0.309.0 - version: 0.309.0(react@18.2.0) + specifier: ^1.8.0 + version: 1.8.0(react@19.2.5) magic-sdk: specifier: ^22.1.1 version: 22.1.1 @@ -96,30 +96,30 @@ importers: specifier: 0.2.50 version: 0.2.50(ox@0.6.9(typescript@5.3.3))(viem@2.33.1(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)) react: - specifier: latest - version: 18.2.0 + specifier: ^19.0.0 + version: 19.2.5 react-dom: - specifier: latest - version: 18.2.0(react@18.2.0) + specifier: ^19.0.0 + version: 19.2.5(react@19.2.5) viem: specifier: ^2.32.1 version: 2.33.1(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10) vitest: specifier: ^2.0.5 - version: 2.1.2(@types/node@20.11.2)(lightningcss@1.29.2)(terser@5.39.0) + version: 2.1.2(@types/node@20.11.2)(lightningcss@1.32.0)(terser@5.39.0) vocs: - specifier: 1.0.14-main.20250716T102132 - version: 1.0.14-main.20250716T102132(@types/node@20.11.2)(@types/react@18.2.47)(babel-plugin-macros@3.1.0)(jiti@2.4.2)(lightningcss@1.29.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(rollup@4.35.0)(terser@5.39.0)(tsx@4.7.1)(typescript@5.3.3)(yaml@2.7.0) + specifier: ^1.4.1 + version: 1.4.1(@types/node@20.11.2)(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(esbuild@0.27.7)(jiti@2.6.1)(lightningcss@1.32.0)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(rollup@4.60.2)(terser@5.39.0)(tsx@4.7.1)(typescript@5.3.3) wagmi: specifier: ^2.5.5 - version: 2.5.5(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.18.0)(@tanstack/react-query@5.18.0(react@18.2.0))(@types/react@18.2.47)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.35.0)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@2.33.1(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)) + version: 2.5.5(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.18.0)(@tanstack/react-query@5.18.0(react@19.2.5))(@types/react@19.2.14)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.2.5(react@19.2.5))(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))(react@19.2.5)(rollup@4.60.2)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@2.33.1(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)) devDependencies: '@biomejs/biome': specifier: ^2.1.1 version: 2.1.1 '@types/react': - specifier: ^18.2.47 - version: 18.2.47 + specifier: ^19.0.0 + version: 19.2.14 dotenv: specifier: ^16.4.5 version: 16.4.5 @@ -159,18 +159,34 @@ packages: resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==} engines: {node: '>=6.9.0'} + '@babel/code-frame@7.29.0': + resolution: {integrity: sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==} + engines: {node: '>=6.9.0'} + '@babel/compat-data@7.26.8': resolution: {integrity: sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==} engines: {node: '>=6.9.0'} + '@babel/compat-data@7.29.0': + resolution: {integrity: sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==} + engines: {node: '>=6.9.0'} + '@babel/core@7.26.10': resolution: {integrity: sha512-vMqyb7XCDMPvJFFOaT9kxtiRh42GwlZEg1/uIgtZshS5a/8OaduUfCi7kynKgc3Tw/6Uo2D+db9qBttghhmxwQ==} engines: {node: '>=6.9.0'} + '@babel/core@7.29.0': + resolution: {integrity: sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==} + engines: {node: '>=6.9.0'} + '@babel/generator@7.27.0': resolution: {integrity: sha512-VybsKvpiN1gU1sdMZIp7FcqphVVKEwcuj02x73uvcHE0PTihx1nlBcowYWhDwjpoAXRv43+gDzyggGnn1XZhVw==} engines: {node: '>=6.9.0'} + '@babel/generator@7.29.1': + resolution: {integrity: sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==} + engines: {node: '>=6.9.0'} + '@babel/helper-annotate-as-pure@7.25.9': resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==} engines: {node: '>=6.9.0'} @@ -179,6 +195,10 @@ packages: resolution: {integrity: sha512-LVk7fbXml0H2xH34dFzKQ7TDZ2G4/rVTOrq9V+icbbadjbVxxeFeDsNHv2SrZeWoA+6ZiTyWYWtScEIW07EAcA==} engines: {node: '>=6.9.0'} + '@babel/helper-compilation-targets@7.28.6': + resolution: {integrity: sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==} + engines: {node: '>=6.9.0'} + '@babel/helper-create-class-features-plugin@7.27.0': resolution: {integrity: sha512-vSGCvMecvFCd/BdpGlhpXYNhhC4ccxyvQWpbGL4CWbvfEoLFWUZuSuf7s9Aw70flgQF+6vptvgK2IfOnKlRmBg==} engines: {node: '>=6.9.0'} @@ -205,6 +225,10 @@ packages: resolution: {integrity: sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==} engines: {node: '>=6.9.0'} + '@babel/helper-globals@7.28.0': + resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==} + engines: {node: '>=6.9.0'} + '@babel/helper-member-expression-to-functions@7.25.9': resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==} engines: {node: '>=6.9.0'} @@ -217,12 +241,22 @@ packages: resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==} engines: {node: '>=6.9.0'} + '@babel/helper-module-imports@7.28.6': + resolution: {integrity: sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==} + engines: {node: '>=6.9.0'} + '@babel/helper-module-transforms@7.26.0': resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + '@babel/helper-module-transforms@7.28.6': + resolution: {integrity: sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@babel/helper-optimise-call-expression@7.25.9': resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==} engines: {node: '>=6.9.0'} @@ -231,6 +265,10 @@ packages: resolution: {integrity: sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==} engines: {node: '>=6.9.0'} + '@babel/helper-plugin-utils@7.28.6': + resolution: {integrity: sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==} + engines: {node: '>=6.9.0'} + '@babel/helper-remap-async-to-generator@7.25.9': resolution: {integrity: sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==} engines: {node: '>=6.9.0'} @@ -255,6 +293,10 @@ packages: resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==} engines: {node: '>=6.9.0'} + '@babel/helper-string-parser@7.27.1': + resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} + engines: {node: '>=6.9.0'} + '@babel/helper-validator-identifier@7.22.20': resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} engines: {node: '>=6.9.0'} @@ -263,10 +305,18 @@ packages: resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} engines: {node: '>=6.9.0'} + '@babel/helper-validator-identifier@7.28.5': + resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==} + engines: {node: '>=6.9.0'} + '@babel/helper-validator-option@7.25.9': resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==} engines: {node: '>=6.9.0'} + '@babel/helper-validator-option@7.27.1': + resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==} + engines: {node: '>=6.9.0'} + '@babel/helper-wrap-function@7.25.9': resolution: {integrity: sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==} engines: {node: '>=6.9.0'} @@ -275,6 +325,10 @@ packages: resolution: {integrity: sha512-U5eyP/CTFPuNE3qk+WZMxFkp/4zUzdceQlfzf7DdGdhp+Fezd7HD+i8Y24ZuTMKX3wQBld449jijbGq6OdGNQg==} engines: {node: '>=6.9.0'} + '@babel/helpers@7.29.2': + resolution: {integrity: sha512-HoGuUs4sCZNezVEKdVcwqmZN8GoHirLUcLaYVNBK2J0DadGtdcqgr3BCbvH8+XUo4NGjNl3VOtSjEKNzqfFgKw==} + engines: {node: '>=6.9.0'} + '@babel/highlight@7.23.4': resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==} engines: {node: '>=6.9.0'} @@ -284,6 +338,11 @@ packages: engines: {node: '>=6.0.0'} hasBin: true + '@babel/parser@7.29.2': + resolution: {integrity: sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==} + engines: {node: '>=6.0.0'} + hasBin: true + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9': resolution: {integrity: sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==} engines: {node: '>=6.9.0'} @@ -717,14 +776,14 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-react-jsx-self@7.25.9': - resolution: {integrity: sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==} + '@babel/plugin-transform-react-jsx-self@7.27.1': + resolution: {integrity: sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-react-jsx-source@7.25.9': - resolution: {integrity: sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==} + '@babel/plugin-transform-react-jsx-source@7.27.1': + resolution: {integrity: sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -854,10 +913,18 @@ packages: resolution: {integrity: sha512-2ncevenBqXI6qRMukPlXwHKHchC7RyMuu4xv5JBXRfOGVcTy1mXCD12qrp7Jsoxll1EV3+9sE4GugBVRjT2jFA==} engines: {node: '>=6.9.0'} + '@babel/template@7.28.6': + resolution: {integrity: sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==} + engines: {node: '>=6.9.0'} + '@babel/traverse@7.27.0': resolution: {integrity: sha512-19lYZFzYVQkkHkl4Cy4WrAVcqBkgvV2YM2TU3xG6DIwO7O3ecbDPfW3yM3bjAGcqcQHi+CCtjMR3dIEHxsd6bA==} engines: {node: '>=6.9.0'} + '@babel/traverse@7.29.0': + resolution: {integrity: sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==} + engines: {node: '>=6.9.0'} + '@babel/types@7.23.6': resolution: {integrity: sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==} engines: {node: '>=6.9.0'} @@ -866,6 +933,10 @@ packages: resolution: {integrity: sha512-H45s8fVLYjbhFH62dIJ3WtmJ6RSPt/3DRO0ZcT2SUiYiQyz3BLVb9ADEnLl91m74aQPS3AzzeajZHYOalWe3bg==} engines: {node: '>=6.9.0'} + '@babel/types@7.29.0': + resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==} + engines: {node: '>=6.9.0'} + '@biomejs/biome@2.1.1': resolution: {integrity: sha512-HFGYkxG714KzG+8tvtXCJ1t1qXQMzgWzfvQaUjxN6UeKv+KvMEuliInnbZLJm6DXFXwqVi6446EGI0sGBLIYng==} engines: {node: '>=14.21.3'} @@ -1013,6 +1084,15 @@ packages: '@dfns/sdk@0.3.1': resolution: {integrity: sha512-KrfX8xbQR8+CaQSRLJW4YtX+qTf877J/CDcFJoWsDssgkTwXRoQ9TqGePkIQ118muMCHyW5xOto6Mr/O6TAKuA==} + '@emnapi/core@1.9.2': + resolution: {integrity: sha512-UC+ZhH3XtczQYfOlu3lNEkdW/p4dsJ1r/bP7H8+rhao3TTTMO1ATq/4DdIi23XuGoFY+Cz0JmCbdVl0hz9jZcA==} + + '@emnapi/runtime@1.9.2': + resolution: {integrity: sha512-3U4+MIWHImeyu1wnmVygh5WlgfYDtyf0k8AbLhMFxOipihf6nrWC4syIm/SwEeec0mNSafiiNnMJwbza/Is6Lw==} + + '@emnapi/wasi-threads@1.2.1': + resolution: {integrity: sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==} + '@emotion/babel-plugin@11.11.0': resolution: {integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==} @@ -1085,6 +1165,12 @@ packages: cpu: [ppc64] os: [aix] + '@esbuild/aix-ppc64@0.27.7': + resolution: {integrity: sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [aix] + '@esbuild/android-arm64@0.19.11': resolution: {integrity: sha512-aiu7K/5JnLj//KOnOfEZ0D90obUkRzDMyqd/wNAUQ34m4YUPVhRZpnqKV9uqDGxT7cToSDnIHsGooyIczu9T+Q==} engines: {node: '>=12'} @@ -1103,6 +1189,12 @@ packages: cpu: [arm64] os: [android] + '@esbuild/android-arm64@0.27.7': + resolution: {integrity: sha512-62dPZHpIXzvChfvfLJow3q5dDtiNMkwiRzPylSCfriLvZeq0a1bWChrGx/BbUbPwOrsWKMn8idSllklzBy+dgQ==} + engines: {node: '>=18'} + cpu: [arm64] + os: [android] + '@esbuild/android-arm@0.19.11': resolution: {integrity: sha512-5OVapq0ClabvKvQ58Bws8+wkLCV+Rxg7tUVbo9xu034Nm536QTII4YzhaFriQ7rMrorfnFKUsArD2lqKbFY4vw==} engines: {node: '>=12'} @@ -1121,6 +1213,12 @@ packages: cpu: [arm] os: [android] + '@esbuild/android-arm@0.27.7': + resolution: {integrity: sha512-jbPXvB4Yj2yBV7HUfE2KHe4GJX51QplCN1pGbYjvsyCZbQmies29EoJbkEc+vYuU5o45AfQn37vZlyXy4YJ8RQ==} + engines: {node: '>=18'} + cpu: [arm] + os: [android] + '@esbuild/android-x64@0.19.11': resolution: {integrity: sha512-eccxjlfGw43WYoY9QgB82SgGgDbibcqyDTlk3l3C0jOVHKxrjdc9CTwDUQd0vkvYg5um0OH+GpxYvp39r+IPOg==} engines: {node: '>=12'} @@ -1139,6 +1237,12 @@ packages: cpu: [x64] os: [android] + '@esbuild/android-x64@0.27.7': + resolution: {integrity: sha512-x5VpMODneVDb70PYV2VQOmIUUiBtY3D3mPBG8NxVk5CogneYhkR7MmM3yR/uMdITLrC1ml/NV1rj4bMJuy9MCg==} + engines: {node: '>=18'} + cpu: [x64] + os: [android] + '@esbuild/darwin-arm64@0.19.11': resolution: {integrity: sha512-ETp87DRWuSt9KdDVkqSoKoLFHYTrkyz2+65fj9nfXsaV3bMhTCjtQfw3y+um88vGRKRiF7erPrh/ZuIdLUIVxQ==} engines: {node: '>=12'} @@ -1157,6 +1261,12 @@ packages: cpu: [arm64] os: [darwin] + '@esbuild/darwin-arm64@0.27.7': + resolution: {integrity: sha512-5lckdqeuBPlKUwvoCXIgI2D9/ABmPq3Rdp7IfL70393YgaASt7tbju3Ac+ePVi3KDH6N2RqePfHnXkaDtY9fkw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [darwin] + '@esbuild/darwin-x64@0.19.11': resolution: {integrity: sha512-fkFUiS6IUK9WYUO/+22omwetaSNl5/A8giXvQlcinLIjVkxwTLSktbF5f/kJMftM2MJp9+fXqZ5ezS7+SALp4g==} engines: {node: '>=12'} @@ -1175,6 +1285,12 @@ packages: cpu: [x64] os: [darwin] + '@esbuild/darwin-x64@0.27.7': + resolution: {integrity: sha512-rYnXrKcXuT7Z+WL5K980jVFdvVKhCHhUwid+dDYQpH+qu+TefcomiMAJpIiC2EM3Rjtq0sO3StMV/+3w3MyyqQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [darwin] + '@esbuild/freebsd-arm64@0.19.11': resolution: {integrity: sha512-lhoSp5K6bxKRNdXUtHoNc5HhbXVCS8V0iZmDvyWvYq9S5WSfTIHU2UGjcGt7UeS6iEYp9eeymIl5mJBn0yiuxA==} engines: {node: '>=12'} @@ -1193,6 +1309,12 @@ packages: cpu: [arm64] os: [freebsd] + '@esbuild/freebsd-arm64@0.27.7': + resolution: {integrity: sha512-B48PqeCsEgOtzME2GbNM2roU29AMTuOIN91dsMO30t+Ydis3z/3Ngoj5hhnsOSSwNzS+6JppqWsuhTp6E82l2w==} + engines: {node: '>=18'} + cpu: [arm64] + os: [freebsd] + '@esbuild/freebsd-x64@0.19.11': resolution: {integrity: sha512-JkUqn44AffGXitVI6/AbQdoYAq0TEullFdqcMY/PCUZ36xJ9ZJRtQabzMA+Vi7r78+25ZIBosLTOKnUXBSi1Kw==} engines: {node: '>=12'} @@ -1211,6 +1333,12 @@ packages: cpu: [x64] os: [freebsd] + '@esbuild/freebsd-x64@0.27.7': + resolution: {integrity: sha512-jOBDK5XEjA4m5IJK3bpAQF9/Lelu/Z9ZcdhTRLf4cajlB+8VEhFFRjWgfy3M1O4rO2GQ/b2dLwCUGpiF/eATNQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [freebsd] + '@esbuild/linux-arm64@0.19.11': resolution: {integrity: sha512-LneLg3ypEeveBSMuoa0kwMpCGmpu8XQUh+mL8XXwoYZ6Be2qBnVtcDI5azSvh7vioMDhoJFZzp9GWp9IWpYoUg==} engines: {node: '>=12'} @@ -1229,6 +1357,12 @@ packages: cpu: [arm64] os: [linux] + '@esbuild/linux-arm64@0.27.7': + resolution: {integrity: sha512-RZPHBoxXuNnPQO9rvjh5jdkRmVizktkT7TCDkDmQ0W2SwHInKCAV95GRuvdSvA7w4VMwfCjUiPwDi0ZO6Nfe9A==} + engines: {node: '>=18'} + cpu: [arm64] + os: [linux] + '@esbuild/linux-arm@0.19.11': resolution: {integrity: sha512-3CRkr9+vCV2XJbjwgzjPtO8T0SZUmRZla+UL1jw+XqHZPkPgZiyWvbDvl9rqAN8Zl7qJF0O/9ycMtjU67HN9/Q==} engines: {node: '>=12'} @@ -1247,6 +1381,12 @@ packages: cpu: [arm] os: [linux] + '@esbuild/linux-arm@0.27.7': + resolution: {integrity: sha512-RkT/YXYBTSULo3+af8Ib0ykH8u2MBh57o7q/DAs3lTJlyVQkgQvlrPTnjIzzRPQyavxtPtfg0EopvDyIt0j1rA==} + engines: {node: '>=18'} + cpu: [arm] + os: [linux] + '@esbuild/linux-ia32@0.19.11': resolution: {integrity: sha512-caHy++CsD8Bgq2V5CodbJjFPEiDPq8JJmBdeyZ8GWVQMjRD0sU548nNdwPNvKjVpamYYVL40AORekgfIubwHoA==} engines: {node: '>=12'} @@ -1265,6 +1405,12 @@ packages: cpu: [ia32] os: [linux] + '@esbuild/linux-ia32@0.27.7': + resolution: {integrity: sha512-GA48aKNkyQDbd3KtkplYWT102C5sn/EZTY4XROkxONgruHPU72l+gW+FfF8tf2cFjeHaRbWpOYa/uRBz/Xq1Pg==} + engines: {node: '>=18'} + cpu: [ia32] + os: [linux] + '@esbuild/linux-loong64@0.19.11': resolution: {integrity: sha512-ppZSSLVpPrwHccvC6nQVZaSHlFsvCQyjnvirnVjbKSHuE5N24Yl8F3UwYUUR1UEPaFObGD2tSvVKbvR+uT1Nrg==} engines: {node: '>=12'} @@ -1283,6 +1429,12 @@ packages: cpu: [loong64] os: [linux] + '@esbuild/linux-loong64@0.27.7': + resolution: {integrity: sha512-a4POruNM2oWsD4WKvBSEKGIiWQF8fZOAsycHOt6JBpZ+JN2n2JH9WAv56SOyu9X5IqAjqSIPTaJkqN8F7XOQ5Q==} + engines: {node: '>=18'} + cpu: [loong64] + os: [linux] + '@esbuild/linux-mips64el@0.19.11': resolution: {integrity: sha512-B5x9j0OgjG+v1dF2DkH34lr+7Gmv0kzX6/V0afF41FkPMMqaQ77pH7CrhWeR22aEeHKaeZVtZ6yFwlxOKPVFyg==} engines: {node: '>=12'} @@ -1301,6 +1453,12 @@ packages: cpu: [mips64el] os: [linux] + '@esbuild/linux-mips64el@0.27.7': + resolution: {integrity: sha512-KabT5I6StirGfIz0FMgl1I+R1H73Gp0ofL9A3nG3i/cYFJzKHhouBV5VWK1CSgKvVaG4q1RNpCTR2LuTVB3fIw==} + engines: {node: '>=18'} + cpu: [mips64el] + os: [linux] + '@esbuild/linux-ppc64@0.19.11': resolution: {integrity: sha512-MHrZYLeCG8vXblMetWyttkdVRjQlQUb/oMgBNurVEnhj4YWOr4G5lmBfZjHYQHHN0g6yDmCAQRR8MUHldvvRDA==} engines: {node: '>=12'} @@ -1319,6 +1477,12 @@ packages: cpu: [ppc64] os: [linux] + '@esbuild/linux-ppc64@0.27.7': + resolution: {integrity: sha512-gRsL4x6wsGHGRqhtI+ifpN/vpOFTQtnbsupUF5R5YTAg+y/lKelYR1hXbnBdzDjGbMYjVJLJTd2OFmMewAgwlQ==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [linux] + '@esbuild/linux-riscv64@0.19.11': resolution: {integrity: sha512-f3DY++t94uVg141dozDu4CCUkYW+09rWtaWfnb3bqe4w5NqmZd6nPVBm+qbz7WaHZCoqXqHz5p6CM6qv3qnSSQ==} engines: {node: '>=12'} @@ -1337,6 +1501,12 @@ packages: cpu: [riscv64] os: [linux] + '@esbuild/linux-riscv64@0.27.7': + resolution: {integrity: sha512-hL25LbxO1QOngGzu2U5xeXtxXcW+/GvMN3ejANqXkxZ/opySAZMrc+9LY/WyjAan41unrR3YrmtTsUpwT66InQ==} + engines: {node: '>=18'} + cpu: [riscv64] + os: [linux] + '@esbuild/linux-s390x@0.19.11': resolution: {integrity: sha512-A5xdUoyWJHMMlcSMcPGVLzYzpcY8QP1RtYzX5/bS4dvjBGVxdhuiYyFwp7z74ocV7WDc0n1harxmpq2ePOjI0Q==} engines: {node: '>=12'} @@ -1355,6 +1525,12 @@ packages: cpu: [s390x] os: [linux] + '@esbuild/linux-s390x@0.27.7': + resolution: {integrity: sha512-2k8go8Ycu1Kb46vEelhu1vqEP+UeRVj2zY1pSuPdgvbd5ykAw82Lrro28vXUrRmzEsUV0NzCf54yARIK8r0fdw==} + engines: {node: '>=18'} + cpu: [s390x] + os: [linux] + '@esbuild/linux-x64@0.19.11': resolution: {integrity: sha512-grbyMlVCvJSfxFQUndw5mCtWs5LO1gUlwP4CDi4iJBbVpZcqLVT29FxgGuBJGSzyOxotFG4LoO5X+M1350zmPA==} engines: {node: '>=12'} @@ -1373,12 +1549,24 @@ packages: cpu: [x64] os: [linux] + '@esbuild/linux-x64@0.27.7': + resolution: {integrity: sha512-hzznmADPt+OmsYzw1EE33ccA+HPdIqiCRq7cQeL1Jlq2gb1+OyWBkMCrYGBJ+sxVzve2ZJEVeePbLM2iEIZSxA==} + engines: {node: '>=18'} + cpu: [x64] + os: [linux] + '@esbuild/netbsd-arm64@0.25.1': resolution: {integrity: sha512-O96poM2XGhLtpTh+s4+nP7YCCAfb4tJNRVZHfIE7dgmax+yMP2WgMd2OecBuaATHKTHsLWHQeuaxMRnCsH8+5g==} engines: {node: '>=18'} cpu: [arm64] os: [netbsd] + '@esbuild/netbsd-arm64@0.27.7': + resolution: {integrity: sha512-b6pqtrQdigZBwZxAn1UpazEisvwaIDvdbMbmrly7cDTMFnw/+3lVxxCTGOrkPVnsYIosJJXAsILG9XcQS+Yu6w==} + engines: {node: '>=18'} + cpu: [arm64] + os: [netbsd] + '@esbuild/netbsd-x64@0.19.11': resolution: {integrity: sha512-13jvrQZJc3P230OhU8xgwUnDeuC/9egsjTkXN49b3GcS5BKvJqZn86aGM8W9pd14Kd+u7HuFBMVtrNGhh6fHEQ==} engines: {node: '>=12'} @@ -1397,12 +1585,24 @@ packages: cpu: [x64] os: [netbsd] + '@esbuild/netbsd-x64@0.27.7': + resolution: {integrity: sha512-OfatkLojr6U+WN5EDYuoQhtM+1xco+/6FSzJJnuWiUw5eVcicbyK3dq5EeV/QHT1uy6GoDhGbFpprUiHUYggrw==} + engines: {node: '>=18'} + cpu: [x64] + os: [netbsd] + '@esbuild/openbsd-arm64@0.25.1': resolution: {integrity: sha512-Na9T3szbXezdzM/Kfs3GcRQNjHzM6GzFBeU1/6IV/npKP5ORtp9zbQjvkDJ47s6BCgaAZnnnu/cY1x342+MvZg==} engines: {node: '>=18'} cpu: [arm64] os: [openbsd] + '@esbuild/openbsd-arm64@0.27.7': + resolution: {integrity: sha512-AFuojMQTxAz75Fo8idVcqoQWEHIXFRbOc1TrVcFSgCZtQfSdc1RXgB3tjOn/krRHENUB4j00bfGjyl2mJrU37A==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openbsd] + '@esbuild/openbsd-x64@0.19.11': resolution: {integrity: sha512-ysyOGZuTp6SNKPE11INDUeFVVQFrhcNDVUgSQVDzqsqX38DjhPEPATpid04LCoUr2WXhQTEZ8ct/EgJCUDpyNw==} engines: {node: '>=12'} @@ -1421,6 +1621,18 @@ packages: cpu: [x64] os: [openbsd] + '@esbuild/openbsd-x64@0.27.7': + resolution: {integrity: sha512-+A1NJmfM8WNDv5CLVQYJ5PshuRm/4cI6WMZRg1by1GwPIQPCTs1GLEUHwiiQGT5zDdyLiRM/l1G0Pv54gvtKIg==} + engines: {node: '>=18'} + cpu: [x64] + os: [openbsd] + + '@esbuild/openharmony-arm64@0.27.7': + resolution: {integrity: sha512-+KrvYb/C8zA9CU/g0sR6w2RBw7IGc5J2BPnc3dYc5VJxHCSF1yNMxTV5LQ7GuKteQXZtspjFbiuW5/dOj7H4Yw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openharmony] + '@esbuild/sunos-x64@0.19.11': resolution: {integrity: sha512-Hf+Sad9nVwvtxy4DXCZQqLpgmRTQqyFyhT3bZ4F2XlJCjxGmRFF0Shwn9rzhOYRB61w9VMXUkxlBy56dk9JJiQ==} engines: {node: '>=12'} @@ -1439,6 +1651,12 @@ packages: cpu: [x64] os: [sunos] + '@esbuild/sunos-x64@0.27.7': + resolution: {integrity: sha512-ikktIhFBzQNt/QDyOL580ti9+5mL/YZeUPKU2ivGtGjdTYoqz6jObj6nOMfhASpS4GU4Q/Clh1QtxWAvcYKamA==} + engines: {node: '>=18'} + cpu: [x64] + os: [sunos] + '@esbuild/win32-arm64@0.19.11': resolution: {integrity: sha512-0P58Sbi0LctOMOQbpEOvOL44Ne0sqbS0XWHMvvrg6NE5jQ1xguCSSw9jQeUk2lfrXYsKDdOe6K+oZiwKPilYPQ==} engines: {node: '>=12'} @@ -1457,6 +1675,12 @@ packages: cpu: [arm64] os: [win32] + '@esbuild/win32-arm64@0.27.7': + resolution: {integrity: sha512-7yRhbHvPqSpRUV7Q20VuDwbjW5kIMwTHpptuUzV+AA46kiPze5Z7qgt6CLCK3pWFrHeNfDd1VKgyP4O+ng17CA==} + engines: {node: '>=18'} + cpu: [arm64] + os: [win32] + '@esbuild/win32-ia32@0.19.11': resolution: {integrity: sha512-6YOrWS+sDJDmshdBIQU+Uoyh7pQKrdykdefC1avn76ss5c+RN6gut3LZA4E2cH5xUEp5/cA0+YxRaVtRAb0xBg==} engines: {node: '>=12'} @@ -1475,6 +1699,12 @@ packages: cpu: [ia32] os: [win32] + '@esbuild/win32-ia32@0.27.7': + resolution: {integrity: sha512-SmwKXe6VHIyZYbBLJrhOoCJRB/Z1tckzmgTLfFYOfpMAx63BJEaL9ExI8x7v0oAO3Zh6D/Oi1gVxEYr5oUCFhw==} + engines: {node: '>=18'} + cpu: [ia32] + os: [win32] + '@esbuild/win32-x64@0.19.11': resolution: {integrity: sha512-vfkhltrjCAb603XaFhqhAF4LGDi2M4OrCRrFusyQ+iTLQ/o60QQXxc9cZC/FFpihBI9N1Grn6SMKVJ4KP7Fuiw==} engines: {node: '>=12'} @@ -1493,6 +1723,12 @@ packages: cpu: [x64] os: [win32] + '@esbuild/win32-x64@0.27.7': + resolution: {integrity: sha512-56hiAJPhwQ1R4i+21FVF7V8kSD5zZTdHcVuRFMW0hn753vVfQN8xlx4uOPT4xoGH0Z/oVATuR82AiqSTDIpaHg==} + engines: {node: '>=18'} + cpu: [x64] + os: [win32] + '@ethereumjs/common@2.6.5': resolution: {integrity: sha512-lRyVQOeCDaIVtgfbowla32pzeDv2Obr8oR8Put5RdUBNRGr1VGPGQNGP6elWIpgK3YdpzqTOh4GyUGOureVeeA==} @@ -1638,9 +1874,15 @@ packages: '@floating-ui/core@1.6.0': resolution: {integrity: sha512-PcF++MykgmTj3CIyOQbKA/hDzOAiqI3mhuoN44WRCopIs1sgoDoU4oty4Jtqaj/y3oDU6fnVSm4QG0a3t5i0+g==} + '@floating-ui/core@1.7.5': + resolution: {integrity: sha512-1Ih4WTWyw0+lKyFMcBHGbb5U5FtuHJuujoyyr5zTaWS5EYMeT6Jb2AuDeftsCsEuchO+mM2ij5+q9crhydzLhQ==} + '@floating-ui/dom@1.6.0': resolution: {integrity: sha512-SZ0BEXzsaaS6THZfZJUcAobbZTD+MvfGM42bxgeg0Tnkp4/an/avqwAXiVLsFtIBZtfsx3Ymvwx0+KnnhdA/9g==} + '@floating-ui/dom@1.7.6': + resolution: {integrity: sha512-9gZSAI5XM36880PPMm//9dfiEngYoC6Am2izES1FF406YFsjvyBMmeJ2g4SAju3xWwtuynNRFL2s9hgxpLI5SQ==} + '@floating-ui/react-dom@2.0.7': resolution: {integrity: sha512-B5GJxKUyPcGsvE1vua+Abvw0t6zVMyTbtG+Jk7BoI4hfc5Ahv50dstRIAn0nS0274kR9gnKwxIXyGA8EzBZJrA==} peerDependencies: @@ -1653,8 +1895,14 @@ packages: react: '>=16.8.0' react-dom: '>=16.8.0' - '@floating-ui/react@0.27.5': - resolution: {integrity: sha512-BX3jKxo39Ba05pflcQmqPPwc0qdNsdNi/eweAFtoIdrJWNen2sVEWMEac3i6jU55Qfx+lOcdMNKYn2CtWmlnOQ==} + '@floating-ui/react-dom@2.1.8': + resolution: {integrity: sha512-cC52bHwM/n/CxS87FH0yWdngEZrjdtLW/qVruo68qg+prK7ZQ4YGdut2GyDVpoGeAYe/h899rVeOVm6Oi40k2A==} + peerDependencies: + react: '>=16.8.0' + react-dom: '>=16.8.0' + + '@floating-ui/react@0.27.19': + resolution: {integrity: sha512-31B8h5mm8YxotlE7/AU/PhNAl8eWxAmjL/v2QOxroDNkTFLk3Uu82u63N3b6TXa4EGJeeZLVcd/9AlNlVqzeog==} peerDependencies: react: '>=17.0.0' react-dom: '>=17.0.0' @@ -1662,8 +1910,8 @@ packages: '@floating-ui/utils@0.2.1': resolution: {integrity: sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==} - '@floating-ui/utils@0.2.9': - resolution: {integrity: sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==} + '@floating-ui/utils@0.2.11': + resolution: {integrity: sha512-RiB/yIh78pcIxl6lLMG0CgBXAZ2Y0eVHqMPYugu+9U0AeT6YBeiJpf7lbdJNIugFP5SIjwNRgo4DhR1Qxi26Gg==} '@fortawesome/fontawesome-free@6.7.2': resolution: {integrity: sha512-JUOtgFW6k9u4Y+xeIaEiLr3+cjoUPiAuLXoyKOJSia6Duzb7pq+A76P9ZdPDoAoxHdHzq6gE9/jKBGXlZT8FbA==} @@ -1689,8 +1937,8 @@ packages: '@hapi/topo@5.1.0': resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==} - '@hono/node-server@1.13.8': - resolution: {integrity: sha512-fsn8ucecsAXUoVxrUil0m13kOEq4mkX4/4QozCqmY+HpGfKl74OYSn8JcMA8GnG0ClfdRI4/ZSeG7zhFaVg+wg==} + '@hono/node-server@1.19.14': + resolution: {integrity: sha512-GwtvgtXxnWsucXvbQXkRgqksiH2Qed37H9xHZocE5sA3N8O8O8/8FA3uclQXxXVzc9XBZuEOMK7+r02FmSpHtw==} engines: {node: '>=18.14.1'} peerDependencies: hono: ^4 @@ -1748,10 +1996,16 @@ packages: resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@jridgewell/gen-mapping@0.3.13': + resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==} + '@jridgewell/gen-mapping@0.3.8': resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==} engines: {node: '>=6.0.0'} + '@jridgewell/remapping@2.3.5': + resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==} + '@jridgewell/resolve-uri@3.1.1': resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} engines: {node: '>=6.0.0'} @@ -1766,9 +2020,15 @@ packages: '@jridgewell/sourcemap-codec@1.5.0': resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} + '@jridgewell/sourcemap-codec@1.5.5': + resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==} + '@jridgewell/trace-mapping@0.3.25': resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} + '@jridgewell/trace-mapping@0.3.31': + resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==} + '@lit-labs/ssr-dom-shim@1.2.0': resolution: {integrity: sha512-yWJKmpGE6lUURKAaIltoPIE/wrbY3TEkqQt+X0m+7fQNnAv0keydnYvbiJFP1PnMhizmIWRWOG5KLhYyc/xl+g==} @@ -1858,17 +2118,17 @@ packages: '@magic-sdk/types@18.1.1': resolution: {integrity: sha512-QH6fAujGgSGyvTxMhf98oUlsnutS6M9VcHmFdmOTnCq7iuxa6qeDPIsBTjqnqBrg5qFePhA5WresvcClMp3HJw==} - '@mdx-js/mdx@3.0.0': - resolution: {integrity: sha512-Icm0TBKBLYqroYbNW3BPnzMGn+7mwpQOK310aZ7+fkCtiU3aqv2cdcX+nd0Ydo3wI5Rx8bX2Z2QmGb/XcAClCw==} + '@mdx-js/mdx@3.1.1': + resolution: {integrity: sha512-f6ZO2ifpwAQIpzGWaBQT2TXxPv6z3RBzQKpVftEWN78Vl/YweF1uwussDx8ECAXVtr3Rs89fKyG9YlzUs9DyGQ==} - '@mdx-js/react@3.1.0': - resolution: {integrity: sha512-QjHtSaoameoalGnKDT3FoIl4+9RwyTmo9ZJGBdLOks/YOiWHoRDI3PUwEzOE7kEmGcV3AFcp9K6dYu9rEuKLAQ==} + '@mdx-js/react@3.1.1': + resolution: {integrity: sha512-f++rKLQgUVYDAtECQ6fn/is15GkEH9+nZPM3MS0RcxVqoTfawHvDlSCH7JbMhAM6uJ32v3eXLvLmLvjGu7PTQw==} peerDependencies: '@types/react': '>=16' react: '>=16' - '@mdx-js/rollup@3.1.0': - resolution: {integrity: sha512-q4xOtUXpCzeouE8GaJ8StT4rDxm/U5j6lkMHL2srb2Q3Y7cobE0aXyPzXVVlbeIMBi+5R5MpbiaVE5/vJUdnHg==} + '@mdx-js/rollup@3.1.1': + resolution: {integrity: sha512-v8satFmBB+DqDzYohnm1u2JOvxx6Hl3pUvqzJvfs2Zk/ngZ1aRUhsWpXvwPkNeGN9c2NCm/38H29ZqXQUjf8dw==} peerDependencies: rollup: '>=2' @@ -1996,6 +2256,12 @@ packages: resolution: {integrity: sha512-6vId1C46ra3R1sbJUOFCZnsUIveR9oF20yhPmAFxPm0JfrX3/ZRCgP3YDrBzlGoEppOXnA9czHeYc0T9mB6hbA==} engines: {node: '>=16.0.0', npm: '>=7.0.0'} + '@napi-rs/wasm-runtime@1.1.4': + resolution: {integrity: sha512-3NQNNgA1YSlJb/kMH1ildASP9HW7/7kYnRI2szWJaofaS1hWmbGI4H+d3+22aGzXXN9IJ+n+GiFVcGipJP18ow==} + peerDependencies: + '@emnapi/core': ^1.7.1 + '@emnapi/runtime': ^1.7.1 + '@noble/ciphers@0.4.1': resolution: {integrity: sha512-QCOA9cgf3Rc33owG0AYBB9wszz+Ul2kramWN8tXG44Gyciud/tbkEqvxRF/IpqQaBpRBNi9f4jdNxqB2CQCIXg==} @@ -2043,22 +2309,13 @@ packages: '@noble/secp256k1@1.7.1': resolution: {integrity: sha512-hOUk6AyBFmqVrv7k5WAw/LpszxVbj9gGN4JRkIX52fdFAj1UA61KXmZDvqVEm+pOyec3+fIeZB02LYa/pWOArw==} - '@nodelib/fs.scandir@2.1.5': - resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} - engines: {node: '>= 8'} - - '@nodelib/fs.stat@2.0.5': - resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} - engines: {node: '>= 8'} - - '@nodelib/fs.walk@1.2.8': - resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} - engines: {node: '>= 8'} - '@notabene/pii-sdk@1.17.0': resolution: {integrity: sha512-3fccyWmODK+TK9XS6S7Nitq7tvvJc8ALdzraypkZXly88nWAQkVDkxxQL9a9LScIxLnMSVIQrjw2n52UopmfKQ==} engines: {node: '>=14'} + '@oxc-project/types@0.126.0': + resolution: {integrity: sha512-oGfVtjAgwQVVpfBrbtk4e1XDyWHRFta6BS3GWVzrF8xYBT2VGQAk39yJS/wFSMrZqoiCU4oghT3Ch0HaHGIHcQ==} + '@parcel/watcher-android-arm64@2.4.0': resolution: {integrity: sha512-+fPtO/GsbYX1LJnCYCaDVT3EOBjvSFdQN9Mrzh9zWAOOfvidPWyScTrHIZHHfJBvlHzNA0Gy0U3NXFA/M7PHUA==} engines: {node: '>= 10.0.0'} @@ -3249,6 +3506,101 @@ packages: peerDependencies: react-native: '*' + '@rolldown/binding-android-arm64@1.0.0-rc.16': + resolution: {integrity: sha512-rhY3k7Bsae9qQfOtph2Pm2jZEA+s8Gmjoz4hhmx70K9iMQ/ddeae+xhRQcM5IuVx5ry1+bGfkvMn7D6MJggVSA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [android] + + '@rolldown/binding-darwin-arm64@1.0.0-rc.16': + resolution: {integrity: sha512-rNz0yK078yrNn3DrdgN+PKiMOW8HfQ92jQiXxwX8yW899ayV00MLVdaCNeVBhG/TbH3ouYVObo8/yrkiectkcQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [darwin] + + '@rolldown/binding-darwin-x64@1.0.0-rc.16': + resolution: {integrity: sha512-r/OmdR00HmD4i79Z//xO06uEPOq5hRXdhw7nzkxQxwSavs3PSHa1ijntdpOiZ2mzOQ3fVVu8C1M19FoNM+dMUQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [darwin] + + '@rolldown/binding-freebsd-x64@1.0.0-rc.16': + resolution: {integrity: sha512-KcRE5w8h0OnjUatG8pldyD14/CQ5Phs1oxfR+3pKDjboHRo9+MkqQaiIZlZRpsxC15paeXme/I127tUa9TXJ6g==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [freebsd] + + '@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.16': + resolution: {integrity: sha512-bT0guA1bpxEJ/ZhTRniQf7rNF8ybvXOuWbNIeLABaV5NGjx4EtOWBTSRGWFU9ZWVkPOZ+HNFP8RMcBokBiZ0Kg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm] + os: [linux] + + '@rolldown/binding-linux-arm64-gnu@1.0.0-rc.16': + resolution: {integrity: sha512-+tHktCHWV8BDQSjemUqm/Jl/TPk3QObCTIjmdDy/nlupcujZghmKK2962LYrqFpWu+ai01AN/REOH3NEpqvYQg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [linux] + + '@rolldown/binding-linux-arm64-musl@1.0.0-rc.16': + resolution: {integrity: sha512-3fPzdREH806oRLxpTWW1Gt4tQHs0TitZFOECB2xzCFLPKnSOy90gwA7P29cksYilFO6XVRY1kzga0cL2nRjKPg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [linux] + + '@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.16': + resolution: {integrity: sha512-EKwI1tSrLs7YVw+JPJT/G2dJQ1jl9qlTTTEG0V2Ok/RdOenRfBw2PQdLPyjhIu58ocdBfP7vIRN/pvMsPxs/AQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [ppc64] + os: [linux] + + '@rolldown/binding-linux-s390x-gnu@1.0.0-rc.16': + resolution: {integrity: sha512-Uknladnb3Sxqu6SEcqBldQyJUpk8NleooZEc0MbRBJ4inEhRYWZX0NJu12vNf2mqAq7gsofAxHrGghiUYjhaLQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [s390x] + os: [linux] + + '@rolldown/binding-linux-x64-gnu@1.0.0-rc.16': + resolution: {integrity: sha512-FIb8+uG49sZBtLTn+zt1AJ20TqVcqWeSIyoVt0or7uAWesgKaHbiBh6OpA/k9v0LTt+PTrb1Lao133kP4uVxkg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [linux] + + '@rolldown/binding-linux-x64-musl@1.0.0-rc.16': + resolution: {integrity: sha512-RuERhF9/EgWxZEXYWCOaViUWHIboceK4/ivdtQ3R0T44NjLkIIlGIAVAuCddFxsZ7vnRHtNQUrt2vR2n2slB2w==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [linux] + + '@rolldown/binding-openharmony-arm64@1.0.0-rc.16': + resolution: {integrity: sha512-mXcXnvd9GpazCxeUCCnZ2+YF7nut+ZOEbE4GtaiPtyY6AkhZWbK70y1KK3j+RDhjVq5+U8FySkKRb/+w0EeUwA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [openharmony] + + '@rolldown/binding-wasm32-wasi@1.0.0-rc.16': + resolution: {integrity: sha512-3Q2KQxnC8IJOLqXmUMoYwyIPZU9hzRbnHaoV3Euz+VVnjZKcY8ktnNP8T9R4/GGQtb27C/UYKABxesKWb8lsvQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [wasm32] + + '@rolldown/binding-win32-arm64-msvc@1.0.0-rc.16': + resolution: {integrity: sha512-tj7XRemQcOcFwv7qhpUxMTBbI5mWMlE4c1Omhg5+h8GuLXzyj8HviYgR+bB2DMDgRqUE+jiDleqSCRjx4aYk/Q==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [win32] + + '@rolldown/binding-win32-x64-msvc@1.0.0-rc.16': + resolution: {integrity: sha512-PH5DRZT+F4f2PTXRXR8uJxnBq2po/xFtddyabTJVJs/ZYVHqXPEgNIr35IHTEa6bpa0Q8Awg+ymkTaGnKITw4g==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [win32] + + '@rolldown/pluginutils@1.0.0-rc.16': + resolution: {integrity: sha512-45+YtqxLYKDWQouLKCrpIZhke+nXxhsw+qAHVzHDVwttyBlHNBVs2K25rDXrZzhpTp9w1FlAlvweV1H++fdZoA==} + + '@rolldown/pluginutils@1.0.0-rc.3': + resolution: {integrity: sha512-eybk3TjzzzV97Dlj5c+XrBFW57eTNhzod66y9HrBlzJ6NsCrWCp/2kaPS3K9wJmurBC0Tdw4yPjXKZqlznim3Q==} + '@rollup/pluginutils@5.1.0': resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==} engines: {node: '>=14.0.0'} @@ -3263,8 +3615,8 @@ packages: cpu: [arm] os: [android] - '@rollup/rollup-android-arm-eabi@4.35.0': - resolution: {integrity: sha512-uYQ2WfPaqz5QtVgMxfN6NpLD+no0MYHDBywl7itPYd3K5TjjSghNKmX8ic9S8NU8w81NVhJv/XojcHptRly7qQ==} + '@rollup/rollup-android-arm-eabi@4.60.2': + resolution: {integrity: sha512-dnlp69efPPg6Uaw2dVqzWRfAWRnYVb1XJ8CyyhIbZeaq4CA5/mLeZ1IEt9QqQxmbdvagjLIm2ZL8BxXv5lH4Yw==} cpu: [arm] os: [android] @@ -3273,8 +3625,8 @@ packages: cpu: [arm64] os: [android] - '@rollup/rollup-android-arm64@4.35.0': - resolution: {integrity: sha512-FtKddj9XZudurLhdJnBl9fl6BwCJ3ky8riCXjEw3/UIbjmIY58ppWwPEvU3fNu+W7FUsAsB1CdH+7EQE6CXAPA==} + '@rollup/rollup-android-arm64@4.60.2': + resolution: {integrity: sha512-OqZTwDRDchGRHHm/hwLOL7uVPB9aUvI0am/eQuWMNyFHf5PSEQmyEeYYheA0EPPKUO/l0uigCp+iaTjoLjVoHg==} cpu: [arm64] os: [android] @@ -3283,8 +3635,8 @@ packages: cpu: [arm64] os: [darwin] - '@rollup/rollup-darwin-arm64@4.35.0': - resolution: {integrity: sha512-Uk+GjOJR6CY844/q6r5DR/6lkPFOw0hjfOIzVx22THJXMxktXG6CbejseJFznU8vHcEBLpiXKY3/6xc+cBm65Q==} + '@rollup/rollup-darwin-arm64@4.60.2': + resolution: {integrity: sha512-UwRE7CGpvSVEQS8gUMBe1uADWjNnVgP3Iusyda1nSRwNDCsRjnGc7w6El6WLQsXmZTbLZx9cecegumcitNfpmA==} cpu: [arm64] os: [darwin] @@ -3293,18 +3645,18 @@ packages: cpu: [x64] os: [darwin] - '@rollup/rollup-darwin-x64@4.35.0': - resolution: {integrity: sha512-3IrHjfAS6Vkp+5bISNQnPogRAW5GAV1n+bNCrDwXmfMHbPl5EhTmWtfmwlJxFRUCBZ+tZ/OxDyU08aF6NI/N5Q==} + '@rollup/rollup-darwin-x64@4.60.2': + resolution: {integrity: sha512-gjEtURKLCC5VXm1I+2i1u9OhxFsKAQJKTVB8WvDAHF+oZlq0GTVFOlTlO1q3AlCTE/DF32c16ESvfgqR7343/g==} cpu: [x64] os: [darwin] - '@rollup/rollup-freebsd-arm64@4.35.0': - resolution: {integrity: sha512-sxjoD/6F9cDLSELuLNnY0fOrM9WA0KrM0vWm57XhrIMf5FGiN8D0l7fn+bpUeBSU7dCgPV2oX4zHAsAXyHFGcQ==} + '@rollup/rollup-freebsd-arm64@4.60.2': + resolution: {integrity: sha512-Bcl6CYDeAgE70cqZaMojOi/eK63h5Me97ZqAQoh77VPjMysA/4ORQBRGo3rRy45x4MzVlU9uZxs8Uwy7ZaKnBw==} cpu: [arm64] os: [freebsd] - '@rollup/rollup-freebsd-x64@4.35.0': - resolution: {integrity: sha512-2mpHCeRuD1u/2kruUiHSsnjWtHjqVbzhBkNVQ1aVD63CcexKVcQGwJ2g5VphOd84GvxfSvnnlEyBtQCE5hxVVw==} + '@rollup/rollup-freebsd-x64@4.60.2': + resolution: {integrity: sha512-LU+TPda3mAE2QB0/Hp5VyeKJivpC6+tlOXd1VMoXV/YFMvk/MNk5iXeBfB4MQGRWyOYVJ01625vjkr0Az98OJQ==} cpu: [x64] os: [freebsd] @@ -3313,8 +3665,8 @@ packages: cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-gnueabihf@4.35.0': - resolution: {integrity: sha512-mrA0v3QMy6ZSvEuLs0dMxcO2LnaCONs1Z73GUDBHWbY8tFFocM6yl7YyMu7rz4zS81NDSqhrUuolyZXGi8TEqg==} + '@rollup/rollup-linux-arm-gnueabihf@4.60.2': + resolution: {integrity: sha512-2QxQrM+KQ7DAW4o22j+XZ6RKdxjLD7BOWTP0Bv0tmjdyhXSsr2Ul1oJDQqh9Zf5qOwTuTc7Ek83mOFaKnodPjg==} cpu: [arm] os: [linux] @@ -3323,8 +3675,8 @@ packages: cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.35.0': - resolution: {integrity: sha512-DnYhhzcvTAKNexIql8pFajr0PiDGrIsBYPRvCKlA5ixSS3uwo/CWNZxB09jhIapEIg945KOzcYEAGGSmTSpk7A==} + '@rollup/rollup-linux-arm-musleabihf@4.60.2': + resolution: {integrity: sha512-TbziEu2DVsTEOPif2mKWkMeDMLoYjx95oESa9fkQQK7r/Orta0gnkcDpzwufEcAO2BLBsD7mZkXGFqEdMRRwfw==} cpu: [arm] os: [linux] @@ -3333,8 +3685,8 @@ packages: cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.35.0': - resolution: {integrity: sha512-uagpnH2M2g2b5iLsCTZ35CL1FgyuzzJQ8L9VtlJ+FckBXroTwNOaD0z0/UF+k5K3aNQjbm8LIVpxykUOQt1m/A==} + '@rollup/rollup-linux-arm64-gnu@4.60.2': + resolution: {integrity: sha512-bO/rVDiDUuM2YfuCUwZ1t1cP+/yqjqz+Xf2VtkdppefuOFS2OSeAfgafaHNkFn0t02hEyXngZkxtGqXcXwO8Rg==} cpu: [arm64] os: [linux] @@ -3343,13 +3695,18 @@ packages: cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.35.0': - resolution: {integrity: sha512-XQxVOCd6VJeHQA/7YcqyV0/88N6ysSVzRjJ9I9UA/xXpEsjvAgDTgH3wQYz5bmr7SPtVK2TsP2fQ2N9L4ukoUg==} + '@rollup/rollup-linux-arm64-musl@4.60.2': + resolution: {integrity: sha512-hr26p7e93Rl0Za+JwW7EAnwAvKkehh12BU1Llm9Ykiibg4uIr2rbpxG9WCf56GuvidlTG9KiiQT/TXT1yAWxTA==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-loongarch64-gnu@4.35.0': - resolution: {integrity: sha512-5pMT5PzfgwcXEwOaSrqVsz/LvjDZt+vQ8RT/70yhPU06PTuq8WaHhfT1LW+cdD7mW6i/J5/XIkX/1tCAkh1W6g==} + '@rollup/rollup-linux-loong64-gnu@4.60.2': + resolution: {integrity: sha512-pOjB/uSIyDt+ow3k/RcLvUAOGpysT2phDn7TTUB3n75SlIgZzM6NKAqlErPhoFU+npgY3/n+2HYIQVbF70P9/A==} + cpu: [loong64] + os: [linux] + + '@rollup/rollup-linux-loong64-musl@4.60.2': + resolution: {integrity: sha512-2/w+q8jszv9Ww1c+6uJT3OwqhdmGP2/4T17cu8WuwyUuuaCDDJ2ojdyYwZzCxx0GcsZBhzi3HmH+J5pZNXnd+Q==} cpu: [loong64] os: [linux] @@ -3358,8 +3715,13 @@ packages: cpu: [ppc64] os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.35.0': - resolution: {integrity: sha512-c+zkcvbhbXF98f4CtEIP1EBA/lCic5xB0lToneZYvMeKu5Kamq3O8gqrxiYYLzlZH6E3Aq+TSW86E4ay8iD8EA==} + '@rollup/rollup-linux-ppc64-gnu@4.60.2': + resolution: {integrity: sha512-11+aL5vKheYgczxtPVVRhdptAM2H7fcDR5Gw4/bTcteuZBlH4oP9f5s9zYO9aGZvoGeBpqXI/9TZZihZ609wKw==} + cpu: [ppc64] + os: [linux] + + '@rollup/rollup-linux-ppc64-musl@4.60.2': + resolution: {integrity: sha512-i16fokAGK46IVZuV8LIIwMdtqhin9hfYkCh8pf8iC3QU3LpwL+1FSFGej+O7l3E/AoknL6Dclh2oTdnRMpTzFQ==} cpu: [ppc64] os: [linux] @@ -3368,8 +3730,13 @@ packages: cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.35.0': - resolution: {integrity: sha512-s91fuAHdOwH/Tad2tzTtPX7UZyytHIRR6V4+2IGlV0Cej5rkG0R61SX4l4y9sh0JBibMiploZx3oHKPnQBKe4g==} + '@rollup/rollup-linux-riscv64-gnu@4.60.2': + resolution: {integrity: sha512-49FkKS6RGQoriDSK/6E2GkAsAuU5kETFCh7pG4yD/ylj9rKhTmO3elsnmBvRD4PgJPds5W2PkhC82aVwmUcJ7A==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-riscv64-musl@4.60.2': + resolution: {integrity: sha512-mjYNkHPfGpUR00DuM1ZZIgs64Hpf4bWcz9Z41+4Q+pgDx73UwWdAYyf6EG/lRFldmdHHzgrYyge5akFUW0D3mQ==} cpu: [riscv64] os: [linux] @@ -3378,8 +3745,8 @@ packages: cpu: [s390x] os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.35.0': - resolution: {integrity: sha512-hQRkPQPLYJZYGP+Hj4fR9dDBMIM7zrzJDWFEMPdTnTy95Ljnv0/4w/ixFw3pTBMEuuEuoqtBINYND4M7ujcuQw==} + '@rollup/rollup-linux-s390x-gnu@4.60.2': + resolution: {integrity: sha512-ALyvJz965BQk8E9Al/JDKKDLH2kfKFLTGMlgkAbbYtZuJt9LU8DW3ZoDMCtQpXAltZxwBHevXz5u+gf0yA0YoA==} cpu: [s390x] os: [linux] @@ -3388,8 +3755,8 @@ packages: cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-gnu@4.35.0': - resolution: {integrity: sha512-Pim1T8rXOri+0HmV4CdKSGrqcBWX0d1HoPnQ0uw0bdp1aP5SdQVNBy8LjYncvnLgu3fnnCt17xjWGd4cqh8/hA==} + '@rollup/rollup-linux-x64-gnu@4.60.2': + resolution: {integrity: sha512-UQjrkIdWrKI626Du8lCQ6MJp/6V1LAo2bOK9OTu4mSn8GGXIkPXk/Vsp4bLHCd9Z9Iz2OTEaokUE90VweJgIYQ==} cpu: [x64] os: [linux] @@ -3398,18 +3765,28 @@ packages: cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-musl@4.35.0': - resolution: {integrity: sha512-QysqXzYiDvQWfUiTm8XmJNO2zm9yC9P/2Gkrwg2dH9cxotQzunBHYr6jk4SujCTqnfGxduOmQcI7c2ryuW8XVg==} + '@rollup/rollup-linux-x64-musl@4.60.2': + resolution: {integrity: sha512-bTsRGj6VlSdn/XD4CGyzMnzaBs9bsRxy79eTqTCBsA8TMIEky7qg48aPkvJvFe1HyzQ5oMZdg7AnVlWQSKLTnw==} cpu: [x64] os: [linux] + '@rollup/rollup-openbsd-x64@4.60.2': + resolution: {integrity: sha512-6d4Z3534xitaA1FcMWP7mQPq5zGwBmGbhphh2DwaA1aNIXUu3KTOfwrWpbwI4/Gr0uANo7NTtaykFyO2hPuFLg==} + cpu: [x64] + os: [openbsd] + + '@rollup/rollup-openharmony-arm64@4.60.2': + resolution: {integrity: sha512-NetAg5iO2uN7eB8zE5qrZ3CSil+7IJt4WDFLcC75Ymywq1VZVD6qJ6EvNLjZ3rEm6gB7XW5JdT60c6MN35Z85Q==} + cpu: [arm64] + os: [openharmony] + '@rollup/rollup-win32-arm64-msvc@4.18.1': resolution: {integrity: sha512-W2ZNI323O/8pJdBGil1oCauuCzmVd9lDmWBBqxYZcOqWD6aWqJtVBQ1dFrF4dYpZPks6F+xCZHfzG5hYlSHZ6g==} cpu: [arm64] os: [win32] - '@rollup/rollup-win32-arm64-msvc@4.35.0': - resolution: {integrity: sha512-OUOlGqPkVJCdJETKOCEf1mw848ZyJ5w50/rZ/3IBQVdLfR5jk/6Sr5m3iO2tdPgwo0x7VcncYuOvMhBWZq8ayg==} + '@rollup/rollup-win32-arm64-msvc@4.60.2': + resolution: {integrity: sha512-NCYhOotpgWZ5kdxCZsv6Iudx0wX8980Q/oW4pNFNihpBKsDbEA1zpkfxJGC0yugsUuyDZ7gL37dbzwhR0VI7pQ==} cpu: [arm64] os: [win32] @@ -3418,18 +3795,23 @@ packages: cpu: [ia32] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.35.0': - resolution: {integrity: sha512-2/lsgejMrtwQe44glq7AFFHLfJBPafpsTa6JvP2NGef/ifOa4KBoglVf7AKN7EV9o32evBPRqfg96fEHzWo5kw==} + '@rollup/rollup-win32-ia32-msvc@4.60.2': + resolution: {integrity: sha512-RXsaOqXxfoUBQoOgvmmijVxJnW2IGB0eoMO7F8FAjaj0UTywUO/luSqimWBJn04WNgUkeNhh7fs7pESXajWmkg==} cpu: [ia32] os: [win32] + '@rollup/rollup-win32-x64-gnu@4.60.2': + resolution: {integrity: sha512-qdAzEULD+/hzObedtmV6iBpdL5TIbKVztGiK7O3/KYSf+HIzU257+MX1EXJcyIiDbMAqmbwaufcYPvyRryeZtA==} + cpu: [x64] + os: [win32] + '@rollup/rollup-win32-x64-msvc@4.18.1': resolution: {integrity: sha512-yjk2MAkQmoaPYCSu35RLJ62+dz358nE83VfTePJRp8CG7aMg25mEJYpXFiD+NcevhX8LxD5OP5tktPXnXN7GDw==} cpu: [x64] os: [win32] - '@rollup/rollup-win32-x64-msvc@4.35.0': - resolution: {integrity: sha512-PIQeY5XDkrOysbQblSW7v3l1MDZzkTEzAfTPkj5VAu3FW8fS4ynyLg2sINp0fp3SjZ8xkRYpLqoKcYqAkhU1dw==} + '@rollup/rollup-win32-x64-msvc@4.60.2': + resolution: {integrity: sha512-Nd/SgG27WoA9e+/TdK74KnHz852TLa94ovOYySo/yMPuTmpckK/jIF2jSwS3g7ELSKXK13/cVdmg1Z/DaCWKxA==} cpu: [x64] os: [win32] @@ -3500,10 +3882,6 @@ packages: '@sinclair/typebox@0.27.8': resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} - '@sindresorhus/merge-streams@2.3.0': - resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} - engines: {node: '>=18'} - '@sinonjs/commons@3.0.1': resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==} @@ -3586,83 +3964,98 @@ packages: '@stablelib/xchacha20poly1305@1.0.1': resolution: {integrity: sha512-B1Abj0sMJ8h3HNmGnJ7vHBrAvxuNka6cJJoZ1ILN7iuacXp7sUYcgOVEOTLWj+rtQMpspY9tXSCRLPmN1mQNWg==} - '@tailwindcss/node@4.0.7': - resolution: {integrity: sha512-dkFXufkbRB2mu3FPsW5xLAUWJyexpJA+/VtQj18k3SUiJVLdpgzBd1v1gRRcIpEJj7K5KpxBKfOXlZxT3ZZRuA==} + '@standard-schema/spec@1.0.0': + resolution: {integrity: sha512-m2bOd0f2RT9k8QJx1JN85cZYyH1RqFBdlwtkSlf4tBDYLCiiZnv1fIIwacK6cqwXavOydf0NPToMQgpKq+dVlA==} + + '@tailwindcss/node@4.1.15': + resolution: {integrity: sha512-HF4+7QxATZWY3Jr8OlZrBSXmwT3Watj0OogeDvdUY/ByXJHQ+LBtqA2brDb3sBxYslIFx6UP94BJ4X6a4L9Bmw==} - '@tailwindcss/oxide-android-arm64@4.0.7': - resolution: {integrity: sha512-5iQXXcAeOHBZy8ASfHFm1k0O/9wR2E3tKh6+P+ilZZbQiMgu+qrnfpBWYPc3FPuQdWiWb73069WT5D+CAfx/tg==} + '@tailwindcss/oxide-android-arm64@4.1.15': + resolution: {integrity: sha512-TkUkUgAw8At4cBjCeVCRMc/guVLKOU1D+sBPrHt5uVcGhlbVKxrCaCW9OKUIBv1oWkjh4GbunD/u/Mf0ql6kEA==} engines: {node: '>= 10'} cpu: [arm64] os: [android] - '@tailwindcss/oxide-darwin-arm64@4.0.7': - resolution: {integrity: sha512-7yGZtEc5IgVYylqK/2B0yVqoofk4UAbkn1ygNpIJZyrOhbymsfr8uUFCueTu2fUxmAYIfMZ8waWo2dLg/NgLgg==} + '@tailwindcss/oxide-darwin-arm64@4.1.15': + resolution: {integrity: sha512-xt5XEJpn2piMSfvd1UFN6jrWXyaKCwikP4Pidcf+yfHTSzSpYhG3dcMktjNkQO3JiLCp+0bG0HoWGvz97K162w==} engines: {node: '>= 10'} cpu: [arm64] os: [darwin] - '@tailwindcss/oxide-darwin-x64@4.0.7': - resolution: {integrity: sha512-tPQDV20fBjb26yWbPqT1ZSoDChomMCiXTKn4jupMSoMCFyU7+OJvIY1ryjqBuY622dEBJ8LnCDDWsnj1lX9nNQ==} + '@tailwindcss/oxide-darwin-x64@4.1.15': + resolution: {integrity: sha512-TnWaxP6Bx2CojZEXAV2M01Yl13nYPpp0EtGpUrY+LMciKfIXiLL2r/SiSRpagE5Fp2gX+rflp/Os1VJDAyqymg==} engines: {node: '>= 10'} cpu: [x64] os: [darwin] - '@tailwindcss/oxide-freebsd-x64@4.0.7': - resolution: {integrity: sha512-sZqJpTyTZiknU9LLHuByg5GKTW+u3FqM7q7myequAXxKOpAFiOfXpY710FuMY+gjzSapyRbDXJlsTQtCyiTo5w==} + '@tailwindcss/oxide-freebsd-x64@4.1.15': + resolution: {integrity: sha512-quISQDWqiB6Cqhjc3iWptXVZHNVENsWoI77L1qgGEHNIdLDLFnw3/AfY7DidAiiCIkGX/MjIdB3bbBZR/G2aJg==} engines: {node: '>= 10'} cpu: [x64] os: [freebsd] - '@tailwindcss/oxide-linux-arm-gnueabihf@4.0.7': - resolution: {integrity: sha512-PBgvULgeSswjd8cbZ91gdIcIDMdc3TUHV5XemEpxlqt9M8KoydJzkuB/Dt910jYdofOIaTWRL6adG9nJICvU4A==} + '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.15': + resolution: {integrity: sha512-ObG76+vPlab65xzVUQbExmDU9FIeYLQ5k2LrQdR2Ud6hboR+ZobXpDoKEYXf/uOezOfIYmy2Ta3w0ejkTg9yxg==} engines: {node: '>= 10'} cpu: [arm] os: [linux] - '@tailwindcss/oxide-linux-arm64-gnu@4.0.7': - resolution: {integrity: sha512-By/a2yeh+e9b+C67F88ndSwVJl2A3tcUDb29FbedDi+DZ4Mr07Oqw9Y1DrDrtHIDhIZ3bmmiL1dkH2YxrtV+zw==} + '@tailwindcss/oxide-linux-arm64-gnu@4.1.15': + resolution: {integrity: sha512-4WbBacRmk43pkb8/xts3wnOZMDKsPFyEH/oisCm2q3aLZND25ufvJKcDUpAu0cS+CBOL05dYa8D4U5OWECuH/Q==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - '@tailwindcss/oxide-linux-arm64-musl@4.0.7': - resolution: {integrity: sha512-WHYs3cpPEJb/ccyT20NOzopYQkl7JKncNBUbb77YFlwlXMVJLLV3nrXQKhr7DmZxz2ZXqjyUwsj2rdzd9stYdw==} + '@tailwindcss/oxide-linux-arm64-musl@4.1.15': + resolution: {integrity: sha512-AbvmEiteEj1nf42nE8skdHv73NoR+EwXVSgPY6l39X12Ex8pzOwwfi3Kc8GAmjsnsaDEbk+aj9NyL3UeyHcTLg==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - '@tailwindcss/oxide-linux-x64-gnu@4.0.7': - resolution: {integrity: sha512-7bP1UyuX9kFxbOwkeIJhBZNevKYPXB6xZI37v09fqi6rqRJR8elybwjMUHm54GVP+UTtJ14ueB1K54Dy1tIO6w==} + '@tailwindcss/oxide-linux-x64-gnu@4.1.15': + resolution: {integrity: sha512-+rzMVlvVgrXtFiS+ES78yWgKqpThgV19ISKD58Ck+YO5pO5KjyxLt7AWKsWMbY0R9yBDC82w6QVGz837AKQcHg==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - '@tailwindcss/oxide-linux-x64-musl@4.0.7': - resolution: {integrity: sha512-gBQIV8nL/LuhARNGeroqzXymMzzW5wQzqlteVqOVoqwEfpHOP3GMird5pGFbnpY+NP0fOlsZGrxxOPQ4W/84bQ==} + '@tailwindcss/oxide-linux-x64-musl@4.1.15': + resolution: {integrity: sha512-fPdEy7a8eQN9qOIK3Em9D3TO1z41JScJn8yxl/76mp4sAXFDfV4YXxsiptJcOwy6bGR+70ZSwFIZhTXzQeqwQg==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - '@tailwindcss/oxide-win32-arm64-msvc@4.0.7': - resolution: {integrity: sha512-aH530NFfx0kpQpvYMfWoeG03zGnRCMVlQG8do/5XeahYydz+6SIBxA1tl/cyITSJyWZHyVt6GVNkXeAD30v0Xg==} + '@tailwindcss/oxide-wasm32-wasi@4.1.15': + resolution: {integrity: sha512-sJ4yd6iXXdlgIMfIBXuVGp/NvmviEoMVWMOAGxtxhzLPp9LOj5k0pMEMZdjeMCl4C6Up+RM8T3Zgk+BMQ0bGcQ==} + engines: {node: '>=14.0.0'} + cpu: [wasm32] + bundledDependencies: + - '@napi-rs/wasm-runtime' + - '@emnapi/core' + - '@emnapi/runtime' + - '@tybys/wasm-util' + - '@emnapi/wasi-threads' + - tslib + + '@tailwindcss/oxide-win32-arm64-msvc@4.1.15': + resolution: {integrity: sha512-sJGE5faXnNQ1iXeqmRin7Ds/ru2fgCiaQZQQz3ZGIDtvbkeV85rAZ0QJFMDg0FrqsffZG96H1U9AQlNBRLsHVg==} engines: {node: '>= 10'} cpu: [arm64] os: [win32] - '@tailwindcss/oxide-win32-x64-msvc@4.0.7': - resolution: {integrity: sha512-8Cva6bbJN7ZJx320k7vxGGdU0ewmpfS5A4PudyzUuofdi8MgeINuiiWiPQ0VZCda/GX88K6qp+6UpDZNVr8HMQ==} + '@tailwindcss/oxide-win32-x64-msvc@4.1.15': + resolution: {integrity: sha512-NLeHE7jUV6HcFKS504bpOohyi01zPXi2PXmjFfkzTph8xRxDdxkRsXm/xDO5uV5K3brrE1cCwbUYmFUSHR3u1w==} engines: {node: '>= 10'} cpu: [x64] os: [win32] - '@tailwindcss/oxide@4.0.7': - resolution: {integrity: sha512-yr6w5YMgjy+B+zkJiJtIYGXW+HNYOPfRPtSs+aqLnKwdEzNrGv4ZuJh9hYJ3mcA+HMq/K1rtFV+KsEr65S558g==} + '@tailwindcss/oxide@4.1.15': + resolution: {integrity: sha512-krhX+UOOgnsUuks2SR7hFafXmLQrKxB4YyRTERuCE59JlYL+FawgaAlSkOYmDRJdf1Q+IFNDMl9iRnBW7QBDfQ==} engines: {node: '>= 10'} - '@tailwindcss/vite@4.0.7': - resolution: {integrity: sha512-GYx5sxArfIMtdZCsxfya3S/efMmf4RvfqdiLUozkhmSFBNUFnYVodatpoO/en4/BsOIGvq/RB6HwcTLn9prFnQ==} + '@tailwindcss/vite@4.1.15': + resolution: {integrity: sha512-B6s60MZRTUil+xKoZoGe6i0Iar5VuW+pmcGlda2FX+guDuQ1G1sjiIy1W0frneVpeL/ZjZ4KEgWZHNrIm++2qA==} peerDependencies: - vite: ^5.2.0 || ^6 + vite: ^5.2.0 || ^6 || ^7 '@tanstack/query-core@5.18.0': resolution: {integrity: sha512-8c6nxeAnGHxIDZIyDmHdmgFt4D+LprAQaJmjsnM4szcIjsWOyFlzxdqQUuQ/XuQRvUgqYaqlJTtDADlSS7pTPQ==} @@ -3809,6 +4202,9 @@ packages: resolution: {integrity: sha512-iUbTUwD4f4ibdLy5PWWb7ITEz4S4VAP9/mNjFhoRY3cKVVTDfmykrVTKjPOIHWzDgAmLtgrLvySIIC9ZBVENBw==} engines: {node: '>=18.0.0'} + '@tybys/wasm-util@0.10.1': + resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==} + '@types/acorn@4.0.6': resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==} @@ -3836,9 +4232,6 @@ packages: '@types/connect@3.4.38': resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} - '@types/cookie@0.6.0': - resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==} - '@types/d3-array@3.2.1': resolution: {integrity: sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==} @@ -3947,6 +4340,9 @@ packages: '@types/estree@1.0.6': resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} + '@types/estree@1.0.8': + resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} + '@types/filesystem@0.0.35': resolution: {integrity: sha512-1eKvCaIBdrD2mmMgy5dwh564rVvfEhZTWVQQGRNn0Nt4ZEnJ0C8oSUCzvMKRA4lGde5oEVo+q2MrTTbV/GHDCQ==} @@ -4004,14 +4400,8 @@ packages: '@types/pbkdf2@3.1.2': resolution: {integrity: sha512-uRwJqmiXmh9++aSu1VNEn3iIxWOhd8AHXNSdlaLfdAAdSTY9jYVeGWnzejM3dvrkbqE3/hyQkQQ29IFATEGlew==} - '@types/prop-types@15.7.11': - resolution: {integrity: sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==} - - '@types/react@18.2.47': - resolution: {integrity: sha512-xquNkkOirwyCgoClNk85BjP+aqnIS+ckAJ8i37gAbDs14jfW/J23f2GItAf33oiUPQnqNMALiFeoM9Y5mbjpVQ==} - - '@types/scheduler@0.16.8': - resolution: {integrity: sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==} + '@types/react@19.2.14': + resolution: {integrity: sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==} '@types/secp256k1@4.0.6': resolution: {integrity: sha512-hHxJU6PAEUn0TP4S/ZOzuTUvJWuZ6eIKeNKb5RBpODvSl6hp1Wrw4s7ATY50rklRCScUDpHzVA/DQdSjJ3UoYQ==} @@ -4048,37 +4438,42 @@ packages: peerDependencies: typescript: '*' + '@typescript/vfs@1.6.4': + resolution: {integrity: sha512-PJFXFS4ZJKiJ9Qiuix6Dz/OwEIqHD7Dme1UwZhTK11vR+5dqW2ACbdndWQexBzCx+CPuMe5WBYQWCsFyGlQLlQ==} + peerDependencies: + typescript: '*' + '@ungap/structured-clone@1.2.0': resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} - '@vanilla-extract/babel-plugin-debug-ids@1.2.0': - resolution: {integrity: sha512-z5nx2QBnOhvmlmBKeRX5sPVLz437wV30u+GJL+Hzj1rGiJYVNvgIIlzUpRNjVQ0MgAgiQIqIUbqPnmMc6HmDlQ==} + '@vanilla-extract/babel-plugin-debug-ids@1.2.2': + resolution: {integrity: sha512-MeDWGICAF9zA/OZLOKwhoRlsUW+fiMwnfuOAqFVohL31Agj7Q/RBWAYweqjHLgFBCsdnr6XIfwjJnmb2znEWxw==} - '@vanilla-extract/compiler@0.1.2': - resolution: {integrity: sha512-B4T5P+Fz2Big0GRspQSi4BIyPF3cJ2/+/NWSI6Lw5Tq2JXv9nzjTGU4gKlWzyvaxt/0CLPE+Zo40fUsUv5lttQ==} + '@vanilla-extract/compiler@0.7.0': + resolution: {integrity: sha512-rZQ40HVmsxfGLjoflwwsaUBLfpbpKDoZC19oiDA0FHq4LdrYtyVbFkc0MfqkNo/qBCvaZfsRezCqk0QQxCqZ8w==} - '@vanilla-extract/css@1.17.1': - resolution: {integrity: sha512-tOHQXHm10FrJeXKFeWE09JfDGN/tvV6mbjwoNB9k03u930Vg021vTnbrCwVLkECj9Zvh/SHLBHJ4r2flGqfovw==} + '@vanilla-extract/css@1.20.1': + resolution: {integrity: sha512-5I9RNo5uZW9tsBnqrWzJqELegOqTHBrZyDFnES0gR9gJJHBB9dom1N0bwITM9tKwBcfKrTX4a6DHVeQdJ2ubQA==} - '@vanilla-extract/dynamic@2.1.2': - resolution: {integrity: sha512-9BGMciD8rO1hdSPIAh1ntsG4LPD3IYKhywR7VOmmz9OO4Lx1hlwkSg3E6X07ujFx7YuBfx0GDQnApG9ESHvB2A==} + '@vanilla-extract/dynamic@2.1.5': + resolution: {integrity: sha512-QGIFGb1qyXQkbzx6X6i3+3LMc/iv/ZMBttMBL+Wm/DetQd36KsKsFg5CtH3qy+1hCA/5w93mEIIAiL4fkM8ycw==} - '@vanilla-extract/integration@8.0.1': - resolution: {integrity: sha512-ag64t+AM96XGOiloc5ryZHP5rbfleFyfoPKa42QqOuyAlLx/UpW5epSY+RUldizP4P/uLy5WFRiYlNddK1eQUQ==} + '@vanilla-extract/integration@8.0.10': + resolution: {integrity: sha512-01IB5gbrgTe8IIrtfRXXTmACl5D8Enzqp2cKbCWaMKXmnoilXXVCPbJoA96q88PXkNDXsXepCxUugMvEmL3c7A==} - '@vanilla-extract/private@1.0.6': - resolution: {integrity: sha512-ytsG/JLweEjw7DBuZ/0JCN4WAQgM9erfSTdS1NQY778hFQSZ6cfCDEZZ0sgVm4k54uNz6ImKB33AYvSR//fjxw==} + '@vanilla-extract/private@1.0.9': + resolution: {integrity: sha512-gT2jbfZuaaCLrAxwXbRgIhGhcXbRZCG3v4TTUnjw0EJ7ArdBRxkq4msNJkbuRkCgfIK5ATmprB5t9ljvLeFDEA==} - '@vanilla-extract/vite-plugin@5.0.1': - resolution: {integrity: sha512-65IhqaNEAv/KjO1jJ52hSXiKUJqeFPlyY/hpRT71Y6bFoasHhzOcZKIQ/ze4fQovjjDL4US565rEiIn1I2qhFA==} + '@vanilla-extract/vite-plugin@5.2.2': + resolution: {integrity: sha512-AUyB4fDR2b/Mo0lcXhhlf6RxnDPYwFMyKKopalJ4BwQNKYzZSoTwHJ1PLPO9SKhpz7lzXc0Z18GHQZOewzl3YA==} peerDependencies: - vite: ^5.0.0 || ^6.0.0 + vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 - '@vitejs/plugin-react@4.3.4': - resolution: {integrity: sha512-SCCPBJtYLdE8PX/7ZQAs1QAZ8Jqwih+0VBLum1EGqmCCQal+MIUqLCzj3ZUy8ufbC0cAM4LRlSTm7IQJwWT4ug==} - engines: {node: ^14.18.0 || >=16.0.0} + '@vitejs/plugin-react@5.2.0': + resolution: {integrity: sha512-YmKkfhOAi3wsB1PhJq5Scj3GXMn3WvtQ/JC0xoopuHoXSdmtdStOpFrYaT1kie2YgFBcIe64ROzMYRjCrYOdYw==} + engines: {node: ^20.19.0 || >=22.12.0} peerDependencies: - vite: ^4.2.0 || ^5.0.0 || ^6.0.0 + vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 '@vitest/expect@2.1.2': resolution: {integrity: sha512-FEgtlN8mIUSEAAnlvn7mP8vzaWhEaAEvhSXCqrsijM7K6QqjB11qoRZYEd4AKSCDz8p0/+yH5LzhZ47qt+EyPg==} @@ -4650,9 +5045,6 @@ packages: brace-expansion@1.1.11: resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} - brace-expansion@2.0.1: - resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} - braces@3.0.2: resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} engines: {node: '>=8'} @@ -4720,6 +5112,10 @@ packages: resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} engines: {node: '>=8'} + cac@7.0.0: + resolution: {integrity: sha512-tixWYgm5ZoOD+3g6UTea91eow5z6AAHaho3g0V9CNSNb45gM8SmflpAc+GRd1InC4AqN/07Unrgp56Y94N9hJQ==} + engines: {node: '>=20.19.0'} + call-bind@1.0.5: resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==} @@ -4944,8 +5340,8 @@ packages: resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} engines: {node: '>= 0.6'} - compression@1.8.0: - resolution: {integrity: sha512-k6WLKfunuqCYD3t6AsuPGvQWaKwuLLh2/xHNcX4qE+vIfDNXpSqnrhwA7O53R7WVQUnt8dVAIW+YHr7xTgOgGA==} + compression@1.8.1: + resolution: {integrity: sha512-9mAqGPHLakhCLeNyxPkK4xVo746zQ/czLH1Ky+vkitMnWfWZps8r0qXuwhwizagCRttsL4lfG4pIOvaWLpAP0w==} engines: {node: '>= 0.8.0'} concat-map@0.0.1: @@ -5055,13 +5451,8 @@ packages: resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} engines: {node: '>= 6'} - cssesc@3.0.0: - resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} - engines: {node: '>=4'} - hasBin: true - - csstype@3.1.3: - resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} + csstype@3.2.3: + resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==} cytoscape-cose-bilkent@4.1.0: resolution: {integrity: sha512-wgQlVIUJF13Quxiv5e1gstZ08rnZj2XaLHGoFMYXz7SkNfCDOOteKBE6SYRfA9WxxI/iBc3ajfDoc6hb/MRAHQ==} @@ -5274,6 +5665,15 @@ packages: supports-color: optional: true + debug@4.4.3: + resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + decamelize@1.2.0: resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} engines: {node: '>=0.10.0'} @@ -5473,8 +5873,8 @@ packages: resolution: {integrity: sha512-9JktcM3u18nU9N2Lz3bWeBgxVgOKpw7yhRaoxQA3FUDZzzw+9WlA6p4G4u0RixNkg14fH7EfEc/RhpurtiROTQ==} engines: {node: '>=10.0.0'} - enhanced-resolve@5.18.1: - resolution: {integrity: sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==} + enhanced-resolve@5.20.1: + resolution: {integrity: sha512-Qohcme7V1inbAfvjItgw0EaxVX5q2rdVEZHRBrEQdRZTssLDGsL8Lwrznl8oQ/6kuTJONLaDcGjkNP247XEhcA==} engines: {node: '>=10.13.0'} entities@6.0.1: @@ -5507,8 +5907,8 @@ packages: resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} engines: {node: '>= 0.4'} - es-module-lexer@1.6.0: - resolution: {integrity: sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==} + es-module-lexer@2.0.0: + resolution: {integrity: sha512-5POEcUuZybH7IdmGsD8wlf0AI55wMecM9rVBTI/qEAy2c1kTOm3DjFYjrBdI2K3BaJjJYfYFeRtM0t9ssnRuxw==} es5-ext@0.10.62: resolution: {integrity: sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==} @@ -5526,6 +5926,12 @@ packages: es6-symbol@3.1.3: resolution: {integrity: sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==} + esast-util-from-estree@2.0.0: + resolution: {integrity: sha512-4CyanoAudUSBAn5K13H4JhsMH6L9ZP7XbLVe/dKybkxMO7eDyLsT8UHl9TRNrU2Gr9nz+FovfSIjuXWJ81uVwQ==} + + esast-util-from-js@2.0.1: + resolution: {integrity: sha512-8Ja+rNJ0Lt56Pcf3TAmpBZjmx8ZcK5Ts4cAzIOjsjevg9oSXJnl6SUQ2EevU8tv3h6ZLWmoKL5H4fgWvdvfETw==} + esbuild@0.19.11: resolution: {integrity: sha512-HJ96Hev2hX/6i5cDVwcqiJBBtuo9+FeIJOtZ9W1kA5M6AMJRHUZlpYZ1/SbEwtO0ioNAW8rUooVpC/WehY2SfA==} engines: {node: '>=12'} @@ -5541,6 +5947,11 @@ packages: engines: {node: '>=18'} hasBin: true + esbuild@0.27.7: + resolution: {integrity: sha512-IxpibTjyVnmrIQo5aqNpCgoACA/dTKLTlhMHihVHhdkxKyPO1uBBthumT0rdHmcsk9uMonIWS0m4FljWzILh3w==} + engines: {node: '>=18'} + hasBin: true + escalade@3.1.1: resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} engines: {node: '>=6'} @@ -5582,6 +5993,9 @@ packages: estree-util-is-identifier-name@3.0.0: resolution: {integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==} + estree-util-scope@1.0.0: + resolution: {integrity: sha512-2CAASclonf+JFWBNJPndcOpA8EMJwa0Q8LUFJEKqXLW6+qBvbFZuF5gItbQOs/umBUkjviCSDCbBwU2cXbmrhQ==} + estree-util-to-js@2.0.0: resolution: {integrity: sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg==} @@ -5717,10 +6131,6 @@ packages: fast-fifo@1.3.2: resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==} - fast-glob@3.3.3: - resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} - engines: {node: '>=8.6.0'} - fast-redact@3.3.0: resolution: {integrity: sha512-6T5V1QK1u4oF+ATxs1lWUmlEk6P2T9HqJG3e2DnHOdVgZy2rFJBoEnrIedcTXlkAHU/zKC+7KETJ+KGGKwxgMQ==} engines: {node: '>=6'} @@ -5735,15 +6145,21 @@ packages: resolution: {integrity: sha512-RKihhV+SHsIUGXObeVy9AXiBbFwkVk7Syp8XgwN5U3JV416+Gwp/GO9i0JYKmikykgz/UHRrrV4ROuZEo/T0ig==} hasBin: true - fastq@1.16.0: - resolution: {integrity: sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==} - fault@2.0.1: resolution: {integrity: sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==} fb-watchman@2.0.2: resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} + fdir@6.5.0: + resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==} + engines: {node: '>=12.0.0'} + peerDependencies: + picomatch: ^3 || ^4 + peerDependenciesMeta: + picomatch: + optional: true + fetch-blob@3.2.0: resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==} engines: {node: ^12.20 || >= 14.13} @@ -5830,8 +6246,8 @@ packages: resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} engines: {node: '>= 0.6'} - fs-extra@11.3.0: - resolution: {integrity: sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==} + fs-extra@11.3.4: + resolution: {integrity: sha512-CTXd6rk/M3/ULNQj8FBqBWHYBVYybQ3VPBw0xGKFe3tuH7ytT6ACnvzpIQ3UZtB8yvUKC2cXn1a+x+5EVQLovA==} engines: {node: '>=14.14'} fs-extra@8.1.0: @@ -5906,7 +6322,7 @@ packages: glob@7.2.3: resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} - deprecated: Glob versions prior to v9 are no longer supported + deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me global@4.4.0: resolution: {integrity: sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==} @@ -5923,10 +6339,6 @@ packages: resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} engines: {node: '>= 0.4'} - globby@14.1.0: - resolution: {integrity: sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA==} - engines: {node: '>=18'} - gopd@1.0.1: resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} @@ -6059,8 +6471,8 @@ packages: hoist-non-react-statics@3.3.2: resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} - hono@4.7.4: - resolution: {integrity: sha512-Pst8FuGqz3L7tFF+u9Pu70eI0xa5S3LPUmrNd5Jm8nTHze9FxLTK9Kaj5g/k4UcwuJSXTP65SyHOPLrffpcAJg==} + hono@4.12.14: + resolution: {integrity: sha512-am5zfg3yu6sqn5yjKBNqhnTX7Cv+m00ox+7jbaKkrLMRJ4rAdldd1xPd/JzbBWspqaQv6RSTrgFN95EsfhC+7w==} engines: {node: '>=16.9.0'} html-parse-stringify@3.0.1: @@ -6111,10 +6523,6 @@ packages: ieee754@1.2.1: resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} - ignore@7.0.3: - resolution: {integrity: sha512-bAH5jbK/F3T3Jls4I0SO1hmPR0dKU0a7+SY6n1yzRtG54FLO8d6w/nxLFX2Nb7dBu6cCWXPaAME6cYqFUMmuCA==} - engines: {node: '>= 4'} - image-size@1.2.0: resolution: {integrity: sha512-4S8fwbO6w3GeCVN6OPtA9I5IGKkcDMPcKndtUlpJuCwu7JLjtj7JZpwqLuyY2nrmQT3AWsCJLSKPsc2mPBSl3w==} engines: {node: '>=16.x'} @@ -6335,9 +6743,6 @@ packages: resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} engines: {node: '>=0.10.0'} - is-reference@3.0.2: - resolution: {integrity: sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==} - is-stream@2.0.1: resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} engines: {node: '>=8'} @@ -6501,8 +6906,8 @@ packages: resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==} hasBin: true - jiti@2.4.2: - resolution: {integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==} + jiti@2.6.1: + resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==} hasBin: true joi@17.13.3: @@ -6665,68 +7070,144 @@ packages: lighthouse-logger@1.4.2: resolution: {integrity: sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==} - lightningcss-darwin-arm64@1.29.2: - resolution: {integrity: sha512-cK/eMabSViKn/PG8U/a7aCorpeKLMlK0bQeNHmdb7qUnBkNPnL+oV5DjJUo0kqWsJUapZsM4jCfYItbqBDvlcA==} + lightningcss-android-arm64@1.30.2: + resolution: {integrity: sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [android] + + lightningcss-android-arm64@1.32.0: + resolution: {integrity: sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [android] + + lightningcss-darwin-arm64@1.30.2: + resolution: {integrity: sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [darwin] + + lightningcss-darwin-arm64@1.32.0: + resolution: {integrity: sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==} engines: {node: '>= 12.0.0'} cpu: [arm64] os: [darwin] - lightningcss-darwin-x64@1.29.2: - resolution: {integrity: sha512-j5qYxamyQw4kDXX5hnnCKMf3mLlHvG44f24Qyi2965/Ycz829MYqjrVg2H8BidybHBp9kom4D7DR5VqCKDXS0w==} + lightningcss-darwin-x64@1.30.2: + resolution: {integrity: sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [darwin] + + lightningcss-darwin-x64@1.32.0: + resolution: {integrity: sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [darwin] - lightningcss-freebsd-x64@1.29.2: - resolution: {integrity: sha512-wDk7M2tM78Ii8ek9YjnY8MjV5f5JN2qNVO+/0BAGZRvXKtQrBC4/cn4ssQIpKIPP44YXw6gFdpUF+Ps+RGsCwg==} + lightningcss-freebsd-x64@1.30.2: + resolution: {integrity: sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [freebsd] + + lightningcss-freebsd-x64@1.32.0: + resolution: {integrity: sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [freebsd] - lightningcss-linux-arm-gnueabihf@1.29.2: - resolution: {integrity: sha512-IRUrOrAF2Z+KExdExe3Rz7NSTuuJ2HvCGlMKoquK5pjvo2JY4Rybr+NrKnq0U0hZnx5AnGsuFHjGnNT14w26sg==} + lightningcss-linux-arm-gnueabihf@1.30.2: + resolution: {integrity: sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==} + engines: {node: '>= 12.0.0'} + cpu: [arm] + os: [linux] + + lightningcss-linux-arm-gnueabihf@1.32.0: + resolution: {integrity: sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==} engines: {node: '>= 12.0.0'} cpu: [arm] os: [linux] - lightningcss-linux-arm64-gnu@1.29.2: - resolution: {integrity: sha512-KKCpOlmhdjvUTX/mBuaKemp0oeDIBBLFiU5Fnqxh1/DZ4JPZi4evEH7TKoSBFOSOV3J7iEmmBaw/8dpiUvRKlQ==} + lightningcss-linux-arm64-gnu@1.30.2: + resolution: {integrity: sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [linux] + + lightningcss-linux-arm64-gnu@1.32.0: + resolution: {integrity: sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [linux] + + lightningcss-linux-arm64-musl@1.30.2: + resolution: {integrity: sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==} engines: {node: '>= 12.0.0'} cpu: [arm64] os: [linux] - lightningcss-linux-arm64-musl@1.29.2: - resolution: {integrity: sha512-Q64eM1bPlOOUgxFmoPUefqzY1yV3ctFPE6d/Vt7WzLW4rKTv7MyYNky+FWxRpLkNASTnKQUaiMJ87zNODIrrKQ==} + lightningcss-linux-arm64-musl@1.32.0: + resolution: {integrity: sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==} engines: {node: '>= 12.0.0'} cpu: [arm64] os: [linux] - lightningcss-linux-x64-gnu@1.29.2: - resolution: {integrity: sha512-0v6idDCPG6epLXtBH/RPkHvYx74CVziHo6TMYga8O2EiQApnUPZsbR9nFNrg2cgBzk1AYqEd95TlrsL7nYABQg==} + lightningcss-linux-x64-gnu@1.30.2: + resolution: {integrity: sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [linux] + + lightningcss-linux-x64-gnu@1.32.0: + resolution: {integrity: sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [linux] + + lightningcss-linux-x64-musl@1.30.2: + resolution: {integrity: sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [linux] - lightningcss-linux-x64-musl@1.29.2: - resolution: {integrity: sha512-rMpz2yawkgGT8RULc5S4WiZopVMOFWjiItBT7aSfDX4NQav6M44rhn5hjtkKzB+wMTRlLLqxkeYEtQ3dd9696w==} + lightningcss-linux-x64-musl@1.32.0: + resolution: {integrity: sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [linux] - lightningcss-win32-arm64-msvc@1.29.2: - resolution: {integrity: sha512-nL7zRW6evGQqYVu/bKGK+zShyz8OVzsCotFgc7judbt6wnB2KbiKKJwBE4SGoDBQ1O94RjW4asrCjQL4i8Fhbw==} + lightningcss-win32-arm64-msvc@1.30.2: + resolution: {integrity: sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [win32] + + lightningcss-win32-arm64-msvc@1.32.0: + resolution: {integrity: sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==} engines: {node: '>= 12.0.0'} cpu: [arm64] os: [win32] - lightningcss-win32-x64-msvc@1.29.2: - resolution: {integrity: sha512-EdIUW3B2vLuHmv7urfzMI/h2fmlnOQBk1xlsDxkN1tCWKjNFjfLhGxYk8C8mzpSfr+A6jFFIi8fU6LbQGsRWjA==} + lightningcss-win32-x64-msvc@1.30.2: + resolution: {integrity: sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [win32] + + lightningcss-win32-x64-msvc@1.32.0: + resolution: {integrity: sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [win32] - lightningcss@1.29.2: - resolution: {integrity: sha512-6b6gd/RUXKaw5keVdSEtqFVdzWnU5jMxTUjA2bVcMNPLwSQ08Sv/UodBVtETLCn7k4S1Ibxwh7k68IwLZPgKaA==} + lightningcss@1.30.2: + resolution: {integrity: sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==} + engines: {node: '>= 12.0.0'} + + lightningcss@1.32.0: + resolution: {integrity: sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==} engines: {node: '>= 12.0.0'} lines-and-columns@1.2.4: @@ -6851,10 +7332,10 @@ packages: resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} engines: {node: '>=10'} - lucide-react@0.309.0: - resolution: {integrity: sha512-zNVPczuwFrCfksZH3zbd1UDE6/WYhYAdbe2k7CImVyPAkXLgIwbs6eXQ4loigqDnUFjyFYCI5jZ1y10Kqal0dg==} + lucide-react@1.8.0: + resolution: {integrity: sha512-WuvlsjngSk7TnTBJ1hsCy3ql9V9VOdcPkd3PKcSmM34vJD8KG6molxz7m7zbYFgICwsanQWmJ13JlYs4Zp7Arw==} peerDependencies: - react: ^16.5.1 || ^17.0.0 || ^18.0.0 + react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0 magic-sdk@22.1.1: resolution: {integrity: sha512-K9YDI77WcCh47oa5K6TuohpXbw1+lRCvKsTEP5fNGN17V7+nvgUkjjt1geAF4WE4pj1hCjz+FXlWu6wstwW8Uw==} @@ -6862,6 +7343,9 @@ packages: magic-string@0.30.11: resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==} + magic-string@0.30.21: + resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==} + make-dir@2.1.0: resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} engines: {node: '>=6'} @@ -6957,10 +7441,6 @@ packages: merge-stream@2.0.0: resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} - merge2@1.4.1: - resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} - engines: {node: '>= 8'} - mermaid-isomorphic@3.0.4: resolution: {integrity: sha512-XQTy7H1XwHK3DPEHf+ZNWiqUEd9BwX3Xws38R9Fj2gx718srmgjlZoUzHr+Tca+O+dqJOJsAJaKzCoP65QDfDg==} peerDependencies: @@ -7203,15 +7683,11 @@ packages: minimatch@3.1.2: resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} - minimatch@9.0.5: - resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} - engines: {node: '>=16 || 14 >=14.17'} - minimist@1.2.8: resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} - minisearch@6.3.0: - resolution: {integrity: sha512-ihFnidEeU8iXzcVHy74dhkxh/dn8Dc08ERl0xwoMMGqp4+LvRSCgicb+zGqWthVokQKvCSxITlh3P08OzdTYCQ==} + minisearch@7.2.0: + resolution: {integrity: sha512-dqT2XBYUOZOiC5t2HRnwADjhNS2cecp9u+TJRiJ1Qp/f5qjkeT5APcGPjHw+bz89Ms8Jp+cG4AlE+QZ/QnDglg==} mipd@0.0.5: resolution: {integrity: sha512-gbKA784D2WKb5H/GtqEv+Ofd1S9Zj+Z/PGDIl1u1QAbswkxD28BQ5bSXQxkeBzPBABg1iDSbiwGG1XqlOxRspA==} @@ -7221,9 +7697,6 @@ packages: typescript: optional: true - mitt@3.0.1: - resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==} - mkdirp@0.5.6: resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} hasBin: true @@ -7293,6 +7766,11 @@ packages: resolution: {integrity: sha512-/sF3ee6zvScXMb1XFJ8gDsSnY+X8PbOyjIuBhtgis10W2Jx4ZjIhikUCIF9c4gpJxVnQIsPAFrSwTCuAjicP6g==} engines: {node: '>=8.0.0'} + nanoid@3.3.11: + resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + nanoid@3.3.7: resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} @@ -7410,17 +7888,20 @@ packages: resolution: {integrity: sha512-wsJ9gfSz1/s4ZsJN01lyonwuxA1tml6X1yBDnfpMglypcBRFZZkus26EdPSlqS5GJfYddVZa22p3VNb3z5m5Ig==} engines: {node: '>=6.5.0', npm: '>=3'} - nuqs@2.4.3: - resolution: {integrity: sha512-BgtlYpvRwLYiJuWzxt34q2bXu/AIS66sLU1QePIMr2LWkb+XH0vKXdbLSgn9t6p7QKzwI7f38rX3Wl9llTXQ8Q==} + nuqs@2.8.9: + resolution: {integrity: sha512-8ou6AEwsxMWSYo2qkfZtYFVzngwbKmg4c00HVxC1fF6CEJv3Fwm6eoZmfVPALB+vw8Udo7KL5uy96PFcYe1BIQ==} peerDependencies: '@remix-run/react': '>=2' + '@tanstack/react-router': ^1 next: '>=14.2.0' react: '>=18.2.0 || ^19.0.0-0' - react-router: ^6 || ^7 - react-router-dom: ^6 || ^7 + react-router: ^5 || ^6 || ^7 + react-router-dom: ^5 || ^6 || ^7 peerDependenciesMeta: '@remix-run/react': optional: true + '@tanstack/react-router': + optional: true next: optional: true react-router: @@ -7460,6 +7941,9 @@ packages: oboe@2.1.5: resolution: {integrity: sha512-zRFWiF+FoicxEs3jNI/WYUrVEgA7DeET/InK0XQuudGHRg8iIob3cNPrJTKaz4004uaA9Pbe+Dwa8iluhjLZWA==} + obug@2.1.1: + resolution: {integrity: sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==} + ofetch@1.3.3: resolution: {integrity: sha512-s1ZCMmQWXy4b5K/TW9i/DtiN8Ku+xCiHcjQ6/J/nDdssirrQNOoB165Zu8EqLMA2lln1JUth9a0aW9Ap2ctrUg==} @@ -7477,8 +7961,8 @@ packages: resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} engines: {node: '>= 0.8'} - on-headers@1.0.2: - resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==} + on-headers@1.1.0: + resolution: {integrity: sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A==} engines: {node: '>= 0.8'} once@1.4.0: @@ -7630,10 +8114,6 @@ packages: resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} engines: {node: '>=8'} - path-type@6.0.0: - resolution: {integrity: sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==} - engines: {node: '>=18'} - pathe@1.1.2: resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} @@ -7648,9 +8128,6 @@ packages: resolution: {integrity: sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==} engines: {node: '>=0.12'} - periscopic@3.1.0: - resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==} - permissionless@0.2.50: resolution: {integrity: sha512-e0guzxYzj5692CfNNS2g6dcOFrUcbABgUyOQZ+H4xKB5sOrvRqd+Fm/E4caOqB+8bKwqZhftMwb/pbjLL2u3wA==} peerDependencies: @@ -7670,6 +8147,10 @@ packages: resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} engines: {node: '>=8.6'} + picomatch@4.0.4: + resolution: {integrity: sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==} + engines: {node: '>=12'} + pify@3.0.0: resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} engines: {node: '>=4'} @@ -7743,6 +8224,10 @@ packages: resolution: {integrity: sha512-0vzE+lAiG7hZl1/9I8yzKLx3aR9Xbof3fBHKunvMfOCYAtMhrsnccJY2iTURb9EZd5+pLuiNV9/c/GZJOHsgIw==} engines: {node: ^10 || ^12 || >=14} + postcss@8.5.10: + resolution: {integrity: sha512-pMMHxBOZKFU6HgAZ4eyGnwXF/EvPGGqUr0MnZ5+99485wwW41kW91A4LOGxSHhgugZmSChL5AlElNdwlNgcnLQ==} + engines: {node: ^10 || ^12 || >=14} + postcss@8.5.3: resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==} engines: {node: ^10 || ^12 || >=14} @@ -7842,9 +8327,6 @@ packages: resolution: {integrity: sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==} engines: {node: '>=6'} - queue-microtask@1.2.3: - resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} - queue@6.0.2: resolution: {integrity: sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==} @@ -7886,6 +8368,11 @@ packages: peerDependencies: react: ^18.2.0 + react-dom@19.2.5: + resolution: {integrity: sha512-J5bAZz+DXMMwW/wV3xzKke59Af6CHY7G4uYLN1OvBcKEsWOs4pQExj86BBKamxl/Ik5bx9whOrvBlSDfWzgSag==} + peerDependencies: + react: ^19.2.5 + react-i18next@13.5.0: resolution: {integrity: sha512-CFJ5NDGJ2MUyBohEHxljOq/39NQ972rh1ajnadG9BjTk+UXbHLq4z5DKEbEQBDoIhUmmbuS/fIMJKo6VOax1HA==} peerDependencies: @@ -7943,6 +8430,10 @@ packages: resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==} engines: {node: '>=0.10.0'} + react-refresh@0.18.0: + resolution: {integrity: sha512-QgT5//D3jfjJb6Gsjxv0Slpj23ip+HtOpnNgnb2S5zU3CB26G/IDPGoy4RJB42wzFE46DRsstbW6tKHoKbhAxw==} + engines: {node: '>=0.10.0'} + react-remove-scroll-bar@2.3.8: resolution: {integrity: sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==} engines: {node: '>=10'} @@ -7963,8 +8454,8 @@ packages: '@types/react': optional: true - react-router@7.3.0: - resolution: {integrity: sha512-466f2W7HIWaNXTKM5nHTqNxLrHTyXybm7R0eBlVSt0k/u55tTCDO194OIx/NrYD4TS5SXKTNekXfT37kMKUjgw==} + react-router@7.14.2: + resolution: {integrity: sha512-yCqNne6I8IB6rVCH7XUvlBK7/QKyqypBFGv+8dj4QBFJiiRX+FG7/nkdAvGElyvVZ/HQP5N19wzteuTARXi5Gw==} engines: {node: '>=20.0.0'} peerDependencies: react: '>=18' @@ -7992,6 +8483,10 @@ packages: resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} engines: {node: '>=0.10.0'} + react@19.2.5: + resolution: {integrity: sha512-llUJLzz1zTUBrskt2pwZgLq59AemifIftw4aB7JxOqf1HY2FDaGDxgwpAPVzHU1kdWabH7FauP4i1oEeer2WCA==} + engines: {node: '>=0.10.0'} + readable-stream@2.3.3: resolution: {integrity: sha512-m+qzzcn7KUxEmd1gMbchF+Y2eIUbieUaxkWtptyHywrX0rE8QEYqPC07Vuy4Wm32/xE16NcdBctb8S0Xe/5IeQ==} @@ -8027,6 +8522,20 @@ packages: receptacle@1.3.2: resolution: {integrity: sha512-HrsFvqZZheusncQRiEE7GatOAETrARKV/lnfYicIm8lbvp/JQOdADOfhjBd2DajvoszEyxSM6RlAAIZgEoeu/A==} + recma-build-jsx@1.0.0: + resolution: {integrity: sha512-8GtdyqaBcDfva+GUKDr3nev3VpKAhup1+RvkMvUxURHpW7QyIvk9F5wz7Vzo06CEMSilw6uArgRqhpiUcWp8ew==} + + recma-jsx@1.0.1: + resolution: {integrity: sha512-huSIy7VU2Z5OLv6oFLosQGGDqPqdO1iq6bWNAdhzMxSJP7RAso4fCZ1cKu8j9YHCZf3TPrq4dw3okhrylgcd7w==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + + recma-parse@1.0.0: + resolution: {integrity: sha512-OYLsIGBB5Y5wjnSnQW6t3Xg7q3fQ7FWbw/vcXtORTnyaSFscOtABg+7Pnz6YZ6c27fG1/aN8CjfwoUEUIdwqWQ==} + + recma-stringify@1.0.0: + resolution: {integrity: sha512-cjwII1MdIIVloKvC9ErQ+OgAtwHBmcZ0Bg4ciz78FtbT8In39aAYbaA7zvxQ61xVMSPE8WxhLwLbhif4Js2C+g==} + redis-errors@1.2.0: resolution: {integrity: sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w==} engines: {node: '>=4'} @@ -8076,6 +8585,9 @@ packages: playwright: optional: true + rehype-recma@1.0.0: + resolution: {integrity: sha512-lqA4rGUf1JmacCNWWZx0Wv1dHqMwxzsDWYMTowuplHF3xH0N/MmrZ/G3BDZnzAkRmxDadujCjaKM2hqYdCBOGw==} + rehype-slug@6.0.0: resolution: {integrity: sha512-lWyvf/jwu+oS5+hL5eClVd3hNdmwM1kAC0BUvEGD19pajQMIzcNUd/k9GsfQ+FfECvX+JE+e9/btsKH0EjJT6A==} @@ -8088,11 +8600,11 @@ packages: remark-gfm@4.0.1: resolution: {integrity: sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==} - remark-mdx-frontmatter@5.0.0: - resolution: {integrity: sha512-kI75pshe27TM71R+0iX7C3p4MbGMdygkvSbrk1WYSar88WAwR2JfQilofcDGgDNFAWUo5IwTPyq9XvGpifTwqQ==} + remark-mdx-frontmatter@5.2.0: + resolution: {integrity: sha512-U/hjUYTkQqNjjMRYyilJgLXSPF65qbLPdoESOkXyrwz2tVyhAnm4GUKhfXqOOS9W34M3545xEMq+aMpHgVjEeQ==} - remark-mdx@3.1.0: - resolution: {integrity: sha512-Ngl/H3YXyBV9RcRNdlYsZujAmhsxwzxpDzpDEhFBVAGthS4GDgnctpDjgFl/ULx5UEDzqtW1cyBSNKqYYrqLBA==} + remark-mdx@3.1.1: + resolution: {integrity: sha512-Pjj2IYlUY3+D8x00UJsIOg5BEvfMyeI+2uLPn9VO9Wg4MEtN/VTIq2NEJQfde9PnX15KgtHyl9S0BcTnWrIuWg==} remark-parse@11.0.0: resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==} @@ -8144,10 +8656,6 @@ packages: retimer@3.0.0: resolution: {integrity: sha512-WKE0j11Pa0ZJI5YIk0nflGI7SQsfl2ljihVy7ogh7DeQSeYAUi0ubZ/yEueGtDfUPk6GH5LRw1hBdLq4IwUBWA==} - reusify@1.0.4: - resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} - engines: {iojs: '>=1.0.0', node: '>=0.10.0'} - rimraf@2.6.3: resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==} deprecated: Rimraf versions prior to v4 are no longer supported @@ -8168,6 +8676,11 @@ packages: robust-predicates@3.0.2: resolution: {integrity: sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==} + rolldown@1.0.0-rc.16: + resolution: {integrity: sha512-rzi5WqKzEZw3SooTt7cgm4eqIoujPIyGcJNGFL7iPEuajQw7vxMHUkXylu4/vhCkJGXsgRmxqMKXUpT6FEgl0g==} + engines: {node: ^20.19.0 || >=22.12.0} + hasBin: true + rollup-plugin-visualizer@5.12.0: resolution: {integrity: sha512-8/NU9jXcHRs7Nnj07PF2o4gjxmm9lXIrZ8r175bT9dK8qoLlvKTwRMArRCMgpMGlq8CTLugRvEmyMeMXIU2pNQ==} engines: {node: '>=14'} @@ -8183,8 +8696,8 @@ packages: engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true - rollup@4.35.0: - resolution: {integrity: sha512-kg6oI4g+vc41vePJyO6dHt/yl0Rz3Thv0kJeVQ3D1kS3E5XSuKbPc29G4IpT/Kv1KQwgHVcN+HtyS+HYLNSvQg==} + rollup@4.60.2: + resolution: {integrity: sha512-J9qZyW++QK/09NyN/zeO0dG/1GdGfyp9lV8ajHnRVLfo/uFsbji5mHnDgn/qYdUHyCkM2N+8VyspgZclfAh0eQ==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true @@ -8194,9 +8707,6 @@ packages: rpc-websockets@7.9.0: resolution: {integrity: sha512-DwKewQz1IUA5wfLvgM8wDpPRcr+nWSxuFxx5CbrI2z/MyyZ4nXLM86TvIA+cI1ZAdqC8JIBR1mZR55dzaLU+Hw==} - run-parallel@1.2.0: - resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} - rw@1.3.3: resolution: {integrity: sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==} @@ -8219,6 +8729,9 @@ packages: scheduler@0.24.0-canary-efb381bbf-20230505: resolution: {integrity: sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA==} + scheduler@0.27.0: + resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==} + scrypt-js@3.0.1: resolution: {integrity: sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA==} @@ -8347,10 +8860,6 @@ packages: resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} engines: {node: '>=8'} - slash@5.1.0: - resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==} - engines: {node: '>=14.16'} - slice-ansi@2.1.0: resolution: {integrity: sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==} engines: {node: '>=6'} @@ -8552,11 +9061,11 @@ packages: tailwindcss@4.0.12: resolution: {integrity: sha512-bT0hJo91FtncsAMSsMzUkoo/iEU0Xs5xgFgVC9XmdM9bw5MhZuQFjPNl6wxAE0SiQF/YTZJa+PndGWYSDtuxAg==} - tailwindcss@4.0.7: - resolution: {integrity: sha512-yH5bPPyapavo7L+547h3c4jcBXcrKwybQRjwdEIVAd9iXRvy/3T1CC6XSQEgZtRySjKfqvo3Cc0ZF1DTheuIdA==} + tailwindcss@4.1.15: + resolution: {integrity: sha512-k2WLnWkYFkdpRv+Oby3EBXIyQC8/s1HOFMBUViwtAh6Z5uAozeUSMQlIsn/c6Q2iJzqG6aJT3wdPaRNj70iYxQ==} - tapable@2.2.1: - resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} + tapable@2.3.3: + resolution: {integrity: sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==} engines: {node: '>=6'} temp-dir@2.0.0: @@ -8603,6 +9112,10 @@ packages: tinyexec@1.0.1: resolution: {integrity: sha512-5uC6DDlmeqiOwCPmK9jMSdOuZTh8bU39Ys6yidB+UTt5hfZUPGAypSgFRiEp+jbi9qH40BLDvy85jIU88wKSqw==} + tinyglobby@0.2.16: + resolution: {integrity: sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==} + engines: {node: '>=12.0.0'} + tinypool@1.0.1: resolution: {integrity: sha512-URZYihUbRPcGv95En+sz6MfghfIc2OJ1sv/RmhWZLouPY0/8Vo80viwPvg3dlaS9fuq7fQMEfgRRK7BBZThBEA==} engines: {node: ^18.0.0 || >=20.0.0} @@ -8667,9 +9180,6 @@ packages: engines: {node: '>=18.0.0'} hasBin: true - turbo-stream@2.4.0: - resolution: {integrity: sha512-FHncC10WpBd2eOmGwpmQsWLDoK4cqsA/UT/GqNoaKOQnT8uzhtCbg3EoUDMvqpOSAI0S26mr0rkjzbOO6S3v1g==} - tweetnacl-util@0.13.5: resolution: {integrity: sha512-/4Q3hpPFAnbBjNLLOmdTdyvInBfZcQBTWy+LWbypmWxAKwOpSQOyyv4ZZts4CoiYtS8Skyix5CkOWytf7XNK9A==} @@ -8682,11 +9192,19 @@ packages: twoslash-protocol@0.2.12: resolution: {integrity: sha512-5qZLXVYfZ9ABdjqbvPc4RWMr7PrpPaaDSeaYY55vl/w1j6H6kzsWK/urAEIXlzYlyrFmyz1UbwIt+AA0ck+wbg==} + twoslash-protocol@0.3.8: + resolution: {integrity: sha512-HmvAHoiEviK8LqvAQyc9/irkdvwTUiR1fHmNwH/0gq8EHxyBt4PWVPixjEXg6wJu1u6yBrILEWXGK9Kw58/8yQ==} + twoslash@0.2.12: resolution: {integrity: sha512-tEHPASMqi7kqwfJbkk7hc/4EhlrKCSLcur+TcvYki3vhIfaRMXnXjaYFgXpoZRbT6GdprD4tGuVBEmTpUgLBsw==} peerDependencies: typescript: '*' + twoslash@0.3.8: + resolution: {integrity: sha512-OeDz0kDl8sqPUN3nr7gqcvOs70f5lZsdhKYTX3/SgB9OvdadzzoYJI/4SBXhXV1HG8E9fLc+e17itoRYTxmoig==} + peerDependencies: + typescript: ^5.5.0 || ^6.0.0 + type-detect@4.0.8: resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} engines: {node: '>=4'} @@ -8769,10 +9287,6 @@ packages: resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} engines: {node: '>=4'} - unicorn-magic@0.3.0: - resolution: {integrity: sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==} - engines: {node: '>=18'} - unidragger@3.0.1: resolution: {integrity: sha512-RngbGSwBFmqGBWjkaH+yB677uzR95blSQyxq6hYbrQCejH3Mx1nm8DVOuh3M9k2fQyTstWUG5qlgCnNqV/9jVw==} @@ -8785,6 +9299,9 @@ packages: unist-util-is@6.0.0: resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==} + unist-util-mdx-define@1.1.2: + resolution: {integrity: sha512-9ncH7i7TN5Xn7/tzX5bE3rXgz1X/u877gYVAUB3mLeTKYJmQHmqKTDBi6BTGXV7AeolBCI9ErcVsOt2qryoD0g==} + unist-util-position-from-estree@2.0.0: resolution: {integrity: sha512-KaFVRjoqLyF6YXCbVLNad/eS4+OfPQQn2yOd7zF/h5T/CSL2v8NpN6a5TPvtbXthAGw5nG+PuTtq+DdIZr+cRQ==} @@ -8982,6 +9499,9 @@ packages: vfile-location@5.0.3: resolution: {integrity: sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==} + vfile-matter@5.0.1: + resolution: {integrity: sha512-o6roP82AiX0XfkyTHyRCMXgHfltUNlXSEqCIS80f+mbAyiQBE2fxtDVMtseyytGx75sihiJFo/zR6r/4LTs2Cw==} + vfile-message@4.0.2: resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==} @@ -9009,9 +9529,9 @@ packages: engines: {node: ^18.0.0 || >=20.0.0} hasBin: true - vite-node@3.0.8: - resolution: {integrity: sha512-6PhR4H9VGlcwXZ+KWCdMqbtG649xCPZqfI9j2PsK1FcXgEzro5bGHcVKFCTqPLaNKZES8Evqv4LwvZARsq5qlg==} - engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} + vite-node@6.0.0: + resolution: {integrity: sha512-oj4PVrT+pDh6GYf5wfUXkcZyekYS8kKPfLPXVl8qe324Ec6l4K2DUKNadRbZ3LQl0qGcDz+PyOo7ZAh00Y+JjQ==} + engines: {node: ^20.19.0 || >=22.12.0} hasBin: true vite@5.3.4: @@ -9042,19 +9562,19 @@ packages: terser: optional: true - vite@6.2.1: - resolution: {integrity: sha512-n2GnqDb6XPhlt9B8olZPrgMD/es/Nd1RdChF6CBD/fHW6pUyUTt2sQW2fPRX5GiD9XEa6+8A6A4f2vT6pSsE7Q==} - engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} + vite@7.3.2: + resolution: {integrity: sha512-Bby3NOsna2jsjfLVOHKes8sGwgl4TT0E6vvpYgnAYDIF/tie7MRaFthmKuHx1NSXjiTueXH3do80FMQgvEktRg==} + engines: {node: ^20.19.0 || >=22.12.0} hasBin: true peerDependencies: - '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 + '@types/node': ^20.19.0 || >=22.12.0 jiti: '>=1.21.0' - less: '*' + less: ^4.0.0 lightningcss: ^1.21.0 - sass: '*' - sass-embedded: '*' - stylus: '*' - sugarss: '*' + sass: ^1.70.0 + sass-embedded: ^1.70.0 + stylus: '>=0.54.8' + sugarss: ^5.0.0 terser: ^5.16.0 tsx: ^4.8.1 yaml: ^2.4.2 @@ -9082,6 +9602,49 @@ packages: yaml: optional: true + vite@8.0.9: + resolution: {integrity: sha512-t7g7GVRpMXjNpa67HaVWI/8BWtdVIQPCL2WoozXXA7LBGEFK4AkkKkHx2hAQf5x1GZSlcmEDPkVLSGahxnEEZw==} + engines: {node: ^20.19.0 || >=22.12.0} + hasBin: true + peerDependencies: + '@types/node': ^20.19.0 || >=22.12.0 + '@vitejs/devtools': ^0.1.0 + esbuild: ^0.27.0 || ^0.28.0 + jiti: '>=1.21.0' + less: ^4.0.0 + sass: ^1.70.0 + sass-embedded: ^1.70.0 + stylus: '>=0.54.8' + sugarss: ^5.0.0 + terser: ^5.16.0 + tsx: ^4.8.1 + yaml: ^2.4.2 + peerDependenciesMeta: + '@types/node': + optional: true + '@vitejs/devtools': + optional: true + esbuild: + optional: true + jiti: + optional: true + less: + optional: true + sass: + optional: true + sass-embedded: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + tsx: + optional: true + yaml: + optional: true + vitest@2.1.2: resolution: {integrity: sha512-veNjLizOMkRrJ6xxb+pvxN6/QAWg95mzcRjtmkepXdN87FNfxAss9RKe2far/G9cQpipfgP2taqg0KiWsquj8A==} engines: {node: ^18.0.0 || >=20.0.0} @@ -9110,8 +9673,9 @@ packages: vlq@1.0.1: resolution: {integrity: sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==} - vocs@1.0.14-main.20250716T102132: - resolution: {integrity: sha512-ofXdmHfgu9zmVOYDDGmm1kgGIbOWeGxyr+LVUIu2mA2E1EDDdlWuhgBN60g3zVMpJZ1Ub1VGZ8MaKUlF6Epq2A==} + vocs@1.4.1: + resolution: {integrity: sha512-PwCODbht+/0f6wtAyz5czqdWaMX80KlxOc6Mkqfd0u6bboTZ+YcyBuZaiQwJ4lkDE6NvSrCosPVD5CxGyvtitg==} + engines: {node: '>=22'} hasBin: true peerDependencies: react: ^19 @@ -9420,9 +9984,9 @@ packages: resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} engines: {node: '>= 6'} - yaml@2.7.0: - resolution: {integrity: sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==} - engines: {node: '>= 14'} + yaml@2.8.3: + resolution: {integrity: sha512-AvbaCLOO2Otw/lW5bmh9d/WEdcDFdQp2Z2ZUH3pX9U2ihyUY0nvLv7J6TrWowklRGPYbB/IuIMfYgxaCPg5Bpg==} + engines: {node: '>= 14.6'} hasBin: true yargs-parser@18.1.3: @@ -9498,8 +10062,16 @@ snapshots: js-tokens: 4.0.0 picocolors: 1.1.1 + '@babel/code-frame@7.29.0': + dependencies: + '@babel/helper-validator-identifier': 7.28.5 + js-tokens: 4.0.0 + picocolors: 1.1.1 + '@babel/compat-data@7.26.8': {} + '@babel/compat-data@7.29.0': {} + '@babel/core@7.26.10': dependencies: '@ampproject/remapping': 2.3.0 @@ -9520,6 +10092,26 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/core@7.29.0': + dependencies: + '@babel/code-frame': 7.29.0 + '@babel/generator': 7.29.1 + '@babel/helper-compilation-targets': 7.28.6 + '@babel/helper-module-transforms': 7.28.6(@babel/core@7.29.0) + '@babel/helpers': 7.29.2 + '@babel/parser': 7.29.2 + '@babel/template': 7.28.6 + '@babel/traverse': 7.29.0 + '@babel/types': 7.29.0 + '@jridgewell/remapping': 2.3.5 + convert-source-map: 2.0.0 + debug: 4.4.0 + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + '@babel/generator@7.27.0': dependencies: '@babel/parser': 7.27.0 @@ -9528,9 +10120,17 @@ snapshots: '@jridgewell/trace-mapping': 0.3.25 jsesc: 3.1.0 + '@babel/generator@7.29.1': + dependencies: + '@babel/parser': 7.29.2 + '@babel/types': 7.29.0 + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.31 + jsesc: 3.1.0 + '@babel/helper-annotate-as-pure@7.25.9': dependencies: - '@babel/types': 7.27.0 + '@babel/types': 7.29.0 '@babel/helper-compilation-targets@7.27.0': dependencies: @@ -9540,43 +10140,51 @@ snapshots: lru-cache: 5.1.1 semver: 6.3.1 - '@babel/helper-create-class-features-plugin@7.27.0(@babel/core@7.26.10)': + '@babel/helper-compilation-targets@7.28.6': dependencies: - '@babel/core': 7.26.10 + '@babel/compat-data': 7.29.0 + '@babel/helper-validator-option': 7.27.1 + browserslist: 4.24.4 + lru-cache: 5.1.1 + semver: 6.3.1 + + '@babel/helper-create-class-features-plugin@7.27.0(@babel/core@7.29.0)': + dependencies: + '@babel/core': 7.29.0 '@babel/helper-annotate-as-pure': 7.25.9 '@babel/helper-member-expression-to-functions': 7.25.9 '@babel/helper-optimise-call-expression': 7.25.9 - '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.10) + '@babel/helper-replace-supers': 7.26.5(@babel/core@7.29.0) '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 - '@babel/traverse': 7.27.0 + '@babel/traverse': 7.29.0 semver: 6.3.1 transitivePeerDependencies: - supports-color - '@babel/helper-create-regexp-features-plugin@7.27.0(@babel/core@7.26.10)': + '@babel/helper-create-regexp-features-plugin@7.27.0(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 + '@babel/core': 7.29.0 '@babel/helper-annotate-as-pure': 7.25.9 regexpu-core: 6.2.0 semver: 6.3.1 - '@babel/helper-define-polyfill-provider@0.5.0(@babel/core@7.26.10)': + '@babel/helper-define-polyfill-provider@0.5.0(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-compilation-targets': 7.27.0 - '@babel/helper-plugin-utils': 7.26.5 - debug: 4.4.0 + '@babel/core': 7.29.0 + '@babel/helper-compilation-targets': 7.28.6 + '@babel/helper-plugin-utils': 7.28.6 + debug: 4.4.3 lodash.debounce: 4.0.8 resolve: 1.22.10 transitivePeerDependencies: - supports-color - '@babel/helper-define-polyfill-provider@0.6.4(@babel/core@7.26.10)': + '@babel/helper-define-polyfill-provider@0.6.4(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-compilation-targets': 7.27.0 - '@babel/helper-plugin-utils': 7.26.5 - debug: 4.4.0 + '@babel/core': 7.29.0 + '@babel/helper-compilation-targets': 7.28.6 + '@babel/helper-plugin-utils': 7.28.6 + debug: 4.4.3 lodash.debounce: 4.0.8 resolve: 1.22.10 transitivePeerDependencies: @@ -9584,12 +10192,14 @@ snapshots: '@babel/helper-environment-visitor@7.24.7': dependencies: - '@babel/types': 7.27.0 + '@babel/types': 7.29.0 + + '@babel/helper-globals@7.28.0': {} '@babel/helper-member-expression-to-functions@7.25.9': dependencies: - '@babel/traverse': 7.27.0 - '@babel/types': 7.27.0 + '@babel/traverse': 7.29.0 + '@babel/types': 7.29.0 transitivePeerDependencies: - supports-color @@ -9604,6 +10214,13 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/helper-module-imports@7.28.6': + dependencies: + '@babel/traverse': 7.29.0 + '@babel/types': 7.29.0 + transitivePeerDependencies: + - supports-color + '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 @@ -9613,34 +10230,45 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/helper-module-transforms@7.28.6(@babel/core@7.29.0)': + dependencies: + '@babel/core': 7.29.0 + '@babel/helper-module-imports': 7.28.6 + '@babel/helper-validator-identifier': 7.28.5 + '@babel/traverse': 7.29.0 + transitivePeerDependencies: + - supports-color + '@babel/helper-optimise-call-expression@7.25.9': dependencies: - '@babel/types': 7.27.0 + '@babel/types': 7.29.0 '@babel/helper-plugin-utils@7.26.5': {} - '@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.26.10)': + '@babel/helper-plugin-utils@7.28.6': {} + + '@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 + '@babel/core': 7.29.0 '@babel/helper-annotate-as-pure': 7.25.9 '@babel/helper-wrap-function': 7.25.9 - '@babel/traverse': 7.27.0 + '@babel/traverse': 7.29.0 transitivePeerDependencies: - supports-color - '@babel/helper-replace-supers@7.26.5(@babel/core@7.26.10)': + '@babel/helper-replace-supers@7.26.5(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 + '@babel/core': 7.29.0 '@babel/helper-member-expression-to-functions': 7.25.9 '@babel/helper-optimise-call-expression': 7.25.9 - '@babel/traverse': 7.27.0 + '@babel/traverse': 7.29.0 transitivePeerDependencies: - supports-color '@babel/helper-skip-transparent-expression-wrappers@7.25.9': dependencies: - '@babel/traverse': 7.27.0 - '@babel/types': 7.27.0 + '@babel/traverse': 7.29.0 + '@babel/types': 7.29.0 transitivePeerDependencies: - supports-color @@ -9648,17 +10276,23 @@ snapshots: '@babel/helper-string-parser@7.25.9': {} + '@babel/helper-string-parser@7.27.1': {} + '@babel/helper-validator-identifier@7.22.20': {} '@babel/helper-validator-identifier@7.25.9': {} + '@babel/helper-validator-identifier@7.28.5': {} + '@babel/helper-validator-option@7.25.9': {} + '@babel/helper-validator-option@7.27.1': {} + '@babel/helper-wrap-function@7.25.9': dependencies: - '@babel/template': 7.27.0 - '@babel/traverse': 7.27.0 - '@babel/types': 7.27.0 + '@babel/template': 7.28.6 + '@babel/traverse': 7.29.0 + '@babel/types': 7.29.0 transitivePeerDependencies: - supports-color @@ -9667,6 +10301,11 @@ snapshots: '@babel/template': 7.27.0 '@babel/types': 7.27.0 + '@babel/helpers@7.29.2': + dependencies: + '@babel/template': 7.28.6 + '@babel/types': 7.29.0 + '@babel/highlight@7.23.4': dependencies: '@babel/helper-validator-identifier': 7.22.20 @@ -9677,678 +10316,687 @@ snapshots: dependencies: '@babel/types': 7.27.0 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.26.10)': + '@babel/parser@7.29.2': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/types': 7.29.0 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 + + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.29.0)': + dependencies: + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 - '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.29.0) transitivePeerDependencies: - supports-color - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/traverse': 7.27.0 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 + '@babel/traverse': 7.29.0 transitivePeerDependencies: - supports-color - '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.26.10)': + '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 + '@babel/core': 7.29.0 '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.26.10) + '@babel/helper-plugin-utils': 7.28.6 + '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.29.0) transitivePeerDependencies: - supports-color - '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.26.10)': + '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.29.0) + '@babel/helper-plugin-utils': 7.28.6 transitivePeerDependencies: - supports-color - '@babel/plugin-proposal-export-default-from@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-proposal-export-default-from@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.26.10)': + '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.10) + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.29.0) - '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.26.10)': + '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.26.10) + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.29.0) - '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.26.10)': + '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.29.0)': dependencies: - '@babel/compat-data': 7.26.8 - '@babel/core': 7.26.10 - '@babel/helper-compilation-targets': 7.27.0 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.10) - '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.10) + '@babel/compat-data': 7.29.0 + '@babel/core': 7.29.0 + '@babel/helper-compilation-targets': 7.28.6 + '@babel/helper-plugin-utils': 7.28.6 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.29.0) + '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.29.0) - '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.26.10)': + '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.26.10) + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.29.0) - '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.26.10)': + '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.10) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.29.0) transitivePeerDependencies: - supports-color - '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.10)': + '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 + '@babel/core': 7.29.0 - '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.26.10)': + '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.26.10)': + '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.26.10)': + '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.26.10)': + '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-export-default-from@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-syntax-export-default-from@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.26.10)': + '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-flow@7.26.0(@babel/core@7.26.10)': + '@babel/plugin-syntax-flow@7.26.0(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.26.10)': + '@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.10)': + '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.26.10)': + '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.26.10)': + '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.26.10)': + '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.26.10)': + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.26.10)': + '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.26.10)': + '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.26.10)': + '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.26.10)': + '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.26.10)': + '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.26.10)': + '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 '@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.10)': + '@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10) + '@babel/core': 7.29.0 '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.29.0) + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-transform-async-generator-functions@7.26.8(@babel/core@7.26.10)': + '@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.10) - '@babel/traverse': 7.27.0 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 + + '@babel/plugin-transform-async-generator-functions@7.26.8(@babel/core@7.29.0)': + dependencies: + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 + '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.29.0) + '@babel/traverse': 7.29.0 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-module-imports': 7.25.9 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.10) + '@babel/core': 7.29.0 + '@babel/helper-module-imports': 7.28.6 + '@babel/helper-plugin-utils': 7.28.6 + '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.29.0) transitivePeerDependencies: - supports-color - '@babel/plugin-transform-block-scoped-functions@7.26.5(@babel/core@7.26.10)': + '@babel/plugin-transform-block-scoped-functions@7.26.5(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-transform-block-scoping@7.27.0(@babel/core@7.26.10)': + '@babel/plugin-transform-block-scoping@7.27.0(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.29.0) + '@babel/helper-plugin-utils': 7.28.6 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.26.10)': + '@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.29.0) + '@babel/helper-plugin-utils': 7.28.6 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-classes@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-classes@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 + '@babel/core': 7.29.0 '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-compilation-targets': 7.27.0 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.10) - '@babel/traverse': 7.27.0 + '@babel/helper-compilation-targets': 7.28.6 + '@babel/helper-plugin-utils': 7.28.6 + '@babel/helper-replace-supers': 7.26.5(@babel/core@7.29.0) + '@babel/traverse': 7.29.0 globals: 11.12.0 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/template': 7.27.0 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 + '@babel/template': 7.28.6 - '@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.29.0) + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-transform-exponentiation-operator@7.26.3(@babel/core@7.26.10)': + '@babel/plugin-transform-exponentiation-operator@7.26.3(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-transform-flow-strip-types@7.26.5(@babel/core@7.26.10)': + '@babel/plugin-transform-flow-strip-types@7.26.5(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-flow': 7.26.0(@babel/core@7.26.10) + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 + '@babel/plugin-syntax-flow': 7.26.0(@babel/core@7.29.0) - '@babel/plugin-transform-for-of@7.26.9(@babel/core@7.26.10)': + '@babel/plugin-transform-for-of@7.26.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-function-name@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-compilation-targets': 7.27.0 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/traverse': 7.27.0 + '@babel/core': 7.29.0 + '@babel/helper-compilation-targets': 7.28.6 + '@babel/helper-plugin-utils': 7.28.6 + '@babel/traverse': 7.29.0 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-literals@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-module-transforms': 7.28.6(@babel/core@7.29.0) + '@babel/helper-plugin-utils': 7.28.6 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-modules-commonjs@7.26.3(@babel/core@7.26.10)': + '@babel/plugin-transform-modules-commonjs@7.26.3(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-module-transforms': 7.28.6(@babel/core@7.29.0) + '@babel/helper-plugin-utils': 7.28.6 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-validator-identifier': 7.25.9 - '@babel/traverse': 7.27.0 + '@babel/core': 7.29.0 + '@babel/helper-module-transforms': 7.28.6(@babel/core@7.29.0) + '@babel/helper-plugin-utils': 7.28.6 + '@babel/helper-validator-identifier': 7.28.5 + '@babel/traverse': 7.29.0 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-modules-umd@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-modules-umd@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-module-transforms': 7.28.6(@babel/core@7.29.0) + '@babel/helper-plugin-utils': 7.28.6 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.29.0) + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-transform-new-target@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-new-target@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-transform-nullish-coalescing-operator@7.26.6(@babel/core@7.26.10)': + '@babel/plugin-transform-nullish-coalescing-operator@7.26.6(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-compilation-targets': 7.27.0 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.10) + '@babel/core': 7.29.0 + '@babel/helper-compilation-targets': 7.28.6 + '@babel/helper-plugin-utils': 7.28.6 + '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.29.0) - '@babel/plugin-transform-object-super@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-object-super@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.10) + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 + '@babel/helper-replace-supers': 7.26.5(@babel/core@7.29.0) transitivePeerDependencies: - supports-color - '@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-parameters@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.29.0) + '@babel/helper-plugin-utils': 7.28.6 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 + '@babel/core': 7.29.0 '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.26.5 + '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.29.0) + '@babel/helper-plugin-utils': 7.28.6 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-transform-react-display-name@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-react-display-name@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 + '@babel/core': 7.29.0 '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-module-imports': 7.25.9 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.10) - '@babel/types': 7.27.0 + '@babel/helper-module-imports': 7.28.6 + '@babel/helper-plugin-utils': 7.28.6 + '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.29.0) + '@babel/types': 7.29.0 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-regenerator@7.27.0(@babel/core@7.26.10)': + '@babel/plugin-transform-regenerator@7.27.0(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 regenerator-transform: 0.15.2 - '@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-transform-runtime@7.26.10(@babel/core@7.26.10)': + '@babel/plugin-transform-runtime@7.26.10(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-module-imports': 7.25.9 - '@babel/helper-plugin-utils': 7.26.5 - babel-plugin-polyfill-corejs2: 0.4.13(@babel/core@7.26.10) - babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.26.10) - babel-plugin-polyfill-regenerator: 0.6.4(@babel/core@7.26.10) + '@babel/core': 7.29.0 + '@babel/helper-module-imports': 7.28.6 + '@babel/helper-plugin-utils': 7.28.6 + babel-plugin-polyfill-corejs2: 0.4.13(@babel/core@7.29.0) + babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.29.0) + babel-plugin-polyfill-regenerator: 0.6.4(@babel/core@7.29.0) semver: 6.3.1 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-spread@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.26.10)': + '@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-transform-template-literals@7.26.8(@babel/core@7.26.10)': + '@babel/plugin-transform-template-literals@7.26.8(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-transform-typeof-symbol@7.27.0(@babel/core@7.26.10)': + '@babel/plugin-transform-typeof-symbol@7.27.0(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-transform-typescript@7.27.0(@babel/core@7.26.10)': + '@babel/plugin-transform-typescript@7.27.0(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 + '@babel/core': 7.29.0 '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.26.5 + '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.29.0) + '@babel/helper-plugin-utils': 7.28.6 '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 - '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.29.0) transitivePeerDependencies: - supports-color - '@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - - '@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.26.5 - - '@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.26.5 - - '@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.26.5 - - '@babel/preset-env@7.23.9(@babel/core@7.26.10)': - dependencies: - '@babel/compat-data': 7.26.8 - '@babel/core': 7.26.10 - '@babel/helper-compilation-targets': 7.27.0 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-validator-option': 7.25.9 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.10) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.26.10) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.26.10) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.26.10) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.10) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.26.10) - '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.26.10) - '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.10) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.10) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.26.10) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.10) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.10) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.26.10) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.10) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.26.10) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.10) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.26.10) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.26.10) - '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.26.10) - '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-async-generator-functions': 7.26.8(@babel/core@7.26.10) - '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-block-scoped-functions': 7.26.5(@babel/core@7.26.10) - '@babel/plugin-transform-block-scoping': 7.27.0(@babel/core@7.26.10) - '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-class-static-block': 7.26.0(@babel/core@7.26.10) - '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-dotall-regex': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-duplicate-keys': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-dynamic-import': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-exponentiation-operator': 7.26.3(@babel/core@7.26.10) - '@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-for-of': 7.26.9(@babel/core@7.26.10) - '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-json-strings': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-modules-amd': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.10) - '@babel/plugin-transform-modules-systemjs': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-modules-umd': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-new-target': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-nullish-coalescing-operator': 7.26.6(@babel/core@7.26.10) - '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-optional-catch-binding': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-regenerator': 7.27.0(@babel/core@7.26.10) - '@babel/plugin-transform-reserved-words': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-template-literals': 7.26.8(@babel/core@7.26.10) - '@babel/plugin-transform-typeof-symbol': 7.27.0(@babel/core@7.26.10) - '@babel/plugin-transform-unicode-escapes': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-unicode-property-regex': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-unicode-sets-regex': 7.25.9(@babel/core@7.26.10) - '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.10) - babel-plugin-polyfill-corejs2: 0.4.13(@babel/core@7.26.10) - babel-plugin-polyfill-corejs3: 0.9.0(@babel/core@7.26.10) - babel-plugin-polyfill-regenerator: 0.5.5(@babel/core@7.26.10) + '@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.29.0)': + dependencies: + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 + + '@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.29.0)': + dependencies: + '@babel/core': 7.29.0 + '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.29.0) + '@babel/helper-plugin-utils': 7.28.6 + + '@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.29.0)': + dependencies: + '@babel/core': 7.29.0 + '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.29.0) + '@babel/helper-plugin-utils': 7.28.6 + + '@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.29.0)': + dependencies: + '@babel/core': 7.29.0 + '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.29.0) + '@babel/helper-plugin-utils': 7.28.6 + + '@babel/preset-env@7.23.9(@babel/core@7.29.0)': + dependencies: + '@babel/compat-data': 7.29.0 + '@babel/core': 7.29.0 + '@babel/helper-compilation-targets': 7.28.6 + '@babel/helper-plugin-utils': 7.28.6 + '@babel/helper-validator-option': 7.27.1 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.29.0) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.29.0) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.29.0) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.29.0) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.29.0) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.29.0) + '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.29.0) + '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.29.0) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.29.0) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.29.0) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.29.0) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.29.0) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.29.0) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.29.0) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.29.0) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.29.0) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.29.0) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.29.0) + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.29.0) + '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-async-generator-functions': 7.26.8(@babel/core@7.29.0) + '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-block-scoped-functions': 7.26.5(@babel/core@7.29.0) + '@babel/plugin-transform-block-scoping': 7.27.0(@babel/core@7.29.0) + '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-class-static-block': 7.26.0(@babel/core@7.29.0) + '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-dotall-regex': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-duplicate-keys': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-dynamic-import': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-exponentiation-operator': 7.26.3(@babel/core@7.29.0) + '@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-for-of': 7.26.9(@babel/core@7.29.0) + '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-json-strings': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-modules-amd': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.29.0) + '@babel/plugin-transform-modules-systemjs': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-modules-umd': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-new-target': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-nullish-coalescing-operator': 7.26.6(@babel/core@7.29.0) + '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-optional-catch-binding': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-regenerator': 7.27.0(@babel/core@7.29.0) + '@babel/plugin-transform-reserved-words': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-template-literals': 7.26.8(@babel/core@7.29.0) + '@babel/plugin-transform-typeof-symbol': 7.27.0(@babel/core@7.29.0) + '@babel/plugin-transform-unicode-escapes': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-unicode-property-regex': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-unicode-sets-regex': 7.25.9(@babel/core@7.29.0) + '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.29.0) + babel-plugin-polyfill-corejs2: 0.4.13(@babel/core@7.29.0) + babel-plugin-polyfill-corejs3: 0.9.0(@babel/core@7.29.0) + babel-plugin-polyfill-regenerator: 0.5.5(@babel/core@7.29.0) core-js-compat: 3.41.0 semver: 6.3.1 transitivePeerDependencies: - supports-color - '@babel/preset-flow@7.25.9(@babel/core@7.26.10)': + '@babel/preset-flow@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-validator-option': 7.25.9 - '@babel/plugin-transform-flow-strip-types': 7.26.5(@babel/core@7.26.10) + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 + '@babel/helper-validator-option': 7.27.1 + '@babel/plugin-transform-flow-strip-types': 7.26.5(@babel/core@7.29.0) - '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.26.10)': + '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/types': 7.27.0 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 + '@babel/types': 7.29.0 esutils: 2.0.3 - '@babel/preset-typescript@7.27.0(@babel/core@7.26.10)': + '@babel/preset-typescript@7.27.0(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-validator-option': 7.25.9 - '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.10) - '@babel/plugin-transform-typescript': 7.27.0(@babel/core@7.26.10) + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 + '@babel/helper-validator-option': 7.27.1 + '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.29.0) + '@babel/plugin-transform-typescript': 7.27.0(@babel/core@7.29.0) transitivePeerDependencies: - supports-color - '@babel/register@7.25.9(@babel/core@7.26.10)': + '@babel/register@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.10 + '@babel/core': 7.29.0 clone-deep: 4.0.1 find-cache-dir: 2.1.0 make-dir: 2.1.0 @@ -10369,6 +11017,12 @@ snapshots: '@babel/parser': 7.27.0 '@babel/types': 7.27.0 + '@babel/template@7.28.6': + dependencies: + '@babel/code-frame': 7.29.0 + '@babel/parser': 7.29.2 + '@babel/types': 7.29.0 + '@babel/traverse@7.27.0': dependencies: '@babel/code-frame': 7.26.2 @@ -10381,6 +11035,18 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/traverse@7.29.0': + dependencies: + '@babel/code-frame': 7.29.0 + '@babel/generator': 7.29.1 + '@babel/helper-globals': 7.28.0 + '@babel/parser': 7.29.2 + '@babel/template': 7.28.6 + '@babel/types': 7.29.0 + debug: 4.4.0 + transitivePeerDependencies: + - supports-color + '@babel/types@7.23.6': dependencies: '@babel/helper-string-parser': 7.23.4 @@ -10392,6 +11058,11 @@ snapshots: '@babel/helper-string-parser': 7.25.9 '@babel/helper-validator-identifier': 7.25.9 + '@babel/types@7.29.0': + dependencies: + '@babel/helper-string-parser': 7.27.1 + '@babel/helper-validator-identifier': 7.28.5 + '@biomejs/biome@2.1.1': optionalDependencies: '@biomejs/cli-darwin-arm64': 2.1.1 @@ -10632,6 +11303,22 @@ snapshots: transitivePeerDependencies: - encoding + '@emnapi/core@1.9.2': + dependencies: + '@emnapi/wasi-threads': 1.2.1 + tslib: 2.8.1 + optional: true + + '@emnapi/runtime@1.9.2': + dependencies: + tslib: 2.8.1 + optional: true + + '@emnapi/wasi-threads@1.2.1': + dependencies: + tslib: 2.8.1 + optional: true + '@emotion/babel-plugin@11.11.0': dependencies: '@babel/helper-module-imports': 7.22.15 @@ -10662,19 +11349,19 @@ snapshots: '@emotion/memoize@0.8.1': {} - '@emotion/react@11.11.3(@types/react@18.2.47)(react@18.2.0)': + '@emotion/react@11.11.3(@types/react@19.2.14)(react@19.2.5)': dependencies: '@babel/runtime': 7.23.8 '@emotion/babel-plugin': 11.11.0 '@emotion/cache': 11.11.0 '@emotion/serialize': 1.1.3 - '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0) + '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@19.2.5) '@emotion/utils': 1.2.1 '@emotion/weak-memoize': 0.3.1 hoist-non-react-statics: 3.3.2 - react: 18.2.0 + react: 19.2.5 optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 '@emotion/serialize@1.1.3': dependencies: @@ -10682,22 +11369,22 @@ snapshots: '@emotion/memoize': 0.8.1 '@emotion/unitless': 0.8.1 '@emotion/utils': 1.2.1 - csstype: 3.1.3 + csstype: 3.2.3 '@emotion/sheet@1.2.2': {} - '@emotion/styled@11.11.0(@emotion/react@11.11.3(@types/react@18.2.47)(react@18.2.0))(@types/react@18.2.47)(react@18.2.0)': + '@emotion/styled@11.11.0(@emotion/react@11.11.3(@types/react@19.2.14)(react@18.2.0))(@types/react@19.2.14)(react@18.2.0)': dependencies: '@babel/runtime': 7.23.8 '@emotion/babel-plugin': 11.11.0 '@emotion/is-prop-valid': 1.2.1 - '@emotion/react': 11.11.3(@types/react@18.2.47)(react@18.2.0) + '@emotion/react': 11.11.3(@types/react@19.2.14)(react@19.2.5) '@emotion/serialize': 1.1.3 '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0) '@emotion/utils': 1.2.1 react: 18.2.0 optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 '@emotion/unitless@0.8.1': {} @@ -10705,6 +11392,10 @@ snapshots: dependencies: react: 18.2.0 + '@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@19.2.5)': + dependencies: + react: 19.2.5 + '@emotion/utils@1.2.1': {} '@emotion/weak-memoize@0.3.1': {} @@ -10718,6 +11409,9 @@ snapshots: '@esbuild/aix-ppc64@0.25.1': optional: true + '@esbuild/aix-ppc64@0.27.7': + optional: true + '@esbuild/android-arm64@0.19.11': optional: true @@ -10727,6 +11421,9 @@ snapshots: '@esbuild/android-arm64@0.25.1': optional: true + '@esbuild/android-arm64@0.27.7': + optional: true + '@esbuild/android-arm@0.19.11': optional: true @@ -10736,6 +11433,9 @@ snapshots: '@esbuild/android-arm@0.25.1': optional: true + '@esbuild/android-arm@0.27.7': + optional: true + '@esbuild/android-x64@0.19.11': optional: true @@ -10745,6 +11445,9 @@ snapshots: '@esbuild/android-x64@0.25.1': optional: true + '@esbuild/android-x64@0.27.7': + optional: true + '@esbuild/darwin-arm64@0.19.11': optional: true @@ -10754,6 +11457,9 @@ snapshots: '@esbuild/darwin-arm64@0.25.1': optional: true + '@esbuild/darwin-arm64@0.27.7': + optional: true + '@esbuild/darwin-x64@0.19.11': optional: true @@ -10763,6 +11469,9 @@ snapshots: '@esbuild/darwin-x64@0.25.1': optional: true + '@esbuild/darwin-x64@0.27.7': + optional: true + '@esbuild/freebsd-arm64@0.19.11': optional: true @@ -10772,6 +11481,9 @@ snapshots: '@esbuild/freebsd-arm64@0.25.1': optional: true + '@esbuild/freebsd-arm64@0.27.7': + optional: true + '@esbuild/freebsd-x64@0.19.11': optional: true @@ -10781,6 +11493,9 @@ snapshots: '@esbuild/freebsd-x64@0.25.1': optional: true + '@esbuild/freebsd-x64@0.27.7': + optional: true + '@esbuild/linux-arm64@0.19.11': optional: true @@ -10790,6 +11505,9 @@ snapshots: '@esbuild/linux-arm64@0.25.1': optional: true + '@esbuild/linux-arm64@0.27.7': + optional: true + '@esbuild/linux-arm@0.19.11': optional: true @@ -10799,6 +11517,9 @@ snapshots: '@esbuild/linux-arm@0.25.1': optional: true + '@esbuild/linux-arm@0.27.7': + optional: true + '@esbuild/linux-ia32@0.19.11': optional: true @@ -10808,6 +11529,9 @@ snapshots: '@esbuild/linux-ia32@0.25.1': optional: true + '@esbuild/linux-ia32@0.27.7': + optional: true + '@esbuild/linux-loong64@0.19.11': optional: true @@ -10817,6 +11541,9 @@ snapshots: '@esbuild/linux-loong64@0.25.1': optional: true + '@esbuild/linux-loong64@0.27.7': + optional: true + '@esbuild/linux-mips64el@0.19.11': optional: true @@ -10826,6 +11553,9 @@ snapshots: '@esbuild/linux-mips64el@0.25.1': optional: true + '@esbuild/linux-mips64el@0.27.7': + optional: true + '@esbuild/linux-ppc64@0.19.11': optional: true @@ -10835,6 +11565,9 @@ snapshots: '@esbuild/linux-ppc64@0.25.1': optional: true + '@esbuild/linux-ppc64@0.27.7': + optional: true + '@esbuild/linux-riscv64@0.19.11': optional: true @@ -10844,6 +11577,9 @@ snapshots: '@esbuild/linux-riscv64@0.25.1': optional: true + '@esbuild/linux-riscv64@0.27.7': + optional: true + '@esbuild/linux-s390x@0.19.11': optional: true @@ -10853,6 +11589,9 @@ snapshots: '@esbuild/linux-s390x@0.25.1': optional: true + '@esbuild/linux-s390x@0.27.7': + optional: true + '@esbuild/linux-x64@0.19.11': optional: true @@ -10862,9 +11601,15 @@ snapshots: '@esbuild/linux-x64@0.25.1': optional: true + '@esbuild/linux-x64@0.27.7': + optional: true + '@esbuild/netbsd-arm64@0.25.1': optional: true + '@esbuild/netbsd-arm64@0.27.7': + optional: true + '@esbuild/netbsd-x64@0.19.11': optional: true @@ -10874,9 +11619,15 @@ snapshots: '@esbuild/netbsd-x64@0.25.1': optional: true + '@esbuild/netbsd-x64@0.27.7': + optional: true + '@esbuild/openbsd-arm64@0.25.1': optional: true + '@esbuild/openbsd-arm64@0.27.7': + optional: true + '@esbuild/openbsd-x64@0.19.11': optional: true @@ -10886,6 +11637,12 @@ snapshots: '@esbuild/openbsd-x64@0.25.1': optional: true + '@esbuild/openbsd-x64@0.27.7': + optional: true + + '@esbuild/openharmony-arm64@0.27.7': + optional: true + '@esbuild/sunos-x64@0.19.11': optional: true @@ -10895,6 +11652,9 @@ snapshots: '@esbuild/sunos-x64@0.25.1': optional: true + '@esbuild/sunos-x64@0.27.7': + optional: true + '@esbuild/win32-arm64@0.19.11': optional: true @@ -10904,6 +11664,9 @@ snapshots: '@esbuild/win32-arm64@0.25.1': optional: true + '@esbuild/win32-arm64@0.27.7': + optional: true + '@esbuild/win32-ia32@0.19.11': optional: true @@ -10913,6 +11676,9 @@ snapshots: '@esbuild/win32-ia32@0.25.1': optional: true + '@esbuild/win32-ia32@0.27.7': + optional: true + '@esbuild/win32-x64@0.19.11': optional: true @@ -10922,6 +11688,9 @@ snapshots: '@esbuild/win32-x64@0.25.1': optional: true + '@esbuild/win32-x64@0.27.7': + optional: true + '@ethereumjs/common@2.6.5': dependencies: crc-32: 1.2.2 @@ -11247,34 +12016,49 @@ snapshots: dependencies: '@floating-ui/utils': 0.2.1 + '@floating-ui/core@1.7.5': + dependencies: + '@floating-ui/utils': 0.2.11 + '@floating-ui/dom@1.6.0': dependencies: '@floating-ui/core': 1.6.0 '@floating-ui/utils': 0.2.1 - '@floating-ui/react-dom@2.0.7(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@floating-ui/dom@1.7.6': + dependencies: + '@floating-ui/core': 1.7.5 + '@floating-ui/utils': 0.2.11 + + '@floating-ui/react-dom@2.0.7(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@floating-ui/dom': 1.6.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) - '@floating-ui/react-dom@2.1.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@floating-ui/react-dom@2.1.2(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@floating-ui/dom': 1.6.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) - '@floating-ui/react@0.27.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@floating-ui/react-dom@2.1.8(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: - '@floating-ui/react-dom': 2.1.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@floating-ui/utils': 0.2.9 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@floating-ui/dom': 1.7.6 + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) + + '@floating-ui/react@0.27.19(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': + dependencies: + '@floating-ui/react-dom': 2.1.8(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@floating-ui/utils': 0.2.11 + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) tabbable: 6.2.0 '@floating-ui/utils@0.2.1': {} - '@floating-ui/utils@0.2.9': {} + '@floating-ui/utils@0.2.11': {} '@fortawesome/fontawesome-free@6.7.2': {} @@ -11327,9 +12111,9 @@ snapshots: dependencies: '@hapi/hoek': 9.3.0 - '@hono/node-server@1.13.8(hono@4.7.4)': + '@hono/node-server@1.19.14(hono@4.12.14)': dependencies: - hono: 4.7.4 + hono: 4.12.14 '@iconify/types@2.0.0': {} @@ -11414,28 +12198,45 @@ snapshots: '@types/yargs': 17.0.33 chalk: 4.1.2 + '@jridgewell/gen-mapping@0.3.13': + dependencies: + '@jridgewell/sourcemap-codec': 1.5.0 + '@jridgewell/trace-mapping': 0.3.31 + '@jridgewell/gen-mapping@0.3.8': dependencies: '@jridgewell/set-array': 1.2.1 '@jridgewell/sourcemap-codec': 1.5.0 '@jridgewell/trace-mapping': 0.3.25 + '@jridgewell/remapping@2.3.5': + dependencies: + '@jridgewell/gen-mapping': 0.3.8 + '@jridgewell/trace-mapping': 0.3.25 + '@jridgewell/resolve-uri@3.1.1': {} '@jridgewell/set-array@1.2.1': {} '@jridgewell/source-map@0.3.6': dependencies: - '@jridgewell/gen-mapping': 0.3.8 - '@jridgewell/trace-mapping': 0.3.25 + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.31 '@jridgewell/sourcemap-codec@1.5.0': {} + '@jridgewell/sourcemap-codec@1.5.5': {} + '@jridgewell/trace-mapping@0.3.25': dependencies: '@jridgewell/resolve-uri': 3.1.1 '@jridgewell/sourcemap-codec': 1.5.0 + '@jridgewell/trace-mapping@0.3.31': + dependencies: + '@jridgewell/resolve-uri': 3.1.1 + '@jridgewell/sourcemap-codec': 1.5.0 + '@lit-labs/ssr-dom-shim@1.2.0': {} '@lit-protocol/access-control-conditions@3.1.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': @@ -11456,7 +12257,7 @@ snapshots: - bufferutil - utf-8-validate - '@lit-protocol/auth-browser@3.1.2(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)': + '@lit-protocol/auth-browser@3.1.2(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)': dependencies: '@lit-protocol/auth-helpers': 3.1.2(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)) '@lit-protocol/constants': 3.1.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -11465,8 +12266,8 @@ snapshots: '@lit-protocol/misc-browser': 3.1.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@lit-protocol/types': 3.1.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@lit-protocol/uint8arrays': 3.1.2 - '@walletconnect/ethereum-provider': 2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@walletconnect/modal@2.6.1(react@18.2.0))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@walletconnect/modal': 2.6.1(react@18.2.0) + '@walletconnect/ethereum-provider': 2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(@walletconnect/modal@2.6.1(react@19.2.5))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@walletconnect/modal': 2.6.1(react@19.2.5) ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) jszip: 3.10.1 lit-siwe: 1.1.8(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0) @@ -11685,12 +12486,12 @@ snapshots: - supports-color - utf-8-validate - '@lit-protocol/lit-node-client@3.1.2(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)': + '@lit-protocol/lit-node-client@3.1.2(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)': dependencies: '@cosmjs/proto-signing': 0.30.1 '@cosmjs/stargate': 0.30.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@lit-protocol/access-control-conditions': 3.1.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@lit-protocol/auth-browser': 3.1.2(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10) + '@lit-protocol/auth-browser': 3.1.2(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10) '@lit-protocol/auth-helpers': 3.1.2(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)) '@lit-protocol/bls-sdk': 3.1.2 '@lit-protocol/constants': 3.1.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -11708,8 +12509,8 @@ snapshots: '@lit-protocol/sev-snp-utils-sdk': 3.1.2(encoding@0.1.13) '@lit-protocol/types': 3.1.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@lit-protocol/uint8arrays': 3.1.2 - '@walletconnect/ethereum-provider': 2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@walletconnect/modal@2.6.1(react@18.2.0))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@walletconnect/modal': 2.6.1(react@18.2.0) + '@walletconnect/ethereum-provider': 2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(@walletconnect/modal@2.6.1(react@19.2.5))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@walletconnect/modal': 2.6.1(react@19.2.5) bitcoinjs-lib: 6.1.5 blockstore-core: 3.0.0 bs58: 5.0.0 @@ -11816,12 +12617,12 @@ snapshots: dependencies: tslib: 2.6.2 - '@lit-protocol/pkp-base@3.1.2(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)': + '@lit-protocol/pkp-base@3.1.2(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)': dependencies: '@cosmjs/proto-signing': 0.30.1 '@cosmjs/stargate': 0.30.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@lit-protocol/access-control-conditions': 3.1.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@lit-protocol/auth-browser': 3.1.2(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10) + '@lit-protocol/auth-browser': 3.1.2(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10) '@lit-protocol/auth-helpers': 3.1.2(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)) '@lit-protocol/bls-sdk': 3.1.2 '@lit-protocol/constants': 3.1.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -11830,7 +12631,7 @@ snapshots: '@lit-protocol/crypto': 3.1.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) '@lit-protocol/ecdsa-sdk': 3.1.2 '@lit-protocol/encryption': 3.1.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@lit-protocol/lit-node-client': 3.1.2(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10) + '@lit-protocol/lit-node-client': 3.1.2(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10) '@lit-protocol/lit-node-client-nodejs': 3.1.2(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) '@lit-protocol/lit-third-party-libs': 3.1.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) '@lit-protocol/logger': 3.1.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -11840,8 +12641,8 @@ snapshots: '@lit-protocol/sev-snp-utils-sdk': 3.1.2(encoding@0.1.13) '@lit-protocol/types': 3.1.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@lit-protocol/uint8arrays': 3.1.2 - '@walletconnect/ethereum-provider': 2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@walletconnect/modal@2.6.1(react@18.2.0))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@walletconnect/modal': 2.6.1(react@18.2.0) + '@walletconnect/ethereum-provider': 2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(@walletconnect/modal@2.6.1(react@19.2.5))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@walletconnect/modal': 2.6.1(react@19.2.5) bitcoinjs-lib: 6.1.5 blockstore-core: 3.0.0 bs58: 5.0.0 @@ -11885,12 +12686,12 @@ snapshots: - supports-color - utf-8-validate - '@lit-protocol/pkp-ethers@3.1.2(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)': + '@lit-protocol/pkp-ethers@3.1.2(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)': dependencies: '@cosmjs/proto-signing': 0.30.1 '@cosmjs/stargate': 0.30.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@lit-protocol/access-control-conditions': 3.1.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@lit-protocol/auth-browser': 3.1.2(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10) + '@lit-protocol/auth-browser': 3.1.2(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10) '@lit-protocol/auth-helpers': 3.1.2(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)) '@lit-protocol/bls-sdk': 3.1.2 '@lit-protocol/constants': 3.1.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -11899,20 +12700,20 @@ snapshots: '@lit-protocol/crypto': 3.1.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) '@lit-protocol/ecdsa-sdk': 3.1.2 '@lit-protocol/encryption': 3.1.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@lit-protocol/lit-node-client': 3.1.2(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10) + '@lit-protocol/lit-node-client': 3.1.2(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10) '@lit-protocol/lit-node-client-nodejs': 3.1.2(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) '@lit-protocol/lit-third-party-libs': 3.1.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) '@lit-protocol/logger': 3.1.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@lit-protocol/misc': 3.1.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@lit-protocol/misc-browser': 3.1.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@lit-protocol/nacl': 3.1.2 - '@lit-protocol/pkp-base': 3.1.2(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10) + '@lit-protocol/pkp-base': 3.1.2(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10) '@lit-protocol/sev-snp-utils-sdk': 3.1.2(encoding@0.1.13) '@lit-protocol/types': 3.1.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@lit-protocol/uint8arrays': 3.1.2 '@metamask/eth-sig-util': 5.0.2 - '@walletconnect/ethereum-provider': 2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@walletconnect/modal@2.6.1(react@18.2.0))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@walletconnect/modal': 2.6.1(react@18.2.0) + '@walletconnect/ethereum-provider': 2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(@walletconnect/modal@2.6.1(react@19.2.5))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@walletconnect/modal': 2.6.1(react@19.2.5) bitcoinjs-lib: 6.1.5 blockstore-core: 3.0.0 bs58: 5.0.0 @@ -12005,23 +12806,25 @@ snapshots: '@magic-sdk/types@18.1.1': {} - '@mdx-js/mdx@3.0.0': + '@mdx-js/mdx@3.1.1': dependencies: '@types/estree': 1.0.6 '@types/estree-jsx': 1.0.3 '@types/hast': 3.0.4 '@types/mdx': 2.0.10 + acorn: 8.14.1 collapse-white-space: 2.1.0 devlop: 1.1.0 - estree-util-build-jsx: 3.0.1 estree-util-is-identifier-name: 3.0.0 - estree-util-to-js: 2.0.0 + estree-util-scope: 1.0.0 estree-walker: 3.0.3 - hast-util-to-estree: 3.1.0 hast-util-to-jsx-runtime: 2.3.0 markdown-extensions: 2.0.0 - periscopic: 3.1.0 - remark-mdx: 3.1.0 + recma-build-jsx: 1.0.0 + recma-jsx: 1.0.1(acorn@8.14.1) + recma-stringify: 1.0.0 + rehype-recma: 1.0.0 + remark-mdx: 3.1.1 remark-parse: 11.0.0 remark-rehype: 11.1.0 source-map: 0.7.4 @@ -12033,17 +12836,17 @@ snapshots: transitivePeerDependencies: - supports-color - '@mdx-js/react@3.1.0(@types/react@18.2.47)(react@18.2.0)': + '@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.5)': dependencies: '@types/mdx': 2.0.10 - '@types/react': 18.2.47 - react: 18.2.0 + '@types/react': 19.2.14 + react: 19.2.5 - '@mdx-js/rollup@3.1.0(rollup@4.35.0)': + '@mdx-js/rollup@3.1.1(rollup@4.60.2)': dependencies: - '@mdx-js/mdx': 3.0.0 - '@rollup/pluginutils': 5.1.0(rollup@4.35.0) - rollup: 4.35.0 + '@mdx-js/mdx': 3.1.1 + '@rollup/pluginutils': 5.1.0(rollup@4.60.2) + rollup: 4.60.2 source-map: 0.7.4 vfile: 6.0.1 transitivePeerDependencies: @@ -12167,27 +12970,27 @@ snapshots: - encoding - supports-color - '@metamask/sdk-install-modal-web@0.14.1(@types/react@18.2.47)(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))': + '@metamask/sdk-install-modal-web@0.14.1(@types/react@19.2.14)(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))': dependencies: - '@emotion/react': 11.11.3(@types/react@18.2.47)(react@18.2.0) - '@emotion/styled': 11.11.0(@emotion/react@11.11.3(@types/react@18.2.47)(react@18.2.0))(@types/react@18.2.47)(react@18.2.0) + '@emotion/react': 11.11.3(@types/react@19.2.14)(react@19.2.5) + '@emotion/styled': 11.11.0(@emotion/react@11.11.3(@types/react@19.2.14)(react@18.2.0))(@types/react@19.2.14)(react@18.2.0) i18next: 22.5.1 qr-code-styling: 1.6.0-rc.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - react-i18next: 13.5.0(i18next@22.5.1)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) + react-i18next: 13.5.0(i18next@22.5.1)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))(react@18.2.0) transitivePeerDependencies: - '@types/react' - react-native - '@metamask/sdk@0.14.1(@types/react@18.2.47)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.35.0)(utf-8-validate@5.0.10)': + '@metamask/sdk@0.14.1(@types/react@19.2.14)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.2.5(react@19.2.5))(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))(react@19.2.5)(rollup@4.60.2)(utf-8-validate@5.0.10)': dependencies: '@metamask/onboarding': 1.0.1 '@metamask/post-message-stream': 6.2.0 '@metamask/providers': 10.2.1 '@metamask/sdk-communication-layer': 0.14.1(encoding@0.1.13) - '@metamask/sdk-install-modal-web': 0.14.1(@types/react@18.2.47)(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)) - '@react-native-async-storage/async-storage': 1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)) + '@metamask/sdk-install-modal-web': 0.14.1(@types/react@19.2.14)(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)) + '@react-native-async-storage/async-storage': 1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)) '@types/dom-screen-wake-lock': 1.0.3 bowser: 2.11.0 cross-fetch: 4.0.0(encoding@0.1.13) @@ -12200,16 +13003,16 @@ snapshots: obj-multiplex: 1.0.0 pump: 3.0.0 qrcode-terminal-nooctal: 0.12.1 - react-i18next: 13.5.0(i18next@22.5.1)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) - react-native-webview: 11.26.1(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) + react-i18next: 13.5.0(i18next@22.5.1)(react-dom@19.2.5(react@19.2.5))(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))(react@19.2.5) + react-native-webview: 11.26.1(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))(react@19.2.5) readable-stream: 2.3.8 - rollup-plugin-visualizer: 5.12.0(rollup@4.35.0) + rollup-plugin-visualizer: 5.12.0(rollup@4.60.2) socket.io-client: 4.7.4(bufferutil@4.0.8)(utf-8-validate@5.0.10) util: 0.12.5 uuid: 8.3.2 optionalDependencies: - react: 18.2.0 - react-native: 0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10) + react: 19.2.5 + react-native: 0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@types/react' - bufferutil @@ -12294,6 +13097,13 @@ snapshots: multiformats: 13.0.1 murmurhash3js-revisited: 3.0.0 + '@napi-rs/wasm-runtime@1.1.4(@emnapi/core@1.9.2)(@emnapi/runtime@1.9.2)': + dependencies: + '@emnapi/core': 1.9.2 + '@emnapi/runtime': 1.9.2 + '@tybys/wasm-util': 0.10.1 + optional: true + '@noble/ciphers@0.4.1': {} '@noble/ciphers@1.3.0': {} @@ -12328,18 +13138,6 @@ snapshots: '@noble/secp256k1@1.7.1': {} - '@nodelib/fs.scandir@2.1.5': - dependencies: - '@nodelib/fs.stat': 2.0.5 - run-parallel: 1.2.0 - - '@nodelib/fs.stat@2.0.5': {} - - '@nodelib/fs.walk@1.2.8': - dependencies: - '@nodelib/fs.scandir': 2.1.5 - fastq: 1.16.0 - '@notabene/pii-sdk@1.17.0': dependencies: '@ethersproject/bytes': 5.7.0 @@ -12362,6 +13160,8 @@ snapshots: transitivePeerDependencies: - supports-color + '@oxc-project/types@0.126.0': {} + '@parcel/watcher-android-arm64@2.4.0': optional: true @@ -12452,9 +13252,9 @@ snapshots: transitivePeerDependencies: - debug - '@permissionless/wagmi@0.1.0(wagmi@2.5.5(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.18.0)(@tanstack/react-query@5.18.0(react@18.2.0))(@types/react@18.2.47)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.35.0)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@2.33.1(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)))': + '@permissionless/wagmi@0.1.0(wagmi@2.5.5(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.18.0)(@tanstack/react-query@5.18.0(react@19.2.5))(@types/react@19.2.14)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.2.5(react@19.2.5))(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))(react@19.2.5)(rollup@4.60.2)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@2.33.1(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)))': dependencies: - wagmi: 2.5.5(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.18.0)(@tanstack/react-query@5.18.0(react@18.2.0))(@types/react@18.2.47)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.35.0)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@2.33.1(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)) + wagmi: 2.5.5(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.18.0)(@tanstack/react-query@5.18.0(react@19.2.5))(@types/react@19.2.14)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.2.5(react@19.2.5))(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))(react@19.2.5)(rollup@4.60.2)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@2.33.1(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)) '@protobufjs/aspromise@1.1.2': {} @@ -12493,942 +13293,942 @@ snapshots: '@radix-ui/primitive@1.1.2': {} - '@radix-ui/react-accessible-icon@1.1.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-accessible-icon@1.1.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: - '@radix-ui/react-visually-hidden': 1.2.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-visually-hidden': 1.2.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-accordion@1.2.11(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-accordion@1.2.11(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@radix-ui/primitive': 1.1.2 - '@radix-ui/react-collapsible': 1.1.11(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-collection': 1.1.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-context': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-direction': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-id': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-primitive': 2.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-collapsible': 1.1.11(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-collection': 1.1.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-direction': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-id': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-alert-dialog@1.1.14(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-alert-dialog@1.1.14(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@radix-ui/primitive': 1.1.2 - '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-context': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-dialog': 1.1.14(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 2.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-slot': 1.2.3(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-dialog': 1.1.14(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-slot': 1.2.3(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-arrow@1.0.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-arrow@1.0.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@babel/runtime': 7.23.8 - '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-arrow@1.1.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-arrow@1.1.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: - '@radix-ui/react-primitive': 2.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-aspect-ratio@1.1.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-aspect-ratio@1.1.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: - '@radix-ui/react-primitive': 2.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-avatar@1.1.10(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-avatar@1.1.10(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: - '@radix-ui/react-context': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-primitive': 2.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-is-hydrated': 0.1.0(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-is-hydrated': 0.1.0(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-checkbox@1.0.4(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-checkbox@1.0.4(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@babel/runtime': 7.23.8 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-context': 1.0.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-presence': 1.0.1(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-primitive': 1.0.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-previous': 1.0.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-size': 1.0.1(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-checkbox@1.3.2(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-checkbox@1.3.2(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@radix-ui/primitive': 1.1.2 - '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-context': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-presence': 1.1.4(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 2.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-previous': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-size': 1.1.1(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-presence': 1.1.4(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-size': 1.1.1(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-collapsible@1.1.11(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-collapsible@1.1.11(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@radix-ui/primitive': 1.1.2 - '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-context': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-id': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-presence': 1.1.4(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 2.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-id': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-presence': 1.1.4(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-collection@1.0.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-collection@1.0.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@babel/runtime': 7.23.8 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-context': 1.0.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-primitive': 1.0.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-slot': 1.0.2(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-collection@1.1.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-collection@1.1.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: - '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-context': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-primitive': 2.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-slot': 1.2.3(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-slot': 1.2.3(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.47)(react@18.2.0)': + '@radix-ui/react-compose-refs@1.0.1(@types/react@19.2.14)(react@19.2.5)': dependencies: '@babel/runtime': 7.23.8 - react: 18.2.0 + react: 19.2.5 optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-compose-refs@1.1.2(@types/react@18.2.47)(react@18.2.0)': + '@radix-ui/react-compose-refs@1.1.2(@types/react@19.2.14)(react@19.2.5)': dependencies: - react: 18.2.0 + react: 19.2.5 optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-context-menu@2.2.15(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-context-menu@2.2.15(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@radix-ui/primitive': 1.1.2 - '@radix-ui/react-context': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-menu': 2.1.15(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 2.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-menu': 2.1.15(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-context@1.0.1(@types/react@18.2.47)(react@18.2.0)': + '@radix-ui/react-context@1.0.1(@types/react@19.2.14)(react@19.2.5)': dependencies: '@babel/runtime': 7.23.8 - react: 18.2.0 + react: 19.2.5 optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-context@1.1.2(@types/react@18.2.47)(react@18.2.0)': + '@radix-ui/react-context@1.1.2(@types/react@19.2.14)(react@19.2.5)': dependencies: - react: 18.2.0 + react: 19.2.5 optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-dialog@1.1.14(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-dialog@1.1.14(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@radix-ui/primitive': 1.1.2 - '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-context': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.1.10(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-focus-guards': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-focus-scope': 1.1.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-id': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-portal': 1.1.9(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-presence': 1.1.4(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 2.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-slot': 1.2.3(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.2.47)(react@18.2.0) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-dismissable-layer': 1.1.10(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-focus-guards': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-focus-scope': 1.1.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-id': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-portal': 1.1.9(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-presence': 1.1.4(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-slot': 1.2.3(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.5) aria-hidden: 1.2.4 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-remove-scroll: 2.6.3(@types/react@18.2.47)(react@18.2.0) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) + react-remove-scroll: 2.6.3(@types/react@19.2.14)(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-direction@1.0.1(@types/react@18.2.47)(react@18.2.0)': + '@radix-ui/react-direction@1.0.1(@types/react@19.2.14)(react@19.2.5)': dependencies: '@babel/runtime': 7.23.8 - react: 18.2.0 + react: 19.2.5 optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-direction@1.1.1(@types/react@18.2.47)(react@18.2.0)': + '@radix-ui/react-direction@1.1.1(@types/react@19.2.14)(react@19.2.5)': dependencies: - react: 18.2.0 + react: 19.2.5 optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-dismissable-layer@1.0.5(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-dismissable-layer@1.0.5(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@babel/runtime': 7.23.8 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-primitive': 1.0.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-dismissable-layer@1.1.10(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-dismissable-layer@1.1.10(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@radix-ui/primitive': 1.1.2 - '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-primitive': 2.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-dropdown-menu@2.1.15(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-dropdown-menu@2.1.15(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@radix-ui/primitive': 1.1.2 - '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-context': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-id': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-menu': 2.1.15(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 2.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-id': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-menu': 2.1.15(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-focus-guards@1.1.2(@types/react@18.2.47)(react@18.2.0)': + '@radix-ui/react-focus-guards@1.1.2(@types/react@19.2.14)(react@19.2.5)': dependencies: - react: 18.2.0 + react: 19.2.5 optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-focus-scope@1.1.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-focus-scope@1.1.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: - '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-primitive': 2.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-form@0.1.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-form@0.1.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@radix-ui/primitive': 1.1.2 - '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-context': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-id': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-label': 2.1.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 2.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-id': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-label': 2.1.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-hover-card@1.1.14(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-hover-card@1.1.14(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@radix-ui/primitive': 1.1.2 - '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-context': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.1.10(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-popper': 1.2.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-portal': 1.1.9(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-presence': 1.1.4(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 2.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-dismissable-layer': 1.1.10(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-popper': 1.2.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-portal': 1.1.9(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-presence': 1.1.4(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-icons@1.3.2(react@18.2.0)': + '@radix-ui/react-icons@1.3.2(react@19.2.5)': dependencies: - react: 18.2.0 + react: 19.2.5 - '@radix-ui/react-id@1.0.1(@types/react@18.2.47)(react@18.2.0)': + '@radix-ui/react-id@1.0.1(@types/react@19.2.14)(react@19.2.5)': dependencies: '@babel/runtime': 7.23.8 - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-id@1.1.1(@types/react@18.2.47)(react@18.2.0)': + '@radix-ui/react-id@1.1.1(@types/react@19.2.14)(react@19.2.5)': dependencies: - '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-label@2.1.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-label@2.1.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: - '@radix-ui/react-primitive': 2.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-menu@2.1.15(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-menu@2.1.15(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@radix-ui/primitive': 1.1.2 - '@radix-ui/react-collection': 1.1.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-context': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-direction': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.1.10(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-focus-guards': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-focus-scope': 1.1.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-id': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-popper': 1.2.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-portal': 1.1.9(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-presence': 1.1.4(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 2.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-roving-focus': 1.1.10(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-slot': 1.2.3(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.2.47)(react@18.2.0) + '@radix-ui/react-collection': 1.1.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-direction': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-dismissable-layer': 1.1.10(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-focus-guards': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-focus-scope': 1.1.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-id': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-popper': 1.2.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-portal': 1.1.9(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-presence': 1.1.4(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-roving-focus': 1.1.10(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-slot': 1.2.3(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.5) aria-hidden: 1.2.4 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-remove-scroll: 2.6.3(@types/react@18.2.47)(react@18.2.0) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) + react-remove-scroll: 2.6.3(@types/react@19.2.14)(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-menubar@1.1.15(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-menubar@1.1.15(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@radix-ui/primitive': 1.1.2 - '@radix-ui/react-collection': 1.1.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-context': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-direction': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-id': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-menu': 2.1.15(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 2.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-roving-focus': 1.1.10(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-collection': 1.1.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-direction': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-id': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-menu': 2.1.15(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-roving-focus': 1.1.10(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-navigation-menu@1.2.13(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-navigation-menu@1.2.13(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@radix-ui/primitive': 1.1.2 - '@radix-ui/react-collection': 1.1.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-context': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-direction': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.1.10(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-id': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-presence': 1.1.4(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 2.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-previous': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-visually-hidden': 1.2.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-collection': 1.1.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-direction': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-dismissable-layer': 1.1.10(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-id': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-presence': 1.1.4(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-visually-hidden': 1.2.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-one-time-password-field@0.1.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-one-time-password-field@0.1.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@radix-ui/number': 1.1.1 '@radix-ui/primitive': 1.1.2 - '@radix-ui/react-collection': 1.1.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-context': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-direction': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-primitive': 2.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-roving-focus': 1.1.10(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-effect-event': 0.0.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-is-hydrated': 0.1.0(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-collection': 1.1.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-direction': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-roving-focus': 1.1.10(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-is-hydrated': 0.1.0(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-password-toggle-field@0.1.2(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-password-toggle-field@0.1.2(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@radix-ui/primitive': 1.1.2 - '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-context': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-id': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-primitive': 2.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-effect-event': 0.0.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-is-hydrated': 0.1.0(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-id': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-is-hydrated': 0.1.0(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-popover@1.1.14(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-popover@1.1.14(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@radix-ui/primitive': 1.1.2 - '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-context': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.1.10(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-focus-guards': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-focus-scope': 1.1.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-id': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-popper': 1.2.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-portal': 1.1.9(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-presence': 1.1.4(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 2.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-slot': 1.2.3(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.2.47)(react@18.2.0) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-dismissable-layer': 1.1.10(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-focus-guards': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-focus-scope': 1.1.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-id': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-popper': 1.2.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-portal': 1.1.9(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-presence': 1.1.4(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-slot': 1.2.3(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.5) aria-hidden: 1.2.4 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-remove-scroll: 2.6.3(@types/react@18.2.47)(react@18.2.0) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) + react-remove-scroll: 2.6.3(@types/react@19.2.14)(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-popper@1.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-popper@1.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@babel/runtime': 7.23.8 - '@floating-ui/react-dom': 2.0.7(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-arrow': 1.0.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.47)(react@18.2.0) + '@floating-ui/react-dom': 2.0.7(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-arrow': 1.0.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-context': 1.0.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-primitive': 1.0.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-rect': 1.0.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-size': 1.0.1(@types/react@19.2.14)(react@19.2.5) '@radix-ui/rect': 1.0.1 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 - - '@radix-ui/react-popper@1.2.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@floating-ui/react-dom': 2.1.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-arrow': 1.1.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-context': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-primitive': 2.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-rect': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-size': 1.1.1(@types/react@18.2.47)(react@18.2.0) + '@types/react': 19.2.14 + + '@radix-ui/react-popper@1.2.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': + dependencies: + '@floating-ui/react-dom': 2.1.2(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-arrow': 1.1.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-rect': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-size': 1.1.1(@types/react@19.2.14)(react@19.2.5) '@radix-ui/rect': 1.1.1 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-portal@1.0.4(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-portal@1.0.4(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@babel/runtime': 7.23.8 - '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-portal@1.1.9(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-portal@1.1.9(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: - '@radix-ui/react-primitive': 2.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-presence@1.0.1(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-presence@1.0.1(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@babel/runtime': 7.23.8 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-presence@1.1.4(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-presence@1.1.4(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: - '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-primitive@1.0.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-primitive@1.0.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@babel/runtime': 7.23.8 - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-slot': 1.0.2(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-primitive@2.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-primitive@2.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: - '@radix-ui/react-slot': 1.2.3(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-slot': 1.2.3(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-progress@1.1.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-progress@1.1.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: - '@radix-ui/react-context': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-primitive': 2.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-radio-group@1.3.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-radio-group@1.3.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@radix-ui/primitive': 1.1.2 - '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-context': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-direction': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-presence': 1.1.4(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 2.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-roving-focus': 1.1.10(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-previous': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-size': 1.1.1(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-direction': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-presence': 1.1.4(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-roving-focus': 1.1.10(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-size': 1.1.1(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-roving-focus@1.1.10(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-roving-focus@1.1.10(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@radix-ui/primitive': 1.1.2 - '@radix-ui/react-collection': 1.1.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-context': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-direction': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-id': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-primitive': 2.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-collection': 1.1.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-direction': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-id': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-scroll-area@1.2.9(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-scroll-area@1.2.9(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@radix-ui/number': 1.1.1 '@radix-ui/primitive': 1.1.2 - '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-context': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-direction': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-presence': 1.1.4(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 2.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-direction': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-presence': 1.1.4(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-select@2.2.5(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-select@2.2.5(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@radix-ui/number': 1.1.1 '@radix-ui/primitive': 1.1.2 - '@radix-ui/react-collection': 1.1.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-context': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-direction': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.1.10(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-focus-guards': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-focus-scope': 1.1.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-id': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-popper': 1.2.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-portal': 1.1.9(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 2.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-slot': 1.2.3(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-previous': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-visually-hidden': 1.2.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-collection': 1.1.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-direction': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-dismissable-layer': 1.1.10(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-focus-guards': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-focus-scope': 1.1.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-id': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-popper': 1.2.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-portal': 1.1.9(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-slot': 1.2.3(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-visually-hidden': 1.2.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) aria-hidden: 1.2.4 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-remove-scroll: 2.6.3(@types/react@18.2.47)(react@18.2.0) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) + react-remove-scroll: 2.6.3(@types/react@19.2.14)(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-separator@1.1.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-separator@1.1.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: - '@radix-ui/react-primitive': 2.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-slider@1.1.2(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-slider@1.1.2(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@babel/runtime': 7.23.8 '@radix-ui/number': 1.0.1 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-collection': 1.0.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-context': 1.0.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-direction': 1.0.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-primitive': 1.0.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-previous': 1.0.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-size': 1.0.1(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-slider@1.3.5(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-slider@1.3.5(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@radix-ui/number': 1.1.1 '@radix-ui/primitive': 1.1.2 - '@radix-ui/react-collection': 1.1.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-context': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-direction': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-primitive': 2.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-previous': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-size': 1.1.1(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-collection': 1.1.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-direction': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-size': 1.1.1(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-slot@1.0.2(@types/react@18.2.47)(react@18.2.0)': + '@radix-ui/react-slot@1.0.2(@types/react@19.2.14)(react@19.2.5)': dependencies: '@babel/runtime': 7.23.8 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-slot@1.2.3(@types/react@18.2.47)(react@18.2.0)': + '@radix-ui/react-slot@1.2.3(@types/react@19.2.14)(react@19.2.5)': dependencies: - '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-switch@1.2.5(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-switch@1.2.5(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@radix-ui/primitive': 1.1.2 - '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-context': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-primitive': 2.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-previous': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-size': 1.1.1(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-size': 1.1.1(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-tabs@1.1.12(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-tabs@1.1.12(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@radix-ui/primitive': 1.1.2 - '@radix-ui/react-context': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-direction': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-id': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-presence': 1.1.4(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 2.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-roving-focus': 1.1.10(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-direction': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-id': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-presence': 1.1.4(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-roving-focus': 1.1.10(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-toast@1.2.14(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-toast@1.2.14(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@radix-ui/primitive': 1.1.2 - '@radix-ui/react-collection': 1.1.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-context': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.1.10(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-portal': 1.1.9(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-presence': 1.1.4(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 2.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-visually-hidden': 1.2.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-collection': 1.1.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-dismissable-layer': 1.1.10(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-portal': 1.1.9(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-presence': 1.1.4(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-visually-hidden': 1.2.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-toggle-group@1.1.10(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-toggle-group@1.1.10(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@radix-ui/primitive': 1.1.2 - '@radix-ui/react-context': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-direction': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-primitive': 2.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-roving-focus': 1.1.10(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-toggle': 1.1.9(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-direction': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-roving-focus': 1.1.10(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-toggle': 1.1.9(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-toggle@1.1.9(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-toggle@1.1.9(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@radix-ui/primitive': 1.1.2 - '@radix-ui/react-primitive': 2.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-toolbar@1.1.10(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-toolbar@1.1.10(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@radix-ui/primitive': 1.1.2 - '@radix-ui/react-context': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-direction': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-primitive': 2.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-roving-focus': 1.1.10(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-separator': 1.1.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-toggle-group': 1.1.10(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-direction': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-roving-focus': 1.1.10(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-separator': 1.1.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-toggle-group': 1.1.10(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-tooltip@1.0.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-tooltip@1.0.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@babel/runtime': 7.23.8 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-popper': 1.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-portal': 1.0.4(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-visually-hidden': 1.0.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-context': 1.0.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-id': 1.0.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-popper': 1.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-portal': 1.0.4(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-presence': 1.0.1(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-primitive': 1.0.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-slot': 1.0.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-visually-hidden': 1.0.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-tooltip@1.2.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-tooltip@1.2.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@radix-ui/primitive': 1.1.2 - '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-context': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.1.10(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-id': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-popper': 1.2.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-portal': 1.1.9(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-presence': 1.1.4(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 2.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-slot': 1.2.3(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-visually-hidden': 1.2.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-dismissable-layer': 1.1.10(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-id': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-popper': 1.2.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-portal': 1.1.9(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-presence': 1.1.4(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-slot': 1.2.3(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-visually-hidden': 1.2.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.47)(react@18.2.0)': + '@radix-ui/react-use-callback-ref@1.0.1(@types/react@19.2.14)(react@19.2.5)': dependencies: '@babel/runtime': 7.23.8 - react: 18.2.0 + react: 19.2.5 optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-use-callback-ref@1.1.1(@types/react@18.2.47)(react@18.2.0)': + '@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.2.14)(react@19.2.5)': dependencies: - react: 18.2.0 + react: 19.2.5 optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.47)(react@18.2.0)': + '@radix-ui/react-use-controllable-state@1.0.1(@types/react@19.2.14)(react@19.2.5)': dependencies: '@babel/runtime': 7.23.8 - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-use-controllable-state@1.2.2(@types/react@18.2.47)(react@18.2.0)': + '@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.2.14)(react@19.2.5)': dependencies: - '@radix-ui/react-use-effect-event': 0.0.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 + '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-use-effect-event@0.0.2(@types/react@18.2.47)(react@18.2.0)': + '@radix-ui/react-use-effect-event@0.0.2(@types/react@19.2.14)(react@19.2.5)': dependencies: - '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.47)(react@18.2.0)': + '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@19.2.14)(react@19.2.5)': dependencies: '@babel/runtime': 7.23.8 - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-use-escape-keydown@1.1.1(@types/react@18.2.47)(react@18.2.0)': + '@radix-ui/react-use-escape-keydown@1.1.1(@types/react@19.2.14)(react@19.2.5)': dependencies: - '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-use-is-hydrated@0.1.0(@types/react@18.2.47)(react@18.2.0)': + '@radix-ui/react-use-is-hydrated@0.1.0(@types/react@19.2.14)(react@19.2.5)': dependencies: - react: 18.2.0 - use-sync-external-store: 1.5.0(react@18.2.0) + react: 19.2.5 + use-sync-external-store: 1.5.0(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.47)(react@18.2.0)': + '@radix-ui/react-use-layout-effect@1.0.1(@types/react@19.2.14)(react@19.2.5)': dependencies: '@babel/runtime': 7.23.8 - react: 18.2.0 + react: 19.2.5 optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-use-layout-effect@1.1.1(@types/react@18.2.47)(react@18.2.0)': + '@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.2.14)(react@19.2.5)': dependencies: - react: 18.2.0 + react: 19.2.5 optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-use-previous@1.0.1(@types/react@18.2.47)(react@18.2.0)': + '@radix-ui/react-use-previous@1.0.1(@types/react@19.2.14)(react@19.2.5)': dependencies: '@babel/runtime': 7.23.8 - react: 18.2.0 + react: 19.2.5 optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-use-previous@1.1.1(@types/react@18.2.47)(react@18.2.0)': + '@radix-ui/react-use-previous@1.1.1(@types/react@19.2.14)(react@19.2.5)': dependencies: - react: 18.2.0 + react: 19.2.5 optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-use-rect@1.0.1(@types/react@18.2.47)(react@18.2.0)': + '@radix-ui/react-use-rect@1.0.1(@types/react@19.2.14)(react@19.2.5)': dependencies: '@babel/runtime': 7.23.8 '@radix-ui/rect': 1.0.1 - react: 18.2.0 + react: 19.2.5 optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-use-rect@1.1.1(@types/react@18.2.47)(react@18.2.0)': + '@radix-ui/react-use-rect@1.1.1(@types/react@19.2.14)(react@19.2.5)': dependencies: '@radix-ui/rect': 1.1.1 - react: 18.2.0 + react: 19.2.5 optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-use-size@1.0.1(@types/react@18.2.47)(react@18.2.0)': + '@radix-ui/react-use-size@1.0.1(@types/react@19.2.14)(react@19.2.5)': dependencies: '@babel/runtime': 7.23.8 - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-use-size@1.1.1(@types/react@18.2.47)(react@18.2.0)': + '@radix-ui/react-use-size@1.1.1(@types/react@19.2.14)(react@19.2.5)': dependencies: - '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.2.47)(react@18.2.0) - react: 18.2.0 + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.5) + react: 19.2.5 optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-visually-hidden@1.0.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-visually-hidden@1.0.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@babel/runtime': 7.23.8 - '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - '@radix-ui/react-visually-hidden@1.2.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-visually-hidden@1.2.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: - '@radix-ui/react-primitive': 2.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 '@radix-ui/rect@1.0.1': dependencies: @@ -13436,10 +14236,10 @@ snapshots: '@radix-ui/rect@1.1.1': {} - '@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))': + '@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))': dependencies: merge-options: 3.0.4 - react-native: 0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10) + react-native: 0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10) '@react-native-community/cli-clean@12.3.2(encoding@0.1.13)': dependencies: @@ -13484,7 +14284,7 @@ snapshots: semver: 7.7.1 strip-ansi: 5.2.0 wcwidth: 1.0.1 - yaml: 2.7.0 + yaml: 2.8.3 transitivePeerDependencies: - encoding @@ -13526,7 +14326,7 @@ snapshots: dependencies: '@react-native-community/cli-debugger-ui': 12.3.2 '@react-native-community/cli-tools': 12.3.2(encoding@0.1.13) - compression: 1.8.0 + compression: 1.8.1 connect: 3.7.0 errorhandler: 1.5.1 nocache: 3.0.4 @@ -13586,80 +14386,80 @@ snapshots: '@react-native/assets-registry@0.73.1': {} - '@react-native/babel-plugin-codegen@0.73.3(@babel/preset-env@7.23.9(@babel/core@7.26.10))': + '@react-native/babel-plugin-codegen@0.73.3(@babel/preset-env@7.23.9(@babel/core@7.29.0))': dependencies: - '@react-native/codegen': 0.73.2(@babel/preset-env@7.23.9(@babel/core@7.26.10)) + '@react-native/codegen': 0.73.2(@babel/preset-env@7.23.9(@babel/core@7.29.0)) transitivePeerDependencies: - '@babel/preset-env' - supports-color - '@react-native/babel-preset@0.73.20(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))': - dependencies: - '@babel/core': 7.26.10 - '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.26.10) - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.26.10) - '@babel/plugin-proposal-export-default-from': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.26.10) - '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.26.10) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.26.10) - '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.26.10) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.26.10) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.10) - '@babel/plugin-syntax-export-default-from': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-syntax-flow': 7.26.0(@babel/core@7.26.10) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.10) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.10) - '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-block-scoping': 7.27.0(@babel/core@7.26.10) - '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-flow-strip-types': 7.26.5(@babel/core@7.26.10) - '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.10) - '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-runtime': 7.26.10(@babel/core@7.26.10) - '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-typescript': 7.27.0(@babel/core@7.26.10) - '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.10) - '@babel/template': 7.27.0 - '@react-native/babel-plugin-codegen': 0.73.3(@babel/preset-env@7.23.9(@babel/core@7.26.10)) - babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.26.10) + '@react-native/babel-preset@0.73.20(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))': + dependencies: + '@babel/core': 7.29.0 + '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.29.0) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.29.0) + '@babel/plugin-proposal-export-default-from': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.29.0) + '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.29.0) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.29.0) + '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.29.0) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.29.0) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.29.0) + '@babel/plugin-syntax-export-default-from': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-syntax-flow': 7.26.0(@babel/core@7.29.0) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.29.0) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.29.0) + '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-block-scoping': 7.27.0(@babel/core@7.29.0) + '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-flow-strip-types': 7.26.5(@babel/core@7.29.0) + '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.29.0) + '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.29.0) + '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.29.0) + '@babel/plugin-transform-runtime': 7.26.10(@babel/core@7.29.0) + '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.29.0) + '@babel/plugin-transform-typescript': 7.27.0(@babel/core@7.29.0) + '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.29.0) + '@babel/template': 7.28.6 + '@react-native/babel-plugin-codegen': 0.73.3(@babel/preset-env@7.23.9(@babel/core@7.29.0)) + babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.29.0) react-refresh: 0.14.2 transitivePeerDependencies: - '@babel/preset-env' - supports-color - '@react-native/codegen@0.73.2(@babel/preset-env@7.23.9(@babel/core@7.26.10))': + '@react-native/codegen@0.73.2(@babel/preset-env@7.23.9(@babel/core@7.29.0))': dependencies: - '@babel/parser': 7.27.0 - '@babel/preset-env': 7.23.9(@babel/core@7.26.10) + '@babel/parser': 7.29.2 + '@babel/preset-env': 7.23.9(@babel/core@7.29.0) flow-parser: 0.206.0 glob: 7.2.3 invariant: 2.2.4 - jscodeshift: 0.14.0(@babel/preset-env@7.23.9(@babel/core@7.26.10)) + jscodeshift: 0.14.0(@babel/preset-env@7.23.9(@babel/core@7.29.0)) mkdirp: 0.5.6 nullthrows: 1.1.1 transitivePeerDependencies: - supports-color - '@react-native/community-cli-plugin@0.73.14(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': + '@react-native/community-cli-plugin@0.73.14(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: '@react-native-community/cli-server-api': 12.3.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) '@react-native-community/cli-tools': 12.3.2(encoding@0.1.13) '@react-native/dev-middleware': 0.73.7(encoding@0.1.13) - '@react-native/metro-babel-transformer': 0.73.14(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10)) + '@react-native/metro-babel-transformer': 0.73.14(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0)) chalk: 4.1.2 execa: 5.1.1 metro: 0.80.12(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -13697,10 +14497,10 @@ snapshots: '@react-native/js-polyfills@0.73.1': {} - '@react-native/metro-babel-transformer@0.73.14(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))': + '@react-native/metro-babel-transformer@0.73.14(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))': dependencies: - '@babel/core': 7.26.10 - '@react-native/babel-preset': 0.73.20(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10)) + '@babel/core': 7.29.0 + '@react-native/babel-preset': 0.73.20(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0)) hermes-parser: 0.15.0 nullthrows: 1.1.1 transitivePeerDependencies: @@ -13709,123 +14509,194 @@ snapshots: '@react-native/normalize-colors@0.73.2': {} - '@react-native/virtualized-lists@0.73.4(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))': + '@react-native/virtualized-lists@0.73.4(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))': dependencies: invariant: 2.2.4 nullthrows: 1.1.1 - react-native: 0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10) + react-native: 0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10) + + '@rolldown/binding-android-arm64@1.0.0-rc.16': + optional: true + + '@rolldown/binding-darwin-arm64@1.0.0-rc.16': + optional: true + + '@rolldown/binding-darwin-x64@1.0.0-rc.16': + optional: true + + '@rolldown/binding-freebsd-x64@1.0.0-rc.16': + optional: true + + '@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.16': + optional: true + + '@rolldown/binding-linux-arm64-gnu@1.0.0-rc.16': + optional: true + + '@rolldown/binding-linux-arm64-musl@1.0.0-rc.16': + optional: true - '@rollup/pluginutils@5.1.0(rollup@4.35.0)': + '@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.16': + optional: true + + '@rolldown/binding-linux-s390x-gnu@1.0.0-rc.16': + optional: true + + '@rolldown/binding-linux-x64-gnu@1.0.0-rc.16': + optional: true + + '@rolldown/binding-linux-x64-musl@1.0.0-rc.16': + optional: true + + '@rolldown/binding-openharmony-arm64@1.0.0-rc.16': + optional: true + + '@rolldown/binding-wasm32-wasi@1.0.0-rc.16': + dependencies: + '@emnapi/core': 1.9.2 + '@emnapi/runtime': 1.9.2 + '@napi-rs/wasm-runtime': 1.1.4(@emnapi/core@1.9.2)(@emnapi/runtime@1.9.2) + optional: true + + '@rolldown/binding-win32-arm64-msvc@1.0.0-rc.16': + optional: true + + '@rolldown/binding-win32-x64-msvc@1.0.0-rc.16': + optional: true + + '@rolldown/pluginutils@1.0.0-rc.16': {} + + '@rolldown/pluginutils@1.0.0-rc.3': {} + + '@rollup/pluginutils@5.1.0(rollup@4.60.2)': dependencies: '@types/estree': 1.0.6 estree-walker: 2.0.2 picomatch: 2.3.1 optionalDependencies: - rollup: 4.35.0 + rollup: 4.60.2 '@rollup/rollup-android-arm-eabi@4.18.1': optional: true - '@rollup/rollup-android-arm-eabi@4.35.0': + '@rollup/rollup-android-arm-eabi@4.60.2': optional: true '@rollup/rollup-android-arm64@4.18.1': optional: true - '@rollup/rollup-android-arm64@4.35.0': + '@rollup/rollup-android-arm64@4.60.2': optional: true '@rollup/rollup-darwin-arm64@4.18.1': optional: true - '@rollup/rollup-darwin-arm64@4.35.0': + '@rollup/rollup-darwin-arm64@4.60.2': optional: true '@rollup/rollup-darwin-x64@4.18.1': optional: true - '@rollup/rollup-darwin-x64@4.35.0': + '@rollup/rollup-darwin-x64@4.60.2': optional: true - '@rollup/rollup-freebsd-arm64@4.35.0': + '@rollup/rollup-freebsd-arm64@4.60.2': optional: true - '@rollup/rollup-freebsd-x64@4.35.0': + '@rollup/rollup-freebsd-x64@4.60.2': optional: true '@rollup/rollup-linux-arm-gnueabihf@4.18.1': optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.35.0': + '@rollup/rollup-linux-arm-gnueabihf@4.60.2': optional: true '@rollup/rollup-linux-arm-musleabihf@4.18.1': optional: true - '@rollup/rollup-linux-arm-musleabihf@4.35.0': + '@rollup/rollup-linux-arm-musleabihf@4.60.2': optional: true '@rollup/rollup-linux-arm64-gnu@4.18.1': optional: true - '@rollup/rollup-linux-arm64-gnu@4.35.0': + '@rollup/rollup-linux-arm64-gnu@4.60.2': optional: true '@rollup/rollup-linux-arm64-musl@4.18.1': optional: true - '@rollup/rollup-linux-arm64-musl@4.35.0': + '@rollup/rollup-linux-arm64-musl@4.60.2': optional: true - '@rollup/rollup-linux-loongarch64-gnu@4.35.0': + '@rollup/rollup-linux-loong64-gnu@4.60.2': + optional: true + + '@rollup/rollup-linux-loong64-musl@4.60.2': optional: true '@rollup/rollup-linux-powerpc64le-gnu@4.18.1': optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.35.0': + '@rollup/rollup-linux-ppc64-gnu@4.60.2': + optional: true + + '@rollup/rollup-linux-ppc64-musl@4.60.2': optional: true '@rollup/rollup-linux-riscv64-gnu@4.18.1': optional: true - '@rollup/rollup-linux-riscv64-gnu@4.35.0': + '@rollup/rollup-linux-riscv64-gnu@4.60.2': + optional: true + + '@rollup/rollup-linux-riscv64-musl@4.60.2': optional: true '@rollup/rollup-linux-s390x-gnu@4.18.1': optional: true - '@rollup/rollup-linux-s390x-gnu@4.35.0': + '@rollup/rollup-linux-s390x-gnu@4.60.2': optional: true '@rollup/rollup-linux-x64-gnu@4.18.1': optional: true - '@rollup/rollup-linux-x64-gnu@4.35.0': + '@rollup/rollup-linux-x64-gnu@4.60.2': optional: true '@rollup/rollup-linux-x64-musl@4.18.1': optional: true - '@rollup/rollup-linux-x64-musl@4.35.0': + '@rollup/rollup-linux-x64-musl@4.60.2': + optional: true + + '@rollup/rollup-openbsd-x64@4.60.2': + optional: true + + '@rollup/rollup-openharmony-arm64@4.60.2': optional: true '@rollup/rollup-win32-arm64-msvc@4.18.1': optional: true - '@rollup/rollup-win32-arm64-msvc@4.35.0': + '@rollup/rollup-win32-arm64-msvc@4.60.2': optional: true '@rollup/rollup-win32-ia32-msvc@4.18.1': optional: true - '@rollup/rollup-win32-ia32-msvc@4.35.0': + '@rollup/rollup-win32-ia32-msvc@4.60.2': + optional: true + + '@rollup/rollup-win32-x64-gnu@4.60.2': optional: true '@rollup/rollup-win32-x64-msvc@4.18.1': optional: true - '@rollup/rollup-win32-x64-msvc@4.35.0': + '@rollup/rollup-win32-x64-msvc@4.60.2': optional: true '@safe-global/safe-apps-provider@0.18.1(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)': @@ -13935,8 +14806,6 @@ snapshots: '@sinclair/typebox@0.27.8': {} - '@sindresorhus/merge-streams@2.3.0': {} - '@sinonjs/commons@3.0.1': dependencies: type-detect: 4.0.8 @@ -14078,73 +14947,82 @@ snapshots: '@stablelib/wipe': 1.0.1 '@stablelib/xchacha20': 1.0.1 - '@tailwindcss/node@4.0.7': + '@standard-schema/spec@1.0.0': {} + + '@tailwindcss/node@4.1.15': dependencies: - enhanced-resolve: 5.18.1 - jiti: 2.4.2 - tailwindcss: 4.0.7 + '@jridgewell/remapping': 2.3.5 + enhanced-resolve: 5.20.1 + jiti: 2.6.1 + lightningcss: 1.30.2 + magic-string: 0.30.21 + source-map-js: 1.2.1 + tailwindcss: 4.1.15 + + '@tailwindcss/oxide-android-arm64@4.1.15': + optional: true - '@tailwindcss/oxide-android-arm64@4.0.7': + '@tailwindcss/oxide-darwin-arm64@4.1.15': optional: true - '@tailwindcss/oxide-darwin-arm64@4.0.7': + '@tailwindcss/oxide-darwin-x64@4.1.15': optional: true - '@tailwindcss/oxide-darwin-x64@4.0.7': + '@tailwindcss/oxide-freebsd-x64@4.1.15': optional: true - '@tailwindcss/oxide-freebsd-x64@4.0.7': + '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.15': optional: true - '@tailwindcss/oxide-linux-arm-gnueabihf@4.0.7': + '@tailwindcss/oxide-linux-arm64-gnu@4.1.15': optional: true - '@tailwindcss/oxide-linux-arm64-gnu@4.0.7': + '@tailwindcss/oxide-linux-arm64-musl@4.1.15': optional: true - '@tailwindcss/oxide-linux-arm64-musl@4.0.7': + '@tailwindcss/oxide-linux-x64-gnu@4.1.15': optional: true - '@tailwindcss/oxide-linux-x64-gnu@4.0.7': + '@tailwindcss/oxide-linux-x64-musl@4.1.15': optional: true - '@tailwindcss/oxide-linux-x64-musl@4.0.7': + '@tailwindcss/oxide-wasm32-wasi@4.1.15': optional: true - '@tailwindcss/oxide-win32-arm64-msvc@4.0.7': + '@tailwindcss/oxide-win32-arm64-msvc@4.1.15': optional: true - '@tailwindcss/oxide-win32-x64-msvc@4.0.7': + '@tailwindcss/oxide-win32-x64-msvc@4.1.15': optional: true - '@tailwindcss/oxide@4.0.7': + '@tailwindcss/oxide@4.1.15': optionalDependencies: - '@tailwindcss/oxide-android-arm64': 4.0.7 - '@tailwindcss/oxide-darwin-arm64': 4.0.7 - '@tailwindcss/oxide-darwin-x64': 4.0.7 - '@tailwindcss/oxide-freebsd-x64': 4.0.7 - '@tailwindcss/oxide-linux-arm-gnueabihf': 4.0.7 - '@tailwindcss/oxide-linux-arm64-gnu': 4.0.7 - '@tailwindcss/oxide-linux-arm64-musl': 4.0.7 - '@tailwindcss/oxide-linux-x64-gnu': 4.0.7 - '@tailwindcss/oxide-linux-x64-musl': 4.0.7 - '@tailwindcss/oxide-win32-arm64-msvc': 4.0.7 - '@tailwindcss/oxide-win32-x64-msvc': 4.0.7 - - '@tailwindcss/vite@4.0.7(vite@6.2.1(@types/node@20.11.2)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.7.1)(yaml@2.7.0))': - dependencies: - '@tailwindcss/node': 4.0.7 - '@tailwindcss/oxide': 4.0.7 - lightningcss: 1.29.2 - tailwindcss: 4.0.7 - vite: 6.2.1(@types/node@20.11.2)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.7.1)(yaml@2.7.0) + '@tailwindcss/oxide-android-arm64': 4.1.15 + '@tailwindcss/oxide-darwin-arm64': 4.1.15 + '@tailwindcss/oxide-darwin-x64': 4.1.15 + '@tailwindcss/oxide-freebsd-x64': 4.1.15 + '@tailwindcss/oxide-linux-arm-gnueabihf': 4.1.15 + '@tailwindcss/oxide-linux-arm64-gnu': 4.1.15 + '@tailwindcss/oxide-linux-arm64-musl': 4.1.15 + '@tailwindcss/oxide-linux-x64-gnu': 4.1.15 + '@tailwindcss/oxide-linux-x64-musl': 4.1.15 + '@tailwindcss/oxide-wasm32-wasi': 4.1.15 + '@tailwindcss/oxide-win32-arm64-msvc': 4.1.15 + '@tailwindcss/oxide-win32-x64-msvc': 4.1.15 + + '@tailwindcss/vite@4.1.15(vite@7.3.2(@types/node@20.11.2)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.39.0)(tsx@4.7.1)(yaml@2.8.3))': + dependencies: + '@tailwindcss/node': 4.1.15 + '@tailwindcss/oxide': 4.1.15 + tailwindcss: 4.1.15 + vite: 7.3.2(@types/node@20.11.2)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.39.0)(tsx@4.7.1)(yaml@2.8.3) '@tanstack/query-core@5.18.0': {} - '@tanstack/react-query@5.18.0(react@18.2.0)': + '@tanstack/react-query@5.18.0(react@19.2.5)': dependencies: '@tanstack/query-core': 5.18.0 - react: 18.2.0 + react: 19.2.5 '@toruslabs/base-controllers@4.11.0(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: @@ -14374,6 +15252,11 @@ snapshots: dependencies: sha256-uint8array: 0.10.7 + '@tybys/wasm-util@0.10.1': + dependencies: + tslib: 2.8.1 + optional: true + '@types/acorn@4.0.6': dependencies: '@types/estree': 1.0.6 @@ -14416,8 +15299,6 @@ snapshots: dependencies: '@types/node': 20.11.2 - '@types/cookie@0.6.0': {} - '@types/d3-array@3.2.1': {} '@types/d3-axis@3.0.6': @@ -14549,6 +15430,8 @@ snapshots: '@types/estree@1.0.6': {} + '@types/estree@1.0.8': {} + '@types/filesystem@0.0.35': dependencies: '@types/filewriter': 0.0.33 @@ -14605,15 +15488,9 @@ snapshots: dependencies: '@types/node': 20.11.2 - '@types/prop-types@15.7.11': {} - - '@types/react@18.2.47': + '@types/react@19.2.14': dependencies: - '@types/prop-types': 15.7.11 - '@types/scheduler': 0.16.8 - csstype: 3.1.3 - - '@types/scheduler@0.16.8': {} + csstype: 3.2.3 '@types/secp256k1@4.0.6': dependencies: @@ -14650,23 +15527,32 @@ snapshots: transitivePeerDependencies: - supports-color + '@typescript/vfs@1.6.4(typescript@5.3.3)': + dependencies: + debug: 4.4.3 + typescript: 5.3.3 + transitivePeerDependencies: + - supports-color + '@ungap/structured-clone@1.2.0': {} - '@vanilla-extract/babel-plugin-debug-ids@1.2.0': + '@vanilla-extract/babel-plugin-debug-ids@1.2.2': dependencies: '@babel/core': 7.26.10 transitivePeerDependencies: - supports-color - '@vanilla-extract/compiler@0.1.2(@types/node@20.11.2)(babel-plugin-macros@3.1.0)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.7.1)(yaml@2.7.0)': + '@vanilla-extract/compiler@0.7.0(@types/node@20.11.2)(babel-plugin-macros@3.1.0)(esbuild@0.27.7)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.39.0)(tsx@4.7.1)(yaml@2.8.3)': dependencies: - '@vanilla-extract/css': 1.17.1(babel-plugin-macros@3.1.0) - '@vanilla-extract/integration': 8.0.1(babel-plugin-macros@3.1.0) - vite: 6.2.1(@types/node@20.11.2)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.7.1)(yaml@2.7.0) - vite-node: 3.0.8(@types/node@20.11.2)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.7.1)(yaml@2.7.0) + '@vanilla-extract/css': 1.20.1(babel-plugin-macros@3.1.0) + '@vanilla-extract/integration': 8.0.10(babel-plugin-macros@3.1.0) + vite: 7.3.2(@types/node@20.11.2)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.39.0)(tsx@4.7.1)(yaml@2.8.3) + vite-node: 6.0.0(@types/node@20.11.2)(esbuild@0.27.7)(jiti@2.6.1)(terser@5.39.0)(tsx@4.7.1)(yaml@2.8.3) transitivePeerDependencies: - '@types/node' + - '@vitejs/devtools' - babel-plugin-macros + - esbuild - jiti - less - lightningcss @@ -14679,13 +15565,12 @@ snapshots: - tsx - yaml - '@vanilla-extract/css@1.17.1(babel-plugin-macros@3.1.0)': + '@vanilla-extract/css@1.20.1(babel-plugin-macros@3.1.0)': dependencies: '@emotion/hash': 0.9.1 - '@vanilla-extract/private': 1.0.6 + '@vanilla-extract/private': 1.0.9 css-what: 6.1.0 - cssesc: 3.0.0 - csstype: 3.1.3 + csstype: 3.2.3 dedent: 1.5.3(babel-plugin-macros@3.1.0) deep-object-diff: 1.1.9 deepmerge: 4.3.1 @@ -14696,16 +15581,16 @@ snapshots: transitivePeerDependencies: - babel-plugin-macros - '@vanilla-extract/dynamic@2.1.2': + '@vanilla-extract/dynamic@2.1.5': dependencies: - '@vanilla-extract/private': 1.0.6 + '@vanilla-extract/private': 1.0.9 - '@vanilla-extract/integration@8.0.1(babel-plugin-macros@3.1.0)': + '@vanilla-extract/integration@8.0.10(babel-plugin-macros@3.1.0)': dependencies: '@babel/core': 7.26.10 '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.10) - '@vanilla-extract/babel-plugin-debug-ids': 1.2.0 - '@vanilla-extract/css': 1.17.1(babel-plugin-macros@3.1.0) + '@vanilla-extract/babel-plugin-debug-ids': 1.2.2 + '@vanilla-extract/css': 1.20.1(babel-plugin-macros@3.1.0) dedent: 1.5.3(babel-plugin-macros@3.1.0) esbuild: 0.25.1 eval: 0.1.8 @@ -14716,16 +15601,18 @@ snapshots: - babel-plugin-macros - supports-color - '@vanilla-extract/private@1.0.6': {} + '@vanilla-extract/private@1.0.9': {} - '@vanilla-extract/vite-plugin@5.0.1(@types/node@20.11.2)(babel-plugin-macros@3.1.0)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.7.1)(vite@6.2.1(@types/node@20.11.2)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.7.1)(yaml@2.7.0))(yaml@2.7.0)': + '@vanilla-extract/vite-plugin@5.2.2(@types/node@20.11.2)(babel-plugin-macros@3.1.0)(esbuild@0.27.7)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.39.0)(tsx@4.7.1)(vite@7.3.2(@types/node@20.11.2)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.39.0)(tsx@4.7.1)(yaml@2.8.3))(yaml@2.8.3)': dependencies: - '@vanilla-extract/compiler': 0.1.2(@types/node@20.11.2)(babel-plugin-macros@3.1.0)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.7.1)(yaml@2.7.0) - '@vanilla-extract/integration': 8.0.1(babel-plugin-macros@3.1.0) - vite: 6.2.1(@types/node@20.11.2)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.7.1)(yaml@2.7.0) + '@vanilla-extract/compiler': 0.7.0(@types/node@20.11.2)(babel-plugin-macros@3.1.0)(esbuild@0.27.7)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.39.0)(tsx@4.7.1)(yaml@2.8.3) + '@vanilla-extract/integration': 8.0.10(babel-plugin-macros@3.1.0) + vite: 7.3.2(@types/node@20.11.2)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.39.0)(tsx@4.7.1)(yaml@2.8.3) transitivePeerDependencies: - '@types/node' + - '@vitejs/devtools' - babel-plugin-macros + - esbuild - jiti - less - lightningcss @@ -14738,14 +15625,15 @@ snapshots: - tsx - yaml - '@vitejs/plugin-react@4.3.4(vite@6.2.1(@types/node@20.11.2)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.7.1)(yaml@2.7.0))': + '@vitejs/plugin-react@5.2.0(vite@7.3.2(@types/node@20.11.2)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.39.0)(tsx@4.7.1)(yaml@2.8.3))': dependencies: - '@babel/core': 7.26.10 - '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.10) + '@babel/core': 7.29.0 + '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.29.0) + '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.29.0) + '@rolldown/pluginutils': 1.0.0-rc.3 '@types/babel__core': 7.20.5 - react-refresh: 0.14.2 - vite: 6.2.1(@types/node@20.11.2)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.7.1)(yaml@2.7.0) + react-refresh: 0.18.0 + vite: 7.3.2(@types/node@20.11.2)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.39.0)(tsx@4.7.1)(yaml@2.8.3) transitivePeerDependencies: - supports-color @@ -14756,13 +15644,13 @@ snapshots: chai: 5.1.1 tinyrainbow: 1.2.0 - '@vitest/mocker@2.1.2(@vitest/spy@2.1.2)(vite@5.3.4(@types/node@20.11.2)(lightningcss@1.29.2)(terser@5.39.0))': + '@vitest/mocker@2.1.2(@vitest/spy@2.1.2)(vite@5.3.4(@types/node@20.11.2)(lightningcss@1.32.0)(terser@5.39.0))': dependencies: '@vitest/spy': 2.1.2 estree-walker: 3.0.3 magic-string: 0.30.11 optionalDependencies: - vite: 5.3.4(@types/node@20.11.2)(lightningcss@1.29.2)(terser@5.39.0) + vite: 5.3.4(@types/node@20.11.2)(lightningcss@1.32.0)(terser@5.39.0) '@vitest/pretty-format@2.1.2': dependencies: @@ -14789,15 +15677,15 @@ snapshots: loupe: 3.1.2 tinyrainbow: 1.2.0 - '@wagmi/connectors@4.1.12(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.47)(@wagmi/core@2.6.3(@tanstack/query-core@5.18.0)(@types/react@18.2.47)(bufferutil@4.0.8)(react@18.2.0)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@2.33.1(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.35.0)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@2.33.1(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10))': + '@wagmi/connectors@4.1.12(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(@types/react@19.2.14)(@wagmi/core@2.6.3(@tanstack/query-core@5.18.0)(@types/react@19.2.14)(bufferutil@4.0.8)(react@19.2.5)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@2.33.1(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.2.5(react@19.2.5))(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))(react@19.2.5)(rollup@4.60.2)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@2.33.1(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10))': dependencies: '@coinbase/wallet-sdk': 3.9.1 - '@metamask/sdk': 0.14.1(@types/react@18.2.47)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.35.0)(utf-8-validate@5.0.10) + '@metamask/sdk': 0.14.1(@types/react@19.2.14)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.2.5(react@19.2.5))(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))(react@19.2.5)(rollup@4.60.2)(utf-8-validate@5.0.10) '@safe-global/safe-apps-provider': 0.18.1(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10) '@safe-global/safe-apps-sdk': 8.1.0(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10) - '@wagmi/core': 2.6.3(@tanstack/query-core@5.18.0)(@types/react@18.2.47)(bufferutil@4.0.8)(react@18.2.0)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@2.33.1(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)) - '@walletconnect/ethereum-provider': 2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.47)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10) - '@walletconnect/modal': 2.6.2(@types/react@18.2.47)(react@18.2.0) + '@wagmi/core': 2.6.3(@tanstack/query-core@5.18.0)(@types/react@19.2.14)(bufferutil@4.0.8)(react@19.2.5)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@2.33.1(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)) + '@walletconnect/ethereum-provider': 2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(@types/react@19.2.14)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10) + '@walletconnect/modal': 2.6.2(@types/react@19.2.14)(react@19.2.5) viem: 2.33.1(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10) optionalDependencies: typescript: 5.3.3 @@ -14825,12 +15713,12 @@ snapshots: - utf-8-validate - zod - '@wagmi/core@2.6.3(@tanstack/query-core@5.18.0)(@types/react@18.2.47)(bufferutil@4.0.8)(react@18.2.0)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@2.33.1(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10))': + '@wagmi/core@2.6.3(@tanstack/query-core@5.18.0)(@types/react@19.2.14)(bufferutil@4.0.8)(react@19.2.5)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@2.33.1(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10))': dependencies: eventemitter3: 5.0.1 mipd: 0.0.5(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10) viem: 2.33.1(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10) - zustand: 4.4.1(@types/react@18.2.47)(react@18.2.0) + zustand: 4.4.1(@types/react@19.2.14)(react@19.2.5) optionalDependencies: '@tanstack/query-core': 5.18.0 typescript: 5.3.3 @@ -14842,21 +15730,21 @@ snapshots: - utf-8-validate - zod - '@walletconnect/core@2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': + '@walletconnect/core@2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/heartbeat': 1.2.1 '@walletconnect/jsonrpc-provider': 1.0.13 '@walletconnect/jsonrpc-types': 1.0.3 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/jsonrpc-ws-connection': 1.0.14(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))) '@walletconnect/logger': 2.0.1 '@walletconnect/relay-api': 1.0.9 '@walletconnect/relay-auth': 1.0.4 '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) - '@walletconnect/utils': 2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/types': 2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))) events: 3.3.0 isomorphic-unfetch: 3.1.0(encoding@0.1.13) lodash.isequal: 4.5.0 @@ -14879,21 +15767,21 @@ snapshots: - supports-color - utf-8-validate - '@walletconnect/core@2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@walletconnect/core@2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/heartbeat': 1.2.1 '@walletconnect/jsonrpc-provider': 1.0.13 '@walletconnect/jsonrpc-types': 1.0.3 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/jsonrpc-ws-connection': 1.0.13(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))) '@walletconnect/logger': 2.0.1 '@walletconnect/relay-api': 1.0.9 '@walletconnect/relay-auth': 1.0.4 '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) - '@walletconnect/utils': 2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/types': 2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))) events: 3.3.0 lodash.isequal: 4.5.0 uint8arrays: 3.1.1 @@ -14918,17 +15806,17 @@ snapshots: dependencies: tslib: 1.14.1 - '@walletconnect/ethereum-provider@2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.47)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)': + '@walletconnect/ethereum-provider@2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(@types/react@19.2.14)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/jsonrpc-http-connection': 1.0.7(encoding@0.1.13) '@walletconnect/jsonrpc-provider': 1.0.13 '@walletconnect/jsonrpc-types': 1.0.3 '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/modal': 2.6.2(@types/react@18.2.47)(react@18.2.0) - '@walletconnect/sign-client': 2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@walletconnect/types': 2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) - '@walletconnect/universal-provider': 2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@walletconnect/utils': 2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/modal': 2.6.2(@types/react@19.2.14)(react@19.2.5) + '@walletconnect/sign-client': 2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))) + '@walletconnect/universal-provider': 2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@walletconnect/utils': 2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -14950,19 +15838,19 @@ snapshots: - supports-color - utf-8-validate - '@walletconnect/ethereum-provider@2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@walletconnect/modal@2.6.1(react@18.2.0))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': + '@walletconnect/ethereum-provider@2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(@walletconnect/modal@2.6.1(react@19.2.5))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/jsonrpc-http-connection': 1.0.7(encoding@0.1.13) '@walletconnect/jsonrpc-provider': 1.0.13 '@walletconnect/jsonrpc-types': 1.0.3 '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/sign-client': 2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/types': 2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) - '@walletconnect/universal-provider': 2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@walletconnect/utils': 2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/sign-client': 2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))) + '@walletconnect/universal-provider': 2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@walletconnect/utils': 2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))) events: 3.3.0 optionalDependencies: - '@walletconnect/modal': 2.6.1(react@18.2.0) + '@walletconnect/modal': 2.6.1(react@19.2.5) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -15039,13 +15927,13 @@ snapshots: - bufferutil - utf-8-validate - '@walletconnect/keyvaluestorage@1.1.1(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))': + '@walletconnect/keyvaluestorage@1.1.1(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))': dependencies: '@walletconnect/safe-json': 1.0.2 idb-keyval: 6.2.1 unstorage: 1.10.1(idb-keyval@6.2.1) optionalDependencies: - '@react-native-async-storage/async-storage': 1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)) + '@react-native-async-storage/async-storage': 1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -15065,31 +15953,31 @@ snapshots: pino: 7.11.0 tslib: 1.14.1 - '@walletconnect/modal-core@2.6.1(react@18.2.0)': + '@walletconnect/modal-core@2.6.1(react@19.2.5)': dependencies: - valtio: 1.11.0(react@18.2.0) + valtio: 1.11.0(react@19.2.5) transitivePeerDependencies: - react - '@walletconnect/modal-core@2.6.2(@types/react@18.2.47)(react@18.2.0)': + '@walletconnect/modal-core@2.6.2(@types/react@19.2.14)(react@19.2.5)': dependencies: - valtio: 1.11.2(@types/react@18.2.47)(react@18.2.0) + valtio: 1.11.2(@types/react@19.2.14)(react@19.2.5) transitivePeerDependencies: - '@types/react' - react - '@walletconnect/modal-ui@2.6.1(react@18.2.0)': + '@walletconnect/modal-ui@2.6.1(react@19.2.5)': dependencies: - '@walletconnect/modal-core': 2.6.1(react@18.2.0) + '@walletconnect/modal-core': 2.6.1(react@19.2.5) lit: 2.7.6 motion: 10.16.2 qrcode: 1.5.3 transitivePeerDependencies: - react - '@walletconnect/modal-ui@2.6.2(@types/react@18.2.47)(react@18.2.0)': + '@walletconnect/modal-ui@2.6.2(@types/react@19.2.14)(react@19.2.5)': dependencies: - '@walletconnect/modal-core': 2.6.2(@types/react@18.2.47)(react@18.2.0) + '@walletconnect/modal-core': 2.6.2(@types/react@19.2.14)(react@19.2.5) lit: 2.8.0 motion: 10.16.2 qrcode: 1.5.3 @@ -15097,17 +15985,17 @@ snapshots: - '@types/react' - react - '@walletconnect/modal@2.6.1(react@18.2.0)': + '@walletconnect/modal@2.6.1(react@19.2.5)': dependencies: - '@walletconnect/modal-core': 2.6.1(react@18.2.0) - '@walletconnect/modal-ui': 2.6.1(react@18.2.0) + '@walletconnect/modal-core': 2.6.1(react@19.2.5) + '@walletconnect/modal-ui': 2.6.1(react@19.2.5) transitivePeerDependencies: - react - '@walletconnect/modal@2.6.2(@types/react@18.2.47)(react@18.2.0)': + '@walletconnect/modal@2.6.2(@types/react@19.2.14)(react@19.2.5)': dependencies: - '@walletconnect/modal-core': 2.6.2(@types/react@18.2.47)(react@18.2.0) - '@walletconnect/modal-ui': 2.6.2(@types/react@18.2.47)(react@18.2.0) + '@walletconnect/modal-core': 2.6.2(@types/react@19.2.14)(react@19.2.5) + '@walletconnect/modal-ui': 2.6.2(@types/react@19.2.14)(react@19.2.5) transitivePeerDependencies: - '@types/react' - react @@ -15130,16 +16018,16 @@ snapshots: dependencies: tslib: 1.14.1 - '@walletconnect/sign-client@2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': + '@walletconnect/sign-client@2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: - '@walletconnect/core': 2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@walletconnect/core': 2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) '@walletconnect/events': 1.0.1 '@walletconnect/heartbeat': 1.2.1 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/logger': 2.0.1 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) - '@walletconnect/utils': 2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/types': 2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -15159,16 +16047,16 @@ snapshots: - supports-color - utf-8-validate - '@walletconnect/sign-client@2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@walletconnect/sign-client@2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@walletconnect/core': 2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/core': 2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/events': 1.0.1 '@walletconnect/heartbeat': 1.2.1 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/logger': 2.0.1 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) - '@walletconnect/utils': 2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/types': 2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -15191,12 +16079,12 @@ snapshots: dependencies: tslib: 1.14.1 - '@walletconnect/types@2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))': + '@walletconnect/types@2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))': dependencies: '@walletconnect/events': 1.0.1 '@walletconnect/heartbeat': 1.2.1 '@walletconnect/jsonrpc-types': 1.0.3 - '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))) '@walletconnect/logger': 2.0.1 events: 3.3.0 transitivePeerDependencies: @@ -15214,12 +16102,12 @@ snapshots: - '@vercel/kv' - supports-color - '@walletconnect/types@2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))': + '@walletconnect/types@2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))': dependencies: '@walletconnect/events': 1.0.1 '@walletconnect/heartbeat': 1.2.1 '@walletconnect/jsonrpc-types': 1.0.3 - '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))) '@walletconnect/logger': 2.0.1 events: 3.3.0 transitivePeerDependencies: @@ -15237,16 +16125,16 @@ snapshots: - '@vercel/kv' - supports-color - '@walletconnect/universal-provider@2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': + '@walletconnect/universal-provider@2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/jsonrpc-http-connection': 1.0.7(encoding@0.1.13) '@walletconnect/jsonrpc-provider': 1.0.13 '@walletconnect/jsonrpc-types': 1.0.3 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/logger': 2.0.1 - '@walletconnect/sign-client': 2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@walletconnect/types': 2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) - '@walletconnect/utils': 2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/sign-client': 2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -15266,16 +16154,16 @@ snapshots: - supports-color - utf-8-validate - '@walletconnect/universal-provider@2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': + '@walletconnect/universal-provider@2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/jsonrpc-http-connection': 1.0.7(encoding@0.1.13) '@walletconnect/jsonrpc-provider': 1.0.13 '@walletconnect/jsonrpc-types': 1.0.3 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/logger': 2.0.1 - '@walletconnect/sign-client': 2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/types': 2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) - '@walletconnect/utils': 2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/sign-client': 2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -15295,7 +16183,7 @@ snapshots: - supports-color - utf-8-validate - '@walletconnect/utils@2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))': + '@walletconnect/utils@2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))': dependencies: '@stablelib/chacha20poly1305': 1.0.1 '@stablelib/hkdf': 1.0.1 @@ -15305,7 +16193,7 @@ snapshots: '@walletconnect/relay-api': 1.0.9 '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/types': 2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))) '@walletconnect/window-getters': 1.0.1 '@walletconnect/window-metadata': 1.0.1 detect-browser: 5.3.0 @@ -15326,7 +16214,7 @@ snapshots: - '@vercel/kv' - supports-color - '@walletconnect/utils@2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))': + '@walletconnect/utils@2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))': dependencies: '@stablelib/chacha20poly1305': 1.0.1 '@stablelib/hkdf': 1.0.1 @@ -15336,7 +16224,7 @@ snapshots: '@walletconnect/relay-api': 1.0.9 '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/types': 2.9.2(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))) '@walletconnect/window-getters': 1.0.1 '@walletconnect/window-metadata': 1.0.1 detect-browser: 5.3.0 @@ -15428,7 +16316,7 @@ snapshots: - supports-color - utf-8-validate - '@web3auth/ethereum-provider@7.3.2(@babel/runtime@7.23.8)(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@web3auth/ethereum-provider@7.3.2(@babel/runtime@7.23.8)(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@babel/runtime': 7.23.8 '@ethereumjs/common': 4.2.0 @@ -15439,7 +16327,7 @@ snapshots: '@toruslabs/base-controllers': 4.11.0(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@toruslabs/http-helpers': 6.0.0(@babel/runtime@7.23.8) '@toruslabs/openlogin-jrpc': 6.2.11(@babel/runtime@7.23.8) - '@walletconnect/utils': 2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))) '@web3auth/base': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@web3auth/base-provider': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) assert: 2.1.0 @@ -15477,13 +16365,13 @@ snapshots: - supports-color - utf-8-validate - '@web3auth/modal@7.3.2(75i23fgko2agoq24u3itzg23am)': + '@web3auth/modal@7.3.2(ikzba6xgmj6fcjoef623g5hi7a)': dependencies: '@babel/runtime': 7.23.8 '@solana/web3.js': 1.90.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) '@web3auth/base': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@web3auth/base-provider': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@web3auth/ethereum-provider': 7.3.2(@babel/runtime@7.23.8)(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@web3auth/ethereum-provider': 7.3.2(@babel/runtime@7.23.8)(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@web3auth/metamask-adapter': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@web3auth/no-modal': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@web3auth/openlogin-adapter': 7.3.2(@babel/runtime@7.23.8)(@solana/web3.js@1.90.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -15491,8 +16379,8 @@ snapshots: '@web3auth/solana-provider': 7.3.2(@babel/runtime@7.23.8)(@solana/web3.js@1.90.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@web3auth/torus-evm-adapter': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@web3auth/torus-solana-adapter': 7.3.2(@babel/runtime@7.23.8)(@solana/web3.js@1.90.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@web3auth/ui': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(utf-8-validate@5.0.10) - '@web3auth/wallet-connect-v2-adapter': 7.3.2(rzb4pgikv5ojvciawil5plgo5m) + '@web3auth/ui': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(react-dom@19.2.5(react@19.2.5))(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))(react@19.2.5)(utf-8-validate@5.0.10) + '@web3auth/wallet-connect-v2-adapter': 7.3.2(pkl2rljax6nxv46flymo4elrqa) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -15617,7 +16505,7 @@ snapshots: - supports-color - utf-8-validate - '@web3auth/ui@7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(utf-8-validate@5.0.10)': + '@web3auth/ui@7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(react-dom@19.2.5(react@19.2.5))(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))(react@19.2.5)(utf-8-validate@5.0.10)': dependencies: '@babel/runtime': 7.23.8 '@toruslabs/http-helpers': 6.0.0(@babel/runtime@7.23.8) @@ -15631,10 +16519,10 @@ snapshots: i18next: 23.8.2 lodash.clonedeep: 4.5.0 lodash.merge: 4.6.2 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-i18next: 13.5.0(i18next@23.8.2)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) - react-qrcode-logo: 2.9.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) + react-i18next: 13.5.0(i18next@23.8.2)(react-dom@19.2.5(react@19.2.5))(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))(react@19.2.5) + react-qrcode-logo: 2.9.0(react-dom@19.2.5(react@19.2.5))(react@19.2.5) transitivePeerDependencies: - '@sentry/types' - bufferutil @@ -15642,15 +16530,15 @@ snapshots: - supports-color - utf-8-validate - '@web3auth/wallet-connect-v2-adapter@7.3.2(rzb4pgikv5ojvciawil5plgo5m)': + '@web3auth/wallet-connect-v2-adapter@7.3.2(pkl2rljax6nxv46flymo4elrqa)': dependencies: '@babel/runtime': 7.23.8 - '@walletconnect/sign-client': 2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@walletconnect/types': 2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) - '@walletconnect/utils': 2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/sign-client': 2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))) '@web3auth/base': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@web3auth/base-evm-adapter': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@web3auth/ethereum-provider': 7.3.2(@babel/runtime@7.23.8)(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@web3auth/ethereum-provider': 7.3.2(@babel/runtime@7.23.8)(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) lodash.merge: 4.6.2 transitivePeerDependencies: - '@azure/app-configuration' @@ -15814,13 +16702,13 @@ snapshots: axios@0.21.4: dependencies: - follow-redirects: 1.15.5 + follow-redirects: 1.15.5(debug@4.4.0) transitivePeerDependencies: - debug axios@1.6.7: dependencies: - follow-redirects: 1.15.5 + follow-redirects: 1.15.5(debug@4.4.0) form-data: 4.0.0 proxy-from-env: 1.1.0 transitivePeerDependencies: @@ -15842,9 +16730,9 @@ snapshots: transitivePeerDependencies: - debug - babel-core@7.0.0-bridge.0(@babel/core@7.26.10): + babel-core@7.0.0-bridge.0(@babel/core@7.29.0): dependencies: - '@babel/core': 7.26.10 + '@babel/core': 7.29.0 babel-plugin-macros@3.1.0: dependencies: @@ -15852,48 +16740,48 @@ snapshots: cosmiconfig: 7.1.0 resolve: 1.22.8 - babel-plugin-polyfill-corejs2@0.4.13(@babel/core@7.26.10): + babel-plugin-polyfill-corejs2@0.4.13(@babel/core@7.29.0): dependencies: - '@babel/compat-data': 7.26.8 - '@babel/core': 7.26.10 - '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.26.10) + '@babel/compat-data': 7.29.0 + '@babel/core': 7.29.0 + '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.29.0) semver: 6.3.1 transitivePeerDependencies: - supports-color - babel-plugin-polyfill-corejs3@0.11.1(@babel/core@7.26.10): + babel-plugin-polyfill-corejs3@0.11.1(@babel/core@7.29.0): dependencies: - '@babel/core': 7.26.10 - '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.26.10) + '@babel/core': 7.29.0 + '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.29.0) core-js-compat: 3.41.0 transitivePeerDependencies: - supports-color - babel-plugin-polyfill-corejs3@0.9.0(@babel/core@7.26.10): + babel-plugin-polyfill-corejs3@0.9.0(@babel/core@7.29.0): dependencies: - '@babel/core': 7.26.10 - '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.26.10) + '@babel/core': 7.29.0 + '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.29.0) core-js-compat: 3.41.0 transitivePeerDependencies: - supports-color - babel-plugin-polyfill-regenerator@0.5.5(@babel/core@7.26.10): + babel-plugin-polyfill-regenerator@0.5.5(@babel/core@7.29.0): dependencies: - '@babel/core': 7.26.10 - '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.26.10) + '@babel/core': 7.29.0 + '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.29.0) transitivePeerDependencies: - supports-color - babel-plugin-polyfill-regenerator@0.6.4(@babel/core@7.26.10): + babel-plugin-polyfill-regenerator@0.6.4(@babel/core@7.29.0): dependencies: - '@babel/core': 7.26.10 - '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.26.10) + '@babel/core': 7.29.0 + '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.29.0) transitivePeerDependencies: - supports-color - babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.26.10): + babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.29.0): dependencies: - '@babel/plugin-syntax-flow': 7.26.0(@babel/core@7.26.10) + '@babel/plugin-syntax-flow': 7.26.0(@babel/core@7.29.0) transitivePeerDependencies: - '@babel/core' @@ -15990,10 +16878,6 @@ snapshots: balanced-match: 1.0.2 concat-map: 0.0.1 - brace-expansion@2.0.1: - dependencies: - balanced-match: 1.0.2 - braces@3.0.2: dependencies: fill-range: 7.0.1 @@ -16071,6 +16955,8 @@ snapshots: cac@6.7.14: {} + cac@7.0.0: {} + call-bind@1.0.5: dependencies: function-bind: 1.1.2 @@ -16296,13 +17182,13 @@ snapshots: dependencies: mime-db: 1.52.0 - compression@1.8.0: + compression@1.8.1: dependencies: bytes: 3.1.2 compressible: 2.0.18 debug: 2.6.9 negotiator: 0.6.4 - on-headers: 1.0.2 + on-headers: 1.1.0 safe-buffer: 5.2.1 vary: 1.1.2 transitivePeerDependencies: @@ -16397,7 +17283,7 @@ snapshots: '@clack/prompts': 0.7.0 cac: 6.7.14 detect-package-manager: 3.0.1 - fs-extra: 11.3.0 + fs-extra: 11.3.4 picocolors: 1.1.1 cross-fetch@3.1.6(encoding@0.1.13): @@ -16440,9 +17326,7 @@ snapshots: css-what@6.1.0: {} - cssesc@3.0.0: {} - - csstype@3.1.3: {} + csstype@3.2.3: {} cytoscape-cose-bilkent@4.1.0(cytoscape@3.32.1): dependencies: @@ -16664,6 +17548,10 @@ snapshots: dependencies: ms: 2.1.3 + debug@4.4.3: + dependencies: + ms: 2.1.3 + decamelize@1.2.0: {} decode-named-character-reference@1.0.2: @@ -16878,10 +17766,10 @@ snapshots: engine.io-parser@5.2.1: {} - enhanced-resolve@5.18.1: + enhanced-resolve@5.20.1: dependencies: graceful-fs: 4.2.11 - tapable: 2.2.1 + tapable: 2.3.3 entities@6.0.1: {} @@ -16908,7 +17796,7 @@ snapshots: es-errors@1.3.0: {} - es-module-lexer@1.6.0: {} + es-module-lexer@2.0.0: {} es5-ext@0.10.62: dependencies: @@ -16933,6 +17821,20 @@ snapshots: d: 1.0.1 ext: 1.7.0 + esast-util-from-estree@2.0.0: + dependencies: + '@types/estree-jsx': 1.0.3 + devlop: 1.1.0 + estree-util-visit: 2.0.0 + unist-util-position-from-estree: 2.0.0 + + esast-util-from-js@2.0.1: + dependencies: + '@types/estree-jsx': 1.0.3 + acorn: 8.14.1 + esast-util-from-estree: 2.0.0 + vfile-message: 4.0.2 + esbuild@0.19.11: optionalDependencies: '@esbuild/aix-ppc64': 0.19.11 @@ -17013,6 +17915,35 @@ snapshots: '@esbuild/win32-ia32': 0.25.1 '@esbuild/win32-x64': 0.25.1 + esbuild@0.27.7: + optionalDependencies: + '@esbuild/aix-ppc64': 0.27.7 + '@esbuild/android-arm': 0.27.7 + '@esbuild/android-arm64': 0.27.7 + '@esbuild/android-x64': 0.27.7 + '@esbuild/darwin-arm64': 0.27.7 + '@esbuild/darwin-x64': 0.27.7 + '@esbuild/freebsd-arm64': 0.27.7 + '@esbuild/freebsd-x64': 0.27.7 + '@esbuild/linux-arm': 0.27.7 + '@esbuild/linux-arm64': 0.27.7 + '@esbuild/linux-ia32': 0.27.7 + '@esbuild/linux-loong64': 0.27.7 + '@esbuild/linux-mips64el': 0.27.7 + '@esbuild/linux-ppc64': 0.27.7 + '@esbuild/linux-riscv64': 0.27.7 + '@esbuild/linux-s390x': 0.27.7 + '@esbuild/linux-x64': 0.27.7 + '@esbuild/netbsd-arm64': 0.27.7 + '@esbuild/netbsd-x64': 0.27.7 + '@esbuild/openbsd-arm64': 0.27.7 + '@esbuild/openbsd-x64': 0.27.7 + '@esbuild/openharmony-arm64': 0.27.7 + '@esbuild/sunos-x64': 0.27.7 + '@esbuild/win32-arm64': 0.27.7 + '@esbuild/win32-ia32': 0.27.7 + '@esbuild/win32-x64': 0.27.7 + escalade@3.1.1: {} escalade@3.2.0: {} @@ -17042,6 +17973,11 @@ snapshots: estree-util-is-identifier-name@3.0.0: {} + estree-util-scope@1.0.0: + dependencies: + '@types/estree': 1.0.6 + devlop: 1.1.0 + estree-util-to-js@2.0.0: dependencies: '@types/estree-jsx': 1.0.3 @@ -17261,14 +18197,6 @@ snapshots: fast-fifo@1.3.2: {} - fast-glob@3.3.3: - dependencies: - '@nodelib/fs.stat': 2.0.5 - '@nodelib/fs.walk': 1.2.8 - glob-parent: 5.1.2 - merge2: 1.4.1 - micromatch: 4.0.8 - fast-redact@3.3.0: {} fast-safe-stringify@2.1.1: {} @@ -17279,10 +18207,6 @@ snapshots: dependencies: strnum: 1.1.2 - fastq@1.16.0: - dependencies: - reusify: 1.0.4 - fault@2.0.1: dependencies: format: 0.2.2 @@ -17291,6 +18215,10 @@ snapshots: dependencies: bser: 2.1.1 + fdir@6.5.0(picomatch@4.0.4): + optionalDependencies: + picomatch: 4.0.4 + fetch-blob@3.2.0: dependencies: node-domexception: 1.0.0 @@ -17359,8 +18287,6 @@ snapshots: flow-parser@0.206.0: {} - follow-redirects@1.15.5: {} - follow-redirects@1.15.5(debug@4.3.4): optionalDependencies: debug: 4.3.4 @@ -17391,7 +18317,7 @@ snapshots: fresh@0.5.2: {} - fs-extra@11.3.0: + fs-extra@11.3.4: dependencies: graceful-fs: 4.2.11 jsonfile: 6.1.0 @@ -17478,15 +18404,6 @@ snapshots: dependencies: define-properties: 1.2.1 - globby@14.1.0: - dependencies: - '@sindresorhus/merge-streams': 2.3.0 - fast-glob: 3.3.3 - ignore: 7.0.3 - path-type: 6.0.0 - slash: 5.1.0 - unicorn-magic: 0.3.0 - gopd@1.0.1: dependencies: get-intrinsic: 1.2.2 @@ -17724,7 +18641,7 @@ snapshots: dependencies: react-is: 16.13.1 - hono@4.7.4: {} + hono@4.12.14: {} html-parse-stringify@3.0.1: dependencies: @@ -17777,8 +18694,6 @@ snapshots: ieee754@1.2.1: {} - ignore@7.0.3: {} - image-size@1.2.0: dependencies: queue: 6.0.2 @@ -18055,10 +18970,6 @@ snapshots: dependencies: isobject: 3.0.1 - is-reference@3.0.2: - dependencies: - '@types/estree': 1.0.6 - is-stream@2.0.1: {} is-stream@3.0.0: {} @@ -18189,7 +19100,7 @@ snapshots: jest-message-util@29.7.0: dependencies: - '@babel/code-frame': 7.26.2 + '@babel/code-frame': 7.29.0 '@jest/types': 29.6.3 '@types/stack-utils': 2.0.3 chalk: 4.1.2 @@ -18232,7 +19143,7 @@ snapshots: jiti@1.21.0: {} - jiti@2.4.2: {} + jiti@2.6.1: {} joi@17.13.3: dependencies: @@ -18257,19 +19168,19 @@ snapshots: jsc-safe-url@0.2.4: {} - jscodeshift@0.14.0(@babel/preset-env@7.23.9(@babel/core@7.26.10)): - dependencies: - '@babel/core': 7.26.10 - '@babel/parser': 7.27.0 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.26.10) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.26.10) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.26.10) - '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.10) - '@babel/preset-env': 7.23.9(@babel/core@7.26.10) - '@babel/preset-flow': 7.25.9(@babel/core@7.26.10) - '@babel/preset-typescript': 7.27.0(@babel/core@7.26.10) - '@babel/register': 7.25.9(@babel/core@7.26.10) - babel-core: 7.0.0-bridge.0(@babel/core@7.26.10) + jscodeshift@0.14.0(@babel/preset-env@7.23.9(@babel/core@7.29.0)): + dependencies: + '@babel/core': 7.29.0 + '@babel/parser': 7.29.2 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.29.0) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.29.0) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.29.0) + '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.29.0) + '@babel/preset-env': 7.23.9(@babel/core@7.29.0) + '@babel/preset-flow': 7.25.9(@babel/core@7.29.0) + '@babel/preset-typescript': 7.27.0(@babel/core@7.29.0) + '@babel/register': 7.25.9(@babel/core@7.29.0) + babel-core: 7.0.0-bridge.0(@babel/core@7.29.0) chalk: 4.1.2 flow-parser: 0.206.0 graceful-fs: 4.2.11 @@ -18416,50 +19327,103 @@ snapshots: transitivePeerDependencies: - supports-color - lightningcss-darwin-arm64@1.29.2: + lightningcss-android-arm64@1.30.2: + optional: true + + lightningcss-android-arm64@1.32.0: + optional: true + + lightningcss-darwin-arm64@1.30.2: + optional: true + + lightningcss-darwin-arm64@1.32.0: + optional: true + + lightningcss-darwin-x64@1.30.2: + optional: true + + lightningcss-darwin-x64@1.32.0: + optional: true + + lightningcss-freebsd-x64@1.30.2: + optional: true + + lightningcss-freebsd-x64@1.32.0: + optional: true + + lightningcss-linux-arm-gnueabihf@1.30.2: + optional: true + + lightningcss-linux-arm-gnueabihf@1.32.0: optional: true - lightningcss-darwin-x64@1.29.2: + lightningcss-linux-arm64-gnu@1.30.2: optional: true - lightningcss-freebsd-x64@1.29.2: + lightningcss-linux-arm64-gnu@1.32.0: optional: true - lightningcss-linux-arm-gnueabihf@1.29.2: + lightningcss-linux-arm64-musl@1.30.2: optional: true - lightningcss-linux-arm64-gnu@1.29.2: + lightningcss-linux-arm64-musl@1.32.0: optional: true - lightningcss-linux-arm64-musl@1.29.2: + lightningcss-linux-x64-gnu@1.30.2: optional: true - lightningcss-linux-x64-gnu@1.29.2: + lightningcss-linux-x64-gnu@1.32.0: optional: true - lightningcss-linux-x64-musl@1.29.2: + lightningcss-linux-x64-musl@1.30.2: optional: true - lightningcss-win32-arm64-msvc@1.29.2: + lightningcss-linux-x64-musl@1.32.0: optional: true - lightningcss-win32-x64-msvc@1.29.2: + lightningcss-win32-arm64-msvc@1.30.2: optional: true - lightningcss@1.29.2: + lightningcss-win32-arm64-msvc@1.32.0: + optional: true + + lightningcss-win32-x64-msvc@1.30.2: + optional: true + + lightningcss-win32-x64-msvc@1.32.0: + optional: true + + lightningcss@1.30.2: + dependencies: + detect-libc: 2.0.3 + optionalDependencies: + lightningcss-android-arm64: 1.30.2 + lightningcss-darwin-arm64: 1.30.2 + lightningcss-darwin-x64: 1.30.2 + lightningcss-freebsd-x64: 1.30.2 + lightningcss-linux-arm-gnueabihf: 1.30.2 + lightningcss-linux-arm64-gnu: 1.30.2 + lightningcss-linux-arm64-musl: 1.30.2 + lightningcss-linux-x64-gnu: 1.30.2 + lightningcss-linux-x64-musl: 1.30.2 + lightningcss-win32-arm64-msvc: 1.30.2 + lightningcss-win32-x64-msvc: 1.30.2 + + lightningcss@1.32.0: dependencies: detect-libc: 2.0.3 optionalDependencies: - lightningcss-darwin-arm64: 1.29.2 - lightningcss-darwin-x64: 1.29.2 - lightningcss-freebsd-x64: 1.29.2 - lightningcss-linux-arm-gnueabihf: 1.29.2 - lightningcss-linux-arm64-gnu: 1.29.2 - lightningcss-linux-arm64-musl: 1.29.2 - lightningcss-linux-x64-gnu: 1.29.2 - lightningcss-linux-x64-musl: 1.29.2 - lightningcss-win32-arm64-msvc: 1.29.2 - lightningcss-win32-x64-msvc: 1.29.2 + lightningcss-android-arm64: 1.32.0 + lightningcss-darwin-arm64: 1.32.0 + lightningcss-darwin-x64: 1.32.0 + lightningcss-freebsd-x64: 1.32.0 + lightningcss-linux-arm-gnueabihf: 1.32.0 + lightningcss-linux-arm64-gnu: 1.32.0 + lightningcss-linux-arm64-musl: 1.32.0 + lightningcss-linux-x64-gnu: 1.32.0 + lightningcss-linux-x64-musl: 1.32.0 + lightningcss-win32-arm64-msvc: 1.32.0 + lightningcss-win32-x64-msvc: 1.32.0 lines-and-columns@1.2.4: {} @@ -18601,9 +19565,9 @@ snapshots: dependencies: yallist: 4.0.0 - lucide-react@0.309.0(react@18.2.0): + lucide-react@1.8.0(react@19.2.5): dependencies: - react: 18.2.0 + react: 19.2.5 magic-sdk@22.1.1: dependencies: @@ -18618,6 +19582,10 @@ snapshots: dependencies: '@jridgewell/sourcemap-codec': 1.5.0 + magic-string@0.30.21: + dependencies: + '@jridgewell/sourcemap-codec': 1.5.5 + make-dir@2.1.0: dependencies: pify: 4.0.1 @@ -18843,8 +19811,6 @@ snapshots: merge-stream@2.0.0: {} - merge2@1.4.1: {} - mermaid-isomorphic@3.0.4(playwright@1.54.1): dependencies: '@fortawesome/fontawesome-free': 6.7.2 @@ -18881,7 +19847,7 @@ snapshots: metro-babel-transformer@0.80.12: dependencies: - '@babel/core': 7.26.10 + '@babel/core': 7.29.0 flow-enums-runtime: 0.0.6 hermes-parser: 0.23.1 nullthrows: 1.1.1 @@ -18953,8 +19919,8 @@ snapshots: metro-source-map@0.80.12: dependencies: - '@babel/traverse': 7.27.0 - '@babel/types': 7.27.0 + '@babel/traverse': 7.29.0 + '@babel/types': 7.29.0 flow-enums-runtime: 0.0.6 invariant: 2.2.4 metro-symbolicate: 0.80.12 @@ -18979,10 +19945,10 @@ snapshots: metro-transform-plugins@0.80.12: dependencies: - '@babel/core': 7.26.10 - '@babel/generator': 7.27.0 - '@babel/template': 7.27.0 - '@babel/traverse': 7.27.0 + '@babel/core': 7.29.0 + '@babel/generator': 7.29.1 + '@babel/template': 7.28.6 + '@babel/traverse': 7.29.0 flow-enums-runtime: 0.0.6 nullthrows: 1.1.1 transitivePeerDependencies: @@ -18990,10 +19956,10 @@ snapshots: metro-transform-worker@0.80.12(bufferutil@4.0.8)(utf-8-validate@5.0.10): dependencies: - '@babel/core': 7.26.10 - '@babel/generator': 7.27.0 - '@babel/parser': 7.27.0 - '@babel/types': 7.27.0 + '@babel/core': 7.29.0 + '@babel/generator': 7.29.1 + '@babel/parser': 7.29.2 + '@babel/types': 7.29.0 flow-enums-runtime: 0.0.6 metro: 0.80.12(bufferutil@4.0.8)(utf-8-validate@5.0.10) metro-babel-transformer: 0.80.12 @@ -19010,13 +19976,13 @@ snapshots: metro@0.80.12(bufferutil@4.0.8)(utf-8-validate@5.0.10): dependencies: - '@babel/code-frame': 7.26.2 - '@babel/core': 7.26.10 - '@babel/generator': 7.27.0 - '@babel/parser': 7.27.0 - '@babel/template': 7.27.0 - '@babel/traverse': 7.27.0 - '@babel/types': 7.27.0 + '@babel/code-frame': 7.29.0 + '@babel/core': 7.29.0 + '@babel/generator': 7.29.1 + '@babel/parser': 7.29.2 + '@babel/template': 7.28.6 + '@babel/traverse': 7.29.0 + '@babel/types': 7.29.0 accepts: 1.3.8 chalk: 4.1.2 ci-info: 2.0.0 @@ -19382,13 +20348,9 @@ snapshots: dependencies: brace-expansion: 1.1.11 - minimatch@9.0.5: - dependencies: - brace-expansion: 2.0.1 - minimist@1.2.8: {} - minisearch@6.3.0: {} + minisearch@7.2.0: {} mipd@0.0.5(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10): dependencies: @@ -19400,8 +20362,6 @@ snapshots: - utf-8-validate - zod - mitt@3.0.1: {} - mkdirp@0.5.6: dependencies: minimist: 1.2.8 @@ -19479,6 +20439,8 @@ snapshots: murmurhash3js-revisited@3.0.0: {} + nanoid@3.3.11: {} + nanoid@3.3.7: {} nanoid@3.3.9: {} @@ -19560,12 +20522,12 @@ snapshots: bn.js: 4.11.6 strip-hex-prefix: 1.0.0 - nuqs@2.4.3(react-router@7.3.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0): + nuqs@2.8.9(react-router@7.14.2(react-dom@19.2.5(react@19.2.5))(react@19.2.5))(react@19.2.5): dependencies: - mitt: 3.0.1 - react: 18.2.0 + '@standard-schema/spec': 1.0.0 + react: 19.2.5 optionalDependencies: - react-router: 7.3.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + react-router: 7.14.2(react-dom@19.2.5(react@19.2.5))(react@19.2.5) ob1@0.80.12: dependencies: @@ -19601,6 +20563,8 @@ snapshots: dependencies: http-https: 1.0.0 + obug@2.1.1: {} + ofetch@1.3.3: dependencies: destr: 2.0.2 @@ -19619,7 +20583,7 @@ snapshots: dependencies: ee-first: 1.1.1 - on-headers@1.0.2: {} + on-headers@1.1.0: {} once@1.4.0: dependencies: @@ -19794,8 +20758,6 @@ snapshots: path-type@4.0.0: {} - path-type@6.0.0: {} - pathe@1.1.2: {} pathe@2.0.3: {} @@ -19810,12 +20772,6 @@ snapshots: safe-buffer: 5.2.1 sha.js: 2.4.11 - periscopic@3.1.0: - dependencies: - '@types/estree': 1.0.6 - estree-walker: 3.0.3 - is-reference: 3.0.2 - permissionless@0.2.50(ox@0.6.9(typescript@5.3.3))(viem@2.33.1(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)): dependencies: viem: 2.33.1(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10) @@ -19828,6 +20784,8 @@ snapshots: picomatch@2.3.1: {} + picomatch@4.0.4: {} + pify@3.0.0: {} pify@4.0.1: {} @@ -19908,6 +20866,12 @@ snapshots: picocolors: 1.0.1 source-map-js: 1.2.0 + postcss@8.5.10: + dependencies: + nanoid: 3.3.11 + picocolors: 1.1.1 + source-map-js: 1.2.1 + postcss@8.5.3: dependencies: nanoid: 3.3.9 @@ -20036,8 +21000,6 @@ snapshots: split-on-first: 1.1.0 strict-uri-encode: 2.0.0 - queue-microtask@1.2.3: {} - queue@6.0.2: dependencies: inherits: 2.0.4 @@ -20056,67 +21018,67 @@ snapshots: - encoding - supports-color - radix-ui@1.4.2(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + radix-ui@1.4.2(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5): dependencies: '@radix-ui/primitive': 1.1.2 - '@radix-ui/react-accessible-icon': 1.1.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-accordion': 1.2.11(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-alert-dialog': 1.1.14(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-arrow': 1.1.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-aspect-ratio': 1.1.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-avatar': 1.1.10(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-checkbox': 1.3.2(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-collapsible': 1.1.11(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-collection': 1.1.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-context': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-context-menu': 2.2.15(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-dialog': 1.1.14(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-direction': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.1.10(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-dropdown-menu': 2.1.15(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-focus-guards': 1.1.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-focus-scope': 1.1.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-form': 0.1.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-hover-card': 1.1.14(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-label': 2.1.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-menu': 2.1.15(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-menubar': 1.1.15(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-navigation-menu': 1.2.13(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-one-time-password-field': 0.1.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-password-toggle-field': 0.1.2(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-popover': 1.1.14(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-popper': 1.2.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-portal': 1.1.9(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-presence': 1.1.4(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 2.1.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-progress': 1.1.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-radio-group': 1.3.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-roving-focus': 1.1.10(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-scroll-area': 1.2.9(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-select': 2.2.5(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-separator': 1.1.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-slider': 1.3.5(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-slot': 1.2.3(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-switch': 1.2.5(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-tabs': 1.1.12(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-toast': 1.2.14(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-toggle': 1.1.9(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-toggle-group': 1.1.10(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-toolbar': 1.1.10(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-tooltip': 1.2.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-effect-event': 0.0.2(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-is-hydrated': 0.1.0(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-use-size': 1.1.1(@types/react@18.2.47)(react@18.2.0) - '@radix-ui/react-visually-hidden': 1.2.3(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-accessible-icon': 1.1.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-accordion': 1.2.11(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-alert-dialog': 1.1.14(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-arrow': 1.1.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-aspect-ratio': 1.1.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-avatar': 1.1.10(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-checkbox': 1.3.2(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-collapsible': 1.1.11(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-collection': 1.1.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-context-menu': 2.2.15(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-dialog': 1.1.14(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-direction': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-dismissable-layer': 1.1.10(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-dropdown-menu': 2.1.15(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-focus-guards': 1.1.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-focus-scope': 1.1.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-form': 0.1.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-hover-card': 1.1.14(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-label': 2.1.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-menu': 2.1.15(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-menubar': 1.1.15(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-navigation-menu': 1.2.13(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-one-time-password-field': 0.1.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-password-toggle-field': 0.1.2(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-popover': 1.1.14(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-popper': 1.2.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-portal': 1.1.9(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-presence': 1.1.4(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-primitive': 2.1.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-progress': 1.1.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-radio-group': 1.3.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-roving-focus': 1.1.10(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-scroll-area': 1.2.9(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-select': 2.2.5(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-separator': 1.1.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-slider': 1.3.5(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-slot': 1.2.3(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-switch': 1.2.5(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-tabs': 1.1.12(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-toast': 1.2.14(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-toggle': 1.1.9(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-toggle-group': 1.1.10(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-toolbar': 1.1.10(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-tooltip': 1.2.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-is-hydrated': 0.1.0(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-use-size': 1.1.1(@types/react@19.2.14)(react@19.2.5) + '@radix-ui/react-visually-hidden': 1.2.3(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 radix3@1.1.0: {} @@ -20140,7 +21102,12 @@ snapshots: react: 18.2.0 scheduler: 0.23.0 - react-i18next@13.5.0(i18next@22.5.1)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0): + react-dom@19.2.5(react@19.2.5): + dependencies: + react: 19.2.5 + scheduler: 0.27.0 + + react-i18next@13.5.0(i18next@22.5.1)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))(react@18.2.0): dependencies: '@babel/runtime': 7.23.8 html-parse-stringify: 3.0.1 @@ -20148,23 +21115,33 @@ snapshots: react: 18.2.0 optionalDependencies: react-dom: 18.2.0(react@18.2.0) - react-native: 0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10) + react-native: 0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10) + + react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.2.5(react@19.2.5))(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))(react@19.2.5): + dependencies: + '@babel/runtime': 7.23.8 + html-parse-stringify: 3.0.1 + i18next: 22.5.1 + react: 19.2.5 + optionalDependencies: + react-dom: 19.2.5(react@19.2.5) + react-native: 0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10) - react-i18next@13.5.0(i18next@23.8.2)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0): + react-i18next@13.5.0(i18next@23.8.2)(react-dom@19.2.5(react@19.2.5))(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))(react@19.2.5): dependencies: '@babel/runtime': 7.23.8 html-parse-stringify: 3.0.1 i18next: 23.8.2 - react: 18.2.0 + react: 19.2.5 optionalDependencies: - react-dom: 18.2.0(react@18.2.0) - react-native: 0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10) + react-dom: 19.2.5(react@19.2.5) + react-native: 0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10) - react-intersection-observer@9.16.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + react-intersection-observer@9.16.0(react-dom@19.2.5(react@19.2.5))(react@19.2.5): dependencies: - react: 18.2.0 + react: 19.2.5 optionalDependencies: - react-dom: 18.2.0(react@18.2.0) + react-dom: 19.2.5(react@19.2.5) react-is@16.13.1: {} @@ -20176,26 +21153,26 @@ snapshots: dependencies: p-defer: 3.0.0 - react-native-webview@11.26.1(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0): + react-native-webview@11.26.1(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))(react@19.2.5): dependencies: escape-string-regexp: 2.0.0 invariant: 2.2.4 - react: 18.2.0 - react-native: 0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10) + react: 19.2.5 + react-native: 0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10) - react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10): + react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10): dependencies: '@jest/create-cache-key-function': 29.7.0 '@react-native-community/cli': 12.3.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) '@react-native-community/cli-platform-android': 12.3.2(encoding@0.1.13) '@react-native-community/cli-platform-ios': 12.3.2(encoding@0.1.13) '@react-native/assets-registry': 0.73.1 - '@react-native/codegen': 0.73.2(@babel/preset-env@7.23.9(@babel/core@7.26.10)) - '@react-native/community-cli-plugin': 0.73.14(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@react-native/codegen': 0.73.2(@babel/preset-env@7.23.9(@babel/core@7.29.0)) + '@react-native/community-cli-plugin': 0.73.14(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) '@react-native/gradle-plugin': 0.73.4 '@react-native/js-polyfills': 0.73.1 '@react-native/normalize-colors': 0.73.2 - '@react-native/virtualized-lists': 0.73.4(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)) + '@react-native/virtualized-lists': 0.73.4(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)) abort-controller: 3.0.0 anser: 1.4.10 ansi-regex: 5.0.1 @@ -20214,10 +21191,10 @@ snapshots: nullthrows: 1.1.1 pretty-format: 26.6.2 promise: 8.3.0 - react: 18.2.0 + react: 19.2.5 react-devtools-core: 4.28.5(bufferutil@4.0.8)(utf-8-validate@5.0.10) react-refresh: 0.14.2 - react-shallow-renderer: 16.15.0(react@18.2.0) + react-shallow-renderer: 16.15.0(react@19.2.5) regenerator-runtime: 0.13.11 scheduler: 0.24.0-canary-efb381bbf-20230505 stacktrace-parser: 0.1.11 @@ -20232,62 +21209,64 @@ snapshots: - supports-color - utf-8-validate - react-qrcode-logo@2.9.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + react-qrcode-logo@2.9.0(react-dom@19.2.5(react@19.2.5))(react@19.2.5): dependencies: lodash.isequal: 4.5.0 qrcode-generator: 1.4.4 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) react-refresh@0.14.2: {} - react-remove-scroll-bar@2.3.8(@types/react@18.2.47)(react@18.2.0): + react-refresh@0.18.0: {} + + react-remove-scroll-bar@2.3.8(@types/react@19.2.14)(react@19.2.5): dependencies: - react: 18.2.0 - react-style-singleton: 2.2.3(@types/react@18.2.47)(react@18.2.0) + react: 19.2.5 + react-style-singleton: 2.2.3(@types/react@19.2.14)(react@19.2.5) tslib: 2.8.1 optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - react-remove-scroll@2.6.3(@types/react@18.2.47)(react@18.2.0): + react-remove-scroll@2.6.3(@types/react@19.2.14)(react@19.2.5): dependencies: - react: 18.2.0 - react-remove-scroll-bar: 2.3.8(@types/react@18.2.47)(react@18.2.0) - react-style-singleton: 2.2.3(@types/react@18.2.47)(react@18.2.0) + react: 19.2.5 + react-remove-scroll-bar: 2.3.8(@types/react@19.2.14)(react@19.2.5) + react-style-singleton: 2.2.3(@types/react@19.2.14)(react@19.2.5) tslib: 2.8.1 - use-callback-ref: 1.3.3(@types/react@18.2.47)(react@18.2.0) - use-sidecar: 1.1.3(@types/react@18.2.47)(react@18.2.0) + use-callback-ref: 1.3.3(@types/react@19.2.14)(react@19.2.5) + use-sidecar: 1.1.3(@types/react@19.2.14)(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - react-router@7.3.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + react-router@7.14.2(react-dom@19.2.5(react@19.2.5))(react@19.2.5): dependencies: - '@types/cookie': 0.6.0 cookie: 1.0.2 - react: 18.2.0 + react: 19.2.5 set-cookie-parser: 2.7.1 - turbo-stream: 2.4.0 optionalDependencies: - react-dom: 18.2.0(react@18.2.0) + react-dom: 19.2.5(react@19.2.5) - react-shallow-renderer@16.15.0(react@18.2.0): + react-shallow-renderer@16.15.0(react@19.2.5): dependencies: object-assign: 4.1.1 - react: 18.2.0 + react: 19.2.5 react-is: 18.3.1 - react-style-singleton@2.2.3(@types/react@18.2.47)(react@18.2.0): + react-style-singleton@2.2.3(@types/react@19.2.14)(react@19.2.5): dependencies: get-nonce: 1.0.1 - react: 18.2.0 + react: 19.2.5 tslib: 2.8.1 optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 react@18.2.0: dependencies: loose-envify: 1.4.0 + react@19.2.5: {} + readable-stream@2.3.3: dependencies: core-util-is: 1.0.3 @@ -20343,6 +21322,35 @@ snapshots: dependencies: ms: 2.1.3 + recma-build-jsx@1.0.0: + dependencies: + '@types/estree': 1.0.6 + estree-util-build-jsx: 3.0.1 + vfile: 6.0.1 + + recma-jsx@1.0.1(acorn@8.14.1): + dependencies: + acorn: 8.14.1 + acorn-jsx: 5.3.2(acorn@8.14.1) + estree-util-to-js: 2.0.0 + recma-parse: 1.0.0 + recma-stringify: 1.0.0 + unified: 11.0.5 + + recma-parse@1.0.0: + dependencies: + '@types/estree': 1.0.6 + esast-util-from-js: 2.0.1 + unified: 11.0.5 + vfile: 6.0.1 + + recma-stringify@1.0.0: + dependencies: + '@types/estree': 1.0.6 + estree-util-to-js: 2.0.0 + unified: 11.0.5 + vfile: 6.0.1 + redis-errors@1.2.0: {} redis-parser@3.0.0: @@ -20410,6 +21418,14 @@ snapshots: transitivePeerDependencies: - supports-color + rehype-recma@1.0.0: + dependencies: + '@types/estree': 1.0.6 + '@types/hast': 3.0.4 + hast-util-to-estree: 3.1.0 + transitivePeerDependencies: + - supports-color + rehype-slug@6.0.0: dependencies: '@types/hast': 3.0.4 @@ -20447,16 +21463,16 @@ snapshots: transitivePeerDependencies: - supports-color - remark-mdx-frontmatter@5.0.0: + remark-mdx-frontmatter@5.2.0: dependencies: '@types/mdast': 4.0.3 - estree-util-is-identifier-name: 3.0.0 estree-util-value-to-estree: 3.0.1 toml: 3.0.0 unified: 11.0.5 - yaml: 2.7.0 + unist-util-mdx-define: 1.1.2 + yaml: 2.8.3 - remark-mdx@3.1.0: + remark-mdx@3.1.1: dependencies: mdast-util-mdx: 3.0.0 micromark-extension-mdxjs: 3.0.0 @@ -20522,8 +21538,6 @@ snapshots: retimer@3.0.0: {} - reusify@1.0.4: {} - rimraf@2.6.3: dependencies: glob: 7.2.3 @@ -20543,14 +21557,35 @@ snapshots: robust-predicates@3.0.2: {} - rollup-plugin-visualizer@5.12.0(rollup@4.35.0): + rolldown@1.0.0-rc.16: + dependencies: + '@oxc-project/types': 0.126.0 + '@rolldown/pluginutils': 1.0.0-rc.16 + optionalDependencies: + '@rolldown/binding-android-arm64': 1.0.0-rc.16 + '@rolldown/binding-darwin-arm64': 1.0.0-rc.16 + '@rolldown/binding-darwin-x64': 1.0.0-rc.16 + '@rolldown/binding-freebsd-x64': 1.0.0-rc.16 + '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-rc.16 + '@rolldown/binding-linux-arm64-gnu': 1.0.0-rc.16 + '@rolldown/binding-linux-arm64-musl': 1.0.0-rc.16 + '@rolldown/binding-linux-ppc64-gnu': 1.0.0-rc.16 + '@rolldown/binding-linux-s390x-gnu': 1.0.0-rc.16 + '@rolldown/binding-linux-x64-gnu': 1.0.0-rc.16 + '@rolldown/binding-linux-x64-musl': 1.0.0-rc.16 + '@rolldown/binding-openharmony-arm64': 1.0.0-rc.16 + '@rolldown/binding-wasm32-wasi': 1.0.0-rc.16 + '@rolldown/binding-win32-arm64-msvc': 1.0.0-rc.16 + '@rolldown/binding-win32-x64-msvc': 1.0.0-rc.16 + + rollup-plugin-visualizer@5.12.0(rollup@4.60.2): dependencies: open: 8.4.2 picomatch: 2.3.1 source-map: 0.7.4 yargs: 17.7.2 optionalDependencies: - rollup: 4.35.0 + rollup: 4.60.2 rollup@4.18.1: dependencies: @@ -20574,29 +21609,35 @@ snapshots: '@rollup/rollup-win32-x64-msvc': 4.18.1 fsevents: 2.3.3 - rollup@4.35.0: + rollup@4.60.2: dependencies: - '@types/estree': 1.0.6 + '@types/estree': 1.0.8 optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.35.0 - '@rollup/rollup-android-arm64': 4.35.0 - '@rollup/rollup-darwin-arm64': 4.35.0 - '@rollup/rollup-darwin-x64': 4.35.0 - '@rollup/rollup-freebsd-arm64': 4.35.0 - '@rollup/rollup-freebsd-x64': 4.35.0 - '@rollup/rollup-linux-arm-gnueabihf': 4.35.0 - '@rollup/rollup-linux-arm-musleabihf': 4.35.0 - '@rollup/rollup-linux-arm64-gnu': 4.35.0 - '@rollup/rollup-linux-arm64-musl': 4.35.0 - '@rollup/rollup-linux-loongarch64-gnu': 4.35.0 - '@rollup/rollup-linux-powerpc64le-gnu': 4.35.0 - '@rollup/rollup-linux-riscv64-gnu': 4.35.0 - '@rollup/rollup-linux-s390x-gnu': 4.35.0 - '@rollup/rollup-linux-x64-gnu': 4.35.0 - '@rollup/rollup-linux-x64-musl': 4.35.0 - '@rollup/rollup-win32-arm64-msvc': 4.35.0 - '@rollup/rollup-win32-ia32-msvc': 4.35.0 - '@rollup/rollup-win32-x64-msvc': 4.35.0 + '@rollup/rollup-android-arm-eabi': 4.60.2 + '@rollup/rollup-android-arm64': 4.60.2 + '@rollup/rollup-darwin-arm64': 4.60.2 + '@rollup/rollup-darwin-x64': 4.60.2 + '@rollup/rollup-freebsd-arm64': 4.60.2 + '@rollup/rollup-freebsd-x64': 4.60.2 + '@rollup/rollup-linux-arm-gnueabihf': 4.60.2 + '@rollup/rollup-linux-arm-musleabihf': 4.60.2 + '@rollup/rollup-linux-arm64-gnu': 4.60.2 + '@rollup/rollup-linux-arm64-musl': 4.60.2 + '@rollup/rollup-linux-loong64-gnu': 4.60.2 + '@rollup/rollup-linux-loong64-musl': 4.60.2 + '@rollup/rollup-linux-ppc64-gnu': 4.60.2 + '@rollup/rollup-linux-ppc64-musl': 4.60.2 + '@rollup/rollup-linux-riscv64-gnu': 4.60.2 + '@rollup/rollup-linux-riscv64-musl': 4.60.2 + '@rollup/rollup-linux-s390x-gnu': 4.60.2 + '@rollup/rollup-linux-x64-gnu': 4.60.2 + '@rollup/rollup-linux-x64-musl': 4.60.2 + '@rollup/rollup-openbsd-x64': 4.60.2 + '@rollup/rollup-openharmony-arm64': 4.60.2 + '@rollup/rollup-win32-arm64-msvc': 4.60.2 + '@rollup/rollup-win32-ia32-msvc': 4.60.2 + '@rollup/rollup-win32-x64-gnu': 4.60.2 + '@rollup/rollup-win32-x64-msvc': 4.60.2 fsevents: 2.3.3 roughjs@4.6.6: @@ -20616,10 +21657,6 @@ snapshots: bufferutil: 4.0.8 utf-8-validate: 5.0.10 - run-parallel@1.2.0: - dependencies: - queue-microtask: 1.2.3 - rw@1.3.3: {} safe-buffer@5.1.2: {} @@ -20638,6 +21675,8 @@ snapshots: dependencies: loose-envify: 1.4.0 + scheduler@0.27.0: {} + scrypt-js@3.0.1: {} secp256k1@4.0.3: @@ -20787,8 +21826,6 @@ snapshots: slash@3.0.0: {} - slash@5.1.0: {} - slice-ansi@2.1.0: dependencies: ansi-styles: 3.2.1 @@ -20978,9 +22015,9 @@ snapshots: tailwindcss@4.0.12: {} - tailwindcss@4.0.7: {} + tailwindcss@4.1.15: {} - tapable@2.2.1: {} + tapable@2.3.3: {} temp-dir@2.0.0: {} @@ -21022,6 +22059,11 @@ snapshots: tinyexec@1.0.1: {} + tinyglobby@0.2.16: + dependencies: + fdir: 6.5.0(picomatch@4.0.4) + picomatch: 4.0.4 + tinypool@1.0.1: {} tinyrainbow@1.2.0: {} @@ -21065,8 +22107,6 @@ snapshots: optionalDependencies: fsevents: 2.3.3 - turbo-stream@2.4.0: {} - tweetnacl-util@0.13.5: {} tweetnacl-util@0.15.1: {} @@ -21075,6 +22115,8 @@ snapshots: twoslash-protocol@0.2.12: {} + twoslash-protocol@0.3.8: {} + twoslash@0.2.12(typescript@5.3.3): dependencies: '@typescript/vfs': 1.6.1(typescript@5.3.3) @@ -21083,6 +22125,14 @@ snapshots: transitivePeerDependencies: - supports-color + twoslash@0.3.8(typescript@5.3.3): + dependencies: + '@typescript/vfs': 1.6.4(typescript@5.3.3) + twoslash-protocol: 0.3.8 + typescript: 5.3.3 + transitivePeerDependencies: + - supports-color + type-detect@4.0.8: {} type-fest@0.7.1: {} @@ -21150,8 +22200,6 @@ snapshots: unicode-property-aliases-ecmascript@2.1.0: {} - unicorn-magic@0.3.0: {} - unidragger@3.0.1: dependencies: ev-emitter: 2.1.2 @@ -21175,6 +22223,16 @@ snapshots: dependencies: '@types/unist': 3.0.2 + unist-util-mdx-define@1.1.2: + dependencies: + '@types/estree': 1.0.6 + '@types/hast': 3.0.4 + '@types/mdast': 4.0.3 + estree-util-is-identifier-name: 3.0.0 + estree-util-scope: 1.0.0 + estree-walker: 3.0.3 + vfile: 6.0.1 + unist-util-position-from-estree@2.0.0: dependencies: '@types/unist': 3.0.2 @@ -21249,28 +22307,28 @@ snapshots: url-set-query@1.0.0: {} - use-callback-ref@1.3.3(@types/react@18.2.47)(react@18.2.0): + use-callback-ref@1.3.3(@types/react@19.2.14)(react@19.2.5): dependencies: - react: 18.2.0 + react: 19.2.5 tslib: 2.8.1 optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - use-sidecar@1.1.3(@types/react@18.2.47)(react@18.2.0): + use-sidecar@1.1.3(@types/react@19.2.14)(react@19.2.5): dependencies: detect-node-es: 1.1.0 - react: 18.2.0 + react: 19.2.5 tslib: 2.8.1 optionalDependencies: - '@types/react': 18.2.47 + '@types/react': 19.2.14 - use-sync-external-store@1.2.0(react@18.2.0): + use-sync-external-store@1.2.0(react@19.2.5): dependencies: - react: 18.2.0 + react: 19.2.5 - use-sync-external-store@1.5.0(react@18.2.0): + use-sync-external-store@1.5.0(react@19.2.5): dependencies: - react: 18.2.0 + react: 19.2.5 utf-8-validate@5.0.10: dependencies: @@ -21307,20 +22365,20 @@ snapshots: valid-url@1.0.9: {} - valtio@1.11.0(react@18.2.0): + valtio@1.11.0(react@19.2.5): dependencies: proxy-compare: 2.5.1 - use-sync-external-store: 1.2.0(react@18.2.0) + use-sync-external-store: 1.2.0(react@19.2.5) optionalDependencies: - react: 18.2.0 + react: 19.2.5 - valtio@1.11.2(@types/react@18.2.47)(react@18.2.0): + valtio@1.11.2(@types/react@19.2.14)(react@19.2.5): dependencies: proxy-compare: 2.5.1 - use-sync-external-store: 1.2.0(react@18.2.0) + use-sync-external-store: 1.2.0(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 - react: 18.2.0 + '@types/react': 19.2.14 + react: 19.2.5 varint@6.0.0: {} @@ -21335,6 +22393,11 @@ snapshots: '@types/unist': 3.0.2 vfile: 6.0.1 + vfile-matter@5.0.1: + dependencies: + vfile: 6.0.1 + yaml: 2.8.3 + vfile-message@4.0.2: dependencies: '@types/unist': 3.0.2 @@ -21380,12 +22443,12 @@ snapshots: - utf-8-validate - zod - vite-node@2.1.2(@types/node@20.11.2)(lightningcss@1.29.2)(terser@5.39.0): + vite-node@2.1.2(@types/node@20.11.2)(lightningcss@1.32.0)(terser@5.39.0): dependencies: cac: 6.7.14 debug: 4.3.7 pathe: 1.1.2 - vite: 5.3.4(@types/node@20.11.2)(lightningcss@1.29.2)(terser@5.39.0) + vite: 5.3.4(@types/node@20.11.2)(lightningcss@1.32.0)(terser@5.39.0) transitivePeerDependencies: - '@types/node' - less @@ -21396,28 +22459,28 @@ snapshots: - supports-color - terser - vite-node@3.0.8(@types/node@20.11.2)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.7.1)(yaml@2.7.0): + vite-node@6.0.0(@types/node@20.11.2)(esbuild@0.27.7)(jiti@2.6.1)(terser@5.39.0)(tsx@4.7.1)(yaml@2.8.3): dependencies: - cac: 6.7.14 - debug: 4.4.0 - es-module-lexer: 1.6.0 + cac: 7.0.0 + es-module-lexer: 2.0.0 + obug: 2.1.1 pathe: 2.0.3 - vite: 6.2.1(@types/node@20.11.2)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.7.1)(yaml@2.7.0) + vite: 8.0.9(@types/node@20.11.2)(esbuild@0.27.7)(jiti@2.6.1)(terser@5.39.0)(tsx@4.7.1)(yaml@2.8.3) transitivePeerDependencies: - '@types/node' + - '@vitejs/devtools' + - esbuild - jiti - less - - lightningcss - sass - sass-embedded - stylus - sugarss - - supports-color - terser - tsx - yaml - vite@5.3.4(@types/node@20.11.2)(lightningcss@1.29.2)(terser@5.39.0): + vite@5.3.4(@types/node@20.11.2)(lightningcss@1.32.0)(terser@5.39.0): dependencies: esbuild: 0.21.5 postcss: 8.4.39 @@ -21425,27 +22488,46 @@ snapshots: optionalDependencies: '@types/node': 20.11.2 fsevents: 2.3.3 - lightningcss: 1.29.2 + lightningcss: 1.32.0 terser: 5.39.0 - vite@6.2.1(@types/node@20.11.2)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.7.1)(yaml@2.7.0): + vite@7.3.2(@types/node@20.11.2)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.39.0)(tsx@4.7.1)(yaml@2.8.3): dependencies: - esbuild: 0.25.1 - postcss: 8.5.3 - rollup: 4.35.0 + esbuild: 0.27.7 + fdir: 6.5.0(picomatch@4.0.4) + picomatch: 4.0.4 + postcss: 8.5.10 + rollup: 4.60.2 + tinyglobby: 0.2.16 + optionalDependencies: + '@types/node': 20.11.2 + fsevents: 2.3.3 + jiti: 2.6.1 + lightningcss: 1.32.0 + terser: 5.39.0 + tsx: 4.7.1 + yaml: 2.8.3 + + vite@8.0.9(@types/node@20.11.2)(esbuild@0.27.7)(jiti@2.6.1)(terser@5.39.0)(tsx@4.7.1)(yaml@2.8.3): + dependencies: + lightningcss: 1.32.0 + picomatch: 4.0.4 + postcss: 8.5.10 + rolldown: 1.0.0-rc.16 + tinyglobby: 0.2.16 optionalDependencies: '@types/node': 20.11.2 + esbuild: 0.27.7 fsevents: 2.3.3 - jiti: 2.4.2 - lightningcss: 1.29.2 + jiti: 2.6.1 terser: 5.39.0 tsx: 4.7.1 - yaml: 2.7.0 + yaml: 2.8.3 - vitest@2.1.2(@types/node@20.11.2)(lightningcss@1.29.2)(terser@5.39.0): + vitest@2.1.2(@types/node@20.11.2)(lightningcss@1.32.0)(terser@5.39.0): dependencies: '@vitest/expect': 2.1.2 - '@vitest/mocker': 2.1.2(@vitest/spy@2.1.2)(vite@5.3.4(@types/node@20.11.2)(lightningcss@1.29.2)(terser@5.39.0)) + '@vitest/mocker': 2.1.2(@vitest/spy@2.1.2)(vite@5.3.4(@types/node@20.11.2)(lightningcss@1.32.0)(terser@5.39.0)) '@vitest/pretty-format': 2.1.2 '@vitest/runner': 2.1.2 '@vitest/snapshot': 2.1.2 @@ -21460,8 +22542,8 @@ snapshots: tinyexec: 0.3.0 tinypool: 1.0.1 tinyrainbow: 1.2.0 - vite: 5.3.4(@types/node@20.11.2)(lightningcss@1.29.2)(terser@5.39.0) - vite-node: 2.1.2(@types/node@20.11.2)(lightningcss@1.29.2)(terser@5.39.0) + vite: 5.3.4(@types/node@20.11.2)(lightningcss@1.32.0)(terser@5.39.0) + vite-node: 2.1.2(@types/node@20.11.2)(lightningcss@1.32.0)(terser@5.39.0) why-is-node-running: 2.3.0 optionalDependencies: '@types/node': 20.11.2 @@ -21477,40 +22559,40 @@ snapshots: vlq@1.0.1: {} - vocs@1.0.14-main.20250716T102132(@types/node@20.11.2)(@types/react@18.2.47)(babel-plugin-macros@3.1.0)(jiti@2.4.2)(lightningcss@1.29.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(rollup@4.35.0)(terser@5.39.0)(tsx@4.7.1)(typescript@5.3.3)(yaml@2.7.0): + vocs@1.4.1(@types/node@20.11.2)(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(esbuild@0.27.7)(jiti@2.6.1)(lightningcss@1.32.0)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(rollup@4.60.2)(terser@5.39.0)(tsx@4.7.1)(typescript@5.3.3): dependencies: - '@floating-ui/react': 0.27.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@hono/node-server': 1.13.8(hono@4.7.4) - '@mdx-js/react': 3.1.0(@types/react@18.2.47)(react@18.2.0) - '@mdx-js/rollup': 3.1.0(rollup@4.35.0) - '@noble/hashes': 1.7.2 + '@floating-ui/react': 0.27.19(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@hono/node-server': 1.19.14(hono@4.12.14) + '@mdx-js/mdx': 3.1.1 + '@mdx-js/react': 3.1.1(@types/react@19.2.14)(react@19.2.5) + '@mdx-js/rollup': 3.1.1(rollup@4.60.2) + '@noble/hashes': 1.8.0 '@radix-ui/colors': 3.0.0 - '@radix-ui/react-accordion': 1.2.11(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-dialog': 1.1.14(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-icons': 1.3.2(react@18.2.0) - '@radix-ui/react-label': 2.1.7(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-navigation-menu': 1.2.13(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-popover': 1.1.14(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-tabs': 1.1.12(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-accordion': 1.2.11(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-dialog': 1.1.14(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-icons': 1.3.2(react@19.2.5) + '@radix-ui/react-label': 2.1.7(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-navigation-menu': 1.2.13(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-popover': 1.1.14(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@radix-ui/react-tabs': 1.1.12(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) '@shikijs/rehype': 1.10.3 '@shikijs/transformers': 1.10.3 '@shikijs/twoslash': 1.10.3(typescript@5.3.3) - '@tailwindcss/vite': 4.0.7(vite@6.2.1(@types/node@20.11.2)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.7.1)(yaml@2.7.0)) - '@vanilla-extract/css': 1.17.1(babel-plugin-macros@3.1.0) - '@vanilla-extract/dynamic': 2.1.2 - '@vanilla-extract/vite-plugin': 5.0.1(@types/node@20.11.2)(babel-plugin-macros@3.1.0)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.7.1)(vite@6.2.1(@types/node@20.11.2)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.7.1)(yaml@2.7.0))(yaml@2.7.0) - '@vitejs/plugin-react': 4.3.4(vite@6.2.1(@types/node@20.11.2)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.7.1)(yaml@2.7.0)) + '@tailwindcss/vite': 4.1.15(vite@7.3.2(@types/node@20.11.2)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.39.0)(tsx@4.7.1)(yaml@2.8.3)) + '@vanilla-extract/css': 1.20.1(babel-plugin-macros@3.1.0) + '@vanilla-extract/dynamic': 2.1.5 + '@vanilla-extract/vite-plugin': 5.2.2(@types/node@20.11.2)(babel-plugin-macros@3.1.0)(esbuild@0.27.7)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.39.0)(tsx@4.7.1)(vite@7.3.2(@types/node@20.11.2)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.39.0)(tsx@4.7.1)(yaml@2.8.3))(yaml@2.8.3) + '@vitejs/plugin-react': 5.2.0(vite@7.3.2(@types/node@20.11.2)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.39.0)(tsx@4.7.1)(yaml@2.8.3)) autoprefixer: 10.4.21(postcss@8.5.3) cac: 6.7.14 chroma-js: 3.1.2 clsx: 2.1.1 - compression: 1.8.0 + compression: 1.8.1 create-vocs: 1.0.0-alpha.5 cross-spawn: 7.0.6 - fs-extra: 11.3.0 - globby: 14.1.0 + fs-extra: 11.3.4 hastscript: 8.0.0 - hono: 4.7.4 + hono: 4.12.14 mark.js: 8.11.1 mdast-util-directive: 3.1.0 mdast-util-from-markdown: 2.0.2 @@ -21520,18 +22602,18 @@ snapshots: mdast-util-mdx-jsx: 3.2.0 mdast-util-to-hast: 13.2.0 mdast-util-to-markdown: 2.1.2 - minimatch: 9.0.5 - minisearch: 6.3.0 - nuqs: 2.4.3(react-router@7.3.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) + minisearch: 7.2.0 + nuqs: 2.8.9(react-router@7.14.2(react-dom@19.2.5(react@19.2.5))(react@19.2.5))(react@19.2.5) ora: 7.0.1 p-limit: 5.0.0 + picomatch: 4.0.4 playwright: 1.54.1 postcss: 8.5.3 - radix-ui: 1.4.2(@types/react@18.2.47)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-intersection-observer: 9.16.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react-router: 7.3.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + radix-ui: 1.4.2(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + react: 19.2.5 + react-dom: 19.2.5(react@19.2.5) + react-intersection-observer: 9.16.0(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + react-router: 7.14.2(react-dom@19.2.5(react@19.2.5))(react@19.2.5) rehype-autolink-headings: 7.1.0 rehype-class-names: 2.0.0 rehype-mermaid: 3.0.0(playwright@1.54.1) @@ -21539,23 +22621,28 @@ snapshots: remark-directive: 3.0.1 remark-frontmatter: 5.0.0 remark-gfm: 4.0.1 - remark-mdx: 3.1.0 - remark-mdx-frontmatter: 5.0.0 + remark-mdx: 3.1.1 + remark-mdx-frontmatter: 5.2.0 remark-parse: 11.0.0 serve-static: 1.16.2 shiki: 1.10.3 toml: 3.0.0 - twoslash: 0.2.12(typescript@5.3.3) + twoslash: 0.3.8(typescript@5.3.3) ua-parser-js: 1.0.40 unified: 11.0.5 unist-util-visit: 5.0.0 - vite: 6.2.1(@types/node@20.11.2)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.7.1)(yaml@2.7.0) + vfile-matter: 5.0.1 + vite: 7.3.2(@types/node@20.11.2)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.39.0)(tsx@4.7.1)(yaml@2.8.3) + yaml: 2.8.3 transitivePeerDependencies: - '@remix-run/react' + - '@tanstack/react-router' - '@types/node' - '@types/react' - '@types/react-dom' + - '@vitejs/devtools' - babel-plugin-macros + - esbuild - jiti - less - lightningcss @@ -21570,7 +22657,6 @@ snapshots: - terser - tsx - typescript - - yaml void-elements@3.1.0: {} @@ -21591,13 +22677,13 @@ snapshots: vscode-uri@3.0.8: {} - wagmi@2.5.5(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.18.0)(@tanstack/react-query@5.18.0(react@18.2.0))(@types/react@18.2.47)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.35.0)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@2.33.1(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)): + wagmi@2.5.5(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.18.0)(@tanstack/react-query@5.18.0(react@19.2.5))(@types/react@19.2.14)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.2.5(react@19.2.5))(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))(react@19.2.5)(rollup@4.60.2)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@2.33.1(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)): dependencies: - '@tanstack/react-query': 5.18.0(react@18.2.0) - '@wagmi/connectors': 4.1.12(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.47)(@wagmi/core@2.6.3(@tanstack/query-core@5.18.0)(@types/react@18.2.47)(bufferutil@4.0.8)(react@18.2.0)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@2.33.1(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.3(@babel/core@7.26.10)(@babel/preset-env@7.23.9(@babel/core@7.26.10))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.35.0)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@2.33.1(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)) - '@wagmi/core': 2.6.3(@tanstack/query-core@5.18.0)(@types/react@18.2.47)(bufferutil@4.0.8)(react@18.2.0)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@2.33.1(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)) - react: 18.2.0 - use-sync-external-store: 1.2.0(react@18.2.0) + '@tanstack/react-query': 5.18.0(react@19.2.5) + '@wagmi/connectors': 4.1.12(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10)))(@types/react@19.2.14)(@wagmi/core@2.6.3(@tanstack/query-core@5.18.0)(@types/react@19.2.14)(bufferutil@4.0.8)(react@19.2.5)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@2.33.1(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.2.5(react@19.2.5))(react-native@0.73.3(@babel/core@7.29.0)(@babel/preset-env@7.23.9(@babel/core@7.29.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.2.5)(utf-8-validate@5.0.10))(react@19.2.5)(rollup@4.60.2)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@2.33.1(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)) + '@wagmi/core': 2.6.3(@tanstack/query-core@5.18.0)(@types/react@19.2.14)(bufferutil@4.0.8)(react@19.2.5)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@2.33.1(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)) + react: 19.2.5 + use-sync-external-store: 1.2.0(react@19.2.5) viem: 2.33.1(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10) optionalDependencies: typescript: 5.3.3 @@ -21923,7 +23009,7 @@ snapshots: yaml@1.10.2: {} - yaml@2.7.0: {} + yaml@2.8.3: {} yargs-parser@18.1.3: dependencies: @@ -21960,11 +23046,11 @@ snapshots: yocto-queue@1.1.1: {} - zustand@4.4.1(@types/react@18.2.47)(react@18.2.0): + zustand@4.4.1(@types/react@19.2.14)(react@19.2.5): dependencies: - use-sync-external-store: 1.2.0(react@18.2.0) + use-sync-external-store: 1.2.0(react@19.2.5) optionalDependencies: - '@types/react': 18.2.47 - react: 18.2.0 + '@types/react': 19.2.14 + react: 19.2.5 zwitch@2.0.4: {} diff --git a/sidebars/guides.ts b/sidebars/guides.ts index 1b786a84..0ca1a505 100644 --- a/sidebars/guides.ts +++ b/sidebars/guides.ts @@ -54,6 +54,10 @@ export const tutorialSidebar = [ text: "Send your first gasless transaction", link: "/guides/tutorials/tutorial-1", }, + { + text: "Batch multiple transactions from a smart account", + link: "/guides/tutorials/send-transaction", + }, { text: "Submit a user operation with an ERC-20 Paymaster", link: "/guides/tutorials/tutorial-2", @@ -91,10 +95,6 @@ export const accountsSidebar = [ text: "Account types comparison", link: "/guides/how-to/accounts/comparison", }, - { - text: "Send multiple user operations in parallel", - link: "/guides/how-to/parallel-transactions", - }, { text: "Safe", link: "/guides/how-to/accounts/use-safe-account", @@ -141,11 +141,7 @@ export const accountsSidebar = [ }, ]; -export const paymastersSidebar = [ - { - text: "Update your app to sponsor gas fees", - link: "/guides/how-to/dapp-gas-sponsorship", - }, +export const verifyingPaymasterSidebar = [ { text: "Extending sponsorship duration", link: "/guides/how-to/paymasters/extending-sponsorship-duration", @@ -154,17 +150,87 @@ export const paymastersSidebar = [ text: "Sponsor conditionally", link: "/guides/how-to/paymasters/conditional-sponsoring", }, + { + text: "Use sponsorship policies", + link: "/guides/how-to/sponsorship-policies", + }, + { + text: "Sponsorship policy webhooks", + link: "/guides/how-to/sponsorship-policies/webhook", + }, ]; -export const signersSidebar = [ +export const gasSponsorshipSidebar = [ { - text: "Passkey (WebAuthn) signer", - link: "/guides/how-to/signers/passkey", + text: "Verifying Paymaster", + items: verifyingPaymasterSidebar, }, { - text: "Passkey (WebAuthn) server", - link: "/guides/how-to/signers/passkey-server", + text: "ERC-20 Paymaster", + link: "/guides/how-to/erc20-paymaster", + items: [ + { + text: "Supported Tokens", + link: "/guides/how-to/erc20-paymaster/supported-tokens", + }, + { + text: "Use the ERC-20 Paymaster", + link: "/guides/how-to/erc20-paymaster/how-to/use-paymaster", + }, + { + text: "Use the ERC-20 Paymaster (with unlimited token approvals)", + link: "/guides/how-to/erc20-paymaster/how-to/use-paymaster-with-unlimited-approval", + }, + { + text: "Estimate token cost and cost in USD", + link: "/guides/how-to/erc20-paymaster/how-to/calculate-costs", + }, + ], + }, + { + text: "Boosted Paymaster", + items: [ + { + text: "Use the Boosted Paymaster", + link: "/guides/boosted-paymaster/use-boosted-paymaster", + }, + ], }, + { + text: "Gas Programs", + items: [ + { + text: "Create a gas program", + link: "/guides/how-to/gas-programs/gas-program", + }, + { + text: "Claim a gas grant", + link: "/guides/how-to/gas-programs/claim", + }, + { + text: "Use the claimed grant", + link: "/guides/how-to/gas-programs/use", + }, + ], + }, +]; + +export const productionSidebar = [ + { + text: "Protect API keys", + link: "/guides/how-to/security/protect-api-keys", + }, + { + text: "Testing", + items: testingSidebar, + }, + { + text: "Debugging", + items: debuggingSidebar, + }, +]; + +export const socialLoginSignersSidebar = [ { text: "Dynamic", link: "/guides/how-to/signers/dynamic", @@ -177,115 +243,86 @@ export const signersSidebar = [ text: "Magic", link: "/guides/how-to/signers/magic", }, - { - text: "Openfort", - link: "/guides/how-to/signers/openfort", - }, - { - text: "Lit Protocol", - link: "/guides/how-to/signers/lit-protocol", - }, { text: "Web3Auth", link: "/guides/how-to/signers/web3auth", }, { - text: "Turnkey", - link: "/guides/how-to/signers/turnkey", - }, - { - text: "Fireblocks", - link: "/guides/how-to/signers/fireblocks", + text: "Openfort", + link: "/guides/how-to/signers/openfort", }, { text: "Para", link: "/guides/how-to/signers/para", }, - { - text: "DFNS", - link: "/guides/how-to/signers/dfns", - }, { text: "Particle Network", link: "/guides/how-to/signers/particle-network", }, -]; - -export const sponsorshipPoliciesSidebar = [ - { - text: "Use sponsorship policies", - link: "/guides/how-to/sponsorship-policies", - }, { - text: "Webhooks", - link: "/guides/how-to/sponsorship-policies/webhook", + text: "Lit Protocol", + link: "/guides/how-to/signers/lit-protocol", }, ]; -export const gasGrantPoliciesSidebar = [ +export const keyManagementSignersSidebar = [ { - text: "Create a gas program", - link: "/guides/how-to/gas-programs/gas-program", + text: "Turnkey", + link: "/guides/how-to/signers/turnkey", }, { - text: "Claim a gas grant", - link: "/guides/how-to/gas-programs/claim", + text: "Fireblocks", + link: "/guides/how-to/signers/fireblocks", }, { - text: "Use the claimed grant", - link: "/guides/how-to/gas-programs/use", + text: "DFNS", + link: "/guides/how-to/signers/dfns", }, ]; -export const securitySidebar = [ +export const passkeySignersSidebar = [ { - text: "Protect API keys", - link: "/guides/how-to/security/protect-api-keys", + text: "Passkey (WebAuthn) signer", + link: "/guides/how-to/signers/passkey", }, -]; - -export const erc20PaymasterSidebar = [ { - text: "Supported Tokens", - link: "/guides/how-to/erc20-paymaster/supported-tokens", + text: "Passkey (WebAuthn) server", + link: "/guides/how-to/signers/passkey-server", }, +]; + +export const signersSidebar = [ { - text: "Use the ERC-20 Paymaster", - link: "/guides/how-to/erc20-paymaster/how-to/use-paymaster", + text: "Social login", + link: "/guides/how-to/signers/social-logins", + items: socialLoginSignersSidebar, }, { - text: "Use the ERC-20 Paymaster (with unlimited token approvals)", - link: "/guides/how-to/erc20-paymaster/how-to/use-paymaster-with-unlimited-approval", + text: "Passkey", + items: passkeySignersSidebar, }, { - text: "Estimate token cost and cost in USD", - link: "/guides/how-to/erc20-paymaster/how-to/calculate-costs", + text: "Key management", + items: keyManagementSignersSidebar, }, ]; -export const boostedPaymasterSidebar = [ +export const sendingTransactionsSidebar = [ { - text: "Use the Boosted Paymaster", - link: "/guides/boosted-paymaster/use-boosted-paymaster", + text: "Send user operations in parallel", + link: "/guides/how-to/parallel-transactions", }, ]; export const conceptualSidebar = [ { - text: "Overview", - link: "/guides/conceptual", - }, - { - text: "Account Abstraction", + text: "Account Abstraction (ERC-4337)", link: "/guides/conceptual/account-abstraction", }, { - text: "ERC-4337", - link: "/guides/conceptual/erc4337", - }, - { - text: "ERC-7579", - link: "/guides/conceptual/erc7579", + text: "EIP-7702", + link: "/guides/eip7702", + items: eip7702Sidebar, }, ]; @@ -296,9 +333,8 @@ export const guidesSidebar = [ items: gettingStartedSidebar, }, { - text: "EIP-7702", - link: "/guides/eip7702", - items: eip7702Sidebar, + text: "Concepts", + items: conceptualSidebar, }, { text: "Tutorials", @@ -306,41 +342,12 @@ export const guidesSidebar = [ items: tutorialSidebar, }, { - text: "Verifying Paymaster", - items: paymastersSidebar, - }, - { - text: "ERC-20 Paymaster", - link: "/guides/how-to/erc20-paymaster", - items: erc20PaymasterSidebar, - }, - { - text: "Boosted Paymaster", - items: boostedPaymasterSidebar, - }, - { - text: "Sponsorship Policies", - items: sponsorshipPoliciesSidebar, - }, - { - text: "Gas Programs", - items: gasGrantPoliciesSidebar, - }, - { - text: "Security", - items: securitySidebar, + text: "Sending transactions", + items: sendingTransactionsSidebar, }, { - text: "Testing", - items: testingSidebar, - }, - { - text: "Debugging", - items: debuggingSidebar, - }, - { - text: "Accounts", - items: accountsSidebar, + text: "Gas Sponsorship", + items: gasSponsorshipSidebar, }, { text: "Signers", @@ -348,8 +355,11 @@ export const guidesSidebar = [ items: signersSidebar, }, { - text: "Conceptual", - link: "/guides/conceptual", - items: conceptualSidebar, + text: "Smart Accounts", + items: accountsSidebar, + }, + { + text: "Production", + items: productionSidebar, }, ]; diff --git a/vercel.json b/vercel.json index 7b85756c..7c286e89 100644 --- a/vercel.json +++ b/vercel.json @@ -304,6 +304,21 @@ "destination": "/guides/eip7702", "permanent": false }, + { + "source": "/guides/conceptual", + "destination": "/guides/conceptual/account-abstraction", + "permanent": false + }, + { + "source": "/guides/conceptual/erc4337", + "destination": "/guides/conceptual/account-abstraction", + "permanent": false + }, + { + "source": "/guides/conceptual/erc7579", + "destination": "/guides/conceptual/account-abstraction", + "permanent": false + }, { "source": "/references/platform/why-pimlico/:path*", "destination": "/guides/why-pimlico/:path*", diff --git a/vocs.config.tsx b/vocs.config.tsx index 7a5ec71a..66b9b762 100644 --- a/vocs.config.tsx +++ b/vocs.config.tsx @@ -1,18 +1,19 @@ import { defineConfig } from "vocs"; -import viteConfig from "./utils"; import { guidesSidebar } from "./sidebars/guides"; import { - platformSidebar, bundlerSidebar, paymasterSidebar, // flashFundSidebar, permissionlessSidebar, - permissionlessWagmiSidebar, permissionlessSidebar0Point1, + permissionlessWagmiSidebar, + platformSidebar, } from "./sidebars/references"; +import viteConfig from "./utils"; export default defineConfig({ title: "Pimlico", + llms: { generateMarkdown: true }, logoUrl: { light: "/pimlico-purple.svg", dark: "/pimlico-white.svg" }, iconUrl: "/favicons/favicon.svg", titleTemplate: "%s | Pimlico Docs",