diff --git a/.prettierignore b/.prettierignore
index c047e85b7..216245c8e 100644
--- a/.prettierignore
+++ b/.prettierignore
@@ -20,5 +20,6 @@ patches/
apps/api-reference
apps/staking
apps/insights
+apps/entropy-debug
governance/pyth_staking_sdk
packages/*
diff --git a/apps/entropy-debugger/.gitignore b/apps/entropy-debugger/.gitignore
new file mode 100644
index 000000000..9d2ee2a73
--- /dev/null
+++ b/apps/entropy-debugger/.gitignore
@@ -0,0 +1 @@
+.env*.local
diff --git a/apps/entropy-debugger/.prettierignore b/apps/entropy-debugger/.prettierignore
new file mode 100644
index 000000000..5f66a649b
--- /dev/null
+++ b/apps/entropy-debugger/.prettierignore
@@ -0,0 +1,7 @@
+.next/
+coverage/
+node_modules/
+*.tsbuildinfo
+.env*.local
+.env
+.DS_Store
diff --git a/apps/entropy-debugger/README.md b/apps/entropy-debugger/README.md
new file mode 100644
index 000000000..e69de29bb
diff --git a/apps/entropy-debugger/components.json b/apps/entropy-debugger/components.json
new file mode 100644
index 000000000..dd679c08d
--- /dev/null
+++ b/apps/entropy-debugger/components.json
@@ -0,0 +1,14 @@
+{
+ "$schema": "https://ui.shadcn.com/schema.json",
+ "style": "default",
+ "rsc": true,
+ "tsx": true,
+ "tailwind": {
+ "config": "tailwind.config.ts",
+ "css": "src/app/globals.css",
+ "baseColor": "neutral",
+ "cssVariables": true,
+ "prefix": ""
+ },
+ "iconLibrary": "lucide"
+}
diff --git a/apps/entropy-debugger/eslint.config.js b/apps/entropy-debugger/eslint.config.js
new file mode 100644
index 000000000..7035c57cb
--- /dev/null
+++ b/apps/entropy-debugger/eslint.config.js
@@ -0,0 +1 @@
+export { nextjs as default } from "@cprussin/eslint-config";
diff --git a/apps/entropy-debugger/jest.config.js b/apps/entropy-debugger/jest.config.js
new file mode 100644
index 000000000..b7edcf4c8
--- /dev/null
+++ b/apps/entropy-debugger/jest.config.js
@@ -0,0 +1 @@
+export { nextjs as default } from "@cprussin/jest-config";
diff --git a/apps/entropy-debugger/next-env.d.ts b/apps/entropy-debugger/next-env.d.ts
new file mode 100644
index 000000000..1b3be0840
--- /dev/null
+++ b/apps/entropy-debugger/next-env.d.ts
@@ -0,0 +1,5 @@
+///
+///
+
+// NOTE: This file should not be edited
+// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
diff --git a/apps/entropy-debugger/next.config.js b/apps/entropy-debugger/next.config.js
new file mode 100644
index 000000000..dc9820062
--- /dev/null
+++ b/apps/entropy-debugger/next.config.js
@@ -0,0 +1,49 @@
+const config = {
+ reactStrictMode: true,
+
+ pageExtensions: ["ts", "tsx", "mdx"],
+
+ logging: {
+ fetches: {
+ fullUrl: true,
+ },
+ },
+
+ webpack(config) {
+ config.resolve.extensionAlias = {
+ ".js": [".js", ".ts", ".tsx"],
+ };
+
+ return config;
+ },
+
+ headers: async () => [
+ {
+ source: "/:path*",
+ headers: [
+ {
+ key: "X-XSS-Protection",
+ value: "1; mode=block",
+ },
+ {
+ key: "Referrer-Policy",
+ value: "strict-origin-when-cross-origin",
+ },
+ {
+ key: "Strict-Transport-Security",
+ value: "max-age=2592000",
+ },
+ {
+ key: "X-Content-Type-Options",
+ value: "nosniff",
+ },
+ {
+ key: "Permissions-Policy",
+ value:
+ "vibrate=(), geolocation=(), midi=(), notifications=(), push=(), sync-xhr=(), microphone=(), camera=(), magnetometer=(), gyroscope=(), speaker=(), vibrate=(), fullscreen=self",
+ },
+ ],
+ },
+ ],
+};
+export default config;
diff --git a/apps/entropy-debugger/package.json b/apps/entropy-debugger/package.json
new file mode 100644
index 000000000..6d09c2dd5
--- /dev/null
+++ b/apps/entropy-debugger/package.json
@@ -0,0 +1,52 @@
+{
+ "name": "@pythnetwork/entropy-debugger",
+ "version": "0.0.0",
+ "private": true,
+ "type": "module",
+ "engines": {
+ "node": "22"
+ },
+ "scripts": {
+ "build": "next build",
+ "fix:format": "prettier --write .",
+ "fix:lint": "eslint --fix .",
+ "start:dev": "next dev --port 3005",
+ "start:prod": "next start --port 3005",
+ "test:format": "prettier --check .",
+ "test:lint": "eslint .",
+ "test:types": "tsc"
+ },
+ "dependencies": {
+ "@radix-ui/react-select": "^2.1.2",
+ "@radix-ui/react-slot": "^1.1.0",
+ "@radix-ui/react-switch": "^1.1.1",
+ "class-variance-authority": "^0.7.1",
+ "clsx": "catalog:",
+ "highlight.js": "^11.10.0",
+ "lucide-react": "^0.465.0",
+ "next": "catalog:",
+ "react": "catalog:",
+ "react-dom": "catalog:",
+ "tailwind-merge": "^2.5.5",
+ "tailwindcss-animate": "^1.0.7",
+ "viem": "^2.21.53",
+ "zod": "catalog:"
+ },
+ "devDependencies": {
+ "@cprussin/eslint-config": "catalog:",
+ "@cprussin/jest-config": "catalog:",
+ "@cprussin/prettier-config": "catalog:",
+ "@cprussin/tsconfig": "catalog:",
+ "@types/jest": "catalog:",
+ "@types/node": "catalog:",
+ "@types/react": "catalog:",
+ "@types/react-dom": "catalog:",
+ "eslint": "catalog:",
+ "jest": "catalog:",
+ "postcss": "catalog:",
+ "prettier": "catalog:",
+ "tailwindcss": "catalog:",
+ "typescript": "catalog:",
+ "vercel": "catalog:"
+ }
+}
diff --git a/apps/entropy-debugger/postcss.config.js b/apps/entropy-debugger/postcss.config.js
new file mode 100644
index 000000000..1a69fd2a4
--- /dev/null
+++ b/apps/entropy-debugger/postcss.config.js
@@ -0,0 +1,8 @@
+/** @type {import('postcss-load-config').Config} */
+const config = {
+ plugins: {
+ tailwindcss: {},
+ },
+};
+
+export default config;
diff --git a/apps/entropy-debugger/prettier.config.js b/apps/entropy-debugger/prettier.config.js
new file mode 100644
index 000000000..1e43aeedd
--- /dev/null
+++ b/apps/entropy-debugger/prettier.config.js
@@ -0,0 +1 @@
+export { base as default } from "@cprussin/prettier-config";
diff --git a/apps/entropy-debugger/prettierignore b/apps/entropy-debugger/prettierignore
new file mode 100644
index 000000000..5f66a649b
--- /dev/null
+++ b/apps/entropy-debugger/prettierignore
@@ -0,0 +1,7 @@
+.next/
+coverage/
+node_modules/
+*.tsbuildinfo
+.env*.local
+.env
+.DS_Store
diff --git a/apps/entropy-debugger/src/app/favicon.ico b/apps/entropy-debugger/src/app/favicon.ico
new file mode 100644
index 000000000..718d6fea4
Binary files /dev/null and b/apps/entropy-debugger/src/app/favicon.ico differ
diff --git a/apps/entropy-debugger/src/app/fonts/GeistMonoVF.woff b/apps/entropy-debugger/src/app/fonts/GeistMonoVF.woff
new file mode 100644
index 000000000..f2ae185cb
Binary files /dev/null and b/apps/entropy-debugger/src/app/fonts/GeistMonoVF.woff differ
diff --git a/apps/entropy-debugger/src/app/fonts/GeistVF.woff b/apps/entropy-debugger/src/app/fonts/GeistVF.woff
new file mode 100644
index 000000000..1b62daacf
Binary files /dev/null and b/apps/entropy-debugger/src/app/fonts/GeistVF.woff differ
diff --git a/apps/entropy-debugger/src/app/globals.css b/apps/entropy-debugger/src/app/globals.css
new file mode 100644
index 000000000..a23ac26b0
--- /dev/null
+++ b/apps/entropy-debugger/src/app/globals.css
@@ -0,0 +1,72 @@
+@tailwind base;
+@tailwind components;
+@tailwind utilities;
+
+body {
+ font-family: Arial, Helvetica, sans-serif;
+}
+
+@layer base {
+ :root {
+ --background: 0 0% 100%;
+ --foreground: 0 0% 3.9%;
+ --card: 0 0% 100%;
+ --card-foreground: 0 0% 3.9%;
+ --popover: 0 0% 100%;
+ --popover-foreground: 0 0% 3.9%;
+ --primary: 0 0% 9%;
+ --primary-foreground: 0 0% 98%;
+ --secondary: 0 0% 96.1%;
+ --secondary-foreground: 0 0% 9%;
+ --muted: 0 0% 96.1%;
+ --muted-foreground: 0 0% 45.1%;
+ --accent: 0 0% 96.1%;
+ --accent-foreground: 0 0% 9%;
+ --destructive: 0 84.2% 60.2%;
+ --destructive-foreground: 0 0% 98%;
+ --border: 0 0% 89.8%;
+ --input: 0 0% 89.8%;
+ --ring: 0 0% 3.9%;
+ --chart-1: 12 76% 61%;
+ --chart-2: 173 58% 39%;
+ --chart-3: 197 37% 24%;
+ --chart-4: 43 74% 66%;
+ --chart-5: 27 87% 67%;
+ --radius: 0.5rem;
+ }
+ .dark {
+ --background: 0 0% 3.9%;
+ --foreground: 0 0% 98%;
+ --card: 0 0% 3.9%;
+ --card-foreground: 0 0% 98%;
+ --popover: 0 0% 3.9%;
+ --popover-foreground: 0 0% 98%;
+ --primary: 0 0% 98%;
+ --primary-foreground: 0 0% 9%;
+ --secondary: 0 0% 14.9%;
+ --secondary-foreground: 0 0% 98%;
+ --muted: 0 0% 14.9%;
+ --muted-foreground: 0 0% 63.9%;
+ --accent: 0 0% 14.9%;
+ --accent-foreground: 0 0% 98%;
+ --destructive: 0 62.8% 30.6%;
+ --destructive-foreground: 0 0% 98%;
+ --border: 0 0% 14.9%;
+ --input: 0 0% 14.9%;
+ --ring: 0 0% 83.1%;
+ --chart-1: 220 70% 50%;
+ --chart-2: 160 60% 45%;
+ --chart-3: 30 80% 55%;
+ --chart-4: 280 65% 60%;
+ --chart-5: 340 75% 55%;
+ }
+}
+
+@layer base {
+ * {
+ @apply border-border;
+ }
+ body {
+ @apply bg-background text-foreground;
+ }
+}
diff --git a/apps/entropy-debugger/src/app/layout.tsx b/apps/entropy-debugger/src/app/layout.tsx
new file mode 100644
index 000000000..382a9c96a
--- /dev/null
+++ b/apps/entropy-debugger/src/app/layout.tsx
@@ -0,0 +1,35 @@
+import type { Metadata } from "next";
+import localFont from "next/font/local";
+import "./globals.css";
+
+const geistSans = localFont({
+ src: "./fonts/GeistVF.woff",
+ variable: "--font-geist-sans",
+ weight: "100 900",
+});
+const geistMono = localFont({
+ src: "./fonts/GeistMonoVF.woff",
+ variable: "--font-geist-mono",
+ weight: "100 900",
+});
+
+export const metadata: Metadata = {
+ title: "Pyth Entropy Debug App",
+ description: "Pyth Entropy Debug App",
+};
+
+export default function RootLayout({
+ children,
+}: Readonly<{
+ children: React.ReactNode;
+}>) {
+ return (
+
+
+ {children}
+
+
+ );
+}
diff --git a/apps/entropy-debugger/src/app/page.tsx b/apps/entropy-debugger/src/app/page.tsx
new file mode 100644
index 000000000..376904478
--- /dev/null
+++ b/apps/entropy-debugger/src/app/page.tsx
@@ -0,0 +1,241 @@
+"use client";
+
+import hljs from "highlight.js/lib/core";
+import bash from "highlight.js/lib/languages/bash";
+import { useState, useMemo, useCallback, useEffect, useRef } from "react";
+
+import { Input } from "../components/ui/input";
+import {
+ Select,
+ SelectContent,
+ SelectItem,
+ SelectTrigger,
+ SelectValue,
+} from "../components/ui/select";
+import { Switch } from "../components/ui/switch";
+import { requestCallback } from "../lib/revelation";
+import {
+ EntropyDeployments,
+ isValidDeployment,
+} from "../store/entropy-deployments";
+
+import "highlight.js/styles/github-dark.css"; // You can choose different themes
+
+// Register the bash language
+hljs.registerLanguage("bash", bash);
+
+class BaseError extends Error {
+ constructor(message: string) {
+ super(message);
+ this.name = "BaseError";
+ }
+}
+
+class InvalidTxHashError extends BaseError {
+ constructor(message: string) {
+ super(message);
+ this.name = "InvalidTxHashError";
+ }
+}
+
+enum TxStateType {
+ NotLoaded,
+ Loading,
+ Success,
+ Error,
+}
+
+const TxState = {
+ NotLoaded: () => ({ status: TxStateType.NotLoaded as const }),
+ Loading: () => ({ status: TxStateType.Loading as const }),
+ Success: (data: string) => ({ status: TxStateType.Success as const, data }),
+ ErrorState: (error: unknown) => ({
+ status: TxStateType.Error as const,
+ error,
+ }),
+};
+
+type TxStateContext =
+ | ReturnType
+ | ReturnType
+ | ReturnType
+ | ReturnType;
+
+export default function PythEntropyDebugApp() {
+ const [state, setState] = useState(TxState.NotLoaded());
+ const [isMainnet, setIsMainnet] = useState(false);
+ const [txHash, setTxHash] = useState("");
+ const [error, setError] = useState(undefined);
+ const [selectedChain, setSelectedChain] = useState<
+ "" | keyof typeof EntropyDeployments
+ >("");
+
+ const validateTxHash = (hash: string) => {
+ if (!isValidTxHash(hash) && hash !== "") {
+ setError(
+ new InvalidTxHashError(
+ "Transaction hash must be 64 hexadecimal characters",
+ ),
+ );
+ } else {
+ setError(undefined);
+ }
+ setTxHash(hash);
+ };
+
+ const availableChains = useMemo(() => {
+ return Object.entries(EntropyDeployments)
+ .filter(
+ ([, deployment]) =>
+ deployment.network === (isMainnet ? "mainnet" : "testnet"),
+ )
+ .toSorted(([a], [b]) => a.localeCompare(b))
+ .map(([key]) => key);
+ }, [isMainnet]);
+
+ const oncClickFetchInfo = useCallback(() => {
+ if (selectedChain !== "") {
+ setState(TxState.Loading());
+ requestCallback(txHash, selectedChain)
+ .then((data) => {
+ setState(TxState.Success(data));
+ })
+ .catch((error: unknown) => {
+ setState(TxState.ErrorState(error));
+ });
+ }
+ }, [txHash, selectedChain]);
+
+ const updateIsMainnet = useCallback(
+ (newValue: boolean) => {
+ setSelectedChain("");
+ setIsMainnet(newValue);
+ },
+ [setSelectedChain, setIsMainnet],
+ );
+
+ const updateSelectedChain = useCallback(
+ (chain: string) => {
+ if (isValidDeployment(chain)) {
+ setSelectedChain(chain);
+ }
+ },
+ [setSelectedChain],
+ );
+
+ return (
+
+
Pyth Entropy Debug App
+
+
+
+
+
+
+
+
+
+
+
+
{
+ validateTxHash(e.target.value);
+ }}
+ />
+ {error &&
{error.message}
}
+
+
+
+
+
+
+ );
+}
+
+const Info = ({ state }: { state: TxStateContext }) => {
+ const preRef = useRef(null);
+
+ useEffect(() => {
+ if (preRef.current && state.status === TxStateType.Success) {
+ hljs.highlightElement(preRef.current);
+ }
+ }, [state]);
+
+ switch (state.status) {
+ case TxStateType.NotLoaded: {
+ return Not loaded
;
+ }
+ case TxStateType.Loading: {
+ return Loading...
;
+ }
+ case TxStateType.Success: {
+ return (
+
+
+ Please run the following command in your terminal:
+
+
+
+ {state.data}
+
+
+
+
+ );
+ }
+ case TxStateType.Error: {
+ return (
+
+
{String(state.error)}
+
+ );
+ }
+ }
+};
+
+function isValidTxHash(hash: string) {
+ const cleanHash = hash.toLowerCase().replace("0x", "");
+ return /^[\da-f]{64}$/.test(cleanHash);
+}
diff --git a/apps/entropy-debugger/src/components/ui/button.tsx b/apps/entropy-debugger/src/components/ui/button.tsx
new file mode 100644
index 000000000..9b598d87e
--- /dev/null
+++ b/apps/entropy-debugger/src/components/ui/button.tsx
@@ -0,0 +1,55 @@
+import { Slot } from "@radix-ui/react-slot";
+import { cva, type VariantProps } from "class-variance-authority";
+import type { ComponentProps } from "react";
+
+import { cn } from "../../lib/utils";
+
+const buttonVariants = cva(
+ "inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0",
+ {
+ variants: {
+ variant: {
+ default: "bg-primary text-primary-foreground hover:bg-primary/90",
+ destructive:
+ "bg-destructive text-destructive-foreground hover:bg-destructive/90",
+ outline:
+ "border border-input bg-background hover:bg-accent hover:text-accent-foreground",
+ secondary:
+ "bg-secondary text-secondary-foreground hover:bg-secondary/80",
+ ghost: "hover:bg-accent hover:text-accent-foreground",
+ link: "text-primary underline-offset-4 hover:underline",
+ },
+ size: {
+ default: "h-10 px-4 py-2",
+ sm: "h-9 rounded-md px-3",
+ lg: "h-11 rounded-md px-8",
+ icon: "h-10 w-10",
+ },
+ },
+ defaultVariants: {
+ variant: "default",
+ size: "default",
+ },
+ },
+);
+
+export type ButtonProps = {
+ asChild?: boolean;
+} & ComponentProps<"button"> &
+ VariantProps;
+
+export const Button = ({
+ className,
+ variant,
+ size,
+ asChild = false,
+ ...props
+}: ButtonProps) => {
+ const Comp = asChild ? Slot : "button";
+ return (
+
+ );
+};
diff --git a/apps/entropy-debugger/src/components/ui/input.tsx b/apps/entropy-debugger/src/components/ui/input.tsx
new file mode 100644
index 000000000..5c2e6d538
--- /dev/null
+++ b/apps/entropy-debugger/src/components/ui/input.tsx
@@ -0,0 +1,13 @@
+import type { ComponentProps } from "react";
+
+import { cn } from "../../lib/utils";
+
+export const Input = ({ className, ...props }: ComponentProps<"input">) => (
+
+);
diff --git a/apps/entropy-debugger/src/components/ui/select.tsx b/apps/entropy-debugger/src/components/ui/select.tsx
new file mode 100644
index 000000000..edb852f46
--- /dev/null
+++ b/apps/entropy-debugger/src/components/ui/select.tsx
@@ -0,0 +1,146 @@
+"use client";
+
+import {
+ Trigger,
+ ScrollUpButton,
+ ScrollDownButton,
+ Icon,
+ Portal,
+ Content,
+ Viewport,
+ Label,
+ ItemIndicator,
+ ItemText,
+ Item,
+ Separator,
+} from "@radix-ui/react-select";
+import { Check, ChevronDown, ChevronUp } from "lucide-react";
+import type { ComponentProps } from "react";
+
+import { cn } from "../../lib/utils";
+
+export {
+ Root as Select,
+ Group as SelectGroup,
+ Value as SelectValue,
+} from "@radix-ui/react-select";
+
+export const SelectTrigger = ({
+ className,
+ children,
+ ...props
+}: ComponentProps) => (
+ span]:line-clamp-1",
+ className,
+ )}
+ {...props}
+ >
+ {children}
+
+
+
+
+);
+
+export const SelectScrollUpButton = ({
+ className,
+ ...props
+}: ComponentProps) => (
+
+
+
+);
+
+export const SelectScrollDownButton = ({
+ className,
+ ...props
+}: ComponentProps) => (
+
+
+
+);
+
+export const SelectContent = ({
+ className,
+ children,
+ position = "popper",
+ ...props
+}: ComponentProps) => (
+
+
+
+
+ {children}
+
+
+
+
+);
+
+export const SelectLabel = ({
+ className,
+ ...props
+}: ComponentProps) => (
+
+);
+
+export const SelectItem = ({
+ className,
+ children,
+ ...props
+}: ComponentProps) => (
+ -
+
+
+
+
+
+
+ {children}
+
+);
+
+export const SelectSeparator = ({
+ className,
+ ...props
+}: ComponentProps) => (
+
+);
diff --git a/apps/entropy-debugger/src/components/ui/switch.tsx b/apps/entropy-debugger/src/components/ui/switch.tsx
new file mode 100644
index 000000000..c1587e539
--- /dev/null
+++ b/apps/entropy-debugger/src/components/ui/switch.tsx
@@ -0,0 +1,25 @@
+"use client";
+
+import { Root, Thumb } from "@radix-ui/react-switch";
+import type { ComponentProps } from "react";
+
+import { cn } from "../../lib/utils";
+
+export const Switch = ({
+ className,
+ ...props
+}: ComponentProps) => (
+
+
+
+);
diff --git a/apps/entropy-debugger/src/lib/entropy-abi.ts b/apps/entropy-debugger/src/lib/entropy-abi.ts
new file mode 100644
index 000000000..d98a6a89c
--- /dev/null
+++ b/apps/entropy-debugger/src/lib/entropy-abi.ts
@@ -0,0 +1,1000 @@
+export const EntropyAbi = [
+ {
+ anonymous: false,
+ inputs: [
+ {
+ indexed: false,
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ {
+ indexed: false,
+ internalType: "address",
+ name: "oldFeeManager",
+ type: "address",
+ },
+ {
+ indexed: false,
+ internalType: "address",
+ name: "newFeeManager",
+ type: "address",
+ },
+ ],
+ name: "ProviderFeeManagerUpdated",
+ type: "event",
+ },
+ {
+ anonymous: false,
+ inputs: [
+ {
+ indexed: false,
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ {
+ indexed: false,
+ internalType: "uint128",
+ name: "oldFee",
+ type: "uint128",
+ },
+ {
+ indexed: false,
+ internalType: "uint128",
+ name: "newFee",
+ type: "uint128",
+ },
+ ],
+ name: "ProviderFeeUpdated",
+ type: "event",
+ },
+ {
+ anonymous: false,
+ inputs: [
+ {
+ indexed: false,
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ {
+ indexed: false,
+ internalType: "uint32",
+ name: "oldMaxNumHashes",
+ type: "uint32",
+ },
+ {
+ indexed: false,
+ internalType: "uint32",
+ name: "newMaxNumHashes",
+ type: "uint32",
+ },
+ ],
+ name: "ProviderMaxNumHashesAdvanced",
+ type: "event",
+ },
+ {
+ anonymous: false,
+ inputs: [
+ {
+ indexed: false,
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ {
+ indexed: false,
+ internalType: "bytes",
+ name: "oldUri",
+ type: "bytes",
+ },
+ {
+ indexed: false,
+ internalType: "bytes",
+ name: "newUri",
+ type: "bytes",
+ },
+ ],
+ name: "ProviderUriUpdated",
+ type: "event",
+ },
+ {
+ anonymous: false,
+ inputs: [
+ {
+ components: [
+ {
+ internalType: "uint128",
+ name: "feeInWei",
+ type: "uint128",
+ },
+ {
+ internalType: "uint128",
+ name: "accruedFeesInWei",
+ type: "uint128",
+ },
+ {
+ internalType: "bytes32",
+ name: "originalCommitment",
+ type: "bytes32",
+ },
+ {
+ internalType: "uint64",
+ name: "originalCommitmentSequenceNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "bytes",
+ name: "commitmentMetadata",
+ type: "bytes",
+ },
+ {
+ internalType: "bytes",
+ name: "uri",
+ type: "bytes",
+ },
+ {
+ internalType: "uint64",
+ name: "endSequenceNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "uint64",
+ name: "sequenceNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "bytes32",
+ name: "currentCommitment",
+ type: "bytes32",
+ },
+ {
+ internalType: "uint64",
+ name: "currentCommitmentSequenceNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "address",
+ name: "feeManager",
+ type: "address",
+ },
+ {
+ internalType: "uint32",
+ name: "maxNumHashes",
+ type: "uint32",
+ },
+ ],
+ indexed: false,
+ internalType: "struct EntropyStructs.ProviderInfo",
+ name: "provider",
+ type: "tuple",
+ },
+ ],
+ name: "Registered",
+ type: "event",
+ },
+ {
+ anonymous: false,
+ inputs: [
+ {
+ components: [
+ {
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ {
+ internalType: "uint64",
+ name: "sequenceNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "uint32",
+ name: "numHashes",
+ type: "uint32",
+ },
+ {
+ internalType: "bytes32",
+ name: "commitment",
+ type: "bytes32",
+ },
+ {
+ internalType: "uint64",
+ name: "blockNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "address",
+ name: "requester",
+ type: "address",
+ },
+ {
+ internalType: "bool",
+ name: "useBlockhash",
+ type: "bool",
+ },
+ {
+ internalType: "bool",
+ name: "isRequestWithCallback",
+ type: "bool",
+ },
+ ],
+ indexed: false,
+ internalType: "struct EntropyStructs.Request",
+ name: "request",
+ type: "tuple",
+ },
+ ],
+ name: "Requested",
+ type: "event",
+ },
+ {
+ anonymous: false,
+ inputs: [
+ {
+ indexed: true,
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ {
+ indexed: true,
+ internalType: "address",
+ name: "requestor",
+ type: "address",
+ },
+ {
+ indexed: true,
+ internalType: "uint64",
+ name: "sequenceNumber",
+ type: "uint64",
+ },
+ {
+ indexed: false,
+ internalType: "bytes32",
+ name: "userRandomNumber",
+ type: "bytes32",
+ },
+ {
+ components: [
+ {
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ {
+ internalType: "uint64",
+ name: "sequenceNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "uint32",
+ name: "numHashes",
+ type: "uint32",
+ },
+ {
+ internalType: "bytes32",
+ name: "commitment",
+ type: "bytes32",
+ },
+ {
+ internalType: "uint64",
+ name: "blockNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "address",
+ name: "requester",
+ type: "address",
+ },
+ {
+ internalType: "bool",
+ name: "useBlockhash",
+ type: "bool",
+ },
+ {
+ internalType: "bool",
+ name: "isRequestWithCallback",
+ type: "bool",
+ },
+ ],
+ indexed: false,
+ internalType: "struct EntropyStructs.Request",
+ name: "request",
+ type: "tuple",
+ },
+ ],
+ name: "RequestedWithCallback",
+ type: "event",
+ },
+ {
+ anonymous: false,
+ inputs: [
+ {
+ components: [
+ {
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ {
+ internalType: "uint64",
+ name: "sequenceNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "uint32",
+ name: "numHashes",
+ type: "uint32",
+ },
+ {
+ internalType: "bytes32",
+ name: "commitment",
+ type: "bytes32",
+ },
+ {
+ internalType: "uint64",
+ name: "blockNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "address",
+ name: "requester",
+ type: "address",
+ },
+ {
+ internalType: "bool",
+ name: "useBlockhash",
+ type: "bool",
+ },
+ {
+ internalType: "bool",
+ name: "isRequestWithCallback",
+ type: "bool",
+ },
+ ],
+ indexed: false,
+ internalType: "struct EntropyStructs.Request",
+ name: "request",
+ type: "tuple",
+ },
+ {
+ indexed: false,
+ internalType: "bytes32",
+ name: "userRevelation",
+ type: "bytes32",
+ },
+ {
+ indexed: false,
+ internalType: "bytes32",
+ name: "providerRevelation",
+ type: "bytes32",
+ },
+ {
+ indexed: false,
+ internalType: "bytes32",
+ name: "blockHash",
+ type: "bytes32",
+ },
+ {
+ indexed: false,
+ internalType: "bytes32",
+ name: "randomNumber",
+ type: "bytes32",
+ },
+ ],
+ name: "Revealed",
+ type: "event",
+ },
+ {
+ anonymous: false,
+ inputs: [
+ {
+ components: [
+ {
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ {
+ internalType: "uint64",
+ name: "sequenceNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "uint32",
+ name: "numHashes",
+ type: "uint32",
+ },
+ {
+ internalType: "bytes32",
+ name: "commitment",
+ type: "bytes32",
+ },
+ {
+ internalType: "uint64",
+ name: "blockNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "address",
+ name: "requester",
+ type: "address",
+ },
+ {
+ internalType: "bool",
+ name: "useBlockhash",
+ type: "bool",
+ },
+ {
+ internalType: "bool",
+ name: "isRequestWithCallback",
+ type: "bool",
+ },
+ ],
+ indexed: false,
+ internalType: "struct EntropyStructs.Request",
+ name: "request",
+ type: "tuple",
+ },
+ {
+ indexed: false,
+ internalType: "bytes32",
+ name: "userRandomNumber",
+ type: "bytes32",
+ },
+ {
+ indexed: false,
+ internalType: "bytes32",
+ name: "providerRevelation",
+ type: "bytes32",
+ },
+ {
+ indexed: false,
+ internalType: "bytes32",
+ name: "randomNumber",
+ type: "bytes32",
+ },
+ ],
+ name: "RevealedWithCallback",
+ type: "event",
+ },
+ {
+ anonymous: false,
+ inputs: [
+ {
+ indexed: false,
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ {
+ indexed: false,
+ internalType: "address",
+ name: "recipient",
+ type: "address",
+ },
+ {
+ indexed: false,
+ internalType: "uint128",
+ name: "withdrawnAmount",
+ type: "uint128",
+ },
+ ],
+ name: "Withdrawal",
+ type: "event",
+ },
+ {
+ inputs: [
+ {
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ {
+ internalType: "uint64",
+ name: "advancedSequenceNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "bytes32",
+ name: "providerRevelation",
+ type: "bytes32",
+ },
+ ],
+ name: "advanceProviderCommitment",
+ outputs: [],
+ stateMutability: "nonpayable",
+ type: "function",
+ },
+ {
+ inputs: [
+ {
+ internalType: "bytes32",
+ name: "userRandomness",
+ type: "bytes32",
+ },
+ {
+ internalType: "bytes32",
+ name: "providerRandomness",
+ type: "bytes32",
+ },
+ {
+ internalType: "bytes32",
+ name: "blockHash",
+ type: "bytes32",
+ },
+ ],
+ name: "combineRandomValues",
+ outputs: [
+ {
+ internalType: "bytes32",
+ name: "combinedRandomness",
+ type: "bytes32",
+ },
+ ],
+ stateMutability: "pure",
+ type: "function",
+ },
+ {
+ inputs: [
+ {
+ internalType: "bytes32",
+ name: "userRandomness",
+ type: "bytes32",
+ },
+ ],
+ name: "constructUserCommitment",
+ outputs: [
+ {
+ internalType: "bytes32",
+ name: "userCommitment",
+ type: "bytes32",
+ },
+ ],
+ stateMutability: "pure",
+ type: "function",
+ },
+ {
+ inputs: [],
+ name: "getAccruedPythFees",
+ outputs: [
+ {
+ internalType: "uint128",
+ name: "accruedPythFeesInWei",
+ type: "uint128",
+ },
+ ],
+ stateMutability: "view",
+ type: "function",
+ },
+ {
+ inputs: [],
+ name: "getDefaultProvider",
+ outputs: [
+ {
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ ],
+ stateMutability: "view",
+ type: "function",
+ },
+ {
+ inputs: [
+ {
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ ],
+ name: "getFee",
+ outputs: [
+ {
+ internalType: "uint128",
+ name: "feeAmount",
+ type: "uint128",
+ },
+ ],
+ stateMutability: "view",
+ type: "function",
+ },
+ {
+ inputs: [
+ {
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ ],
+ name: "getProviderInfo",
+ outputs: [
+ {
+ components: [
+ {
+ internalType: "uint128",
+ name: "feeInWei",
+ type: "uint128",
+ },
+ {
+ internalType: "uint128",
+ name: "accruedFeesInWei",
+ type: "uint128",
+ },
+ {
+ internalType: "bytes32",
+ name: "originalCommitment",
+ type: "bytes32",
+ },
+ {
+ internalType: "uint64",
+ name: "originalCommitmentSequenceNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "bytes",
+ name: "commitmentMetadata",
+ type: "bytes",
+ },
+ {
+ internalType: "bytes",
+ name: "uri",
+ type: "bytes",
+ },
+ {
+ internalType: "uint64",
+ name: "endSequenceNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "uint64",
+ name: "sequenceNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "bytes32",
+ name: "currentCommitment",
+ type: "bytes32",
+ },
+ {
+ internalType: "uint64",
+ name: "currentCommitmentSequenceNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "address",
+ name: "feeManager",
+ type: "address",
+ },
+ {
+ internalType: "uint32",
+ name: "maxNumHashes",
+ type: "uint32",
+ },
+ ],
+ internalType: "struct EntropyStructs.ProviderInfo",
+ name: "info",
+ type: "tuple",
+ },
+ ],
+ stateMutability: "view",
+ type: "function",
+ },
+ {
+ inputs: [
+ {
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ {
+ internalType: "uint64",
+ name: "sequenceNumber",
+ type: "uint64",
+ },
+ ],
+ name: "getRequest",
+ outputs: [
+ {
+ components: [
+ {
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ {
+ internalType: "uint64",
+ name: "sequenceNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "uint32",
+ name: "numHashes",
+ type: "uint32",
+ },
+ {
+ internalType: "bytes32",
+ name: "commitment",
+ type: "bytes32",
+ },
+ {
+ internalType: "uint64",
+ name: "blockNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "address",
+ name: "requester",
+ type: "address",
+ },
+ {
+ internalType: "bool",
+ name: "useBlockhash",
+ type: "bool",
+ },
+ {
+ internalType: "bool",
+ name: "isRequestWithCallback",
+ type: "bool",
+ },
+ ],
+ internalType: "struct EntropyStructs.Request",
+ name: "req",
+ type: "tuple",
+ },
+ ],
+ stateMutability: "view",
+ type: "function",
+ },
+ {
+ inputs: [
+ {
+ internalType: "uint128",
+ name: "feeInWei",
+ type: "uint128",
+ },
+ {
+ internalType: "bytes32",
+ name: "commitment",
+ type: "bytes32",
+ },
+ {
+ internalType: "bytes",
+ name: "commitmentMetadata",
+ type: "bytes",
+ },
+ {
+ internalType: "uint64",
+ name: "chainLength",
+ type: "uint64",
+ },
+ {
+ internalType: "bytes",
+ name: "uri",
+ type: "bytes",
+ },
+ ],
+ name: "register",
+ outputs: [],
+ stateMutability: "nonpayable",
+ type: "function",
+ },
+ {
+ inputs: [
+ {
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ {
+ internalType: "bytes32",
+ name: "userCommitment",
+ type: "bytes32",
+ },
+ {
+ internalType: "bool",
+ name: "useBlockHash",
+ type: "bool",
+ },
+ ],
+ name: "request",
+ outputs: [
+ {
+ internalType: "uint64",
+ name: "assignedSequenceNumber",
+ type: "uint64",
+ },
+ ],
+ stateMutability: "payable",
+ type: "function",
+ },
+ {
+ inputs: [
+ {
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ {
+ internalType: "bytes32",
+ name: "userRandomNumber",
+ type: "bytes32",
+ },
+ ],
+ name: "requestWithCallback",
+ outputs: [
+ {
+ internalType: "uint64",
+ name: "assignedSequenceNumber",
+ type: "uint64",
+ },
+ ],
+ stateMutability: "payable",
+ type: "function",
+ },
+ {
+ inputs: [
+ {
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ {
+ internalType: "uint64",
+ name: "sequenceNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "bytes32",
+ name: "userRevelation",
+ type: "bytes32",
+ },
+ {
+ internalType: "bytes32",
+ name: "providerRevelation",
+ type: "bytes32",
+ },
+ ],
+ name: "reveal",
+ outputs: [
+ {
+ internalType: "bytes32",
+ name: "randomNumber",
+ type: "bytes32",
+ },
+ ],
+ stateMutability: "nonpayable",
+ type: "function",
+ },
+ {
+ inputs: [
+ {
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ {
+ internalType: "uint64",
+ name: "sequenceNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "bytes32",
+ name: "userRandomNumber",
+ type: "bytes32",
+ },
+ {
+ internalType: "bytes32",
+ name: "providerRevelation",
+ type: "bytes32",
+ },
+ ],
+ name: "revealWithCallback",
+ outputs: [],
+ stateMutability: "nonpayable",
+ type: "function",
+ },
+ {
+ inputs: [
+ {
+ internalType: "address",
+ name: "manager",
+ type: "address",
+ },
+ ],
+ name: "setFeeManager",
+ outputs: [],
+ stateMutability: "nonpayable",
+ type: "function",
+ },
+ {
+ inputs: [
+ {
+ internalType: "uint32",
+ name: "maxNumHashes",
+ type: "uint32",
+ },
+ ],
+ name: "setMaxNumHashes",
+ outputs: [],
+ stateMutability: "nonpayable",
+ type: "function",
+ },
+ {
+ inputs: [
+ {
+ internalType: "uint128",
+ name: "newFeeInWei",
+ type: "uint128",
+ },
+ ],
+ name: "setProviderFee",
+ outputs: [],
+ stateMutability: "nonpayable",
+ type: "function",
+ },
+ {
+ inputs: [
+ {
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ {
+ internalType: "uint128",
+ name: "newFeeInWei",
+ type: "uint128",
+ },
+ ],
+ name: "setProviderFeeAsFeeManager",
+ outputs: [],
+ stateMutability: "nonpayable",
+ type: "function",
+ },
+ {
+ inputs: [
+ {
+ internalType: "bytes",
+ name: "newUri",
+ type: "bytes",
+ },
+ ],
+ name: "setProviderUri",
+ outputs: [],
+ stateMutability: "nonpayable",
+ type: "function",
+ },
+ {
+ inputs: [
+ {
+ internalType: "uint128",
+ name: "amount",
+ type: "uint128",
+ },
+ ],
+ name: "withdraw",
+ outputs: [],
+ stateMutability: "nonpayable",
+ type: "function",
+ },
+ {
+ inputs: [
+ {
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ {
+ internalType: "uint128",
+ name: "amount",
+ type: "uint128",
+ },
+ ],
+ name: "withdrawAsFeeManager",
+ outputs: [],
+ stateMutability: "nonpayable",
+ type: "function",
+ },
+] as const;
diff --git a/apps/entropy-debugger/src/lib/revelation.ts b/apps/entropy-debugger/src/lib/revelation.ts
new file mode 100644
index 000000000..c7a1cdba8
--- /dev/null
+++ b/apps/entropy-debugger/src/lib/revelation.ts
@@ -0,0 +1,77 @@
+import { createPublicClient, http, parseEventLogs, publicActions } from "viem";
+import { z } from "zod";
+
+import { EntropyAbi } from "./entropy-abi";
+import {
+ type EntropyDeployment,
+ EntropyDeployments,
+} from "../store/entropy-deployments";
+
+export async function requestCallback(
+ txHash: string,
+ chain: keyof typeof EntropyDeployments,
+): Promise {
+ const deployment = EntropyDeployments[chain];
+ const { provider, sequenceNumber, userRandomNumber } = await fetchInfoFromTx(
+ txHash,
+ deployment,
+ );
+ const revelation = await getRevelation(chain, Number(sequenceNumber));
+
+ return `cast send ${deployment.address} 'revealWithCallback(address, uint64, bytes32, bytes32)' ${provider} ${sequenceNumber.toString()} ${userRandomNumber} ${revelation.value.data} -r ${deployment.rpc} --private-key `;
+}
+
+export async function fetchInfoFromTx(
+ txHash: string,
+ deployment: EntropyDeployment,
+) {
+ const receipt = await createPublicClient({
+ transport: http(deployment.rpc),
+ })
+ .extend(publicActions)
+ .getTransactionReceipt({
+ hash: txHash as `0x${string}`,
+ });
+
+ const logs = parseEventLogs({
+ abi: EntropyAbi,
+ logs: receipt.logs,
+ eventName: "RequestedWithCallback",
+ });
+
+ const firstLog = logs[0];
+ if (firstLog) {
+ const { provider, sequenceNumber, userRandomNumber } = firstLog.args;
+ return { provider, sequenceNumber, userRandomNumber };
+ } else {
+ throw new Error(
+ `No logs found for ${txHash}. Are you sure you send the requestCallback Transaction?`,
+ );
+ }
+}
+
+export async function getRevelation(
+ chain: keyof typeof EntropyDeployments,
+ sequenceNumber: number,
+) {
+ const deployment = EntropyDeployments[chain];
+ const url = new URL(
+ `/v1/chains/${chain}/revelations/${sequenceNumber.toString()}`,
+ deployment.network === "mainnet"
+ ? "https://fortuna.dourolabs.app"
+ : "https://fortuna-staging.dourolabs.app",
+ );
+ const response = await fetch(url);
+
+ if (response.ok) {
+ return revelationSchema.parse(await response.json());
+ } else {
+ throw new Error(`The provider returned an error: ${await response.text()}`);
+ }
+}
+
+const revelationSchema = z.object({
+ value: z.object({
+ data: z.string(),
+ }),
+});
diff --git a/apps/entropy-debugger/src/lib/utils.ts b/apps/entropy-debugger/src/lib/utils.ts
new file mode 100644
index 000000000..a500a7385
--- /dev/null
+++ b/apps/entropy-debugger/src/lib/utils.ts
@@ -0,0 +1,4 @@
+import { clsx, type ClassValue } from "clsx";
+import { twMerge } from "tailwind-merge";
+
+export const cn = (...inputs: ClassValue[]) => twMerge(clsx(inputs));
diff --git a/apps/entropy-debugger/src/store/entropy-deployments.ts b/apps/entropy-debugger/src/store/entropy-deployments.ts
new file mode 100644
index 000000000..5ad2379ab
--- /dev/null
+++ b/apps/entropy-debugger/src/store/entropy-deployments.ts
@@ -0,0 +1,395 @@
+export type EntropyDeployment = {
+ address: string;
+ network: "mainnet" | "testnet";
+ explorer: string;
+ delay: string;
+ gasLimit: string;
+ rpc?: string;
+ nativeCurrency: string;
+};
+
+export const EntropyDeployments = {
+ blast: {
+ address: "0x5744Cbf430D99456a0A8771208b674F27f8EF0Fb",
+ network: "mainnet",
+ explorer: "https://blastscan.io/address/$ADDRESS",
+ delay: "1 block",
+ gasLimit: "500K",
+ rpc: "https://rpc.blast.io",
+ nativeCurrency: "ETH",
+ },
+ "lightlink-phoenix": {
+ address: "0x98046Bd286715D3B0BC227Dd7a956b83D8978603",
+ network: "mainnet",
+ explorer: "https://phoenix.lightlink.io/address/$ADDRESS",
+ delay: "1 block",
+ gasLimit: "500K",
+ rpc: "https://replicator.phoenix.lightlink.io/rpc/v1",
+ nativeCurrency: "ETH",
+ },
+ chiliz: {
+ address: "0x0708325268dF9F66270F1401206434524814508b",
+ network: "mainnet",
+ explorer: "https://scan.chiliz.com/address/$ADDRESS",
+ delay: "12 blocks",
+ gasLimit: "500K",
+ rpc: "https://rpc.ankr.com/chiliz",
+ nativeCurrency: "CHZ",
+ },
+ arbitrum: {
+ address: "0x7698E925FfC29655576D0b361D75Af579e20AdAc",
+ network: "mainnet",
+ explorer: "https://arbiscan.io/address/$ADDRESS",
+ delay: "6 blocks",
+ gasLimit: "2.5M",
+ rpc: "https://arb1.arbitrum.io/rpc",
+ nativeCurrency: "ETH",
+ },
+ optimism: {
+ address: "0xdF21D137Aadc95588205586636710ca2890538d5",
+ network: "mainnet",
+ explorer: "https://optimistic.etherscan.io/address/$ADDRESS",
+ delay: "2 blocks",
+ gasLimit: "500K",
+ rpc: "https://rpc.ankr.com/optimism",
+ nativeCurrency: "ETH",
+ },
+ mode: {
+ address: "0x8D254a21b3C86D32F7179855531CE99164721933",
+ network: "mainnet",
+ explorer: "https://explorer.mode.network/address/$ADDRESS",
+ delay: "2 blocks",
+ gasLimit: "500K",
+ rpc: "https://mainnet.mode.network/",
+ nativeCurrency: "ETH",
+ },
+ zetachain: {
+ address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320",
+ network: "mainnet",
+ explorer: "https://zetachain.blockscout.com/address/$ADDRESS",
+ delay: "0 block",
+ gasLimit: "500K",
+ rpc: "https://zetachain-evm.blockpi.network/v1/rpc/public",
+ nativeCurrency: "ZETA",
+ },
+ base: {
+ address: "0x6E7D74FA7d5c90FEF9F0512987605a6d546181Bb",
+ network: "mainnet",
+ explorer: "https://basescan.org/address/$ADDRESS",
+ delay: "1 block",
+ gasLimit: "500K",
+ rpc: "https://developer-access-mainnet.base.org/",
+ nativeCurrency: "ETH",
+ },
+ "lightlink-pegasus": {
+ rpc: "https://replicator.pegasus.lightlink.io/rpc/v1",
+ network: "testnet",
+ delay: "",
+ address: "0x8250f4aF4B972684F7b336503E2D6dFeDeB1487a",
+ explorer: "https://pegasus.lightlink.io/address/$ADDRESS",
+ gasLimit: "500K",
+ nativeCurrency: "ETH",
+ },
+ "chiliz-spicy": {
+ rpc: "https://spicy-rpc.chiliz.com",
+ network: "testnet",
+ delay: "",
+ address: "0xD458261E832415CFd3BAE5E416FdF3230ce6F134",
+ explorer: "https://spicy-explorer.chiliz.com/address/$ADDRESS",
+ gasLimit: "500K",
+ nativeCurrency: "CHZ",
+ },
+ "conflux-espace-testnet": {
+ rpc: "https://evmtestnet.confluxrpc.com",
+ network: "testnet",
+ delay: "",
+ address: "0xdF21D137Aadc95588205586636710ca2890538d5",
+ explorer: "https://evmtestnet.confluxscan.io/address/$ADDRESS",
+ gasLimit: "500K",
+ nativeCurrency: "CFX",
+ },
+ "mode-sepolia": {
+ rpc: "https://sepolia.mode.network/",
+ network: "testnet",
+ delay: "",
+ address: "0x98046Bd286715D3B0BC227Dd7a956b83D8978603",
+ explorer: "https://sepolia.explorer.mode.network/address/$ADDRESS",
+ gasLimit: "500K",
+ nativeCurrency: "ETH",
+ },
+ "sei-evm-testnet": {
+ rpc: "https://evm-rpc-testnet.sei-apis.com",
+ network: "testnet",
+ delay: "",
+ address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320",
+ explorer: "https://seitrace.com/address/$ADDRESS?chain=atlantic-2",
+ gasLimit: "500K",
+ nativeCurrency: "SEI",
+ },
+ "arbitrum-sepolia": {
+ rpc: "https://sepolia-rollup.arbitrum.io/rpc",
+ network: "testnet",
+ delay: "",
+ address: "0x549Ebba8036Ab746611B4fFA1423eb0A4Df61440",
+ explorer: "https://sepolia.arbiscan.io/address/$ADDRESS",
+ gasLimit: "2.5M",
+ nativeCurrency: "ETH",
+ },
+ "blast-testnet": {
+ rpc: "https://sepolia.blast.io",
+ network: "testnet",
+ delay: "",
+ address: "0x98046Bd286715D3B0BC227Dd7a956b83D8978603",
+ explorer: "https://testnet.blastscan.io/address/$ADDRESS",
+ gasLimit: "500K",
+ nativeCurrency: "ETH",
+ },
+ "optimism-sepolia": {
+ rpc: "https://api.zan.top/opt-sepolia",
+ network: "testnet",
+ delay: "",
+ address: "0x4821932D0CDd71225A6d914706A621e0389D7061",
+ explorer: "https://optimism-sepolia.blockscout.com/address/$ADDRESS",
+ gasLimit: "500K",
+ nativeCurrency: "ETH",
+ },
+ "base-sepolia": {
+ rpc: "https://sepolia.base.org",
+ network: "testnet",
+ delay: "",
+ address: "0x41c9e39574F40Ad34c79f1C99B66A45eFB830d4c",
+ explorer: "https://base-sepolia.blockscout.com/address/$ADDRESS",
+ gasLimit: "500K",
+ nativeCurrency: "ETH",
+ },
+ "berachain-testnet-v2": {
+ rpc: "https://evm-rpc-bera.rhino-apis.com/",
+ network: "testnet",
+ delay: "",
+ address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320",
+ explorer: "https://bartio.beratrail.io/address/$ADDRESS",
+ gasLimit: "500K",
+ nativeCurrency: "BERA",
+ },
+ "coredao-testnet": {
+ rpc: "https://rpc.test.btcs.network",
+ network: "testnet",
+ delay: "",
+ address: "0xf0a1b566B55e0A0CB5BeF52Eb2a57142617Bee67",
+ explorer: "https://scan.test.btcs.network/address/$ADDRESS",
+ gasLimit: "500K",
+ nativeCurrency: "tCORE",
+ },
+ "zetachain-testnet": {
+ rpc: "https://zetachain-athens-evm.blockpi.network/v1/rpc/public",
+ network: "testnet",
+ delay: "",
+ address: "0x4374e5a8b9C22271E9EB878A2AA31DE97DF15DAF",
+ explorer: "https://explorer.zetachain.com/address/$ADDRESS",
+ gasLimit: "500K",
+ nativeCurrency: "ZETA",
+ },
+ "taiko-hekla": {
+ rpc: "https://rpc.hekla.taiko.xyz/",
+ network: "testnet",
+ delay: "",
+ address: "0x98046Bd286715D3B0BC227Dd7a956b83D8978603",
+ explorer: "https://hekla.taikoscan.network/address/$ADDRESS",
+ gasLimit: "500K",
+ nativeCurrency: "ETH",
+ },
+ "orange-testnet": {
+ address: "0x98046Bd286715D3B0BC227Dd7a956b83D8978603",
+ explorer: "https://subnets-test.avax.network/orangetest/address/$ADDRESS",
+ delay: "",
+ gasLimit: "500K",
+ network: "testnet",
+ rpc: "https://subnets.avax.network/orangetest/testnet/rpc",
+ nativeCurrency: "JUICE",
+ },
+ "sei-evm-mainnet": {
+ address: "0x98046Bd286715D3B0BC227Dd7a956b83D8978603",
+ explorer: "https://seitrace.com/address/$ADDRESS?chain=pacific-1",
+ delay: "1 block",
+ gasLimit: "500K",
+ network: "mainnet",
+ rpc: "https://evm-rpc.sei-apis.com",
+ nativeCurrency: "SEI",
+ },
+ merlin: {
+ address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320",
+ explorer: "https://scan.merlinchain.io/address/$ADDRESS",
+ delay: "1 block",
+ gasLimit: "500K",
+ network: "mainnet",
+ rpc: "https://rpc.merlinchain.io",
+ nativeCurrency: "BTC",
+ },
+ "merlin-testnet": {
+ address: "0x5744Cbf430D99456a0A8771208b674F27f8EF0Fb",
+ explorer: "https://testnet-scan.merlinchain.io/address/$ADDRESS",
+ delay: "",
+ gasLimit: "500K",
+ network: "testnet",
+ rpc: "https://testnet-rpc.merlinchain.io/",
+ nativeCurrency: "BTC",
+ },
+ taiko: {
+ address: "0x26DD80569a8B23768A1d80869Ed7339e07595E85",
+ explorer: "https://taikoscan.io/address/$ADDRESS",
+ delay: "1 block",
+ gasLimit: "500K",
+ network: "mainnet",
+ rpc: "https://rpc.mainnet.taiko.xyz",
+ nativeCurrency: "ETH",
+ },
+ "etherlink-testnet": {
+ address: "0x23f0e8FAeE7bbb405E7A7C3d60138FCfd43d7509",
+ explorer: "https://testnet.explorer.etherlink.com/address/$ADDRESS",
+ delay: "",
+ gasLimit: "15M",
+ network: "testnet",
+ rpc: "https://node.ghostnet.etherlink.com",
+ nativeCurrency: "XTZ",
+ },
+ etherlink: {
+ address: "0x23f0e8FAeE7bbb405E7A7C3d60138FCfd43d7509",
+ explorer: "https://explorer.etherlink.com/address/$ADDRESS",
+ delay: "1 block",
+ gasLimit: "15M",
+ network: "mainnet",
+ rpc: "https://node.mainnet.etherlink.com/",
+ nativeCurrency: "XTZ",
+ },
+ kaia: {
+ address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320",
+ explorer: "https://kaiascan.io/address/$ADDRESS",
+ delay: "1 block",
+ gasLimit: "500K",
+ network: "mainnet",
+ rpc: "https://rpc.ankr.com/klaytn",
+ nativeCurrency: "KLAY",
+ },
+ "kaia-testnet": {
+ address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320",
+ explorer: "https://kairos.kaiascan.io/address/$ADDRESS",
+ delay: "",
+ gasLimit: "500K",
+ network: "testnet",
+ rpc: "https://rpc.ankr.com/klaytn_testnet",
+ nativeCurrency: "KLAY",
+ },
+ "tabi-testnet": {
+ address: "0xEbe57e8045F2F230872523bbff7374986E45C486",
+ explorer: "https://testnetv2.tabiscan.com/address/$ADDRESS",
+ delay: "",
+ gasLimit: "500K",
+ network: "testnet",
+ rpc: "https://rpc.testnetv2.tabichain.com",
+ nativeCurrency: "TABI",
+ },
+ "b3-testnet": {
+ address: "0x5744Cbf430D99456a0A8771208b674F27f8EF0Fb",
+ explorer: "https://sepolia.explorer.b3.fun/address/$ADDRESS",
+ delay: "",
+ gasLimit: "500K",
+ network: "testnet",
+ rpc: "https://sepolia.b3.fun/http/",
+ nativeCurrency: "ETH",
+ },
+ "b3-mainnet": {
+ address: "0x5744Cbf430D99456a0A8771208b674F27f8EF0Fb",
+ explorer: "https://explorer.b3.fun/address/$ADDRESS",
+ delay: "1 block",
+ gasLimit: "500K",
+ network: "mainnet",
+ rpc: "https://mainnet-rpc.b3.fun/http",
+ nativeCurrency: "ETH",
+ },
+ "apechain-testnet": {
+ address: "0x23f0e8FAeE7bbb405E7A7C3d60138FCfd43d7509",
+ explorer: "https://curtis.explorer.caldera.xyz/address/$ADDRESS",
+ delay: "",
+ gasLimit: "500K",
+ network: "testnet",
+ rpc: "https://curtis.rpc.caldera.xyz/http",
+ nativeCurrency: "APE",
+ },
+ "soneium-minato-testnet": {
+ address: "0x23f0e8FAeE7bbb405E7A7C3d60138FCfd43d7509",
+ explorer: "https://explorer-testnet.soneium.org/address/$ADDRESS",
+ delay: "",
+ gasLimit: "500K",
+ network: "testnet",
+ rpc: "https://rpc.minato.soneium.org/",
+ nativeCurrency: "ETH",
+ },
+ sanko: {
+ address: "0x5744Cbf430D99456a0A8771208b674F27f8EF0Fb",
+ explorer: "https://explorer.sanko.xyz/address/$ADDRESS",
+ delay: "1 block",
+ gasLimit: "500K",
+ network: "mainnet",
+ rpc: "https://mainnet.sanko.xyz",
+ nativeCurrency: "DMT",
+ },
+ "sanko-testnet": {
+ address: "0x5744Cbf430D99456a0A8771208b674F27f8EF0Fb",
+ explorer: "https://sanko-arb-sepolia.explorer.caldera.xyz/address/$ADDRESS",
+ delay: "",
+ gasLimit: "500K",
+ network: "testnet",
+ rpc: "https://sanko-arb-sepolia.rpc.caldera.xyz/http",
+ nativeCurrency: "DMT",
+ },
+ "apechain-mainnet": {
+ address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320",
+ explorer: "https://apechain.calderaexplorer.xyz/address/$ADDRESS",
+ delay: "1 block",
+ gasLimit: "500K",
+ network: "mainnet",
+ rpc: "https://apechain.calderachain.xyz/http",
+ nativeCurrency: "APE",
+ },
+ "abstract-testnet": {
+ address: "0x858687fD592112f7046E394A3Bf10D0C11fF9e63",
+ explorer: "https://explorer.testnet.abs.xyz/address/$ADDRESS",
+ delay: "",
+ gasLimit: "500K",
+ network: "testnet",
+ rpc: "https://api.testnet.abs.xyz",
+ nativeCurrency: "ETH",
+ },
+ "sonic-fantom-testnet": {
+ address: "0xebe57e8045f2f230872523bbff7374986e45c486",
+ explorer: "https://blaze.soniclabs.com/address/$ADDRESS",
+ delay: "",
+ gasLimit: "500K",
+ network: "testnet",
+ rpc: "https://rpc.blaze.soniclabs.com",
+ nativeCurrency: "S",
+ },
+ "unichain-sepolia": {
+ address: "0x8D254a21b3C86D32F7179855531CE99164721933",
+ explorer: "https://unichain-sepolia.blockscout.com/address/$ADDRESS",
+ delay: "",
+ gasLimit: "500K",
+ network: "testnet",
+ rpc: "https://sepolia.unichain.org",
+ nativeCurrency: "ETH",
+ },
+ sonic: {
+ address: "0x36825bf3fbdf5a29e2d5148bfe7dcf7b5639e320",
+ explorer: "https://sonicscan.org/address/$ADDRESS",
+ delay: "1 block",
+ gasLimit: "500K",
+ network: "mainnet",
+ rpc: "https://rpc.soniclabs.com",
+ nativeCurrency: "S",
+ },
+} as const satisfies Record;
+
+export const isValidDeployment = (
+ name: string,
+): name is keyof typeof EntropyDeployments =>
+ Object.prototype.hasOwnProperty.call(EntropyDeployments, name);
diff --git a/apps/entropy-debugger/tailwind.config.ts b/apps/entropy-debugger/tailwind.config.ts
new file mode 100644
index 000000000..8db08f14e
--- /dev/null
+++ b/apps/entropy-debugger/tailwind.config.ts
@@ -0,0 +1,63 @@
+import type { Config } from "tailwindcss";
+import animate from "tailwindcss-animate";
+
+export default {
+ darkMode: ["class"],
+ content: [
+ "./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
+ "./src/components/**/*.{js,ts,jsx,tsx,mdx}",
+ "./src/app/**/*.{js,ts,jsx,tsx,mdx}",
+ ],
+ theme: {
+ extend: {
+ colors: {
+ background: "hsl(var(--background))",
+ foreground: "hsl(var(--foreground))",
+ card: {
+ DEFAULT: "hsl(var(--card))",
+ foreground: "hsl(var(--card-foreground))",
+ },
+ popover: {
+ DEFAULT: "hsl(var(--popover))",
+ foreground: "hsl(var(--popover-foreground))",
+ },
+ primary: {
+ DEFAULT: "hsl(var(--primary))",
+ foreground: "hsl(var(--primary-foreground))",
+ },
+ secondary: {
+ DEFAULT: "hsl(var(--secondary))",
+ foreground: "hsl(var(--secondary-foreground))",
+ },
+ muted: {
+ DEFAULT: "hsl(var(--muted))",
+ foreground: "hsl(var(--muted-foreground))",
+ },
+ accent: {
+ DEFAULT: "hsl(var(--accent))",
+ foreground: "hsl(var(--accent-foreground))",
+ },
+ destructive: {
+ DEFAULT: "hsl(var(--destructive))",
+ foreground: "hsl(var(--destructive-foreground))",
+ },
+ border: "hsl(var(--border))",
+ input: "hsl(var(--input))",
+ ring: "hsl(var(--ring))",
+ chart: {
+ "1": "hsl(var(--chart-1))",
+ "2": "hsl(var(--chart-2))",
+ "3": "hsl(var(--chart-3))",
+ "4": "hsl(var(--chart-4))",
+ "5": "hsl(var(--chart-5))",
+ },
+ },
+ borderRadius: {
+ lg: "var(--radius)",
+ md: "calc(var(--radius) - 2px)",
+ sm: "calc(var(--radius) - 4px)",
+ },
+ },
+ },
+ plugins: [animate],
+} satisfies Config;
diff --git a/apps/entropy-debugger/tsconfig.json b/apps/entropy-debugger/tsconfig.json
new file mode 100644
index 000000000..dfd9bf96d
--- /dev/null
+++ b/apps/entropy-debugger/tsconfig.json
@@ -0,0 +1,5 @@
+{
+ "extends": "@cprussin/tsconfig/nextjs.json",
+ "include": ["svg.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
+ "exclude": ["node_modules"]
+}
diff --git a/apps/entropy-debugger/turbo.json b/apps/entropy-debugger/turbo.json
new file mode 100644
index 000000000..8e880d4ae
--- /dev/null
+++ b/apps/entropy-debugger/turbo.json
@@ -0,0 +1,19 @@
+{
+ "$schema": "https://turbo.build/schema.json",
+ "extends": ["//"],
+ "tasks": {
+ "build": {
+ "dependsOn": ["^build"],
+ "outputs": [".next/**", "!.next/cache/**"]
+ },
+ "start:dev": {
+ "persistent": true,
+ "cache": false
+ },
+ "start:prod": {
+ "dependsOn": ["build"],
+ "persistent": true,
+ "cache": false
+ }
+ }
+}
diff --git a/apps/entropy-debugger/vercel.json b/apps/entropy-debugger/vercel.json
new file mode 100644
index 000000000..fc8b38fe1
--- /dev/null
+++ b/apps/entropy-debugger/vercel.json
@@ -0,0 +1,3 @@
+{
+ "ignoreCommand": "pnpm dlx turbo-ignore --fallback=HEAD^"
+}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 7bd1d8b71..6b03ecf62 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -174,6 +174,9 @@ catalogs:
swr:
specifier: 2.2.5
version: 2.2.5
+ tailwindcss:
+ specifier: 3.4.14
+ version: 3.4.14
typescript:
specifier: 5.6.3
version: 5.6.3
@@ -295,7 +298,7 @@ importers:
version: 4.9.1
'@cprussin/eslint-config':
specifier: 'catalog:'
- version: 3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2))(@typescript-eslint/parser@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))(typescript@5.5.2)
+ version: 3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2))(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))(typescript@5.5.2)
'@cprussin/jest-config':
specifier: 'catalog:'
version: 1.4.1(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(@types/node@20.14.7)(babel-jest@29.7.0(@babel/core@7.24.7))(bufferutil@4.0.8)(eslint@9.5.0)(sass@1.80.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))(utf-8-validate@5.0.10)
@@ -348,6 +351,97 @@ importers:
specifier: ^34.2.7
version: 34.2.7(encoding@0.1.13)
+ apps/entropy-debugger:
+ dependencies:
+ '@radix-ui/react-select':
+ specifier: ^2.1.2
+ version: 2.1.4(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-slot':
+ specifier: ^1.1.0
+ version: 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-switch':
+ specifier: ^1.1.1
+ version: 1.1.2(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ class-variance-authority:
+ specifier: ^0.7.1
+ version: 0.7.1
+ clsx:
+ specifier: 'catalog:'
+ version: 2.1.1
+ highlight.js:
+ specifier: ^11.10.0
+ version: 11.11.1
+ lucide-react:
+ specifier: ^0.465.0
+ version: 0.465.0(react@19.0.0)
+ next:
+ specifier: 'catalog:'
+ version: 15.1.2(@babel/core@7.25.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.80.7)
+ react:
+ specifier: 'catalog:'
+ version: 19.0.0
+ react-dom:
+ specifier: 'catalog:'
+ version: 19.0.0(react@19.0.0)
+ tailwind-merge:
+ specifier: ^2.5.5
+ version: 2.6.0
+ tailwindcss-animate:
+ specifier: ^1.0.7
+ version: 1.0.7(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))
+ viem:
+ specifier: ^2.21.53
+ version: 2.22.9(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@6.0.4)(zod@3.23.8)
+ zod:
+ specifier: 'catalog:'
+ version: 3.23.8
+ devDependencies:
+ '@cprussin/eslint-config':
+ specifier: 'catalog:'
+ version: 3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(@typescript-eslint/parser@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))(typescript@5.6.3)
+ '@cprussin/jest-config':
+ specifier: 'catalog:'
+ version: 1.4.1(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(@types/node@22.8.2)(babel-jest@29.7.0(@babel/core@7.25.8))(bufferutil@4.0.8)(esbuild@0.22.0)(eslint@9.13.0(jiti@1.21.0))(sass@1.80.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))(utf-8-validate@6.0.4)
+ '@cprussin/prettier-config':
+ specifier: 'catalog:'
+ version: 2.1.1(prettier@3.3.3)
+ '@cprussin/tsconfig':
+ specifier: 'catalog:'
+ version: 3.0.1
+ '@types/jest':
+ specifier: 'catalog:'
+ version: 29.5.14
+ '@types/node':
+ specifier: 'catalog:'
+ version: 22.8.2
+ '@types/react':
+ specifier: 'catalog:'
+ version: 19.0.1
+ '@types/react-dom':
+ specifier: 'catalog:'
+ version: 19.0.2(@types/react@19.0.1)
+ eslint:
+ specifier: 'catalog:'
+ version: 9.13.0(jiti@1.21.0)
+ jest:
+ specifier: 'catalog:'
+ version: 29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))
+ postcss:
+ specifier: 'catalog:'
+ version: 8.4.47
+ prettier:
+ specifier: 'catalog:'
+ version: 3.3.3
+ tailwindcss:
+ specifier: 'catalog:'
+ version: 3.4.14(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))
+ typescript:
+ specifier: 'catalog:'
+ version: 5.6.3
+ vercel:
+ specifier: 'catalog:'
+ version: 37.12.1(encoding@0.1.13)
+
apps/hermes/client/js:
dependencies:
'@zodios/core':
@@ -697,13 +791,13 @@ importers:
version: 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-adapter-react':
specifier: ^0.15.35
- version: 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)
+ version: 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)
'@solana/wallet-adapter-react-ui':
specifier: ^0.9.35
- version: 0.9.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-dom@19.0.0(react@19.0.0))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)
+ version: 0.9.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-dom@19.0.0(react@19.0.0))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)
'@solana/wallet-adapter-wallets':
specifier: 0.19.10
- version: 0.19.10(@babel/runtime@7.25.7)(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(utf-8-validate@5.0.10)
+ version: 0.19.10(@babel/runtime@7.25.7)(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(utf-8-validate@5.0.10)
'@solana/web3.js':
specifier: 1.92.3
version: 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
@@ -985,7 +1079,7 @@ importers:
version: 3.0.1
'@solana/wallet-adapter-react':
specifier: ^0.15.28
- version: 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)
+ version: 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)
'@types/jest':
specifier: ^29.5.12
version: 29.5.12
@@ -2779,10 +2873,6 @@ packages:
'@amplitude/plugin-page-view-tracking-browser@2.3.4':
resolution: {integrity: sha512-l7RS5gssG0BPYlgirV0NQ94EPzTOdDkp0z2jqU45D3DQAJXkoloUyw5lw/cbUXYwNulHZTG/BExcERfdvVWkLA==}
- '@ampproject/remapping@2.2.0':
- resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==}
- engines: {node: '>=6.0.0'}
-
'@ampproject/remapping@2.3.0':
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
@@ -2901,10 +2991,6 @@ packages:
'@axe-core/react@4.9.1':
resolution: {integrity: sha512-DibuylB94B2200NjfbfVrQODWqVdqkSjdgvaHDAwrBRSNdI4ZbPwGNL1kicnh2W9EgOQ4MFFbkWvM23h0Z1bVg==}
- '@babel/code-frame@7.23.5':
- resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==}
- engines: {node: '>=6.9.0'}
-
'@babel/code-frame@7.24.7':
resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==}
engines: {node: '>=6.9.0'}
@@ -2913,18 +2999,10 @@ packages:
resolution: {integrity: sha512-0xZJFNE5XMpENsgfHYTw8FbX4kv53mFLn2i3XPoq69LyhYSCBJtitaHx9QnsVTrsogI4Z3+HtEfZ2/GFPOtf5g==}
engines: {node: '>=6.9.0'}
- '@babel/compat-data@7.23.5':
- resolution: {integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==}
- engines: {node: '>=6.9.0'}
-
'@babel/compat-data@7.24.7':
resolution: {integrity: sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw==}
engines: {node: '>=6.9.0'}
- '@babel/compat-data@7.25.2':
- resolution: {integrity: sha512-bYcppcpKBvX4znYaPEeFau03bp89ShqNMLs+rmdptMw+heSZh9+z84d2YG+K7cYLbWwzdjtDoW/uqZmPjulClQ==}
- engines: {node: '>=6.9.0'}
-
'@babel/compat-data@7.25.8':
resolution: {integrity: sha512-ZsysZyXY4Tlx+Q53XdnOFmqwfB9QDTHYxaZYajWRoBLuLEAwI2UIbtxOjWh/cFaa9IKUlcB+DDuoskLuKu56JA==}
engines: {node: '>=6.9.0'}
@@ -2948,14 +3026,6 @@ packages:
'@babel/core': ^7.11.0
eslint: ^7.5.0 || ^8.0.0 || ^9.0.0
- '@babel/generator@7.23.6':
- resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/generator@7.24.7':
- resolution: {integrity: sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA==}
- engines: {node: '>=6.9.0'}
-
'@babel/generator@7.25.0':
resolution: {integrity: sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw==}
engines: {node: '>=6.9.0'}
@@ -2984,10 +3054,6 @@ packages:
resolution: {integrity: sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-compilation-targets@7.23.6':
- resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-compilation-targets@7.24.7':
resolution: {integrity: sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg==}
engines: {node: '>=6.9.0'}
@@ -3074,10 +3140,6 @@ packages:
resolution: {integrity: sha512-O31Ssjd5K6lPbTX9AAYpSKrZmLeagt9uwschJd+Ixo6QiRyfpvgtVQp8qrDR9UNFjZ8+DO34ZkdrN+BnPXemeA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-imports@7.22.15':
- resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-module-imports@7.24.7':
resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==}
engines: {node: '>=6.9.0'}
@@ -3086,18 +3148,6 @@ packages:
resolution: {integrity: sha512-o0xCgpNmRohmnoWKQ0Ij8IdddjyBFE4T2kagL/x6M3+4zUgc+4qTOUBoNe4XxDskt1HPKO007ZPiMgLDq2s7Kw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-transforms@7.23.3':
- resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
- '@babel/helper-module-transforms@7.24.7':
- resolution: {integrity: sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
'@babel/helper-module-transforms@7.25.2':
resolution: {integrity: sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==}
engines: {node: '>=6.9.0'}
@@ -3130,10 +3180,6 @@ packages:
resolution: {integrity: sha512-Rq76wjt7yz9AAc1KnlRKNAi/dMSVWgDRx43FHoJEbcYU6xOWaE2dVPwcdTukJrjxS65GITyfbvEYHvkirZ6uEg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-plugin-utils@7.24.8':
- 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'}
@@ -3174,10 +3220,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-simple-access@7.24.7':
- resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-simple-access@7.25.7':
resolution: {integrity: sha512-FPGAkJmyoChQeM+ruBGIDyrT2tKfZJO8NcxdC+CWNJi7N8/rZpSxK7yvBJ5O/nF1gfu5KzN7VKG3YVSLFfRSxQ==}
engines: {node: '>=6.9.0'}
@@ -3198,22 +3240,10 @@ packages:
resolution: {integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-string-parser@7.24.7':
- resolution: {integrity: sha512-7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-string-parser@7.24.8':
- resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-string-parser@7.25.7':
resolution: {integrity: sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-identifier@7.24.7':
- resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-validator-identifier@7.25.7':
resolution: {integrity: sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==}
engines: {node: '>=6.9.0'}
@@ -3226,10 +3256,6 @@ packages:
resolution: {integrity: sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-option@7.24.8':
- 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'}
@@ -3246,10 +3272,6 @@ packages:
resolution: {integrity: sha512-MA0roW3JF2bD1ptAaJnvcabsVlNQShUaThyJbCDD4bCp8NEgiFvpoqRI2YS22hHlc2thjO/fTg2ShLMC3jygAg==}
engines: {node: '>=6.9.0'}
- '@babel/helpers@7.24.0':
- resolution: {integrity: sha512-ulDZdc0Aj5uLc5nETsa7EPx2L7rM0YJM8r7ck7U73AXi7qOV44IHHRAYZHY6iU1rr3C5N4NtTmMRUJP6kwCWeA==}
- engines: {node: '>=6.9.0'}
-
'@babel/helpers@7.24.7':
resolution: {integrity: sha512-NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg==}
engines: {node: '>=6.9.0'}
@@ -3258,19 +3280,10 @@ packages:
resolution: {integrity: sha512-Sv6pASx7Esm38KQpF/U/OXLwPPrdGHNKoeblRxgZRLXnAtnkEe4ptJPDtAZM7fBLadbc1Q07kQpSiGQ0Jg6tRA==}
engines: {node: '>=6.9.0'}
- '@babel/highlight@7.24.7':
- resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==}
- engines: {node: '>=6.9.0'}
-
'@babel/highlight@7.25.7':
resolution: {integrity: sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw==}
engines: {node: '>=6.9.0'}
- '@babel/parser@7.24.0':
- resolution: {integrity: sha512-QuP/FxEAzMSjXygs8v4N9dvdXzEHN4W1oF3PxuWAtPo08UdM17u89RDMgjLn/mlc56iM0HlLmVkO/wgR+rDgHg==}
- engines: {node: '>=6.0.0'}
- hasBin: true
-
'@babel/parser@7.24.7':
resolution: {integrity: sha512-9uUYRm6OqQrCqQdG1iCBwBPZgN8ciDBro2nIOFaiRz1/BCxaI7CNvQbDHvsArAC7Tw9Hda/B3U+6ui9u4HWXPw==}
engines: {node: '>=6.0.0'}
@@ -3489,12 +3502,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-assertions@7.20.0':
- resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-syntax-import-assertions@7.24.7':
resolution: {integrity: sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==}
engines: {node: '>=6.9.0'}
@@ -3517,12 +3524,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-jsx@7.24.1':
- resolution: {integrity: sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-syntax-jsx@7.24.7':
resolution: {integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==}
engines: {node: '>=6.9.0'}
@@ -3577,12 +3578,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-typescript@7.24.7':
- resolution: {integrity: sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-syntax-typescript@7.25.7':
resolution: {integrity: sha512-rR+5FDjpCHqqZN2bzZm18bVYGaejGq5ZkpVCJLXor/+zlSrSoc4KWcHI0URVWjl/68Dyr1uwZUz/1njycEAv9g==}
engines: {node: '>=6.9.0'}
@@ -4346,14 +4341,6 @@ packages:
resolution: {integrity: sha512-FjoyLe754PMiYsFaN5C94ttGiOmBNYTf6pLr4xXHAT5uctHb092PBszndLDR5XA/jghQvn4n7JMHl7dmTgbm9w==}
engines: {node: '>=6.9.0'}
- '@babel/template@7.24.0':
- resolution: {integrity: sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/template@7.24.7':
- resolution: {integrity: sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==}
- engines: {node: '>=6.9.0'}
-
'@babel/template@7.25.0':
resolution: {integrity: sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==}
engines: {node: '>=6.9.0'}
@@ -4362,10 +4349,6 @@ packages:
resolution: {integrity: sha512-wRwtAgI3bAS+JGU2upWNL9lSlDcRCqD05BZ1n3X2ONLH1WilFP6O1otQjeMK/1g0pvYcXC7b/qVUB1keofjtZA==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.24.0':
- resolution: {integrity: sha512-HfuJlI8qq3dEDmNU5ChzzpZRWq+oxCZQyMzIMEqLho+AQnhMnKQUzH6ydo3RBl/YjPCuk68Y6s0Gx0AeyULiWw==}
- engines: {node: '>=6.9.0'}
-
'@babel/traverse@7.24.7':
resolution: {integrity: sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==}
engines: {node: '>=6.9.0'}
@@ -4378,14 +4361,6 @@ packages:
resolution: {integrity: sha512-jatJPT1Zjqvh/1FyJs6qAHL+Dzb7sTb+xr7Q+gM1b+1oBsMsQQ4FkVKb6dFlJvLlVssqkRzV05Jzervt9yhnzg==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.24.0':
- resolution: {integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==}
- engines: {node: '>=6.9.0'}
-
- '@babel/types@7.24.7':
- resolution: {integrity: sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==}
- engines: {node: '>=6.9.0'}
-
'@babel/types@7.25.2':
resolution: {integrity: sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q==}
engines: {node: '>=6.9.0'}
@@ -5036,10 +5011,6 @@ packages:
resolution: {integrity: sha512-fTxvnS1sRMu3+JjXwJG0j/i4RT9u4qJ+lqS/yCGap4lH4zZGzQ7tu+xZqQmcMZq5OBZDL4QRxQzRjkWcGt8IVw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/core@0.6.0':
- resolution: {integrity: sha512-8I2Q8ykA4J0x0o7cg67FPVnehcqWTBehu/lmY+bolPFHGjh49YzGBMXTvpqVgEbBdvNCSxj6iFgiIyHzf03lzg==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
-
'@eslint/core@0.7.0':
resolution: {integrity: sha512-xp5Jirz5DyPYlPiKat8jaq0EmYvDXKKpzTbxXMpT9eqlRJkRKIz9AGMdlvYjih+im+QlhWrpvVjl8IPC/lHlUw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -5060,10 +5031,6 @@ packages:
resolution: {integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- '@eslint/js@9.12.0':
- resolution: {integrity: sha512-eohesHH8WFRUprDNyEREgqP6beG6htMeUYeCpkEgBCieCMme5r9zFWjzAJp//9S+Kub4rqE+jXe9Cp1a7IYIIA==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
-
'@eslint/js@9.13.0':
resolution: {integrity: sha512-IFLyoY4d72Z5y/6o/BazFBezupzI/taV8sGumxTAVw3lXG9A6md1Dc34T9s1FoD/an9pJH8RHbAxsaEbBed9lA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -6057,10 +6024,6 @@ packages:
'@josephg/resolvable@1.0.1':
resolution: {integrity: sha512-CtzORUwWTTOTqfVtHaKRJ0I1kNQd1bpn3sUh8I3nJDVY+5/M/Oe1DnEWzPQvqq/xPIIkzzzIP7mfCoAjFRvDhg==}
- '@jridgewell/gen-mapping@0.1.1':
- resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==}
- engines: {node: '>=6.0.0'}
-
'@jridgewell/gen-mapping@0.3.5':
resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
engines: {node: '>=6.0.0'}
@@ -6578,6 +6541,10 @@ packages:
resolution: {integrity: sha512-TlaHRXDehJuRNR9TfZDNQ45mMEd5dwUwmicsafcIX4SsNiqnCHKjE/1alYPd/lDRVhxdhUAlv8uEhMCI5zjIJQ==}
engines: {node: ^14.21.3 || >=16}
+ '@noble/curves@1.7.0':
+ resolution: {integrity: sha512-UTMhXK9SeDhFJVrHeUJ5uZlI6ajXg10O6Ddocf9S6GjbSBVZsJo88HzKwXznNfGpMTRDyJkqMjNDPYgf0qFWnw==}
+ engines: {node: ^14.21.3 || >=16}
+
'@noble/ed25519@1.7.3':
resolution: {integrity: sha512-iR8GBkDt0Q3GyaVcIu7mSsVIqnFbkbRzGLWlvhwunacoLwt4J3swfKhfaM6rN6WY+TBGoYT1GtT1mIh2/jGbRQ==}
@@ -6609,6 +6576,14 @@ packages:
resolution: {integrity: sha512-1j6kQFb7QRru7eKN3ZDvRcP13rugwdxZqCjbiAVZfIJwgj2A65UmT4TgARXGlXgnRkORLTDTrO19ZErt7+QXgA==}
engines: {node: ^14.21.3 || >=16}
+ '@noble/hashes@1.6.0':
+ resolution: {integrity: sha512-YUULf0Uk4/mAA89w+k3+yUYh6NrEvxZa5T6SY3wlMvE2chHkxFUUIDI8/XW1QSC357iA5pSnqt7XEhvFOqmDyQ==}
+ engines: {node: ^14.21.3 || >=16}
+
+ '@noble/hashes@1.6.1':
+ resolution: {integrity: sha512-pq5D8h10hHBjyqX+cfBm0i8JUXJ0UhczFc4r74zbuT9XgewFo2E3J1cOaGtdZynILNmQ685YWGzGE1Zv6io50w==}
+ engines: {node: ^14.21.3 || >=16}
+
'@noble/secp256k1@1.6.3':
resolution: {integrity: sha512-T04e4iTurVy7I8Sw4+c5OSN9/RkPlo1uKxAomtxQNLq8j1uPAqnsqG1bqvY3Jv7c13gyr6dui0zmh/I3+f/JaQ==}
@@ -7309,36 +7284,139 @@ packages:
'@pythnetwork/pyth-starknet-js@0.2.1':
resolution: {integrity: sha512-hLPmWUkLJxYI/f1nGvhk37Hp76uYL+8g12PuJSSH7GIdN9V3ts/wgL4TdI55FbC2Ypnx3WXjVQgTpQyOhhrpyg==}
+ '@radix-ui/number@1.1.0':
+ resolution: {integrity: sha512-V3gRzhVNU1ldS5XhAPTom1fOIo4ccrjjJgmE+LI2h/WaFpHmx0MQApT+KZHnx8abG6Avtfcz4WoEciMnpFT3HQ==}
+
'@radix-ui/primitive@1.0.0':
resolution: {integrity: sha512-3e7rn8FDMin4CgeL7Z/49smCA3rFYY3Ha2rUQ7HRWFadS5iCRw08ZgVT1LaNTCNqgvrUiyczLflrVrF0SRQtNA==}
+ '@radix-ui/primitive@1.1.1':
+ resolution: {integrity: sha512-SJ31y+Q/zAyShtXJc8x83i9TYdbAfHZ++tUZnvjJJqFjzsdUnKsxPL6IEtBlxKkU7yzer//GQtZSV4GbldL3YA==}
+
'@radix-ui/react-arrow@1.0.1':
resolution: {integrity: sha512-1yientwXqXcErDHEv8av9ZVNEBldH8L9scVR3is20lL+jOCfcJyMFZFEY5cgIrgexsq1qggSXqiEL/d/4f+QXA==}
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
+ '@radix-ui/react-arrow@1.1.1':
+ resolution: {integrity: sha512-NaVpZfmv8SKeZbn4ijN2V3jlHA9ngBG16VnIIm22nUR0Yk8KUALyBxT3KYEUnNuch9sTE8UTsS3whzBgKOL30w==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-collection@1.1.1':
+ resolution: {integrity: sha512-LwT3pSho9Dljg+wY2KN2mrrh6y3qELfftINERIzBUO9e0N+t0oMTyn3k9iv+ZqgrwGkRnLpNJrsMv9BZlt2yuA==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
'@radix-ui/react-compose-refs@1.0.0':
resolution: {integrity: sha512-0KaSv6sx787/hK3eF53iOkiSLwAGlFMx5lotrqD2pTjB18KbybKoEIgkNZTKC60YECDQTKGTRcDBILwZVqVKvA==}
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
+ '@radix-ui/react-compose-refs@1.1.1':
+ resolution: {integrity: sha512-Y9VzoRDSJtgFMUCoiZBDVo084VQ5hfpXxVE+NgkdNsjiDBByiImMZKKhxMwCbdHvhlENG6a833CbFkOQvTricw==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@radix-ui/react-context@1.0.0':
resolution: {integrity: sha512-1pVM9RfOQ+n/N5PJK33kRSKsr1glNxomxONs5c49MliinBY6Yw2Q995qfBUUo0/Mbg05B/sGA0gkgPI7kmSHBg==}
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
+ '@radix-ui/react-context@1.1.1':
+ resolution: {integrity: sha512-UASk9zi+crv9WteK/NU4PLvOoL3OuE6BWVKNF6hPRBtYBDXQ2u5iu3O59zUlJiTVvkyuycnqrztsHVJwcK9K+Q==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-direction@1.1.0':
+ resolution: {integrity: sha512-BUuBvgThEiAXh2DWu93XsT+a3aWrGqolGlqqw5VU1kG7p/ZH2cuDlM1sRLNnY3QcBS69UIz2mcKhMxDsdewhjg==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@radix-ui/react-dismissable-layer@1.0.2':
resolution: {integrity: sha512-WjJzMrTWROozDqLB0uRWYvj4UuXsM/2L19EmQ3Au+IJWqwvwq9Bwd+P8ivo0Deg9JDPArR1I6MbWNi1CmXsskg==}
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
+ '@radix-ui/react-dismissable-layer@1.1.3':
+ resolution: {integrity: sha512-onrWn/72lQoEucDmJnr8uczSNTujT0vJnA/X5+3AkChVPowr8n1yvIKIabhWyMQeMvvmdpsvcyDqx3X1LEXCPg==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-focus-guards@1.1.1':
+ resolution: {integrity: sha512-pSIwfrT1a6sIoDASCSpFwOasEwKTZWDw/iBdtnqKO7v6FeOzYJ7U53cPzYFVR3geGGXgVHaH+CdngrrAzqUGxg==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-focus-scope@1.1.1':
+ resolution: {integrity: sha512-01omzJAYRxXdG2/he/+xy+c8a8gCydoQ1yOxnWNcRhrrBW5W+RQJ22EK1SaO8tb3WoUsuEw7mJjBozPzihDFjA==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
'@radix-ui/react-id@1.0.0':
resolution: {integrity: sha512-Q6iAB/U7Tq3NTolBBQbHTgclPmGWE3OlktGGqrClPozSw4vkQ1DfQAOtzgRPecKsMdJINE05iaoDUG8tRzCBjw==}
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
+ '@radix-ui/react-id@1.1.0':
+ resolution: {integrity: sha512-EJUrI8yYh7WOjNOqpoJaf1jlFIH2LvtgAl+YcFqNCa+4hj64ZXmPkAKOFs/ukjz3byN6bdb/AVUqHkI8/uWWMA==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@radix-ui/react-label@2.0.0':
resolution: {integrity: sha512-7qCcZ3j2VQspWjy+gKR4W+V/z0XueQjeiZnlPOtsyiP9HaS8bfSU7ECoI3bvvdYntQj7NElW7OAYsYRW4MQvCg==}
peerDependencies:
@@ -7351,12 +7429,38 @@ packages:
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
+ '@radix-ui/react-popper@1.2.1':
+ resolution: {integrity: sha512-3kn5Me69L+jv82EKRuQCXdYyf1DqHwD2U/sxoNgBGCB7K9TRc3bQamQ+5EPM9EvyPdli0W41sROd+ZU1dTCztw==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
'@radix-ui/react-portal@1.0.1':
resolution: {integrity: sha512-NY2vUWI5WENgAT1nfC6JS7RU5xRYBfjZVLq0HmgEN1Ezy3rk/UruMV4+Rd0F40PEaFC5SrLS1ixYvcYIQrb4Ig==}
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
+ '@radix-ui/react-portal@1.1.3':
+ resolution: {integrity: sha512-NciRqhXnGojhT93RPyDaMPfLH3ZSl4jjIFbZQ1b/vxvZEdHsBZ49wP9w8L3HzUQwep01LcWtkUvm0OVB5JAHTw==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
'@radix-ui/react-presence@1.0.0':
resolution: {integrity: sha512-A+6XEvN01NfVWiKu38ybawfHsBjWum42MRPnEuqPsBZ4eV7e/7K321B5VgYMPv3Xx5An6o1/l9ZuDBgmcmWK3w==}
peerDependencies:
@@ -7369,11 +7473,59 @@ packages:
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
+ '@radix-ui/react-primitive@2.0.1':
+ resolution: {integrity: sha512-sHCWTtxwNn3L3fH8qAfnF3WbUZycW93SM1j3NFDzXBiz8D6F5UTTy8G1+WFEaiCdvCVRJWj6N2R4Xq6HdiHmDg==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-select@2.1.4':
+ resolution: {integrity: sha512-pOkb2u8KgO47j/h7AylCj7dJsm69BXcjkrvTqMptFqsE2i0p8lHkfgneXKjAgPzBMivnoMyt8o4KiV4wYzDdyQ==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
'@radix-ui/react-slot@1.0.1':
resolution: {integrity: sha512-avutXAFL1ehGvAXtPquu0YK5oz6ctS474iM3vNGQIkswrVhdrS52e3uoMQBzZhNRAIE0jBnUyXWNmSjGHhCFcw==}
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
+ '@radix-ui/react-slot@1.1.1':
+ resolution: {integrity: sha512-RApLLOcINYJA+dMVbOju7MYv1Mb2EBp2nH4HdDzXTSyaR5optlm6Otrz1euW3HbdOR8UmmFK06TD+A9frYWv+g==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-switch@1.1.2':
+ resolution: {integrity: sha512-zGukiWHjEdBCRyXvKR6iXAQG6qXm2esuAD6kDOi9Cn+1X6ev3ASo4+CsYaD6Fov9r/AQFekqnD/7+V0Cs6/98g==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
'@radix-ui/react-tooltip@1.0.3':
resolution: {integrity: sha512-cmc9qV4KpgqdXVTn1K8KN8MnuSXvw+E719pKwyvpCGrQ+0AA2qTjcIL3uxCj4jc4k3sDR36RF7R3H7N5hPybBQ==}
peerDependencies:
@@ -7385,40 +7537,119 @@ packages:
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
+ '@radix-ui/react-use-callback-ref@1.1.0':
+ resolution: {integrity: sha512-CasTfvsy+frcFkbXtSJ2Zu9JHpN8TYKxkgJGWbjiZhFivxaeW7rMeZt7QELGVLaYVfFMsKHjb7Ak0nMEe+2Vfw==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@radix-ui/react-use-controllable-state@1.0.0':
resolution: {integrity: sha512-FohDoZvk3mEXh9AWAVyRTYR4Sq7/gavuofglmiXB2g1aKyboUD4YtgWxKj8O5n+Uak52gXQ4wKz5IFST4vtJHg==}
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
+ '@radix-ui/react-use-controllable-state@1.1.0':
+ resolution: {integrity: sha512-MtfMVJiSr2NjzS0Aa90NPTnvTSg6C/JLCV7ma0W6+OMV78vd8OyRpID+Ng9LxzsPbLeuBnWBA1Nq30AtBIDChw==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@radix-ui/react-use-escape-keydown@1.0.2':
resolution: {integrity: sha512-DXGim3x74WgUv+iMNCF+cAo8xUHHeqvjx8zs7trKf+FkQKPQXLk2sX7Gx1ysH7Q76xCpZuxIJE7HLPxRE+Q+GA==}
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
+ '@radix-ui/react-use-escape-keydown@1.1.0':
+ resolution: {integrity: sha512-L7vwWlR1kTTQ3oh7g1O0CBF3YCyyTj8NmhLR+phShpyA50HCfBFKVJTpshm9PzLiKmehsrQzTYTpX9HvmC9rhw==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@radix-ui/react-use-layout-effect@1.0.0':
resolution: {integrity: sha512-6Tpkq+R6LOlmQb1R5NNETLG0B4YP0wc+klfXafpUCj6JGyaUc8il7/kUZ7m59rGbXGczE9Bs+iz2qloqsZBduQ==}
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
+ '@radix-ui/react-use-layout-effect@1.1.0':
+ resolution: {integrity: sha512-+FPE0rOdziWSrH9athwI1R0HDVbWlEhd+FR+aSDk4uWGmSJ9Z54sdZVDQPZAinJhJXwfT+qnj969mCsT2gfm5w==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-use-previous@1.1.0':
+ resolution: {integrity: sha512-Z/e78qg2YFnnXcW88A4JmTtm4ADckLno6F7OXotmkQfeuCVaKuYzqAATPhVzl3delXE7CxIV8shofPn3jPc5Og==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@radix-ui/react-use-rect@1.0.0':
resolution: {integrity: sha512-TB7pID8NRMEHxb/qQJpvSt3hQU4sqNPM1VCTjTRjEOa7cEop/QMuq8S6fb/5Tsz64kqSvB9WnwsDHtjnrM9qew==}
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
+ '@radix-ui/react-use-rect@1.1.0':
+ resolution: {integrity: sha512-0Fmkebhr6PiseyZlYAOtLS+nb7jLmpqTrJyv61Pe68MKYW6OWdRE2kI70TaYY27u7H0lajqM3hSMMLFq18Z7nQ==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@radix-ui/react-use-size@1.0.0':
resolution: {integrity: sha512-imZ3aYcoYCKhhgNpkNDh/aTiU05qw9hX+HHI1QDBTyIlcFjgeFlKKySNGMwTp7nYFLQg/j0VA2FmCY4WPDDHMg==}
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
+ '@radix-ui/react-use-size@1.1.0':
+ resolution: {integrity: sha512-XW3/vWuIXHa+2Uwcc2ABSfcCledmXhhQPlGbfcRXbiUQI5Icjcg19BGCZVKKInYbvUCut/ufbbLLPFC5cbb1hw==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@radix-ui/react-visually-hidden@1.0.1':
resolution: {integrity: sha512-K1hJcCMfWfiYUibRqf3V8r5Drpyf7rh44jnrwAbdvI5iCCijilBBeyQv9SKidYNZIopMdCyR9FnIjkHxHN0FcQ==}
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
+ '@radix-ui/react-visually-hidden@1.1.1':
+ resolution: {integrity: sha512-vVfA2IZ9q/J+gEamvj761Oq1FpWgCDaNOOIfbPVp2MVPLEomUr5+Vf7kJGwQ24YxZSlQVar7Bes8kyTo5Dshpg==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
'@radix-ui/rect@1.0.0':
resolution: {integrity: sha512-d0O68AYy/9oeEy1DdC07bz1/ZXX+DqCskRd3i4JzLSTXwefzaepQrKjXC7aNM8lTHjFLDO0pDgaEiQ7jEk+HVg==}
+ '@radix-ui/rect@1.1.0':
+ resolution: {integrity: sha512-A9+lCBZoaMJlVKcRBz2YByCG+Cp2t6nAnMnNba+XiWxnj6r4JUFqfsgwocMBZU9LPtdxC6wB56ySYpc7LQIoJg==}
+
'@react-aria/breadcrumbs@3.5.19':
resolution: {integrity: sha512-mVngOPFYVVhec89rf/CiYQGTfaLRfHFtX+JQwY7sNYNqSA+gO8p4lNARe3Be6bJPgH+LUQuruIY9/ZDL6LT3HA==}
peerDependencies:
@@ -8177,6 +8408,9 @@ packages:
'@scure/base@1.1.9':
resolution: {integrity: sha512-8YKhl8GHiNI/pU2VMaofa2Tor7PJRAjwQLBBuilkJ9L5+13yVbC7JO/wS7piioAvPSwR3JKM1IJ/u4xQzbcXKg==}
+ '@scure/base@1.2.1':
+ resolution: {integrity: sha512-DGmGtC8Tt63J5GfHgfl5CuAXh96VF/LD8K9Hr/Gv0J2lAoRGlPOMpqMpMbCTOoOJMZCk2Xt+DskdDyn6dEFdzQ==}
+
'@scure/bip32@1.1.0':
resolution: {integrity: sha512-ftTW3kKX54YXLCxH6BB7oEEoJfoE2pIgw7MINKAs5PsS6nqKPuKk1haTF/EuHmYqG330t5GSrdmtRuHaY1a62Q==}
@@ -8195,6 +8429,9 @@ packages:
'@scure/bip32@1.5.0':
resolution: {integrity: sha512-8EnFYkqEQdnkuGBVpCzKxyIwDCBLDVj3oiX0EKUFre/tOjL/Hqba1D6n/8RcmaQy4f95qQFrO2A8Sr6ybh4NRw==}
+ '@scure/bip32@1.6.0':
+ resolution: {integrity: sha512-82q1QfklrUUdXJzjuRU7iG7D7XiFx5PHYVS0+oeNKhyDLT7WPqs6pBcM2W5ZdwOwKCwoE1Vy1se+DHjcXwCYnA==}
+
'@scure/bip39@1.1.0':
resolution: {integrity: sha512-pwrPOS16VeTKg98dYXQyIjJEcWfz7/1YJIwxUEPFfQPtc86Ym/1sVgQ2RLoD43AazMk2l/unK4ITySSpW2+82w==}
@@ -8213,6 +8450,9 @@ packages:
'@scure/bip39@1.4.0':
resolution: {integrity: sha512-BEEm6p8IueV/ZTfQLp/0vhw4NPnT9oWf5+28nvmeUICjP99f4vr2d+qc7AVGDDtwRep6ifR43Yed9ERVmiITzw==}
+ '@scure/bip39@1.5.0':
+ resolution: {integrity: sha512-Dop+ASYhnrwm9+HA/HwXg7j2ZqM6yk2fyLWb5znexjctFY3+E+eU8cIWI0Pql0Qx4hPZCijlGq4OL71g+Uz30A==}
+
'@scure/starknet@1.0.0':
resolution: {integrity: sha512-o5J57zY0f+2IL/mq8+AYJJ4Xpc1fOtDhr+mFQKbHnYFmm3WQrC+8zj2HEgxak1a+x86mhmBC1Kq305KUpVf0wg==}
@@ -9759,9 +9999,6 @@ packages:
'@types/estree@0.0.51':
resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==}
- '@types/estree@1.0.5':
- resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
-
'@types/estree@1.0.6':
resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
@@ -10929,6 +11166,17 @@ packages:
zod:
optional: true
+ abitype@1.0.7:
+ resolution: {integrity: sha512-ZfYYSktDQUwc2eduYu8C4wOs+RDPmnRYMh7zNfzeMtGGgb0U+6tLGjixUic6mXf5xKKCcgT5Qp6cv39tOARVFw==}
+ peerDependencies:
+ typescript: '>=5.0.4'
+ zod: ^3 >=3.22.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ zod:
+ optional: true
+
abort-controller@3.0.0:
resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==}
engines: {node: '>=6.5'}
@@ -11103,9 +11351,6 @@ packages:
ajv@8.12.0:
resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==}
- ajv@8.16.0:
- resolution: {integrity: sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==}
-
ajv@8.17.1:
resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==}
@@ -11308,6 +11553,10 @@ packages:
argsarray@0.0.1:
resolution: {integrity: sha512-u96dg2GcAKtpTrBdDoFIM7PjcBA+6rSP0OR94MOReNRyUECL6MtQt5XXmRr4qrftYaef9+l5hcpO5te7sML1Cg==}
+ aria-hidden@1.2.4:
+ resolution: {integrity: sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==}
+ engines: {node: '>=10'}
+
aria-query@5.3.0:
resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==}
@@ -11861,11 +12110,6 @@ packages:
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
- browserslist@4.23.3:
- resolution: {integrity: sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==}
- engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
- hasBin: true
-
browserslist@4.24.0:
resolution: {integrity: sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
@@ -12265,6 +12509,9 @@ packages:
class-is@1.1.0:
resolution: {integrity: sha512-rhjH9AG1fvabIDoGRVH587413LPjTZgmDF9fOFCbFJQV4yuocX1mHxxvXI4g3cGwbVY9wAYIoKlg1N79frJKQw==}
+ class-variance-authority@0.7.1:
+ resolution: {integrity: sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==}
+
clean-css@5.3.3:
resolution: {integrity: sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==}
engines: {node: '>= 10.0'}
@@ -12641,9 +12888,6 @@ packages:
resolution: {integrity: sha512-fereAvAvxDrQDOXybk3Qu3dPbOoKoysFMWtkY3mv5BsL8//OSZVL5DCLYqgRfY5cWirgRzlC+WSrxp6Bo3eNZg==}
hasBin: true
- core-js-compat@3.27.2:
- resolution: {integrity: sha512-welaYuF7ZtbYKGrIy7y3eb40d37rG1FvzEOfe7hSLd2iD6duMDqUhRfSvCGyC46HhR6Y8JXXdZ2lnRUMkPBpvg==}
-
core-js-compat@3.37.1:
resolution: {integrity: sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==}
@@ -13142,10 +13386,6 @@ packages:
deep-is@0.1.4:
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
- deepmerge@4.3.0:
- resolution: {integrity: sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og==}
- engines: {node: '>=0.10.0'}
-
deepmerge@4.3.1:
resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
engines: {node: '>=0.10.0'}
@@ -13250,6 +13490,9 @@ packages:
resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==}
engines: {node: '>=8'}
+ detect-node-es@1.1.0:
+ resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==}
+
detect-port-alt@1.1.6:
resolution: {integrity: sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==}
engines: {node: '>= 4.2.1'}
@@ -13473,9 +13716,6 @@ packages:
electron-to-chromium@1.5.41:
resolution: {integrity: sha512-dfdv/2xNjX0P8Vzme4cfzHqnPm5xsZXwsolTYr0eyW18IUmNyG08vL+fttvinTfhKfIKdRoqkDIC9e9iWQCNYQ==}
- electron-to-chromium@1.5.6:
- resolution: {integrity: sha512-jwXWsM5RPf6j9dPYzaorcBSUg6AiqocPEyMpkchkvntaH9HGfOOMZwxMJjDY/XEs3T5dM7uyH1VhRMkqUU9qVw==}
-
elliptic@6.5.4:
resolution: {integrity: sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==}
@@ -13554,10 +13794,6 @@ packages:
resolution: {integrity: sha512-RcyUFKA93/CXH20l4SoVvzZfrSDMOTUS3bWVpTt2FuFP+XYrL8i8oonHP7WInRyVHXh0n/ORtoeiE1os+8qkSw==}
engines: {node: '>=10.0.0'}
- enhanced-resolve@5.17.0:
- resolution: {integrity: sha512-dwDPwZL0dmye8Txp2gzFmA6sxALaSvdRDjPH0viLcKrtlOL3tw62nWWweVD1SdILDTJrbrL6tdWVN58Wo6U3eA==}
- engines: {node: '>=10.13.0'}
-
enhanced-resolve@5.17.1:
resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==}
engines: {node: '>=10.13.0'}
@@ -13573,10 +13809,6 @@ packages:
entities@2.2.0:
resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
- entities@4.4.0:
- resolution: {integrity: sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==}
- engines: {node: '>=0.12'}
-
entities@4.5.0:
resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
engines: {node: '>=0.12'}
@@ -14065,16 +14297,6 @@ packages:
deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options.
hasBin: true
- eslint@9.12.0:
- resolution: {integrity: sha512-UVIOlTEWxwIopRL1wgSQYdnVDcEvs2wyaO6DGo5mXqe3r16IoCNWkR29iHhyaP4cICWjbgbmFUGAhh0GJRuGZw==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- hasBin: true
- peerDependencies:
- jiti: '*'
- peerDependenciesMeta:
- jiti:
- optional: true
-
eslint@9.13.0:
resolution: {integrity: sha512-EYZK6SX6zjFHST/HRytOdA/zE72Cq/bfw45LSyuwrdvcclb/gqV8RRQxywOBEWO2+WDpva6UZa4CcDeJKzUCFA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -14910,6 +15132,10 @@ packages:
resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==}
engines: {node: '>= 0.4'}
+ get-nonce@1.0.1:
+ resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==}
+ engines: {node: '>=6'}
+
get-package-type@0.1.0:
resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==}
engines: {node: '>=8.0.0'}
@@ -15107,9 +15333,6 @@ packages:
peerDependencies:
typescript: ^5.0.0
- graceful-fs@4.2.10:
- resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==}
-
graceful-fs@4.2.11:
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
@@ -15320,6 +15543,10 @@ packages:
resolution: {integrity: sha512-EqYpWyTF2s8nMfttfBA2yLKPNoZCO33pLS4MnbXQ4hECf1TKujCt1Kq7QAdrio7roL4+CqsfjqwYj4tYgq0pJQ==}
engines: {node: '>=12.0.0'}
+ highlight.js@11.11.1:
+ resolution: {integrity: sha512-Xwwo44whKBVCYoliBQwaPvtd/2tYFkRQtXDWj1nackaV2JPXx3L0+Jvd8/qCJ2p+ML0/XVkJ2q+Mr+UVdpJK5w==}
+ engines: {node: '>=12.0.0'}
+
highlightjs-solidity@2.0.6:
resolution: {integrity: sha512-DySXWfQghjm2l6a/flF+cteroJqD4gI8GSdL4PtvxZSsAHie8m3yVe2JFoRg03ROKT6hp2Lc/BxXkqerNmtQYg==}
@@ -16066,10 +16293,6 @@ packages:
iterator.prototype@1.1.2:
resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==}
- jackspeak@2.2.0:
- resolution: {integrity: sha512-r5XBrqIJfwRIjRt/Xr5fv9Wh09qyhHfKnYddDlpM+ibRR20qrYActpCAgU6U+d53EOEjzkvxPMVHSlgR7leXrQ==}
- engines: {node: '>=14'}
-
jackspeak@2.3.6:
resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==}
engines: {node: '>=14'}
@@ -16896,6 +17119,11 @@ packages:
ltgt@2.2.1:
resolution: {integrity: sha512-AI2r85+4MquTw9ZYqabu4nMwy9Oftlfa/e/52t9IjtfG+mGBbTNdAoZ3RQKLHR6r0wQnwZnPIEh/Ya6XTWAKNA==}
+ lucide-react@0.465.0:
+ resolution: {integrity: sha512-uV7WEqbwaCcc+QjAxIhAvkAr3kgwkkYID3XptCHll72/F7NZlk6ONmJYpk+Xqx5Q0r/8wiOjz73H1BYbl8Z8iw==}
+ peerDependencies:
+ react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0-rc
+
lunr@2.3.9:
resolution: {integrity: sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==}
@@ -17759,10 +17987,6 @@ packages:
resolution: {integrity: sha512-iWjXZvmboq0ja1pUGULQBexmxq8CV4xBhX7VDOTbL7ZR4FOowwY/VOtRxBN/yKxmdGoIp4j5ysNT4u3S2pDQ3Q==}
hasBin: true
- node-gyp-build@4.8.1:
- resolution: {integrity: sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==}
- hasBin: true
-
node-gyp-build@4.8.2:
resolution: {integrity: sha512-IRUxE4BVsHWXkV/SFOut4qTlagw2aM8T5/vnTsmrHJvVoKueJHRc/JaFND7QDDc61kLYUJ6qlZM3sqTSyx2dTw==}
hasBin: true
@@ -18114,6 +18338,14 @@ packages:
osmojs@16.12.1:
resolution: {integrity: sha512-3Crv2Du70felladlGbK2q/3vh4e/Cgp+PNMcicL7Pr9DPoRx6E+tjDbemCPES2J1BJlHodK1BEFowr/85BILVA==}
+ ox@0.6.5:
+ resolution: {integrity: sha512-vmnH8KvMDwFZDbNY1mq2CBRBWIgSliZB/dFV0xKp+DfF/dJkTENt6nmA+DzHSSAgL/GO2ydjkXWvlndJgSY4KQ==}
+ peerDependencies:
+ typescript: '>=5.4.0'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
p-cancelable@2.1.1:
resolution: {integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==}
engines: {node: '>=8'}
@@ -18349,10 +18581,6 @@ packages:
path-parse@1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
- path-scurry@1.10.1:
- resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==}
- engines: {node: '>=16 || 14 >=14.17'}
-
path-scurry@1.11.1:
resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
engines: {node: '>=16 || 14 >=14.18'}
@@ -19285,6 +19513,26 @@ packages:
resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==}
engines: {node: '>=0.10.0'}
+ react-remove-scroll-bar@2.3.8:
+ resolution: {integrity: sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ react-remove-scroll@2.6.2:
+ resolution: {integrity: sha512-KmONPx5fnlXYJQqC62Q+lwIeAk64ws/cUw6omIumRzMRPqgnYqhSSti99nbj0Ry13bv7dF+BKn7NB+OqkdZGTw==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
react-shallow-renderer@16.15.0:
resolution: {integrity: sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==}
peerDependencies:
@@ -19301,6 +19549,16 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
+ react-style-singleton@2.2.3:
+ resolution: {integrity: sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
react-transition-group@4.4.5:
resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==}
peerDependencies:
@@ -20715,6 +20973,9 @@ packages:
resolution: {integrity: sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==}
engines: {node: '>=10.0.0'}
+ tailwind-merge@2.6.0:
+ resolution: {integrity: sha512-P+Vu1qXfzediirmHOC3xKGAYeZtPcV9g76X+xg2FD4tYgR71ewMA35Y3sCz3zhiN/dwefRpJX0yBcgwi1fXNQA==}
+
tailwindcss-animate@1.0.7:
resolution: {integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==}
peerDependencies:
@@ -21640,12 +21901,6 @@ packages:
peerDependencies:
browserslist: '>= 4.21.0'
- update-browserslist-db@1.1.0:
- resolution: {integrity: sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==}
- hasBin: true
- peerDependencies:
- browserslist: '>= 4.21.0'
-
update-browserslist-db@1.1.1:
resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==}
hasBin: true
@@ -21690,6 +21945,16 @@ packages:
resolution: {integrity: sha512-G0I/fPgfHUzWH8xo2KkDxTTFruUWfppgSFJ+bQxz/kVY2x15EQ/XDB7dqD1G432G4gBG4jYQuF3U7j/orSs5nw==}
engines: {node: '>=10.20.0 <11.x || >=12.17.0 <13.0 || >=14.0.0'}
+ use-callback-ref@1.3.3:
+ resolution: {integrity: sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
use-debounce@9.0.3:
resolution: {integrity: sha512-FhtlbDtDXILJV7Lix5OZj5yX/fW1tzq+VrvK1fnT2bUrPOGruU9Rw8NCEn+UI9wopfERBEZAOQ8lfeCJPllgnw==}
engines: {node: '>= 10.0.0'}
@@ -21705,6 +21970,16 @@ packages:
'@types/react':
optional: true
+ use-sidecar@1.1.3:
+ resolution: {integrity: sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
use-sync-external-store@1.2.0:
resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==}
peerDependencies:
@@ -21868,6 +22143,14 @@ packages:
typescript:
optional: true
+ viem@2.22.9:
+ resolution: {integrity: sha512-2yy46qYhcdo8GZggQ3Zoq9QCahI0goddzpVI/vSnTpcClQBSDxYRCuAqRzzLqjvJ7hS0UYgplC7eRkM2sYgflw==}
+ peerDependencies:
+ typescript: '>=5.0.4'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
vlq@1.0.1:
resolution: {integrity: sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==}
@@ -23063,11 +23346,6 @@ snapshots:
'@amplitude/analytics-types': 2.8.3
tslib: 2.8.0
- '@ampproject/remapping@2.2.0':
- dependencies:
- '@jridgewell/gen-mapping': 0.1.1
- '@jridgewell/trace-mapping': 0.3.25
-
'@ampproject/remapping@2.3.0':
dependencies:
'@jridgewell/gen-mapping': 0.3.5
@@ -23089,8 +23367,8 @@ snapshots:
'@apidevtools/openapi-schemas': 2.1.0
'@apidevtools/swagger-methods': 3.0.2
'@jsdevtools/ono': 7.1.3
- ajv: 8.16.0
- ajv-draft-04: 1.0.0(ajv@8.16.0)
+ ajv: 8.17.1
+ ajv-draft-04: 1.0.0(ajv@8.17.1)
call-me-maybe: 1.0.2
openapi-types: 12.1.3
@@ -23256,14 +23534,9 @@ snapshots:
axe-core: 4.9.1
requestidlecallback: 0.3.0
- '@babel/code-frame@7.23.5':
- dependencies:
- '@babel/highlight': 7.24.7
- chalk: 2.4.2
-
'@babel/code-frame@7.24.7':
dependencies:
- '@babel/highlight': 7.24.7
+ '@babel/highlight': 7.25.7
picocolors: 1.1.1
'@babel/code-frame@7.25.7':
@@ -23271,26 +23544,22 @@ snapshots:
'@babel/highlight': 7.25.7
picocolors: 1.1.1
- '@babel/compat-data@7.23.5': {}
-
'@babel/compat-data@7.24.7': {}
- '@babel/compat-data@7.25.2': {}
-
'@babel/compat-data@7.25.8': {}
'@babel/core@7.24.0':
dependencies:
- '@ampproject/remapping': 2.2.0
- '@babel/code-frame': 7.23.5
- '@babel/generator': 7.23.6
- '@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.0)
- '@babel/helpers': 7.24.0
- '@babel/parser': 7.24.0
- '@babel/template': 7.24.0
- '@babel/traverse': 7.24.0
- '@babel/types': 7.24.0
+ '@ampproject/remapping': 2.3.0
+ '@babel/code-frame': 7.25.7
+ '@babel/generator': 7.25.7
+ '@babel/helper-compilation-targets': 7.25.7
+ '@babel/helper-module-transforms': 7.25.7(@babel/core@7.24.0)
+ '@babel/helpers': 7.25.7
+ '@babel/parser': 7.25.8
+ '@babel/template': 7.25.7
+ '@babel/traverse': 7.25.7
+ '@babel/types': 7.25.8
convert-source-map: 2.0.0
debug: 4.3.7(supports-color@8.1.1)
gensync: 1.0.0-beta.2
@@ -23339,31 +23608,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/eslint-parser@7.24.7(@babel/core@7.25.8)(eslint@9.12.0(jiti@1.21.0))':
+ '@babel/eslint-parser@7.24.7(@babel/core@7.25.8)(eslint@9.13.0(jiti@1.21.0))':
dependencies:
'@babel/core': 7.25.8
'@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
eslint-visitor-keys: 2.1.0
semver: 6.3.1
- '@babel/generator@7.23.6':
- dependencies:
- '@babel/types': 7.24.7
- '@jridgewell/gen-mapping': 0.3.5
- '@jridgewell/trace-mapping': 0.3.25
- jsesc: 2.5.2
-
- '@babel/generator@7.24.7':
- dependencies:
- '@babel/types': 7.24.7
- '@jridgewell/gen-mapping': 0.3.5
- '@jridgewell/trace-mapping': 0.3.25
- jsesc: 2.5.2
-
'@babel/generator@7.25.0':
dependencies:
- '@babel/types': 7.25.2
+ '@babel/types': 7.25.8
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
jsesc: 2.5.2
@@ -23377,11 +23632,11 @@ snapshots:
'@babel/helper-annotate-as-pure@7.22.5':
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.25.8
'@babel/helper-annotate-as-pure@7.24.7':
dependencies:
- '@babel/types': 7.24.7
+ '@babel/types': 7.25.8
'@babel/helper-annotate-as-pure@7.25.7':
dependencies:
@@ -23390,36 +23645,28 @@ snapshots:
'@babel/helper-builder-binary-assignment-operator-visitor@7.18.9':
dependencies:
'@babel/helper-explode-assignable-expression': 7.18.6
- '@babel/types': 7.24.7
+ '@babel/types': 7.25.8
'@babel/helper-builder-binary-assignment-operator-visitor@7.24.7':
dependencies:
- '@babel/traverse': 7.24.7
- '@babel/types': 7.24.7
+ '@babel/traverse': 7.25.7
+ '@babel/types': 7.25.8
transitivePeerDependencies:
- supports-color
- '@babel/helper-compilation-targets@7.23.6':
- dependencies:
- '@babel/compat-data': 7.24.7
- '@babel/helper-validator-option': 7.24.7
- browserslist: 4.24.0
- lru-cache: 5.1.1
- semver: 6.3.1
-
'@babel/helper-compilation-targets@7.24.7':
dependencies:
- '@babel/compat-data': 7.24.7
- '@babel/helper-validator-option': 7.24.7
- browserslist: 4.23.1
+ '@babel/compat-data': 7.25.8
+ '@babel/helper-validator-option': 7.25.7
+ browserslist: 4.24.0
lru-cache: 5.1.1
semver: 6.3.1
'@babel/helper-compilation-targets@7.25.2':
dependencies:
- '@babel/compat-data': 7.25.2
- '@babel/helper-validator-option': 7.24.8
- browserslist: 4.23.3
+ '@babel/compat-data': 7.25.8
+ '@babel/helper-validator-option': 7.25.7
+ browserslist: 4.24.0
lru-cache: 5.1.1
semver: 6.3.1
@@ -23605,8 +23852,8 @@ snapshots:
'@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
debug: 4.3.7(supports-color@8.1.1)
lodash.debounce: 4.0.8
resolve: 1.22.8
@@ -23617,8 +23864,8 @@ snapshots:
'@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
debug: 4.3.7(supports-color@8.1.1)
lodash.debounce: 4.0.8
resolve: 1.22.8
@@ -23629,8 +23876,8 @@ snapshots:
'@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
debug: 4.3.7(supports-color@8.1.1)
lodash.debounce: 4.0.8
resolve: 1.22.8
@@ -23640,8 +23887,8 @@ snapshots:
'@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
debug: 4.3.7(supports-color@8.1.1)
lodash.debounce: 4.0.8
resolve: 1.22.8
@@ -23651,8 +23898,8 @@ snapshots:
'@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
debug: 4.3.7(supports-color@8.1.1)
lodash.debounce: 4.0.8
resolve: 1.22.8
@@ -23661,29 +23908,29 @@ snapshots:
'@babel/helper-environment-visitor@7.24.7':
dependencies:
- '@babel/types': 7.24.7
+ '@babel/types': 7.25.8
'@babel/helper-explode-assignable-expression@7.18.6':
dependencies:
- '@babel/types': 7.24.7
+ '@babel/types': 7.25.8
'@babel/helper-function-name@7.24.7':
dependencies:
- '@babel/template': 7.24.7
- '@babel/types': 7.24.7
+ '@babel/template': 7.25.7
+ '@babel/types': 7.25.8
'@babel/helper-hoist-variables@7.24.7':
dependencies:
- '@babel/types': 7.24.7
+ '@babel/types': 7.25.8
'@babel/helper-member-expression-to-functions@7.23.0':
dependencies:
- '@babel/types': 7.24.7
+ '@babel/types': 7.25.8
'@babel/helper-member-expression-to-functions@7.24.7':
dependencies:
- '@babel/traverse': 7.24.7
- '@babel/types': 7.24.7
+ '@babel/traverse': 7.25.7
+ '@babel/types': 7.25.8
transitivePeerDependencies:
- supports-color
@@ -23694,21 +23941,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-imports@7.22.15':
- dependencies:
- '@babel/types': 7.24.0
-
- '@babel/helper-module-imports@7.24.7':
- dependencies:
- '@babel/traverse': 7.24.7
- '@babel/types': 7.24.7
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-module-imports@7.24.7(supports-color@5.5.0)':
dependencies:
- '@babel/traverse': 7.24.7(supports-color@5.5.0)
- '@babel/types': 7.24.7
+ '@babel/traverse': 7.25.7(supports-color@5.5.0)
+ '@babel/types': 7.25.8
transitivePeerDependencies:
- supports-color
@@ -23719,57 +23955,20 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.23.3(@babel/core@7.24.0)':
+ '@babel/helper-module-imports@7.25.7(supports-color@5.5.0)':
dependencies:
- '@babel/core': 7.24.0
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-simple-access': 7.24.7
- '@babel/helper-split-export-declaration': 7.24.7
- '@babel/helper-validator-identifier': 7.24.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-module-transforms@7.24.7(@babel/core@7.24.0)':
- dependencies:
- '@babel/core': 7.24.0
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-simple-access': 7.24.7
- '@babel/helper-split-export-declaration': 7.24.7
- '@babel/helper-validator-identifier': 7.24.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-module-transforms@7.24.7(@babel/core@7.24.7)':
- dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-simple-access': 7.24.7
- '@babel/helper-split-export-declaration': 7.24.7
- '@babel/helper-validator-identifier': 7.24.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-module-transforms@7.24.7(@babel/core@7.25.8)':
- dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-simple-access': 7.24.7
- '@babel/helper-split-export-declaration': 7.24.7
- '@babel/helper-validator-identifier': 7.24.7
+ '@babel/traverse': 7.25.7(supports-color@5.5.0)
+ '@babel/types': 7.25.8
transitivePeerDependencies:
- supports-color
'@babel/helper-module-transforms@7.25.2(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-simple-access': 7.24.7
- '@babel/helper-validator-identifier': 7.24.7
- '@babel/traverse': 7.25.3
+ '@babel/helper-module-imports': 7.25.7
+ '@babel/helper-simple-access': 7.25.7
+ '@babel/helper-validator-identifier': 7.25.7
+ '@babel/traverse': 7.25.7
transitivePeerDependencies:
- supports-color
@@ -23805,11 +24004,11 @@ snapshots:
'@babel/helper-optimise-call-expression@7.22.5':
dependencies:
- '@babel/types': 7.24.7
+ '@babel/types': 7.25.8
'@babel/helper-optimise-call-expression@7.24.7':
dependencies:
- '@babel/types': 7.24.7
+ '@babel/types': 7.25.8
'@babel/helper-optimise-call-expression@7.25.7':
dependencies:
@@ -23819,8 +24018,6 @@ snapshots:
'@babel/helper-plugin-utils@7.24.7': {}
- '@babel/helper-plugin-utils@7.24.8': {}
-
'@babel/helper-plugin-utils@7.25.7': {}
'@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.24.0)':
@@ -23829,7 +24026,7 @@ snapshots:
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-wrap-function': 7.20.5
- '@babel/types': 7.24.7
+ '@babel/types': 7.25.8
transitivePeerDependencies:
- supports-color
@@ -23839,7 +24036,7 @@ snapshots:
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-wrap-function': 7.20.5
- '@babel/types': 7.24.7
+ '@babel/types': 7.25.8
transitivePeerDependencies:
- supports-color
@@ -23849,7 +24046,7 @@ snapshots:
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-wrap-function': 7.20.5
- '@babel/types': 7.24.7
+ '@babel/types': 7.25.8
transitivePeerDependencies:
- supports-color
@@ -23982,13 +24179,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-simple-access@7.24.7':
- dependencies:
- '@babel/traverse': 7.25.3
- '@babel/types': 7.25.2
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-simple-access@7.25.7':
dependencies:
'@babel/traverse': 7.25.7
@@ -23998,12 +24188,12 @@ snapshots:
'@babel/helper-skip-transparent-expression-wrappers@7.22.5':
dependencies:
- '@babel/types': 7.24.7
+ '@babel/types': 7.25.8
'@babel/helper-skip-transparent-expression-wrappers@7.24.7':
dependencies:
- '@babel/traverse': 7.24.7
- '@babel/types': 7.24.7
+ '@babel/traverse': 7.25.7
+ '@babel/types': 7.25.8
transitivePeerDependencies:
- supports-color
@@ -24016,41 +24206,33 @@ snapshots:
'@babel/helper-split-export-declaration@7.24.7':
dependencies:
- '@babel/types': 7.24.7
-
- '@babel/helper-string-parser@7.24.7': {}
-
- '@babel/helper-string-parser@7.24.8': {}
+ '@babel/types': 7.25.8
'@babel/helper-string-parser@7.25.7': {}
- '@babel/helper-validator-identifier@7.24.7': {}
-
'@babel/helper-validator-identifier@7.25.7': {}
'@babel/helper-validator-option@7.23.5': {}
'@babel/helper-validator-option@7.24.7': {}
- '@babel/helper-validator-option@7.24.8': {}
-
'@babel/helper-validator-option@7.25.7': {}
'@babel/helper-wrap-function@7.20.5':
dependencies:
'@babel/helper-function-name': 7.24.7
- '@babel/template': 7.24.7
- '@babel/traverse': 7.24.7
- '@babel/types': 7.24.7
+ '@babel/template': 7.25.7
+ '@babel/traverse': 7.25.7
+ '@babel/types': 7.25.8
transitivePeerDependencies:
- supports-color
'@babel/helper-wrap-function@7.24.7':
dependencies:
'@babel/helper-function-name': 7.24.7
- '@babel/template': 7.24.7
- '@babel/traverse': 7.24.7
- '@babel/types': 7.24.7
+ '@babel/template': 7.25.7
+ '@babel/traverse': 7.25.7
+ '@babel/types': 7.25.8
transitivePeerDependencies:
- supports-color
@@ -24062,31 +24244,16 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helpers@7.24.0':
- dependencies:
- '@babel/template': 7.24.7
- '@babel/traverse': 7.24.7
- '@babel/types': 7.24.7
- transitivePeerDependencies:
- - supports-color
-
'@babel/helpers@7.24.7':
dependencies:
- '@babel/template': 7.25.0
- '@babel/types': 7.25.2
+ '@babel/template': 7.25.7
+ '@babel/types': 7.25.8
'@babel/helpers@7.25.7':
dependencies:
'@babel/template': 7.25.7
'@babel/types': 7.25.8
- '@babel/highlight@7.24.7':
- dependencies:
- '@babel/helper-validator-identifier': 7.24.7
- chalk: 2.4.2
- js-tokens: 4.0.0
- picocolors: 1.1.1
-
'@babel/highlight@7.25.7':
dependencies:
'@babel/helper-validator-identifier': 7.25.7
@@ -24094,17 +24261,13 @@ snapshots:
js-tokens: 4.0.0
picocolors: 1.1.1
- '@babel/parser@7.24.0':
- dependencies:
- '@babel/types': 7.24.7
-
'@babel/parser@7.24.7':
dependencies:
- '@babel/types': 7.24.7
+ '@babel/types': 7.25.8
'@babel/parser@7.25.3':
dependencies:
- '@babel/types': 7.25.2
+ '@babel/types': 7.25.8
'@babel/parser@7.25.8':
dependencies:
@@ -24114,51 +24277,51 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
'@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/plugin-proposal-optional-chaining': 7.20.7(@babel/core@7.24.0)
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
'@babel/plugin-transform-optional-chaining': 7.24.7(@babel/core@7.24.0)
transitivePeerDependencies:
@@ -24167,7 +24330,7 @@ snapshots:
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
'@babel/plugin-transform-optional-chaining': 7.24.7(@babel/core@7.24.7)
transitivePeerDependencies:
@@ -24176,7 +24339,7 @@ snapshots:
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
'@babel/plugin-transform-optional-chaining': 7.24.7(@babel/core@7.25.8)
transitivePeerDependencies:
@@ -24186,25 +24349,25 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
'@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.24.0)
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.0)
transitivePeerDependencies:
@@ -24214,7 +24377,7 @@ snapshots:
dependencies:
'@babel/core': 7.24.7
'@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.24.7)
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.7)
transitivePeerDependencies:
@@ -24224,7 +24387,7 @@ snapshots:
dependencies:
'@babel/core': 7.25.8
'@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.25.8)
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.8)
transitivePeerDependencies:
@@ -24234,31 +24397,31 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
'@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-proposal-class-static-block@7.20.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.0)
'@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.0)
'@babel/plugin-proposal-export-default-from@7.25.8(@babel/core@7.24.0)':
@@ -24279,118 +24442,118 @@ snapshots:
'@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.0)
'@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.0)
'@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.0)
'@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.7)
'@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.8)
'@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.0)
'@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.7)
'@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.8)
'@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.0)
'@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.7)
'@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.8)
'@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.24.0)':
dependencies:
- '@babel/compat-data': 7.24.7
+ '@babel/compat-data': 7.25.8
'@babel/core': 7.24.0
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.0)
'@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.0)
'@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.24.7)':
dependencies:
- '@babel/compat-data': 7.24.7
+ '@babel/compat-data': 7.25.8
'@babel/core': 7.24.7
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.7)
'@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.7)
'@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.25.8)':
dependencies:
- '@babel/compat-data': 7.24.7
+ '@babel/compat-data': 7.25.8
'@babel/core': 7.25.8
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.8)
'@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.25.8)
'@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.0)
'@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.7)
'@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.8)
'@babel/plugin-proposal-optional-chaining@7.20.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.0)
@@ -24425,14 +24588,14 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-proposal-private-property-in-object@7.20.5(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.0)
'@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.0)':
@@ -24451,22 +24614,22 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-create-regexp-features-plugin': 7.20.5(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.7)':
dependencies:
@@ -24482,47 +24645,47 @@ snapshots:
'@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-export-default-from@7.25.7(@babel/core@7.24.0)':
dependencies:
@@ -24542,17 +24705,17 @@ snapshots:
'@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-flow@7.25.7(@babel/core@7.24.0)':
dependencies:
@@ -24569,11 +24732,6 @@ snapshots:
'@babel/core': 7.25.8
'@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.24.0)':
- dependencies:
- '@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
-
'@babel/plugin-syntax-import-assertions@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
@@ -24592,72 +24750,52 @@ snapshots:
'@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.0)':
- dependencies:
- '@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
-
- '@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.7)':
- dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
-
- '@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.25.8)':
- dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.25.8)':
- dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-jsx@7.25.7(@babel/core@7.24.0)':
dependencies:
@@ -24677,137 +24815,122 @@ snapshots:
'@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.24.0)':
- dependencies:
- '@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.24.7)':
- dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.25.8)':
- dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-typescript@7.25.7(@babel/core@7.24.0)':
dependencies:
@@ -24828,39 +24951,39 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-arrow-functions@7.20.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-arrow-functions@7.25.7(@babel/core@7.24.0)':
dependencies:
@@ -24881,7 +25004,7 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.0)
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.0)
transitivePeerDependencies:
@@ -24891,7 +25014,7 @@ snapshots:
dependencies:
'@babel/core': 7.24.7
'@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.7)
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.7)
transitivePeerDependencies:
@@ -24901,7 +25024,7 @@ snapshots:
dependencies:
'@babel/core': 7.25.8
'@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.25.8)
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.8)
transitivePeerDependencies:
@@ -24910,8 +25033,8 @@ snapshots:
'@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-module-imports': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.24.0)
transitivePeerDependencies:
- supports-color
@@ -24919,8 +25042,8 @@ snapshots:
'@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-module-imports': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.0)
transitivePeerDependencies:
- supports-color
@@ -24928,8 +25051,8 @@ snapshots:
'@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-module-imports': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.7)
transitivePeerDependencies:
- supports-color
@@ -24937,8 +25060,8 @@ snapshots:
'@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-module-imports': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.25.8)
transitivePeerDependencies:
- supports-color
@@ -24973,42 +25096,42 @@ snapshots:
'@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-block-scoping@7.20.14(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-block-scoping@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-block-scoping@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-block-scoping@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-block-scoping@7.25.7(@babel/core@7.24.0)':
dependencies:
@@ -25029,7 +25152,7 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
@@ -25037,7 +25160,7 @@ snapshots:
dependencies:
'@babel/core': 7.24.7
'@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
@@ -25045,7 +25168,7 @@ snapshots:
dependencies:
'@babel/core': 7.25.8
'@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
@@ -25053,7 +25176,7 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.0)
transitivePeerDependencies:
- supports-color
@@ -25062,7 +25185,7 @@ snapshots:
dependencies:
'@babel/core': 7.24.7
'@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.7)
transitivePeerDependencies:
- supports-color
@@ -25071,7 +25194,7 @@ snapshots:
dependencies:
'@babel/core': 7.25.8
'@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.25.8)
transitivePeerDependencies:
- supports-color
@@ -25080,11 +25203,11 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-function-name': 7.24.7
'@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.0)
'@babel/helper-split-export-declaration': 7.24.7
globals: 11.12.0
@@ -25093,10 +25216,10 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-function-name': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.0)
'@babel/helper-split-export-declaration': 7.24.7
globals: 11.12.0
@@ -25107,10 +25230,10 @@ snapshots:
dependencies:
'@babel/core': 7.24.7
'@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-function-name': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.7)
'@babel/helper-split-export-declaration': 7.24.7
globals: 11.12.0
@@ -25121,10 +25244,10 @@ snapshots:
dependencies:
'@babel/core': 7.25.8
'@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-function-name': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-replace-supers': 7.24.7(@babel/core@7.25.8)
'@babel/helper-split-export-declaration': 7.24.7
globals: 11.12.0
@@ -25170,26 +25293,26 @@ snapshots:
'@babel/plugin-transform-computed-properties@7.20.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/template': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/template': 7.25.7
'@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/template': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/template': 7.25.7
'@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/template': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/template': 7.25.7
'@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/template': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/template': 7.25.7
'@babel/plugin-transform-computed-properties@7.25.7(@babel/core@7.24.0)':
dependencies:
@@ -25212,22 +25335,22 @@ snapshots:
'@babel/plugin-transform-destructuring@7.20.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-destructuring@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-destructuring@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-destructuring@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-destructuring@7.25.7(@babel/core@7.24.0)':
dependencies:
@@ -25248,75 +25371,75 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-create-regexp-features-plugin': 7.20.5(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.0)
'@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.7)
'@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.8)
'@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
@@ -25324,7 +25447,7 @@ snapshots:
dependencies:
'@babel/core': 7.24.7
'@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
@@ -25332,26 +25455,26 @@ snapshots:
dependencies:
'@babel/core': 7.25.8
'@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.0)
'@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.7)
'@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.25.8)
'@babel/plugin-transform-flow-strip-types@7.25.7(@babel/core@7.24.0)':
@@ -25375,12 +25498,12 @@ snapshots:
'@babel/plugin-transform-for-of@7.18.8(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-for-of@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
transitivePeerDependencies:
- supports-color
@@ -25388,7 +25511,7 @@ snapshots:
'@babel/plugin-transform-for-of@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
transitivePeerDependencies:
- supports-color
@@ -25396,7 +25519,7 @@ snapshots:
'@babel/plugin-transform-for-of@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
transitivePeerDependencies:
- supports-color
@@ -25404,30 +25527,30 @@ snapshots:
'@babel/plugin-transform-function-name@7.18.9(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
'@babel/helper-function-name': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-function-name@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
'@babel/helper-function-name': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-function-name@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
'@babel/helper-function-name': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-function-name@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
'@babel/helper-function-name': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-function-name@7.25.7(@babel/core@7.24.0)':
dependencies:
@@ -25459,40 +25582,40 @@ snapshots:
'@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.0)
'@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.7)
'@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.8)
'@babel/plugin-transform-literals@7.18.9(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-literals@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-literals@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-literals@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-literals@7.25.7(@babel/core@7.24.0)':
dependencies:
@@ -25512,106 +25635,106 @@ snapshots:
'@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.0)
'@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.7)
'@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.8)
'@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-module-transforms': 7.25.7(@babel/core@7.24.0)
+ '@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-module-transforms': 7.25.7(@babel/core@7.24.0)
+ '@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-module-transforms': 7.25.7(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.8)
+ '@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-modules-commonjs@7.24.1(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-simple-access': 7.24.7
+ '@babel/helper-module-transforms': 7.25.7(@babel/core@7.24.0)
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-simple-access': 7.25.7
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-modules-commonjs@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-simple-access': 7.24.7
+ '@babel/helper-module-transforms': 7.25.7(@babel/core@7.24.0)
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-simple-access': 7.25.7
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-modules-commonjs@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-simple-access': 7.24.7
+ '@babel/helper-module-transforms': 7.25.7(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-simple-access': 7.25.7
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-modules-commonjs@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-simple-access': 7.24.7
+ '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.8)
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-simple-access': 7.25.7
transitivePeerDependencies:
- supports-color
@@ -25646,9 +25769,9 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-hoist-variables': 7.24.7
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-validator-identifier': 7.24.7
+ '@babel/helper-module-transforms': 7.25.7(@babel/core@7.24.0)
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-validator-identifier': 7.25.7
transitivePeerDependencies:
- supports-color
@@ -25656,9 +25779,9 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-hoist-variables': 7.24.7
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-validator-identifier': 7.24.7
+ '@babel/helper-module-transforms': 7.25.7(@babel/core@7.24.0)
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-validator-identifier': 7.25.7
transitivePeerDependencies:
- supports-color
@@ -25666,9 +25789,9 @@ snapshots:
dependencies:
'@babel/core': 7.24.7
'@babel/helper-hoist-variables': 7.24.7
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-validator-identifier': 7.24.7
+ '@babel/helper-module-transforms': 7.25.7(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-validator-identifier': 7.25.7
transitivePeerDependencies:
- supports-color
@@ -25676,41 +25799,41 @@ snapshots:
dependencies:
'@babel/core': 7.25.8
'@babel/helper-hoist-variables': 7.24.7
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-validator-identifier': 7.24.7
+ '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.8)
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-validator-identifier': 7.25.7
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-module-transforms': 7.25.7(@babel/core@7.24.0)
+ '@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-module-transforms': 7.25.7(@babel/core@7.24.0)
+ '@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-module-transforms': 7.25.7(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.8)
+ '@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
@@ -25718,25 +25841,25 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-create-regexp-features-plugin': 7.20.5(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-named-capturing-groups-regex@7.25.7(@babel/core@7.24.0)':
dependencies:
@@ -25759,93 +25882,93 @@ snapshots:
'@babel/plugin-transform-new-target@7.18.6(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-new-target@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-new-target@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-new-target@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.0)
'@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.7)
'@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.8)
'@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.0)
'@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.7)
'@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.8)
'@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.0)
'@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.0)
'@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.7)
'@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.7)
'@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.8)
'@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.25.8)
'@babel/plugin-transform-object-super@7.18.6(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.0)
'@babel/plugin-transform-object-super@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.0)
transitivePeerDependencies:
- supports-color
@@ -25853,7 +25976,7 @@ snapshots:
'@babel/plugin-transform-object-super@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.7)
transitivePeerDependencies:
- supports-color
@@ -25861,7 +25984,7 @@ snapshots:
'@babel/plugin-transform-object-super@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-replace-supers': 7.24.7(@babel/core@7.25.8)
transitivePeerDependencies:
- supports-color
@@ -25869,25 +25992,25 @@ snapshots:
'@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.0)
'@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.7)
'@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.8)
'@babel/plugin-transform-optional-chaining@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.0)
transitivePeerDependencies:
@@ -25896,7 +26019,7 @@ snapshots:
'@babel/plugin-transform-optional-chaining@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.7)
transitivePeerDependencies:
@@ -25905,7 +26028,7 @@ snapshots:
'@babel/plugin-transform-optional-chaining@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.8)
transitivePeerDependencies:
@@ -25914,32 +26037,32 @@ snapshots:
'@babel/plugin-transform-parameters@7.24.1(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-parameters@7.24.1(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-parameters@7.24.1(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-parameters@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-parameters@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-parameters@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-parameters@7.25.7(@babel/core@7.24.0)':
dependencies:
@@ -25960,7 +26083,7 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
@@ -25968,7 +26091,7 @@ snapshots:
dependencies:
'@babel/core': 7.24.7
'@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
@@ -25976,7 +26099,7 @@ snapshots:
dependencies:
'@babel/core': 7.25.8
'@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
@@ -26009,7 +26132,7 @@ snapshots:
'@babel/core': 7.24.0
'@babel/helper-annotate-as-pure': 7.24.7
'@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.0)
transitivePeerDependencies:
- supports-color
@@ -26019,7 +26142,7 @@ snapshots:
'@babel/core': 7.24.7
'@babel/helper-annotate-as-pure': 7.24.7
'@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.7)
transitivePeerDependencies:
- supports-color
@@ -26029,7 +26152,7 @@ snapshots:
'@babel/core': 7.25.8
'@babel/helper-annotate-as-pure': 7.24.7
'@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.8)
transitivePeerDependencies:
- supports-color
@@ -26064,27 +26187,27 @@ snapshots:
'@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-react-constant-elements@7.20.2(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-react-constant-elements@7.24.7(@babel/core@7.24.7)':
dependencies:
@@ -26094,17 +26217,17 @@ snapshots:
'@babel/plugin-transform-react-display-name@7.24.1(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-react-display-name@7.24.1(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-react-display-name@7.24.1(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-react-display-name@7.25.7(@babel/core@7.24.0)':
dependencies:
@@ -26125,16 +26248,22 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.0)
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.7)
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
'@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.25.8)
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-react-jsx-self@7.25.7(@babel/core@7.24.0)':
dependencies:
@@ -26170,28 +26299,34 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-module-imports': 7.22.15
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.0)
- '@babel/types': 7.24.0
+ '@babel/helper-module-imports': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.24.0)
+ '@babel/types': 7.25.8
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-module-imports': 7.22.15
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.7)
- '@babel/types': 7.24.0
+ '@babel/helper-module-imports': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.24.7)
+ '@babel/types': 7.25.8
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-module-imports': 7.22.15
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.25.8)
- '@babel/types': 7.24.0
+ '@babel/helper-module-imports': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.25.8)
+ '@babel/types': 7.25.8
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-react-jsx@7.25.7(@babel/core@7.24.0)':
dependencies:
@@ -26230,69 +26365,69 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-react-pure-annotations@7.24.1(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-react-pure-annotations@7.24.1(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-regenerator@7.20.5(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
regenerator-transform: 0.15.1
'@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
regenerator-transform: 0.15.2
'@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
regenerator-transform: 0.15.2
'@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
regenerator-transform: 0.15.2
'@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-runtime@7.19.6(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-module-imports': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.25.8)
babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.25.8)
babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.25.8)
@@ -26339,22 +26474,22 @@ snapshots:
'@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-shorthand-properties@7.25.7(@babel/core@7.24.0)':
dependencies:
@@ -26374,13 +26509,13 @@ snapshots:
'@babel/plugin-transform-spread@7.20.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/plugin-transform-spread@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
transitivePeerDependencies:
- supports-color
@@ -26388,7 +26523,7 @@ snapshots:
'@babel/plugin-transform-spread@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
transitivePeerDependencies:
- supports-color
@@ -26396,7 +26531,7 @@ snapshots:
'@babel/plugin-transform-spread@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
transitivePeerDependencies:
- supports-color
@@ -26428,22 +26563,22 @@ snapshots:
'@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-sticky-regex@7.25.7(@babel/core@7.24.0)':
dependencies:
@@ -26463,58 +26598,58 @@ snapshots:
'@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-typeof-symbol@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-typeof-symbol@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-typeof-symbol@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-typescript@7.24.4(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.24.0)
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-typescript': 7.25.7(@babel/core@7.24.0)
'@babel/plugin-transform-typescript@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-annotate-as-pure': 7.24.7
'@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-typescript': 7.25.7(@babel/core@7.24.7)
transitivePeerDependencies:
- supports-color
@@ -26554,64 +26689,64 @@ snapshots:
'@babel/plugin-transform-unicode-escapes@7.18.10(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-create-regexp-features-plugin': 7.20.5(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-unicode-regex@7.25.7(@babel/core@7.24.0)':
dependencies:
@@ -26635,27 +26770,27 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-unicode-sets-regex@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-unicode-sets-regex@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/preset-env@7.20.2(@babel/core@7.24.0)':
dependencies:
- '@babel/compat-data': 7.23.5
+ '@babel/compat-data': 7.25.8
'@babel/core': 7.24.0
- '@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-validator-option': 7.23.5
+ '@babel/helper-compilation-targets': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-validator-option': 7.25.7
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.24.0)
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7(@babel/core@7.24.0)
'@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.24.0)
@@ -26678,7 +26813,7 @@ snapshots:
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.0)
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.0)
'@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.0)
- '@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.24.0)
+ '@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.24.0)
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.0)
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.0)
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.0)
@@ -26721,11 +26856,11 @@ snapshots:
'@babel/plugin-transform-unicode-escapes': 7.18.10(@babel/core@7.24.0)
'@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.24.0)
'@babel/preset-modules': 0.1.5(@babel/core@7.24.0)
- '@babel/types': 7.24.0
+ '@babel/types': 7.25.8
babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.24.0)
babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.24.0)
babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.24.0)
- core-js-compat: 3.27.2
+ core-js-compat: 3.38.0
semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -27001,31 +27136,31 @@ snapshots:
'@babel/preset-modules@0.1.5(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.24.0)
'@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.24.0)
- '@babel/types': 7.24.7
+ '@babel/types': 7.25.8
esutils: 2.0.3
'@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/types': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/types': 7.25.8
esutils: 2.0.3
'@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/types': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/types': 7.25.8
esutils: 2.0.3
'@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/types': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/types': 7.25.8
esutils: 2.0.3
'@babel/preset-react@7.24.1(@babel/core@7.24.0)':
@@ -27037,6 +27172,8 @@ snapshots:
'@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.0)
'@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.24.0)
'@babel/plugin-transform-react-pure-annotations': 7.24.1(@babel/core@7.24.0)
+ transitivePeerDependencies:
+ - supports-color
'@babel/preset-react@7.24.1(@babel/core@7.24.7)':
dependencies:
@@ -27047,6 +27184,8 @@ snapshots:
'@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.7)
'@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.24.7)
'@babel/plugin-transform-react-pure-annotations': 7.24.1(@babel/core@7.24.7)
+ transitivePeerDependencies:
+ - supports-color
'@babel/preset-react@7.24.1(@babel/core@7.25.8)':
dependencies:
@@ -27057,13 +27196,15 @@ snapshots:
'@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.25.8)
'@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.25.8)
'@babel/plugin-transform-react-pure-annotations': 7.24.1(@babel/core@7.25.8)
+ transitivePeerDependencies:
+ - supports-color
'@babel/preset-typescript@7.24.1(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-validator-option': 7.23.5
- '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.0)
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-validator-option': 7.25.7
+ '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.24.0)
'@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.0)
'@babel/plugin-transform-typescript': 7.24.4(@babel/core@7.24.0)
transitivePeerDependencies:
@@ -27114,70 +27255,28 @@ snapshots:
dependencies:
regenerator-runtime: 0.14.1
- '@babel/template@7.24.0':
- dependencies:
- '@babel/code-frame': 7.25.7
- '@babel/parser': 7.24.7
- '@babel/types': 7.24.7
-
- '@babel/template@7.24.7':
- dependencies:
- '@babel/code-frame': 7.25.7
- '@babel/parser': 7.24.7
- '@babel/types': 7.24.7
-
'@babel/template@7.25.0':
- dependencies:
- '@babel/code-frame': 7.24.7
- '@babel/parser': 7.25.3
- '@babel/types': 7.25.2
-
- '@babel/template@7.25.7':
dependencies:
'@babel/code-frame': 7.25.7
'@babel/parser': 7.25.8
'@babel/types': 7.25.8
- '@babel/traverse@7.24.0':
+ '@babel/template@7.25.7':
dependencies:
'@babel/code-frame': 7.25.7
- '@babel/generator': 7.24.7
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-function-name': 7.24.7
- '@babel/helper-hoist-variables': 7.24.7
- '@babel/helper-split-export-declaration': 7.24.7
- '@babel/parser': 7.24.7
- '@babel/types': 7.24.7
- debug: 4.3.7(supports-color@8.1.1)
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
-
- '@babel/traverse@7.24.7':
- dependencies:
- '@babel/code-frame': 7.24.7
- '@babel/generator': 7.24.7
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-function-name': 7.24.7
- '@babel/helper-hoist-variables': 7.24.7
- '@babel/helper-split-export-declaration': 7.24.7
- '@babel/parser': 7.24.7
- '@babel/types': 7.24.7
- debug: 4.3.7(supports-color@8.1.1)
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
+ '@babel/parser': 7.25.8
+ '@babel/types': 7.25.8
'@babel/traverse@7.24.7(supports-color@5.5.0)':
dependencies:
- '@babel/code-frame': 7.24.7
- '@babel/generator': 7.24.7
+ '@babel/code-frame': 7.25.7
+ '@babel/generator': 7.25.7
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-function-name': 7.24.7
'@babel/helper-hoist-variables': 7.24.7
'@babel/helper-split-export-declaration': 7.24.7
- '@babel/parser': 7.24.7
- '@babel/types': 7.24.7
+ '@babel/parser': 7.25.8
+ '@babel/types': 7.25.8
debug: 4.3.7(supports-color@5.5.0)
globals: 11.12.0
transitivePeerDependencies:
@@ -27185,11 +27284,11 @@ snapshots:
'@babel/traverse@7.25.3':
dependencies:
- '@babel/code-frame': 7.24.7
- '@babel/generator': 7.25.0
- '@babel/parser': 7.25.3
- '@babel/template': 7.25.0
- '@babel/types': 7.25.2
+ '@babel/code-frame': 7.25.7
+ '@babel/generator': 7.25.7
+ '@babel/parser': 7.25.8
+ '@babel/template': 7.25.7
+ '@babel/types': 7.25.8
debug: 4.3.7(supports-color@8.1.1)
globals: 11.12.0
transitivePeerDependencies:
@@ -27207,22 +27306,22 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/types@7.24.0':
+ '@babel/traverse@7.25.7(supports-color@5.5.0)':
dependencies:
- '@babel/helper-string-parser': 7.24.7
- '@babel/helper-validator-identifier': 7.24.7
- to-fast-properties: 2.0.0
-
- '@babel/types@7.24.7':
- dependencies:
- '@babel/helper-string-parser': 7.24.7
- '@babel/helper-validator-identifier': 7.24.7
- to-fast-properties: 2.0.0
+ '@babel/code-frame': 7.25.7
+ '@babel/generator': 7.25.7
+ '@babel/parser': 7.25.8
+ '@babel/template': 7.25.7
+ '@babel/types': 7.25.8
+ debug: 4.3.7(supports-color@5.5.0)
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
'@babel/types@7.25.2':
dependencies:
- '@babel/helper-string-parser': 7.24.8
- '@babel/helper-validator-identifier': 7.24.7
+ '@babel/helper-string-parser': 7.25.7
+ '@babel/helper-validator-identifier': 7.25.7
to-fast-properties: 2.0.0
'@babel/types@7.25.8':
@@ -27531,7 +27630,7 @@ snapshots:
'@confio/ics23@0.6.8':
dependencies:
- '@noble/hashes': 1.5.0
+ '@noble/hashes': 1.6.1
protobufjs: 6.11.4
'@coral-xyz/anchor-errors@0.30.1': {}
@@ -27764,7 +27863,7 @@ snapshots:
'@cosmjs/encoding': 0.30.1
'@cosmjs/math': 0.30.1
'@cosmjs/utils': 0.30.1
- '@noble/hashes': 1.5.0
+ '@noble/hashes': 1.6.1
bn.js: 5.2.1
elliptic: 6.5.6
libsodium-wrappers: 0.7.10
@@ -28121,34 +28220,34 @@ snapshots:
transitivePeerDependencies:
- debug
- '@cprussin/eslint-config@3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2))(@typescript-eslint/parser@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))(typescript@5.5.2)':
+ '@cprussin/eslint-config@3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(@typescript-eslint/parser@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))(typescript@5.6.3)':
dependencies:
'@babel/core': 7.25.8
- '@babel/eslint-parser': 7.24.7(@babel/core@7.25.8)(eslint@9.12.0(jiti@1.21.0))
+ '@babel/eslint-parser': 7.24.7(@babel/core@7.25.8)(eslint@9.13.0(jiti@1.21.0))
'@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.25.8)
'@eslint/compat': 1.1.0
'@eslint/eslintrc': 3.1.0
- '@eslint/js': 9.12.0
+ '@eslint/js': 9.13.0
'@next/eslint-plugin-next': 14.2.3
- eslint: 9.12.0(jiti@1.21.0)
- eslint-config-prettier: 9.1.0(eslint@9.12.0(jiti@1.21.0))
- eslint-config-turbo: 2.2.3(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-jest: 28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(typescript@5.5.2)
- eslint-plugin-jest-dom: 5.4.0(@testing-library/dom@10.4.0)(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-jsonc: 2.16.0(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-jsx-a11y: 6.8.0(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-n: 17.9.0(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-react: 7.34.2(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-react-hooks: 4.6.2(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-storybook: 0.8.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
- eslint-plugin-tailwindcss: 3.17.3(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))
- eslint-plugin-testing-library: 6.2.2(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
+ eslint: 9.13.0(jiti@1.21.0)
+ eslint-config-prettier: 9.1.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-config-turbo: 2.2.3(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-jest: 28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))(typescript@5.6.3)
+ eslint-plugin-jest-dom: 5.4.0(@testing-library/dom@10.4.0)(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-jsonc: 2.16.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-jsx-a11y: 6.8.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-n: 17.9.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-react: 7.34.2(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-react-hooks: 4.6.2(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-storybook: 0.8.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
+ eslint-plugin-tailwindcss: 3.17.3(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))
+ eslint-plugin-testing-library: 6.2.2(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
eslint-plugin-tsdoc: 0.3.0
- eslint-plugin-unicorn: 53.0.0(eslint@9.12.0(jiti@1.21.0))
+ eslint-plugin-unicorn: 53.0.0(eslint@9.13.0(jiti@1.21.0))
globals: 15.6.0
- tailwindcss: 3.4.14(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))
- typescript-eslint: 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
+ tailwindcss: 3.4.14(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))
+ typescript-eslint: 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
transitivePeerDependencies:
- '@testing-library/dom'
- '@typescript-eslint/eslint-plugin'
@@ -28164,31 +28263,31 @@ snapshots:
'@cprussin/eslint-config@3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(jest@29.7.0(@types/node@18.19.57)(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4))(typescript@5.5.4)':
dependencies:
'@babel/core': 7.25.8
- '@babel/eslint-parser': 7.24.7(@babel/core@7.25.8)(eslint@9.12.0(jiti@1.21.0))
+ '@babel/eslint-parser': 7.24.7(@babel/core@7.25.8)(eslint@9.13.0(jiti@1.21.0))
'@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.25.8)
'@eslint/compat': 1.1.0
'@eslint/eslintrc': 3.1.0
- '@eslint/js': 9.12.0
+ '@eslint/js': 9.13.0
'@next/eslint-plugin-next': 14.2.3
- eslint: 9.12.0(jiti@1.21.0)
- eslint-config-prettier: 9.1.0(eslint@9.12.0(jiti@1.21.0))
- eslint-config-turbo: 2.2.3(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-jest: 28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@18.19.57)(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4)))(typescript@5.5.4)
- eslint-plugin-jest-dom: 5.4.0(@testing-library/dom@10.4.0)(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-jsonc: 2.16.0(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-jsx-a11y: 6.8.0(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-n: 17.9.0(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-react: 7.34.2(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-react-hooks: 4.6.2(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-storybook: 0.8.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
+ eslint: 9.13.0(jiti@1.21.0)
+ eslint-config-prettier: 9.1.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-config-turbo: 2.2.3(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-jest: 28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(jest@29.7.0(@types/node@18.19.57)(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4)))(typescript@5.5.4)
+ eslint-plugin-jest-dom: 5.4.0(@testing-library/dom@10.4.0)(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-jsonc: 2.16.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-jsx-a11y: 6.8.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-n: 17.9.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-react: 7.34.2(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-react-hooks: 4.6.2(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-storybook: 0.8.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
eslint-plugin-tailwindcss: 3.17.3(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4)))
- eslint-plugin-testing-library: 6.2.2(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
+ eslint-plugin-testing-library: 6.2.2(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
eslint-plugin-tsdoc: 0.3.0
- eslint-plugin-unicorn: 53.0.0(eslint@9.12.0(jiti@1.21.0))
+ eslint-plugin-unicorn: 53.0.0(eslint@9.13.0(jiti@1.21.0))
globals: 15.6.0
tailwindcss: 3.4.14(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4))
- typescript-eslint: 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
+ typescript-eslint: 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
transitivePeerDependencies:
- '@testing-library/dom'
- '@typescript-eslint/eslint-plugin'
@@ -28204,31 +28303,71 @@ snapshots:
'@cprussin/eslint-config@3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))(typescript@5.6.3)':
dependencies:
'@babel/core': 7.25.8
- '@babel/eslint-parser': 7.24.7(@babel/core@7.25.8)(eslint@9.12.0(jiti@1.21.0))
+ '@babel/eslint-parser': 7.24.7(@babel/core@7.25.8)(eslint@9.13.0(jiti@1.21.0))
'@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.25.8)
'@eslint/compat': 1.1.0
'@eslint/eslintrc': 3.1.0
- '@eslint/js': 9.12.0
+ '@eslint/js': 9.13.0
'@next/eslint-plugin-next': 14.2.3
- eslint: 9.12.0(jiti@1.21.0)
- eslint-config-prettier: 9.1.0(eslint@9.12.0(jiti@1.21.0))
- eslint-config-turbo: 2.2.3(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-jest: 28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))(typescript@5.6.3)
- eslint-plugin-jest-dom: 5.4.0(@testing-library/dom@10.4.0)(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-jsonc: 2.16.0(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-jsx-a11y: 6.8.0(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-n: 17.9.0(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-react: 7.34.2(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-react-hooks: 4.6.2(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-storybook: 0.8.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
+ eslint: 9.13.0(jiti@1.21.0)
+ eslint-config-prettier: 9.1.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-config-turbo: 2.2.3(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-jest: 28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))(typescript@5.6.3)
+ eslint-plugin-jest-dom: 5.4.0(@testing-library/dom@10.4.0)(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-jsonc: 2.16.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-jsx-a11y: 6.8.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-n: 17.9.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-react: 7.34.2(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-react-hooks: 4.6.2(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-storybook: 0.8.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
eslint-plugin-tailwindcss: 3.17.3(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))
- eslint-plugin-testing-library: 6.2.2(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
+ eslint-plugin-testing-library: 6.2.2(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
eslint-plugin-tsdoc: 0.3.0
- eslint-plugin-unicorn: 53.0.0(eslint@9.12.0(jiti@1.21.0))
+ eslint-plugin-unicorn: 53.0.0(eslint@9.13.0(jiti@1.21.0))
globals: 15.6.0
tailwindcss: 3.4.14(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))
- typescript-eslint: 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
+ typescript-eslint: 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
+ transitivePeerDependencies:
+ - '@testing-library/dom'
+ - '@typescript-eslint/eslint-plugin'
+ - '@typescript-eslint/parser'
+ - eslint-import-resolver-typescript
+ - eslint-import-resolver-webpack
+ - jest
+ - jiti
+ - supports-color
+ - ts-node
+ - typescript
+
+ '@cprussin/eslint-config@3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2))(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))(typescript@5.5.2)':
+ dependencies:
+ '@babel/core': 7.25.8
+ '@babel/eslint-parser': 7.24.7(@babel/core@7.25.8)(eslint@9.13.0(jiti@1.21.0))
+ '@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.25.8)
+ '@eslint/compat': 1.1.0
+ '@eslint/eslintrc': 3.1.0
+ '@eslint/js': 9.13.0
+ '@next/eslint-plugin-next': 14.2.3
+ eslint: 9.13.0(jiti@1.21.0)
+ eslint-config-prettier: 9.1.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-config-turbo: 2.2.3(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-jest: 28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2))(eslint@9.13.0(jiti@1.21.0))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(typescript@5.5.2)
+ eslint-plugin-jest-dom: 5.4.0(@testing-library/dom@10.4.0)(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-jsonc: 2.16.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-jsx-a11y: 6.8.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-n: 17.9.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-react: 7.34.2(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-react-hooks: 4.6.2(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-storybook: 0.8.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2)
+ eslint-plugin-tailwindcss: 3.17.3(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))
+ eslint-plugin-testing-library: 6.2.2(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2)
+ eslint-plugin-tsdoc: 0.3.0
+ eslint-plugin-unicorn: 53.0.0(eslint@9.13.0(jiti@1.21.0))
+ globals: 15.6.0
+ tailwindcss: 3.4.14(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))
+ typescript-eslint: 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2)
transitivePeerDependencies:
- '@testing-library/dom'
- '@typescript-eslint/eslint-plugin'
@@ -28244,31 +28383,31 @@ snapshots:
'@cprussin/eslint-config@3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(@typescript-eslint/parser@8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))(typescript@5.5.4)':
dependencies:
'@babel/core': 7.25.8
- '@babel/eslint-parser': 7.24.7(@babel/core@7.25.8)(eslint@9.12.0(jiti@1.21.0))
+ '@babel/eslint-parser': 7.24.7(@babel/core@7.25.8)(eslint@9.13.0(jiti@1.21.0))
'@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.25.8)
'@eslint/compat': 1.1.0
'@eslint/eslintrc': 3.1.0
- '@eslint/js': 9.12.0
+ '@eslint/js': 9.13.0
'@next/eslint-plugin-next': 14.2.3
- eslint: 9.12.0(jiti@1.21.0)
- eslint-config-prettier: 9.1.0(eslint@9.12.0(jiti@1.21.0))
- eslint-config-turbo: 2.2.3(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-jest: 28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))(typescript@5.5.4)
- eslint-plugin-jest-dom: 5.4.0(@testing-library/dom@10.4.0)(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-jsonc: 2.16.0(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-jsx-a11y: 6.8.0(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-n: 17.9.0(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-react: 7.34.2(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-react-hooks: 4.6.2(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-storybook: 0.8.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
+ eslint: 9.13.0(jiti@1.21.0)
+ eslint-config-prettier: 9.1.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-config-turbo: 2.2.3(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-jest: 28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))(typescript@5.5.4)
+ eslint-plugin-jest-dom: 5.4.0(@testing-library/dom@10.4.0)(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-jsonc: 2.16.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-jsx-a11y: 6.8.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-n: 17.9.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-react: 7.34.2(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-react-hooks: 4.6.2(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-storybook: 0.8.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
eslint-plugin-tailwindcss: 3.17.3(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))
- eslint-plugin-testing-library: 6.2.2(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
+ eslint-plugin-testing-library: 6.2.2(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
eslint-plugin-tsdoc: 0.3.0
- eslint-plugin-unicorn: 53.0.0(eslint@9.12.0(jiti@1.21.0))
+ eslint-plugin-unicorn: 53.0.0(eslint@9.13.0(jiti@1.21.0))
globals: 15.6.0
tailwindcss: 3.4.14(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))
- typescript-eslint: 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
+ typescript-eslint: 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
transitivePeerDependencies:
- '@testing-library/dom'
- '@typescript-eslint/eslint-plugin'
@@ -28284,31 +28423,31 @@ snapshots:
'@cprussin/eslint-config@3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))(typescript@5.5.4)':
dependencies:
'@babel/core': 7.25.8
- '@babel/eslint-parser': 7.24.7(@babel/core@7.25.8)(eslint@9.12.0(jiti@1.21.0))
+ '@babel/eslint-parser': 7.24.7(@babel/core@7.25.8)(eslint@9.13.0(jiti@1.21.0))
'@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.25.8)
'@eslint/compat': 1.1.0
'@eslint/eslintrc': 3.1.0
- '@eslint/js': 9.12.0
+ '@eslint/js': 9.13.0
'@next/eslint-plugin-next': 14.2.3
- eslint: 9.12.0(jiti@1.21.0)
- eslint-config-prettier: 9.1.0(eslint@9.12.0(jiti@1.21.0))
- eslint-config-turbo: 2.2.3(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-jest: 28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))(typescript@5.5.4)
- eslint-plugin-jest-dom: 5.4.0(@testing-library/dom@10.4.0)(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-jsonc: 2.16.0(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-jsx-a11y: 6.8.0(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-n: 17.9.0(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-react: 7.34.2(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-react-hooks: 4.6.2(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-storybook: 0.8.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
+ eslint: 9.13.0(jiti@1.21.0)
+ eslint-config-prettier: 9.1.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-config-turbo: 2.2.3(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-jest: 28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))(typescript@5.5.4)
+ eslint-plugin-jest-dom: 5.4.0(@testing-library/dom@10.4.0)(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-jsonc: 2.16.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-jsx-a11y: 6.8.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-n: 17.9.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-react: 7.34.2(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-react-hooks: 4.6.2(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-storybook: 0.8.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
eslint-plugin-tailwindcss: 3.17.3(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))
- eslint-plugin-testing-library: 6.2.2(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
+ eslint-plugin-testing-library: 6.2.2(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
eslint-plugin-tsdoc: 0.3.0
- eslint-plugin-unicorn: 53.0.0(eslint@9.12.0(jiti@1.21.0))
+ eslint-plugin-unicorn: 53.0.0(eslint@9.13.0(jiti@1.21.0))
globals: 15.6.0
tailwindcss: 3.4.14(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))
- typescript-eslint: 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
+ typescript-eslint: 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
transitivePeerDependencies:
- '@testing-library/dom'
- '@typescript-eslint/eslint-plugin'
@@ -28781,11 +28920,6 @@ snapshots:
eslint: 8.57.0
eslint-visitor-keys: 3.4.3
- '@eslint-community/eslint-utils@4.4.0(eslint@9.12.0(jiti@1.21.0))':
- dependencies:
- eslint: 9.12.0(jiti@1.21.0)
- eslint-visitor-keys: 3.4.3
-
'@eslint-community/eslint-utils@4.4.0(eslint@9.13.0(jiti@1.21.0))':
dependencies:
eslint: 9.13.0(jiti@1.21.0)
@@ -28831,8 +28965,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@eslint/core@0.6.0': {}
-
'@eslint/core@0.7.0': {}
'@eslint/eslintrc@2.1.4':
@@ -28867,8 +28999,6 @@ snapshots:
'@eslint/js@8.57.0': {}
- '@eslint/js@9.12.0': {}
-
'@eslint/js@9.13.0': {}
'@eslint/js@9.5.0': {}
@@ -29425,7 +29555,7 @@ snapshots:
'@fuel-ts/utils': 0.94.0
'@fuel-ts/versions': 0.94.0
'@fuels/vm-asm': 0.56.0
- '@noble/curves': 1.6.0
+ '@noble/curves': 1.7.0
events: 3.3.0
graphql: 16.9.0
graphql-request: 5.0.0(encoding@0.1.13)(graphql@16.9.0)
@@ -29450,7 +29580,7 @@ snapshots:
'@fuel-ts/utils': 0.94.5
'@fuel-ts/versions': 0.94.5
'@fuels/vm-asm': 0.56.0
- '@noble/curves': 1.6.0
+ '@noble/curves': 1.7.0
events: 3.3.0
graphql: 16.9.0
graphql-request: 5.0.0(encoding@0.1.13)(graphql@16.9.0)
@@ -29475,7 +29605,7 @@ snapshots:
'@fuel-ts/utils': 0.96.1
'@fuel-ts/versions': 0.96.1
'@fuels/vm-asm': 0.58.0
- '@noble/curves': 1.6.0
+ '@noble/curves': 1.7.0
events: 3.3.0
graphql: 16.9.0
graphql-request: 5.0.0(encoding@0.1.13)(graphql@16.9.0)
@@ -29490,7 +29620,7 @@ snapshots:
'@fuel-ts/errors': 0.94.0
'@fuel-ts/interfaces': 0.94.0
'@fuel-ts/utils': 0.94.2
- '@noble/hashes': 1.5.0
+ '@noble/hashes': 1.6.1
bech32: 2.0.0
'@fuel-ts/address@0.94.5':
@@ -29499,7 +29629,7 @@ snapshots:
'@fuel-ts/errors': 0.94.5
'@fuel-ts/interfaces': 0.94.5
'@fuel-ts/utils': 0.94.5
- '@noble/hashes': 1.5.0
+ '@noble/hashes': 1.6.1
bech32: 2.0.0
'@fuel-ts/address@0.96.1':
@@ -29508,7 +29638,7 @@ snapshots:
'@fuel-ts/errors': 0.96.1
'@fuel-ts/interfaces': 0.96.1
'@fuel-ts/utils': 0.96.1
- '@noble/hashes': 1.5.0
+ '@noble/hashes': 1.6.1
bech32: 2.0.0
'@fuel-ts/contract@0.94.0(encoding@0.1.13)':
@@ -29576,7 +29706,7 @@ snapshots:
'@fuel-ts/interfaces': 0.94.0
'@fuel-ts/math': 0.94.0
'@fuel-ts/utils': 0.94.2
- '@noble/hashes': 1.5.0
+ '@noble/hashes': 1.6.1
'@fuel-ts/crypto@0.94.2':
dependencies:
@@ -29584,7 +29714,7 @@ snapshots:
'@fuel-ts/interfaces': 0.94.2
'@fuel-ts/math': 0.94.2
'@fuel-ts/utils': 0.94.2
- '@noble/hashes': 1.5.0
+ '@noble/hashes': 1.6.1
'@fuel-ts/crypto@0.94.5':
dependencies:
@@ -29592,7 +29722,7 @@ snapshots:
'@fuel-ts/interfaces': 0.94.5
'@fuel-ts/math': 0.94.5
'@fuel-ts/utils': 0.94.5
- '@noble/hashes': 1.5.0
+ '@noble/hashes': 1.6.1
'@fuel-ts/crypto@0.96.1':
dependencies:
@@ -29600,7 +29730,7 @@ snapshots:
'@fuel-ts/interfaces': 0.96.1
'@fuel-ts/math': 0.96.1
'@fuel-ts/utils': 0.96.1
- '@noble/hashes': 1.5.0
+ '@noble/hashes': 1.6.1
'@fuel-ts/errors@0.94.0':
dependencies:
@@ -29623,28 +29753,28 @@ snapshots:
'@fuel-ts/crypto': 0.94.0
'@fuel-ts/interfaces': 0.94.2
'@fuel-ts/utils': 0.94.0
- '@noble/hashes': 1.5.0
+ '@noble/hashes': 1.6.1
'@fuel-ts/hasher@0.94.2':
dependencies:
'@fuel-ts/crypto': 0.94.2
'@fuel-ts/interfaces': 0.94.2
'@fuel-ts/utils': 0.94.2
- '@noble/hashes': 1.5.0
+ '@noble/hashes': 1.6.1
'@fuel-ts/hasher@0.94.5':
dependencies:
'@fuel-ts/crypto': 0.94.5
'@fuel-ts/interfaces': 0.94.5
'@fuel-ts/utils': 0.94.5
- '@noble/hashes': 1.5.0
+ '@noble/hashes': 1.6.1
'@fuel-ts/hasher@0.96.1':
dependencies:
'@fuel-ts/crypto': 0.96.1
'@fuel-ts/interfaces': 0.96.1
'@fuel-ts/utils': 0.96.1
- '@noble/hashes': 1.5.0
+ '@noble/hashes': 1.6.1
'@fuel-ts/interfaces@0.94.0': {}
@@ -30722,7 +30852,7 @@ snapshots:
'@internationalized/date@3.6.0':
dependencies:
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
'@internationalized/message@3.1.5':
dependencies:
@@ -30748,7 +30878,7 @@ snapshots:
'@internationalized/string@3.2.5':
dependencies:
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
'@ipld/dag-pb@2.1.18':
dependencies:
@@ -30798,7 +30928,7 @@ snapshots:
chalk: 4.1.2
ci-info: 3.9.0
exit: 0.1.2
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-changed-files: 29.7.0
jest-config: 29.7.0(@types/node@20.14.15)(ts-node@10.9.1(@types/node@22.8.2)(typescript@5.4.5))
jest-haste-map: 29.7.0
@@ -30833,7 +30963,7 @@ snapshots:
chalk: 4.1.2
ci-info: 3.9.0
exit: 0.1.2
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-changed-files: 29.7.0
jest-config: 29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@16.18.101)(typescript@4.9.5))
jest-haste-map: 29.7.0
@@ -30868,7 +30998,7 @@ snapshots:
chalk: 4.1.2
ci-info: 3.9.0
exit: 0.1.2
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-changed-files: 29.7.0
jest-config: 29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@18.11.18)(typescript@4.9.5))
jest-haste-map: 29.7.0
@@ -30903,7 +31033,7 @@ snapshots:
chalk: 4.1.2
ci-info: 3.9.0
exit: 0.1.2
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-changed-files: 29.7.0
jest-config: 29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@18.11.18)(typescript@5.4.5))
jest-haste-map: 29.7.0
@@ -30938,7 +31068,7 @@ snapshots:
chalk: 4.1.2
ci-info: 3.9.0
exit: 0.1.2
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-changed-files: 29.7.0
jest-config: 29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@18.19.34)(typescript@4.9.5))
jest-haste-map: 29.7.0
@@ -30973,7 +31103,7 @@ snapshots:
chalk: 4.1.2
ci-info: 3.9.0
exit: 0.1.2
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-changed-files: 29.7.0
jest-config: 29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@18.19.44)(typescript@4.9.5))
jest-haste-map: 29.7.0
@@ -31008,7 +31138,7 @@ snapshots:
chalk: 4.1.2
ci-info: 3.9.0
exit: 0.1.2
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-changed-files: 29.7.0
jest-config: 29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4))
jest-haste-map: 29.7.0
@@ -31044,7 +31174,7 @@ snapshots:
chalk: 4.1.2
ci-info: 3.9.0
exit: 0.1.2
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-changed-files: 29.7.0
jest-config: 29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@20.14.15)(typescript@5.5.4))
jest-haste-map: 29.7.0
@@ -31079,7 +31209,7 @@ snapshots:
chalk: 4.1.2
ci-info: 3.9.0
exit: 0.1.2
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-changed-files: 29.7.0
jest-config: 29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@20.14.2)(typescript@4.9.5))
jest-haste-map: 29.7.0
@@ -31114,7 +31244,7 @@ snapshots:
chalk: 4.1.2
ci-info: 3.9.0
exit: 0.1.2
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-changed-files: 29.7.0
jest-config: 29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))
jest-haste-map: 29.7.0
@@ -31149,7 +31279,7 @@ snapshots:
chalk: 4.1.2
ci-info: 3.9.0
exit: 0.1.2
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-changed-files: 29.7.0
jest-config: 29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))
jest-haste-map: 29.7.0
@@ -31184,7 +31314,7 @@ snapshots:
chalk: 4.1.2
ci-info: 3.9.0
exit: 0.1.2
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-changed-files: 29.7.0
jest-config: 29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@22.5.1)(typescript@4.9.5))
jest-haste-map: 29.7.0
@@ -31219,7 +31349,7 @@ snapshots:
chalk: 4.1.2
ci-info: 3.9.0
exit: 0.1.2
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-changed-files: 29.7.0
jest-config: 29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))
jest-haste-map: 29.7.0
@@ -31254,7 +31384,7 @@ snapshots:
chalk: 4.1.2
ci-info: 3.9.0
exit: 0.1.2
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-changed-files: 29.7.0
jest-config: 29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))
jest-haste-map: 29.7.0
@@ -31462,11 +31592,6 @@ snapshots:
'@josephg/resolvable@1.0.1':
optional: true
- '@jridgewell/gen-mapping@0.1.1':
- dependencies:
- '@jridgewell/set-array': 1.2.1
- '@jridgewell/sourcemap-codec': 1.5.0
-
'@jridgewell/gen-mapping@0.3.5':
dependencies:
'@jridgewell/set-array': 1.2.1
@@ -32136,8 +32261,8 @@ snapshots:
dependencies:
'@ethereumjs/tx': 4.2.0
'@metamask/superstruct': 3.0.0
- '@noble/hashes': 1.5.0
- '@scure/base': 1.1.9
+ '@noble/hashes': 1.6.1
+ '@scure/base': 1.2.1
'@types/debug': 4.1.12
debug: 4.3.7(supports-color@8.1.1)
pony-cause: 2.1.11
@@ -32225,10 +32350,10 @@ snapshots:
'@mysten/sui.js@0.32.2(bufferutil@4.0.7)(utf-8-validate@6.0.3)':
dependencies:
'@mysten/bcs': 0.7.1
- '@noble/curves': 1.6.0
- '@noble/hashes': 1.5.0
- '@scure/bip32': 1.4.0
- '@scure/bip39': 1.3.0
+ '@noble/curves': 1.7.0
+ '@noble/hashes': 1.6.1
+ '@scure/bip32': 1.6.0
+ '@scure/bip39': 1.5.0
'@suchipi/femver': 1.0.0
jayson: 4.1.1(bufferutil@4.0.7)(utf-8-validate@6.0.3)
rpc-websockets: 7.5.1
@@ -32241,10 +32366,10 @@ snapshots:
'@mysten/sui.js@0.32.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
dependencies:
'@mysten/bcs': 0.7.1
- '@noble/curves': 1.6.0
- '@noble/hashes': 1.5.0
- '@scure/bip32': 1.4.0
- '@scure/bip39': 1.3.0
+ '@noble/curves': 1.7.0
+ '@noble/hashes': 1.6.1
+ '@scure/bip32': 1.6.0
+ '@scure/bip39': 1.5.0
'@suchipi/femver': 1.0.0
jayson: 4.1.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
rpc-websockets: 7.5.1
@@ -32257,10 +32382,10 @@ snapshots:
'@mysten/sui.js@0.32.2(bufferutil@4.0.8)(utf-8-validate@6.0.4)':
dependencies:
'@mysten/bcs': 0.7.1
- '@noble/curves': 1.6.0
- '@noble/hashes': 1.5.0
- '@scure/bip32': 1.4.0
- '@scure/bip39': 1.3.0
+ '@noble/curves': 1.7.0
+ '@noble/hashes': 1.6.1
+ '@scure/bip32': 1.6.0
+ '@scure/bip39': 1.5.0
'@suchipi/femver': 1.0.0
jayson: 4.1.1(bufferutil@4.0.8)(utf-8-validate@6.0.4)
rpc-websockets: 7.5.1
@@ -32502,6 +32627,10 @@ snapshots:
dependencies:
'@noble/hashes': 1.5.0
+ '@noble/curves@1.7.0':
+ dependencies:
+ '@noble/hashes': 1.6.0
+
'@noble/ed25519@1.7.3': {}
'@noble/hashes@1.1.2': {}
@@ -32520,6 +32649,10 @@ snapshots:
'@noble/hashes@1.5.0': {}
+ '@noble/hashes@1.6.0': {}
+
+ '@noble/hashes@1.6.1': {}
+
'@noble/secp256k1@1.6.3': {}
'@noble/secp256k1@1.7.1': {}
@@ -33220,12 +33353,6 @@ snapshots:
crypto-js: 4.2.0
uuidv4: 6.2.13
- '@particle-network/solana-wallet@1.3.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)':
- dependencies:
- '@particle-network/auth': 1.3.1
- '@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
- bs58: 5.0.0
-
'@particle-network/solana-wallet@1.3.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)':
dependencies:
'@particle-network/auth': 1.3.1
@@ -33428,10 +33555,14 @@ snapshots:
'@pythnetwork/pyth-starknet-js@0.2.1': {}
+ '@radix-ui/number@1.1.0': {}
+
'@radix-ui/primitive@1.0.0':
dependencies:
'@babel/runtime': 7.25.7
+ '@radix-ui/primitive@1.1.1': {}
+
'@radix-ui/react-arrow@1.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@babel/runtime': 7.25.7
@@ -33439,16 +33570,55 @@ snapshots:
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
+ '@radix-ui/react-arrow@1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ dependencies:
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ optionalDependencies:
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.2(@types/react@19.0.1)
+
+ '@radix-ui/react-collection@1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-slot': 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ optionalDependencies:
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.2(@types/react@19.0.1)
+
'@radix-ui/react-compose-refs@1.0.0(react@19.0.0)':
dependencies:
'@babel/runtime': 7.25.7
react: 19.0.0
+ '@radix-ui/react-compose-refs@1.1.1(@types/react@19.0.1)(react@19.0.0)':
+ dependencies:
+ react: 19.0.0
+ optionalDependencies:
+ '@types/react': 19.0.1
+
'@radix-ui/react-context@1.0.0(react@19.0.0)':
dependencies:
'@babel/runtime': 7.25.7
react: 19.0.0
+ '@radix-ui/react-context@1.1.1(@types/react@19.0.1)(react@19.0.0)':
+ dependencies:
+ react: 19.0.0
+ optionalDependencies:
+ '@types/react': 19.0.1
+
+ '@radix-ui/react-direction@1.1.0(@types/react@19.0.1)(react@19.0.0)':
+ dependencies:
+ react: 19.0.0
+ optionalDependencies:
+ '@types/react': 19.0.1
+
'@radix-ui/react-dismissable-layer@1.0.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@babel/runtime': 7.25.7
@@ -33460,12 +33630,49 @@ snapshots:
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
+ '@radix-ui/react-dismissable-layer@1.1.3(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ optionalDependencies:
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.2(@types/react@19.0.1)
+
+ '@radix-ui/react-focus-guards@1.1.1(@types/react@19.0.1)(react@19.0.0)':
+ dependencies:
+ react: 19.0.0
+ optionalDependencies:
+ '@types/react': 19.0.1
+
+ '@radix-ui/react-focus-scope@1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ optionalDependencies:
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.2(@types/react@19.0.1)
+
'@radix-ui/react-id@1.0.0(react@19.0.0)':
dependencies:
'@babel/runtime': 7.25.7
'@radix-ui/react-use-layout-effect': 1.0.0(react@19.0.0)
react: 19.0.0
+ '@radix-ui/react-id@1.1.0(@types/react@19.0.1)(react@19.0.0)':
+ dependencies:
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
+ optionalDependencies:
+ '@types/react': 19.0.1
+
'@radix-ui/react-label@2.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@babel/runtime': 7.23.9
@@ -33491,6 +33698,24 @@ snapshots:
transitivePeerDependencies:
- '@types/react'
+ '@radix-ui/react-popper@1.2.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ dependencies:
+ '@floating-ui/react-dom': 2.1.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-arrow': 1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-rect': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-size': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/rect': 1.1.0
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ optionalDependencies:
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.2(@types/react@19.0.1)
+
'@radix-ui/react-portal@1.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@babel/runtime': 7.25.7
@@ -33498,6 +33723,16 @@ snapshots:
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
+ '@radix-ui/react-portal@1.1.3(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ dependencies:
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ optionalDependencies:
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.2(@types/react@19.0.1)
+
'@radix-ui/react-presence@1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@babel/runtime': 7.25.7
@@ -33513,12 +33748,72 @@ snapshots:
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
+ '@radix-ui/react-primitive@2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ dependencies:
+ '@radix-ui/react-slot': 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ optionalDependencies:
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.2(@types/react@19.0.1)
+
+ '@radix-ui/react-select@2.1.4(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ dependencies:
+ '@radix-ui/number': 1.1.0
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-collection': 1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-direction': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-focus-guards': 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-focus-scope': 1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-popper': 1.2.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-portal': 1.1.3(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-slot': 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-previous': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-visually-hidden': 1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ aria-hidden: 1.2.4
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ react-remove-scroll: 2.6.2(@types/react@19.0.1)(react@19.0.0)
+ optionalDependencies:
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.2(@types/react@19.0.1)
+
'@radix-ui/react-slot@1.0.1(react@19.0.0)':
dependencies:
'@babel/runtime': 7.25.7
'@radix-ui/react-compose-refs': 1.0.0(react@19.0.0)
react: 19.0.0
+ '@radix-ui/react-slot@1.1.1(@types/react@19.0.1)(react@19.0.0)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
+ optionalDependencies:
+ '@types/react': 19.0.1
+
+ '@radix-ui/react-switch@1.1.2(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-previous': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-size': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ optionalDependencies:
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.2(@types/react@19.0.1)
+
'@radix-ui/react-tooltip@1.0.3(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@babel/runtime': 7.23.9
@@ -33544,35 +33839,81 @@ snapshots:
'@babel/runtime': 7.25.7
react: 19.0.0
+ '@radix-ui/react-use-callback-ref@1.1.0(@types/react@19.0.1)(react@19.0.0)':
+ dependencies:
+ react: 19.0.0
+ optionalDependencies:
+ '@types/react': 19.0.1
+
'@radix-ui/react-use-controllable-state@1.0.0(react@19.0.0)':
dependencies:
'@babel/runtime': 7.25.7
'@radix-ui/react-use-callback-ref': 1.0.0(react@19.0.0)
react: 19.0.0
+ '@radix-ui/react-use-controllable-state@1.1.0(@types/react@19.0.1)(react@19.0.0)':
+ dependencies:
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
+ optionalDependencies:
+ '@types/react': 19.0.1
+
'@radix-ui/react-use-escape-keydown@1.0.2(react@19.0.0)':
dependencies:
'@babel/runtime': 7.25.7
'@radix-ui/react-use-callback-ref': 1.0.0(react@19.0.0)
react: 19.0.0
+ '@radix-ui/react-use-escape-keydown@1.1.0(@types/react@19.0.1)(react@19.0.0)':
+ dependencies:
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
+ optionalDependencies:
+ '@types/react': 19.0.1
+
'@radix-ui/react-use-layout-effect@1.0.0(react@19.0.0)':
dependencies:
'@babel/runtime': 7.25.7
react: 19.0.0
+ '@radix-ui/react-use-layout-effect@1.1.0(@types/react@19.0.1)(react@19.0.0)':
+ dependencies:
+ react: 19.0.0
+ optionalDependencies:
+ '@types/react': 19.0.1
+
+ '@radix-ui/react-use-previous@1.1.0(@types/react@19.0.1)(react@19.0.0)':
+ dependencies:
+ react: 19.0.0
+ optionalDependencies:
+ '@types/react': 19.0.1
+
'@radix-ui/react-use-rect@1.0.0(react@19.0.0)':
dependencies:
'@babel/runtime': 7.25.7
'@radix-ui/rect': 1.0.0
react: 19.0.0
+ '@radix-ui/react-use-rect@1.1.0(@types/react@19.0.1)(react@19.0.0)':
+ dependencies:
+ '@radix-ui/rect': 1.1.0
+ react: 19.0.0
+ optionalDependencies:
+ '@types/react': 19.0.1
+
'@radix-ui/react-use-size@1.0.0(react@19.0.0)':
dependencies:
'@babel/runtime': 7.25.7
'@radix-ui/react-use-layout-effect': 1.0.0(react@19.0.0)
react: 19.0.0
+ '@radix-ui/react-use-size@1.1.0(@types/react@19.0.1)(react@19.0.0)':
+ dependencies:
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
+ optionalDependencies:
+ '@types/react': 19.0.1
+
'@radix-ui/react-visually-hidden@1.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@babel/runtime': 7.25.7
@@ -33580,10 +33921,21 @@ snapshots:
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
+ '@radix-ui/react-visually-hidden@1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ dependencies:
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ optionalDependencies:
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.2(@types/react@19.0.1)
+
'@radix-ui/rect@1.0.0':
dependencies:
'@babel/runtime': 7.25.7
+ '@radix-ui/rect@1.1.0': {}
+
'@react-aria/breadcrumbs@3.5.19(react@19.0.0)':
dependencies:
'@react-aria/i18n': 3.12.4(react@19.0.0)
@@ -33591,7 +33943,7 @@ snapshots:
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-types/breadcrumbs': 3.7.9(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-aria/button@3.11.0(react@19.0.0)':
@@ -33603,7 +33955,7 @@ snapshots:
'@react-stately/toggle': 3.8.0(react@19.0.0)
'@react-types/button': 3.10.1(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-aria/calendar@3.6.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0)':
@@ -33617,7 +33969,7 @@ snapshots:
'@react-types/button': 3.10.1(react@19.0.0)
'@react-types/calendar': 3.5.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 18.3.1(react@18.3.1)
@@ -33632,7 +33984,7 @@ snapshots:
'@react-types/button': 3.10.1(react@19.0.0)
'@react-types/calendar': 3.5.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -33648,7 +34000,7 @@ snapshots:
'@react-stately/toggle': 3.8.0(react@19.0.0)
'@react-types/checkbox': 3.9.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-aria/collections@3.0.0-alpha.6(react-dom@18.3.1(react@18.3.1))(react@19.0.0)':
@@ -33656,7 +34008,7 @@ snapshots:
'@react-aria/ssr': 3.9.7(react@19.0.0)
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 18.3.1(react@18.3.1)
use-sync-external-store: 1.2.0(react@19.0.0)
@@ -33666,7 +34018,7 @@ snapshots:
'@react-aria/ssr': 3.9.7(react@19.0.0)
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
use-sync-external-store: 1.2.0(react@19.0.0)
@@ -33685,7 +34037,7 @@ snapshots:
'@react-stately/form': 3.1.0(react@19.0.0)
'@react-types/color': 3.0.1(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 18.3.1(react@18.3.1)
@@ -33703,7 +34055,7 @@ snapshots:
'@react-stately/form': 3.1.0(react@19.0.0)
'@react-types/color': 3.0.1(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -33723,7 +34075,7 @@ snapshots:
'@react-types/button': 3.10.1(react@19.0.0)
'@react-types/combobox': 3.13.1(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 18.3.1(react@18.3.1)
@@ -33743,7 +34095,7 @@ snapshots:
'@react-types/button': 3.10.1(react@19.0.0)
'@react-types/combobox': 3.13.1(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -33766,7 +34118,7 @@ snapshots:
'@react-types/datepicker': 3.9.0(react@19.0.0)
'@react-types/dialog': 3.5.14(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 18.3.1(react@18.3.1)
@@ -33789,7 +34141,7 @@ snapshots:
'@react-types/datepicker': 3.9.0(react@19.0.0)
'@react-types/dialog': 3.5.14(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -33800,7 +34152,7 @@ snapshots:
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-types/dialog': 3.5.14(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 18.3.1(react@18.3.1)
@@ -33811,7 +34163,7 @@ snapshots:
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-types/dialog': 3.5.14(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -33821,7 +34173,7 @@ snapshots:
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-stately/disclosure': 3.0.0(react@19.0.0)
'@react-types/button': 3.10.1(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 18.3.1(react@18.3.1)
@@ -33831,7 +34183,7 @@ snapshots:
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-stately/disclosure': 3.0.0(react@19.0.0)
'@react-types/button': 3.10.1(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -33846,7 +34198,7 @@ snapshots:
'@react-stately/dnd': 3.5.0(react@19.0.0)
'@react-types/button': 3.10.1(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 18.3.1(react@18.3.1)
@@ -33861,7 +34213,7 @@ snapshots:
'@react-stately/dnd': 3.5.0(react@19.0.0)
'@react-types/button': 3.10.1(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -33879,7 +34231,7 @@ snapshots:
'@react-aria/interactions': 3.22.5(react@19.0.0)
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
clsx: 2.1.1
react: 19.0.0
@@ -33940,7 +34292,7 @@ snapshots:
'@react-stately/list': 3.11.1(react@19.0.0)
'@react-stately/tree': 3.8.6(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 18.3.1(react@18.3.1)
@@ -33956,7 +34308,7 @@ snapshots:
'@react-stately/list': 3.11.1(react@19.0.0)
'@react-stately/tree': 3.8.6(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -33969,7 +34321,7 @@ snapshots:
'@react-aria/ssr': 3.9.6(react@19.0.0)
'@react-aria/utils': 3.25.3(react@19.0.0)
'@react-types/shared': 3.25.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-aria/i18n@3.12.4(react@19.0.0)':
@@ -33981,7 +34333,7 @@ snapshots:
'@react-aria/ssr': 3.9.7(react@19.0.0)
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-aria/interactions@3.22.3(react@19.0.0)':
@@ -33989,7 +34341,7 @@ snapshots:
'@react-aria/ssr': 3.9.6(react@19.0.0)
'@react-aria/utils': 3.25.3(react@19.0.0)
'@react-types/shared': 3.25.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-aria/interactions@3.22.4(react@19.0.0)':
@@ -34005,21 +34357,21 @@ snapshots:
'@react-aria/ssr': 3.9.7(react@19.0.0)
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-aria/label@3.7.13(react@19.0.0)':
dependencies:
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-aria/landmark@3.0.0-beta.16(react@19.0.0)':
dependencies:
'@react-aria/utils': 3.25.3(react@19.0.0)
'@react-types/shared': 3.25.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
use-sync-external-store: 1.2.0(react@19.0.0)
@@ -34030,7 +34382,7 @@ snapshots:
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-types/link': 3.5.9(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-aria/listbox@3.13.6(react-dom@18.3.1(react@18.3.1))(react@19.0.0)':
@@ -34043,7 +34395,7 @@ snapshots:
'@react-stately/list': 3.11.1(react@19.0.0)
'@react-types/listbox': 3.5.3(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 18.3.1(react@18.3.1)
@@ -34057,13 +34409,13 @@ snapshots:
'@react-stately/list': 3.11.1(react@19.0.0)
'@react-types/listbox': 3.5.3(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
'@react-aria/live-announcer@3.4.1':
dependencies:
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
'@react-aria/menu@3.16.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0)':
dependencies:
@@ -34080,7 +34432,7 @@ snapshots:
'@react-types/button': 3.10.1(react@19.0.0)
'@react-types/menu': 3.9.13(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 18.3.1(react@18.3.1)
@@ -34099,7 +34451,7 @@ snapshots:
'@react-types/button': 3.10.1(react@19.0.0)
'@react-types/menu': 3.9.13(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -34108,7 +34460,7 @@ snapshots:
'@react-aria/progress': 3.4.18(react@19.0.0)
'@react-types/meter': 3.4.5(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-aria/numberfield@3.11.9(react-dom@18.3.1(react@18.3.1))(react@19.0.0)':
@@ -34123,7 +34475,7 @@ snapshots:
'@react-types/button': 3.10.1(react@19.0.0)
'@react-types/numberfield': 3.8.7(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 18.3.1(react@18.3.1)
@@ -34139,7 +34491,7 @@ snapshots:
'@react-types/button': 3.10.1(react@19.0.0)
'@react-types/numberfield': 3.8.7(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -34155,7 +34507,7 @@ snapshots:
'@react-types/button': 3.10.1(react@19.0.0)
'@react-types/overlays': 3.8.11(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 18.3.1(react@18.3.1)
@@ -34171,7 +34523,7 @@ snapshots:
'@react-types/button': 3.10.1(react@19.0.0)
'@react-types/overlays': 3.8.11(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -34182,7 +34534,7 @@ snapshots:
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-types/progress': 3.5.8(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-aria/radio@3.10.10(react@19.0.0)':
@@ -34196,7 +34548,7 @@ snapshots:
'@react-stately/radio': 3.10.9(react@19.0.0)
'@react-types/radio': 3.8.5(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-aria/searchfield@3.7.11(react@19.0.0)':
@@ -34208,7 +34560,7 @@ snapshots:
'@react-types/button': 3.10.1(react@19.0.0)
'@react-types/searchfield': 3.5.10(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-aria/select@3.15.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0)':
@@ -34226,7 +34578,7 @@ snapshots:
'@react-types/button': 3.10.1(react@19.0.0)
'@react-types/select': 3.9.8(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 18.3.1(react@18.3.1)
@@ -34245,7 +34597,7 @@ snapshots:
'@react-types/button': 3.10.1(react@19.0.0)
'@react-types/select': 3.9.8(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -34257,7 +34609,7 @@ snapshots:
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-stately/selection': 3.18.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 18.3.1(react@18.3.1)
@@ -34269,7 +34621,7 @@ snapshots:
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-stately/selection': 3.18.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -34277,7 +34629,7 @@ snapshots:
dependencies:
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-aria/slider@3.7.14(react@19.0.0)':
@@ -34290,7 +34642,7 @@ snapshots:
'@react-stately/slider': 3.6.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
'@react-types/slider': 3.7.7(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-aria/spinbutton@3.6.10(react-dom@18.3.1(react@18.3.1))(react@19.0.0)':
@@ -34322,7 +34674,7 @@ snapshots:
'@react-aria/ssr@3.9.7(react@19.0.0)':
dependencies:
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-aria/switch@3.6.10(react@19.0.0)':
@@ -34331,7 +34683,7 @@ snapshots:
'@react-stately/toggle': 3.8.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
'@react-types/switch': 3.5.7(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-aria/table@3.16.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0)':
@@ -34350,7 +34702,7 @@ snapshots:
'@react-types/grid': 3.2.10(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
'@react-types/table': 3.10.3(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 18.3.1(react@18.3.1)
@@ -34370,7 +34722,7 @@ snapshots:
'@react-types/grid': 3.2.10(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
'@react-types/table': 3.10.3(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -34383,7 +34735,7 @@ snapshots:
'@react-stately/tabs': 3.7.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
'@react-types/tabs': 3.3.11(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 18.3.1(react@18.3.1)
@@ -34396,7 +34748,7 @@ snapshots:
'@react-stately/tabs': 3.7.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
'@react-types/tabs': 3.3.11(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -34411,7 +34763,7 @@ snapshots:
'@react-stately/list': 3.11.1(react@19.0.0)
'@react-types/button': 3.10.1(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 18.3.1(react@18.3.1)
@@ -34426,7 +34778,7 @@ snapshots:
'@react-stately/list': 3.11.1(react@19.0.0)
'@react-types/button': 3.10.1(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -34440,7 +34792,7 @@ snapshots:
'@react-stately/utils': 3.10.5(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
'@react-types/textfield': 3.10.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-aria/toast@3.0.0-beta.16(react@19.0.0)':
@@ -34472,7 +34824,7 @@ snapshots:
'@react-aria/i18n': 3.12.4(react@19.0.0)
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-aria/tooltip@3.7.10(react@19.0.0)':
@@ -34483,7 +34835,7 @@ snapshots:
'@react-stately/tooltip': 3.5.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
'@react-types/tooltip': 3.4.13(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-aria/tree@3.0.0-beta.2(react-dom@18.3.1(react@18.3.1))(react@19.0.0)':
@@ -34495,7 +34847,7 @@ snapshots:
'@react-stately/tree': 3.8.6(react@19.0.0)
'@react-types/button': 3.10.1(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 18.3.1(react@18.3.1)
@@ -34508,7 +34860,7 @@ snapshots:
'@react-stately/tree': 3.8.6(react@19.0.0)
'@react-types/button': 3.10.1(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -34517,7 +34869,7 @@ snapshots:
'@react-aria/ssr': 3.9.6(react@19.0.0)
'@react-stately/utils': 3.10.4(react@19.0.0)
'@react-types/shared': 3.25.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
clsx: 2.1.1
react: 19.0.0
@@ -34526,7 +34878,7 @@ snapshots:
'@react-aria/ssr': 3.9.7(react@19.0.0)
'@react-stately/utils': 3.10.5(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
clsx: 2.1.1
react: 19.0.0
@@ -34537,7 +34889,7 @@ snapshots:
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-stately/virtualizer': 4.2.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 18.3.1(react@18.3.1)
@@ -34548,7 +34900,7 @@ snapshots:
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-stately/virtualizer': 4.2.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -34557,7 +34909,7 @@ snapshots:
'@react-aria/interactions': 3.22.5(react@19.0.0)
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-hookz/deep-equal@1.0.4': {}
@@ -35150,7 +35502,7 @@ snapshots:
'@react-stately/utils': 3.10.5(react@19.0.0)
'@react-types/color': 3.0.1(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-stately/combobox@3.10.1(react@19.0.0)':
@@ -35188,7 +35540,7 @@ snapshots:
dependencies:
'@react-stately/utils': 3.10.5(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-stately/dnd@3.5.0(react@19.0.0)':
@@ -35225,7 +35577,7 @@ snapshots:
'@react-types/grid': 3.2.10(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
'@react-types/table': 3.10.3(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-stately/list@3.11.1(react@19.0.0)':
@@ -35242,7 +35594,7 @@ snapshots:
'@react-stately/overlays': 3.6.12(react@19.0.0)
'@react-types/menu': 3.9.13(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-stately/numberfield@3.9.8(react@19.0.0)':
@@ -35292,7 +35644,7 @@ snapshots:
'@react-stately/collections': 3.12.0(react@19.0.0)
'@react-stately/utils': 3.10.5(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-stately/slider@3.6.0(react@19.0.0)':
@@ -35313,7 +35665,7 @@ snapshots:
'@react-types/grid': 3.2.10(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
'@react-types/table': 3.10.3(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-stately/tabs@3.7.0(react@19.0.0)':
@@ -35361,14 +35713,14 @@ snapshots:
'@react-stately/utils@3.10.5(react@19.0.0)':
dependencies:
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-stately/virtualizer@4.2.0(react@19.0.0)':
dependencies:
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-types/breadcrumbs@3.7.9(react@19.0.0)':
@@ -35598,6 +35950,8 @@ snapshots:
'@scure/base@1.1.9': {}
+ '@scure/base@1.2.1': {}
+
'@scure/bip32@1.1.0':
dependencies:
'@noble/hashes': 1.1.5
@@ -35614,7 +35968,7 @@ snapshots:
dependencies:
'@noble/curves': 1.2.0
'@noble/hashes': 1.3.3
- '@scure/base': 1.1.7
+ '@scure/base': 1.1.9
'@scure/bip32@1.3.3':
dependencies:
@@ -35626,7 +35980,7 @@ snapshots:
dependencies:
'@noble/curves': 1.4.2
'@noble/hashes': 1.4.0
- '@scure/base': 1.1.7
+ '@scure/base': 1.1.9
'@scure/bip32@1.5.0':
dependencies:
@@ -35634,10 +35988,16 @@ snapshots:
'@noble/hashes': 1.5.0
'@scure/base': 1.1.7
+ '@scure/bip32@1.6.0':
+ dependencies:
+ '@noble/curves': 1.7.0
+ '@noble/hashes': 1.6.1
+ '@scure/base': 1.2.1
+
'@scure/bip39@1.1.0':
dependencies:
'@noble/hashes': 1.1.5
- '@scure/base': 1.1.7
+ '@scure/base': 1.1.9
'@scure/bip39@1.1.1':
dependencies:
@@ -35647,7 +36007,7 @@ snapshots:
'@scure/bip39@1.2.1':
dependencies:
'@noble/hashes': 1.3.3
- '@scure/base': 1.1.7
+ '@scure/base': 1.1.9
'@scure/bip39@1.2.2':
dependencies:
@@ -35657,13 +36017,18 @@ snapshots:
'@scure/bip39@1.3.0':
dependencies:
'@noble/hashes': 1.4.0
- '@scure/base': 1.1.7
+ '@scure/base': 1.1.9
'@scure/bip39@1.4.0':
dependencies:
'@noble/hashes': 1.5.0
'@scure/base': 1.1.9
+ '@scure/bip39@1.5.0':
+ dependencies:
+ '@noble/hashes': 1.6.1
+ '@scure/base': 1.2.1
+
'@scure/starknet@1.0.0':
dependencies:
'@noble/curves': 1.3.0
@@ -36126,18 +36491,18 @@ snapshots:
'@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
- '@solana/wallet-adapter-base-ui@0.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)':
+ '@solana/wallet-adapter-base-ui@0.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)':
dependencies:
- '@solana/wallet-adapter-react': 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)
+ '@solana/wallet-adapter-react': 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
react: 19.0.0
transitivePeerDependencies:
- bs58
- react-native
- '@solana/wallet-adapter-base-ui@0.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)':
+ '@solana/wallet-adapter-base-ui@0.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)':
dependencies:
- '@solana/wallet-adapter-react': 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)
+ '@solana/wallet-adapter-react': 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
react: 19.0.0
transitivePeerDependencies:
@@ -36291,14 +36656,6 @@ snapshots:
'@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
- '@solana/wallet-adapter-particle@0.1.12(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)':
- dependencies:
- '@particle-network/solana-wallet': 1.3.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)
- '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
- '@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
- transitivePeerDependencies:
- - bs58
-
'@solana/wallet-adapter-particle@0.1.12(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)':
dependencies:
'@particle-network/solana-wallet': 1.3.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)
@@ -36312,18 +36669,6 @@ snapshots:
'@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
- '@solana/wallet-adapter-react-ui@0.9.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-dom@19.0.0(react@19.0.0))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)':
- dependencies:
- '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
- '@solana/wallet-adapter-base-ui': 0.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)
- '@solana/wallet-adapter-react': 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)
- '@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- transitivePeerDependencies:
- - bs58
- - react-native
-
'@solana/wallet-adapter-react-ui@0.9.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-dom@19.0.0(react@19.0.0))(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)':
dependencies:
'@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
@@ -36336,20 +36681,21 @@ snapshots:
- bs58
- react-native
- '@solana/wallet-adapter-react@0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)':
+ '@solana/wallet-adapter-react-ui@0.9.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-dom@19.0.0(react@19.0.0))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)':
dependencies:
- '@solana-mobile/wallet-adapter-mobile': 2.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)
'@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
- '@solana/wallet-standard-wallet-adapter-react': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@19.0.0)
+ '@solana/wallet-adapter-base-ui': 0.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)
+ '@solana/wallet-adapter-react': 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
transitivePeerDependencies:
- bs58
- react-native
- '@solana/wallet-adapter-react@0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)':
+ '@solana/wallet-adapter-react@0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)':
dependencies:
- '@solana-mobile/wallet-adapter-mobile': 2.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)
+ '@solana-mobile/wallet-adapter-mobile': 2.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)
'@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-standard-wallet-adapter-react': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@19.0.0)
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
@@ -36369,9 +36715,9 @@ snapshots:
- bs58
- react-native
- '@solana/wallet-adapter-react@0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)':
+ '@solana/wallet-adapter-react@0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)':
dependencies:
- '@solana-mobile/wallet-adapter-mobile': 2.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)
+ '@solana-mobile/wallet-adapter-mobile': 2.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)
'@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-standard-wallet-adapter-react': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react@19.0.0)
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
@@ -36476,7 +36822,7 @@ snapshots:
'@solana/wallet-adapter-unsafe-burner@0.1.7(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))':
dependencies:
- '@noble/curves': 1.6.0
+ '@noble/curves': 1.7.0
'@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-standard-features': 1.2.0
'@solana/wallet-standard-util': 1.1.1
@@ -36604,7 +36950,7 @@ snapshots:
- uWebSockets.js
- utf-8-validate
- '@solana/wallet-adapter-wallets@0.19.10(@babel/runtime@7.25.7)(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(utf-8-validate@5.0.10)':
+ '@solana/wallet-adapter-wallets@0.19.10(@babel/runtime@7.25.7)(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(utf-8-validate@5.0.10)':
dependencies:
'@solana/wallet-adapter-alpha': 0.1.10(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-adapter-avana': 0.1.13(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
@@ -36632,7 +36978,7 @@ snapshots:
'@solana/wallet-adapter-nightly': 0.1.16(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-adapter-nufi': 0.1.17(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-adapter-onto': 0.1.7(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
- '@solana/wallet-adapter-particle': 0.1.12(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)
+ '@solana/wallet-adapter-particle': 0.1.12(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)
'@solana/wallet-adapter-phantom': 0.9.24(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-adapter-safepal': 0.5.18(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-adapter-saifu': 0.1.15(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
@@ -36700,7 +37046,7 @@ snapshots:
'@solana/wallet-standard-util@1.1.1':
dependencies:
- '@noble/curves': 1.6.0
+ '@noble/curves': 1.7.0
'@solana/wallet-standard-chains': 1.1.0
'@solana/wallet-standard-features': 1.2.0
@@ -36775,8 +37121,8 @@ snapshots:
'@solana/web3.js@1.77.4(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
'@babel/runtime': 7.25.7
- '@noble/curves': 1.6.0
- '@noble/hashes': 1.5.0
+ '@noble/curves': 1.7.0
+ '@noble/hashes': 1.6.1
'@solana/buffer-layout': 4.0.1
agentkeepalive: 4.5.0
bigint-buffer: 1.1.5
@@ -37454,81 +37800,81 @@ snapshots:
'@suchipi/femver@1.0.0': {}
- '@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.24.7)':
+ '@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.25.8
'@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@svgr/babel-plugin-remove-jsx-attribute@6.5.0(@babel/core@7.24.7)':
+ '@svgr/babel-plugin-remove-jsx-attribute@6.5.0(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.25.8
'@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@svgr/babel-plugin-remove-jsx-empty-expression@6.5.0(@babel/core@7.24.7)':
+ '@svgr/babel-plugin-remove-jsx-empty-expression@6.5.0(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.25.8
'@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.24.7)':
+ '@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.25.8
'@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.24.7)':
+ '@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.25.8
'@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.24.7)':
+ '@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.25.8
'@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.24.7)':
+ '@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.25.8
'@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.24.7)':
+ '@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.25.8
'@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@svgr/babel-preset@6.5.1(@babel/core@7.24.7)':
+ '@svgr/babel-preset@6.5.1(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.24.7)
- '@svgr/babel-plugin-remove-jsx-attribute': 6.5.0(@babel/core@7.24.7)
- '@svgr/babel-plugin-remove-jsx-empty-expression': 6.5.0(@babel/core@7.24.7)
- '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1(@babel/core@7.24.7)
- '@svgr/babel-plugin-svg-dynamic-title': 6.5.1(@babel/core@7.24.7)
- '@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.24.7)
- '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.24.7)
- '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.24.7)
+ '@babel/core': 7.25.8
+ '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.25.8)
+ '@svgr/babel-plugin-remove-jsx-attribute': 6.5.0(@babel/core@7.25.8)
+ '@svgr/babel-plugin-remove-jsx-empty-expression': 6.5.0(@babel/core@7.25.8)
+ '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1(@babel/core@7.25.8)
+ '@svgr/babel-plugin-svg-dynamic-title': 6.5.1(@babel/core@7.25.8)
+ '@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.25.8)
+ '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.25.8)
+ '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.25.8)
'@svgr/babel-preset@8.1.0(@babel/core@7.24.7)':
dependencies:
@@ -37544,8 +37890,8 @@ snapshots:
'@svgr/core@6.5.1':
dependencies:
- '@babel/core': 7.24.7
- '@svgr/babel-preset': 6.5.1(@babel/core@7.24.7)
+ '@babel/core': 7.25.8
+ '@svgr/babel-preset': 6.5.1(@babel/core@7.25.8)
'@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1)
camelcase: 6.3.0
cosmiconfig: 7.1.0
@@ -37587,18 +37933,18 @@ snapshots:
'@svgr/hast-util-to-babel-ast@6.5.1':
dependencies:
- '@babel/types': 7.24.0
- entities: 4.4.0
+ '@babel/types': 7.25.8
+ entities: 4.5.0
'@svgr/hast-util-to-babel-ast@8.0.0':
dependencies:
- '@babel/types': 7.24.7
- entities: 4.4.0
+ '@babel/types': 7.25.8
+ entities: 4.5.0
'@svgr/plugin-jsx@6.5.1(@svgr/core@6.5.1)':
dependencies:
- '@babel/core': 7.24.7
- '@svgr/babel-preset': 6.5.1(@babel/core@7.24.7)
+ '@babel/core': 7.25.8
+ '@svgr/babel-preset': 6.5.1(@babel/core@7.25.8)
'@svgr/core': 6.5.1
'@svgr/hast-util-to-babel-ast': 6.5.1
svg-parser: 2.0.4
@@ -37639,7 +37985,7 @@ snapshots:
dependencies:
'@svgr/core': 6.5.1
cosmiconfig: 7.1.0
- deepmerge: 4.3.0
+ deepmerge: 4.3.1
svgo: 2.8.0
'@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0(typescript@5.5.2))(typescript@5.5.2)':
@@ -38554,24 +38900,24 @@ snapshots:
'@types/babel__core@7.20.5':
dependencies:
- '@babel/parser': 7.25.3
- '@babel/types': 7.25.2
+ '@babel/parser': 7.25.8
+ '@babel/types': 7.25.8
'@types/babel__generator': 7.6.8
'@types/babel__template': 7.4.4
'@types/babel__traverse': 7.20.6
'@types/babel__generator@7.6.8':
dependencies:
- '@babel/types': 7.25.2
+ '@babel/types': 7.25.8
'@types/babel__template@7.4.4':
dependencies:
- '@babel/parser': 7.25.3
- '@babel/types': 7.25.2
+ '@babel/parser': 7.25.8
+ '@babel/types': 7.25.8
'@types/babel__traverse@7.20.6':
dependencies:
- '@babel/types': 7.25.2
+ '@babel/types': 7.25.8
'@types/bn.js@4.11.6':
dependencies:
@@ -38680,8 +39026,6 @@ snapshots:
'@types/estree@0.0.51': {}
- '@types/estree@1.0.5': {}
-
'@types/estree@1.0.6': {}
'@types/ethereum-protocol@1.0.2':
@@ -39080,15 +39424,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)':
+ '@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2))(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2)':
dependencies:
'@eslint-community/regexpp': 4.11.0
- '@typescript-eslint/parser': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
+ '@typescript-eslint/parser': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2)
'@typescript-eslint/scope-manager': 7.13.1
- '@typescript-eslint/type-utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
- '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
+ '@typescript-eslint/type-utils': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2)
+ '@typescript-eslint/utils': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2)
'@typescript-eslint/visitor-keys': 7.13.1
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
graphemer: 1.4.0
ignore: 5.3.2
natural-compare: 1.4.0
@@ -39098,15 +39442,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)':
+ '@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)':
dependencies:
'@eslint-community/regexpp': 4.11.0
- '@typescript-eslint/parser': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
+ '@typescript-eslint/parser': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
'@typescript-eslint/scope-manager': 7.13.1
- '@typescript-eslint/type-utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
- '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
+ '@typescript-eslint/type-utils': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
+ '@typescript-eslint/utils': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
'@typescript-eslint/visitor-keys': 7.13.1
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
graphemer: 1.4.0
ignore: 5.3.2
natural-compare: 1.4.0
@@ -39116,15 +39460,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)':
+ '@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)':
dependencies:
'@eslint-community/regexpp': 4.11.0
- '@typescript-eslint/parser': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
+ '@typescript-eslint/parser': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
'@typescript-eslint/scope-manager': 7.13.1
- '@typescript-eslint/type-utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
- '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
+ '@typescript-eslint/type-utils': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
+ '@typescript-eslint/utils': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
'@typescript-eslint/visitor-keys': 7.13.1
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
graphemer: 1.4.0
ignore: 5.3.2
natural-compare: 1.4.0
@@ -39134,25 +39478,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2)':
- dependencies:
- '@eslint-community/regexpp': 4.11.0
- '@typescript-eslint/parser': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
- '@typescript-eslint/scope-manager': 7.13.1
- '@typescript-eslint/type-utils': 7.13.1(eslint@9.5.0)(typescript@5.5.2)
- '@typescript-eslint/utils': 7.13.1(eslint@9.5.0)(typescript@5.5.2)
- '@typescript-eslint/visitor-keys': 7.13.1
- eslint: 9.5.0
- graphemer: 1.4.0
- ignore: 5.3.2
- natural-compare: 1.4.0
- ts-api-utils: 1.3.0(typescript@5.5.2)
- optionalDependencies:
- typescript: 5.5.2
- transitivePeerDependencies:
- - supports-color
- optional: true
-
'@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)':
dependencies:
'@eslint-community/regexpp': 4.11.0
@@ -39191,6 +39516,25 @@ snapshots:
- supports-color
optional: true
+ '@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2)':
+ dependencies:
+ '@eslint-community/regexpp': 4.11.0
+ '@typescript-eslint/parser': 8.14.0(eslint@9.5.0)(typescript@5.5.2)
+ '@typescript-eslint/scope-manager': 7.13.1
+ '@typescript-eslint/type-utils': 7.13.1(eslint@9.5.0)(typescript@5.5.2)
+ '@typescript-eslint/utils': 7.13.1(eslint@9.5.0)(typescript@5.5.2)
+ '@typescript-eslint/visitor-keys': 7.13.1
+ eslint: 9.5.0
+ graphemer: 1.4.0
+ ignore: 5.3.2
+ natural-compare: 1.4.0
+ ts-api-utils: 1.3.0(typescript@5.5.2)
+ optionalDependencies:
+ typescript: 5.5.2
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
'@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)':
dependencies:
'@eslint-community/regexpp': 4.11.0
@@ -39350,40 +39694,40 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)':
+ '@typescript-eslint/parser@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2)':
dependencies:
'@typescript-eslint/scope-manager': 7.13.1
'@typescript-eslint/types': 7.13.1
'@typescript-eslint/typescript-estree': 7.13.1(typescript@5.5.2)
'@typescript-eslint/visitor-keys': 7.13.1
debug: 4.3.7(supports-color@8.1.1)
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
optionalDependencies:
typescript: 5.5.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)':
+ '@typescript-eslint/parser@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)':
dependencies:
'@typescript-eslint/scope-manager': 7.13.1
'@typescript-eslint/types': 7.13.1
'@typescript-eslint/typescript-estree': 7.13.1(typescript@5.5.4)
'@typescript-eslint/visitor-keys': 7.13.1
debug: 4.3.7(supports-color@8.1.1)
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
optionalDependencies:
typescript: 5.5.4
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)':
+ '@typescript-eslint/parser@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)':
dependencies:
'@typescript-eslint/scope-manager': 7.13.1
'@typescript-eslint/types': 7.13.1
'@typescript-eslint/typescript-estree': 7.13.1(typescript@5.6.3)
'@typescript-eslint/visitor-keys': 7.13.1
debug: 4.3.7(supports-color@8.1.1)
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
optionalDependencies:
typescript: 5.6.3
transitivePeerDependencies:
@@ -39429,6 +39773,20 @@ snapshots:
- supports-color
optional: true
+ '@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2)':
+ dependencies:
+ '@typescript-eslint/scope-manager': 8.14.0
+ '@typescript-eslint/types': 8.14.0
+ '@typescript-eslint/typescript-estree': 8.14.0(typescript@5.5.2)
+ '@typescript-eslint/visitor-keys': 8.14.0
+ debug: 4.3.7(supports-color@8.1.1)
+ eslint: 9.5.0
+ optionalDependencies:
+ typescript: 5.5.2
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
'@typescript-eslint/parser@8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)':
dependencies:
'@typescript-eslint/scope-manager': 8.14.0
@@ -39532,42 +39890,18 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/type-utils@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)':
+ '@typescript-eslint/type-utils@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2)':
dependencies:
'@typescript-eslint/typescript-estree': 7.13.1(typescript@5.5.2)
- '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
+ '@typescript-eslint/utils': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2)
debug: 4.3.7(supports-color@8.1.1)
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
ts-api-utils: 1.3.0(typescript@5.5.2)
optionalDependencies:
typescript: 5.5.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/type-utils@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)':
- dependencies:
- '@typescript-eslint/typescript-estree': 7.13.1(typescript@5.5.4)
- '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
- debug: 4.3.7(supports-color@8.1.1)
- eslint: 9.12.0(jiti@1.21.0)
- ts-api-utils: 1.3.0(typescript@5.5.4)
- optionalDependencies:
- typescript: 5.5.4
- transitivePeerDependencies:
- - supports-color
-
- '@typescript-eslint/type-utils@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)':
- dependencies:
- '@typescript-eslint/typescript-estree': 7.13.1(typescript@5.6.3)
- '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
- debug: 4.3.7(supports-color@8.1.1)
- eslint: 9.12.0(jiti@1.21.0)
- ts-api-utils: 1.3.0(typescript@5.6.3)
- optionalDependencies:
- typescript: 5.6.3
- transitivePeerDependencies:
- - supports-color
-
'@typescript-eslint/type-utils@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)':
dependencies:
'@typescript-eslint/typescript-estree': 7.13.1(typescript@5.5.4)
@@ -39579,7 +39913,6 @@ snapshots:
typescript: 5.5.4
transitivePeerDependencies:
- supports-color
- optional: true
'@typescript-eslint/type-utils@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)':
dependencies:
@@ -39592,7 +39925,6 @@ snapshots:
typescript: 5.6.3
transitivePeerDependencies:
- supports-color
- optional: true
'@typescript-eslint/type-utils@7.13.1(eslint@9.5.0)(typescript@5.5.2)':
dependencies:
@@ -39836,6 +40168,22 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/typescript-estree@8.14.0(typescript@5.5.2)':
+ dependencies:
+ '@typescript-eslint/types': 8.14.0
+ '@typescript-eslint/visitor-keys': 8.14.0
+ debug: 4.3.7(supports-color@8.1.1)
+ fast-glob: 3.3.2
+ is-glob: 4.0.3
+ minimatch: 9.0.5
+ semver: 7.6.3
+ ts-api-utils: 1.3.0(typescript@5.5.2)
+ optionalDependencies:
+ typescript: 5.5.2
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
'@typescript-eslint/typescript-estree@8.14.0(typescript@5.5.4)':
dependencies:
'@typescript-eslint/types': 8.14.0
@@ -39912,45 +40260,45 @@ snapshots:
- supports-color
- typescript
- '@typescript-eslint/utils@5.62.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)':
+ '@typescript-eslint/utils@5.62.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@1.21.0))
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.13.0(jiti@1.21.0))
'@types/json-schema': 7.0.15
'@types/semver': 7.5.8
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
'@typescript-eslint/typescript-estree': 5.62.0(typescript@5.5.2)
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
eslint-scope: 5.1.1
semver: 7.6.3
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/utils@5.62.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)':
+ '@typescript-eslint/utils@5.62.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@1.21.0))
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.13.0(jiti@1.21.0))
'@types/json-schema': 7.0.15
'@types/semver': 7.5.8
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
'@typescript-eslint/typescript-estree': 5.62.0(typescript@5.5.4)
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
eslint-scope: 5.1.1
semver: 7.6.3
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/utils@5.62.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)':
+ '@typescript-eslint/utils@5.62.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@1.21.0))
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.13.0(jiti@1.21.0))
'@types/json-schema': 7.0.15
'@types/semver': 7.5.8
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
'@typescript-eslint/typescript-estree': 5.62.0(typescript@5.6.3)
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
eslint-scope: 5.1.1
semver: 7.6.3
transitivePeerDependencies:
@@ -39971,35 +40319,13 @@ snapshots:
- supports-color
- typescript
- '@typescript-eslint/utils@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)':
+ '@typescript-eslint/utils@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@1.21.0))
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.13.0(jiti@1.21.0))
'@typescript-eslint/scope-manager': 7.13.1
'@typescript-eslint/types': 7.13.1
'@typescript-eslint/typescript-estree': 7.13.1(typescript@5.5.2)
- eslint: 9.12.0(jiti@1.21.0)
- transitivePeerDependencies:
- - supports-color
- - typescript
-
- '@typescript-eslint/utils@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)':
- dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@1.21.0))
- '@typescript-eslint/scope-manager': 7.13.1
- '@typescript-eslint/types': 7.13.1
- '@typescript-eslint/typescript-estree': 7.13.1(typescript@5.5.4)
- eslint: 9.12.0(jiti@1.21.0)
- transitivePeerDependencies:
- - supports-color
- - typescript
-
- '@typescript-eslint/utils@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)':
- dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@1.21.0))
- '@typescript-eslint/scope-manager': 7.13.1
- '@typescript-eslint/types': 7.13.1
- '@typescript-eslint/typescript-estree': 7.13.1(typescript@5.6.3)
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
transitivePeerDependencies:
- supports-color
- typescript
@@ -40014,7 +40340,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- typescript
- optional: true
'@typescript-eslint/utils@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)':
dependencies:
@@ -40026,7 +40351,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- typescript
- optional: true
'@typescript-eslint/utils@7.13.1(eslint@9.5.0)(typescript@5.5.2)':
dependencies:
@@ -40488,7 +40812,7 @@ snapshots:
'@vue/compiler-core@3.4.34':
dependencies:
- '@babel/parser': 7.25.3
+ '@babel/parser': 7.25.8
'@vue/shared': 3.4.34
entities: 4.5.0
estree-walker: 2.0.2
@@ -41333,7 +41657,7 @@ snapshots:
'@wormhole-foundation/sdk-base@0.10.7':
dependencies:
- '@scure/base': 1.1.7
+ '@scure/base': 1.2.1
'@wormhole-foundation/sdk-definitions@0.10.7':
dependencies:
@@ -41457,6 +41781,11 @@ snapshots:
typescript: 5.5.2
zod: 3.23.8
+ abitype@1.0.7(typescript@5.6.3)(zod@3.23.8):
+ optionalDependencies:
+ typescript: 5.6.3
+ zod: 3.23.8
+
abort-controller@3.0.0:
dependencies:
event-target-shim: 5.0.1
@@ -41602,9 +41931,9 @@ snapshots:
clean-stack: 2.2.0
indent-string: 4.0.0
- ajv-draft-04@1.0.0(ajv@8.16.0):
+ ajv-draft-04@1.0.0(ajv@8.17.1):
optionalDependencies:
- ajv: 8.16.0
+ ajv: 8.17.1
ajv-formats@2.1.1(ajv@8.11.2):
optionalDependencies:
@@ -41644,13 +41973,6 @@ snapshots:
require-from-string: 2.0.2
uri-js: 4.4.1
- ajv@8.16.0:
- dependencies:
- fast-deep-equal: 3.1.3
- json-schema-traverse: 1.0.0
- require-from-string: 2.0.2
- uri-js: 4.4.1
-
ajv@8.17.1:
dependencies:
fast-deep-equal: 3.1.3
@@ -41902,6 +42224,10 @@ snapshots:
argsarray@0.0.1:
optional: true
+ aria-hidden@1.2.4:
+ dependencies:
+ tslib: 2.8.0
+
aria-query@5.3.0:
dependencies:
dequal: 2.0.3
@@ -42174,7 +42500,7 @@ snapshots:
axios@0.27.2:
dependencies:
follow-redirects: 1.15.6(debug@4.3.7)
- form-data: 4.0.0
+ form-data: 4.0.1
transitivePeerDependencies:
- debug
@@ -42189,7 +42515,7 @@ snapshots:
axios@1.6.0:
dependencies:
follow-redirects: 1.15.6(debug@4.3.7)
- form-data: 4.0.0
+ form-data: 4.0.1
proxy-from-env: 1.1.0
transitivePeerDependencies:
- debug
@@ -42205,7 +42531,7 @@ snapshots:
axios@1.7.2:
dependencies:
follow-redirects: 1.15.6(debug@4.3.7)
- form-data: 4.0.0
+ form-data: 4.0.1
proxy-from-env: 1.1.0
transitivePeerDependencies:
- debug
@@ -42213,7 +42539,7 @@ snapshots:
axios@1.7.3:
dependencies:
follow-redirects: 1.15.6(debug@4.3.7)
- form-data: 4.0.0
+ form-data: 4.0.1
proxy-from-env: 1.1.0
transitivePeerDependencies:
- debug
@@ -42298,14 +42624,14 @@ snapshots:
babel-plugin-jest-hoist@29.6.3:
dependencies:
- '@babel/template': 7.25.0
- '@babel/types': 7.25.2
+ '@babel/template': 7.25.7
+ '@babel/types': 7.25.8
'@types/babel__core': 7.20.5
'@types/babel__traverse': 7.20.6
babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.24.0):
dependencies:
- '@babel/compat-data': 7.24.7
+ '@babel/compat-data': 7.25.8
'@babel/core': 7.24.0
'@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.24.0)
semver: 6.3.1
@@ -42314,7 +42640,7 @@ snapshots:
babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.25.8):
dependencies:
- '@babel/compat-data': 7.24.7
+ '@babel/compat-data': 7.25.8
'@babel/core': 7.25.8
'@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.25.8)
semver: 6.3.1
@@ -42323,7 +42649,7 @@ snapshots:
babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.0):
dependencies:
- '@babel/compat-data': 7.24.7
+ '@babel/compat-data': 7.25.8
'@babel/core': 7.24.0
'@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.0)
semver: 6.3.1
@@ -42332,7 +42658,7 @@ snapshots:
babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.7):
dependencies:
- '@babel/compat-data': 7.24.7
+ '@babel/compat-data': 7.25.8
'@babel/core': 7.24.7
'@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.7)
semver: 6.3.1
@@ -42341,7 +42667,7 @@ snapshots:
babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.25.8):
dependencies:
- '@babel/compat-data': 7.24.7
+ '@babel/compat-data': 7.25.8
'@babel/core': 7.25.8
'@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.8)
semver: 6.3.1
@@ -42352,7 +42678,7 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.0)
- core-js-compat: 3.37.1
+ core-js-compat: 3.38.0
transitivePeerDependencies:
- supports-color
@@ -42360,7 +42686,7 @@ snapshots:
dependencies:
'@babel/core': 7.24.7
'@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.7)
- core-js-compat: 3.37.1
+ core-js-compat: 3.38.0
transitivePeerDependencies:
- supports-color
@@ -42368,7 +42694,7 @@ snapshots:
dependencies:
'@babel/core': 7.25.8
'@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.8)
- core-js-compat: 3.37.1
+ core-js-compat: 3.38.0
transitivePeerDependencies:
- supports-color
@@ -42400,7 +42726,7 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.24.0)
- core-js-compat: 3.27.2
+ core-js-compat: 3.38.0
transitivePeerDependencies:
- supports-color
@@ -42408,7 +42734,7 @@ snapshots:
dependencies:
'@babel/core': 7.25.8
'@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.25.8)
- core-js-compat: 3.27.2
+ core-js-compat: 3.38.0
transitivePeerDependencies:
- supports-color
@@ -42450,8 +42776,8 @@ snapshots:
babel-plugin-styled-components@2.1.4(@babel/core@7.24.7)(styled-components@5.3.11(@babel/core@7.24.7)(react-dom@19.0.0(react@19.0.0))(react-is@18.3.1)(react@19.0.0))(supports-color@5.5.0):
dependencies:
'@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-module-imports': 7.24.7(supports-color@5.5.0)
- '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.7)
+ '@babel/helper-module-imports': 7.25.7(supports-color@5.5.0)
+ '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.24.7)
lodash: 4.17.21
picomatch: 2.3.1
styled-components: 5.3.11(@babel/core@7.24.7)(react-dom@19.0.0(react@19.0.0))(react-is@18.3.1)(react@19.0.0)
@@ -42817,13 +43143,6 @@ snapshots:
node-releases: 2.0.14
update-browserslist-db: 1.0.16(browserslist@4.23.1)
- browserslist@4.23.3:
- dependencies:
- caniuse-lite: 1.0.30001669
- electron-to-chromium: 1.5.6
- node-releases: 2.0.18
- update-browserslist-db: 1.1.0(browserslist@4.23.3)
-
browserslist@4.24.0:
dependencies:
caniuse-lite: 1.0.30001669
@@ -43308,6 +43627,10 @@ snapshots:
class-is@1.1.0: {}
+ class-variance-authority@0.7.1:
+ dependencies:
+ clsx: 2.1.1
+
clean-css@5.3.3:
dependencies:
source-map: 0.6.1
@@ -43712,17 +44035,13 @@ snapshots:
untildify: 4.0.0
yargs: 16.2.0
- core-js-compat@3.27.2:
- dependencies:
- browserslist: 4.24.0
-
core-js-compat@3.37.1:
dependencies:
- browserslist: 4.23.1
+ browserslist: 4.24.0
core-js-compat@3.38.0:
dependencies:
- browserslist: 4.23.3
+ browserslist: 4.24.0
core-js-pure@3.38.1: {}
@@ -44445,8 +44764,6 @@ snapshots:
deep-is@0.1.4: {}
- deepmerge@4.3.0: {}
-
deepmerge@4.3.1: {}
defaults@1.0.4:
@@ -44524,6 +44841,8 @@ snapshots:
detect-newline@3.1.0: {}
+ detect-node-es@1.1.0: {}
+
detect-port-alt@1.1.6:
dependencies:
address: 1.2.2
@@ -44800,8 +45119,6 @@ snapshots:
electron-to-chromium@1.5.41: {}
- electron-to-chromium@1.5.6: {}
-
elliptic@6.5.4:
dependencies:
bn.js: 4.12.0
@@ -44901,11 +45218,6 @@ snapshots:
engine.io-parser@5.2.2: {}
- enhanced-resolve@5.17.0:
- dependencies:
- graceful-fs: 4.2.11
- tapable: 2.2.1
-
enhanced-resolve@5.17.1:
dependencies:
graceful-fs: 4.2.11
@@ -44922,8 +45234,6 @@ snapshots:
entities@2.2.0: {}
- entities@4.4.0: {}
-
entities@4.5.0: {}
env-paths@2.2.1: {}
@@ -45254,9 +45564,9 @@ snapshots:
optionalDependencies:
source-map: 0.6.1
- eslint-compat-utils@0.5.1(eslint@9.12.0(jiti@1.21.0)):
+ eslint-compat-utils@0.5.1(eslint@9.13.0(jiti@1.21.0)):
dependencies:
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
semver: 7.6.3
eslint-config-next@14.2.3(eslint@8.56.0)(typescript@5.4.5):
@@ -45281,19 +45591,19 @@ snapshots:
dependencies:
eslint: 8.57.0
- eslint-config-prettier@9.1.0(eslint@9.12.0(jiti@1.21.0)):
+ eslint-config-prettier@9.1.0(eslint@9.13.0(jiti@1.21.0)):
dependencies:
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
- eslint-config-turbo@2.2.3(eslint@9.12.0(jiti@1.21.0)):
+ eslint-config-turbo@2.2.3(eslint@9.13.0(jiti@1.21.0)):
dependencies:
- eslint: 9.12.0(jiti@1.21.0)
- eslint-plugin-turbo: 2.2.3(eslint@9.12.0(jiti@1.21.0))
+ eslint: 9.13.0(jiti@1.21.0)
+ eslint-plugin-turbo: 2.2.3(eslint@9.13.0(jiti@1.21.0))
eslint-import-resolver-node@0.3.9:
dependencies:
debug: 3.2.7
- is-core-module: 2.13.1
+ is-core-module: 2.15.1
resolve: 1.22.8
transitivePeerDependencies:
- supports-color
@@ -45301,13 +45611,13 @@ snapshots:
eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.13.1(eslint@8.56.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.56.0):
dependencies:
debug: 4.3.7(supports-color@8.1.1)
- enhanced-resolve: 5.17.0
+ enhanced-resolve: 5.17.1
eslint: 8.56.0
eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.13.1(eslint@8.56.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0)
eslint-plugin-import: 2.29.1(@typescript-eslint/parser@8.14.0(eslint@8.56.0)(typescript@5.4.5))(eslint@8.56.0)
fast-glob: 3.3.2
get-tsconfig: 4.7.5
- is-core-module: 2.13.1
+ is-core-module: 2.15.1
is-glob: 4.0.3
transitivePeerDependencies:
- '@typescript-eslint/parser'
@@ -45326,64 +45636,74 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.8.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0)):
+ eslint-module-utils@2.8.1(@typescript-eslint/parser@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint@9.13.0(jiti@1.21.0)):
dependencies:
debug: 3.2.7
optionalDependencies:
- '@typescript-eslint/parser': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
- eslint: 9.12.0(jiti@1.21.0)
+ '@typescript-eslint/parser': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
+ eslint: 9.13.0(jiti@1.21.0)
eslint-import-resolver-node: 0.3.9
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0)):
+ eslint-module-utils@2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.13.0(jiti@1.21.0)):
dependencies:
debug: 3.2.7
optionalDependencies:
'@typescript-eslint/parser': 8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
eslint-import-resolver-node: 0.3.9
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0)):
+ eslint-module-utils@2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint@9.13.0(jiti@1.21.0)):
dependencies:
debug: 3.2.7
optionalDependencies:
'@typescript-eslint/parser': 8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
eslint-import-resolver-node: 0.3.9
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0)):
+ eslint-module-utils@2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint@9.13.0(jiti@1.21.0)):
+ dependencies:
+ debug: 3.2.7
+ optionalDependencies:
+ '@typescript-eslint/parser': 8.14.0(eslint@9.5.0)(typescript@5.5.2)
+ eslint: 9.13.0(jiti@1.21.0)
+ eslint-import-resolver-node: 0.3.9
+ transitivePeerDependencies:
+ - supports-color
+
+ eslint-module-utils@2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.13.0(jiti@1.21.0)):
dependencies:
debug: 3.2.7
optionalDependencies:
'@typescript-eslint/parser': 8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
eslint-import-resolver-node: 0.3.9
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.8.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0)):
+ eslint-module-utils@2.8.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.13.0(jiti@1.21.0)):
dependencies:
debug: 3.2.7
optionalDependencies:
'@typescript-eslint/parser': 8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
eslint-import-resolver-node: 0.3.9
transitivePeerDependencies:
- supports-color
- eslint-plugin-es-x@7.7.0(eslint@9.12.0(jiti@1.21.0)):
+ eslint-plugin-es-x@7.7.0(eslint@9.13.0(jiti@1.21.0)):
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@1.21.0))
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.13.0(jiti@1.21.0))
'@eslint-community/regexpp': 4.11.0
- eslint: 9.12.0(jiti@1.21.0)
- eslint-compat-utils: 0.5.1(eslint@9.12.0(jiti@1.21.0))
+ eslint: 9.13.0(jiti@1.21.0)
+ eslint-compat-utils: 0.5.1(eslint@9.13.0(jiti@1.21.0))
- eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.12.0(jiti@1.21.0)):
+ eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0)):
dependencies:
array-includes: 3.1.8
array.prototype.findlastindex: 1.2.5
@@ -45391,9 +45711,9 @@ snapshots:
array.prototype.flatmap: 1.3.2
debug: 3.2.7
doctrine: 2.1.0
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0))
+ eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint@9.13.0(jiti@1.21.0))
hasown: 2.0.2
is-core-module: 2.15.1
is-glob: 4.0.3
@@ -45404,7 +45724,7 @@ snapshots:
semver: 6.3.1
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
+ '@typescript-eslint/parser': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
@@ -45437,7 +45757,7 @@ snapshots:
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-import@2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0)):
+ eslint-plugin-import@2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0)):
dependencies:
array-includes: 3.1.8
array.prototype.findlastindex: 1.2.5
@@ -45445,9 +45765,9 @@ snapshots:
array.prototype.flatmap: 1.3.2
debug: 3.2.7
doctrine: 2.1.0
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0))
+ eslint-module-utils: 2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.13.0(jiti@1.21.0))
hasown: 2.0.2
is-core-module: 2.15.1
is-glob: 4.0.3
@@ -45464,7 +45784,7 @@ snapshots:
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-import@2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.12.0(jiti@1.21.0)):
+ eslint-plugin-import@2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0)):
dependencies:
array-includes: 3.1.8
array.prototype.findlastindex: 1.2.5
@@ -45472,9 +45792,9 @@ snapshots:
array.prototype.flatmap: 1.3.2
debug: 3.2.7
doctrine: 2.1.0
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0))
+ eslint-module-utils: 2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint@9.13.0(jiti@1.21.0))
hasown: 2.0.2
is-core-module: 2.15.1
is-glob: 4.0.3
@@ -45491,7 +45811,34 @@ snapshots:
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-import@2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0)):
+ eslint-plugin-import@2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(eslint@9.13.0(jiti@1.21.0)):
+ dependencies:
+ array-includes: 3.1.8
+ array.prototype.findlastindex: 1.2.5
+ array.prototype.flat: 1.3.2
+ array.prototype.flatmap: 1.3.2
+ debug: 3.2.7
+ doctrine: 2.1.0
+ eslint: 9.13.0(jiti@1.21.0)
+ eslint-import-resolver-node: 0.3.9
+ eslint-module-utils: 2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint@9.13.0(jiti@1.21.0))
+ hasown: 2.0.2
+ is-core-module: 2.15.1
+ is-glob: 4.0.3
+ minimatch: 3.1.2
+ object.fromentries: 2.0.8
+ object.groupby: 1.0.3
+ object.values: 1.2.0
+ semver: 6.3.1
+ tsconfig-paths: 3.15.0
+ optionalDependencies:
+ '@typescript-eslint/parser': 8.14.0(eslint@9.5.0)(typescript@5.5.2)
+ transitivePeerDependencies:
+ - eslint-import-resolver-typescript
+ - eslint-import-resolver-webpack
+ - supports-color
+
+ eslint-plugin-import@2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0)):
dependencies:
array-includes: 3.1.8
array.prototype.findlastindex: 1.2.5
@@ -45499,9 +45846,9 @@ snapshots:
array.prototype.flatmap: 1.3.2
debug: 3.2.7
doctrine: 2.1.0
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0))
+ eslint-module-utils: 2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.13.0(jiti@1.21.0))
hasown: 2.0.2
is-core-module: 2.15.1
is-glob: 4.0.3
@@ -45518,7 +45865,7 @@ snapshots:
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-import@2.29.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0)):
+ eslint-plugin-import@2.29.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0)):
dependencies:
array-includes: 3.1.8
array.prototype.findlastindex: 1.2.5
@@ -45526,9 +45873,9 @@ snapshots:
array.prototype.flatmap: 1.3.2
debug: 3.2.7
doctrine: 2.1.0
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0))
+ eslint-module-utils: 2.8.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.13.0(jiti@1.21.0))
hasown: 2.0.2
is-core-module: 2.15.1
is-glob: 4.0.3
@@ -45545,29 +45892,29 @@ snapshots:
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-jest-dom@5.4.0(@testing-library/dom@10.4.0)(eslint@9.12.0(jiti@1.21.0)):
+ eslint-plugin-jest-dom@5.4.0(@testing-library/dom@10.4.0)(eslint@9.13.0(jiti@1.21.0)):
dependencies:
'@babel/runtime': 7.25.7
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
requireindex: 1.2.0
optionalDependencies:
'@testing-library/dom': 10.4.0
- eslint-plugin-jest@28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(typescript@5.5.2):
+ eslint-plugin-jest@28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))(typescript@5.6.3):
dependencies:
- '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
- eslint: 9.12.0(jiti@1.21.0)
+ '@typescript-eslint/utils': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
+ eslint: 9.13.0(jiti@1.21.0)
optionalDependencies:
- '@typescript-eslint/eslint-plugin': 7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2)
- jest: 29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))
+ '@typescript-eslint/eslint-plugin': 7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
+ jest: 29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-jest@28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@18.19.57)(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4)))(typescript@5.5.4):
+ eslint-plugin-jest@28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(jest@29.7.0(@types/node@18.19.57)(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4)))(typescript@5.5.4):
dependencies:
- '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
- eslint: 9.12.0(jiti@1.21.0)
+ '@typescript-eslint/utils': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
+ eslint: 9.13.0(jiti@1.21.0)
optionalDependencies:
'@typescript-eslint/eslint-plugin': 7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
jest: 29.7.0(@types/node@18.19.57)(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4))
@@ -45575,10 +45922,10 @@ snapshots:
- supports-color
- typescript
- eslint-plugin-jest@28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))(typescript@5.6.3):
+ eslint-plugin-jest@28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))(typescript@5.6.3):
dependencies:
- '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
- eslint: 9.12.0(jiti@1.21.0)
+ '@typescript-eslint/utils': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
+ eslint: 9.13.0(jiti@1.21.0)
optionalDependencies:
'@typescript-eslint/eslint-plugin': 7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
jest: 29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))
@@ -45586,10 +45933,21 @@ snapshots:
- supports-color
- typescript
- eslint-plugin-jest@28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))(typescript@5.5.4):
+ eslint-plugin-jest@28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2))(eslint@9.13.0(jiti@1.21.0))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(typescript@5.5.2):
dependencies:
- '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
- eslint: 9.12.0(jiti@1.21.0)
+ '@typescript-eslint/utils': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2)
+ eslint: 9.13.0(jiti@1.21.0)
+ optionalDependencies:
+ '@typescript-eslint/eslint-plugin': 7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2)
+ jest: 29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+
+ eslint-plugin-jest@28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))(typescript@5.5.4):
+ dependencies:
+ '@typescript-eslint/utils': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
+ eslint: 9.13.0(jiti@1.21.0)
optionalDependencies:
'@typescript-eslint/eslint-plugin': 7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)
jest: 29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))
@@ -45597,10 +45955,10 @@ snapshots:
- supports-color
- typescript
- eslint-plugin-jest@28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))(typescript@5.5.4):
+ eslint-plugin-jest@28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))(typescript@5.5.4):
dependencies:
- '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
- eslint: 9.12.0(jiti@1.21.0)
+ '@typescript-eslint/utils': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
+ eslint: 9.13.0(jiti@1.21.0)
optionalDependencies:
'@typescript-eslint/eslint-plugin': 7.13.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)
jest: 29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))
@@ -45608,11 +45966,11 @@ snapshots:
- supports-color
- typescript
- eslint-plugin-jsonc@2.16.0(eslint@9.12.0(jiti@1.21.0)):
+ eslint-plugin-jsonc@2.16.0(eslint@9.13.0(jiti@1.21.0)):
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@1.21.0))
- eslint: 9.12.0(jiti@1.21.0)
- eslint-compat-utils: 0.5.1(eslint@9.12.0(jiti@1.21.0))
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.13.0(jiti@1.21.0))
+ eslint: 9.13.0(jiti@1.21.0)
+ eslint-compat-utils: 0.5.1(eslint@9.13.0(jiti@1.21.0))
espree: 9.6.1
graphemer: 1.4.0
jsonc-eslint-parser: 2.4.0
@@ -45639,7 +45997,7 @@ snapshots:
object.entries: 1.1.8
object.fromentries: 2.0.8
- eslint-plugin-jsx-a11y@6.8.0(eslint@9.12.0(jiti@1.21.0)):
+ eslint-plugin-jsx-a11y@6.8.0(eslint@9.13.0(jiti@1.21.0)):
dependencies:
'@babel/runtime': 7.25.7
aria-query: 5.3.2
@@ -45651,7 +46009,7 @@ snapshots:
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
es-iterator-helpers: 1.0.19
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
hasown: 2.0.2
jsx-ast-utils: 3.3.5
language-tags: 1.0.9
@@ -45659,12 +46017,12 @@ snapshots:
object.entries: 1.1.8
object.fromentries: 2.0.8
- eslint-plugin-n@17.9.0(eslint@9.12.0(jiti@1.21.0)):
+ eslint-plugin-n@17.9.0(eslint@9.13.0(jiti@1.21.0)):
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@1.21.0))
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.13.0(jiti@1.21.0))
enhanced-resolve: 5.17.1
- eslint: 9.12.0(jiti@1.21.0)
- eslint-plugin-es-x: 7.7.0(eslint@9.12.0(jiti@1.21.0))
+ eslint: 9.13.0(jiti@1.21.0)
+ eslint-plugin-es-x: 7.7.0(eslint@9.13.0(jiti@1.21.0))
get-tsconfig: 4.7.5
globals: 15.6.0
ignore: 5.3.2
@@ -45675,9 +46033,9 @@ snapshots:
dependencies:
eslint: 8.56.0
- eslint-plugin-react-hooks@4.6.2(eslint@9.12.0(jiti@1.21.0)):
+ eslint-plugin-react-hooks@4.6.2(eslint@9.13.0(jiti@1.21.0)):
dependencies:
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
eslint-plugin-react@7.34.2(eslint@8.56.0):
dependencies:
@@ -45701,7 +46059,7 @@ snapshots:
semver: 6.3.1
string.prototype.matchall: 4.0.11
- eslint-plugin-react@7.34.2(eslint@9.12.0(jiti@1.21.0)):
+ eslint-plugin-react@7.34.2(eslint@9.13.0(jiti@1.21.0)):
dependencies:
array-includes: 3.1.8
array.prototype.findlast: 1.2.5
@@ -45710,7 +46068,7 @@ snapshots:
array.prototype.tosorted: 1.1.4
doctrine: 2.1.0
es-iterator-helpers: 1.0.19
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
estraverse: 5.3.0
jsx-ast-utils: 3.3.5
minimatch: 3.1.2
@@ -45723,33 +46081,33 @@ snapshots:
semver: 6.3.1
string.prototype.matchall: 4.0.11
- eslint-plugin-storybook@0.8.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2):
+ eslint-plugin-storybook@0.8.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2):
dependencies:
'@storybook/csf': 0.0.1
- '@typescript-eslint/utils': 5.62.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
- eslint: 9.12.0(jiti@1.21.0)
+ '@typescript-eslint/utils': 5.62.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2)
+ eslint: 9.13.0(jiti@1.21.0)
requireindex: 1.2.0
ts-dedent: 2.2.0
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-storybook@0.8.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4):
+ eslint-plugin-storybook@0.8.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4):
dependencies:
'@storybook/csf': 0.0.1
- '@typescript-eslint/utils': 5.62.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
- eslint: 9.12.0(jiti@1.21.0)
+ '@typescript-eslint/utils': 5.62.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
+ eslint: 9.13.0(jiti@1.21.0)
requireindex: 1.2.0
ts-dedent: 2.2.0
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-storybook@0.8.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3):
+ eslint-plugin-storybook@0.8.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3):
dependencies:
'@storybook/csf': 0.0.1
- '@typescript-eslint/utils': 5.62.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
- eslint: 9.12.0(jiti@1.21.0)
+ '@typescript-eslint/utils': 5.62.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
+ eslint: 9.13.0(jiti@1.21.0)
requireindex: 1.2.0
ts-dedent: 2.2.0
transitivePeerDependencies:
@@ -45780,26 +46138,26 @@ snapshots:
postcss: 8.4.47
tailwindcss: 3.4.14(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))
- eslint-plugin-testing-library@6.2.2(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2):
+ eslint-plugin-testing-library@6.2.2(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2):
dependencies:
- '@typescript-eslint/utils': 5.62.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
- eslint: 9.12.0(jiti@1.21.0)
+ '@typescript-eslint/utils': 5.62.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2)
+ eslint: 9.13.0(jiti@1.21.0)
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-testing-library@6.2.2(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4):
+ eslint-plugin-testing-library@6.2.2(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4):
dependencies:
- '@typescript-eslint/utils': 5.62.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
- eslint: 9.12.0(jiti@1.21.0)
+ '@typescript-eslint/utils': 5.62.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
+ eslint: 9.13.0(jiti@1.21.0)
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-testing-library@6.2.2(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3):
+ eslint-plugin-testing-library@6.2.2(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3):
dependencies:
- '@typescript-eslint/utils': 5.62.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
- eslint: 9.12.0(jiti@1.21.0)
+ '@typescript-eslint/utils': 5.62.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
+ eslint: 9.13.0(jiti@1.21.0)
transitivePeerDependencies:
- supports-color
- typescript
@@ -45809,20 +46167,20 @@ snapshots:
'@microsoft/tsdoc': 0.15.0
'@microsoft/tsdoc-config': 0.17.0
- eslint-plugin-turbo@2.2.3(eslint@9.12.0(jiti@1.21.0)):
+ eslint-plugin-turbo@2.2.3(eslint@9.13.0(jiti@1.21.0)):
dependencies:
dotenv: 16.0.3
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
- eslint-plugin-unicorn@53.0.0(eslint@9.12.0(jiti@1.21.0)):
+ eslint-plugin-unicorn@53.0.0(eslint@9.13.0(jiti@1.21.0)):
dependencies:
'@babel/helper-validator-identifier': 7.25.7
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@1.21.0))
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.13.0(jiti@1.21.0))
'@eslint/eslintrc': 3.1.0
ci-info: 4.0.0
clean-regexp: 1.0.0
core-js-compat: 3.38.0
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
esquery: 1.5.0
indent-string: 4.0.0
is-builtin-module: 3.2.1
@@ -45965,48 +46323,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint@9.12.0(jiti@1.21.0):
- dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@1.21.0))
- '@eslint-community/regexpp': 4.11.0
- '@eslint/config-array': 0.18.0
- '@eslint/core': 0.6.0
- '@eslint/eslintrc': 3.1.0
- '@eslint/js': 9.12.0
- '@eslint/plugin-kit': 0.2.0
- '@humanfs/node': 0.16.5
- '@humanwhocodes/module-importer': 1.0.1
- '@humanwhocodes/retry': 0.3.1
- '@types/estree': 1.0.6
- '@types/json-schema': 7.0.15
- ajv: 6.12.6
- chalk: 4.1.2
- cross-spawn: 7.0.3
- debug: 4.3.7(supports-color@8.1.1)
- escape-string-regexp: 4.0.0
- eslint-scope: 8.1.0
- eslint-visitor-keys: 4.1.0
- espree: 10.2.0
- esquery: 1.5.0
- esutils: 2.0.3
- fast-deep-equal: 3.1.3
- file-entry-cache: 8.0.0
- find-up: 5.0.0
- glob-parent: 6.0.2
- ignore: 5.3.2
- imurmurhash: 0.1.4
- is-glob: 4.0.3
- json-stable-stringify-without-jsonify: 1.0.1
- lodash.merge: 4.6.2
- minimatch: 3.1.2
- natural-compare: 1.4.0
- optionator: 0.9.3
- text-table: 0.2.0
- optionalDependencies:
- jiti: 1.21.0
- transitivePeerDependencies:
- - supports-color
-
eslint@9.13.0(jiti@1.21.0):
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@9.13.0(jiti@1.21.0))
@@ -46348,7 +46664,7 @@ snapshots:
ethereum-bloom-filters@1.2.0:
dependencies:
- '@noble/hashes': 1.5.0
+ '@noble/hashes': 1.6.1
ethereum-common@0.0.18: {}
@@ -47484,6 +47800,8 @@ snapshots:
has-symbols: 1.0.3
hasown: 2.0.2
+ get-nonce@1.0.1: {}
+
get-package-type@0.1.0: {}
get-pkg-repo@4.2.1:
@@ -47581,10 +47899,10 @@ snapshots:
glob@10.3.3:
dependencies:
foreground-child: 3.1.1
- jackspeak: 2.2.0
+ jackspeak: 2.3.6
minimatch: 9.0.5
minipass: 7.1.2
- path-scurry: 1.10.1
+ path-scurry: 1.11.1
glob@10.4.5:
dependencies:
@@ -47745,8 +48063,6 @@ snapshots:
- graphql
- svelte
- graceful-fs@4.2.10: {}
-
graceful-fs@4.2.11: {}
grapheme-splitter@1.0.4: {}
@@ -48030,7 +48346,7 @@ snapshots:
hast-util-to-jsx-runtime@2.3.0:
dependencies:
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
'@types/hast': 3.0.4
'@types/unist': 3.0.2
comma-separated-tokens: 2.0.3
@@ -48094,6 +48410,8 @@ snapshots:
highlight.js@11.0.1: {}
+ highlight.js@11.11.1: {}
+
highlightjs-solidity@2.0.6: {}
hmac-drbg@1.0.1:
@@ -48782,6 +49100,10 @@ snapshots:
dependencies:
ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ isows@1.0.6(ws@8.18.0(bufferutil@4.0.8)(utf-8-validate@6.0.4)):
+ dependencies:
+ ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@6.0.4)
+
isstream@0.1.2: {}
istanbul-lib-coverage@3.2.2: {}
@@ -48789,7 +49111,7 @@ snapshots:
istanbul-lib-instrument@5.2.1:
dependencies:
'@babel/core': 7.25.8
- '@babel/parser': 7.25.3
+ '@babel/parser': 7.25.8
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 6.3.1
@@ -48799,7 +49121,7 @@ snapshots:
istanbul-lib-instrument@6.0.2:
dependencies:
'@babel/core': 7.25.8
- '@babel/parser': 7.25.3
+ '@babel/parser': 7.25.8
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 7.6.3
@@ -48855,12 +49177,6 @@ snapshots:
reflect.getprototypeof: 1.0.6
set-function-name: 2.0.2
- jackspeak@2.2.0:
- dependencies:
- '@isaacs/cliui': 8.0.2
- optionalDependencies:
- '@pkgjs/parseargs': 0.11.0
-
jackspeak@2.3.6:
dependencies:
'@isaacs/cliui': 8.0.2
@@ -50214,7 +50530,7 @@ snapshots:
jest-message-util@29.7.0:
dependencies:
- '@babel/code-frame': 7.24.7
+ '@babel/code-frame': 7.25.7
'@jest/types': 29.6.3
'@types/stack-utils': 2.0.3
chalk: 4.1.2
@@ -50347,10 +50663,10 @@ snapshots:
jest-snapshot@29.7.0:
dependencies:
'@babel/core': 7.25.8
- '@babel/generator': 7.25.0
- '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.8)
- '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.25.8)
- '@babel/types': 7.25.2
+ '@babel/generator': 7.25.7
+ '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-syntax-typescript': 7.25.7(@babel/core@7.25.8)
+ '@babel/types': 7.25.8
'@jest/expect-utils': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
@@ -51469,6 +51785,10 @@ snapshots:
ltgt@2.2.1: {}
+ lucide-react@0.465.0(react@19.0.0):
+ dependencies:
+ react: 19.0.0
+
lunr@2.3.9: {}
lz-string@1.5.0: {}
@@ -52769,8 +53089,6 @@ snapshots:
node-gyp-build@4.3.0:
optional: true
- node-gyp-build@4.8.1: {}
-
node-gyp-build@4.8.2: {}
node-gyp@10.2.0:
@@ -53252,6 +53570,20 @@ snapshots:
- debug
- utf-8-validate
+ ox@0.6.5(typescript@5.6.3)(zod@3.23.8):
+ dependencies:
+ '@adraffy/ens-normalize': 1.11.0
+ '@noble/curves': 1.7.0
+ '@noble/hashes': 1.6.1
+ '@scure/bip32': 1.6.0
+ '@scure/bip39': 1.5.0
+ abitype: 1.0.7(typescript@5.6.3)(zod@3.23.8)
+ eventemitter3: 5.0.1
+ optionalDependencies:
+ typescript: 5.6.3
+ transitivePeerDependencies:
+ - zod
+
p-cancelable@2.1.1: {}
p-cancelable@3.0.0: {}
@@ -53449,7 +53781,7 @@ snapshots:
pastable@2.2.1(react@19.0.0):
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.25.8
ts-toolbelt: 9.6.0
type-fest: 3.13.1
optionalDependencies:
@@ -53495,11 +53827,6 @@ snapshots:
path-parse@1.0.7: {}
- path-scurry@1.10.1:
- dependencies:
- lru-cache: 10.4.3
- minipass: 7.1.2
-
path-scurry@1.11.1:
dependencies:
lru-cache: 10.4.3
@@ -53763,7 +54090,7 @@ snapshots:
postcss-load-config@3.1.4(postcss@8.4.38)(ts-node@10.9.2(@types/node@18.11.18)(typescript@5.4.5)):
dependencies:
- lilconfig: 2.0.6
+ lilconfig: 2.1.0
yaml: 1.10.2
optionalDependencies:
postcss: 8.4.38
@@ -54406,7 +54733,7 @@ snapshots:
unicode-properties: 1.4.1
urijs: 1.19.11
wordwrap: 1.0.0
- yaml: 2.4.5
+ yaml: 2.6.0
transitivePeerDependencies:
- encoding
@@ -54680,9 +55007,9 @@ snapshots:
react-dev-utils@12.0.1(eslint@9.13.0(jiti@1.21.0))(typescript@4.9.5)(webpack@5.91.0):
dependencies:
- '@babel/code-frame': 7.23.5
+ '@babel/code-frame': 7.25.7
address: 1.2.2
- browserslist: 4.23.1
+ browserslist: 4.24.0
chalk: 4.1.2
cross-spawn: 7.0.3
detect-port-alt: 1.1.6
@@ -55039,6 +55366,25 @@ snapshots:
react-refresh@0.14.2: {}
+ react-remove-scroll-bar@2.3.8(@types/react@19.0.1)(react@19.0.0):
+ dependencies:
+ react: 19.0.0
+ react-style-singleton: 2.2.3(@types/react@19.0.1)(react@19.0.0)
+ tslib: 2.8.0
+ optionalDependencies:
+ '@types/react': 19.0.1
+
+ react-remove-scroll@2.6.2(@types/react@19.0.1)(react@19.0.0):
+ dependencies:
+ react: 19.0.0
+ react-remove-scroll-bar: 2.3.8(@types/react@19.0.1)(react@19.0.0)
+ react-style-singleton: 2.2.3(@types/react@19.0.1)(react@19.0.0)
+ tslib: 2.8.0
+ use-callback-ref: 1.3.3(@types/react@19.0.1)(react@19.0.0)
+ use-sidecar: 1.1.3(@types/react@19.0.1)(react@19.0.0)
+ optionalDependencies:
+ '@types/react': 19.0.1
+
react-shallow-renderer@16.15.0(react@19.0.0):
dependencies:
object-assign: 4.1.1
@@ -55082,6 +55428,14 @@ snapshots:
'@react-types/shared': 3.26.0(react@19.0.0)
react: 19.0.0
+ react-style-singleton@2.2.3(@types/react@19.0.1)(react@19.0.0):
+ dependencies:
+ get-nonce: 1.0.1
+ react: 19.0.0
+ tslib: 2.8.0
+ optionalDependencies:
+ '@types/react': 19.0.1
+
react-transition-group@4.4.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
'@babel/runtime': 7.25.7
@@ -55538,7 +55892,7 @@ snapshots:
resolve@1.22.1:
dependencies:
- is-core-module: 2.13.1
+ is-core-module: 2.15.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
@@ -55550,7 +55904,7 @@ snapshots:
resolve@2.0.0-next.5:
dependencies:
- is-core-module: 2.13.1
+ is-core-module: 2.15.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
@@ -55784,7 +56138,7 @@ snapshots:
dependencies:
elliptic: 6.5.6
node-addon-api: 2.0.2
- node-gyp-build: 4.8.1
+ node-gyp-build: 4.8.2
secp256k1@5.0.0:
dependencies:
@@ -56934,10 +57288,16 @@ snapshots:
string-width: 4.2.3
strip-ansi: 6.0.1
+ tailwind-merge@2.6.0: {}
+
tailwindcss-animate@1.0.7(tailwindcss@3.4.10(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))):
dependencies:
tailwindcss: 3.4.10(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))
+ tailwindcss-animate@1.0.7(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))):
+ dependencies:
+ tailwindcss: 3.4.14(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))
+
tailwindcss-react-aria-components@1.1.5(tailwindcss@3.4.10(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))):
dependencies:
tailwindcss: 3.4.10(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))
@@ -58340,34 +58700,34 @@ snapshots:
dependencies:
typescript-logic: 0.0.0
- typescript-eslint@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2):
+ typescript-eslint@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2):
dependencies:
- '@typescript-eslint/eslint-plugin': 7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
- '@typescript-eslint/parser': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
- '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
- eslint: 9.12.0(jiti@1.21.0)
+ '@typescript-eslint/eslint-plugin': 7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2))(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2)
+ '@typescript-eslint/parser': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2)
+ '@typescript-eslint/utils': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2)
+ eslint: 9.13.0(jiti@1.21.0)
optionalDependencies:
typescript: 5.5.2
transitivePeerDependencies:
- supports-color
- typescript-eslint@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4):
+ typescript-eslint@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4):
dependencies:
- '@typescript-eslint/eslint-plugin': 7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
- '@typescript-eslint/parser': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
- '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
- eslint: 9.12.0(jiti@1.21.0)
+ '@typescript-eslint/eslint-plugin': 7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
+ '@typescript-eslint/parser': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
+ '@typescript-eslint/utils': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
+ eslint: 9.13.0(jiti@1.21.0)
optionalDependencies:
typescript: 5.5.4
transitivePeerDependencies:
- supports-color
- typescript-eslint@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3):
+ typescript-eslint@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3):
dependencies:
- '@typescript-eslint/eslint-plugin': 7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
- '@typescript-eslint/parser': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
- '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
- eslint: 9.12.0(jiti@1.21.0)
+ '@typescript-eslint/eslint-plugin': 7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
+ '@typescript-eslint/parser': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
+ '@typescript-eslint/utils': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
+ eslint: 9.13.0(jiti@1.21.0)
optionalDependencies:
typescript: 5.6.3
transitivePeerDependencies:
@@ -58594,12 +58954,6 @@ snapshots:
escalade: 3.2.0
picocolors: 1.1.1
- update-browserslist-db@1.1.0(browserslist@4.23.3):
- dependencies:
- browserslist: 4.23.3
- escalade: 3.2.0
- picocolors: 1.1.1
-
update-browserslist-db@1.1.1(browserslist@4.24.0):
dependencies:
browserslist: 4.24.0
@@ -58648,6 +59002,13 @@ snapshots:
node-addon-api: 6.1.0
node-gyp-build: 4.8.2
+ use-callback-ref@1.3.3(@types/react@19.0.1)(react@19.0.0):
+ dependencies:
+ react: 19.0.0
+ tslib: 2.8.0
+ optionalDependencies:
+ '@types/react': 19.0.1
+
use-debounce@9.0.3(react@19.0.0):
dependencies:
react: 19.0.0
@@ -58658,6 +59019,14 @@ snapshots:
optionalDependencies:
'@types/react': 19.0.1
+ use-sidecar@1.1.3(@types/react@19.0.1)(react@19.0.0):
+ dependencies:
+ detect-node-es: 1.1.0
+ react: 19.0.0
+ tslib: 2.8.0
+ optionalDependencies:
+ '@types/react': 19.0.1
+
use-sync-external-store@1.2.0(react@19.0.0):
dependencies:
react: 19.0.0
@@ -58895,6 +59264,23 @@ snapshots:
- utf-8-validate
- zod
+ viem@2.22.9(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@6.0.4)(zod@3.23.8):
+ dependencies:
+ '@noble/curves': 1.7.0
+ '@noble/hashes': 1.6.1
+ '@scure/bip32': 1.6.0
+ '@scure/bip39': 1.5.0
+ abitype: 1.0.7(typescript@5.6.3)(zod@3.23.8)
+ isows: 1.0.6(ws@8.18.0(bufferutil@4.0.8)(utf-8-validate@6.0.4))
+ ox: 0.6.5(typescript@5.6.3)(zod@3.23.8)
+ ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@6.0.4)
+ optionalDependencies:
+ typescript: 5.6.3
+ transitivePeerDependencies:
+ - bufferutil
+ - utf-8-validate
+ - zod
+
vlq@1.0.1: {}
vlq@2.0.4: {}
@@ -59503,7 +59889,7 @@ snapshots:
web3-eth-ens@4.2.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8):
dependencies:
- '@adraffy/ens-normalize': 1.10.1
+ '@adraffy/ens-normalize': 1.11.0
web3-core: 4.4.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
web3-errors: 1.1.4
web3-eth: 4.7.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8)
@@ -60189,13 +60575,13 @@ snapshots:
webauthn-p256@0.0.10:
dependencies:
- '@noble/curves': 1.6.0
- '@noble/hashes': 1.5.0
+ '@noble/curves': 1.7.0
+ '@noble/hashes': 1.6.1
webauthn-p256@0.0.5:
dependencies:
- '@noble/curves': 1.6.0
- '@noble/hashes': 1.5.0
+ '@noble/curves': 1.7.0
+ '@noble/hashes': 1.6.1
webextension-polyfill@0.10.0: {}