diff --git a/apps/payments/create-react-app/package.json b/apps/payments/create-react-app/package.json
index 4c682002d..adacf2dfe 100644
--- a/apps/payments/create-react-app/package.json
+++ b/apps/payments/create-react-app/package.json
@@ -20,10 +20,12 @@
},
"dependencies": {
"@crossmint/client-sdk-react-ui": "workspace:*",
+ "crypto": "npm:crypto-browserify@3.12.0",
"eslint-config-react-app": "7.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-scripts": "5.0.1",
+ "stream": "npm:stream-browserify@3.0.0",
"web-vitals": "3.4.0"
},
"devDependencies": {
diff --git a/apps/payments/nextjs/pages/embedded-checkout/v3.tsx b/apps/payments/nextjs/pages/embedded-checkout/v3.tsx
index c3e5fed70..0701201b3 100644
--- a/apps/payments/nextjs/pages/embedded-checkout/v3.tsx
+++ b/apps/payments/nextjs/pages/embedded-checkout/v3.tsx
@@ -24,7 +24,7 @@ export default function EmbeddedCheckoutV3Page() {
>
diff --git a/packages/client/base/src/services/embed/v3/crossmintEmbeddedCheckoutV3Service.ts b/packages/client/base/src/services/embed/v3/crossmintEmbeddedCheckoutV3Service.ts
index e904a9839..42d6216f7 100644
--- a/packages/client/base/src/services/embed/v3/crossmintEmbeddedCheckoutV3Service.ts
+++ b/packages/client/base/src/services/embed/v3/crossmintEmbeddedCheckoutV3Service.ts
@@ -33,6 +33,8 @@ export function crossmintEmbeddedCheckoutV3Service({ apiClient }: CrossmintEmbed
}
}
+ queryParams.append("apiKey", apiClient.crossmint.apiKey);
+
return `${urlWithPath}?${queryParams.toString()}`;
}
diff --git a/packages/client/base/src/types/embed/v3/events/incoming.ts b/packages/client/base/src/types/embed/v3/events/incoming.ts
index 1f5f53bdf..de15f99be 100644
--- a/packages/client/base/src/types/embed/v3/events/incoming.ts
+++ b/packages/client/base/src/types/embed/v3/events/incoming.ts
@@ -4,5 +4,8 @@ export const embeddedCheckoutV3IncomingEvents = {
"ui:height.changed": z.object({
height: z.number(),
}),
+ "crypto:connect-wallet.show": z.object({
+ show: z.boolean(),
+ }),
};
export type EmbeddedCheckoutV3IncomingEventMap = typeof embeddedCheckoutV3IncomingEvents;
diff --git a/packages/client/base/src/types/embed/v3/events/outgoing.ts b/packages/client/base/src/types/embed/v3/events/outgoing.ts
index ea1190fa9..287ff1269 100644
--- a/packages/client/base/src/types/embed/v3/events/outgoing.ts
+++ b/packages/client/base/src/types/embed/v3/events/outgoing.ts
@@ -1,8 +1,13 @@
import { z } from "zod";
export const embeddedCheckoutV3OutgoingEvents = {
- placeholder: z.object({
- placeholder: z.number(),
+ "crypto:connect-wallet.failed": z.object({
+ error: z.string(),
+ }),
+ "crypto:connect-wallet.success": z.object({
+ address: z.string(),
+ chain: z.string(),
+ walletProviderKey: z.string().optional(),
}),
};
export type EmbeddedCheckoutV3OutgoingEventMap = typeof embeddedCheckoutV3OutgoingEvents;
diff --git a/packages/client/ui/react-ui/package.json b/packages/client/ui/react-ui/package.json
index 337c9e785..9601b50ea 100644
--- a/packages/client/ui/react-ui/package.json
+++ b/packages/client/ui/react-ui/package.json
@@ -26,6 +26,9 @@
"@crossmint/client-sdk-window": "workspace:*",
"@crossmint/common-sdk-base": "workspace:*",
"@crossmint/common-sdk-auth": "workspace:*",
+ "@dynamic-labs/ethereum": "3.2.0",
+ "@dynamic-labs/sdk-react-core": "3.2.0",
+ "@dynamic-labs/solana": "3.2.0",
"@ethersproject/transactions": "5.7.0",
"@headlessui/react": "2.1.5",
"@solana/web3.js": "1.95.1",
diff --git a/packages/client/ui/react-ui/src/components/dynamic-xyz/DynamicContextProviderWrapper.tsx b/packages/client/ui/react-ui/src/components/dynamic-xyz/DynamicContextProviderWrapper.tsx
new file mode 100644
index 000000000..60a97db99
--- /dev/null
+++ b/packages/client/ui/react-ui/src/components/dynamic-xyz/DynamicContextProviderWrapper.tsx
@@ -0,0 +1,21 @@
+import { type DynamicContextProps, DynamicContextProvider } from "@dynamic-labs/sdk-react-core";
+import type { ReactNode } from "react";
+
+export interface DynamicContextProviderWrapperProps {
+ children?: ReactNode;
+ settings: Omit;
+}
+
+export default function DynamicContextProviderWrapper({ children, settings }: DynamicContextProviderWrapperProps) {
+ return (
+
+ {children}
+
+ );
+}
diff --git a/packages/client/ui/react-ui/src/components/embed/v3/EmbeddedCheckoutV3IFrame.tsx b/packages/client/ui/react-ui/src/components/embed/v3/EmbeddedCheckoutV3IFrame.tsx
index 069f35673..ed0ce9950 100644
--- a/packages/client/ui/react-ui/src/components/embed/v3/EmbeddedCheckoutV3IFrame.tsx
+++ b/packages/client/ui/react-ui/src/components/embed/v3/EmbeddedCheckoutV3IFrame.tsx
@@ -8,6 +8,7 @@ import {
} from "@crossmint/client-sdk-base";
import { LIB_VERSION } from "@/consts/version";
import { CrossmintApiClient } from "@crossmint/common-sdk-base";
+import { CryptoWalletConnectionHandler } from "./crypto/CryptoWalletConnectionHandler";
export function EmbeddedCheckoutV3IFrame(props: CrossmintEmbeddedCheckoutV3Props) {
const [iframeClient, setIframeClient] = useState(null);
@@ -35,7 +36,7 @@ export function EmbeddedCheckoutV3IFrame(props: CrossmintEmbeddedCheckoutV3Props
}, [ref.current, iframeClient]);
useEffect(() => {
- if (!iframeClient) {
+ if (iframeClient == null) {
return;
}
iframeClient.on("ui:height.changed", (data) => setHeight(data.height));
@@ -46,27 +47,30 @@ export function EmbeddedCheckoutV3IFrame(props: CrossmintEmbeddedCheckoutV3Props
}, [iframeClient]);
return (
-
+ <>
+
+ {props.payment.crypto.enabled ? : null}
+ >
);
}
diff --git a/packages/client/ui/react-ui/src/components/embed/v3/crypto/CryptoWalletConnectionHandler.tsx b/packages/client/ui/react-ui/src/components/embed/v3/crypto/CryptoWalletConnectionHandler.tsx
new file mode 100644
index 000000000..a4cfb2d0e
--- /dev/null
+++ b/packages/client/ui/react-ui/src/components/embed/v3/crypto/CryptoWalletConnectionHandler.tsx
@@ -0,0 +1,100 @@
+import DynamicContextProviderWrapper from "@/components/dynamic-xyz/DynamicContextProviderWrapper";
+import type { EmbeddedCheckoutV3IFrameEmitter } from "@crossmint/client-sdk-base";
+import { type BlockchainIncludingTestnet, chainIdToBlockchain } from "@crossmint/common-sdk-base";
+import { EthereumWalletConnectors } from "@dynamic-labs/ethereum";
+import { type HandleConnectedWallet, useDynamicContext } from "@dynamic-labs/sdk-react-core";
+import { SolanaWalletConnectors } from "@dynamic-labs/solana";
+import { useEffect } from "react";
+
+export function CryptoWalletConnectionHandler(props: { iframeClient: EmbeddedCheckoutV3IFrameEmitter | null }) {
+ const { iframeClient } = props;
+
+ return (
+ {
+ console.log("[CryptoWalletConnectionHandler] handleConnectedWallet", wallet);
+
+ const address = wallet.address;
+ if (!address) {
+ console.error("[CryptoWalletConnectionHandler] handleConnectedWallet: address is missing");
+ iframeClient?.send("crypto:connect-wallet.failed", {
+ error: "address is missing",
+ });
+ return false;
+ }
+
+ const chain = await dynamicChainToCrossmintChain(wallet);
+
+ iframeClient?.send("crypto:connect-wallet.success", {
+ address,
+ chain,
+ walletProviderKey: wallet.connector?.key,
+ });
+
+ return true;
+ },
+ },
+ }}
+ >
+ <_CryptoWalletConnectionHandler {...props} />
+
+ );
+}
+
+function _CryptoWalletConnectionHandler({ iframeClient }: Parameters[0]) {
+ const { setShowAuthFlow } = useDynamicContext();
+
+ useEffect(() => {
+ if (iframeClient == null) {
+ return;
+ }
+ const listenerId = iframeClient.on("crypto:connect-wallet.show", ({ show }) => {
+ console.log("crypto:connect-wallet.show", show);
+ setShowAuthFlow(show);
+ });
+
+ return () => {
+ iframeClient.off(listenerId);
+ };
+ }, [iframeClient]);
+
+ return null;
+}
+
+async function dynamicChainToCrossmintChain(
+ wallet: Parameters[0]
+): Promise {
+ const chain = wallet.chain;
+ if (chain === "SOL") {
+ return "solana";
+ }
+ const chainId = await wallet.connector?.getNetwork();
+ if (typeof chainId !== "number") {
+ throw new Error("chainId is not a number");
+ }
+ const chainFromChainId = chainIdToBlockchain(chainId);
+ if (!chainFromChainId) {
+ throw new Error(`ChainId ${chainId} is not supported`);
+ }
+ return chainFromChainId as BlockchainIncludingTestnet;
+}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index dae6cad10..6d6518b11 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -93,9 +93,12 @@ importers:
'@crossmint/client-sdk-react-ui':
specifier: workspace:*
version: link:../../../packages/client/ui/react-ui
+ crypto:
+ specifier: npm:crypto-browserify@3.12.0
+ version: crypto-browserify@3.12.0
eslint-config-react-app:
specifier: 7.0.1
- version: 7.0.1(@babel/plugin-syntax-flow@7.22.5(@babel/core@7.22.17))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.17))(eslint@8.57.0)(jest@27.5.1(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3))(utf-8-validate@5.0.10))(typescript@5.3.3)
+ version: 7.0.1(@babel/plugin-syntax-flow@7.25.7(@babel/core@7.22.17))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.17))(eslint@8.57.0)(jest@27.5.1(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3))(utf-8-validate@5.0.10))(typescript@5.3.3)
react:
specifier: 18.2.0
version: 18.2.0
@@ -104,7 +107,10 @@ importers:
version: 18.2.0(react@18.2.0)
react-scripts:
specifier: 5.0.1
- version: 5.0.1(@babel/plugin-syntax-flow@7.22.5(@babel/core@7.22.17))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.17))(@types/babel__core@7.20.1)(bufferutil@4.0.7)(esbuild@0.21.5)(eslint@8.57.0)(react@18.2.0)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3))(type-fest@0.21.3)(typescript@5.3.3)(utf-8-validate@5.0.10)(vue-template-compiler@2.7.14)
+ version: 5.0.1(@babel/plugin-syntax-flow@7.25.7(@babel/core@7.22.17))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.17))(@types/babel__core@7.20.1)(bufferutil@4.0.7)(esbuild@0.21.5)(eslint@8.57.0)(react@18.2.0)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3))(type-fest@0.21.3)(typescript@5.3.3)(utf-8-validate@5.0.10)(vue-template-compiler@2.7.14)
+ stream:
+ specifier: npm:stream-browserify@3.0.0
+ version: stream-browserify@3.0.0
web-vitals:
specifier: 3.4.0
version: 3.4.0
@@ -499,6 +505,15 @@ importers:
'@crossmint/common-sdk-base':
specifier: workspace:*
version: link:../../../common/base
+ '@dynamic-labs/ethereum':
+ specifier: 3.2.0
+ version: 3.2.0(@babel/core@7.21.8)(@babel/preset-env@7.22.15(@babel/core@7.21.8))(@dynamic-labs/logger@3.2.0(eventemitter3@5.0.1))(@dynamic-labs/rpc-providers@3.2.0)(@types/react@18.3.3)(bufferutil@4.0.7)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(utf-8-validate@5.0.10)(viem@2.17.5(bufferutil@4.0.7)(typescript@5.5.3)(utf-8-validate@5.0.10)(zod@3.22.4))
+ '@dynamic-labs/sdk-react-core':
+ specifier: 3.2.0
+ version: 3.2.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.21.8)(@babel/preset-env@7.22.15(@babel/core@7.21.8))(@types/react@18.3.3)(bufferutil@4.0.7)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
+ '@dynamic-labs/solana':
+ specifier: 3.2.0
+ version: 3.2.0(@dynamic-labs/logger@3.2.0(eventemitter3@5.0.1))(bufferutil@4.0.7)(encoding@0.1.13)(eventemitter3@5.0.1)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)(utf-8-validate@5.0.10)(zod@3.22.4)
'@ethersproject/transactions':
specifier: 5.7.0
version: 5.7.0
@@ -510,10 +525,10 @@ importers:
version: 1.95.1(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@twind/core':
specifier: 1.1.3
- version: 1.1.3(typescript@4.9.5)
+ version: 1.1.3(typescript@5.5.3)
'@twind/preset-tailwind':
specifier: 1.1.4
- version: 1.1.4(@twind/core@1.1.3(typescript@4.9.5))(typescript@4.9.5)
+ version: 1.1.4(@twind/core@1.1.3(typescript@5.5.3))(typescript@5.5.3)
bs58:
specifier: 5.0.0
version: 5.0.0
@@ -531,7 +546,7 @@ importers:
version: 2.4.0
tailwindcss:
specifier: 3.4.10
- version: 3.4.10(ts-node@10.9.2(@types/node@20.12.7)(typescript@4.9.5))
+ version: 3.4.10(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.5.3))
zod:
specifier: 3.22.4
version: 3.22.4
@@ -743,7 +758,7 @@ importers:
devDependencies:
'@crossmint/client-sdk-aa':
specifier: 1.0.0-alpha.1
- version: 1.0.0-alpha.1(@babel/runtime@7.24.8)(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.7)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(bufferutil@4.0.7)(encoding@0.1.13)(react@18.2.0)(typescript@5.5.3)(utf-8-validate@5.0.10)(zod@3.22.4)
+ version: 1.0.0-alpha.1(@babel/runtime@7.25.7)(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.7)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(bufferutil@4.0.7)(encoding@0.1.13)(react@18.2.0)(typescript@5.5.3)(utf-8-validate@5.0.10)(zod@3.22.4)
'@ethersproject/abstract-provider':
specifier: 5.7.0
version: 5.7.0
@@ -1010,6 +1025,10 @@ packages:
resolution: {integrity: sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-plugin-utils@7.25.7':
+ resolution: {integrity: sha512-eaPZai0PiqCi09pPs3pAFfl/zYgGaE6IdXtYvmf0qlcDTd3WCtO7JWCcRd64e0EQrcYgiHibEZnOGsSY4QSgaw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-remap-async-to-generator@7.22.17':
resolution: {integrity: sha512-bxH77R5gjH3Nkde6/LuncQoLaP16THYPscurp1S8z7S9ZgezCyV3G8Hc+TZiCmY8pz4fp8CvKSgtJMW0FkLAxA==}
engines: {node: '>=6.9.0'}
@@ -1068,6 +1087,10 @@ packages:
resolution: {integrity: sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-validator-option@7.25.7':
+ resolution: {integrity: sha512-ytbPLsm+GjArDYXJ8Ydr1c/KJuutjF2besPNbIZnZ6MKUxi/uTA22t2ymmA4WFjZFpjiAMO0xuuJPqK2nvDVfQ==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-wrap-function@7.22.17':
resolution: {integrity: sha512-nAhoheCMlrqU41tAojw9GpVEKDlTS8r3lzFmF0lP52LwblCPbuFSO7nGIZoIcoU5NIm1ABrna0cJExE4Ay6l2Q==}
engines: {node: '>=6.9.0'}
@@ -1102,6 +1125,13 @@ packages:
peerDependencies:
'@babel/core': ^7.13.0
+ '@babel/plugin-proposal-async-generator-functions@7.20.7':
+ resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
+ engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead.
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-proposal-class-properties@7.18.6':
resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
engines: {node: '>=6.9.0'}
@@ -1115,6 +1145,19 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-proposal-export-default-from@7.25.7':
+ resolution: {integrity: sha512-Egdiuy7pLTyaPkIr6rItNyFVbblTmx3VgqY+72KiS9BzcA+SMyrS9zSumQeSANo8uE3Kax0ZUMkpNh0Q+mbNwg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-proposal-logical-assignment-operators@7.20.7':
+ resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==}
+ engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-logical-assignment-operators instead.
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-proposal-nullish-coalescing-operator@7.18.6':
resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
engines: {node: '>=6.9.0'}
@@ -1129,6 +1172,20 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-proposal-object-rest-spread@7.20.7':
+ resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
+ engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead.
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-proposal-optional-catch-binding@7.18.6':
+ resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
+ engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead.
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-proposal-optional-chaining@7.21.0':
resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
engines: {node: '>=6.9.0'}
@@ -1188,6 +1245,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-syntax-export-default-from@7.25.7':
+ resolution: {integrity: sha512-LRUCsC0YucSjabsmxx6yly8+Q/5mxKdp9gemlpR9ro3bfpcOQOXx/CHivs7QCbjgygd6uQ2GcRfHu1FVax/hgg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-syntax-export-namespace-from@7.8.3':
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
@@ -1199,6 +1262,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-syntax-flow@7.25.7':
+ resolution: {integrity: sha512-fyoj6/YdVtlv2ROig/J0fP7hh/wNO1MJGm1NR70Pg7jbkF+jOUL9joorqaCOQh06Y+LfgTagHzC8KqZ3MF782w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-syntax-import-assertions@7.22.5':
resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==}
engines: {node: '>=6.9.0'}
@@ -1389,6 +1458,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-flow-strip-types@7.25.7':
+ resolution: {integrity: sha512-q8Td2PPc6/6I73g96SreSUCKEcwMXCwcXSIAVTyTTN6CpJe0dMj8coxu1fg1T9vfBLi6Rsi6a4ECcFBbKabS5w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-for-of@7.22.15':
resolution: {integrity: sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==}
engines: {node: '>=6.9.0'}
@@ -1545,6 +1620,18 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-react-jsx-self@7.25.7':
+ resolution: {integrity: sha512-JD9MUnLbPL0WdVK8AWC7F7tTG2OS6u/AKKnsK+NdRhUiVdnzyR1S3kKQCaRLOiaULvUiqK6Z4JQE635VgtCFeg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-react-jsx-source@7.25.7':
+ resolution: {integrity: sha512-S/JXG/KrbIY06iyJPKfxr0qRxnhNOdkNXYBl/rmwgDd72cQLH9tEGkDm/yJPGvcSIUoikzfjMios9i+xT/uv9w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-react-jsx@7.22.15':
resolution: {integrity: sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==}
engines: {node: '>=6.9.0'}
@@ -1641,6 +1728,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/preset-flow@7.25.7':
+ resolution: {integrity: sha512-q2x3g0YHzo/Ohsr51KOYS/BtZMsvkzVd8qEyhZAyTatYdobfgXCuyppTqTuIhdq5kR/P3nyyVvZ6H5dMc4PnCQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/preset-modules@0.1.6-no-external-plugins':
resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==}
peerDependencies:
@@ -1658,6 +1751,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/register@7.25.7':
+ resolution: {integrity: sha512-qHTd2Rhn/rKhSUwdY6+n98FmwXN+N+zxSVx3zWqRe9INyvTpv+aQ5gDV2+43ACd3VtMBzPPljbb0gZb8u5ma6Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/regjsgen@0.8.0':
resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
@@ -1669,6 +1768,10 @@ packages:
resolution: {integrity: sha512-5F7SDGs1T72ZczbRwbGO9lQi0NLjQxzl6i4lJxLxfW9U5UluCSyEJeniWvnhl3/euNiqQVbo8zruhsDfid0esA==}
engines: {node: '>=6.9.0'}
+ '@babel/runtime@7.25.7':
+ resolution: {integrity: sha512-FjoyLe754PMiYsFaN5C94ttGiOmBNYTf6pLr4xXHAT5uctHb092PBszndLDR5XA/jghQvn4n7JMHl7dmTgbm9w==}
+ engines: {node: '>=6.9.0'}
+
'@babel/template@7.24.7':
resolution: {integrity: sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==}
engines: {node: '>=6.9.0'}
@@ -1812,6 +1915,9 @@ packages:
resolution: {integrity: sha512-2ecCT0/pmaMNVyMF7J1ZLFTfLnpnrHNQOGyIcbMBIepeqlE3jndjU023OdwwVLrLXyvfyelJ8K1iwAOvyEZxUw==}
engines: {node: '>= 10.0.0'}
+ '@coinbase/wallet-sdk@4.0.4':
+ resolution: {integrity: sha512-74c040CRnGhfRjr3ArnkAgud86erIqdkPHNt5HR1k9u97uTIZCJww9eGYT67Qf7gHPpGS/xW8Be1D4dvRm63FA==}
+
'@confio/ics23@0.6.8':
resolution: {integrity: sha512-wB6uo+3A50m0sW/EWcU64xpV/8wShZ6bMTa7pF8eYsTrSkQA7oLUIJcs/wb8g4y2Oyq701BaGiO6n/ak5WXO1w==}
@@ -1977,12 +2083,39 @@ packages:
'@dynamic-labs/cosmos-all@0.17.29':
resolution: {integrity: sha512-49lVLT9I2ckONnq5Z4Dy1G1LEGcXtKeU7pINcKFC21R0AdM9vWWkpRB3zLN+UsSMYObo7hdMMLyTjPxIt/Uy1Q==}
+ '@dynamic-labs/embedded-wallet-evm@3.2.0':
+ resolution: {integrity: sha512-wto5H/ThrRW5PfV6d4GsHsB8vgJXapFM9/6UD/XD2FC+Xk2apNilqX4lT7GVLVyplnIhCLDMD7T7ChNUFuevuA==}
+ peerDependencies:
+ viem: ^2.7.6
+
+ '@dynamic-labs/embedded-wallet-solana@3.2.0':
+ resolution: {integrity: sha512-CApgCybX9zErJBQ/NGokiJfwTDH1YSI7gUHeQEGtehpWIfWp7rCMFxKMtpC2AoOucmoAYMnzNqz3jDh25UV8fA==}
+
+ '@dynamic-labs/embedded-wallet@3.2.0':
+ resolution: {integrity: sha512-sfInjLpvF9wGtunmxly3q7Vuc7Wo3BuG9CPoA1TDi7d3cIsd0e/yHXKBiwVc1oKAyayugyMyxvjmLz7XRjJrVw==}
+
'@dynamic-labs/ethereum-all@0.17.29':
resolution: {integrity: sha512-vfOTM7UQD2bJIWcHX9+D5MftXKEB3/FQkp74jvpLfxy7RMSU9jEz8TyQiNFZ8e3MpELc9cSDkkTT4cizn53xFg==}
+ '@dynamic-labs/ethereum-core@3.2.0':
+ resolution: {integrity: sha512-J6I0iNZgXCxKFXjoarThmtJfMU4vkRsZUpKBZjcuApPwqmgLQK2zR4Q5ayZxAF3v+dkFgZ/zaVMFUd+mBS9EJA==}
+ peerDependencies:
+ '@dynamic-labs/logger': 3.2.0
+ '@dynamic-labs/rpc-providers': 3.2.0
+ '@dynamic-labs/types': 3.2.0
+ '@dynamic-labs/utils': 3.2.0
+ '@dynamic-labs/wallet-book': 3.2.0
+ '@dynamic-labs/wallet-connector-core': 3.2.0
+ viem: ^2.7.6
+
'@dynamic-labs/ethereum@0.17.29':
resolution: {integrity: sha512-1MFQRprLx1HrynF6cmui6OEb+/slgsiyXGy/Oa6q4xdfyLKE/tvkHGNUiADZrcR0gEqWFPjE49AQtRFPqCQbOw==}
+ '@dynamic-labs/ethereum@3.2.0':
+ resolution: {integrity: sha512-lHWrvHakWbkuUl6ORuGvgXTAk6xy9sur+q8/k5uwre1YgRzdCcs05iLMaQ5HnOJVg9wVKSdrn+cH2oVlhcssAg==}
+ peerDependencies:
+ viem: ^2.7.6
+
'@dynamic-labs/flow-all@0.17.29':
resolution: {integrity: sha512-9jNbGFZiEnBAJ3aos1F50Ll27mtVxOzEqtY0PM7HJkyqCQxvTDWUTztw44KU2vRTHqItQvqh1kaz6OwPvhW4LQ==}
@@ -1994,24 +2127,44 @@ packages:
peerDependencies:
react: ^17.0.2 || ^18.0.0
+ '@dynamic-labs/iconic@3.2.0':
+ resolution: {integrity: sha512-ckiCKz2h1OvwmKuXPVQMRCE/nHHC4XA8lvGAazer/yzyKaqA+fWNuSo9UFQ9gXpcB8gtefsS+VryCENSNqlokg==}
+ peerDependencies:
+ react: ^18.0.0
+ react-dom: ^18.0.0
+
'@dynamic-labs/keplr@0.17.29':
resolution: {integrity: sha512-/7vtPCPJwmr8GfV5wNx7c/0feVgcLuu/VbDuoTXgbDlW2yUcJW6YM1+Xllx4GtPV0PAB7xK1oXEzlg2sWNnEZQ==}
'@dynamic-labs/logger@0.17.29':
resolution: {integrity: sha512-/mCvYuDAoyDYNLUwdVpwAEa2hr4yG1y0RWeNLgBmtdIYGnrS7N/GQe7YeoZIXV2tOi6o6nNqWxkFK9XH5ah/EA==}
+ '@dynamic-labs/logger@3.2.0':
+ resolution: {integrity: sha512-nVE1tK+ZhN/+jT1SoTuiVtlnEGp4H77T44V7Wo68ccKt6AZg/NVvUKcyNzYI0V9gbn2JfOng4jAfsgoM0A0+jQ==}
+ peerDependencies:
+ eventemitter3: 5.0.1
+
'@dynamic-labs/magic@0.17.29':
resolution: {integrity: sha512-gK+K4uFhfrL6iGg//gv1ZRWYWNSDtNzTJ+d27302IqAWzzhSS6ldu/8MB1QdOaum4MQyChMZwkyZcVXaXGG/Qw==}
'@dynamic-labs/multi-wallet@0.17.29':
resolution: {integrity: sha512-HUz6uXwM9KavQkMKrrLQqB4DnfHpM2oS/PctxLq2Fjl47dHqlysBcBJ01s5TspP4DYjBjN4JNA1NHATYd5pbAg==}
+ '@dynamic-labs/multi-wallet@3.2.0':
+ resolution: {integrity: sha512-zgA4QPZzamZuvXx/PPras2n2xqXYGW5s5hcvhbNWT/+H3U0lxdl44N7ffuHTehNywlRt6ojE5thndaWRl7dNAg==}
+
'@dynamic-labs/myalgo@0.17.29':
resolution: {integrity: sha512-hbc1bCOkbfksnbbcSFSsNYZhY5VH3K2jVn2sQaaKT41QnxPkKPCWkr1v9LihfQlG8F35zwQ3czDNhV5cYSKkjg==}
'@dynamic-labs/rpc-providers@0.17.29':
resolution: {integrity: sha512-bKxAd5qo2NqkSkimaUStI50MyMfLBRw5P56GjEGi0Izs90w0YNYRUmGODKWG/vMOivY+Tufmk1H2kZ8nySsOeg==}
+ '@dynamic-labs/rpc-providers@3.2.0':
+ resolution: {integrity: sha512-3f5Vlk+HP4+TKgp06AaEh9pBNl+FeJlJSrYL43jR0Ynjj1FMUua61+v64PdQjiz/jl9I2UdgBntHbV002zmqHQ==}
+
+ '@dynamic-labs/sdk-api-core@0.0.535':
+ resolution: {integrity: sha512-G2ABKms2cnIKq3RgVa2kcEF750Hhjy18BMbkl9yOtYhXmZ4bWD5hop5Z4LDccIgo+9mLKXmoSOQ9HBwzzDCFqw==}
+
'@dynamic-labs/sdk-api@0.0.198':
resolution: {integrity: sha512-Zy7efeac2xLDylniGLMuSBvl/53u4aH+lFU6zs/oQMKWenrWyfDqIDZJTnfbFuPoUSPQwy2M5TxY7/WOSPZZRw==}
@@ -2021,33 +2174,67 @@ packages:
react: ^17.0.2 || ^18.0.0
react-dom: ^17.0.2 || ^18.0.0
+ '@dynamic-labs/sdk-react-core@3.2.0':
+ resolution: {integrity: sha512-r9T4kp0ionk1Zsq4xsZzygPf+DcScuQnayyxoJ3tEQ+znq5x7XTp0nnsm+2fqR64S54Sxm6TvMqKHSC2BWFEvQ==}
+ peerDependencies:
+ react: ^18.0.0
+ react-dom: ^18.0.0
+
'@dynamic-labs/sdk-react@0.17.29':
resolution: {integrity: sha512-XA7Vmfo/mf4lHD8ooZyHEXlpDxl6qSA3j9b2zQRrhmnL77TV0B0b+g/af3J9Yv+CdxgVEI/tolIJHjqeJAFidQ==}
'@dynamic-labs/solana-all@0.17.29':
resolution: {integrity: sha512-7vXRueXTvxydTUOfuaipj9Q0MV0DwMROmeeAuY3OfdXQAITR5n8pEB4IPj9cyQsUi5FxLjXUqwb80un1jjqZcQ==}
+ '@dynamic-labs/solana-core@3.2.0':
+ resolution: {integrity: sha512-4nIValY2hWTAmD5D8dv3rKZRdv8/XynFtE44BDeI8NeCZsqXbSN+HDB+ZftroL1j4gT5dVWBcgWkOGxSqvQGQQ==}
+ peerDependencies:
+ '@dynamic-labs/rpc-providers': 3.2.0
+ '@dynamic-labs/types': 3.2.0
+ '@dynamic-labs/utils': 3.2.0
+ '@dynamic-labs/wallet-book': 3.2.0
+ '@dynamic-labs/wallet-connector-core': 3.2.0
+ eventemitter3: 5.0.1
+
'@dynamic-labs/solana@0.17.29':
resolution: {integrity: sha512-6T+uzyjLYOwLjcEnDUvwSorvy4vQibhIjBAe4Y8m0SAB+duPujca6RuXXpPYBZKFuE0QsWrAi1FLGkSKP1Zt4w==}
+ '@dynamic-labs/solana@3.2.0':
+ resolution: {integrity: sha512-WITJzPktkSh7t4gDs4Zi7tRe2EDqBZLyNUTyRYB35FvOM2K3FDJm2jF9JnDpFxk2gZjA5JRWgDB81mOjZnbVKg==}
+
'@dynamic-labs/starknet-all@0.17.29':
resolution: {integrity: sha512-Rnv3cZgFSqZhqcFG6o0YM/KuSQ5rrJqthC8GAaSgJ2swUE6nQowZ6kCsGnWD3kczoED4nUTOn5siOK4UN5x30w==}
'@dynamic-labs/starknet@0.17.29':
resolution: {integrity: sha512-JUZVgry5y+5HoVE383EeNofPSjaBpPHAYHTb987c7qUMFOAQhehyOMBtp4HoNET7OCRlyOinD/AJxS98AErcNA==}
+ '@dynamic-labs/store@3.2.0':
+ resolution: {integrity: sha512-EskdCzTrsZ4nFFRzQqdFJ7w1VQ5x74gosLdpN43+K5gv2VUpuITjxW2DDggRFqygp/sSqpt6DH1RmDTR+8l5oA==}
+
'@dynamic-labs/types@0.17.29':
resolution: {integrity: sha512-XPkLNawULl22CLtjsFLTAz5mTsd4LZz7uZOOWUdfLC8XWd3APOTmjPZAXix3SqAXRHNDG2ds6+58yGDI6iz6mw==}
+ '@dynamic-labs/types@3.2.0':
+ resolution: {integrity: sha512-bv8OwuI9a7MMl1+NYUuimynzDMqBxe14QxdeIb87Bel91UO13z/O0bhW9ENZ7TOWmpvGraei5koKqQPqtoAIKw==}
+
'@dynamic-labs/utils@0.17.29':
resolution: {integrity: sha512-ciNVZQXz4oGtJYPXc/KOgK+Kpnh7DG8TYk06f7lRlqhWGUDoCoQjnQHOViOhOtu01/+8SfTG83ohXQhdVQ8Yjg==}
+ '@dynamic-labs/utils@3.2.0':
+ resolution: {integrity: sha512-VBxLpL6EMVeoPkSM42gaC6wBrGWHdzvbtTgOGm+/TWO8eCNX8mxG6NsF/DP+9MnWepqqpfY/y9CbZ77YEGDUWQ==}
+
'@dynamic-labs/wallet-book@0.17.29':
resolution: {integrity: sha512-DyQlPoIbyi2s4AvLRHYL4quG6+WR6cG6Tm9cmP5wwrdJ9hy8Kh5K2cSBhK5FYjoKfb2o+fq5fZfMHtDf8G/wmw==}
peerDependencies:
react: ^17.0.2 || ^18.0.0
react-dom: ^17.0.2 || ^18.0.0
+ '@dynamic-labs/wallet-book@3.2.0':
+ resolution: {integrity: sha512-D4Z1ggcZ5fwRLC5ZpE7pmF7aaR1CA2bNe8DiPasm+4qKiTogrQxh3H6Xiq30sYVx8rCQCMKBNikeyTflPw6CQA==}
+ peerDependencies:
+ react: ^18.0.0
+ react-dom: ^18.0.0
+
'@dynamic-labs/wallet-connector-core@0.17.29':
resolution: {integrity: sha512-A/8clm2K5HfDRSr+wNYDEBrSil9wwAtcvdn8Mk0uuIQTizQuknn+3MEsSxY5vlJeOBpTNcVOiM6KEckAsYDhJg==}
peerDependencies:
@@ -2056,6 +2243,22 @@ packages:
'@dynamic-labs/utils': 0.17.29
'@dynamic-labs/wallet-book': 0.17.29
+ '@dynamic-labs/wallet-connector-core@3.2.0':
+ resolution: {integrity: sha512-RP9Xfj1pMaAyn/fBDYRSelIqTYxyrglR+wwvHKMlgO+auWl/iNMCSqjLWP7kwM5tUbbDH8qO8S+frbZS6N0o/g==}
+ peerDependencies:
+ '@dynamic-labs/logger': 3.2.0
+ '@dynamic-labs/rpc-providers': 3.2.0
+ '@dynamic-labs/types': 3.2.0
+ '@dynamic-labs/utils': 3.2.0
+ '@dynamic-labs/wallet-book': 3.2.0
+ eventemitter3: 5.0.1
+
+ '@dynamic-labs/webauthn@3.2.0':
+ resolution: {integrity: sha512-HqTtjhGlAzGaqLpXYsBS00VO92aY3Weh3nsbl+jk++YQR7fK/waL6TQJLPGaizmASjBaPnWqnrPSNAqQNNWT0Q==}
+
+ '@emnapi/runtime@0.45.0':
+ resolution: {integrity: sha512-Txumi3td7J4A/xTTwlssKieHKTGl3j4A1tglBx72auZ49YK7ePY6XZricgIg9mnZT4xPfA+UPCUdnhRuEFDL+w==}
+
'@emotion/babel-plugin@11.12.0':
resolution: {integrity: sha512-y2WQb+oP8Jqvvclh8Q55gLUyb7UFvgv7eJfsj7td5TToBrIUtPay2kMrZi4xjq9qw2vD0ZR5fSho0yqoFgX7Rw==}
@@ -2907,6 +3110,12 @@ packages:
engines: {node: '>=6'}
hasBin: true
+ '@hapi/hoek@9.3.0':
+ resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==}
+
+ '@hapi/topo@5.1.0':
+ resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==}
+
'@hcaptcha/react-hcaptcha@1.4.4':
resolution: {integrity: sha512-Aen217LDnf5ywbPSwBG5CsoqBLIHIAS9lhj3zQjXJuO13doQ6/ubkCWNuY8jmwYLefoFt3V3MrZmCdKDaFoTuQ==}
peerDependencies:
@@ -2937,6 +3146,22 @@ packages:
peerDependencies:
react: '>= 16'
+ '@hpke/chacha20poly1305@1.3.1':
+ resolution: {integrity: sha512-kX8D5y04o+SxGJSJMA4r3+YtxOSHir7QxRFuANCVB4hr7Dm7oVwce9iVUQJtOPRSc4mddFlRFq4SQyy2mI4KQA==}
+ engines: {node: '>=16.0.0'}
+
+ '@hpke/core@1.3.1':
+ resolution: {integrity: sha512-ilWdCYbaTyvQGrMMi5LKcy320/sleGdSR2eKo8B1QOEEWi5EZT+k0B/K5o51AcPLJWaLiY1WFJhSIynTKGI35g==}
+ engines: {node: '>=16.0.0'}
+
+ '@hpke/dhkem-x25519@1.3.1':
+ resolution: {integrity: sha512-BR0s6GYTbCufMRnG7byuRGvtby61kc3od1AaI+LJDkgmmLdsEcr7mk8cfbMncse1PlHVWLoFcMX67ATyGoDwcw==}
+ engines: {node: '>=16.0.0'}
+
+ '@hpke/dhkem-x448@1.3.1':
+ resolution: {integrity: sha512-xsy/1nfbi+pbWUZtQAx4uXj9IJ5Db8QAfuT8m0JZq3CZbWy/3qn9WV6NUFdg3pqNW7WEK99yirHyaIXBfqTOIA==}
+ engines: {node: '>=16.0.0'}
+
'@humanwhocodes/config-array@0.11.14':
resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==}
engines: {node: '>=10.10.0'}
@@ -2954,6 +3179,119 @@ packages:
resolution: {integrity: sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==}
engines: {node: '>=6.9.0'}
+ '@img/sharp-darwin-arm64@0.33.2':
+ resolution: {integrity: sha512-itHBs1rPmsmGF9p4qRe++CzCgd+kFYktnsoR1sbIAfsRMrJZau0Tt1AH9KVnufc2/tU02Gf6Ibujx+15qRE03w==}
+ engines: {glibc: '>=2.26', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@img/sharp-darwin-x64@0.33.2':
+ resolution: {integrity: sha512-/rK/69Rrp9x5kaWBjVN07KixZanRr+W1OiyKdXcbjQD6KbW+obaTeBBtLUAtbBsnlTTmWthw99xqoOS7SsySDg==}
+ engines: {glibc: '>=2.26', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ cpu: [x64]
+ os: [darwin]
+
+ '@img/sharp-libvips-darwin-arm64@1.0.1':
+ resolution: {integrity: sha512-kQyrSNd6lmBV7O0BUiyu/OEw9yeNGFbQhbxswS1i6rMDwBBSX+e+rPzu3S+MwAiGU3HdLze3PanQ4Xkfemgzcw==}
+ engines: {macos: '>=11', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@img/sharp-libvips-darwin-x64@1.0.1':
+ resolution: {integrity: sha512-eVU/JYLPVjhhrd8Tk6gosl5pVlvsqiFlt50wotCvdkFGf+mDNBJxMh+bvav+Wt3EBnNZWq8Sp2I7XfSjm8siog==}
+ engines: {macos: '>=10.13', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ cpu: [x64]
+ os: [darwin]
+
+ '@img/sharp-libvips-linux-arm64@1.0.1':
+ resolution: {integrity: sha512-bnGG+MJjdX70mAQcSLxgeJco11G+MxTz+ebxlz8Y3dxyeb3Nkl7LgLI0mXupoO+u1wRNx/iRj5yHtzA4sde1yA==}
+ engines: {glibc: '>=2.26', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@img/sharp-libvips-linux-arm@1.0.1':
+ resolution: {integrity: sha512-FtdMvR4R99FTsD53IA3LxYGghQ82t3yt0ZQ93WMZ2xV3dqrb0E8zq4VHaTOuLEAuA83oDawHV3fd+BsAPadHIQ==}
+ engines: {glibc: '>=2.28', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ cpu: [arm]
+ os: [linux]
+
+ '@img/sharp-libvips-linux-s390x@1.0.1':
+ resolution: {integrity: sha512-3+rzfAR1YpMOeA2zZNp+aYEzGNWK4zF3+sdMxuCS3ey9HhDbJ66w6hDSHDMoap32DueFwhhs3vwooAB2MaK4XQ==}
+ engines: {glibc: '>=2.28', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ cpu: [s390x]
+ os: [linux]
+
+ '@img/sharp-libvips-linux-x64@1.0.1':
+ resolution: {integrity: sha512-3NR1mxFsaSgMMzz1bAnnKbSAI+lHXVTqAHgc1bgzjHuXjo4hlscpUxc0vFSAPKI3yuzdzcZOkq7nDPrP2F8Jgw==}
+ engines: {glibc: '>=2.26', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ cpu: [x64]
+ os: [linux]
+
+ '@img/sharp-libvips-linuxmusl-arm64@1.0.1':
+ resolution: {integrity: sha512-5aBRcjHDG/T6jwC3Edl3lP8nl9U2Yo8+oTl5drd1dh9Z1EBfzUKAJFUDTDisDjUwc7N4AjnPGfCA3jl3hY8uDg==}
+ engines: {musl: '>=1.2.2', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@img/sharp-libvips-linuxmusl-x64@1.0.1':
+ resolution: {integrity: sha512-dcT7inI9DBFK6ovfeWRe3hG30h51cBAP5JXlZfx6pzc/Mnf9HFCQDLtYf4MCBjxaaTfjCCjkBxcy3XzOAo5txw==}
+ engines: {musl: '>=1.2.2', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ cpu: [x64]
+ os: [linux]
+
+ '@img/sharp-linux-arm64@0.33.2':
+ resolution: {integrity: sha512-pz0NNo882vVfqJ0yNInuG9YH71smP4gRSdeL09ukC2YLE6ZyZePAlWKEHgAzJGTiOh8Qkaov6mMIMlEhmLdKew==}
+ engines: {glibc: '>=2.26', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@img/sharp-linux-arm@0.33.2':
+ resolution: {integrity: sha512-Fndk/4Zq3vAc4G/qyfXASbS3HBZbKrlnKZLEJzPLrXoJuipFNNwTes71+Ki1hwYW5lch26niRYoZFAtZVf3EGA==}
+ engines: {glibc: '>=2.28', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ cpu: [arm]
+ os: [linux]
+
+ '@img/sharp-linux-s390x@0.33.2':
+ resolution: {integrity: sha512-MBoInDXDppMfhSzbMmOQtGfloVAflS2rP1qPcUIiITMi36Mm5YR7r0ASND99razjQUpHTzjrU1flO76hKvP5RA==}
+ engines: {glibc: '>=2.28', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ cpu: [s390x]
+ os: [linux]
+
+ '@img/sharp-linux-x64@0.33.2':
+ resolution: {integrity: sha512-xUT82H5IbXewKkeF5aiooajoO1tQV4PnKfS/OZtb5DDdxS/FCI/uXTVZ35GQ97RZXsycojz/AJ0asoz6p2/H/A==}
+ engines: {glibc: '>=2.26', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ cpu: [x64]
+ os: [linux]
+
+ '@img/sharp-linuxmusl-arm64@0.33.2':
+ resolution: {integrity: sha512-F+0z8JCu/UnMzg8IYW1TMeiViIWBVg7IWP6nE0p5S5EPQxlLd76c8jYemG21X99UzFwgkRo5yz2DS+zbrnxZeA==}
+ engines: {musl: '>=1.2.2', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@img/sharp-linuxmusl-x64@0.33.2':
+ resolution: {integrity: sha512-+ZLE3SQmSL+Fn1gmSaM8uFusW5Y3J9VOf+wMGNnTtJUMUxFhv+P4UPaYEYT8tqnyYVaOVGgMN/zsOxn9pSsO2A==}
+ engines: {musl: '>=1.2.2', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ cpu: [x64]
+ os: [linux]
+
+ '@img/sharp-wasm32@0.33.2':
+ resolution: {integrity: sha512-fLbTaESVKuQcpm8ffgBD7jLb/CQLcATju/jxtTXR1XCLwbOQt+OL5zPHSDMmp2JZIeq82e18yE0Vv7zh6+6BfQ==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ cpu: [wasm32]
+
+ '@img/sharp-win32-ia32@0.33.2':
+ resolution: {integrity: sha512-okBpql96hIGuZ4lN3+nsAjGeggxKm7hIRu9zyec0lnfB8E7Z6p95BuRZzDDXZOl2e8UmR4RhYt631i7mfmKU8g==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ cpu: [ia32]
+ os: [win32]
+
+ '@img/sharp-win32-x64@0.33.2':
+ resolution: {integrity: sha512-E4magOks77DK47FwHUIGH0RYWSgRBfGdK56kIHSVeB9uIS4pPFr4N2kIVsXdQQo4LzOsENKV5KAhRlRL7eMAdg==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ cpu: [x64]
+ os: [win32]
+
'@ioredis/commands@1.2.0':
resolution: {integrity: sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg==}
@@ -2980,6 +3318,10 @@ packages:
'@isaacs/string-locale-compare@1.1.0':
resolution: {integrity: sha512-SQ7Kzhh9+D+ZW9MA0zkYv3VXhIDNx+LzM6EJ+/65I3QY+enU6Itte7E5XX7EWrqLW2FN4n06GWzBnPoC3th2aQ==}
+ '@isaacs/ttlcache@1.4.1':
+ resolution: {integrity: sha512-RQgQ4uQ+pLbqXfOmieB91ejmLwvSgv9nLx6sT6sD83s7umBypgg+OIBOBbEUiJXrfpnp9j0mRhYYdzp9uqq3lA==}
+ engines: {node: '>=12'}
+
'@istanbuljs/load-nyc-config@1.1.0':
resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==}
engines: {node: '>=8'}
@@ -3018,6 +3360,10 @@ packages:
node-notifier:
optional: true
+ '@jest/create-cache-key-function@29.7.0':
+ resolution: {integrity: sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
'@jest/environment@27.5.1':
resolution: {integrity: sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
@@ -3112,6 +3458,10 @@ packages:
resolution: {integrity: sha512-8thgRSiXUqtr/pPGY/OsyHuMjGyhVnWrFAwoxmIemlBuiMyU1WFs0tXoNxzcr4A4uErs/ABre76SGmrr5ab/AA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ '@jest/types@26.6.2':
+ resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==}
+ engines: {node: '>= 10.14.2'}
+
'@jest/types@27.5.1':
resolution: {integrity: sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
@@ -3673,6 +4023,9 @@ packages:
'@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1':
resolution: {integrity: sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==}
+ '@noble/ciphers@0.5.3':
+ resolution: {integrity: sha512-B0+6IIHiqEs3BPMT0hcRmHvEj2QHOLu+uwt+tqDDeVd0oyVzh7BPrDcPjRnV1PV/5LaknXJJQvOuRGR0zQJz+w==}
+
'@noble/curves@1.1.0':
resolution: {integrity: sha512-091oBExgENk/kGj3AZmtBDMpxQPDtxQABR2B9lb1JbVTs6ytdzZNwvhxQ4MWasRNEzlbEH8jCWFCwhF/Obj5AA==}
@@ -4581,6 +4934,104 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+ '@react-native-community/cli-clean@13.6.4':
+ resolution: {integrity: sha512-nS1BJ+2Z+aLmqePxB4AYgJ+C/bgQt02xAgSYtCUv+lneRBGhL2tHRrK8/Iolp0y+yQoUtHHf4txYi90zGXLVfw==}
+
+ '@react-native-community/cli-config@13.6.4':
+ resolution: {integrity: sha512-GGK415WoTx1R9FXtfb/cTnan9JIWwSm+a5UCuFd6+suzS0oIt1Md1vCzjNh6W1CK3b43rZC2e+3ZU7Ljd7YtyQ==}
+
+ '@react-native-community/cli-debugger-ui@13.6.4':
+ resolution: {integrity: sha512-9Gs31s6tA1kuEo69ay9qLgM3x2gsN/RI994DCUKnFSW+qSusQJyyrmfllR2mGU3Wl1W09/nYpIg87W9JPf5y4A==}
+
+ '@react-native-community/cli-doctor@13.6.4':
+ resolution: {integrity: sha512-lWOXCISH/cHtLvO0cWTr+IPSzA54FewVOw7MoCMEvWusH+1n7c3hXTAve78mLozGQ7iuUufkHFWwKf3dzOkflQ==}
+
+ '@react-native-community/cli-hermes@13.6.4':
+ resolution: {integrity: sha512-VIAufA/2wTccbMYBT9o+mQs9baOEpTxCiIdWeVdkPWKzIwtKsLpDZJlUqj4r4rI66mwjFyQ60PhwSzEJ2ApFeQ==}
+
+ '@react-native-community/cli-platform-android@13.6.4':
+ resolution: {integrity: sha512-WhknYwIobKKCqaGCN3BzZEQHTbaZTDiGvcXzevvN867ldfaGdtbH0DVqNunbPoV1RNzeV9qKoQHFdWBkg83tpg==}
+
+ '@react-native-community/cli-platform-apple@13.6.4':
+ resolution: {integrity: sha512-TLBiotdIz0veLbmvNQIdUv9fkBx7m34ANGYqr5nH7TFxdmey+Z+omoBqG/HGpvyR7d0AY+kZzzV4k+HkYHM/aQ==}
+
+ '@react-native-community/cli-platform-ios@13.6.4':
+ resolution: {integrity: sha512-8Dlva8RY+MY5nhWAj6V7voG3+JOEzDTJmD0FHqL+4p0srvr9v7IEVcxfw5lKBDIUNd0OMAHNevGA+cyz1J60jg==}
+
+ '@react-native-community/cli-server-api@13.6.4':
+ resolution: {integrity: sha512-D2qSuYCFwrrUJUM0SDc9l3lEhU02yjf+9Peri/xhspzAhALnsf6Z/H7BCjddMV42g9/eY33LqiGyN5chr83a+g==}
+
+ '@react-native-community/cli-tools@13.6.4':
+ resolution: {integrity: sha512-N4oHLLbeTdg8opqJozjClmuTfazo1Mt+oxU7mr7m45VCsFgBqTF70Uwad289TM/3l44PP679NRMAHVYqpIRYtQ==}
+
+ '@react-native-community/cli-types@13.6.4':
+ resolution: {integrity: sha512-NxGCNs4eYtVC8x0wj0jJ/MZLRy8C+B9l8lY8kShuAcvWTv5JXRqmXjg8uK1aA+xikPh0maq4cc/zLw1roroY/A==}
+
+ '@react-native-community/cli@13.6.4':
+ resolution: {integrity: sha512-V7rt2N5JY7M4dJFgdNfR164r3hZdR/Z7V54dv85TFQHRbdwF4QrkG+GeagAU54qrkK/OU8OH3AF2+mKuiNWpGA==}
+ engines: {node: '>=18'}
+ hasBin: true
+
+ '@react-native/assets-registry@0.74.81':
+ resolution: {integrity: sha512-ms+D6pJ6l30epm53pwnAislW79LEUHJxWfe1Cu0LWyTTBlg1OFoqXfB3eIbpe4WyH3nrlkQAh0yyk4huT2mCvw==}
+ engines: {node: '>=18'}
+
+ '@react-native/babel-plugin-codegen@0.74.81':
+ resolution: {integrity: sha512-Bj6g5/xkLMBAdC6665TbD3uCKCQSmLQpGv3gyqya/ydZpv3dDmDXfkGmO4fqTwEMunzu09Sk55st2ipmuXAaAg==}
+ engines: {node: '>=18'}
+
+ '@react-native/babel-preset@0.74.81':
+ resolution: {integrity: sha512-H80B3Y3lBBVC4x9tceTEQq/04lx01gW6ajWCcVbd7sHvGEAxfMFEZUmVZr0451Cafn02wVnDJ8psto1F+0w5lw==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@babel/core': '*'
+
+ '@react-native/codegen@0.74.81':
+ resolution: {integrity: sha512-hhXo4ccv2lYWaJrZDsdbRTZ5SzSOdyZ0MY6YXwf3xEFLuSunbUMu17Rz5LXemKXlpVx4KEgJ/TDc2pPVaRPZgA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@babel/preset-env': ^7.1.6
+
+ '@react-native/community-cli-plugin@0.74.81':
+ resolution: {integrity: sha512-ezPOwPxbDgrBZLJJMcXryXJXjv3VWt+Mt4jRZiEtvy6pAoi2owSH0b178T5cEZaWsxQN0BbyJ7F/xJsNiF4z0Q==}
+ engines: {node: '>=18'}
+
+ '@react-native/debugger-frontend@0.74.81':
+ resolution: {integrity: sha512-HCYF1/88AfixG75558HkNh9wcvGweRaSZGBA71KoZj03umXM8XJy0/ZpacGOml2Fwiqpil72gi6uU+rypcc/vw==}
+ engines: {node: '>=18'}
+
+ '@react-native/dev-middleware@0.74.81':
+ resolution: {integrity: sha512-x2IpvUJN1LJE0WmPsSfQIbQaa9xwH+2VDFOUrzuO9cbQap8rNfZpcvVNbrZgrlKbgS4LXbbsj6VSL8b6SnMKMA==}
+ engines: {node: '>=18'}
+
+ '@react-native/gradle-plugin@0.74.81':
+ resolution: {integrity: sha512-7YQ4TLnqfe2kplWWzBWO6k0rPSrWEbuEiRXSJNZQCtCk+t2YX985G62p/9jWm3sGLN4UTcpDXaFNTTPBvlycoQ==}
+ engines: {node: '>=18'}
+
+ '@react-native/js-polyfills@0.74.81':
+ resolution: {integrity: sha512-o4MiR+/kkHoeoQ/zPwt81LnTm6pqdg0wOhU7S7vIZUqzJ7YUpnpaAvF+/z7HzUOPudnavoCN0wvcZPe/AMEyCA==}
+ engines: {node: '>=18'}
+
+ '@react-native/metro-babel-transformer@0.74.81':
+ resolution: {integrity: sha512-PVcMjj23poAK6Uemflz4MIJdEpONpjqF7JASNqqQkY6wfDdaIiZSNk8EBCWKb0t7nKqhMvtTq11DMzYJ0JFITg==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@babel/core': '*'
+
+ '@react-native/normalize-colors@0.74.81':
+ resolution: {integrity: sha512-g3YvkLO7UsSWiDfYAU+gLhRHtEpUyz732lZB+N8IlLXc5MnfXHC8GKneDGY3Mh52I3gBrs20o37D5viQX9E1CA==}
+
+ '@react-native/virtualized-lists@0.74.81':
+ resolution: {integrity: sha512-5jF9S10Ug2Wl+L/0+O8WmbC726sMMX8jk/1JrvDDK+0DRLMobfjLc1L26fONlVBF7lE5ctqvKZ9TlKdhPTNOZg==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/react': ^18.2.6
+ react: '*'
+ react-native: '*'
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@react-stately/utils@3.10.3':
resolution: {integrity: sha512-moClv7MlVSHpbYtQIkm0Cx+on8Pgt1XqtPx6fy9rQFb2DNc9u1G3AUVnqA17buOkH1vLxAtX4MedlxMWyRCYYA==}
peerDependencies:
@@ -4605,6 +5056,10 @@ packages:
peerDependencies:
viem: ~2.17.4
+ '@rnx-kit/chromium-edge-launcher@1.0.0':
+ resolution: {integrity: sha512-lzD84av1ZQhYUS+jsGqJiCMaJO2dn9u+RTT9n9q6D3SaKVwWqv+7AoRKqBu19bkwyE+iFRl1ymr40QS90jVFYg==}
+ engines: {node: '>=14.15'}
+
'@rollup/plugin-babel@5.3.1':
resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==}
engines: {node: '>= 10.0.0'}
@@ -4794,6 +5249,15 @@ packages:
'@shikijs/core@1.12.1':
resolution: {integrity: sha512-biCz/mnkMktImI6hMfMX3H9kOeqsInxWEyCHbSlL8C/2TR1FqfmGxTLRNwYCKsyCyxWLbB8rEqXRVZuyxuLFmA==}
+ '@sideway/address@4.1.5':
+ resolution: {integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==}
+
+ '@sideway/formula@3.0.1':
+ resolution: {integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==}
+
+ '@sideway/pinpoint@2.0.0':
+ resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==}
+
'@sigstore/bundle@1.1.0':
resolution: {integrity: sha512-PFutXEy0SmQxYI4texPw3dd2KewuNqv7OuK1ZFtY2fM754yhvG2KdgwIhRnoEE2uHdtdGNQ8s0lb94dW9sELog==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
@@ -4816,6 +5280,12 @@ packages:
'@simplewebauthn/browser@8.3.7':
resolution: {integrity: sha512-ZtRf+pUEgOCvjrYsbMsJfiHOdKcrSZt2zrAnIIpfmA06r0FxBovFYq0rJ171soZbe13KmWzAoLKjSxVW7KxCdQ==}
+ '@simplewebauthn/browser@9.0.1':
+ resolution: {integrity: sha512-wD2WpbkaEP4170s13/HUxPcAV5y4ZXaKo1TfNklS5zDefPinIgXOpgz1kpEvobAsaLPa2KeH7AKKX/od1mrBJw==}
+
+ '@simplewebauthn/types@9.0.1':
+ resolution: {integrity: sha512-tGSRP1QvsAvsJmnOlRQyw/mvK9gnPtjEc5fg2+m8n+QUa+D7rvrKkOYyfpy42GTs90X3RDOnqJgfHt+qO67/+w==}
+
'@simplewebauthn/typescript-types@7.4.0':
resolution: {integrity: sha512-8/ZjHeUPe210Bt5oyaOIGx4h8lHdsQs19BiOT44gi/jBEgK7uBGA0Fy7NRsyh777al3m6WM0mBf0UR7xd4R7WQ==}
deprecated: This package has been renamed to @simplewebauthn/types. Please install @simplewebauthn/types instead to ensure you receive future updates.
@@ -4845,14 +5315,104 @@ packages:
'@socket.io/component-emitter@3.1.0':
resolution: {integrity: sha512-+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg==}
+ '@solana/buffer-layout-utils@0.2.0':
+ resolution: {integrity: sha512-szG4sxgJGktbuZYDg2FfNmkMi0DYQoVjN2h7ta1W1hPrwzarcFLBq9UpX1UjNXsNpT9dn+chgprtWGioUAr4/g==}
+ engines: {node: '>= 10'}
+
'@solana/buffer-layout@4.0.1':
resolution: {integrity: sha512-E1ImOIAD1tBZFRdjeM4/pzTiTApC0AOBGwyAMS4fwIodCWArzJ3DWdoh8cKxeFM2fElkxBh2Aqts1BPC373rHA==}
engines: {node: '>=5.10'}
+ '@solana/codecs-core@2.0.0-preview.2':
+ resolution: {integrity: sha512-gLhCJXieSCrAU7acUJjbXl+IbGnqovvxQLlimztPoGgfLQ1wFYu+XJswrEVQqknZYK1pgxpxH3rZ+OKFs0ndQg==}
+
+ '@solana/codecs-core@2.0.0-rc.1':
+ resolution: {integrity: sha512-bauxqMfSs8EHD0JKESaNmNuNvkvHSuN3bbWAF5RjOfDu2PugxHrvRebmYauvSumZ3cTfQ4HJJX6PG5rN852qyQ==}
+ peerDependencies:
+ typescript: '>=5'
+
+ '@solana/codecs-data-structures@2.0.0-preview.2':
+ resolution: {integrity: sha512-Xf5vIfromOZo94Q8HbR04TbgTwzigqrKII0GjYr21K7rb3nba4hUW2ir8kguY7HWFBcjHGlU5x3MevKBOLp3Zg==}
+
+ '@solana/codecs-data-structures@2.0.0-rc.1':
+ resolution: {integrity: sha512-rinCv0RrAVJ9rE/rmaibWJQxMwC5lSaORSZuwjopSUE6T0nb/MVg6Z1siNCXhh/HFTOg0l8bNvZHgBcN/yvXog==}
+ peerDependencies:
+ typescript: '>=5'
+
+ '@solana/codecs-numbers@2.0.0-preview.2':
+ resolution: {integrity: sha512-aLZnDTf43z4qOnpTcDsUVy1Ci9im1Md8thWipSWbE+WM9ojZAx528oAql+Cv8M8N+6ALKwgVRhPZkto6E59ARw==}
+
+ '@solana/codecs-numbers@2.0.0-rc.1':
+ resolution: {integrity: sha512-J5i5mOkvukXn8E3Z7sGIPxsThRCgSdgTWJDQeZvucQ9PT6Y3HiVXJ0pcWiOWAoQ3RX8e/f4I3IC+wE6pZiJzDQ==}
+ peerDependencies:
+ typescript: '>=5'
+
+ '@solana/codecs-strings@2.0.0-preview.2':
+ resolution: {integrity: sha512-EgBwY+lIaHHgMJIqVOGHfIfpdmmUDNoNO/GAUGeFPf+q0dF+DtwhJPEMShhzh64X2MeCZcmSO6Kinx0Bvmmz2g==}
+ peerDependencies:
+ fastestsmallesttextencoderdecoder: ^1.0.22
+
+ '@solana/codecs-strings@2.0.0-rc.1':
+ resolution: {integrity: sha512-9/wPhw8TbGRTt6mHC4Zz1RqOnuPTqq1Nb4EyuvpZ39GW6O2t2Q7Q0XxiB3+BdoEjwA2XgPw6e2iRfvYgqty44g==}
+ peerDependencies:
+ fastestsmallesttextencoderdecoder: ^1.0.22
+ typescript: '>=5'
+
+ '@solana/codecs@2.0.0-preview.2':
+ resolution: {integrity: sha512-4HHzCD5+pOSmSB71X6w9ptweV48Zj1Vqhe732+pcAQ2cMNnN0gMPMdDq7j3YwaZDZ7yrILVV/3+HTnfT77t2yA==}
+
+ '@solana/codecs@2.0.0-rc.1':
+ resolution: {integrity: sha512-qxoR7VybNJixV51L0G1RD2boZTcxmwUWnKCaJJExQ5qNKwbpSyDdWfFJfM5JhGyKe9DnPVOZB+JHWXnpbZBqrQ==}
+ peerDependencies:
+ typescript: '>=5'
+
+ '@solana/errors@2.0.0-preview.2':
+ resolution: {integrity: sha512-H2DZ1l3iYF5Rp5pPbJpmmtCauWeQXRJapkDg8epQ8BJ7cA2Ut/QEtC3CMmw/iMTcuS6uemFNLcWvlOfoQhvQuA==}
+ hasBin: true
+
+ '@solana/errors@2.0.0-rc.1':
+ resolution: {integrity: sha512-ejNvQ2oJ7+bcFAYWj225lyRkHnixuAeb7RQCixm+5mH4n1IA4Qya/9Bmfy5RAAHQzxK43clu3kZmL5eF9VGtYQ==}
+ hasBin: true
+ peerDependencies:
+ typescript: '>=5'
+
+ '@solana/options@2.0.0-preview.2':
+ resolution: {integrity: sha512-FAHqEeH0cVsUOTzjl5OfUBw2cyT8d5Oekx4xcn5hn+NyPAfQJgM3CEThzgRD6Q/4mM5pVUnND3oK/Mt1RzSE/w==}
+
+ '@solana/options@2.0.0-rc.1':
+ resolution: {integrity: sha512-mLUcR9mZ3qfHlmMnREdIFPf9dpMc/Bl66tLSOOWxw4ml5xMT2ohFn7WGqoKcu/UHkT9CrC6+amEdqCNvUqI7AA==}
+ peerDependencies:
+ typescript: '>=5'
+
+ '@solana/spl-token-group@0.0.4':
+ resolution: {integrity: sha512-7+80nrEMdUKlK37V6kOe024+T7J4nNss0F8LQ9OOPYdWCCfJmsGUzVx2W3oeizZR4IHM6N4yC9v1Xqwc3BTPWw==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ '@solana/web3.js': ^1.91.6
+
+ '@solana/spl-token-metadata@0.1.5':
+ resolution: {integrity: sha512-DSBlo7vjuLe/xvNn75OKKndDBkFxlqjLdWlq6rf40StnrhRn7TDntHGLZpry1cf3uzQFShqeLROGNPAJwvkPnA==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ '@solana/web3.js': ^1.95.3
+
+ '@solana/spl-token@0.4.6':
+ resolution: {integrity: sha512-1nCnUqfHVtdguFciVWaY/RKcQz1IF4b31jnKgAmjU9QVN1q7dRUkTEWJZgTYIEtsULjVnC9jRqlhgGN39WbKKA==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ '@solana/web3.js': ^1.91.6
+
+ '@solana/spl-type-length-value@0.1.0':
+ resolution: {integrity: sha512-JBMGB0oR4lPttOZ5XiUGyvylwLQjt1CPJa6qQ5oM+MBCndfjz2TKKkw0eATlLLcYmq1jBVsNlJ2cD6ns2GR7lA==}
+ engines: {node: '>=16'}
+
'@solana/web3.js@1.70.1':
resolution: {integrity: sha512-AnaqCF1cJ3w7d0yhvLGAKAcRI+n5o+ursQihhoTe4cUh8/9d4gbT73SoHYElS7e67OtAgLmSfbcC5hcOAgdvnQ==}
engines: {node: '>=12.20.0'}
+ '@solana/web3.js@1.92.1':
+ resolution: {integrity: sha512-72hytgOHfJLbvKT0+HRuFUhxxZpCnlo4zFDt37UHPel1DJbgqGOWo3xUf3VEPRWBvSRv0EH15g8MGatdj1PO9g==}
+
'@solana/web3.js@1.95.1':
resolution: {integrity: sha512-mRX/AjV6QbiOXpWcy5Rz1ZWEH2lVkwO7T0pcv9t97ACpv3/i3tPiqXwk0JIZgSR3wOSTiT26JfygnJH2ulS6dQ==}
@@ -5192,6 +5752,48 @@ packages:
resolution: {integrity: sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ '@turnkey/api-key-stamper@0.4.1':
+ resolution: {integrity: sha512-9gKvlc2ll3u56qSnEnYRaUaAxxVGWqeDnQiFm+x0PSK6hdpyhDzmHuN+5YA6DfkY6awZTpv1ealUJKFSfPMMUQ==}
+ engines: {node: '>=18.0.0'}
+
+ '@turnkey/crypto@0.2.1':
+ resolution: {integrity: sha512-+iRRe7Uo1G1gnE9H9VndCMOpUZ/LKXC7Zj3ouJFNQQXt5Tl0jrRnTL3k4/1jR09phcezBRGRWeannN9cmWW+Pw==}
+ engines: {node: '>=18.0.0'}
+
+ '@turnkey/encoding@0.2.1':
+ resolution: {integrity: sha512-9GgsbW/fa5PMhLbg4URRCwzLhvfwp6JXkPUGvXlPJxAqNhJeFrZNEJUhuz3pmHFxj5unLrHaSXjWS7Q/fi6x2w==}
+ engines: {node: '>=18.0.0'}
+
+ '@turnkey/http@2.12.2':
+ resolution: {integrity: sha512-6m6yKO68Kn+bdZuW+wqrIBRek+UyMSt/LIU648PbGDwWJqDi7WidNv42miU/2yRHei2xdfvw0yO6wr+theLORA==}
+ engines: {node: '>=16.0.0'}
+
+ '@turnkey/iframe-stamper@2.0.0':
+ resolution: {integrity: sha512-14IPfloVCV3ngoxsy3KoEUbEtYYxPU5H6T4WcNzY8Z67A1NJZfipk6pTaN5h3efkUm208G2TvDd63sZOdbyuxQ==}
+ engines: {node: '>=18.0.0'}
+
+ '@turnkey/sdk-browser@1.2.2':
+ resolution: {integrity: sha512-T/QJKcEVL57EpJni/SNF3z3K52qxdjEnC0ZFE+J2DiuMCfKQWPC7spJBSdSXtlMrgfn1DbpEG60zz89yStppVQ==}
+ engines: {node: '>=18.0.0'}
+
+ '@turnkey/sdk-server@1.2.2':
+ resolution: {integrity: sha512-PEcybyEvmK85ibOtF1z8ZNFHOwE+vKcXjjEPdPYu4Yr167UQ8iI/hQdqqxb/dkpp2nsD+EhuN/nCllykhiSVxQ==}
+ engines: {node: '>=18.0.0'}
+
+ '@turnkey/solana@0.3.9':
+ resolution: {integrity: sha512-ivdq6u8WYXUktjU33IrjVq71PUS7yYqpx7HgZh2fgIEZlm3mgwAi8O409H2pEZanvTCtXa0d1aaYULqIexLxEw==}
+ engines: {node: '>=18.0.0'}
+
+ '@turnkey/viem@0.4.26':
+ resolution: {integrity: sha512-r8BZrvtfklRVD/GD5sfODLMlDAHyugrk52CQZm1q8FMV3hSIRezrV5tOD6B5z/nm5cgXMmwY88He6eC217eY5g==}
+ engines: {node: '>=18.0.0'}
+ peerDependencies:
+ viem: ^1.16.6 || ^2.1.1
+
+ '@turnkey/webauthn-stamper@0.5.0':
+ resolution: {integrity: sha512-iUbTUwD4f4ibdLy5PWWb7ITEz4S4VAP9/mNjFhoRY3cKVVTDfmykrVTKjPOIHWzDgAmLtgrLvySIIC9ZBVENBw==}
+ engines: {node: '>=18.0.0'}
+
'@twind/core@1.1.3':
resolution: {integrity: sha512-/B/aNFerMb2IeyjSJy3SJxqVxhrT77gBDknLMiZqXIRr4vNJqiuhx7KqUSRzDCwUmyGuogkamz+aOLzN6MeSLw==}
engines: {node: '>=14.15.0'}
@@ -5349,6 +5951,9 @@ packages:
'@types/node@12.20.55':
resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
+ '@types/node@18.19.54':
+ resolution: {integrity: sha512-+BRgt0G5gYjTvdLac9sIeE0iZcJxi4Jc4PV5EUzqi+88jmQLr+fRZdv2tCTV7IHKSGxM6SaLoOXQWWUiLUItMw==}
+
'@types/node@20.12.7':
resolution: {integrity: sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg==}
@@ -5463,6 +6068,9 @@ packages:
'@types/yargs-parser@21.0.0':
resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==}
+ '@types/yargs@15.0.19':
+ resolution: {integrity: sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==}
+
'@types/yargs@16.0.5':
resolution: {integrity: sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==}
@@ -5705,6 +6313,22 @@ packages:
'@vue/typescript@1.8.10':
resolution: {integrity: sha512-vPSpTXMk4chYwvyTGjM891cKgnx2r6vtbdANOp2mRU31f4HYGyLrZBlGgiua7SaO2cLjUg8y91OipJe0t8OFhA==}
+ '@wallet-standard/app@1.0.1':
+ resolution: {integrity: sha512-LnLYq2Vy2guTZ8GQKKSXQK3+FRGPil75XEdkZqE6fiLixJhZJoJa5hT7lXxwe0ykVTt9LEThdTbOpT7KadS26Q==}
+ engines: {node: '>=16'}
+
+ '@wallet-standard/base@1.0.1':
+ resolution: {integrity: sha512-1To3ekMfzhYxe0Yhkpri+Fedq0SYcfrOfJi3vbLjMwF2qiKPjTGLwZkf2C9ftdQmxES+hmxhBzTwF4KgcOwf8w==}
+ engines: {node: '>=16'}
+
+ '@wallet-standard/experimental-features@0.1.1':
+ resolution: {integrity: sha512-WKtnET1okeDACTbxmePGOGaIUrGvlu/DestLZvZ/ddFpUKw7nokkbinX/gHzsuAC9WGtLyhqLSppAHzN+vAAaQ==}
+ engines: {node: '>=16'}
+
+ '@wallet-standard/features@1.0.3':
+ resolution: {integrity: sha512-m8475I6W5LTatTZuUz5JJNK42wFRgkJTB0I9tkruMwfqBF2UN2eomkYNVf9RbrsROelCRzSFmugqjKZBFaubsA==}
+ engines: {node: '>=16'}
+
'@walletconnect/auth-client@2.1.2':
resolution: {integrity: sha512-ubJLn+vGb8sTdBFX6xAh4kjR5idrtS3RBngQWaJJJpEPBQmxMb8pM2q0FIRs8Is4K6jKy+uEhusMV+7ZBmTzjw==}
engines: {node: '>=16'}
@@ -5722,6 +6346,9 @@ packages:
'@walletconnect/core@2.11.1':
resolution: {integrity: sha512-T57Vd7YdbHPsy3tthBuwrhaZNafN0+PqjISFRNeJy/bsKdXxpJg2hGSARuOTpCO7V6VcaatqlaSMuG3DrnG5rA==}
+ '@walletconnect/core@2.11.2':
+ resolution: {integrity: sha512-bB4SiXX8hX3/hyBfVPC5gwZCXCl+OPj+/EDVM71iAO3TDsh78KPbrVAbDnnsbHzZVHlsMohtXX3j5XVsheN3+g==}
+
'@walletconnect/core@2.8.3':
resolution: {integrity: sha512-uQG3XoGJscnxOWTO/W39QOXQszNpSbV8b/BFJoful9D1IUGeTracGc8FdKtNQFfvyhrx3gooZ+HwOK6QBirXzQ==}
@@ -5741,6 +6368,9 @@ packages:
resolution: {integrity: sha512-Nq9m+oo5P0F+njsROHw9KMWdoc/8iGHYzQdkjJN/1C7DtsqFRg5k5a3hd9rzCLpbPsOC1q8Z5lRs6JQgDvPm6Q==}
deprecated: 'WalletConnect''s v1 SDKs are now deprecated. Please upgrade to a v2 SDK. For details see: https://docs.walletconnect.com/'
+ '@walletconnect/ethereum-provider@2.11.2':
+ resolution: {integrity: sha512-BUDqee0Uy2rCZVkW5Ao3q6Ado/3fePYnFdryVF+YL6bPhj+xQZ5OfKodl+uvs7Rwq++O5wTX2RqOTzpW7+v+Mg==}
+
'@walletconnect/ethereum-provider@2.9.2':
resolution: {integrity: sha512-eO1dkhZffV1g7vpG19XUJTw09M/bwGUwwhy1mJ3AOPbOSbMPvwiCuRz2Kbtm1g9B0Jv15Dl+TvJ9vTgYF8zoZg==}
peerDependencies:
@@ -5800,12 +6430,21 @@ packages:
'@walletconnect/modal-core@2.6.1':
resolution: {integrity: sha512-f2hYlJ5pwzGvjyaZ6BoGR5uiMgXzWXt6w6ktt1N8lmY6PiYp8whZgqx2hTxVWwVlsGnaIfh6UHp1hGnANx0eTQ==}
+ '@walletconnect/modal-core@2.7.0':
+ resolution: {integrity: sha512-oyMIfdlNdpyKF2kTJowTixZSo0PGlCJRdssUN/EZdA6H6v03hZnf09JnwpljZNfir2M65Dvjm/15nGrDQnlxSA==}
+
'@walletconnect/modal-ui@2.6.1':
resolution: {integrity: sha512-RFUOwDAMijSK8B7W3+KoLKaa1l+KEUG0LCrtHqaB0H0cLnhEGdLR+kdTdygw+W8+yYZbkM5tXBm7MlFbcuyitA==}
+ '@walletconnect/modal-ui@2.7.0':
+ resolution: {integrity: sha512-gERYvU7D7K1ANCN/8vUgsE0d2hnRemfAFZ2novm9aZBg7TEd/4EgB+AqbJ+1dc7GhOL6dazckVq78TgccHb7mQ==}
+
'@walletconnect/modal@2.6.1':
resolution: {integrity: sha512-G84tSzdPKAFk1zimgV7JzIUFT5olZUVtI3GcOk77OeLYjlMfnDT23RVRHm5EyCrjkptnvpD0wQScXePOFd2Xcw==}
+ '@walletconnect/modal@2.7.0':
+ resolution: {integrity: sha512-RQVt58oJ+rwqnPcIvRFeMGKuXb9qkgSmwz4noF8JZGUym3gUAzVs+uW2NQ1Owm9XOJAV+sANrtJ+VoVq1ftElw==}
+
'@walletconnect/qrcode-modal@1.8.0':
resolution: {integrity: sha512-BueaFefaAi8mawE45eUtztg3ZFbsAH4DDXh1UNwdUlsvFMjqcYzLUG0xZvDd6z2eOpbgDg2N3bl6gF0KONj1dg==}
deprecated: 'WalletConnect''s v1 SDKs are now deprecated. Please upgrade to a v2 SDK. For details see: https://docs.walletconnect.com/'
@@ -5829,6 +6468,9 @@ packages:
resolution: {integrity: sha512-s3oKSx6/F5X2WmkV1jfJImBFACf9Km5HpTb+n5q+mobJVpUQw/clvoVyIrNNppLhm1V1S/ylHXh0qCrDppDpCA==}
deprecated: Reliability and performance greatly improved - please see https://github.com/WalletConnect/walletconnect-monorepo/releases
+ '@walletconnect/sign-client@2.11.2':
+ resolution: {integrity: sha512-MfBcuSz2GmMH+P7MrCP46mVE5qhP0ZyWA0FyIH6/WuxQ6G+MgKsGfaITqakpRPsykWOJq8tXMs3XvUPDU413OQ==}
+
'@walletconnect/sign-client@2.8.3':
resolution: {integrity: sha512-fOlyZfzV4xJO0CDCMrQ3hw4bIuboncqVpJ0BgTF5yQtKklv+5pEqlFnhU8GN2rE6GThU1zyPQNibT/jRG7lCAw==}
deprecated: Reliability and performance greatly improved - please see https://github.com/WalletConnect/walletconnect-monorepo/releases
@@ -5850,15 +6492,24 @@ packages:
resolution: {integrity: sha512-Cn+3I0V0vT9ghMuzh1KzZvCkiAxTq+1TR2eSqw5E5AVWfmCtECFkVZBP6uUJZ8YjwLqXheI+rnjqPy7sVM4Fyg==}
deprecated: 'WalletConnect''s v1 SDKs are now deprecated. Please upgrade to a v2 SDK. For details see: https://docs.walletconnect.com/'
+ '@walletconnect/types@2.10.6':
+ resolution: {integrity: sha512-WgHfiTG1yakmxheaBRiXhUdEmgxwrvsAdOIWaMf/spvrzVKYh6sHI3oyEEky5qj5jjiMiyQBeB57QamzCotbcQ==}
+
'@walletconnect/types@2.11.1':
resolution: {integrity: sha512-UbdbX+d6MOK0AXKxt5imV3KvAcLVpZUHylaRDIP5ffwVylM/p4DHnKppil1Qq5N+IGDr3RsUwLGFkKjqsQYRKw==}
+ '@walletconnect/types@2.11.2':
+ resolution: {integrity: sha512-p632MFB+lJbip2cvtXPBQslpUdiw1sDtQ5y855bOlAGquay+6fZ4h1DcDePeKQDQM3P77ax2a9aNPZxV6y/h1Q==}
+
'@walletconnect/types@2.8.3':
resolution: {integrity: sha512-crZ5IfWEp+ctygfDNifzB68sVWKwfLMiF7GZuoOzKJuFYbXtcNjtpmFdAd3cPT+a8L30XMgv0shEdIHTj2JglQ==}
'@walletconnect/types@2.9.2':
resolution: {integrity: sha512-7Rdn30amnJEEal4hk83cdwHUuxI1SWQ+K7fFFHBMqkuHLGi3tpMY6kpyfDxnUScYEZXqgRps4Jo5qQgnRqVM7A==}
+ '@walletconnect/universal-provider@2.11.2':
+ resolution: {integrity: sha512-cNtIn5AVoDxKAJ4PmB8m5adnf5mYQMUamEUPKMVvOPscfGtIMQEh9peKsh2AN5xcRVDbgluC01Id545evFyymw==}
+
'@walletconnect/universal-provider@2.8.3':
resolution: {integrity: sha512-HW1u23Ridjq+LG1mb+nsH31lPa4/th5kFpWuBem9n6FeZNIpoWbbGQUhU3Q5snyMccD1Vxgvxv1xC2KMUwbXTA==}
@@ -5871,6 +6522,9 @@ packages:
'@walletconnect/utils@2.11.1':
resolution: {integrity: sha512-wRFDHN86dZ05mCET1H3912odIeQa8j7cZKxl1FlWRpV2YsILj9HCYSX6Uq2brwO02Kv2vryke44G1r8XI/LViA==}
+ '@walletconnect/utils@2.11.2':
+ resolution: {integrity: sha512-LyfdmrnZY6dWqlF4eDrx5jpUwsB2bEPjoqR5Z6rXPiHJKUOdJt7az+mNOn5KTSOlRpd1DmozrBrWr+G9fFLYVw==}
+
'@walletconnect/utils@2.8.3':
resolution: {integrity: sha512-PwNEj/kGO7J7ZyrAaVqYkASLBG77qDE/+6JPX11GAucSy2wac92WefLjfVsPLNPwiNmYiV1eGbxzR3KCdlnrLA==}
@@ -6166,6 +6820,9 @@ packages:
ajv@8.16.0:
resolution: {integrity: sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==}
+ anser@1.4.10:
+ resolution: {integrity: sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww==}
+
ansi-align@3.0.1:
resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==}
@@ -6177,6 +6834,9 @@ packages:
resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==}
engines: {node: '>=8'}
+ ansi-fragments@0.2.1:
+ resolution: {integrity: sha512-DykbNHxuXQwUDRv5ibc2b0x7uw7wmwOGLBUd5RmaQ5z8Lhx19vwvKV+FAsM5rEA6dEcHxX+/Ad5s9eF2k2bB+w==}
+
ansi-html-community@0.0.8:
resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==}
engines: {'0': node >= 0.8.0}
@@ -6231,6 +6891,9 @@ packages:
apg-js@4.3.0:
resolution: {integrity: sha512-8U8MULS+JocCnm11bfrVS4zxtAcE3uOiCAI21SnjDrV9LNhMSGwTGGeko3QfyK1JLWwT7KebFqJMB2puzfdFMQ==}
+ appdirsjs@1.2.7:
+ resolution: {integrity: sha512-Quji6+8kLBC3NnBeo14nPDq0+2jUs5s3/xEye+udFHumHhRk4M7aAMXp/PBJqkKYGuuyR9M/6Dq7d2AViiGmhw==}
+
aproba@2.0.0:
resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==}
@@ -6359,6 +7022,17 @@ packages:
ast-types-flow@0.0.7:
resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==}
+ ast-types@0.15.2:
+ resolution: {integrity: sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==}
+ engines: {node: '>=4'}
+
+ astral-regex@1.0.0:
+ resolution: {integrity: sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==}
+ engines: {node: '>=4'}
+
+ async-limiter@1.0.1:
+ resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==}
+
async-mutex@0.2.6:
resolution: {integrity: sha512-Hs4R+4SPgamu6rSGW8C7cV9gaWUKEHykfzCCvIRuaVv636Ju10ZdeUbvb4TBEW0INuq2DHZqXbK4Nd3yG4RaRw==}
@@ -6413,6 +7087,11 @@ packages:
axobject-query@3.2.1:
resolution: {integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==}
+ babel-core@7.0.0-bridge.0:
+ resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
babel-jest@27.5.1:
resolution: {integrity: sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
@@ -6485,6 +7164,9 @@ packages:
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ babel-plugin-transform-flow-enums@0.0.2:
+ resolution: {integrity: sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==}
+
babel-plugin-transform-react-remove-prop-types@0.4.24:
resolution: {integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==}
@@ -6795,6 +7477,18 @@ packages:
resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==}
engines: {node: '>= 0.4'}
+ caller-callsite@2.0.0:
+ resolution: {integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==}
+ engines: {node: '>=4'}
+
+ caller-path@2.0.0:
+ resolution: {integrity: sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==}
+ engines: {node: '>=4'}
+
+ callsites@2.0.0:
+ resolution: {integrity: sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==}
+ engines: {node: '>=4'}
+
callsites@3.1.0:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
engines: {node: '>=6'}
@@ -6863,6 +7557,10 @@ packages:
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
engines: {node: '>=10'}
+ chalk@5.3.0:
+ resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==}
+ engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
+
char-regex@1.0.2:
resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==}
engines: {node: '>=10'}
@@ -6888,6 +7586,11 @@ packages:
resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
engines: {node: '>=10'}
+ chrome-launcher@0.15.2:
+ resolution: {integrity: sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ==}
+ engines: {node: '>=12.13.0'}
+ hasBin: true
+
chrome-trace-event@1.0.3:
resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==}
engines: {node: '>=6.0'}
@@ -7018,13 +7721,23 @@ packages:
color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
+ color-string@1.9.1:
+ resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
+
color-support@1.1.3:
resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==}
hasBin: true
+ color@4.2.3:
+ resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==}
+ engines: {node: '>=12.5.0'}
+
colord@2.9.3:
resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==}
+ colorette@1.4.0:
+ resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==}
+
colorette@2.0.20:
resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
@@ -7047,6 +7760,10 @@ packages:
resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==}
engines: {node: '>=14'}
+ commander@12.1.0:
+ resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==}
+ engines: {node: '>=18'}
+
commander@2.20.3:
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
@@ -7062,6 +7779,10 @@ packages:
resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==}
engines: {node: '>= 12'}
+ commander@9.5.0:
+ resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==}
+ engines: {node: ^12.20.0 || >=14}
+
comment-parser@1.4.1:
resolution: {integrity: sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==}
engines: {node: '>= 12.0.0'}
@@ -7113,6 +7834,10 @@ packages:
resolution: {integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==}
engines: {node: '>=0.8'}
+ connect@3.7.0:
+ resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==}
+ engines: {node: '>= 0.10.0'}
+
consola@3.2.3:
resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==}
engines: {node: ^14.18.0 || >=16.10.0}
@@ -7197,6 +7922,10 @@ packages:
core-util-is@1.0.3:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
+ cosmiconfig@5.2.1:
+ resolution: {integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==}
+ engines: {node: '>=4'}
+
cosmiconfig@6.0.0:
resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==}
engines: {node: '>=8'}
@@ -7466,6 +8195,9 @@ packages:
dateformat@3.0.3:
resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==}
+ dayjs@1.11.13:
+ resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==}
+
de-indent@1.0.2:
resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==}
@@ -7603,6 +8335,9 @@ packages:
delegates@1.0.0:
resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==}
+ denodeify@1.2.1:
+ resolution: {integrity: sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg==}
+
denque@2.1.0:
resolution: {integrity: sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==}
engines: {node: '>=0.10'}
@@ -7651,6 +8386,10 @@ packages:
engines: {node: '>=0.10'}
hasBin: true
+ detect-libc@2.0.3:
+ resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==}
+ engines: {node: '>=8'}
+
detect-newline@3.1.0:
resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==}
engines: {node: '>=8'}
@@ -7917,6 +8656,10 @@ packages:
error-stack-parser@2.1.4:
resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==}
+ errorhandler@1.5.1:
+ resolution: {integrity: sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==}
+ engines: {node: '>= 0.8'}
+
es-abstract@1.22.1:
resolution: {integrity: sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw==}
engines: {node: '>= 0.4'}
@@ -8362,6 +9105,9 @@ packages:
resolution: {integrity: sha512-GipyPsXO1anza0AOZdy69Im7hGFCNB7Y/NGjDlZGJ3GJJLtwNSb2vrzYrTYJRrRloVx7pl+bhUaTB8yiccPvFQ==}
engines: {node: '> 0.1.90'}
+ fast-base64-decode@1.0.0:
+ resolution: {integrity: sha512-qwaScUgUGBYeDNRnbc/KyllVU88Jk1pRHPStuF/lO7B0/RTRLj7U0lkdTAutlBblY08rwZDff6tNU9cjv6j//Q==}
+
fast-deep-equal@3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
@@ -8379,6 +9125,10 @@ packages:
resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==}
engines: {node: '>=8.6.0'}
+ fast-glob@3.3.2:
+ resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
+ engines: {node: '>=8.6.0'}
+
fast-json-stable-stringify@2.1.0:
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
@@ -8395,6 +9145,13 @@ packages:
fast-stable-stringify@1.0.0:
resolution: {integrity: sha512-wpYMUmFu5f00Sm0cj2pfivpmawLZ0NKdviQ4w9zJeR8JVtOpOxHmLaJuj0vxvGqMJQWyP/COUkF75/57OKyRag==}
+ fast-xml-parser@4.5.0:
+ resolution: {integrity: sha512-/PlTQCI96+fZMAOLMZK4CWG1ItCbfZ/0jx7UIJFChPNrx7tcEgerUgWbeieCM9MfHInUDyK8DWYZ+YrywDJuTg==}
+ hasBin: true
+
+ fastestsmallesttextencoderdecoder@1.0.22:
+ resolution: {integrity: sha512-Pb8d48e+oIuY4MaM64Cd7OW1gt4nxCHs7/ddPPZ/Ic3sg8yVGM7O9wDvZ7us6ScaUupzM+pfBolwtYhN1IxBIw==}
+
fastq@1.15.0:
resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==}
@@ -8445,10 +9202,18 @@ packages:
resolution: {integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==}
engines: {node: '>=0.10.0'}
+ finalhandler@1.1.2:
+ resolution: {integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==}
+ engines: {node: '>= 0.8'}
+
finalhandler@1.2.0:
resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==}
engines: {node: '>= 0.8'}
+ find-cache-dir@2.1.0:
+ resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==}
+ engines: {node: '>=6'}
+
find-cache-dir@3.3.2:
resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==}
engines: {node: '>=8'}
@@ -8489,6 +9254,13 @@ packages:
flatted@3.2.7:
resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==}
+ flow-enums-runtime@0.0.6:
+ resolution: {integrity: sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw==}
+
+ flow-parser@0.247.1:
+ resolution: {integrity: sha512-DHwcm06fWbn2Z6uFD3NaBZ5lMOoABIQ4asrVA80IWvYjjT5WdbghkUOL1wIcbLcagnFTdCZYOlSNnKNp/xnRZQ==}
+ engines: {node: '>=0.4.0'}
+
focus-lock@0.11.6:
resolution: {integrity: sha512-KSuV3ur4gf2KqMNoZx3nXNVhqCkn42GuTYCX4tXPEwf0MjpFQmNMiN6m7dXaUXgIoivL6/65agoUMg4RLS0Vbg==}
engines: {node: '>=10'}
@@ -8920,6 +9692,22 @@ packages:
resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
hasBin: true
+ hermes-estree@0.19.1:
+ resolution: {integrity: sha512-daLGV3Q2MKk8w4evNMKwS8zBE/rcpA800nu1Q5kM08IKijoSnPe9Uo1iIxzPKRkn95IxxsgBMPeYHt3VG4ej2g==}
+
+ hermes-estree@0.23.1:
+ resolution: {integrity: sha512-eT5MU3f5aVhTqsfIReZ6n41X5sYn4IdQL0nvz6yO+MMlPxw49aSARHLg/MSehQftyjnrE8X6bYregzSumqc6cg==}
+
+ hermes-parser@0.19.1:
+ resolution: {integrity: sha512-Vp+bXzxYJWrpEuJ/vXxUsLnt0+y4q9zyi4zUlkLqD8FKv4LjIfOvP69R/9Lty3dCyKh0E2BU7Eypqr63/rKT/A==}
+
+ hermes-parser@0.23.1:
+ resolution: {integrity: sha512-oxl5h2DkFW83hT4DAUJorpah8ou4yvmweUzLJmmr6YV2cezduCdlil1AvU/a/xSsAFo4WUcNA4GoV5Bvq6JffA==}
+
+ hermes-profile-transformer@0.0.6:
+ resolution: {integrity: sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ==}
+ engines: {node: '>=8'}
+
hey-listen@1.0.8:
resolution: {integrity: sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==}
@@ -8955,6 +9743,10 @@ packages:
hpack.js@2.1.6:
resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==}
+ hpke-js@1.3.1:
+ resolution: {integrity: sha512-5qEeLXw1mROAPmuEhU7/JdEpdC49jXBLb6zj274ciG49HjoQjm8ABTnyZMd2jKl76wWwjzb9puLmm1bZ1PtygA==}
+ engines: {node: '>=16.0.0'}
+
html-encoding-sniffer@2.0.1:
resolution: {integrity: sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==}
engines: {node: '>=10'}
@@ -8974,6 +9766,9 @@ packages:
engines: {node: '>=12'}
hasBin: true
+ html-parse-stringify@3.0.1:
+ resolution: {integrity: sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==}
+
html-webpack-plugin@5.5.3:
resolution: {integrity: sha512-6YrDKTuqaP/TquFH7h4srYWsZx+x6k6+FbsTm0ziCwGHDP78Unr1r9F/H4+sGmMbX08GQcJ+K64x55b+7VM/jg==}
engines: {node: '>=10.13.0'}
@@ -9056,6 +9851,9 @@ packages:
hyphenate-style-name@1.0.4:
resolution: {integrity: sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==}
+ i18next@23.4.6:
+ resolution: {integrity: sha512-jBE8bui969Ygv7TVYp0pwDZB7+he0qsU+nz7EcfdqSh+QvKjEfl9YPRQd/KrGiMhTYFGkeuPaeITenKK/bSFDg==}
+
iconv-lite@0.4.24:
resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
engines: {node: '>=0.10.0'}
@@ -9095,6 +9893,11 @@ packages:
resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==}
engines: {node: '>= 4'}
+ image-size@1.1.1:
+ resolution: {integrity: sha512-541xKlUw6jr/6gGuk92F+mYM5zaFAc5ahphvkqvNe2bQ6gVBkd6bfrmVJ2t4KDAfikAYZyIqTnktX3i6/aQDrQ==}
+ engines: {node: '>=16.x'}
+ hasBin: true
+
immediate@3.0.6:
resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==}
@@ -9104,6 +9907,10 @@ packages:
immutable@4.3.7:
resolution: {integrity: sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==}
+ import-fresh@2.0.0:
+ resolution: {integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==}
+ engines: {node: '>=4'}
+
import-fresh@3.3.0:
resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
engines: {node: '>=6'}
@@ -9246,6 +10053,9 @@ packages:
is-arrayish@0.2.1:
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
+ is-arrayish@0.3.2:
+ resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==}
+
is-async-function@2.0.0:
resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==}
engines: {node: '>= 0.4'}
@@ -9284,6 +10094,10 @@ packages:
resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
engines: {node: '>= 0.4'}
+ is-directory@0.3.1:
+ resolution: {integrity: sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==}
+ engines: {node: '>=0.10.0'}
+
is-docker@2.2.1:
resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
engines: {node: '>=8'}
@@ -9500,6 +10314,10 @@ packages:
resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==}
engines: {node: '>=0.10.0'}
+ is-wsl@1.1.0:
+ resolution: {integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==}
+ engines: {node: '>=4'}
+
is-wsl@2.2.0:
resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
engines: {node: '>=8'}
@@ -9938,6 +10756,9 @@ packages:
jju@1.4.0:
resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==}
+ joi@17.13.3:
+ resolution: {integrity: sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==}
+
jose@4.15.4:
resolution: {integrity: sha512-W+oqK4H+r5sITxfxpSU+MMdr/YSWGvgZMQDIsNoBDGGy4i7GBPTtvFKibQzW06n3U3TqHjhvBJsirShsEJ6eeQ==}
@@ -9964,6 +10785,18 @@ packages:
resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
hasBin: true
+ jsc-android@250231.0.0:
+ resolution: {integrity: sha512-rS46PvsjYmdmuz1OAWXY/1kCYG7pnf1TBqeTiOJr1iDz7s5DLxxC9n/ZMknLDxzYzNVfI7R95MH10emSSG1Wuw==}
+
+ jsc-safe-url@0.2.4:
+ resolution: {integrity: sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q==}
+
+ jscodeshift@0.14.0:
+ resolution: {integrity: sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==}
+ hasBin: true
+ peerDependencies:
+ '@babel/preset-env': ^7.1.6
+
jsdoc-type-pratt-parser@4.0.0:
resolution: {integrity: sha512-YtOli5Cmzy3q4dP26GraSOeAhqecewG04hoO8DY56CH4KJ9Fvv5qKWUCCo3HZob7esJQHCv6/+bnTy72xZZaVQ==}
engines: {node: '>=12.0.0'}
@@ -10226,6 +11059,9 @@ packages:
lie@3.3.0:
resolution: {integrity: sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==}
+ lighthouse-logger@1.4.2:
+ resolution: {integrity: sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==}
+
lilconfig@2.1.0:
resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
engines: {node: '>=10'}
@@ -10382,6 +11218,9 @@ packages:
lodash.startcase@4.4.0:
resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==}
+ lodash.throttle@4.1.1:
+ resolution: {integrity: sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==}
+
lodash.uniq@4.5.0:
resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==}
@@ -10392,6 +11231,10 @@ packages:
resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
engines: {node: '>=10'}
+ logkitty@0.7.1:
+ resolution: {integrity: sha512-/3ER20CTTbahrCrpYfPn7Xavv9diBROZpoXGVZDWMw4b/X4uuUwAC0ki85tgsdMRONURyIJbcOvS94QsUBYPbQ==}
+ hasBin: true
+
loglevel@1.8.1:
resolution: {integrity: sha512-tCRIJM51SHjAayKwC+QAg8hT8vg6z7GSgLJKGvzuPb1Wc+hLzqtuVLxp6/HzSPOozuK+8ErAhy7U/sVzw8Dgfg==}
engines: {node: '>= 0.6.0'}
@@ -10500,6 +11343,9 @@ packages:
resolution: {integrity: sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==}
hasBin: true
+ marky@1.2.5:
+ resolution: {integrity: sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==}
+
md5.js@1.3.5:
resolution: {integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==}
@@ -10521,6 +11367,9 @@ packages:
engines: {node: '>= 4.0.0'}
deprecated: this will be v4
+ memoize-one@5.2.1:
+ resolution: {integrity: sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==}
+
memorystream@0.3.1:
resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==}
engines: {node: '>= 0.10.0'}
@@ -10555,6 +11404,64 @@ packages:
resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
engines: {node: '>= 0.6'}
+ metro-babel-transformer@0.80.12:
+ resolution: {integrity: sha512-YZziRs0MgA3pzCkkvOoQRXjIoVjvrpi/yRlJnObyIvMP6lFdtyG4nUGIwGY9VXnBvxmXD6mPY2e+NSw6JAyiRg==}
+ engines: {node: '>=18'}
+
+ metro-cache-key@0.80.12:
+ resolution: {integrity: sha512-o4BspKnugg/pE45ei0LGHVuBJXwRgruW7oSFAeSZvBKA/sGr0UhOGY3uycOgWInnS3v5yTTfiBA9lHlNRhsvGA==}
+ engines: {node: '>=18'}
+
+ metro-cache@0.80.12:
+ resolution: {integrity: sha512-p5kNHh2KJ0pbQI/H7ZBPCEwkyNcSz7OUkslzsiIWBMPQGFJ/xArMwkV7I+GJcWh+b4m6zbLxE5fk6fqbVK1xGA==}
+ engines: {node: '>=18'}
+
+ metro-config@0.80.12:
+ resolution: {integrity: sha512-4rwOWwrhm62LjB12ytiuR5NgK1ZBNr24/He8mqCsC+HXZ+ATbrewLNztzbAZHtFsrxP4D4GLTGgh96pCpYLSAQ==}
+ engines: {node: '>=18'}
+
+ metro-core@0.80.12:
+ resolution: {integrity: sha512-QqdJ/yAK+IpPs2HU/h5v2pKEdANBagSsc6DRSjnwSyJsCoHlmyJKCaCJ7KhWGx+N4OHxh37hoA8fc2CuZbx0Fw==}
+ engines: {node: '>=18'}
+
+ metro-file-map@0.80.12:
+ resolution: {integrity: sha512-sYdemWSlk66bWzW2wp79kcPMzwuG32x1ZF3otI0QZTmrnTaaTiGyhE66P1z6KR4n2Eu5QXiABa6EWbAQv0r8bw==}
+ engines: {node: '>=18'}
+
+ metro-minify-terser@0.80.12:
+ resolution: {integrity: sha512-muWzUw3y5k+9083ZoX9VaJLWEV2Jcgi+Oan0Mmb/fBNMPqP9xVDuy4pOMn/HOiGndgfh/MK7s4bsjkyLJKMnXQ==}
+ engines: {node: '>=18'}
+
+ metro-resolver@0.80.12:
+ resolution: {integrity: sha512-PR24gYRZnYHM3xT9pg6BdbrGbM/Cu1TcyIFBVlAk7qDAuHkUNQ1nMzWumWs+kwSvtd9eZGzHoucGJpTUEeLZAw==}
+ engines: {node: '>=18'}
+
+ metro-runtime@0.80.12:
+ resolution: {integrity: sha512-LIx7+92p5rpI0i6iB4S4GBvvLxStNt6fF0oPMaUd1Weku7jZdfkCZzmrtDD9CSQ6EPb0T9NUZoyXIxlBa3wOCw==}
+ engines: {node: '>=18'}
+
+ metro-source-map@0.80.12:
+ resolution: {integrity: sha512-o+AXmE7hpvM8r8MKsx7TI21/eerYYy2DCDkWfoBkv+jNkl61khvDHlQn0cXZa6lrcNZiZkl9oHSMcwLLIrFmpw==}
+ engines: {node: '>=18'}
+
+ metro-symbolicate@0.80.12:
+ resolution: {integrity: sha512-/dIpNdHksXkGHZXARZpL7doUzHqSNxgQ8+kQGxwpJuHnDhGkENxB5PS2QBaTDdEcmyTMjS53CN1rl9n1gR6fmw==}
+ engines: {node: '>=18'}
+ hasBin: true
+
+ metro-transform-plugins@0.80.12:
+ resolution: {integrity: sha512-WQWp00AcZvXuQdbjQbx1LzFR31IInlkCDYJNRs6gtEtAyhwpMMlL2KcHmdY+wjDO9RPcliZ+Xl1riOuBecVlPA==}
+ engines: {node: '>=18'}
+
+ metro-transform-worker@0.80.12:
+ resolution: {integrity: sha512-KAPFN1y3eVqEbKLx1I8WOarHPqDMUa8WelWxaJCNKO/yHCP26zELeqTJvhsQup+8uwB6EYi/sp0b6TGoh6lOEA==}
+ engines: {node: '>=18'}
+
+ metro@0.80.12:
+ resolution: {integrity: sha512-1UsH5FzJd9quUsD1qY+zUG4JY3jo3YEMxbMYH9jT6NK3j4iORhlwTK8fYTfAUBhDKjgLfKjAh7aoazNE23oIRA==}
+ engines: {node: '>=18'}
+ hasBin: true
+
micro-ftch@0.3.1:
resolution: {integrity: sha512-/0LLxhzP0tfiR5hcQebtudP56gUurs2CLkGarnCiB/OqEyUFQ6U3paQi/tgLv0hBJYt2rnr9MNpxz4fiiugstg==}
@@ -10579,6 +11486,11 @@ packages:
engines: {node: '>=4'}
hasBin: true
+ mime@2.6.0:
+ resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==}
+ engines: {node: '>=4.0.0'}
+ hasBin: true
+
mime@3.0.0:
resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==}
engines: {node: '>=10.0.0'}
@@ -10891,6 +11803,13 @@ packages:
no-case@3.0.4:
resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
+ nocache@3.0.4:
+ resolution: {integrity: sha512-WDD0bdg9mbq6F4mRxEYcPWwfA1vxd0mrvKOyxI7Xj/atfRHVeutzuWByG//jfm4uPzp0y4Kj051EORCBSQMycw==}
+ engines: {node: '>=12.0.0'}
+
+ node-abort-controller@3.1.1:
+ resolution: {integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==}
+
node-addon-api@2.0.2:
resolution: {integrity: sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA==}
@@ -10903,6 +11822,10 @@ packages:
node-addon-api@7.0.0:
resolution: {integrity: sha512-vgbBJTS4m5/KkE16t5Ly0WW9hz46swAstv0hYYwMtbG7AznRhNyfLRe8HZAiWIpcHzoO7HxhLuBQj9rJ/Ho0ZA==}
+ node-dir@0.1.17:
+ resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==}
+ engines: {node: '>= 0.10.5'}
+
node-fetch-native@1.4.1:
resolution: {integrity: sha512-NsXBU0UgBxo2rQLOeWNZqS3fvflWePMECr8CoSWoSTqCqGbVVsvl9vZu1HfQicYN0g5piV9Gh8RTEvo/uP752w==}
@@ -10943,6 +11866,10 @@ packages:
node-releases@2.0.14:
resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==}
+ node-stream-zip@1.15.0:
+ resolution: {integrity: sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw==}
+ engines: {node: '>=0.12.0'}
+
nopt@6.0.0:
resolution: {integrity: sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==}
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
@@ -11068,6 +11995,9 @@ packages:
nth-check@2.1.1:
resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
+ nullthrows@1.1.1:
+ resolution: {integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==}
+
number-to-bn@1.7.0:
resolution: {integrity: sha512-wsJ9gfSz1/s4ZsJN01lyonwuxA1tml6X1yBDnfpMglypcBRFZZkus26EdPSlqS5GJfYddVZa22p3VNb3z5m5Ig==}
engines: {node: '>=6.5.0', npm: '>=3'}
@@ -11087,6 +12017,10 @@ packages:
'@swc/core':
optional: true
+ ob1@0.80.12:
+ resolution: {integrity: sha512-VMArClVT6LkhUGpnuEoBuyjG9rzUyEzg4PDkav6wK1cLhOK02gPCYFxoiB4mqVnrMhDpIzJcrGNAMVi9P+hXrw==}
+ engines: {node: '>=18'}
+
object-assign@4.1.1:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
@@ -11158,6 +12092,10 @@ packages:
on-exit-leak-free@0.2.0:
resolution: {integrity: sha512-dqaz3u44QbRXQooZLTUKU41ZrzYrcvLISVgbrzbyCMxpmSLJvZ3ZamIJIZ29P6OhZIkNIQKosdeM6t1LYbA9hg==}
+ on-finished@2.3.0:
+ resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==}
+ engines: {node: '>= 0.8'}
+
on-finished@2.4.1:
resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
engines: {node: '>= 0.8'}
@@ -11177,6 +12115,14 @@ packages:
resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
engines: {node: '>=12'}
+ open@6.4.0:
+ resolution: {integrity: sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg==}
+ engines: {node: '>=8'}
+
+ open@7.4.2:
+ resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==}
+ engines: {node: '>=8'}
+
open@8.4.2:
resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==}
engines: {node: '>=12'}
@@ -11490,6 +12436,10 @@ packages:
resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
engines: {node: '>= 6'}
+ pkg-dir@3.0.0:
+ resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==}
+ engines: {node: '>=6'}
+
pkg-dir@4.2.0:
resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==}
engines: {node: '>=8'}
@@ -11999,6 +12949,10 @@ packages:
pretty-error@4.0.0:
resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==}
+ pretty-format@26.6.2:
+ resolution: {integrity: sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==}
+ engines: {node: '>= 10'}
+
pretty-format@27.5.1:
resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
@@ -12167,12 +13121,20 @@ packages:
resolution: {integrity: sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==}
engines: {node: '>=6'}
+ querystring@0.2.1:
+ resolution: {integrity: sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==}
+ engines: {node: '>=0.4.x'}
+ deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead.
+
querystringify@2.2.0:
resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==}
queue-microtask@1.2.3:
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
+ queue@6.0.2:
+ resolution: {integrity: sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==}
+
quick-format-unescaped@4.0.4:
resolution: {integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==}
@@ -12232,6 +13194,9 @@ packages:
typescript:
optional: true
+ react-devtools-core@5.3.1:
+ resolution: {integrity: sha512-7FSb9meX0btdBQLwdFOwt6bGqvRPabmVMMslv8fgoSPqXyuGpgQe36kx8gR86XPw7aV1yVouTp6fyZ0EH+NfUw==}
+
react-display-name@0.2.5:
resolution: {integrity: sha512-I+vcaK9t4+kypiSgaiVWAipqHRXYmZIuAiS8vzFvXHHXVigg/sMKwlRgLy6LH2i3rmP+0Vzfl5lFsFRwF1r3pg==}
@@ -12273,11 +13238,29 @@ packages:
react: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^20.0.0 || ^21.0.0 || ^22.0.0
react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^20.0.0 || ^21.0.0 || ^22.0.0
+ react-i18next@13.5.0:
+ resolution: {integrity: sha512-CFJ5NDGJ2MUyBohEHxljOq/39NQ972rh1ajnadG9BjTk+UXbHLq4z5DKEbEQBDoIhUmmbuS/fIMJKo6VOax1HA==}
+ peerDependencies:
+ i18next: '>= 23.2.3'
+ react: '>= 16.8.0'
+ react-dom: '*'
+ react-native: '*'
+ peerDependenciesMeta:
+ react-dom:
+ optional: true
+ react-native:
+ optional: true
+
react-icons@4.12.0:
resolution: {integrity: sha512-IBaDuHiShdZqmfc/TwHu6+d6k2ltNCf3AszxNmjJc1KUfXdEeRJOKyNvLmAHaarhzGmTSVygNdyu8/opXv2gaw==}
peerDependencies:
react: '*'
+ react-international-phone@4.2.5:
+ resolution: {integrity: sha512-jXxeEG5jvwivwSb/ImIIwIH1lSGD6VSy4W2CaInBiXo2PWnDj2BTzC0sAyZzNJarT7NX9kPdUHyGyyfziS5Rpw==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+
react-is@16.13.1:
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
@@ -12298,10 +13281,36 @@ packages:
react-native-fetch-api@3.0.0:
resolution: {integrity: sha512-g2rtqPjdroaboDKTsJCTlcmtw54E25OjyaunUP0anOZn4Fuo2IKs8BVfe02zVggA/UysbmfSnRJIqtNkAgggNA==}
+ react-native-get-random-values@1.11.0:
+ resolution: {integrity: sha512-4BTbDbRmS7iPdhYLRcz3PGFIpFJBwNZg9g42iwa2P6FOv9vZj/xJc678RZXnLNZzd0qd7Q3CCF6Yd+CU2eoXKQ==}
+ peerDependencies:
+ react-native: '>=0.56'
+
+ react-native-quick-base64@2.1.2:
+ resolution: {integrity: sha512-xghaXpWdB0ji8OwYyo0fWezRroNxiNFCNFpGUIyE7+qc4gA/IGWnysIG5L0MbdoORv8FkTKUvfd6yCUN5R2VFA==}
+ peerDependencies:
+ react: '*'
+ react-native: '*'
+
+ react-native@0.74.0:
+ resolution: {integrity: sha512-Vpp9WPmkCm4TUH5YDxwQhqktGVon/yLpjbTgjgLqup3GglOgWagYCX3MlmK1iksIcqtyMJHMEWa+UEzJ3G9T8w==}
+ engines: {node: '>=18'}
+ hasBin: true
+ peerDependencies:
+ '@types/react': ^18.2.6
+ react: 18.2.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
react-refresh@0.11.0:
resolution: {integrity: sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==}
engines: {node: '>=0.10.0'}
+ react-refresh@0.14.2:
+ resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==}
+ engines: {node: '>=0.10.0'}
+
react-remove-scroll-bar@2.3.6:
resolution: {integrity: sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==}
engines: {node: '>=10'}
@@ -12347,6 +13356,11 @@ packages:
typescript:
optional: true
+ react-shallow-renderer@16.15.0:
+ resolution: {integrity: sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==}
+ peerDependencies:
+ react: ^16.0.0 || ^17.0.0 || ^18.0.0
+
react-style-singleton@2.2.1:
resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==}
engines: {node: '>=10'}
@@ -12447,6 +13461,9 @@ packages:
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
engines: {node: '>=8.10.0'}
+ readline@1.3.0:
+ resolution: {integrity: sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==}
+
readonly-date@1.0.0:
resolution: {integrity: sha512-tMKIV7hlk0h4mO3JTmmVuIlJVXjKk3Sep9Bf5OH0O+758ruuVkUy2J9SttDLm91IEX/WHlXPSpxMGjPj4beMIQ==}
@@ -12454,6 +13471,10 @@ packages:
resolution: {integrity: sha512-r/H9MzAWtrv8aSVjPCMFpDMl5q66GqtmmRkRjpHTsp4zBAa+snZyiQNlMONiUmEJcsnaw0wCauJ2GWODr/aFkg==}
engines: {node: '>= 12.13.0'}
+ recast@0.21.5:
+ resolution: {integrity: sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==}
+ engines: {node: '>= 4'}
+
receptacle@1.3.2:
resolution: {integrity: sha512-HrsFvqZZheusncQRiEE7GatOAETrARKV/lnfYicIm8lbvp/JQOdADOfhjBd2DajvoszEyxSM6RlAAIZgEoeu/A==}
@@ -12541,6 +13562,10 @@ packages:
resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==}
engines: {node: '>=8'}
+ resolve-from@3.0.0:
+ resolution: {integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==}
+ engines: {node: '>=4'}
+
resolve-from@4.0.0:
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
engines: {node: '>=4'}
@@ -12605,6 +13630,11 @@ packages:
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
+ hasBin: true
+
rimraf@3.0.2:
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
deprecated: Rimraf versions prior to v4 are no longer supported
@@ -12652,6 +13682,9 @@ packages:
resolution: {integrity: sha512-IkLYjayPv6Io8C/TdCL5gwgzd1hFz2vmBZrjMw/SPEXo51ETOhnzgS4Qy5GWi2JQN7HKHa66J3+2mv0fgNh/7w==}
deprecated: deprecate 7.11.0
+ rpc-websockets@7.11.2:
+ resolution: {integrity: sha512-pL9r5N6AVHlMN/vT98+fcO+5+/UcPLf/4tq+WUaid/PPUGS/ttJ3y8e9IqmaWKtShNAysMSjkczuEA49NuV7UQ==}
+
rpc-websockets@9.0.2:
resolution: {integrity: sha512-YzggvfItxMY3Lwuax5rC18inhbjJv9Py7JXRHxTIi94JOLrqBsSsUUc5bbl5W6c11tXhdfpDPK0KzBhoGe8jjw==}
@@ -12753,6 +13786,9 @@ packages:
scheduler@0.23.2:
resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==}
+ scheduler@0.24.0-canary-efb381bbf-20230505:
+ resolution: {integrity: sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA==}
+
schema-utils@2.7.0:
resolution: {integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==}
engines: {node: '>= 8.9.0'}
@@ -12787,6 +13823,10 @@ packages:
resolution: {integrity: sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==}
engines: {node: '>=10'}
+ selfsigned@2.4.1:
+ resolution: {integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==}
+ engines: {node: '>=10'}
+
semver@5.7.2:
resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
hasBin: true
@@ -12814,6 +13854,10 @@ packages:
resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
engines: {node: '>= 0.8.0'}
+ serialize-error@2.1.0:
+ resolution: {integrity: sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==}
+ engines: {node: '>=0.10.0'}
+
serialize-javascript@4.0.0:
resolution: {integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==}
@@ -12859,6 +13903,9 @@ packages:
resolution: {integrity: sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==}
hasBin: true
+ sha256-uint8array@0.10.7:
+ resolution: {integrity: sha512-1Q6JQU4tX9NqsDGodej6pkrUVQVNapLZnvkwIhddH/JqzBZF1fSaxSWNY6sziXBE8aEa2twtGkXUrwzGeZCMpQ==}
+
sha3@2.1.4:
resolution: {integrity: sha512-S8cNxbyb0UGUM2VhRD4Poe5N58gJnJsLJ5vC7FYWGUmGhcsj4++WaIOBFVDxlG0W3To6xBuiRh+i0Qp2oNCOtg==}
@@ -12869,6 +13916,10 @@ packages:
shallow-equal@1.2.1:
resolution: {integrity: sha512-S4vJDjHHMBaiZuT9NPb616CSmLf618jawtv3sufLl6ivK8WocjAo58cXwbRV1cgqxH0Qbv+iUt6m05eqEa2IRA==}
+ sharp@0.33.2:
+ resolution: {integrity: sha512-WlYOPyyPDiiM07j/UO+E720ju6gtNtHjEGg5vovUk1Lgxyjm2LFO+37Nt/UI3MMh2l6hxTWQWi7qk3cXJTutcQ==}
+ engines: {libvips: '>=8.15.1', node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+
shebang-command@1.2.0:
resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
engines: {node: '>=0.10.0'}
@@ -12916,6 +13967,9 @@ packages:
simple-get@2.8.2:
resolution: {integrity: sha512-Ijd/rV5o+mSBBs4F/x9oDPtTx9Zb6X9brmnXvMW4J7IR15ngi9q5xxqWBKU744jTZiaXtxaPL7uHG6vtN8kUkw==}
+ simple-swizzle@0.2.2:
+ resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
+
sisteransi@1.0.5:
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
@@ -12937,6 +13991,10 @@ packages:
resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==}
engines: {node: '>=12'}
+ slice-ansi@2.1.0:
+ resolution: {integrity: sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==}
+ engines: {node: '>=6'}
+
smart-buffer@4.2.0:
resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==}
engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
@@ -13260,6 +14318,9 @@ packages:
strip-literal@1.3.0:
resolution: {integrity: sha512-PugKzOsyXpArk0yWmUwqOZecSO0GH0bPoctLcqNDH9J04pVW3lflYE0ujElBGTloevcxF5MofAOZ7C5l2b+wLg==}
+ strnum@1.0.5:
+ resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==}
+
strong-log-transformer@2.1.0:
resolution: {integrity: sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==}
engines: {node: '>=4'}
@@ -13298,6 +14359,9 @@ packages:
engines: {node: '>=8'}
hasBin: true
+ sudo-prompt@9.2.1:
+ resolution: {integrity: sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==}
+
superstruct@0.14.2:
resolution: {integrity: sha512-nPewA6m9mR3d6k7WkZ8N8zpTWfenFH3q9pA2PkuiZxINr9DKB2+40wEQf0ixn8VaGuJ78AB6iWOtStI+/4FKZQ==}
@@ -13418,6 +14482,10 @@ packages:
resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==}
engines: {node: '>=8'}
+ temp@0.8.4:
+ resolution: {integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==}
+ engines: {node: '>=6.0.0'}
+
tempy@0.6.0:
resolution: {integrity: sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==}
engines: {node: '>=10'}
@@ -13485,6 +14553,9 @@ packages:
thread-stream@0.15.2:
resolution: {integrity: sha512-UkEhKIg2pD+fjkHQKyJO3yoIvAP3N6RlNFt2dUhcS1FGvCD1cQa1M/PGknCLFIyZdtJOWQjejp7bdNqmN7zwdA==}
+ throat@5.0.0:
+ resolution: {integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==}
+
throat@6.0.2:
resolution: {integrity: sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ==}
@@ -13529,6 +14600,13 @@ packages:
resolution: {integrity: sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==}
engines: {node: '>=12'}
+ tldts-core@6.1.50:
+ resolution: {integrity: sha512-na2EcZqmdA2iV9zHV7OHQDxxdciEpxrjbkp+aHmZgnZKHzoElLajP59np5/4+sare9fQBfixgvXKx8ev1d7ytw==}
+
+ tldts@6.0.16:
+ resolution: {integrity: sha512-TkEq38COU640mzOKPk4D1oH3FFVvwEtMaKIfw/+F/umVsy7ONWu8PPQH0c11qJ/Jq/zbcQGprXGsT8GcaDSmJg==}
+ hasBin: true
+
tmp@0.0.33:
resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==}
engines: {node: '>=0.6.0'}
@@ -14139,6 +15217,18 @@ packages:
react:
optional: true
+ valtio@1.11.2:
+ resolution: {integrity: sha512-1XfIxnUXzyswPAPXo1P3Pdx2mq/pIqZICkWN60Hby0d9Iqb+MEIpqgYVlbflvHdrp2YR/q3jyKWRPJJ100yxaw==}
+ engines: {node: '>=12.20.0'}
+ peerDependencies:
+ '@types/react': '>=16.8'
+ react: '>=16.8'
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ react:
+ optional: true
+
varint@6.0.0:
resolution: {integrity: sha512-cXEIW6cfr15lFv563k4GuVuW/fiwjknytD37jIOLSdSWuOI6WnO/oKwmP2FQTU2l01LP8/M5TSAJpzUaGe3uWg==}
@@ -14165,6 +15255,14 @@ packages:
typescript:
optional: true
+ viem@2.9.25:
+ resolution: {integrity: sha512-W0QOXCsYQppnV89PQP0EnCvfZIEsDYqmpVakLPNrok4Q4B7651M3MV/sYifYcLWv3Mn4KUyMCUlVxlej6CfC/w==}
+ peerDependencies:
+ typescript: '>=5.0.4'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
vite-node@0.34.4:
resolution: {integrity: sha512-ho8HtiLc+nsmbwZMw8SlghESEE3KxJNp04F/jPUCLVvaURwt0d+r9LxEqCX5hvrrOQ0GSyxbYr5ZfRYhQ0yVKQ==}
engines: {node: '>=v14.18.0'}
@@ -14303,9 +15401,16 @@ packages:
jsdom:
optional: true
+ vlq@1.0.1:
+ resolution: {integrity: sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==}
+
vm@0.1.0:
resolution: {integrity: sha512-1aKVjgohVDnVhGrJLhl2k8zIrapH+7HsdnIjGvBp3XX2OCj6XGzsIbDp9rZ3r7t6qgDfXEE1EoEAEOLJm9LKnw==}
+ void-elements@3.1.0:
+ resolution: {integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==}
+ engines: {node: '>=0.10.0'}
+
vue-component-type-helpers@1.8.4:
resolution: {integrity: sha512-6bnLkn8O0JJyiFSIF0EfCogzeqNXpnjJ0vW/SZzNHfe6sPx30lTtTXlE5TFs2qhJlAtDFybStVNpL73cPe3OMQ==}
@@ -14774,6 +15879,17 @@ packages:
resolution: {integrity: sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA==}
engines: {node: '>=8'}
+ ws@6.2.3:
+ resolution: {integrity: sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==}
+ peerDependencies:
+ bufferutil: ^4.0.1
+ utf-8-validate: ^5.0.2
+ peerDependenciesMeta:
+ bufferutil:
+ optional: true
+ utf-8-validate:
+ optional: true
+
ws@7.4.6:
resolution: {integrity: sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==}
engines: {node: '>=8.3.0'}
@@ -15246,6 +16362,8 @@ snapshots:
'@babel/helper-plugin-utils@7.24.8': {}
+ '@babel/helper-plugin-utils@7.25.7': {}
+
'@babel/helper-remap-async-to-generator@7.22.17(@babel/core@7.21.8)':
dependencies:
'@babel/core': 7.21.8
@@ -15305,6 +16423,8 @@ snapshots:
'@babel/helper-validator-option@7.24.8': {}
+ '@babel/helper-validator-option@7.25.7': {}
+
'@babel/helper-wrap-function@7.22.17':
dependencies:
'@babel/helper-function-name': 7.24.7
@@ -15346,6 +16466,14 @@ snapshots:
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/plugin-transform-optional-chaining': 7.22.15(@babel/core@7.21.8)
+ '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.21.8)':
+ dependencies:
+ '@babel/core': 7.21.8
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-remap-async-to-generator': 7.22.17(@babel/core@7.21.8)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.8)
+
'@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.21.8)':
dependencies:
'@babel/core': 7.21.8
@@ -15361,6 +16489,18 @@ snapshots:
'@babel/helper-split-export-declaration': 7.24.7
'@babel/plugin-syntax-decorators': 7.22.10(@babel/core@7.21.8)
+ '@babel/plugin-proposal-export-default-from@7.25.7(@babel/core@7.21.8)':
+ dependencies:
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-export-default-from': 7.25.7(@babel/core@7.21.8)
+
+ '@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.21.8)':
+ dependencies:
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.8)
+
'@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.21.8)':
dependencies:
'@babel/core': 7.21.8
@@ -15373,6 +16513,21 @@ snapshots:
'@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.8)
+ '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.21.8)':
+ dependencies:
+ '@babel/compat-data': 7.22.9
+ '@babel/core': 7.21.8
+ '@babel/helper-compilation-targets': 7.22.15
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.8)
+ '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.21.8)
+
+ '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.21.8)':
+ dependencies:
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.8)
+
'@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.21.8)':
dependencies:
'@babel/core': 7.21.8
@@ -15443,6 +16598,11 @@ snapshots:
'@babel/core': 7.21.8
'@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-export-default-from@7.25.7(@babel/core@7.21.8)':
+ dependencies:
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.25.7
+
'@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.21.8)':
dependencies:
'@babel/core': 7.21.8
@@ -15453,10 +16613,15 @@ snapshots:
'@babel/core': 7.21.8
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-flow@7.22.5(@babel/core@7.22.17)':
+ '@babel/plugin-syntax-flow@7.25.7(@babel/core@7.21.8)':
+ dependencies:
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.25.7
+
+ '@babel/plugin-syntax-flow@7.25.7(@babel/core@7.22.17)':
dependencies:
'@babel/core': 7.22.17
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.21.8)':
dependencies:
@@ -15698,6 +16863,12 @@ snapshots:
'@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.21.8)
+ '@babel/plugin-transform-flow-strip-types@7.25.7(@babel/core@7.21.8)':
+ dependencies:
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.21.8)
+
'@babel/plugin-transform-for-of@7.22.15(@babel/core@7.21.8)':
dependencies:
'@babel/core': 7.21.8
@@ -15868,6 +17039,16 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-react-jsx-self@7.25.7(@babel/core@7.21.8)':
+ dependencies:
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.25.7
+
+ '@babel/plugin-transform-react-jsx-source@7.25.7(@babel/core@7.21.8)':
+ dependencies:
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.25.7
+
'@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.21.8)':
dependencies:
'@babel/core': 7.21.8
@@ -16076,6 +17257,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/preset-flow@7.25.7(@babel/core@7.21.8)':
+ dependencies:
+ '@babel/core': 7.21.8
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-validator-option': 7.25.7
+ '@babel/plugin-transform-flow-strip-types': 7.25.7(@babel/core@7.21.8)
+
'@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.21.8)':
dependencies:
'@babel/core': 7.21.8
@@ -16106,6 +17294,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/register@7.25.7(@babel/core@7.21.8)':
+ dependencies:
+ '@babel/core': 7.21.8
+ clone-deep: 4.0.1
+ find-cache-dir: 2.1.0
+ make-dir: 2.1.0
+ pirates: 4.0.6
+ source-map-support: 0.5.21
+
'@babel/regjsgen@0.8.0': {}
'@babel/runtime@7.24.7':
@@ -16116,6 +17313,10 @@ snapshots:
dependencies:
regenerator-runtime: 0.14.0
+ '@babel/runtime@7.25.7':
+ dependencies:
+ regenerator-runtime: 0.14.0
+
'@babel/template@7.24.7':
dependencies:
'@babel/code-frame': 7.24.7
@@ -16388,6 +17589,15 @@ snapshots:
- supports-color
- utf-8-validate
+ '@coinbase/wallet-sdk@4.0.4':
+ dependencies:
+ buffer: 6.0.3
+ clsx: 1.2.1
+ eventemitter3: 5.0.1
+ keccak: 3.0.4
+ preact: 10.22.1
+ sha.js: 2.4.11
+
'@confio/ics23@0.6.8':
dependencies:
'@noble/hashes': 1.4.0
@@ -16487,7 +17697,7 @@ snapshots:
'@cosmjs/utils@0.30.1': {}
- '@crossmint/client-sdk-aa@1.0.0-alpha.1(@babel/runtime@7.24.8)(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.7)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(bufferutil@4.0.7)(encoding@0.1.13)(react@18.2.0)(typescript@5.5.3)(utf-8-validate@5.0.10)(zod@3.22.4)':
+ '@crossmint/client-sdk-aa@1.0.0-alpha.1(@babel/runtime@7.25.7)(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.7)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(bufferutil@4.0.7)(encoding@0.1.13)(react@18.2.0)(typescript@5.5.3)(utf-8-validate@5.0.10)(zod@3.22.4)':
dependencies:
'@ambire/signature-validator': 1.3.1(bufferutil@4.0.7)(utf-8-validate@5.0.10)
'@crossmint/common-sdk-base': 0.0.12
@@ -16501,9 +17711,9 @@ snapshots:
'@lit-protocol/types': 3.1.2(bufferutil@4.0.7)(utf-8-validate@5.0.10)
'@reservoir0x/reservoir-sdk': 2.0.11(viem@2.8.16(bufferutil@4.0.7)(typescript@5.5.3)(utf-8-validate@5.0.10)(zod@3.22.4))
'@types/node-forge': 1.3.1
- '@web3auth/base': 7.3.2(@babel/runtime@7.24.8)(bufferutil@4.0.7)(utf-8-validate@5.0.10)
- '@web3auth/ethereum-provider': 7.3.2(@babel/runtime@7.24.8)(bufferutil@4.0.7)(utf-8-validate@5.0.10)
- '@web3auth/single-factor-auth': 7.3.0(@babel/runtime@7.24.8)(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ '@web3auth/base': 7.3.2(@babel/runtime@7.25.7)(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ '@web3auth/ethereum-provider': 7.3.2(@babel/runtime@7.25.7)(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ '@web3auth/single-factor-auth': 7.3.0(@babel/runtime@7.25.7)(bufferutil@4.0.7)(utf-8-validate@5.0.10)
'@zerodev/ecdsa-validator': 5.1.0(@zerodev/sdk@5.1.12(viem@2.8.16(bufferutil@4.0.7)(typescript@5.5.3)(utf-8-validate@5.0.10)(zod@3.22.4)))(permissionless@0.0.34(viem@2.8.16(bufferutil@4.0.7)(typescript@5.5.3)(utf-8-validate@5.0.10)(zod@3.22.4)))(viem@2.8.16(bufferutil@4.0.7)(typescript@5.5.3)(utf-8-validate@5.0.10)(zod@3.22.4))
'@zerodev/sdk': 5.1.12(viem@2.8.16(bufferutil@4.0.7)(typescript@5.5.3)(utf-8-validate@5.0.10)(zod@3.22.4))
'@zerodev/session-key': 5.1.0(@zerodev/sdk@5.1.12(viem@2.8.16(bufferutil@4.0.7)(typescript@5.5.3)(utf-8-validate@5.0.10)(zod@3.22.4)))(permissionless@0.0.34(viem@2.8.16(bufferutil@4.0.7)(typescript@5.5.3)(utf-8-validate@5.0.10)(zod@3.22.4)))(viem@2.8.16(bufferutil@4.0.7)(typescript@5.5.3)(utf-8-validate@5.0.10)(zod@3.22.4))
@@ -16736,6 +17946,106 @@ snapshots:
- react-dom
- utf-8-validate
+ '@dynamic-labs/embedded-wallet-evm@3.2.0(@babel/core@7.21.8)(@babel/preset-env@7.22.15(@babel/core@7.21.8))(@dynamic-labs/logger@3.2.0(eventemitter3@5.0.1))(@dynamic-labs/rpc-providers@3.2.0)(@types/react@18.3.3)(bufferutil@4.0.7)(encoding@0.1.13)(eventemitter3@5.0.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(utf-8-validate@5.0.10)(viem@2.17.5(bufferutil@4.0.7)(typescript@5.5.3)(utf-8-validate@5.0.10)(zod@3.22.4))':
+ dependencies:
+ '@dynamic-labs/embedded-wallet': 3.2.0(@dynamic-labs/rpc-providers@3.2.0)(@dynamic-labs/types@3.2.0)(encoding@0.1.13)(eventemitter3@5.0.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@dynamic-labs/ethereum-core': 3.2.0(@dynamic-labs/logger@3.2.0(eventemitter3@5.0.1))(@dynamic-labs/rpc-providers@3.2.0)(@dynamic-labs/types@3.2.0)(@dynamic-labs/utils@3.2.0)(@dynamic-labs/wallet-book@3.2.0(eventemitter3@5.0.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@dynamic-labs/wallet-connector-core@3.2.0(@dynamic-labs/logger@3.2.0(eventemitter3@5.0.1))(@dynamic-labs/rpc-providers@3.2.0)(@dynamic-labs/types@3.2.0)(@dynamic-labs/utils@3.2.0)(@dynamic-labs/wallet-book@3.2.0(eventemitter3@5.0.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eventemitter3@5.0.1))(viem@2.17.5(bufferutil@4.0.7)(typescript@5.5.3)(utf-8-validate@5.0.10)(zod@3.22.4))
+ '@dynamic-labs/sdk-api-core': 0.0.535
+ '@dynamic-labs/types': 3.2.0
+ '@dynamic-labs/utils': 3.2.0
+ '@dynamic-labs/wallet-book': 3.2.0(eventemitter3@5.0.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@dynamic-labs/wallet-connector-core': 3.2.0(@dynamic-labs/logger@3.2.0(eventemitter3@5.0.1))(@dynamic-labs/rpc-providers@3.2.0)(@dynamic-labs/types@3.2.0)(@dynamic-labs/utils@3.2.0)(@dynamic-labs/wallet-book@3.2.0(eventemitter3@5.0.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eventemitter3@5.0.1)
+ '@dynamic-labs/webauthn': 3.2.0(eventemitter3@5.0.1)
+ '@turnkey/api-key-stamper': 0.4.1
+ '@turnkey/http': 2.12.2(encoding@0.1.13)
+ '@turnkey/iframe-stamper': 2.0.0
+ '@turnkey/viem': 0.4.26(@babel/core@7.21.8)(@babel/preset-env@7.22.15(@babel/core@7.21.8))(@types/react@18.3.3)(bufferutil@4.0.7)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)(viem@2.17.5(bufferutil@4.0.7)(typescript@5.5.3)(utf-8-validate@5.0.10)(zod@3.22.4))
+ '@turnkey/webauthn-stamper': 0.5.0
+ viem: 2.17.5(bufferutil@4.0.7)(typescript@5.5.3)(utf-8-validate@5.0.10)(zod@3.22.4)
+ transitivePeerDependencies:
+ - '@babel/core'
+ - '@babel/preset-env'
+ - '@dynamic-labs/logger'
+ - '@dynamic-labs/rpc-providers'
+ - '@types/react'
+ - bufferutil
+ - encoding
+ - eventemitter3
+ - react
+ - react-dom
+ - supports-color
+ - utf-8-validate
+
+ '@dynamic-labs/embedded-wallet-solana@3.2.0(bufferutil@4.0.7)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react@18.3.1)(typescript@5.5.3)(utf-8-validate@5.0.10)(zod@3.22.4)':
+ dependencies:
+ '@dynamic-labs/embedded-wallet': 3.2.0(@dynamic-labs/rpc-providers@3.2.0)(@dynamic-labs/types@3.2.0)(encoding@0.1.13)(eventemitter3@5.0.1)(react-dom@18.2.0(react@18.3.1))(react@18.3.1)
+ '@dynamic-labs/logger': 3.2.0(eventemitter3@5.0.1)
+ '@dynamic-labs/rpc-providers': 3.2.0
+ '@dynamic-labs/sdk-api-core': 0.0.535
+ '@dynamic-labs/solana-core': 3.2.0(@dynamic-labs/rpc-providers@3.2.0)(@dynamic-labs/types@3.2.0)(@dynamic-labs/utils@3.2.0)(@dynamic-labs/wallet-book@3.2.0(eventemitter3@5.0.1)(react-dom@18.2.0(react@18.3.1))(react@18.3.1))(@dynamic-labs/wallet-connector-core@3.2.0(@dynamic-labs/logger@3.2.0(eventemitter3@5.0.1))(@dynamic-labs/rpc-providers@3.2.0)(@dynamic-labs/types@3.2.0)(@dynamic-labs/utils@3.2.0)(@dynamic-labs/wallet-book@3.2.0(eventemitter3@5.0.1)(react-dom@18.2.0(react@18.3.1))(react@18.3.1))(eventemitter3@5.0.1))(bufferutil@4.0.7)(encoding@0.1.13)(eventemitter3@5.0.1)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.5.3)(utf-8-validate@5.0.10)
+ '@dynamic-labs/types': 3.2.0
+ '@dynamic-labs/utils': 3.2.0
+ '@dynamic-labs/wallet-book': 3.2.0(eventemitter3@5.0.1)(react-dom@18.2.0(react@18.3.1))(react@18.3.1)
+ '@dynamic-labs/wallet-connector-core': 3.2.0(@dynamic-labs/logger@3.2.0(eventemitter3@5.0.1))(@dynamic-labs/rpc-providers@3.2.0)(@dynamic-labs/types@3.2.0)(@dynamic-labs/utils@3.2.0)(@dynamic-labs/wallet-book@3.2.0(eventemitter3@5.0.1)(react-dom@18.2.0(react@18.3.1))(react@18.3.1))(eventemitter3@5.0.1)
+ '@dynamic-labs/webauthn': 3.2.0(eventemitter3@5.0.1)
+ '@solana/spl-token': 0.4.6(@solana/web3.js@1.92.1(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.7)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.5.3)(utf-8-validate@5.0.10)
+ '@solana/web3.js': 1.92.1(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@turnkey/http': 2.12.2(encoding@0.1.13)
+ '@turnkey/iframe-stamper': 2.0.0
+ '@turnkey/solana': 0.3.9(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@turnkey/webauthn-stamper': 0.5.0
+ eventemitter3: 5.0.1
+ react-dom: 18.2.0(react@18.3.1)
+ viem: 2.9.25(bufferutil@4.0.7)(typescript@5.5.3)(utf-8-validate@5.0.10)(zod@3.22.4)
+ transitivePeerDependencies:
+ - bufferutil
+ - encoding
+ - fastestsmallesttextencoderdecoder
+ - react
+ - typescript
+ - utf-8-validate
+ - zod
+
+ '@dynamic-labs/embedded-wallet@3.2.0(@dynamic-labs/rpc-providers@3.2.0)(@dynamic-labs/types@3.2.0)(encoding@0.1.13)(eventemitter3@5.0.1)(react-dom@18.2.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@dynamic-labs/logger': 3.2.0(eventemitter3@5.0.1)
+ '@dynamic-labs/sdk-api-core': 0.0.535
+ '@dynamic-labs/utils': 3.2.0
+ '@dynamic-labs/wallet-book': 3.2.0(eventemitter3@5.0.1)(react-dom@18.2.0(react@18.3.1))(react@18.3.1)
+ '@dynamic-labs/wallet-connector-core': 3.2.0(@dynamic-labs/logger@3.2.0(eventemitter3@5.0.1))(@dynamic-labs/rpc-providers@3.2.0)(@dynamic-labs/types@3.2.0)(@dynamic-labs/utils@3.2.0)(@dynamic-labs/wallet-book@3.2.0(eventemitter3@5.0.1)(react-dom@18.2.0(react@18.3.1))(react@18.3.1))(eventemitter3@5.0.1)
+ '@dynamic-labs/webauthn': 3.2.0(eventemitter3@5.0.1)
+ '@turnkey/api-key-stamper': 0.4.1
+ '@turnkey/http': 2.12.2(encoding@0.1.13)
+ '@turnkey/iframe-stamper': 2.0.0
+ '@turnkey/webauthn-stamper': 0.5.0
+ transitivePeerDependencies:
+ - '@dynamic-labs/rpc-providers'
+ - '@dynamic-labs/types'
+ - encoding
+ - eventemitter3
+ - react
+ - react-dom
+
+ '@dynamic-labs/embedded-wallet@3.2.0(@dynamic-labs/rpc-providers@3.2.0)(@dynamic-labs/types@3.2.0)(encoding@0.1.13)(eventemitter3@5.0.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@dynamic-labs/logger': 3.2.0(eventemitter3@5.0.1)
+ '@dynamic-labs/sdk-api-core': 0.0.535
+ '@dynamic-labs/utils': 3.2.0
+ '@dynamic-labs/wallet-book': 3.2.0(eventemitter3@5.0.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@dynamic-labs/wallet-connector-core': 3.2.0(@dynamic-labs/logger@3.2.0(eventemitter3@5.0.1))(@dynamic-labs/rpc-providers@3.2.0)(@dynamic-labs/types@3.2.0)(@dynamic-labs/utils@3.2.0)(@dynamic-labs/wallet-book@3.2.0(eventemitter3@5.0.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eventemitter3@5.0.1)
+ '@dynamic-labs/webauthn': 3.2.0(eventemitter3@5.0.1)
+ '@turnkey/api-key-stamper': 0.4.1
+ '@turnkey/http': 2.12.2(encoding@0.1.13)
+ '@turnkey/iframe-stamper': 2.0.0
+ '@turnkey/webauthn-stamper': 0.5.0
+ transitivePeerDependencies:
+ - '@dynamic-labs/rpc-providers'
+ - '@dynamic-labs/types'
+ - encoding
+ - eventemitter3
+ - react
+ - react-dom
+
'@dynamic-labs/ethereum-all@0.17.29(@babel/core@7.22.17)(@dynamic-labs/logger@0.17.29)(@dynamic-labs/rpc-providers@0.17.29(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))(@dynamic-labs/utils@0.17.29(bufferutil@4.0.7)(utf-8-validate@5.0.10))(@dynamic-labs/wallet-book@0.17.29(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@solana/web3.js@1.95.1(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.7)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(utf-8-validate@5.0.10)':
dependencies:
'@dynamic-labs/blocto': 0.17.29(@dynamic-labs/logger@0.17.29)(@dynamic-labs/rpc-providers@0.17.29(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))(@dynamic-labs/utils@0.17.29(bufferutil@4.0.7)(utf-8-validate@5.0.10))(@dynamic-labs/wallet-book@0.17.29(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@solana/web3.js@1.95.1(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.7)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(utf-8-validate@5.0.10)
@@ -16771,6 +18081,17 @@ snapshots:
- supports-color
- utf-8-validate
+ '@dynamic-labs/ethereum-core@3.2.0(@dynamic-labs/logger@3.2.0(eventemitter3@5.0.1))(@dynamic-labs/rpc-providers@3.2.0)(@dynamic-labs/types@3.2.0)(@dynamic-labs/utils@3.2.0)(@dynamic-labs/wallet-book@3.2.0(eventemitter3@5.0.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@dynamic-labs/wallet-connector-core@3.2.0(@dynamic-labs/logger@3.2.0(eventemitter3@5.0.1))(@dynamic-labs/rpc-providers@3.2.0)(@dynamic-labs/types@3.2.0)(@dynamic-labs/utils@3.2.0)(@dynamic-labs/wallet-book@3.2.0(eventemitter3@5.0.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eventemitter3@5.0.1))(viem@2.17.5(bufferutil@4.0.7)(typescript@5.5.3)(utf-8-validate@5.0.10)(zod@3.22.4))':
+ dependencies:
+ '@dynamic-labs/logger': 3.2.0(eventemitter3@5.0.1)
+ '@dynamic-labs/rpc-providers': 3.2.0
+ '@dynamic-labs/sdk-api-core': 0.0.535
+ '@dynamic-labs/types': 3.2.0
+ '@dynamic-labs/utils': 3.2.0
+ '@dynamic-labs/wallet-book': 3.2.0(eventemitter3@5.0.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@dynamic-labs/wallet-connector-core': 3.2.0(@dynamic-labs/logger@3.2.0(eventemitter3@5.0.1))(@dynamic-labs/rpc-providers@3.2.0)(@dynamic-labs/types@3.2.0)(@dynamic-labs/utils@3.2.0)(@dynamic-labs/wallet-book@3.2.0(eventemitter3@5.0.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eventemitter3@5.0.1)
+ viem: 2.17.5(bufferutil@4.0.7)(typescript@5.5.3)(utf-8-validate@5.0.10)(zod@3.22.4)
+
'@dynamic-labs/ethereum@0.17.29(@dynamic-labs/logger@0.17.29)(bufferutil@4.0.7)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(utf-8-validate@5.0.10)':
dependencies:
'@dynamic-labs/rpc-providers': 0.17.29(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
@@ -16806,6 +18127,45 @@ snapshots:
- supports-color
- utf-8-validate
+ '@dynamic-labs/ethereum@3.2.0(@babel/core@7.21.8)(@babel/preset-env@7.22.15(@babel/core@7.21.8))(@dynamic-labs/logger@3.2.0(eventemitter3@5.0.1))(@dynamic-labs/rpc-providers@3.2.0)(@types/react@18.3.3)(bufferutil@4.0.7)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(utf-8-validate@5.0.10)(viem@2.17.5(bufferutil@4.0.7)(typescript@5.5.3)(utf-8-validate@5.0.10)(zod@3.22.4))':
+ dependencies:
+ '@coinbase/wallet-sdk': 4.0.4
+ '@dynamic-labs/embedded-wallet-evm': 3.2.0(@babel/core@7.21.8)(@babel/preset-env@7.22.15(@babel/core@7.21.8))(@dynamic-labs/logger@3.2.0(eventemitter3@5.0.1))(@dynamic-labs/rpc-providers@3.2.0)(@types/react@18.3.3)(bufferutil@4.0.7)(encoding@0.1.13)(eventemitter3@5.0.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(utf-8-validate@5.0.10)(viem@2.17.5(bufferutil@4.0.7)(typescript@5.5.3)(utf-8-validate@5.0.10)(zod@3.22.4))
+ '@dynamic-labs/ethereum-core': 3.2.0(@dynamic-labs/logger@3.2.0(eventemitter3@5.0.1))(@dynamic-labs/rpc-providers@3.2.0)(@dynamic-labs/types@3.2.0)(@dynamic-labs/utils@3.2.0)(@dynamic-labs/wallet-book@3.2.0(eventemitter3@5.0.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@dynamic-labs/wallet-connector-core@3.2.0(@dynamic-labs/logger@3.2.0(eventemitter3@5.0.1))(@dynamic-labs/rpc-providers@3.2.0)(@dynamic-labs/types@3.2.0)(@dynamic-labs/utils@3.2.0)(@dynamic-labs/wallet-book@3.2.0(eventemitter3@5.0.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eventemitter3@5.0.1))(viem@2.17.5(bufferutil@4.0.7)(typescript@5.5.3)(utf-8-validate@5.0.10)(zod@3.22.4))
+ '@dynamic-labs/types': 3.2.0
+ '@dynamic-labs/utils': 3.2.0
+ '@dynamic-labs/wallet-book': 3.2.0(eventemitter3@5.0.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@dynamic-labs/wallet-connector-core': 3.2.0(@dynamic-labs/logger@3.2.0(eventemitter3@5.0.1))(@dynamic-labs/rpc-providers@3.2.0)(@dynamic-labs/types@3.2.0)(@dynamic-labs/utils@3.2.0)(@dynamic-labs/wallet-book@3.2.0(eventemitter3@5.0.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eventemitter3@5.0.1)
+ '@walletconnect/ethereum-provider': 2.11.2(@types/react@18.3.3)(bufferutil@4.0.7)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
+ '@walletconnect/types': 2.10.6
+ buffer: 6.0.3
+ eventemitter3: 5.0.1
+ viem: 2.17.5(bufferutil@4.0.7)(typescript@5.5.3)(utf-8-validate@5.0.10)(zod@3.22.4)
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@babel/core'
+ - '@babel/preset-env'
+ - '@capacitor/preferences'
+ - '@dynamic-labs/logger'
+ - '@dynamic-labs/rpc-providers'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@types/react'
+ - '@upstash/redis'
+ - '@vercel/kv'
+ - bufferutil
+ - encoding
+ - react
+ - react-dom
+ - supports-color
+ - utf-8-validate
+
'@dynamic-labs/flow-all@0.17.29(@dynamic-labs/logger@0.17.29)(@dynamic-labs/rpc-providers@0.17.29(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))(@dynamic-labs/wallet-book@0.17.29(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
'@dynamic-labs/flow': 0.17.29(@dynamic-labs/logger@0.17.29)(@dynamic-labs/rpc-providers@0.17.29(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))(@dynamic-labs/wallet-book@0.17.29(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
@@ -16838,6 +18198,24 @@ snapshots:
dependencies:
react: 18.3.1
+ '@dynamic-labs/iconic@3.2.0(eventemitter3@5.0.1)(react-dom@18.2.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@dynamic-labs/logger': 3.2.0(eventemitter3@5.0.1)
+ react: 18.3.1
+ react-dom: 18.2.0(react@18.3.1)
+ sharp: 0.33.2
+ transitivePeerDependencies:
+ - eventemitter3
+
+ '@dynamic-labs/iconic@3.2.0(eventemitter3@5.0.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@dynamic-labs/logger': 3.2.0(eventemitter3@5.0.1)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ sharp: 0.33.2
+ transitivePeerDependencies:
+ - eventemitter3
+
'@dynamic-labs/keplr@0.17.29(@dynamic-labs/logger@0.17.29)(@dynamic-labs/rpc-providers@0.17.29(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(utf-8-validate@5.0.10)':
dependencies:
'@dynamic-labs/types': 0.17.29(bufferutil@4.0.7)(utf-8-validate@5.0.10)
@@ -16861,6 +18239,10 @@ snapshots:
'@dynamic-labs/logger@0.17.29': {}
+ '@dynamic-labs/logger@3.2.0(eventemitter3@5.0.1)':
+ dependencies:
+ eventemitter3: 5.0.1
+
'@dynamic-labs/magic@0.17.29(@dynamic-labs/rpc-providers@0.17.29(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))(@dynamic-labs/wallet-book@0.17.29(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(bufferutil@4.0.7)(utf-8-validate@5.0.10)':
dependencies:
'@dynamic-labs/logger': 0.17.29
@@ -16896,6 +18278,21 @@ snapshots:
- react-dom
- utf-8-validate
+ '@dynamic-labs/multi-wallet@3.2.0(@dynamic-labs/logger@3.2.0(eventemitter3@5.0.1))(eventemitter3@5.0.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@dynamic-labs/rpc-providers': 3.2.0
+ '@dynamic-labs/sdk-api-core': 0.0.535
+ '@dynamic-labs/types': 3.2.0
+ '@dynamic-labs/utils': 3.2.0
+ '@dynamic-labs/wallet-book': 3.2.0(eventemitter3@5.0.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@dynamic-labs/wallet-connector-core': 3.2.0(@dynamic-labs/logger@3.2.0(eventemitter3@5.0.1))(@dynamic-labs/rpc-providers@3.2.0)(@dynamic-labs/types@3.2.0)(@dynamic-labs/utils@3.2.0)(@dynamic-labs/wallet-book@3.2.0(eventemitter3@5.0.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eventemitter3@5.0.1)
+ tslib: 2.4.1
+ transitivePeerDependencies:
+ - '@dynamic-labs/logger'
+ - eventemitter3
+ - react
+ - react-dom
+
'@dynamic-labs/myalgo@0.17.29(@dynamic-labs/logger@0.17.29)(@dynamic-labs/rpc-providers@0.17.29(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))(@dynamic-labs/wallet-book@0.17.29(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(bufferutil@4.0.7)(utf-8-validate@5.0.10)':
dependencies:
'@dynamic-labs/utils': 0.17.29(bufferutil@4.0.7)(utf-8-validate@5.0.10)
@@ -16918,6 +18315,12 @@ snapshots:
- encoding
- utf-8-validate
+ '@dynamic-labs/rpc-providers@3.2.0':
+ dependencies:
+ '@dynamic-labs/types': 3.2.0
+
+ '@dynamic-labs/sdk-api-core@0.0.535': {}
+
'@dynamic-labs/sdk-api@0.0.198': {}
'@dynamic-labs/sdk-react-core@0.17.29(@types/react@18.3.1)(bufferutil@4.0.7)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(utf-8-validate@5.0.10)':
@@ -16946,6 +18349,34 @@ snapshots:
- encoding
- utf-8-validate
+ '@dynamic-labs/sdk-react-core@3.2.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.21.8)(@babel/preset-env@7.22.15(@babel/core@7.21.8))(@types/react@18.3.3)(bufferutil@4.0.7)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)':
+ dependencies:
+ '@dynamic-labs/iconic': 3.2.0(eventemitter3@5.0.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@dynamic-labs/logger': 3.2.0(eventemitter3@5.0.1)
+ '@dynamic-labs/multi-wallet': 3.2.0(@dynamic-labs/logger@3.2.0(eventemitter3@5.0.1))(eventemitter3@5.0.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@dynamic-labs/rpc-providers': 3.2.0
+ '@dynamic-labs/sdk-api-core': 0.0.535
+ '@dynamic-labs/store': 3.2.0(eventemitter3@5.0.1)
+ '@dynamic-labs/types': 3.2.0
+ '@dynamic-labs/utils': 3.2.0
+ '@dynamic-labs/wallet-book': 3.2.0(eventemitter3@5.0.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@dynamic-labs/wallet-connector-core': 3.2.0(@dynamic-labs/logger@3.2.0(eventemitter3@5.0.1))(@dynamic-labs/rpc-providers@3.2.0)(@dynamic-labs/types@3.2.0)(@dynamic-labs/utils@3.2.0)(@dynamic-labs/wallet-book@3.2.0(eventemitter3@5.0.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eventemitter3@5.0.1)
+ '@hcaptcha/react-hcaptcha': 1.4.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ country-list: 2.3.0
+ eventemitter3: 5.0.1
+ formik: 2.2.9(react@18.3.1)
+ i18next: 23.4.6
+ qrcode: 1.5.1
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ react-focus-lock: 2.9.2(@types/react@18.3.3)(react@18.3.1)
+ react-i18next: 13.5.0(i18next@23.4.6)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.21.8)(@babel/preset-env@7.22.15(@babel/core@7.21.8))(@types/react@18.3.3)(bufferutil@4.0.7)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
+ react-international-phone: 4.2.5(react@18.3.1)
+ yup: 0.32.11
+ transitivePeerDependencies:
+ - '@types/react'
+ - react-native
+
'@dynamic-labs/sdk-react@0.17.29(@babel/core@7.22.17)(@dynamic-labs/logger@0.17.29)(@dynamic-labs/rpc-providers@0.17.29(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))(@dynamic-labs/utils@0.17.29(bufferutil@4.0.7)(utf-8-validate@5.0.10))(@dynamic-labs/wallet-book@0.17.29(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@solana/web3.js@1.95.1(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))(@types/react@18.3.1)(bufferutil@4.0.7)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(utf-8-validate@5.0.10)':
dependencies:
'@dynamic-labs/algorand-all': 0.17.29(@dynamic-labs/logger@0.17.29)(@dynamic-labs/rpc-providers@0.17.29(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))(@dynamic-labs/wallet-book@0.17.29(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(bufferutil@4.0.7)(utf-8-validate@5.0.10)
@@ -16996,6 +18427,42 @@ snapshots:
- encoding
- utf-8-validate
+ '@dynamic-labs/solana-core@3.2.0(@dynamic-labs/rpc-providers@3.2.0)(@dynamic-labs/types@3.2.0)(@dynamic-labs/utils@3.2.0)(@dynamic-labs/wallet-book@3.2.0(eventemitter3@5.0.1)(react-dom@18.2.0(react@18.3.1))(react@18.3.1))(@dynamic-labs/wallet-connector-core@3.2.0(@dynamic-labs/logger@3.2.0(eventemitter3@5.0.1))(@dynamic-labs/rpc-providers@3.2.0)(@dynamic-labs/types@3.2.0)(@dynamic-labs/utils@3.2.0)(@dynamic-labs/wallet-book@3.2.0(eventemitter3@5.0.1)(react-dom@18.2.0(react@18.3.1))(react@18.3.1))(eventemitter3@5.0.1))(bufferutil@4.0.7)(encoding@0.1.13)(eventemitter3@5.0.1)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.5.3)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@dynamic-labs/rpc-providers': 3.2.0
+ '@dynamic-labs/sdk-api-core': 0.0.535
+ '@dynamic-labs/types': 3.2.0
+ '@dynamic-labs/utils': 3.2.0
+ '@dynamic-labs/wallet-book': 3.2.0(eventemitter3@5.0.1)(react-dom@18.2.0(react@18.3.1))(react@18.3.1)
+ '@dynamic-labs/wallet-connector-core': 3.2.0(@dynamic-labs/logger@3.2.0(eventemitter3@5.0.1))(@dynamic-labs/rpc-providers@3.2.0)(@dynamic-labs/types@3.2.0)(@dynamic-labs/utils@3.2.0)(@dynamic-labs/wallet-book@3.2.0(eventemitter3@5.0.1)(react-dom@18.2.0(react@18.3.1))(react@18.3.1))(eventemitter3@5.0.1)
+ '@solana/spl-token': 0.4.6(@solana/web3.js@1.92.1(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.7)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.5.3)(utf-8-validate@5.0.10)
+ '@solana/web3.js': 1.92.1(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ eventemitter3: 5.0.1
+ transitivePeerDependencies:
+ - bufferutil
+ - encoding
+ - fastestsmallesttextencoderdecoder
+ - typescript
+ - utf-8-validate
+
+ '@dynamic-labs/solana-core@3.2.0(@dynamic-labs/rpc-providers@3.2.0)(@dynamic-labs/types@3.2.0)(@dynamic-labs/utils@3.2.0)(@dynamic-labs/wallet-book@3.2.0(eventemitter3@5.0.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@dynamic-labs/wallet-connector-core@3.2.0(@dynamic-labs/logger@3.2.0(eventemitter3@5.0.1))(@dynamic-labs/rpc-providers@3.2.0)(@dynamic-labs/types@3.2.0)(@dynamic-labs/utils@3.2.0)(@dynamic-labs/wallet-book@3.2.0(eventemitter3@5.0.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eventemitter3@5.0.1))(bufferutil@4.0.7)(encoding@0.1.13)(eventemitter3@5.0.1)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.5.3)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@dynamic-labs/rpc-providers': 3.2.0
+ '@dynamic-labs/sdk-api-core': 0.0.535
+ '@dynamic-labs/types': 3.2.0
+ '@dynamic-labs/utils': 3.2.0
+ '@dynamic-labs/wallet-book': 3.2.0(eventemitter3@5.0.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@dynamic-labs/wallet-connector-core': 3.2.0(@dynamic-labs/logger@3.2.0(eventemitter3@5.0.1))(@dynamic-labs/rpc-providers@3.2.0)(@dynamic-labs/types@3.2.0)(@dynamic-labs/utils@3.2.0)(@dynamic-labs/wallet-book@3.2.0(eventemitter3@5.0.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eventemitter3@5.0.1)
+ '@solana/spl-token': 0.4.6(@solana/web3.js@1.92.1(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.7)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.5.3)(utf-8-validate@5.0.10)
+ '@solana/web3.js': 1.92.1(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ eventemitter3: 5.0.1
+ transitivePeerDependencies:
+ - bufferutil
+ - encoding
+ - fastestsmallesttextencoderdecoder
+ - typescript
+ - utf-8-validate
+
'@dynamic-labs/solana@0.17.29(@dynamic-labs/logger@0.17.29)(@dynamic-labs/wallet-book@0.17.29(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
'@dynamic-labs/rpc-providers': 0.17.29(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
@@ -17010,6 +18477,35 @@ snapshots:
- encoding
- utf-8-validate
+ '@dynamic-labs/solana@3.2.0(@dynamic-labs/logger@3.2.0(eventemitter3@5.0.1))(bufferutil@4.0.7)(encoding@0.1.13)(eventemitter3@5.0.1)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)(utf-8-validate@5.0.10)(zod@3.22.4)':
+ dependencies:
+ '@dynamic-labs/embedded-wallet-solana': 3.2.0(bufferutil@4.0.7)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react@18.3.1)(typescript@5.5.3)(utf-8-validate@5.0.10)(zod@3.22.4)
+ '@dynamic-labs/rpc-providers': 3.2.0
+ '@dynamic-labs/sdk-api-core': 0.0.535
+ '@dynamic-labs/solana-core': 3.2.0(@dynamic-labs/rpc-providers@3.2.0)(@dynamic-labs/types@3.2.0)(@dynamic-labs/utils@3.2.0)(@dynamic-labs/wallet-book@3.2.0(eventemitter3@5.0.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@dynamic-labs/wallet-connector-core@3.2.0(@dynamic-labs/logger@3.2.0(eventemitter3@5.0.1))(@dynamic-labs/rpc-providers@3.2.0)(@dynamic-labs/types@3.2.0)(@dynamic-labs/utils@3.2.0)(@dynamic-labs/wallet-book@3.2.0(eventemitter3@5.0.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eventemitter3@5.0.1))(bufferutil@4.0.7)(encoding@0.1.13)(eventemitter3@5.0.1)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.5.3)(utf-8-validate@5.0.10)
+ '@dynamic-labs/types': 3.2.0
+ '@dynamic-labs/utils': 3.2.0
+ '@dynamic-labs/wallet-book': 3.2.0(eventemitter3@5.0.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@dynamic-labs/wallet-connector-core': 3.2.0(@dynamic-labs/logger@3.2.0(eventemitter3@5.0.1))(@dynamic-labs/rpc-providers@3.2.0)(@dynamic-labs/types@3.2.0)(@dynamic-labs/utils@3.2.0)(@dynamic-labs/wallet-book@3.2.0(eventemitter3@5.0.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eventemitter3@5.0.1)
+ '@solana/web3.js': 1.92.1(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@wallet-standard/app': 1.0.1
+ '@wallet-standard/base': 1.0.1
+ '@wallet-standard/experimental-features': 0.1.1
+ '@wallet-standard/features': 1.0.3
+ bs58: 5.0.0
+ tweetnacl: 1.0.3
+ transitivePeerDependencies:
+ - '@dynamic-labs/logger'
+ - bufferutil
+ - encoding
+ - eventemitter3
+ - fastestsmallesttextencoderdecoder
+ - react
+ - react-dom
+ - typescript
+ - utf-8-validate
+ - zod
+
'@dynamic-labs/starknet-all@0.17.29(@dynamic-labs/logger@0.17.29)(@dynamic-labs/rpc-providers@0.17.29(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))(@dynamic-labs/wallet-book@0.17.29(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
'@dynamic-labs/starknet': 0.17.29(@dynamic-labs/logger@0.17.29)(@dynamic-labs/rpc-providers@0.17.29(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))(@dynamic-labs/wallet-book@0.17.29(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
@@ -17035,6 +18531,12 @@ snapshots:
- encoding
- utf-8-validate
+ '@dynamic-labs/store@3.2.0(eventemitter3@5.0.1)':
+ dependencies:
+ '@dynamic-labs/logger': 3.2.0(eventemitter3@5.0.1)
+ transitivePeerDependencies:
+ - eventemitter3
+
'@dynamic-labs/types@0.17.29(bufferutil@4.0.7)(utf-8-validate@5.0.10)':
dependencies:
'@dynamic-labs/sdk-api': 0.0.198
@@ -17043,6 +18545,10 @@ snapshots:
- bufferutil
- utf-8-validate
+ '@dynamic-labs/types@3.2.0':
+ dependencies:
+ '@dynamic-labs/sdk-api-core': 0.0.535
+
'@dynamic-labs/utils@0.17.29(bufferutil@4.0.7)(utf-8-validate@5.0.10)':
dependencies:
'@dynamic-labs/types': 0.17.29(bufferutil@4.0.7)(utf-8-validate@5.0.10)
@@ -17050,12 +18556,45 @@ snapshots:
- bufferutil
- utf-8-validate
+ '@dynamic-labs/utils@3.2.0':
+ dependencies:
+ '@dynamic-labs/logger': 3.2.0(eventemitter3@5.0.1)
+ '@dynamic-labs/sdk-api-core': 0.0.535
+ '@dynamic-labs/types': 3.2.0
+ buffer: 6.0.3
+ eventemitter3: 5.0.1
+ tldts: 6.0.16
+
'@dynamic-labs/wallet-book@0.17.29(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@dynamic-labs/logger': 0.17.29
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@dynamic-labs/wallet-book@3.2.0(eventemitter3@5.0.1)(react-dom@18.2.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@dynamic-labs/iconic': 3.2.0(eventemitter3@5.0.1)(react-dom@18.2.0(react@18.3.1))(react@18.3.1)
+ '@dynamic-labs/logger': 3.2.0(eventemitter3@5.0.1)
+ '@dynamic-labs/utils': 3.2.0
+ react: 18.3.1
+ react-dom: 18.2.0(react@18.3.1)
+ util: 0.12.5
+ zod: 3.22.4
+ transitivePeerDependencies:
+ - eventemitter3
+
+ '@dynamic-labs/wallet-book@3.2.0(eventemitter3@5.0.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@dynamic-labs/iconic': 3.2.0(eventemitter3@5.0.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@dynamic-labs/logger': 3.2.0(eventemitter3@5.0.1)
+ '@dynamic-labs/utils': 3.2.0
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ util: 0.12.5
+ zod: 3.22.4
+ transitivePeerDependencies:
+ - eventemitter3
+
'@dynamic-labs/wallet-connector-core@0.17.29(@dynamic-labs/logger@0.17.29)(@dynamic-labs/rpc-providers@0.17.29(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))(@dynamic-labs/utils@0.17.29(bufferutil@4.0.7)(utf-8-validate@5.0.10))(@dynamic-labs/wallet-book@0.17.29(react-dom@18.3.1(react@18.3.1))(react@18.3.1))':
dependencies:
'@dynamic-labs/logger': 0.17.29
@@ -17063,6 +18602,39 @@ snapshots:
'@dynamic-labs/utils': 0.17.29(bufferutil@4.0.7)(utf-8-validate@5.0.10)
'@dynamic-labs/wallet-book': 0.17.29(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@dynamic-labs/wallet-connector-core@3.2.0(@dynamic-labs/logger@3.2.0(eventemitter3@5.0.1))(@dynamic-labs/rpc-providers@3.2.0)(@dynamic-labs/types@3.2.0)(@dynamic-labs/utils@3.2.0)(@dynamic-labs/wallet-book@3.2.0(eventemitter3@5.0.1)(react-dom@18.2.0(react@18.3.1))(react@18.3.1))(eventemitter3@5.0.1)':
+ dependencies:
+ '@dynamic-labs/logger': 3.2.0(eventemitter3@5.0.1)
+ '@dynamic-labs/rpc-providers': 3.2.0
+ '@dynamic-labs/sdk-api-core': 0.0.535
+ '@dynamic-labs/types': 3.2.0
+ '@dynamic-labs/utils': 3.2.0
+ '@dynamic-labs/wallet-book': 3.2.0(eventemitter3@5.0.1)(react-dom@18.2.0(react@18.3.1))(react@18.3.1)
+ eventemitter3: 5.0.1
+
+ '@dynamic-labs/wallet-connector-core@3.2.0(@dynamic-labs/logger@3.2.0(eventemitter3@5.0.1))(@dynamic-labs/rpc-providers@3.2.0)(@dynamic-labs/types@3.2.0)(@dynamic-labs/utils@3.2.0)(@dynamic-labs/wallet-book@3.2.0(eventemitter3@5.0.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(eventemitter3@5.0.1)':
+ dependencies:
+ '@dynamic-labs/logger': 3.2.0(eventemitter3@5.0.1)
+ '@dynamic-labs/rpc-providers': 3.2.0
+ '@dynamic-labs/sdk-api-core': 0.0.535
+ '@dynamic-labs/types': 3.2.0
+ '@dynamic-labs/utils': 3.2.0
+ '@dynamic-labs/wallet-book': 3.2.0(eventemitter3@5.0.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ eventemitter3: 5.0.1
+
+ '@dynamic-labs/webauthn@3.2.0(eventemitter3@5.0.1)':
+ dependencies:
+ '@dynamic-labs/logger': 3.2.0(eventemitter3@5.0.1)
+ '@simplewebauthn/browser': 9.0.1
+ '@simplewebauthn/types': 9.0.1
+ transitivePeerDependencies:
+ - eventemitter3
+
+ '@emnapi/runtime@0.45.0':
+ dependencies:
+ tslib: 2.6.3
+ optional: true
+
'@emotion/babel-plugin@11.12.0':
dependencies:
'@babel/helper-module-imports': 7.24.7
@@ -18051,9 +19623,15 @@ snapshots:
protobufjs: 7.2.5
yargs: 17.7.2
+ '@hapi/hoek@9.3.0': {}
+
+ '@hapi/topo@5.1.0':
+ dependencies:
+ '@hapi/hoek': 9.3.0
+
'@hcaptcha/react-hcaptcha@1.4.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.7
+ '@babel/runtime': 7.24.8
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
@@ -18088,6 +19666,25 @@ snapshots:
dependencies:
react: 18.2.0
+ '@hpke/chacha20poly1305@1.3.1':
+ dependencies:
+ '@hpke/core': 1.3.1
+ '@noble/ciphers': 0.5.3
+
+ '@hpke/core@1.3.1': {}
+
+ '@hpke/dhkem-x25519@1.3.1':
+ dependencies:
+ '@hpke/core': 1.3.1
+ '@noble/curves': 1.4.2
+ '@noble/hashes': 1.4.0
+
+ '@hpke/dhkem-x448@1.3.1':
+ dependencies:
+ '@hpke/core': 1.3.1
+ '@noble/curves': 1.4.2
+ '@noble/hashes': 1.4.0
+
'@humanwhocodes/config-array@0.11.14':
dependencies:
'@humanwhocodes/object-schema': 2.0.3
@@ -18102,6 +19699,81 @@ snapshots:
'@hutson/parse-repository-url@3.0.2': {}
+ '@img/sharp-darwin-arm64@0.33.2':
+ optionalDependencies:
+ '@img/sharp-libvips-darwin-arm64': 1.0.1
+ optional: true
+
+ '@img/sharp-darwin-x64@0.33.2':
+ optionalDependencies:
+ '@img/sharp-libvips-darwin-x64': 1.0.1
+ optional: true
+
+ '@img/sharp-libvips-darwin-arm64@1.0.1':
+ optional: true
+
+ '@img/sharp-libvips-darwin-x64@1.0.1':
+ optional: true
+
+ '@img/sharp-libvips-linux-arm64@1.0.1':
+ optional: true
+
+ '@img/sharp-libvips-linux-arm@1.0.1':
+ optional: true
+
+ '@img/sharp-libvips-linux-s390x@1.0.1':
+ optional: true
+
+ '@img/sharp-libvips-linux-x64@1.0.1':
+ optional: true
+
+ '@img/sharp-libvips-linuxmusl-arm64@1.0.1':
+ optional: true
+
+ '@img/sharp-libvips-linuxmusl-x64@1.0.1':
+ optional: true
+
+ '@img/sharp-linux-arm64@0.33.2':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-arm64': 1.0.1
+ optional: true
+
+ '@img/sharp-linux-arm@0.33.2':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-arm': 1.0.1
+ optional: true
+
+ '@img/sharp-linux-s390x@0.33.2':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-s390x': 1.0.1
+ optional: true
+
+ '@img/sharp-linux-x64@0.33.2':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-x64': 1.0.1
+ optional: true
+
+ '@img/sharp-linuxmusl-arm64@0.33.2':
+ optionalDependencies:
+ '@img/sharp-libvips-linuxmusl-arm64': 1.0.1
+ optional: true
+
+ '@img/sharp-linuxmusl-x64@0.33.2':
+ optionalDependencies:
+ '@img/sharp-libvips-linuxmusl-x64': 1.0.1
+ optional: true
+
+ '@img/sharp-wasm32@0.33.2':
+ dependencies:
+ '@emnapi/runtime': 0.45.0
+ optional: true
+
+ '@img/sharp-win32-ia32@0.33.2':
+ optional: true
+
+ '@img/sharp-win32-x64@0.33.2':
+ optional: true
+
'@ioredis/commands@1.2.0': {}
'@ipld/dag-cbor@6.0.15':
@@ -18138,6 +19810,8 @@ snapshots:
'@isaacs/string-locale-compare@1.1.0': {}
+ '@isaacs/ttlcache@1.4.1': {}
+
'@istanbuljs/load-nyc-config@1.1.0':
dependencies:
camelcase: 5.3.1
@@ -18284,6 +19958,10 @@ snapshots:
- supports-color
- ts-node
+ '@jest/create-cache-key-function@29.7.0':
+ dependencies:
+ '@jest/types': 29.6.3
+
'@jest/environment@27.5.1':
dependencies:
'@jest/fake-timers': 27.5.1
@@ -18498,6 +20176,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@jest/types@26.6.2':
+ dependencies:
+ '@types/istanbul-lib-coverage': 2.0.4
+ '@types/istanbul-reports': 3.0.1
+ '@types/node': 20.14.11
+ '@types/yargs': 15.0.19
+ chalk: 4.1.2
+
'@jest/types@27.5.1':
dependencies:
'@types/istanbul-lib-coverage': 2.0.4
@@ -20139,6 +21825,8 @@ snapshots:
dependencies:
eslint-scope: 5.1.1
+ '@noble/ciphers@0.5.3': {}
+
'@noble/curves@1.1.0':
dependencies:
'@noble/hashes': 1.3.1
@@ -20545,7 +22233,7 @@ snapshots:
'@onflow/config@1.4.1':
dependencies:
- '@babel/runtime': 7.24.7
+ '@babel/runtime': 7.24.8
'@onflow/util-actor': 1.3.3
'@onflow/util-invariant': 1.2.3
'@onflow/util-logger': 1.3.2
@@ -20557,7 +22245,7 @@ snapshots:
'@onflow/fcl@1.3.2(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
- '@babel/runtime': 7.24.7
+ '@babel/runtime': 7.24.8
'@onflow/config': 1.4.1
'@onflow/interaction': 0.0.11
'@onflow/rlp': 1.2.2
@@ -20581,12 +22269,12 @@ snapshots:
'@onflow/rlp@1.2.2':
dependencies:
- '@babel/runtime': 7.24.7
+ '@babel/runtime': 7.24.8
buffer: 6.0.3
'@onflow/sdk@1.5.1(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
- '@babel/runtime': 7.24.7
+ '@babel/runtime': 7.24.8
'@onflow/config': 1.4.1
'@onflow/rlp': 1.2.2
'@onflow/transport-http': 1.10.1(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
@@ -20609,7 +22297,7 @@ snapshots:
'@onflow/transport-http@1.10.1(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
- '@babel/runtime': 7.24.7
+ '@babel/runtime': 7.24.8
'@onflow/util-address': 1.2.2
'@onflow/util-invariant': 1.2.3
'@onflow/util-logger': 1.3.2
@@ -20627,42 +22315,42 @@ snapshots:
'@onflow/typedefs@1.3.0':
dependencies:
- '@babel/runtime': 7.24.7
+ '@babel/runtime': 7.24.8
'@onflow/types@1.4.0':
dependencies:
- '@babel/runtime': 7.24.7
+ '@babel/runtime': 7.24.8
'@onflow/util-logger': 1.3.2
transitivePeerDependencies:
- '@onflow/util-config'
'@onflow/util-actor@1.3.3':
dependencies:
- '@babel/runtime': 7.24.7
+ '@babel/runtime': 7.24.8
queue-microtask: 1.2.3
'@onflow/util-address@1.2.2':
dependencies:
- '@babel/runtime': 7.24.7
+ '@babel/runtime': 7.24.8
'@onflow/util-invariant@1.2.3':
dependencies:
- '@babel/runtime': 7.24.7
+ '@babel/runtime': 7.24.8
'@onflow/util-logger@1.3.2':
dependencies:
- '@babel/runtime': 7.24.7
+ '@babel/runtime': 7.24.8
'@onflow/util-template@1.2.2':
dependencies:
- '@babel/runtime': 7.24.7
+ '@babel/runtime': 7.24.8
'@onflow/util-logger': 1.3.2
transitivePeerDependencies:
- '@onflow/util-config'
'@onflow/util-uid@1.2.2':
dependencies:
- '@babel/runtime': 7.24.7
+ '@babel/runtime': 7.24.8
'@parcel/watcher-android-arm64@2.3.0':
optional: true
@@ -21280,6 +22968,294 @@ snapshots:
clsx: 2.1.1
react: 18.3.1
+ '@react-native-community/cli-clean@13.6.4(encoding@0.1.13)':
+ dependencies:
+ '@react-native-community/cli-tools': 13.6.4(encoding@0.1.13)
+ chalk: 4.1.2
+ execa: 5.1.1
+ fast-glob: 3.3.2
+ transitivePeerDependencies:
+ - encoding
+
+ '@react-native-community/cli-config@13.6.4(encoding@0.1.13)':
+ dependencies:
+ '@react-native-community/cli-tools': 13.6.4(encoding@0.1.13)
+ chalk: 4.1.2
+ cosmiconfig: 5.2.1
+ deepmerge: 4.3.1
+ fast-glob: 3.3.2
+ joi: 17.13.3
+ transitivePeerDependencies:
+ - encoding
+
+ '@react-native-community/cli-debugger-ui@13.6.4':
+ dependencies:
+ serve-static: 1.15.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@react-native-community/cli-doctor@13.6.4(encoding@0.1.13)':
+ dependencies:
+ '@react-native-community/cli-config': 13.6.4(encoding@0.1.13)
+ '@react-native-community/cli-platform-android': 13.6.4(encoding@0.1.13)
+ '@react-native-community/cli-platform-apple': 13.6.4(encoding@0.1.13)
+ '@react-native-community/cli-platform-ios': 13.6.4(encoding@0.1.13)
+ '@react-native-community/cli-tools': 13.6.4(encoding@0.1.13)
+ chalk: 4.1.2
+ command-exists: 1.2.9
+ deepmerge: 4.3.1
+ envinfo: 7.11.0
+ execa: 5.1.1
+ hermes-profile-transformer: 0.0.6
+ node-stream-zip: 1.15.0
+ ora: 5.4.1
+ semver: 7.6.0
+ strip-ansi: 5.2.0
+ wcwidth: 1.0.1
+ yaml: 2.4.5
+ transitivePeerDependencies:
+ - encoding
+
+ '@react-native-community/cli-hermes@13.6.4(encoding@0.1.13)':
+ dependencies:
+ '@react-native-community/cli-platform-android': 13.6.4(encoding@0.1.13)
+ '@react-native-community/cli-tools': 13.6.4(encoding@0.1.13)
+ chalk: 4.1.2
+ hermes-profile-transformer: 0.0.6
+ transitivePeerDependencies:
+ - encoding
+
+ '@react-native-community/cli-platform-android@13.6.4(encoding@0.1.13)':
+ dependencies:
+ '@react-native-community/cli-tools': 13.6.4(encoding@0.1.13)
+ chalk: 4.1.2
+ execa: 5.1.1
+ fast-glob: 3.3.2
+ fast-xml-parser: 4.5.0
+ logkitty: 0.7.1
+ transitivePeerDependencies:
+ - encoding
+
+ '@react-native-community/cli-platform-apple@13.6.4(encoding@0.1.13)':
+ dependencies:
+ '@react-native-community/cli-tools': 13.6.4(encoding@0.1.13)
+ chalk: 4.1.2
+ execa: 5.1.1
+ fast-glob: 3.3.2
+ fast-xml-parser: 4.5.0
+ ora: 5.4.1
+ transitivePeerDependencies:
+ - encoding
+
+ '@react-native-community/cli-platform-ios@13.6.4(encoding@0.1.13)':
+ dependencies:
+ '@react-native-community/cli-platform-apple': 13.6.4(encoding@0.1.13)
+ transitivePeerDependencies:
+ - encoding
+
+ '@react-native-community/cli-server-api@13.6.4(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@react-native-community/cli-debugger-ui': 13.6.4
+ '@react-native-community/cli-tools': 13.6.4(encoding@0.1.13)
+ compression: 1.7.4
+ connect: 3.7.0
+ errorhandler: 1.5.1
+ nocache: 3.0.4
+ pretty-format: 26.6.2
+ serve-static: 1.15.0
+ ws: 7.5.10(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ transitivePeerDependencies:
+ - bufferutil
+ - encoding
+ - supports-color
+ - utf-8-validate
+
+ '@react-native-community/cli-tools@13.6.4(encoding@0.1.13)':
+ dependencies:
+ appdirsjs: 1.2.7
+ chalk: 4.1.2
+ execa: 5.1.1
+ find-up: 5.0.0
+ mime: 2.6.0
+ node-fetch: 2.7.0(encoding@0.1.13)
+ open: 6.4.0
+ ora: 5.4.1
+ semver: 7.6.0
+ shell-quote: 1.8.1
+ sudo-prompt: 9.2.1
+ transitivePeerDependencies:
+ - encoding
+
+ '@react-native-community/cli-types@13.6.4':
+ dependencies:
+ joi: 17.13.3
+
+ '@react-native-community/cli@13.6.4(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@react-native-community/cli-clean': 13.6.4(encoding@0.1.13)
+ '@react-native-community/cli-config': 13.6.4(encoding@0.1.13)
+ '@react-native-community/cli-debugger-ui': 13.6.4
+ '@react-native-community/cli-doctor': 13.6.4(encoding@0.1.13)
+ '@react-native-community/cli-hermes': 13.6.4(encoding@0.1.13)
+ '@react-native-community/cli-server-api': 13.6.4(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@react-native-community/cli-tools': 13.6.4(encoding@0.1.13)
+ '@react-native-community/cli-types': 13.6.4
+ chalk: 4.1.2
+ commander: 9.5.0
+ deepmerge: 4.3.1
+ execa: 5.1.1
+ find-up: 4.1.0
+ fs-extra: 8.1.0
+ graceful-fs: 4.2.11
+ prompts: 2.4.2
+ semver: 7.6.0
+ transitivePeerDependencies:
+ - bufferutil
+ - encoding
+ - supports-color
+ - utf-8-validate
+
+ '@react-native/assets-registry@0.74.81': {}
+
+ '@react-native/babel-plugin-codegen@0.74.81(@babel/preset-env@7.22.15(@babel/core@7.21.8))':
+ dependencies:
+ '@react-native/codegen': 0.74.81(@babel/preset-env@7.22.15(@babel/core@7.21.8))
+ transitivePeerDependencies:
+ - '@babel/preset-env'
+ - supports-color
+
+ '@react-native/babel-preset@0.74.81(@babel/core@7.21.8)(@babel/preset-env@7.22.15(@babel/core@7.21.8))':
+ dependencies:
+ '@babel/core': 7.21.8
+ '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.21.8)
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.21.8)
+ '@babel/plugin-proposal-export-default-from': 7.25.7(@babel/core@7.21.8)
+ '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.21.8)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.21.8)
+ '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.21.8)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.21.8)
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.21.8)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.21.8)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.8)
+ '@babel/plugin-syntax-export-default-from': 7.25.7(@babel/core@7.21.8)
+ '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.21.8)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.8)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.8)
+ '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.21.8)
+ '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.21.8)
+ '@babel/plugin-transform-block-scoping': 7.22.15(@babel/core@7.21.8)
+ '@babel/plugin-transform-classes': 7.22.15(@babel/core@7.21.8)
+ '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.21.8)
+ '@babel/plugin-transform-destructuring': 7.22.15(@babel/core@7.21.8)
+ '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.21.8)
+ '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.21.8)
+ '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.21.8)
+ '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.21.8)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.21.8)
+ '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.21.8)
+ '@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.21.8)
+ '@babel/plugin-transform-private-property-in-object': 7.22.11(@babel/core@7.21.8)
+ '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.21.8)
+ '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.21.8)
+ '@babel/plugin-transform-react-jsx-self': 7.25.7(@babel/core@7.21.8)
+ '@babel/plugin-transform-react-jsx-source': 7.25.7(@babel/core@7.21.8)
+ '@babel/plugin-transform-runtime': 7.24.7(@babel/core@7.21.8)
+ '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.21.8)
+ '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.21.8)
+ '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.21.8)
+ '@babel/plugin-transform-typescript': 7.24.8(@babel/core@7.21.8)
+ '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.21.8)
+ '@babel/template': 7.24.7
+ '@react-native/babel-plugin-codegen': 0.74.81(@babel/preset-env@7.22.15(@babel/core@7.21.8))
+ babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.21.8)
+ react-refresh: 0.14.2
+ transitivePeerDependencies:
+ - '@babel/preset-env'
+ - supports-color
+
+ '@react-native/codegen@0.74.81(@babel/preset-env@7.22.15(@babel/core@7.21.8))':
+ dependencies:
+ '@babel/parser': 7.24.8
+ '@babel/preset-env': 7.22.15(@babel/core@7.21.8)
+ glob: 7.2.3
+ hermes-parser: 0.19.1
+ invariant: 2.2.4
+ jscodeshift: 0.14.0(@babel/preset-env@7.22.15(@babel/core@7.21.8))
+ mkdirp: 0.5.6
+ nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@react-native/community-cli-plugin@0.74.81(@babel/core@7.21.8)(@babel/preset-env@7.22.15(@babel/core@7.21.8))(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@react-native-community/cli-server-api': 13.6.4(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@react-native-community/cli-tools': 13.6.4(encoding@0.1.13)
+ '@react-native/dev-middleware': 0.74.81(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@react-native/metro-babel-transformer': 0.74.81(@babel/core@7.21.8)(@babel/preset-env@7.22.15(@babel/core@7.21.8))
+ chalk: 4.1.2
+ execa: 5.1.1
+ metro: 0.80.12(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ metro-config: 0.80.12(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ metro-core: 0.80.12
+ node-fetch: 2.7.0(encoding@0.1.13)
+ querystring: 0.2.1
+ readline: 1.3.0
+ transitivePeerDependencies:
+ - '@babel/core'
+ - '@babel/preset-env'
+ - bufferutil
+ - encoding
+ - supports-color
+ - utf-8-validate
+
+ '@react-native/debugger-frontend@0.74.81': {}
+
+ '@react-native/dev-middleware@0.74.81(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@isaacs/ttlcache': 1.4.1
+ '@react-native/debugger-frontend': 0.74.81
+ '@rnx-kit/chromium-edge-launcher': 1.0.0
+ chrome-launcher: 0.15.2
+ connect: 3.7.0
+ debug: 2.6.9
+ node-fetch: 2.7.0(encoding@0.1.13)
+ nullthrows: 1.1.1
+ open: 7.4.2
+ selfsigned: 2.4.1
+ serve-static: 1.15.0
+ temp-dir: 2.0.0
+ ws: 6.2.3(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ transitivePeerDependencies:
+ - bufferutil
+ - encoding
+ - supports-color
+ - utf-8-validate
+
+ '@react-native/gradle-plugin@0.74.81': {}
+
+ '@react-native/js-polyfills@0.74.81': {}
+
+ '@react-native/metro-babel-transformer@0.74.81(@babel/core@7.21.8)(@babel/preset-env@7.22.15(@babel/core@7.21.8))':
+ dependencies:
+ '@babel/core': 7.21.8
+ '@react-native/babel-preset': 0.74.81(@babel/core@7.21.8)(@babel/preset-env@7.22.15(@babel/core@7.21.8))
+ hermes-parser: 0.19.1
+ nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - '@babel/preset-env'
+ - supports-color
+
+ '@react-native/normalize-colors@0.74.81': {}
+
+ '@react-native/virtualized-lists@0.74.81(@types/react@18.3.3)(react-native@0.74.0(@babel/core@7.21.8)(@babel/preset-env@7.22.15(@babel/core@7.21.8))(@types/react@18.3.3)(bufferutil@4.0.7)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)':
+ dependencies:
+ invariant: 2.2.4
+ nullthrows: 1.1.1
+ react: 18.3.1
+ react-native: 0.74.0(@babel/core@7.21.8)(@babel/preset-env@7.22.15(@babel/core@7.21.8))(@types/react@18.3.3)(bufferutil@4.0.7)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
+ optionalDependencies:
+ '@types/react': 18.3.3
+
'@react-stately/utils@3.10.3(react@18.3.1)':
dependencies:
'@swc/helpers': 0.5.11
@@ -21305,6 +23281,17 @@ snapshots:
transitivePeerDependencies:
- debug
+ '@rnx-kit/chromium-edge-launcher@1.0.0':
+ dependencies:
+ '@types/node': 18.19.54
+ escape-string-regexp: 4.0.0
+ is-wsl: 2.2.0
+ lighthouse-logger: 1.4.2
+ mkdirp: 1.0.4
+ rimraf: 3.0.2
+ transitivePeerDependencies:
+ - supports-color
+
'@rollup/plugin-babel@5.3.1(@babel/core@7.21.8)(@types/babel__core@7.20.1)(rollup@2.79.1)':
dependencies:
'@babel/core': 7.21.8
@@ -21528,6 +23515,14 @@ snapshots:
dependencies:
'@types/hast': 3.0.4
+ '@sideway/address@4.1.5':
+ dependencies:
+ '@hapi/hoek': 9.3.0
+
+ '@sideway/formula@3.0.1': {}
+
+ '@sideway/pinpoint@2.0.0': {}
+
'@sigstore/bundle@1.1.0':
dependencies:
'@sigstore/protobuf-specs': 0.2.1
@@ -21557,6 +23552,12 @@ snapshots:
dependencies:
'@simplewebauthn/typescript-types': 8.3.4
+ '@simplewebauthn/browser@9.0.1':
+ dependencies:
+ '@simplewebauthn/types': 9.0.1
+
+ '@simplewebauthn/types@9.0.1': {}
+
'@simplewebauthn/typescript-types@7.4.0': {}
'@simplewebauthn/typescript-types@8.3.4': {}
@@ -21583,10 +23584,153 @@ snapshots:
'@socket.io/component-emitter@3.1.0': {}
+ '@solana/buffer-layout-utils@0.2.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@solana/buffer-layout': 4.0.1
+ '@solana/web3.js': 1.95.1(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ bigint-buffer: 1.1.5
+ bignumber.js: 9.1.2
+ transitivePeerDependencies:
+ - bufferutil
+ - encoding
+ - utf-8-validate
+
'@solana/buffer-layout@4.0.1':
dependencies:
buffer: 6.0.3
+ '@solana/codecs-core@2.0.0-preview.2':
+ dependencies:
+ '@solana/errors': 2.0.0-preview.2
+
+ '@solana/codecs-core@2.0.0-rc.1(typescript@5.5.3)':
+ dependencies:
+ '@solana/errors': 2.0.0-rc.1(typescript@5.5.3)
+ typescript: 5.5.3
+
+ '@solana/codecs-data-structures@2.0.0-preview.2':
+ dependencies:
+ '@solana/codecs-core': 2.0.0-preview.2
+ '@solana/codecs-numbers': 2.0.0-preview.2
+ '@solana/errors': 2.0.0-preview.2
+
+ '@solana/codecs-data-structures@2.0.0-rc.1(typescript@5.5.3)':
+ dependencies:
+ '@solana/codecs-core': 2.0.0-rc.1(typescript@5.5.3)
+ '@solana/codecs-numbers': 2.0.0-rc.1(typescript@5.5.3)
+ '@solana/errors': 2.0.0-rc.1(typescript@5.5.3)
+ typescript: 5.5.3
+
+ '@solana/codecs-numbers@2.0.0-preview.2':
+ dependencies:
+ '@solana/codecs-core': 2.0.0-preview.2
+ '@solana/errors': 2.0.0-preview.2
+
+ '@solana/codecs-numbers@2.0.0-rc.1(typescript@5.5.3)':
+ dependencies:
+ '@solana/codecs-core': 2.0.0-rc.1(typescript@5.5.3)
+ '@solana/errors': 2.0.0-rc.1(typescript@5.5.3)
+ typescript: 5.5.3
+
+ '@solana/codecs-strings@2.0.0-preview.2(fastestsmallesttextencoderdecoder@1.0.22)':
+ dependencies:
+ '@solana/codecs-core': 2.0.0-preview.2
+ '@solana/codecs-numbers': 2.0.0-preview.2
+ '@solana/errors': 2.0.0-preview.2
+ fastestsmallesttextencoderdecoder: 1.0.22
+
+ '@solana/codecs-strings@2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.5.3)':
+ dependencies:
+ '@solana/codecs-core': 2.0.0-rc.1(typescript@5.5.3)
+ '@solana/codecs-numbers': 2.0.0-rc.1(typescript@5.5.3)
+ '@solana/errors': 2.0.0-rc.1(typescript@5.5.3)
+ fastestsmallesttextencoderdecoder: 1.0.22
+ typescript: 5.5.3
+
+ '@solana/codecs@2.0.0-preview.2(fastestsmallesttextencoderdecoder@1.0.22)':
+ dependencies:
+ '@solana/codecs-core': 2.0.0-preview.2
+ '@solana/codecs-data-structures': 2.0.0-preview.2
+ '@solana/codecs-numbers': 2.0.0-preview.2
+ '@solana/codecs-strings': 2.0.0-preview.2(fastestsmallesttextencoderdecoder@1.0.22)
+ '@solana/options': 2.0.0-preview.2
+ transitivePeerDependencies:
+ - fastestsmallesttextencoderdecoder
+
+ '@solana/codecs@2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.5.3)':
+ dependencies:
+ '@solana/codecs-core': 2.0.0-rc.1(typescript@5.5.3)
+ '@solana/codecs-data-structures': 2.0.0-rc.1(typescript@5.5.3)
+ '@solana/codecs-numbers': 2.0.0-rc.1(typescript@5.5.3)
+ '@solana/codecs-strings': 2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.5.3)
+ '@solana/options': 2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.5.3)
+ typescript: 5.5.3
+ transitivePeerDependencies:
+ - fastestsmallesttextencoderdecoder
+
+ '@solana/errors@2.0.0-preview.2':
+ dependencies:
+ chalk: 5.3.0
+ commander: 12.1.0
+
+ '@solana/errors@2.0.0-rc.1(typescript@5.5.3)':
+ dependencies:
+ chalk: 5.3.0
+ commander: 12.1.0
+ typescript: 5.5.3
+
+ '@solana/options@2.0.0-preview.2':
+ dependencies:
+ '@solana/codecs-core': 2.0.0-preview.2
+ '@solana/codecs-numbers': 2.0.0-preview.2
+
+ '@solana/options@2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.5.3)':
+ dependencies:
+ '@solana/codecs-core': 2.0.0-rc.1(typescript@5.5.3)
+ '@solana/codecs-data-structures': 2.0.0-rc.1(typescript@5.5.3)
+ '@solana/codecs-numbers': 2.0.0-rc.1(typescript@5.5.3)
+ '@solana/codecs-strings': 2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.5.3)
+ '@solana/errors': 2.0.0-rc.1(typescript@5.5.3)
+ typescript: 5.5.3
+ transitivePeerDependencies:
+ - fastestsmallesttextencoderdecoder
+
+ '@solana/spl-token-group@0.0.4(@solana/web3.js@1.92.1(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))(fastestsmallesttextencoderdecoder@1.0.22)':
+ dependencies:
+ '@solana/codecs': 2.0.0-preview.2(fastestsmallesttextencoderdecoder@1.0.22)
+ '@solana/spl-type-length-value': 0.1.0
+ '@solana/web3.js': 1.92.1(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ transitivePeerDependencies:
+ - fastestsmallesttextencoderdecoder
+
+ '@solana/spl-token-metadata@0.1.5(@solana/web3.js@1.92.1(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.5.3)':
+ dependencies:
+ '@solana/codecs': 2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.5.3)
+ '@solana/spl-type-length-value': 0.1.0
+ '@solana/web3.js': 1.92.1(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ transitivePeerDependencies:
+ - fastestsmallesttextencoderdecoder
+ - typescript
+
+ '@solana/spl-token@0.4.6(@solana/web3.js@1.92.1(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.7)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.5.3)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@solana/buffer-layout': 4.0.1
+ '@solana/buffer-layout-utils': 0.2.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@solana/spl-token-group': 0.0.4(@solana/web3.js@1.92.1(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))(fastestsmallesttextencoderdecoder@1.0.22)
+ '@solana/spl-token-metadata': 0.1.5(@solana/web3.js@1.92.1(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.5.3)
+ '@solana/web3.js': 1.92.1(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ buffer: 6.0.3
+ transitivePeerDependencies:
+ - bufferutil
+ - encoding
+ - fastestsmallesttextencoderdecoder
+ - typescript
+ - utf-8-validate
+
+ '@solana/spl-type-length-value@0.1.0':
+ dependencies:
+ buffer: 6.0.3
+
'@solana/web3.js@1.70.1(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
'@babel/runtime': 7.24.7
@@ -21609,6 +23753,28 @@ snapshots:
- encoding
- utf-8-validate
+ '@solana/web3.js@1.92.1(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@babel/runtime': 7.24.8
+ '@noble/curves': 1.4.2
+ '@noble/hashes': 1.4.0
+ '@solana/buffer-layout': 4.0.1
+ agentkeepalive: 4.5.0
+ bigint-buffer: 1.1.5
+ bn.js: 5.2.1
+ borsh: 0.7.0
+ bs58: 4.0.1
+ buffer: 6.0.3
+ fast-stable-stringify: 1.0.0
+ jayson: 4.1.1(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ node-fetch: 2.7.0(encoding@0.1.13)
+ rpc-websockets: 7.11.2
+ superstruct: 1.0.4
+ transitivePeerDependencies:
+ - bufferutil
+ - encoding
+ - utf-8-validate
+
'@solana/web3.js@1.95.1(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
'@babel/runtime': 7.24.8
@@ -21911,14 +24077,14 @@ snapshots:
- supports-color
- utf-8-validate
- '@toruslabs/base-controllers@4.11.0(@babel/runtime@7.24.8)(bufferutil@4.0.7)(utf-8-validate@5.0.10)':
+ '@toruslabs/base-controllers@4.11.0(@babel/runtime@7.25.7)(bufferutil@4.0.7)(utf-8-validate@5.0.10)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.7
'@ethereumjs/util': 9.0.1
'@metamask/rpc-errors': 6.1.0
'@toruslabs/broadcast-channel': 9.0.1(bufferutil@4.0.7)(utf-8-validate@5.0.10)
- '@toruslabs/http-helpers': 6.0.0(@babel/runtime@7.24.8)
- '@toruslabs/openlogin-jrpc': 6.2.11(@babel/runtime@7.24.8)
+ '@toruslabs/http-helpers': 6.0.0(@babel/runtime@7.25.7)
+ '@toruslabs/openlogin-jrpc': 6.2.11(@babel/runtime@7.25.7)
async-mutex: 0.4.0
bignumber.js: 9.1.2
bowser: 2.11.0
@@ -21938,10 +24104,10 @@ snapshots:
transitivePeerDependencies:
- '@sentry/types'
- '@toruslabs/base-session-manager@3.0.0(@babel/runtime@7.24.8)':
+ '@toruslabs/base-session-manager@3.0.0(@babel/runtime@7.25.7)':
dependencies:
- '@babel/runtime': 7.24.8
- '@toruslabs/http-helpers': 5.0.0(@babel/runtime@7.24.8)
+ '@babel/runtime': 7.25.7
+ '@toruslabs/http-helpers': 5.0.0(@babel/runtime@7.25.7)
transitivePeerDependencies:
- '@sentry/types'
@@ -21965,9 +24131,9 @@ snapshots:
dependencies:
'@babel/runtime': 7.24.7
- '@toruslabs/constants@13.1.0(@babel/runtime@7.24.8)':
+ '@toruslabs/constants@13.1.0(@babel/runtime@7.25.7)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.7
'@toruslabs/eccrypto@4.0.0':
dependencies:
@@ -21983,12 +24149,12 @@ snapshots:
transitivePeerDependencies:
- '@sentry/types'
- '@toruslabs/fetch-node-details@13.1.1(@babel/runtime@7.24.8)':
+ '@toruslabs/fetch-node-details@13.1.1(@babel/runtime@7.25.7)':
dependencies:
- '@babel/runtime': 7.24.8
- '@toruslabs/constants': 13.1.0(@babel/runtime@7.24.8)
- '@toruslabs/fnd-base': 13.1.1(@babel/runtime@7.24.8)
- '@toruslabs/http-helpers': 5.0.0(@babel/runtime@7.24.8)
+ '@babel/runtime': 7.25.7
+ '@toruslabs/constants': 13.1.0(@babel/runtime@7.25.7)
+ '@toruslabs/fnd-base': 13.1.1(@babel/runtime@7.25.7)
+ '@toruslabs/http-helpers': 5.0.0(@babel/runtime@7.25.7)
loglevel: 1.8.1
transitivePeerDependencies:
- '@sentry/types'
@@ -22000,10 +24166,10 @@ snapshots:
'@babel/runtime': 7.24.7
'@toruslabs/constants': 13.1.0(@babel/runtime@7.24.7)
- '@toruslabs/fnd-base@13.1.1(@babel/runtime@7.24.8)':
+ '@toruslabs/fnd-base@13.1.1(@babel/runtime@7.25.7)':
dependencies:
- '@babel/runtime': 7.24.8
- '@toruslabs/constants': 13.1.0(@babel/runtime@7.24.8)
+ '@babel/runtime': 7.25.7
+ '@toruslabs/constants': 13.1.0(@babel/runtime@7.25.7)
'@toruslabs/http-helpers@5.0.0(@babel/runtime@7.24.7)':
dependencies:
@@ -22011,9 +24177,9 @@ snapshots:
lodash.merge: 4.6.2
loglevel: 1.8.1
- '@toruslabs/http-helpers@5.0.0(@babel/runtime@7.24.8)':
+ '@toruslabs/http-helpers@5.0.0(@babel/runtime@7.25.7)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.7
lodash.merge: 4.6.2
loglevel: 1.8.1
@@ -22023,9 +24189,9 @@ snapshots:
lodash.merge: 4.6.2
loglevel: 1.8.1
- '@toruslabs/http-helpers@6.0.0(@babel/runtime@7.24.8)':
+ '@toruslabs/http-helpers@6.0.0(@babel/runtime@7.25.7)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.7
lodash.merge: 4.6.2
loglevel: 1.8.1
@@ -22040,11 +24206,11 @@ snapshots:
transitivePeerDependencies:
- '@sentry/types'
- '@toruslabs/metadata-helpers@5.0.0(@babel/runtime@7.24.8)':
+ '@toruslabs/metadata-helpers@5.0.0(@babel/runtime@7.25.7)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.7
'@toruslabs/eccrypto': 4.0.0
- '@toruslabs/http-helpers': 5.0.0(@babel/runtime@7.24.8)
+ '@toruslabs/http-helpers': 5.0.0(@babel/runtime@7.25.7)
elliptic: 6.5.5
ethereum-cryptography: 2.1.2
json-stable-stringify: 1.1.1
@@ -22065,11 +24231,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@toruslabs/openlogin-jrpc@6.2.11(@babel/runtime@7.24.8)':
+ '@toruslabs/openlogin-jrpc@6.2.11(@babel/runtime@7.25.7)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.7
'@metamask/rpc-errors': 6.1.0
- '@toruslabs/openlogin-utils': 6.2.11(@babel/runtime@7.24.8)
+ '@toruslabs/openlogin-utils': 6.2.11(@babel/runtime@7.25.7)
end-of-stream: 1.4.4
events: 3.3.0
fast-safe-stringify: 2.1.1
@@ -22088,12 +24254,12 @@ snapshots:
transitivePeerDependencies:
- '@sentry/types'
- '@toruslabs/openlogin-session-manager@3.0.0(@babel/runtime@7.24.8)':
+ '@toruslabs/openlogin-session-manager@3.0.0(@babel/runtime@7.25.7)':
dependencies:
- '@babel/runtime': 7.24.8
- '@toruslabs/base-session-manager': 3.0.0(@babel/runtime@7.24.8)
+ '@babel/runtime': 7.25.7
+ '@toruslabs/base-session-manager': 3.0.0(@babel/runtime@7.25.7)
'@toruslabs/eccrypto': 4.0.0
- '@toruslabs/metadata-helpers': 5.0.0(@babel/runtime@7.24.8)
+ '@toruslabs/metadata-helpers': 5.0.0(@babel/runtime@7.25.7)
transitivePeerDependencies:
- '@sentry/types'
@@ -22107,11 +24273,11 @@ snapshots:
transitivePeerDependencies:
- '@sentry/types'
- '@toruslabs/openlogin-subkey@6.0.0(@babel/runtime@7.24.8)':
+ '@toruslabs/openlogin-subkey@6.0.0(@babel/runtime@7.25.7)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.7
'@toruslabs/ffjavascript': 2.0.0
- '@toruslabs/metadata-helpers': 5.0.0(@babel/runtime@7.24.8)
+ '@toruslabs/metadata-helpers': 5.0.0(@babel/runtime@7.25.7)
bn.js: 5.2.1
transitivePeerDependencies:
- '@sentry/types'
@@ -22122,10 +24288,10 @@ snapshots:
'@toruslabs/constants': 13.1.0(@babel/runtime@7.24.7)
base64url: 3.0.1
- '@toruslabs/openlogin-utils@6.2.11(@babel/runtime@7.24.8)':
+ '@toruslabs/openlogin-utils@6.2.11(@babel/runtime@7.25.7)':
dependencies:
- '@babel/runtime': 7.24.8
- '@toruslabs/constants': 13.1.0(@babel/runtime@7.24.8)
+ '@babel/runtime': 7.25.7
+ '@toruslabs/constants': 13.1.0(@babel/runtime@7.25.7)
base64url: 3.0.1
'@toruslabs/openlogin@6.2.11(@babel/runtime@7.24.7)(bufferutil@4.0.7)(utf-8-validate@5.0.10)':
@@ -22146,14 +24312,14 @@ snapshots:
- supports-color
- utf-8-validate
- '@toruslabs/openlogin@6.2.11(@babel/runtime@7.24.8)(bufferutil@4.0.7)(utf-8-validate@5.0.10)':
+ '@toruslabs/openlogin@6.2.11(@babel/runtime@7.25.7)(bufferutil@4.0.7)(utf-8-validate@5.0.10)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.7
'@toruslabs/eccrypto': 4.0.0
- '@toruslabs/metadata-helpers': 5.0.0(@babel/runtime@7.24.8)
- '@toruslabs/openlogin-session-manager': 3.0.0(@babel/runtime@7.24.8)
- '@toruslabs/openlogin-utils': 6.2.11(@babel/runtime@7.24.8)
- '@toruslabs/secure-pub-sub': 0.0.1(@babel/runtime@7.24.8)(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ '@toruslabs/metadata-helpers': 5.0.0(@babel/runtime@7.25.7)
+ '@toruslabs/openlogin-session-manager': 3.0.0(@babel/runtime@7.25.7)
+ '@toruslabs/openlogin-utils': 6.2.11(@babel/runtime@7.25.7)
+ '@toruslabs/secure-pub-sub': 0.0.1(@babel/runtime@7.25.7)(bufferutil@4.0.7)(utf-8-validate@5.0.10)
bowser: 2.11.0
events: 3.3.0
loglevel: 1.8.1
@@ -22178,12 +24344,12 @@ snapshots:
- supports-color
- utf-8-validate
- '@toruslabs/secure-pub-sub@0.0.1(@babel/runtime@7.24.8)(bufferutil@4.0.7)(utf-8-validate@5.0.10)':
+ '@toruslabs/secure-pub-sub@0.0.1(@babel/runtime@7.25.7)(bufferutil@4.0.7)(utf-8-validate@5.0.10)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.7
'@toruslabs/eccrypto': 4.0.0
- '@toruslabs/http-helpers': 5.0.0(@babel/runtime@7.24.8)
- '@toruslabs/metadata-helpers': 5.0.0(@babel/runtime@7.24.8)
+ '@toruslabs/http-helpers': 5.0.0(@babel/runtime@7.25.7)
+ '@toruslabs/metadata-helpers': 5.0.0(@babel/runtime@7.25.7)
loglevel: 1.8.1
socket.io-client: 4.7.4(bufferutil@4.0.7)(utf-8-validate@5.0.10)
transitivePeerDependencies:
@@ -22206,12 +24372,12 @@ snapshots:
transitivePeerDependencies:
- '@sentry/types'
- '@toruslabs/torus.js@12.1.1(@babel/runtime@7.24.8)':
+ '@toruslabs/torus.js@12.1.1(@babel/runtime@7.25.7)':
dependencies:
- '@babel/runtime': 7.24.8
- '@toruslabs/constants': 13.1.0(@babel/runtime@7.24.8)
+ '@babel/runtime': 7.25.7
+ '@toruslabs/constants': 13.1.0(@babel/runtime@7.25.7)
'@toruslabs/eccrypto': 4.0.0
- '@toruslabs/http-helpers': 5.0.0(@babel/runtime@7.24.8)
+ '@toruslabs/http-helpers': 5.0.0(@babel/runtime@7.25.7)
bn.js: 5.2.1
elliptic: 6.5.5
ethereum-cryptography: 2.1.2
@@ -22241,17 +24407,122 @@ snapshots:
'@tufjs/canonical-json': 1.0.0
minimatch: 9.0.5
- '@twind/core@1.1.3(typescript@4.9.5)':
+ '@turnkey/api-key-stamper@0.4.1':
+ dependencies:
+ '@noble/curves': 1.4.2
+ '@turnkey/encoding': 0.2.1
+ sha256-uint8array: 0.10.7
+
+ '@turnkey/crypto@0.2.1(@babel/core@7.21.8)(@babel/preset-env@7.22.15(@babel/core@7.21.8))(@types/react@18.3.3)(bufferutil@4.0.7)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@noble/ciphers': 0.5.3
+ '@noble/curves': 1.4.0
+ '@noble/hashes': 1.4.0
+ '@turnkey/encoding': 0.2.1
+ bs58check: 3.0.1
+ react-native: 0.74.0(@babel/core@7.21.8)(@babel/preset-env@7.22.15(@babel/core@7.21.8))(@types/react@18.3.3)(bufferutil@4.0.7)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
+ react-native-get-random-values: 1.11.0(react-native@0.74.0(@babel/core@7.21.8)(@babel/preset-env@7.22.15(@babel/core@7.21.8))(@types/react@18.3.3)(bufferutil@4.0.7)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))
+ react-native-quick-base64: 2.1.2(react-native@0.74.0(@babel/core@7.21.8)(@babel/preset-env@7.22.15(@babel/core@7.21.8))(@types/react@18.3.3)(bufferutil@4.0.7)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
+ typescript: 5.0.4
+ transitivePeerDependencies:
+ - '@babel/core'
+ - '@babel/preset-env'
+ - '@types/react'
+ - bufferutil
+ - encoding
+ - react
+ - supports-color
+ - utf-8-validate
+
+ '@turnkey/encoding@0.2.1': {}
+
+ '@turnkey/http@2.12.2(encoding@0.1.13)':
+ dependencies:
+ '@turnkey/api-key-stamper': 0.4.1
+ '@turnkey/encoding': 0.2.1
+ '@turnkey/webauthn-stamper': 0.5.0
+ cross-fetch: 3.1.8(encoding@0.1.13)
+ transitivePeerDependencies:
+ - encoding
+
+ '@turnkey/iframe-stamper@2.0.0': {}
+
+ '@turnkey/sdk-browser@1.2.2(@babel/core@7.21.8)(@babel/preset-env@7.22.15(@babel/core@7.21.8))(@types/react@18.3.3)(bufferutil@4.0.7)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@turnkey/api-key-stamper': 0.4.1
+ '@turnkey/crypto': 0.2.1(@babel/core@7.21.8)(@babel/preset-env@7.22.15(@babel/core@7.21.8))(@types/react@18.3.3)(bufferutil@4.0.7)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
+ '@turnkey/encoding': 0.2.1
+ '@turnkey/http': 2.12.2(encoding@0.1.13)
+ '@turnkey/iframe-stamper': 2.0.0
+ '@turnkey/webauthn-stamper': 0.5.0
+ bs58check: 3.0.1
+ buffer: 6.0.3
+ cross-fetch: 3.1.8(encoding@0.1.13)
+ elliptic: 6.5.5
+ hpke-js: 1.3.1
+ transitivePeerDependencies:
+ - '@babel/core'
+ - '@babel/preset-env'
+ - '@types/react'
+ - bufferutil
+ - encoding
+ - react
+ - supports-color
+ - utf-8-validate
+
+ '@turnkey/sdk-server@1.2.2(encoding@0.1.13)':
+ dependencies:
+ '@turnkey/api-key-stamper': 0.4.1
+ '@turnkey/http': 2.12.2(encoding@0.1.13)
+ buffer: 6.0.3
+ cross-fetch: 3.1.8(encoding@0.1.13)
+ elliptic: 6.5.5
+ transitivePeerDependencies:
+ - encoding
+
+ '@turnkey/solana@0.3.9(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@solana/web3.js': 1.95.1(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@turnkey/http': 2.12.2(encoding@0.1.13)
+ transitivePeerDependencies:
+ - bufferutil
+ - encoding
+ - utf-8-validate
+
+ '@turnkey/viem@0.4.26(@babel/core@7.21.8)(@babel/preset-env@7.22.15(@babel/core@7.21.8))(@types/react@18.3.3)(bufferutil@4.0.7)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)(viem@2.17.5(bufferutil@4.0.7)(typescript@5.5.3)(utf-8-validate@5.0.10)(zod@3.22.4))':
+ dependencies:
+ '@turnkey/api-key-stamper': 0.4.1
+ '@turnkey/http': 2.12.2(encoding@0.1.13)
+ '@turnkey/sdk-browser': 1.2.2(@babel/core@7.21.8)(@babel/preset-env@7.22.15(@babel/core@7.21.8))(@types/react@18.3.3)(bufferutil@4.0.7)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
+ '@turnkey/sdk-server': 1.2.2(encoding@0.1.13)
+ cross-fetch: 4.0.0(encoding@0.1.13)
+ typescript: 5.5.3
+ viem: 2.17.5(bufferutil@4.0.7)(typescript@5.5.3)(utf-8-validate@5.0.10)(zod@3.22.4)
+ transitivePeerDependencies:
+ - '@babel/core'
+ - '@babel/preset-env'
+ - '@types/react'
+ - bufferutil
+ - encoding
+ - react
+ - supports-color
+ - utf-8-validate
+
+ '@turnkey/webauthn-stamper@0.5.0':
+ dependencies:
+ sha256-uint8array: 0.10.7
+
+ '@twind/core@1.1.3(typescript@5.5.3)':
dependencies:
csstype: 3.1.3
optionalDependencies:
- typescript: 4.9.5
+ typescript: 5.5.3
- '@twind/preset-tailwind@1.1.4(@twind/core@1.1.3(typescript@4.9.5))(typescript@4.9.5)':
+ '@twind/preset-tailwind@1.1.4(@twind/core@1.1.3(typescript@5.5.3))(typescript@5.5.3)':
dependencies:
- '@twind/core': 1.1.3(typescript@4.9.5)
+ '@twind/core': 1.1.3(typescript@5.5.3)
optionalDependencies:
- typescript: 4.9.5
+ typescript: 5.5.3
'@types/argparse@1.0.38': {}
@@ -22421,6 +24692,10 @@ snapshots:
'@types/node@12.20.55': {}
+ '@types/node@18.19.54':
+ dependencies:
+ undici-types: 5.26.5
+
'@types/node@20.12.7':
dependencies:
undici-types: 5.26.5
@@ -22546,6 +24821,10 @@ snapshots:
'@types/yargs-parser@21.0.0': {}
+ '@types/yargs@15.0.19':
+ dependencies:
+ '@types/yargs-parser': 21.0.0
+
'@types/yargs@16.0.5':
dependencies:
'@types/yargs-parser': 21.0.0
@@ -23067,6 +25346,20 @@ snapshots:
transitivePeerDependencies:
- typescript
+ '@wallet-standard/app@1.0.1':
+ dependencies:
+ '@wallet-standard/base': 1.0.1
+
+ '@wallet-standard/base@1.0.1': {}
+
+ '@wallet-standard/experimental-features@0.1.1':
+ dependencies:
+ '@wallet-standard/base': 1.0.1
+
+ '@wallet-standard/features@1.0.3':
+ dependencies:
+ '@wallet-standard/base': 1.0.1
+
'@walletconnect/auth-client@2.1.2(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
'@ethersproject/hash': 5.7.0
@@ -23164,6 +25457,43 @@ snapshots:
- supports-color
- utf-8-validate
+ '@walletconnect/core@2.11.2(bufferutil@4.0.7)(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.7)(utf-8-validate@5.0.10)
+ '@walletconnect/keyvaluestorage': 1.1.1
+ '@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.2
+ '@walletconnect/utils': 2.11.2
+ events: 3.3.0
+ isomorphic-unfetch: 3.1.0(encoding@0.1.13)
+ lodash.isequal: 4.5.0
+ uint8arrays: 3.1.1
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@upstash/redis'
+ - '@vercel/kv'
+ - bufferutil
+ - encoding
+ - supports-color
+ - utf-8-validate
+
'@walletconnect/core@2.8.3(bufferutil@4.0.7)(utf-8-validate@5.0.10)':
dependencies:
'@walletconnect/heartbeat': 1.2.1
@@ -23269,6 +25599,38 @@ snapshots:
- encoding
- utf-8-validate
+ '@walletconnect/ethereum-provider@2.11.2(@types/react@18.3.3)(bufferutil@4.0.7)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13)
+ '@walletconnect/jsonrpc-provider': 1.0.14
+ '@walletconnect/jsonrpc-types': 1.0.4
+ '@walletconnect/jsonrpc-utils': 1.0.8
+ '@walletconnect/modal': 2.7.0(@types/react@18.3.3)(react@18.3.1)
+ '@walletconnect/sign-client': 2.11.2(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@walletconnect/types': 2.11.2
+ '@walletconnect/universal-provider': 2.11.2(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@walletconnect/utils': 2.11.2
+ events: 3.3.0
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@types/react'
+ - '@upstash/redis'
+ - '@vercel/kv'
+ - bufferutil
+ - encoding
+ - react
+ - supports-color
+ - utf-8-validate
+
'@walletconnect/ethereum-provider@2.9.2(@walletconnect/modal@2.6.1(react@18.2.0))(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
'@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13)
@@ -23444,6 +25806,13 @@ snapshots:
transitivePeerDependencies:
- react
+ '@walletconnect/modal-core@2.7.0(@types/react@18.3.3)(react@18.3.1)':
+ dependencies:
+ valtio: 1.11.2(@types/react@18.3.3)(react@18.3.1)
+ transitivePeerDependencies:
+ - '@types/react'
+ - react
+
'@walletconnect/modal-ui@2.6.1(react@18.2.0)':
dependencies:
'@walletconnect/modal-core': 2.6.1(react@18.2.0)
@@ -23462,6 +25831,16 @@ snapshots:
transitivePeerDependencies:
- react
+ '@walletconnect/modal-ui@2.7.0(@types/react@18.3.3)(react@18.3.1)':
+ dependencies:
+ '@walletconnect/modal-core': 2.7.0(@types/react@18.3.3)(react@18.3.1)
+ lit: 2.8.0
+ motion: 10.16.2
+ qrcode: 1.5.3
+ transitivePeerDependencies:
+ - '@types/react'
+ - react
+
'@walletconnect/modal@2.6.1(react@18.2.0)':
dependencies:
'@walletconnect/modal-core': 2.6.1(react@18.2.0)
@@ -23476,6 +25855,14 @@ snapshots:
transitivePeerDependencies:
- react
+ '@walletconnect/modal@2.7.0(@types/react@18.3.3)(react@18.3.1)':
+ dependencies:
+ '@walletconnect/modal-core': 2.7.0(@types/react@18.3.3)(react@18.3.1)
+ '@walletconnect/modal-ui': 2.7.0(@types/react@18.3.3)(react@18.3.1)
+ transitivePeerDependencies:
+ - '@types/react'
+ - react
+
'@walletconnect/qrcode-modal@1.8.0':
dependencies:
'@walletconnect/browser-utils': 1.8.0
@@ -23541,6 +25928,35 @@ snapshots:
- supports-color
- utf-8-validate
+ '@walletconnect/sign-client@2.11.2(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@walletconnect/core': 2.11.2(bufferutil@4.0.7)(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.2
+ '@walletconnect/utils': 2.11.2
+ events: 3.3.0
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@upstash/redis'
+ - '@vercel/kv'
+ - bufferutil
+ - encoding
+ - supports-color
+ - utf-8-validate
+
'@walletconnect/sign-client@2.8.3(bufferutil@4.0.7)(utf-8-validate@5.0.10)':
dependencies:
'@walletconnect/core': 2.8.3(bufferutil@4.0.7)(utf-8-validate@5.0.10)
@@ -23624,6 +26040,29 @@ snapshots:
'@walletconnect/types@1.8.0': {}
+ '@walletconnect/types@2.10.6':
+ dependencies:
+ '@walletconnect/events': 1.0.1
+ '@walletconnect/heartbeat': 1.2.1
+ '@walletconnect/jsonrpc-types': 1.0.3
+ '@walletconnect/keyvaluestorage': 1.1.1
+ '@walletconnect/logger': 2.0.1
+ events: 3.3.0
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@upstash/redis'
+ - '@vercel/kv'
+ - supports-color
+
'@walletconnect/types@2.11.1':
dependencies:
'@walletconnect/events': 1.0.1
@@ -23647,6 +26086,29 @@ snapshots:
- '@vercel/kv'
- supports-color
+ '@walletconnect/types@2.11.2':
+ dependencies:
+ '@walletconnect/events': 1.0.1
+ '@walletconnect/heartbeat': 1.2.1
+ '@walletconnect/jsonrpc-types': 1.0.3
+ '@walletconnect/keyvaluestorage': 1.1.1
+ '@walletconnect/logger': 2.0.1
+ events: 3.3.0
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@upstash/redis'
+ - '@vercel/kv'
+ - supports-color
+
'@walletconnect/types@2.8.3':
dependencies:
'@walletconnect/events': 1.0.1
@@ -23693,6 +26155,35 @@ snapshots:
- '@vercel/kv'
- supports-color
+ '@walletconnect/universal-provider@2.11.2(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13)
+ '@walletconnect/jsonrpc-provider': 1.0.13
+ '@walletconnect/jsonrpc-types': 1.0.4
+ '@walletconnect/jsonrpc-utils': 1.0.8
+ '@walletconnect/logger': 2.0.1
+ '@walletconnect/sign-client': 2.11.2(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@walletconnect/types': 2.11.2
+ '@walletconnect/utils': 2.11.2
+ events: 3.3.0
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@upstash/redis'
+ - '@vercel/kv'
+ - bufferutil
+ - encoding
+ - supports-color
+ - utf-8-validate
+
'@walletconnect/universal-provider@2.8.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
'@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13)
@@ -23792,6 +26283,37 @@ snapshots:
- '@vercel/kv'
- supports-color
+ '@walletconnect/utils@2.11.2':
+ dependencies:
+ '@stablelib/chacha20poly1305': 1.0.1
+ '@stablelib/hkdf': 1.0.1
+ '@stablelib/random': 1.0.2
+ '@stablelib/sha256': 1.0.1
+ '@stablelib/x25519': 1.0.3
+ '@walletconnect/relay-api': 1.0.9
+ '@walletconnect/safe-json': 1.0.2
+ '@walletconnect/time': 1.0.2
+ '@walletconnect/types': 2.11.2
+ '@walletconnect/window-getters': 1.0.1
+ '@walletconnect/window-metadata': 1.0.1
+ detect-browser: 5.3.0
+ query-string: 7.1.3
+ uint8arrays: 3.1.1
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@upstash/redis'
+ - '@vercel/kv'
+ - supports-color
+
'@walletconnect/utils@2.8.3':
dependencies:
'@stablelib/chacha20poly1305': 1.0.1
@@ -23912,13 +26434,13 @@ snapshots:
- supports-color
- utf-8-validate
- '@web3auth/base-provider@7.3.2(@babel/runtime@7.24.8)(bufferutil@4.0.7)(utf-8-validate@5.0.10)':
+ '@web3auth/base-provider@7.3.2(@babel/runtime@7.25.7)(bufferutil@4.0.7)(utf-8-validate@5.0.10)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.7
'@metamask/rpc-errors': 6.1.0
- '@toruslabs/base-controllers': 4.11.0(@babel/runtime@7.24.8)(bufferutil@4.0.7)(utf-8-validate@5.0.10)
- '@toruslabs/openlogin-jrpc': 6.2.11(@babel/runtime@7.24.8)
- '@web3auth/base': 7.3.2(@babel/runtime@7.24.8)(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ '@toruslabs/base-controllers': 4.11.0(@babel/runtime@7.25.7)(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ '@toruslabs/openlogin-jrpc': 6.2.11(@babel/runtime@7.25.7)
+ '@web3auth/base': 7.3.2(@babel/runtime@7.25.7)(bufferutil@4.0.7)(utf-8-validate@5.0.10)
json-rpc-random-id: 1.0.1
transitivePeerDependencies:
- '@sentry/types'
@@ -23943,13 +26465,13 @@ snapshots:
- supports-color
- utf-8-validate
- '@web3auth/base@7.3.2(@babel/runtime@7.24.8)(bufferutil@4.0.7)(utf-8-validate@5.0.10)':
+ '@web3auth/base@7.3.2(@babel/runtime@7.25.7)(bufferutil@4.0.7)(utf-8-validate@5.0.10)':
dependencies:
- '@babel/runtime': 7.24.8
- '@toruslabs/http-helpers': 6.0.0(@babel/runtime@7.24.8)
- '@toruslabs/openlogin': 6.2.11(@babel/runtime@7.24.8)(bufferutil@4.0.7)(utf-8-validate@5.0.10)
- '@toruslabs/openlogin-jrpc': 6.2.11(@babel/runtime@7.24.8)
- '@toruslabs/openlogin-utils': 6.2.11(@babel/runtime@7.24.8)
+ '@babel/runtime': 7.25.7
+ '@toruslabs/http-helpers': 6.0.0(@babel/runtime@7.25.7)
+ '@toruslabs/openlogin': 6.2.11(@babel/runtime@7.25.7)(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ '@toruslabs/openlogin-jrpc': 6.2.11(@babel/runtime@7.25.7)
+ '@toruslabs/openlogin-utils': 6.2.11(@babel/runtime@7.25.7)
jwt-decode: 4.0.0
loglevel: 1.8.1
ts-custom-error: 3.3.1
@@ -23997,20 +26519,20 @@ snapshots:
- supports-color
- utf-8-validate
- '@web3auth/ethereum-provider@7.3.2(@babel/runtime@7.24.8)(bufferutil@4.0.7)(utf-8-validate@5.0.10)':
+ '@web3auth/ethereum-provider@7.3.2(@babel/runtime@7.25.7)(bufferutil@4.0.7)(utf-8-validate@5.0.10)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.7
'@ethereumjs/common': 4.1.0(buffer@6.0.3)
'@ethereumjs/tx': 5.1.0(buffer@6.0.3)
'@ethereumjs/util': 9.0.1
'@metamask/eth-sig-util': 7.0.1
'@metamask/rpc-errors': 6.1.0
- '@toruslabs/base-controllers': 4.11.0(@babel/runtime@7.24.8)(bufferutil@4.0.7)(utf-8-validate@5.0.10)
- '@toruslabs/http-helpers': 6.0.0(@babel/runtime@7.24.8)
- '@toruslabs/openlogin-jrpc': 6.2.11(@babel/runtime@7.24.8)
+ '@toruslabs/base-controllers': 4.11.0(@babel/runtime@7.25.7)(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ '@toruslabs/http-helpers': 6.0.0(@babel/runtime@7.25.7)
+ '@toruslabs/openlogin-jrpc': 6.2.11(@babel/runtime@7.25.7)
'@walletconnect/utils': 2.11.1
- '@web3auth/base': 7.3.2(@babel/runtime@7.24.8)(bufferutil@4.0.7)(utf-8-validate@5.0.10)
- '@web3auth/base-provider': 7.3.2(@babel/runtime@7.24.8)(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ '@web3auth/base': 7.3.2(@babel/runtime@7.25.7)(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ '@web3auth/base-provider': 7.3.2(@babel/runtime@7.25.7)(bufferutil@4.0.7)(utf-8-validate@5.0.10)
assert: 2.1.0
bignumber.js: 9.1.2
bn.js: 5.2.1
@@ -24054,17 +26576,17 @@ snapshots:
- supports-color
- utf-8-validate
- '@web3auth/single-factor-auth@7.3.0(@babel/runtime@7.24.8)(bufferutil@4.0.7)(utf-8-validate@5.0.10)':
- dependencies:
- '@babel/runtime': 7.24.8
- '@toruslabs/constants': 13.1.0(@babel/runtime@7.24.8)
- '@toruslabs/fetch-node-details': 13.1.1(@babel/runtime@7.24.8)
- '@toruslabs/openlogin-jrpc': 6.2.11(@babel/runtime@7.24.8)
- '@toruslabs/openlogin-session-manager': 3.0.0(@babel/runtime@7.24.8)
- '@toruslabs/openlogin-subkey': 6.0.0(@babel/runtime@7.24.8)
- '@toruslabs/openlogin-utils': 6.2.11(@babel/runtime@7.24.8)
- '@toruslabs/torus.js': 12.1.1(@babel/runtime@7.24.8)
- '@web3auth/base': 7.3.2(@babel/runtime@7.24.8)(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ '@web3auth/single-factor-auth@7.3.0(@babel/runtime@7.25.7)(bufferutil@4.0.7)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@babel/runtime': 7.25.7
+ '@toruslabs/constants': 13.1.0(@babel/runtime@7.25.7)
+ '@toruslabs/fetch-node-details': 13.1.1(@babel/runtime@7.25.7)
+ '@toruslabs/openlogin-jrpc': 6.2.11(@babel/runtime@7.25.7)
+ '@toruslabs/openlogin-session-manager': 3.0.0(@babel/runtime@7.25.7)
+ '@toruslabs/openlogin-subkey': 6.0.0(@babel/runtime@7.25.7)
+ '@toruslabs/openlogin-utils': 6.2.11(@babel/runtime@7.25.7)
+ '@toruslabs/torus.js': 12.1.1(@babel/runtime@7.25.7)
+ '@web3auth/base': 7.3.2(@babel/runtime@7.25.7)(bufferutil@4.0.7)(utf-8-validate@5.0.10)
jwt-decode: 4.0.0
transitivePeerDependencies:
- '@sentry/types'
@@ -24328,6 +26850,8 @@ snapshots:
require-from-string: 2.0.2
uri-js: 4.4.1
+ anser@1.4.10: {}
+
ansi-align@3.0.1:
dependencies:
string-width: 4.2.3
@@ -24338,6 +26862,12 @@ snapshots:
dependencies:
type-fest: 0.21.3
+ ansi-fragments@0.2.1:
+ dependencies:
+ colorette: 1.4.0
+ slice-ansi: 2.1.0
+ strip-ansi: 5.2.0
+
ansi-html-community@0.0.8: {}
ansi-regex@2.1.1: {}
@@ -24373,6 +26903,8 @@ snapshots:
apg-js@4.3.0: {}
+ appdirsjs@1.2.7: {}
+
aproba@2.0.0: {}
arch@2.2.0: {}
@@ -24539,6 +27071,14 @@ snapshots:
ast-types-flow@0.0.7: {}
+ ast-types@0.15.2:
+ dependencies:
+ tslib: 2.6.3
+
+ astral-regex@1.0.0: {}
+
+ async-limiter@1.0.1: {}
+
async-mutex@0.2.6:
dependencies:
tslib: 2.6.3
@@ -24602,6 +27142,10 @@ snapshots:
dependencies:
dequal: 2.0.3
+ babel-core@7.0.0-bridge.0(@babel/core@7.21.8):
+ dependencies:
+ '@babel/core': 7.21.8
+
babel-jest@27.5.1(@babel/core@7.21.8):
dependencies:
'@babel/core': 7.21.8
@@ -24756,6 +27300,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.21.8):
+ dependencies:
+ '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.21.8)
+ transitivePeerDependencies:
+ - '@babel/core'
+
babel-plugin-transform-react-remove-prop-types@0.4.24: {}
babel-preset-current-node-syntax@1.0.1(@babel/core@7.21.8):
@@ -25202,6 +27752,16 @@ snapshots:
get-intrinsic: 1.2.4
set-function-length: 1.2.2
+ caller-callsite@2.0.0:
+ dependencies:
+ callsites: 2.0.0
+
+ caller-path@2.0.0:
+ dependencies:
+ caller-callsite: 2.0.0
+
+ callsites@2.0.0: {}
+
callsites@3.1.0: {}
camel-case@4.1.2:
@@ -25277,6 +27837,8 @@ snapshots:
ansi-styles: 4.3.0
supports-color: 7.2.0
+ chalk@5.3.0: {}
+
char-regex@1.0.2: {}
char-regex@2.0.1: {}
@@ -25303,6 +27865,15 @@ snapshots:
chownr@2.0.0: {}
+ chrome-launcher@0.15.2:
+ dependencies:
+ '@types/node': 20.14.11
+ escape-string-regexp: 4.0.0
+ is-wsl: 2.2.0
+ lighthouse-logger: 1.4.2
+ transitivePeerDependencies:
+ - supports-color
+
chrome-trace-event@1.0.3: {}
ci-info@2.0.0: {}
@@ -25420,10 +27991,22 @@ snapshots:
color-name@1.1.4: {}
+ color-string@1.9.1:
+ dependencies:
+ color-name: 1.1.4
+ simple-swizzle: 0.2.2
+
color-support@1.1.3: {}
+ color@4.2.3:
+ dependencies:
+ color-convert: 2.0.1
+ color-string: 1.9.1
+
colord@2.9.3: {}
+ colorette@1.4.0: {}
+
colorette@2.0.20: {}
colors@1.2.5: {}
@@ -25441,6 +28024,8 @@ snapshots:
commander@10.0.1: {}
+ commander@12.1.0: {}
+
commander@2.20.3: {}
commander@4.1.1: {}
@@ -25449,6 +28034,8 @@ snapshots:
commander@8.3.0: {}
+ commander@9.5.0: {}
+
comment-parser@1.4.1: {}
common-ancestor-path@1.0.1: {}
@@ -25505,6 +28092,15 @@ snapshots:
connect-history-api-fallback@2.0.0: {}
+ connect@3.7.0:
+ dependencies:
+ debug: 2.6.9
+ finalhandler: 1.1.2
+ parseurl: 1.3.3
+ utils-merge: 1.0.1
+ transitivePeerDependencies:
+ - supports-color
+
consola@3.2.3: {}
console-control-strings@1.1.0: {}
@@ -25604,6 +28200,13 @@ snapshots:
core-util-is@1.0.3: {}
+ cosmiconfig@5.2.1:
+ dependencies:
+ import-fresh: 2.0.0
+ is-directory: 0.3.1
+ js-yaml: 3.14.1
+ parse-json: 4.0.0
+
cosmiconfig@6.0.0:
dependencies:
'@types/parse-json': 4.0.0
@@ -25939,6 +28542,8 @@ snapshots:
dateformat@3.0.3: {}
+ dayjs@1.11.13: {}
+
de-indent@1.0.2: {}
debug@2.6.9:
@@ -26071,6 +28676,8 @@ snapshots:
delegates@1.0.0: {}
+ denodeify@1.2.1: {}
+
denque@2.1.0: {}
depd@1.1.2: {}
@@ -26100,6 +28707,8 @@ snapshots:
detect-libc@1.0.3: {}
+ detect-libc@2.0.3: {}
+
detect-newline@3.1.0: {}
detect-node-es@1.1.0: {}
@@ -26373,6 +28982,11 @@ snapshots:
dependencies:
stackframe: 1.3.4
+ errorhandler@1.5.1:
+ dependencies:
+ accepts: 1.3.8
+ escape-html: 1.0.3
+
es-abstract@1.22.1:
dependencies:
array-buffer-byte-length: 1.0.0
@@ -26679,7 +29293,7 @@ snapshots:
dependencies:
eslint: 8.57.0
- eslint-config-react-app@7.0.1(@babel/plugin-syntax-flow@7.22.5(@babel/core@7.22.17))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.17))(eslint@8.57.0)(jest@27.5.1(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3))(utf-8-validate@5.0.10))(typescript@5.3.3):
+ eslint-config-react-app@7.0.1(@babel/plugin-syntax-flow@7.25.7(@babel/core@7.22.17))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.17))(eslint@8.57.0)(jest@27.5.1(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3))(utf-8-validate@5.0.10))(typescript@5.3.3):
dependencies:
'@babel/core': 7.22.17
'@babel/eslint-parser': 7.22.15(@babel/core@7.22.17)(eslint@8.57.0)
@@ -26689,7 +29303,7 @@ snapshots:
babel-preset-react-app: 10.0.1
confusing-browser-globals: 1.0.11
eslint: 8.57.0
- eslint-plugin-flowtype: 8.0.3(@babel/plugin-syntax-flow@7.22.5(@babel/core@7.22.17))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.17))(eslint@8.57.0)
+ eslint-plugin-flowtype: 8.0.3(@babel/plugin-syntax-flow@7.25.7(@babel/core@7.22.17))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.17))(eslint@8.57.0)
eslint-plugin-import: 2.28.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.3.3))(eslint@8.57.0)
eslint-plugin-jest: 25.7.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.3.3))(eslint@8.57.0)(typescript@5.3.3))(eslint@8.57.0)(jest@27.5.1(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3))(utf-8-validate@5.0.10))(typescript@5.3.3)
eslint-plugin-jsx-a11y: 6.7.1(eslint@8.57.0)
@@ -26716,7 +29330,7 @@ snapshots:
babel-preset-react-app: 10.0.1
confusing-browser-globals: 1.0.11
eslint: 8.57.0
- eslint-plugin-flowtype: 8.0.3(@babel/plugin-syntax-flow@7.22.5(@babel/core@7.22.17))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.17))(eslint@8.57.0)
+ eslint-plugin-flowtype: 8.0.3(@babel/plugin-syntax-flow@7.25.7(@babel/core@7.22.17))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.17))(eslint@8.57.0)
eslint-plugin-import: 2.28.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.2))(eslint@8.57.0)
eslint-plugin-jest: 25.7.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.2))(eslint@8.57.0)(typescript@5.4.2))(eslint@8.57.0)(jest@27.5.1(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@20.14.11)(typescript@5.4.2))(utf-8-validate@5.0.10))(typescript@5.4.2)
eslint-plugin-jsx-a11y: 6.7.1(eslint@8.57.0)
@@ -26789,9 +29403,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-plugin-flowtype@8.0.3(@babel/plugin-syntax-flow@7.22.5(@babel/core@7.22.17))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.17))(eslint@8.57.0):
+ eslint-plugin-flowtype@8.0.3(@babel/plugin-syntax-flow@7.25.7(@babel/core@7.22.17))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.17))(eslint@8.57.0):
dependencies:
- '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.22.17)
+ '@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.22.17)
'@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.22.17)
eslint: 8.57.0
lodash: 4.17.21
@@ -27105,7 +29719,7 @@ snapshots:
eth-block-tracker@4.4.3(@babel/core@7.22.17):
dependencies:
'@babel/plugin-transform-runtime': 7.24.7(@babel/core@7.22.17)
- '@babel/runtime': 7.24.7
+ '@babel/runtime': 7.24.8
eth-query: 2.1.2
json-rpc-random-id: 1.0.1
pify: 3.0.0
@@ -27383,6 +29997,8 @@ snapshots:
eyes@0.1.8: {}
+ fast-base64-decode@1.0.0: {}
+
fast-deep-equal@3.1.3: {}
fast-diff@1.3.0: {}
@@ -27405,6 +30021,14 @@ snapshots:
merge2: 1.4.1
micromatch: 4.0.7
+ fast-glob@3.3.2:
+ 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.7
+
fast-json-stable-stringify@2.1.0: {}
fast-levenshtein@2.0.6: {}
@@ -27415,6 +30039,12 @@ snapshots:
fast-stable-stringify@1.0.0: {}
+ fast-xml-parser@4.5.0:
+ dependencies:
+ strnum: 1.0.5
+
+ fastestsmallesttextencoderdecoder@1.0.22: {}
+
fastq@1.15.0:
dependencies:
reusify: 1.0.4
@@ -27462,6 +30092,18 @@ snapshots:
filter-obj@1.1.0: {}
+ finalhandler@1.1.2:
+ dependencies:
+ debug: 2.6.9
+ encodeurl: 1.0.2
+ escape-html: 1.0.3
+ on-finished: 2.3.0
+ parseurl: 1.3.3
+ statuses: 1.5.0
+ unpipe: 1.0.0
+ transitivePeerDependencies:
+ - supports-color
+
finalhandler@1.2.0:
dependencies:
debug: 2.6.9
@@ -27474,6 +30116,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ find-cache-dir@2.1.0:
+ dependencies:
+ commondir: 1.0.1
+ make-dir: 2.1.0
+ pkg-dir: 3.0.0
+
find-cache-dir@3.3.2:
dependencies:
commondir: 1.0.1
@@ -27547,6 +30195,10 @@ snapshots:
flatted@3.2.7: {}
+ flow-enums-runtime@0.0.6: {}
+
+ flow-parser@0.247.1: {}
+
focus-lock@0.11.6:
dependencies:
tslib: 2.6.3
@@ -28114,6 +30766,22 @@ snapshots:
he@1.2.0: {}
+ hermes-estree@0.19.1: {}
+
+ hermes-estree@0.23.1: {}
+
+ hermes-parser@0.19.1:
+ dependencies:
+ hermes-estree: 0.19.1
+
+ hermes-parser@0.23.1:
+ dependencies:
+ hermes-estree: 0.23.1
+
+ hermes-profile-transformer@0.0.6:
+ dependencies:
+ source-map: 0.7.4
+
hey-listen@1.0.8: {}
hmac-drbg@1.0.1:
@@ -28153,6 +30821,14 @@ snapshots:
readable-stream: 2.3.8
wbuf: 1.7.3
+ hpke-js@1.3.1:
+ dependencies:
+ '@hpke/chacha20poly1305': 1.3.1
+ '@hpke/core': 1.3.1
+ '@hpke/dhkem-x25519': 1.3.1
+ '@hpke/dhkem-x448': 1.3.1
+ '@noble/hashes': 1.4.0
+
html-encoding-sniffer@2.0.1:
dependencies:
whatwg-encoding: 1.0.5
@@ -28175,6 +30851,10 @@ snapshots:
relateurl: 0.2.7
terser: 5.19.4
+ html-parse-stringify@3.0.1:
+ dependencies:
+ void-elements: 3.1.0
+
html-webpack-plugin@5.5.3(webpack@5.88.2(esbuild@0.21.5)):
dependencies:
'@types/html-minifier-terser': 6.1.0
@@ -28275,6 +30955,10 @@ snapshots:
hyphenate-style-name@1.0.4: {}
+ i18next@23.4.6:
+ dependencies:
+ '@babel/runtime': 7.24.8
+
iconv-lite@0.4.24:
dependencies:
safer-buffer: 2.1.2
@@ -28307,12 +30991,21 @@ snapshots:
ignore@5.2.4: {}
+ image-size@1.1.1:
+ dependencies:
+ queue: 6.0.2
+
immediate@3.0.6: {}
immer@9.0.21: {}
immutable@4.3.7: {}
+ import-fresh@2.0.0:
+ dependencies:
+ caller-path: 2.0.0
+ resolve-from: 3.0.0
+
import-fresh@3.3.0:
dependencies:
parent-module: 1.0.1
@@ -28580,6 +31273,8 @@ snapshots:
is-arrayish@0.2.1: {}
+ is-arrayish@0.3.2: {}
+
is-async-function@2.0.0:
dependencies:
has-tostringtag: 1.0.0
@@ -28619,6 +31314,8 @@ snapshots:
dependencies:
has-tostringtag: 1.0.0
+ is-directory@0.3.1: {}
+
is-docker@2.2.1: {}
is-docker@3.0.0: {}
@@ -28776,6 +31473,8 @@ snapshots:
is-windows@1.0.2: {}
+ is-wsl@1.1.0: {}
+
is-wsl@2.2.0:
dependencies:
is-docker: 2.2.1
@@ -29796,6 +32495,14 @@ snapshots:
jju@1.4.0: {}
+ joi@17.13.3:
+ dependencies:
+ '@hapi/hoek': 9.3.0
+ '@hapi/topo': 5.1.0
+ '@sideway/address': 4.1.5
+ '@sideway/formula': 3.0.1
+ '@sideway/pinpoint': 2.0.0
+
jose@4.15.4: {}
joycon@3.1.1: {}
@@ -29820,6 +32527,35 @@ snapshots:
dependencies:
argparse: 2.0.1
+ jsc-android@250231.0.0: {}
+
+ jsc-safe-url@0.2.4: {}
+
+ jscodeshift@0.14.0(@babel/preset-env@7.22.15(@babel/core@7.21.8)):
+ dependencies:
+ '@babel/core': 7.21.8
+ '@babel/parser': 7.24.8
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.21.8)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.21.8)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.21.8)
+ '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.21.8)
+ '@babel/preset-env': 7.22.15(@babel/core@7.21.8)
+ '@babel/preset-flow': 7.25.7(@babel/core@7.21.8)
+ '@babel/preset-typescript': 7.24.7(@babel/core@7.21.8)
+ '@babel/register': 7.25.7(@babel/core@7.21.8)
+ babel-core: 7.0.0-bridge.0(@babel/core@7.21.8)
+ chalk: 4.1.2
+ flow-parser: 0.247.1
+ graceful-fs: 4.2.11
+ micromatch: 4.0.7
+ neo-async: 2.6.2
+ node-dir: 0.1.17
+ recast: 0.21.5
+ temp: 0.8.4
+ write-file-atomic: 2.4.3
+ transitivePeerDependencies:
+ - supports-color
+
jsdoc-type-pratt-parser@4.0.0: {}
jsdom@16.7.0(bufferutil@4.0.7)(utf-8-validate@5.0.10):
@@ -30277,6 +33013,13 @@ snapshots:
dependencies:
immediate: 3.0.6
+ lighthouse-logger@1.4.2:
+ dependencies:
+ debug: 2.6.9
+ marky: 1.2.5
+ transitivePeerDependencies:
+ - supports-color
+
lilconfig@2.1.0: {}
limiter@1.1.5: {}
@@ -30443,6 +33186,8 @@ snapshots:
lodash.startcase@4.4.0: {}
+ lodash.throttle@4.1.1: {}
+
lodash.uniq@4.5.0: {}
lodash@4.17.21: {}
@@ -30452,6 +33197,12 @@ snapshots:
chalk: 4.1.2
is-unicode-supported: 0.1.0
+ logkitty@0.7.1:
+ dependencies:
+ ansi-fragments: 0.2.1
+ dayjs: 1.11.13
+ yargs: 15.4.1
+
loglevel@1.8.1: {}
long@4.0.0: {}
@@ -30595,6 +33346,8 @@ snapshots:
punycode.js: 2.3.1
uc.micro: 2.1.0
+ marky@1.2.5: {}
+
md5.js@1.3.5:
dependencies:
hash-base: 3.1.0
@@ -30613,6 +33366,8 @@ snapshots:
dependencies:
fs-monkey: 1.0.4
+ memoize-one@5.2.1: {}
+
memorystream@0.3.1: {}
meow@6.1.1:
@@ -30663,6 +33418,184 @@ snapshots:
methods@1.1.2: {}
+ metro-babel-transformer@0.80.12:
+ dependencies:
+ '@babel/core': 7.21.8
+ flow-enums-runtime: 0.0.6
+ hermes-parser: 0.23.1
+ nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - supports-color
+
+ metro-cache-key@0.80.12:
+ dependencies:
+ flow-enums-runtime: 0.0.6
+
+ metro-cache@0.80.12:
+ dependencies:
+ exponential-backoff: 3.1.1
+ flow-enums-runtime: 0.0.6
+ metro-core: 0.80.12
+
+ metro-config@0.80.12(bufferutil@4.0.7)(utf-8-validate@5.0.10):
+ dependencies:
+ connect: 3.7.0
+ cosmiconfig: 5.2.1
+ flow-enums-runtime: 0.0.6
+ jest-validate: 29.6.3
+ metro: 0.80.12(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ metro-cache: 0.80.12
+ metro-core: 0.80.12
+ metro-runtime: 0.80.12
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+
+ metro-core@0.80.12:
+ dependencies:
+ flow-enums-runtime: 0.0.6
+ lodash.throttle: 4.1.1
+ metro-resolver: 0.80.12
+
+ metro-file-map@0.80.12:
+ dependencies:
+ anymatch: 3.1.3
+ debug: 2.6.9
+ fb-watchman: 2.0.2
+ flow-enums-runtime: 0.0.6
+ graceful-fs: 4.2.11
+ invariant: 2.2.4
+ jest-worker: 29.6.4
+ micromatch: 4.0.7
+ node-abort-controller: 3.1.1
+ nullthrows: 1.1.1
+ walker: 1.0.8
+ optionalDependencies:
+ fsevents: 2.3.3
+ transitivePeerDependencies:
+ - supports-color
+
+ metro-minify-terser@0.80.12:
+ dependencies:
+ flow-enums-runtime: 0.0.6
+ terser: 5.19.4
+
+ metro-resolver@0.80.12:
+ dependencies:
+ flow-enums-runtime: 0.0.6
+
+ metro-runtime@0.80.12:
+ dependencies:
+ '@babel/runtime': 7.25.7
+ flow-enums-runtime: 0.0.6
+
+ metro-source-map@0.80.12:
+ dependencies:
+ '@babel/traverse': 7.24.8
+ '@babel/types': 7.24.9
+ flow-enums-runtime: 0.0.6
+ invariant: 2.2.4
+ metro-symbolicate: 0.80.12
+ nullthrows: 1.1.1
+ ob1: 0.80.12
+ source-map: 0.5.7
+ vlq: 1.0.1
+ transitivePeerDependencies:
+ - supports-color
+
+ metro-symbolicate@0.80.12:
+ dependencies:
+ flow-enums-runtime: 0.0.6
+ invariant: 2.2.4
+ metro-source-map: 0.80.12
+ nullthrows: 1.1.1
+ source-map: 0.5.7
+ through2: 2.0.5
+ vlq: 1.0.1
+ transitivePeerDependencies:
+ - supports-color
+
+ metro-transform-plugins@0.80.12:
+ dependencies:
+ '@babel/core': 7.21.8
+ '@babel/generator': 7.24.10
+ '@babel/template': 7.24.7
+ '@babel/traverse': 7.24.8
+ flow-enums-runtime: 0.0.6
+ nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - supports-color
+
+ metro-transform-worker@0.80.12(bufferutil@4.0.7)(utf-8-validate@5.0.10):
+ dependencies:
+ '@babel/core': 7.21.8
+ '@babel/generator': 7.24.10
+ '@babel/parser': 7.24.8
+ '@babel/types': 7.24.9
+ flow-enums-runtime: 0.0.6
+ metro: 0.80.12(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ metro-babel-transformer: 0.80.12
+ metro-cache: 0.80.12
+ metro-cache-key: 0.80.12
+ metro-minify-terser: 0.80.12
+ metro-source-map: 0.80.12
+ metro-transform-plugins: 0.80.12
+ nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+
+ metro@0.80.12(bufferutil@4.0.7)(utf-8-validate@5.0.10):
+ dependencies:
+ '@babel/code-frame': 7.24.7
+ '@babel/core': 7.21.8
+ '@babel/generator': 7.24.10
+ '@babel/parser': 7.24.8
+ '@babel/template': 7.24.7
+ '@babel/traverse': 7.24.8
+ '@babel/types': 7.24.9
+ accepts: 1.3.8
+ chalk: 4.1.2
+ ci-info: 2.0.0
+ connect: 3.7.0
+ debug: 2.6.9
+ denodeify: 1.2.1
+ error-stack-parser: 2.1.4
+ flow-enums-runtime: 0.0.6
+ graceful-fs: 4.2.11
+ hermes-parser: 0.23.1
+ image-size: 1.1.1
+ invariant: 2.2.4
+ jest-worker: 29.6.4
+ jsc-safe-url: 0.2.4
+ lodash.throttle: 4.1.1
+ metro-babel-transformer: 0.80.12
+ metro-cache: 0.80.12
+ metro-cache-key: 0.80.12
+ metro-config: 0.80.12(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ metro-core: 0.80.12
+ metro-file-map: 0.80.12
+ metro-resolver: 0.80.12
+ metro-runtime: 0.80.12
+ metro-source-map: 0.80.12
+ metro-symbolicate: 0.80.12
+ metro-transform-plugins: 0.80.12
+ metro-transform-worker: 0.80.12(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ mime-types: 2.1.35
+ nullthrows: 1.1.1
+ serialize-error: 2.1.0
+ source-map: 0.5.7
+ strip-ansi: 6.0.1
+ throat: 5.0.0
+ ws: 7.5.10(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ yargs: 17.7.2
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+
micro-ftch@0.3.1: {}
micromatch@4.0.7:
@@ -30683,6 +33616,8 @@ snapshots:
mime@1.6.0: {}
+ mime@2.6.0: {}
+
mime@3.0.0: {}
mimic-fn@2.1.0: {}
@@ -31033,6 +33968,10 @@ snapshots:
lower-case: 2.0.2
tslib: 2.6.3
+ nocache@3.0.4: {}
+
+ node-abort-controller@3.1.1: {}
+
node-addon-api@2.0.2: {}
node-addon-api@3.2.1: {}
@@ -31041,6 +33980,10 @@ snapshots:
node-addon-api@7.0.0: {}
+ node-dir@0.1.17:
+ dependencies:
+ minimatch: 3.1.2
+
node-fetch-native@1.4.1: {}
node-fetch@2.6.7(encoding@0.1.13):
@@ -31080,6 +34023,8 @@ snapshots:
node-releases@2.0.14: {}
+ node-stream-zip@1.15.0: {}
+
nopt@6.0.0:
dependencies:
abbrev: 1.1.1
@@ -31257,6 +34202,8 @@ snapshots:
dependencies:
boolbase: 1.0.0
+ nullthrows@1.1.1: {}
+
number-to-bn@1.7.0:
dependencies:
bn.js: 4.11.6
@@ -31314,6 +34261,10 @@ snapshots:
transitivePeerDependencies:
- debug
+ ob1@0.80.12:
+ dependencies:
+ flow-enums-runtime: 0.0.6
+
object-assign@4.1.1: {}
object-hash@3.0.0: {}
@@ -31403,6 +34354,10 @@ snapshots:
on-exit-leak-free@0.2.0: {}
+ on-finished@2.3.0:
+ dependencies:
+ ee-first: 1.1.1
+
on-finished@2.4.1:
dependencies:
ee-first: 1.1.1
@@ -31421,6 +34376,15 @@ snapshots:
dependencies:
mimic-fn: 4.0.0
+ open@6.4.0:
+ dependencies:
+ is-wsl: 1.1.0
+
+ open@7.4.2:
+ dependencies:
+ is-docker: 2.2.1
+ is-wsl: 2.2.0
+
open@8.4.2:
dependencies:
define-lazy-prop: 2.0.0
@@ -31765,6 +34729,10 @@ snapshots:
pirates@4.0.6: {}
+ pkg-dir@3.0.0:
+ dependencies:
+ find-up: 3.0.0
+
pkg-dir@4.2.0:
dependencies:
find-up: 4.1.0
@@ -31943,14 +34911,6 @@ snapshots:
postcss: 8.4.35
postcss-value-parser: 4.2.0
- postcss-load-config@4.0.1(postcss@8.4.35)(ts-node@10.9.2(@types/node@20.12.7)(typescript@4.9.5)):
- dependencies:
- lilconfig: 2.1.0
- yaml: 2.4.5
- optionalDependencies:
- postcss: 8.4.35
- ts-node: 10.9.2(@types/node@20.12.7)(typescript@4.9.5)
-
postcss-load-config@4.0.1(postcss@8.4.35)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)):
dependencies:
lilconfig: 2.1.0
@@ -32294,6 +35254,13 @@ snapshots:
lodash: 4.17.21
renderkid: 3.0.0
+ pretty-format@26.6.2:
+ dependencies:
+ '@jest/types': 26.6.2
+ ansi-regex: 5.0.1
+ ansi-styles: 4.3.0
+ react-is: 17.0.2
+
pretty-format@27.5.1:
dependencies:
ansi-regex: 5.0.1
@@ -32492,10 +35459,16 @@ snapshots:
split-on-first: 1.1.0
strict-uri-encode: 2.0.0
+ querystring@0.2.1: {}
+
querystringify@2.2.0: {}
queue-microtask@1.2.3: {}
+ queue@6.0.2:
+ dependencies:
+ inherits: 2.0.4
+
quick-format-unescaped@4.0.4: {}
quick-lru@4.0.1: {}
@@ -32554,7 +35527,7 @@ snapshots:
react-clientside-effect@1.2.6(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.7
+ '@babel/runtime': 7.24.8
react: 18.3.1
react-dev-utils@12.0.1(eslint@8.57.0)(typescript@5.3.3)(vue-template-compiler@2.7.14)(webpack@5.88.2(esbuild@0.21.5)):
@@ -32625,6 +35598,14 @@ snapshots:
- supports-color
- vue-template-compiler
+ react-devtools-core@5.3.1(bufferutil@4.0.7)(utf-8-validate@5.0.10):
+ dependencies:
+ shell-quote: 1.8.1
+ ws: 7.5.10(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ transitivePeerDependencies:
+ - bufferutil
+ - utf-8-validate
+
react-display-name@0.2.5: {}
react-dom@18.2.0(react@18.2.0):
@@ -32633,6 +35614,12 @@ snapshots:
react: 18.2.0
scheduler: 0.23.0
+ react-dom@18.2.0(react@18.3.1):
+ dependencies:
+ loose-envify: 1.4.0
+ react: 18.3.1
+ scheduler: 0.23.0
+
react-dom@18.3.1(react@18.3.1):
dependencies:
loose-envify: 1.4.0
@@ -32645,7 +35632,7 @@ snapshots:
react-focus-lock@2.9.2(@types/react@18.3.1)(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.7
+ '@babel/runtime': 7.24.8
focus-lock: 0.11.6
prop-types: 15.8.1
react: 18.3.1
@@ -32655,6 +35642,18 @@ snapshots:
optionalDependencies:
'@types/react': 18.3.1
+ react-focus-lock@2.9.2(@types/react@18.3.3)(react@18.3.1):
+ dependencies:
+ '@babel/runtime': 7.24.8
+ focus-lock: 0.11.6
+ prop-types: 15.8.1
+ react: 18.3.1
+ react-clientside-effect: 1.2.6(react@18.3.1)
+ use-callback-ref: 1.3.2(@types/react@18.3.3)(react@18.3.1)
+ use-sidecar: 1.1.2(@types/react@18.3.3)(react@18.3.1)
+ optionalDependencies:
+ '@types/react': 18.3.3
+
react-hot-toast@2.4.1(csstype@3.1.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
dependencies:
goober: 2.1.14(csstype@3.1.3)
@@ -32676,10 +35675,24 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ react-i18next@13.5.0(i18next@23.4.6)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.21.8)(@babel/preset-env@7.22.15(@babel/core@7.21.8))(@types/react@18.3.3)(bufferutil@4.0.7)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1):
+ dependencies:
+ '@babel/runtime': 7.24.8
+ html-parse-stringify: 3.0.1
+ i18next: 23.4.6
+ react: 18.3.1
+ optionalDependencies:
+ react-dom: 18.3.1(react@18.3.1)
+ react-native: 0.74.0(@babel/core@7.21.8)(@babel/preset-env@7.22.15(@babel/core@7.21.8))(@types/react@18.3.3)(bufferutil@4.0.7)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
+
react-icons@4.12.0(react@18.3.1):
dependencies:
react: 18.3.1
+ react-international-phone@4.2.5(react@18.3.1):
+ dependencies:
+ react: 18.3.1
+
react-is@16.13.1: {}
react-is@17.0.2: {}
@@ -32707,8 +35720,71 @@ snapshots:
dependencies:
p-defer: 3.0.0
+ react-native-get-random-values@1.11.0(react-native@0.74.0(@babel/core@7.21.8)(@babel/preset-env@7.22.15(@babel/core@7.21.8))(@types/react@18.3.3)(bufferutil@4.0.7)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)):
+ dependencies:
+ fast-base64-decode: 1.0.0
+ react-native: 0.74.0(@babel/core@7.21.8)(@babel/preset-env@7.22.15(@babel/core@7.21.8))(@types/react@18.3.3)(bufferutil@4.0.7)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
+
+ react-native-quick-base64@2.1.2(react-native@0.74.0(@babel/core@7.21.8)(@babel/preset-env@7.22.15(@babel/core@7.21.8))(@types/react@18.3.3)(bufferutil@4.0.7)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1):
+ dependencies:
+ base64-js: 1.5.1
+ react: 18.3.1
+ react-native: 0.74.0(@babel/core@7.21.8)(@babel/preset-env@7.22.15(@babel/core@7.21.8))(@types/react@18.3.3)(bufferutil@4.0.7)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
+
+ react-native@0.74.0(@babel/core@7.21.8)(@babel/preset-env@7.22.15(@babel/core@7.21.8))(@types/react@18.3.3)(bufferutil@4.0.7)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10):
+ dependencies:
+ '@jest/create-cache-key-function': 29.7.0
+ '@react-native-community/cli': 13.6.4(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@react-native-community/cli-platform-android': 13.6.4(encoding@0.1.13)
+ '@react-native-community/cli-platform-ios': 13.6.4(encoding@0.1.13)
+ '@react-native/assets-registry': 0.74.81
+ '@react-native/codegen': 0.74.81(@babel/preset-env@7.22.15(@babel/core@7.21.8))
+ '@react-native/community-cli-plugin': 0.74.81(@babel/core@7.21.8)(@babel/preset-env@7.22.15(@babel/core@7.21.8))(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@react-native/gradle-plugin': 0.74.81
+ '@react-native/js-polyfills': 0.74.81
+ '@react-native/normalize-colors': 0.74.81
+ '@react-native/virtualized-lists': 0.74.81(@types/react@18.3.3)(react-native@0.74.0(@babel/core@7.21.8)(@babel/preset-env@7.22.15(@babel/core@7.21.8))(@types/react@18.3.3)(bufferutil@4.0.7)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
+ abort-controller: 3.0.0
+ anser: 1.4.10
+ ansi-regex: 5.0.1
+ base64-js: 1.5.1
+ chalk: 4.1.2
+ event-target-shim: 5.0.1
+ flow-enums-runtime: 0.0.6
+ invariant: 2.2.4
+ jest-environment-node: 29.6.4
+ jsc-android: 250231.0.0
+ memoize-one: 5.2.1
+ metro-runtime: 0.80.12
+ metro-source-map: 0.80.12
+ mkdirp: 0.5.6
+ nullthrows: 1.1.1
+ pretty-format: 26.6.2
+ promise: 8.3.0
+ react: 18.3.1
+ react-devtools-core: 5.3.1(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ react-refresh: 0.14.2
+ react-shallow-renderer: 16.15.0(react@18.3.1)
+ regenerator-runtime: 0.13.11
+ scheduler: 0.24.0-canary-efb381bbf-20230505
+ stacktrace-parser: 0.1.10
+ whatwg-fetch: 3.6.19
+ ws: 6.2.3(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ yargs: 17.7.2
+ optionalDependencies:
+ '@types/react': 18.3.3
+ transitivePeerDependencies:
+ - '@babel/core'
+ - '@babel/preset-env'
+ - bufferutil
+ - encoding
+ - supports-color
+ - utf-8-validate
+
react-refresh@0.11.0: {}
+ react-refresh@0.14.2: {}
+
react-remove-scroll-bar@2.3.6(@types/react@18.3.3)(react@18.2.0):
dependencies:
react: 18.2.0
@@ -32740,7 +35816,7 @@ snapshots:
'@remix-run/router': 1.18.0
react: 18.3.1
- react-scripts@5.0.1(@babel/plugin-syntax-flow@7.22.5(@babel/core@7.22.17))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.17))(@types/babel__core@7.20.1)(bufferutil@4.0.7)(esbuild@0.21.5)(eslint@8.57.0)(react@18.2.0)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3))(type-fest@0.21.3)(typescript@5.3.3)(utf-8-validate@5.0.10)(vue-template-compiler@2.7.14):
+ react-scripts@5.0.1(@babel/plugin-syntax-flow@7.25.7(@babel/core@7.22.17))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.17))(@types/babel__core@7.20.1)(bufferutil@4.0.7)(esbuild@0.21.5)(eslint@8.57.0)(react@18.2.0)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3))(type-fest@0.21.3)(typescript@5.3.3)(utf-8-validate@5.0.10)(vue-template-compiler@2.7.14):
dependencies:
'@babel/core': 7.22.17
'@pmmmwh/react-refresh-webpack-plugin': 0.5.11(react-refresh@0.11.0)(type-fest@0.21.3)(webpack-dev-server@4.15.1(bufferutil@4.0.7)(utf-8-validate@5.0.10)(webpack@5.88.2(esbuild@0.21.5)))(webpack@5.88.2(esbuild@0.21.5))
@@ -32758,7 +35834,7 @@ snapshots:
dotenv: 10.0.0
dotenv-expand: 5.1.0
eslint: 8.57.0
- eslint-config-react-app: 7.0.1(@babel/plugin-syntax-flow@7.22.5(@babel/core@7.22.17))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.17))(eslint@8.57.0)(jest@27.5.1(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3))(utf-8-validate@5.0.10))(typescript@5.3.3)
+ eslint-config-react-app: 7.0.1(@babel/plugin-syntax-flow@7.25.7(@babel/core@7.22.17))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.17))(eslint@8.57.0)(jest@27.5.1(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3))(utf-8-validate@5.0.10))(typescript@5.3.3)
eslint-webpack-plugin: 3.2.0(eslint@8.57.0)(webpack@5.88.2(esbuild@0.21.5))
file-loader: 6.2.0(webpack@5.88.2(esbuild@0.21.5))
fs-extra: 10.1.0
@@ -32912,6 +35988,12 @@ snapshots:
- webpack-hot-middleware
- webpack-plugin-serve
+ react-shallow-renderer@16.15.0(react@18.3.1):
+ dependencies:
+ object-assign: 4.1.1
+ react: 18.3.1
+ react-is: 18.3.1
+
react-style-singleton@2.2.1(@types/react@18.3.3)(react@18.2.0):
dependencies:
get-nonce: 1.0.1
@@ -33050,10 +36132,19 @@ snapshots:
dependencies:
picomatch: 2.3.1
+ readline@1.3.0: {}
+
readonly-date@1.0.0: {}
real-require@0.1.0: {}
+ recast@0.21.5:
+ dependencies:
+ ast-types: 0.15.2
+ esprima: 4.0.1
+ source-map: 0.6.1
+ tslib: 2.6.3
+
receptacle@1.3.2:
dependencies:
ms: 2.1.3
@@ -33148,6 +36239,8 @@ snapshots:
dependencies:
resolve-from: 5.0.0
+ resolve-from@3.0.0: {}
+
resolve-from@4.0.0: {}
resolve-from@5.0.0: {}
@@ -33200,6 +36293,10 @@ snapshots:
reusify@1.0.4: {}
+ rimraf@2.6.3:
+ dependencies:
+ glob: 7.2.3
+
rimraf@3.0.2:
dependencies:
glob: 7.2.3
@@ -33269,6 +36366,15 @@ snapshots:
bufferutil: 4.0.7
utf-8-validate: 5.0.10
+ rpc-websockets@7.11.2:
+ dependencies:
+ eventemitter3: 4.0.7
+ uuid: 8.3.2
+ ws: 8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ optionalDependencies:
+ bufferutil: 4.0.7
+ utf-8-validate: 5.0.10
+
rpc-websockets@9.0.2:
dependencies:
'@swc/helpers': 0.5.11
@@ -33370,6 +36476,10 @@ snapshots:
dependencies:
loose-envify: 1.4.0
+ scheduler@0.24.0-canary-efb381bbf-20230505:
+ dependencies:
+ loose-envify: 1.4.0
+
schema-utils@2.7.0:
dependencies:
'@types/json-schema': 7.0.12
@@ -33415,6 +36525,11 @@ snapshots:
dependencies:
node-forge: 1.3.1
+ selfsigned@2.4.1:
+ dependencies:
+ '@types/node-forge': 1.3.1
+ node-forge: 1.3.1
+
semver@5.7.2: {}
semver@6.3.1: {}
@@ -33449,6 +36564,8 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ serialize-error@2.1.0: {}
+
serialize-javascript@4.0.0:
dependencies:
randombytes: 2.1.0
@@ -33517,6 +36634,8 @@ snapshots:
inherits: 2.0.4
safe-buffer: 5.2.1
+ sha256-uint8array@0.10.7: {}
+
sha3@2.1.4:
dependencies:
buffer: 6.0.3
@@ -33527,6 +36646,32 @@ snapshots:
shallow-equal@1.2.1: {}
+ sharp@0.33.2:
+ dependencies:
+ color: 4.2.3
+ detect-libc: 2.0.3
+ semver: 7.6.0
+ optionalDependencies:
+ '@img/sharp-darwin-arm64': 0.33.2
+ '@img/sharp-darwin-x64': 0.33.2
+ '@img/sharp-libvips-darwin-arm64': 1.0.1
+ '@img/sharp-libvips-darwin-x64': 1.0.1
+ '@img/sharp-libvips-linux-arm': 1.0.1
+ '@img/sharp-libvips-linux-arm64': 1.0.1
+ '@img/sharp-libvips-linux-s390x': 1.0.1
+ '@img/sharp-libvips-linux-x64': 1.0.1
+ '@img/sharp-libvips-linuxmusl-arm64': 1.0.1
+ '@img/sharp-libvips-linuxmusl-x64': 1.0.1
+ '@img/sharp-linux-arm': 0.33.2
+ '@img/sharp-linux-arm64': 0.33.2
+ '@img/sharp-linux-s390x': 0.33.2
+ '@img/sharp-linux-x64': 0.33.2
+ '@img/sharp-linuxmusl-arm64': 0.33.2
+ '@img/sharp-linuxmusl-x64': 0.33.2
+ '@img/sharp-wasm32': 0.33.2
+ '@img/sharp-win32-ia32': 0.33.2
+ '@img/sharp-win32-x64': 0.33.2
+
shebang-command@1.2.0:
dependencies:
shebang-regex: 1.0.0
@@ -33577,6 +36722,10 @@ snapshots:
once: 1.4.0
simple-concat: 1.0.1
+ simple-swizzle@0.2.2:
+ dependencies:
+ is-arrayish: 0.3.2
+
sisteransi@1.0.5: {}
siwe-recap@0.0.2-alpha.0(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@5.0.10)):
@@ -33598,6 +36747,12 @@ snapshots:
slash@4.0.0: {}
+ slice-ansi@2.1.0:
+ dependencies:
+ ansi-styles: 3.2.1
+ astral-regex: 1.0.0
+ is-fullwidth-code-point: 2.0.0
+
smart-buffer@4.2.0: {}
smartwrap@2.0.2:
@@ -33990,6 +37145,8 @@ snapshots:
dependencies:
acorn: 8.11.2
+ strnum@1.0.5: {}
+
strong-log-transformer@2.1.0:
dependencies:
duplexer: 0.1.2
@@ -34042,6 +37199,8 @@ snapshots:
pirates: 4.0.6
ts-interface-checker: 0.1.13
+ sudo-prompt@9.2.1: {}
+
superstruct@0.14.2: {}
superstruct@1.0.4: {}
@@ -34193,7 +37352,7 @@ snapshots:
transitivePeerDependencies:
- ts-node
- tailwindcss@3.4.10(ts-node@10.9.2(@types/node@20.12.7)(typescript@4.9.5)):
+ tailwindcss@3.4.10(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.5.3)):
dependencies:
'@alloc/quick-lru': 5.2.0
arg: 5.0.2
@@ -34212,7 +37371,7 @@ snapshots:
postcss: 8.4.35
postcss-import: 15.1.0(postcss@8.4.35)
postcss-js: 4.0.1(postcss@8.4.35)
- postcss-load-config: 4.0.1(postcss@8.4.35)(ts-node@10.9.2(@types/node@20.12.7)(typescript@4.9.5))
+ postcss-load-config: 4.0.1(postcss@8.4.35)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.5.3))
postcss-nested: 6.0.1(postcss@8.4.35)
postcss-selector-parser: 6.0.13
resolve: 1.22.4
@@ -34378,6 +37537,10 @@ snapshots:
temp-dir@2.0.0: {}
+ temp@0.8.4:
+ dependencies:
+ rimraf: 2.6.3
+
tempy@0.6.0:
dependencies:
is-stream: 2.0.1
@@ -34450,6 +37613,8 @@ snapshots:
dependencies:
real-require: 0.1.0
+ throat@5.0.0: {}
+
throat@6.0.2: {}
through2@2.0.5:
@@ -34483,6 +37648,12 @@ snapshots:
titleize@3.0.0: {}
+ tldts-core@6.1.50: {}
+
+ tldts@6.0.16:
+ dependencies:
+ tldts-core: 6.1.50
+
tmp@0.0.33:
dependencies:
os-tmpdir: 1.0.2
@@ -34568,25 +37739,6 @@ snapshots:
babel-jest: 29.6.4(@babel/core@7.21.8)
esbuild: 0.21.5
- ts-node@10.9.2(@types/node@20.12.7)(typescript@4.9.5):
- dependencies:
- '@cspotcode/source-map-support': 0.8.1
- '@tsconfig/node10': 1.0.9
- '@tsconfig/node12': 1.0.11
- '@tsconfig/node14': 1.0.3
- '@tsconfig/node16': 1.0.4
- '@types/node': 20.12.7
- acorn: 8.11.2
- acorn-walk: 8.3.1
- arg: 4.1.3
- create-require: 1.1.1
- diff: 4.0.2
- make-error: 1.3.6
- typescript: 4.9.5
- v8-compile-cache-lib: 3.0.1
- yn: 3.1.1
- optional: true
-
ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3):
dependencies:
'@cspotcode/source-map-support': 0.8.1
@@ -35038,6 +38190,13 @@ snapshots:
optionalDependencies:
'@types/react': 18.3.3
+ use-callback-ref@1.3.2(@types/react@18.3.3)(react@18.3.1):
+ dependencies:
+ react: 18.3.1
+ tslib: 2.6.3
+ optionalDependencies:
+ '@types/react': 18.3.3
+
use-sidecar@1.1.2(@types/react@18.3.1)(react@18.3.1):
dependencies:
detect-node-es: 1.1.0
@@ -35054,6 +38213,14 @@ snapshots:
optionalDependencies:
'@types/react': 18.3.3
+ use-sidecar@1.1.2(@types/react@18.3.3)(react@18.3.1):
+ dependencies:
+ detect-node-es: 1.1.0
+ react: 18.3.1
+ tslib: 2.6.3
+ optionalDependencies:
+ '@types/react': 18.3.3
+
use-sync-external-store@1.2.0(react@18.2.0):
dependencies:
react: 18.2.0
@@ -35145,6 +38312,14 @@ snapshots:
optionalDependencies:
react: 18.3.1
+ valtio@1.11.2(@types/react@18.3.3)(react@18.3.1):
+ dependencies:
+ proxy-compare: 2.5.1
+ use-sync-external-store: 1.2.0(react@18.3.1)
+ optionalDependencies:
+ '@types/react': 18.3.3
+ react: 18.3.1
+
varint@6.0.0: {}
varuint-bitcoin@1.1.2:
@@ -35204,6 +38379,23 @@ snapshots:
- utf-8-validate
- zod
+ viem@2.9.25(bufferutil@4.0.7)(typescript@5.5.3)(utf-8-validate@5.0.10)(zod@3.22.4):
+ dependencies:
+ '@adraffy/ens-normalize': 1.10.0
+ '@noble/curves': 1.2.0
+ '@noble/hashes': 1.3.2
+ '@scure/bip32': 1.3.2
+ '@scure/bip39': 1.2.1
+ abitype: 1.0.0(typescript@5.5.3)(zod@3.22.4)
+ isows: 1.0.3(ws@8.13.0(bufferutil@4.0.7)(utf-8-validate@5.0.10))
+ ws: 8.13.0(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ optionalDependencies:
+ typescript: 5.5.3
+ transitivePeerDependencies:
+ - bufferutil
+ - utf-8-validate
+ - zod
+
vite-node@0.34.4(@types/node@20.14.11)(terser@5.19.4):
dependencies:
cac: 6.7.14
@@ -35354,8 +38546,12 @@ snapshots:
- supports-color
- terser
+ vlq@1.0.1: {}
+
vm@0.1.0: {}
+ void-elements@3.1.0: {}
+
vue-component-type-helpers@1.8.4: {}
vue-eslint-parser@9.3.1(eslint@8.57.0):
@@ -36182,6 +39378,13 @@ snapshots:
type-fest: 0.4.1
write-json-file: 3.2.0
+ ws@6.2.3(bufferutil@4.0.7)(utf-8-validate@5.0.10):
+ dependencies:
+ async-limiter: 1.0.1
+ optionalDependencies:
+ bufferutil: 4.0.7
+ utf-8-validate: 5.0.10
+
ws@7.4.6(bufferutil@4.0.7)(utf-8-validate@5.0.10):
optionalDependencies:
bufferutil: 4.0.7
@@ -36347,7 +39550,7 @@ snapshots:
yup@0.32.11:
dependencies:
- '@babel/runtime': 7.24.7
+ '@babel/runtime': 7.24.8
'@types/lodash': 4.17.6
lodash: 4.17.21
lodash-es: 4.17.21