-
- {videoSrc.mov && }
- {videoSrc.webm && }
-
+
+
+
{bigText}
+
{littleText}
+
+
+ {videoSrc.mov && }
+ {videoSrc.webm && }
+
);
}
diff --git a/apps/lite/src/components/earn-table.tsx b/apps/lite/src/components/earn-table.tsx
index d7f7553..0c57d6b 100644
--- a/apps/lite/src/components/earn-table.tsx
+++ b/apps/lite/src/components/earn-table.tsx
@@ -11,22 +11,25 @@ import {
TableCell,
Table,
} from "@morpho-org/uikit/components/shadcn/table";
-import { TooltipProvider, Tooltip, TooltipTrigger, TooltipContent } from "@morpho-org/uikit/components/shadcn/tooltip";
+import { Tooltip, TooltipTrigger, TooltipContent } from "@morpho-org/uikit/components/shadcn/tooltip";
import { useModifierKey } from "@morpho-org/uikit/hooks/use-modifier-key";
import { formatBalanceWithSymbol, Token, formatLtv, abbreviateAddress } from "@morpho-org/uikit/lib/utils";
import { blo } from "blo";
-// @ts-expect-error: this package lacks types
import humanizeDuration from "humanize-duration";
import { ClockAlert, ExternalLink } from "lucide-react";
+import { lazy, useState } from "react";
import { Chain, hashMessage, Address, zeroAddress, formatUnits } from "viem";
-import { EarnSheetContent } from "@/components/earn-sheet-content";
import { ApyTableCell } from "@/components/table-cells/apy-table-cell";
import { type useMerklOpportunities } from "@/hooks/use-merkl-opportunities";
import { MIN_TIMELOCK } from "@/lib/constants";
import { type DisplayableCurators } from "@/lib/curators";
import { getTokenURI } from "@/lib/tokens";
+const EarnSheetContent = lazy(() =>
+ import("@/components/earn-sheet-content").then((mod) => ({ default: mod.EarnSheetContent })),
+);
+
export type Row = {
vault: AccrualVault;
isDeadDepositStateValid: boolean;
@@ -44,51 +47,49 @@ function VaultTableCell({
timelock,
}: Token & { chain: Chain | undefined; timelock: bigint }) {
return (
-
-
-
-
-
-
-
-
-
-
- {symbol ?? "-"}
- {timelock < MIN_TIMELOCK && (
-
- )}
-
-
- e.stopPropagation()}
- >
- Properties
- Timelock: {humanizeDuration(Number(timelock) * 1000)}
+
+
+
+
+
+
+
+
+
+ {symbol ?? "-"}
{timelock < MIN_TIMELOCK && (
-
- This timelock seems low. Please exercise caution and ask the curator about it if you have questions.
-
+
+ )}
+
+
+ e.stopPropagation()}
+ >
+ Properties
+ Timelock: {humanizeDuration(Number(timelock) * 1000)}
+ {timelock < MIN_TIMELOCK && (
+
+ This timelock seems low. Please exercise caution and ask the curator about it if you have questions.
+
+ )}
+
+
+
+ Vault: {abbreviateAddress(address)}
+
+ {chain?.blockExplorers?.default.url && (
+
+
+
)}
-
-
-
- Vault: {abbreviateAddress(address)}
-
- {chain?.blockExplorers?.default.url && (
-
-
-
- )}
-
-
-
-
+
+
+
);
}
@@ -100,54 +101,52 @@ function CuratorTableCell({
chain,
}: Row["curators"][string] & { chain: Chain | undefined }) {
return (
-
-
-
-
-
-
-
-
-
-
- {name}
-
-
- e.stopPropagation()}
- >
- {/* It's possible for a curator to have no onchain roles. In that case, just show their URL. */}
- {roles.length > 0 && (
- <>
- Roles
- {roles.map((role) => (
-
-
- {role.name}: {abbreviateAddress(role.address)}
-
- {chain?.blockExplorers?.default.url && (
-
-
-
- )}
-
- ))}
-
- >
- )}
- {url != null && (
-
- {url}
-
- )}
-
-
-
+
+
+
+
+
+
+
+
+
+ {name}
+
+
+ e.stopPropagation()}
+ >
+ {/* It's possible for a curator to have no onchain roles. In that case, just show their URL. */}
+ {roles.length > 0 && (
+ <>
+ Roles
+ {roles.map((role) => (
+
+
+ {role.name}: {abbreviateAddress(role.address)}
+
+ {chain?.blockExplorers?.default.url && (
+
+
+
+ )}
+
+ ))}
+
+ >
+ )}
+ {url != null && (
+
+ {url}
+
+ )}
+
+
);
}
@@ -244,55 +243,63 @@ export function EarnTable({
refetchPositions: () => void;
}) {
const isShiftHeld = useModifierKey("Shift");
+ const [selectedRow, setSelectedRow] = useState(null);
return (
-
-
-
-
- Vault
- Deposits
- Curator
- Collateral
- APY
-
-
-
- {rows.map((row) => {
- const ownerText = abbreviateAddress(row.vault.owner);
- const deposits =
- depositsMode === "userAssets"
- ? row.userShares !== undefined
- ? row.vault.toAssets(row.userShares)
- : undefined
- : row.vault.totalAssets;
+
+
{
+ if (!isOpen) {
+ setSelectedRow(null);
+ // Refetch positions on sidesheet close, since user may have sent txns to modify one
+ void refetchPositions();
+ }
+ }}
+ >
+
+
+
+ Vault
+ Deposits
+ Curator
+ Collateral
+ APY
+
+
+
+ {rows.map((row) => {
+ const ownerText = abbreviateAddress(row.vault.owner);
+ const deposits =
+ depositsMode === "userAssets"
+ ? row.userShares !== undefined
+ ? row.vault.toAssets(row.userShares)
+ : undefined
+ : row.vault.totalAssets;
- const rewardsVault = lendingRewards.get(row.vault.address) ?? [];
- const rewardsMarkets = [...row.vault.allocations.keys()].flatMap((marketId) =>
- (lendingRewards.get(marketId) ?? [])
- .map((opportunity) => {
- const proportion = parseFloat(formatUnits(row.vault.getAllocationProportion(marketId), 18));
- return {
- ...opportunity,
- apr: opportunity.apr * proportion,
- dailyRewards: opportunity.dailyRewards * proportion,
- };
- })
- .filter((opportunity) => opportunity.apr > 0),
- );
- // When a vault has vault-level rewards, use those instead of market-level rewards
- // because vault campaigns are configured specifically for the vault's allocation
- const rewards = rewardsVault.length > 0 ? rewardsVault : rewardsMarkets;
+ const rewardsVault = lendingRewards.get(row.vault.address) ?? [];
+ const rewardsMarkets = [...row.vault.allocations.keys()].flatMap((marketId) =>
+ (lendingRewards.get(marketId) ?? [])
+ .map((opportunity) => {
+ const proportion = parseFloat(formatUnits(row.vault.getAllocationProportion(marketId), 18));
+ return {
+ ...opportunity,
+ apr: opportunity.apr * proportion,
+ dailyRewards: opportunity.dailyRewards * proportion,
+ };
+ })
+ .filter((opportunity) => opportunity.apr > 0),
+ );
+ // When a vault has vault-level rewards, use those instead of market-level rewards
+ // because vault campaigns are configured specifically for the vault's allocation
+ const rewards = rewardsVault.length > 0 ? rewardsVault : rewardsMarkets;
- return (
- {
- // Refetch positions on sidesheet close, since user may have sent txns to modify one
- if (!isOpen) void refetchPositions();
- }}
- >
-
+ return (
+ setSelectedRow(row)}
+ >
-
-
- );
- })}
-
-
+ );
+ })}
+
+
+ {selectedRow && (
+
+ )}
+
);
}
diff --git a/apps/lite/src/components/morpho-menu.tsx b/apps/lite/src/components/morpho-menu.tsx
index 0fbac15..6aacd5e 100644
--- a/apps/lite/src/components/morpho-menu.tsx
+++ b/apps/lite/src/components/morpho-menu.tsx
@@ -28,7 +28,7 @@ function DropdownMenuLink({ children, href }: { children: ReactNode; href: strin
export function MorphoMenu() {
return (
-
+
diff --git a/apps/lite/src/components/table-cells/apy-table-cell.tsx b/apps/lite/src/components/table-cells/apy-table-cell.tsx
index 5558544..22585ea 100644
--- a/apps/lite/src/components/table-cells/apy-table-cell.tsx
+++ b/apps/lite/src/components/table-cells/apy-table-cell.tsx
@@ -1,5 +1,5 @@
import { SafeLink } from "@morpho-org/uikit/components/safe-link";
-import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from "@morpho-org/uikit/components/shadcn/tooltip";
+import { Tooltip, TooltipContent, TooltipTrigger } from "@morpho-org/uikit/components/shadcn/tooltip";
import { formatApy, getDomain } from "@morpho-org/uikit/lib/utils";
import { Sparkles, SignalHigh, ExternalLink, DollarSign } from "lucide-react";
import { parseUnits } from "viem";
@@ -27,58 +27,56 @@ export function ApyTableCell({
const netApy = mode === "earn" ? nativeApy - feeApy + rewardsApy : nativeApy + feeApy - rewardsApy;
return (
-
-
-
-
- {formatApy(netApy)}
- {rewards.length > 0 &&
}
+
+
+
+ {formatApy(netApy)}
+ {rewards.length > 0 && }
+
+
+ e.stopPropagation()}
+ >
+
+
+
+
+ Native APY
+
+ {formatApy(nativeApy)}
-
-
e.stopPropagation()}
- >
-
+ {rewards.map((reward) => (
+
+
+
+ {reward.rewardToken.symbol}
+ {reward.depositUrl && getDomain(reward.depositUrl) !== window.location.hostname && (
+
+ {getDomain(reward.depositUrl)}
+
+
+ )}
+
+ {mode === "earn" ? "+" : "-"}
+ {formatApy(parseUnits(reward.apr.toFixed(18), 16))}
+
+ ))}
+ {fee > 0n || mode === "earn" ? (
-
- Native APY
+
+ Performance Fee
+
{formatApy(fee)}
- {formatApy(nativeApy)}
+ {formatApy(feeApy)}
- {rewards.map((reward) => (
-
-
-
- {reward.rewardToken.symbol}
- {reward.depositUrl && getDomain(reward.depositUrl) !== window.location.hostname && (
-
- {getDomain(reward.depositUrl)}
-
-
- )}
-
- {mode === "earn" ? "+" : "-"}
- {formatApy(parseUnits(reward.apr.toFixed(18), 16))}
-
- ))}
- {fee > 0n || mode === "earn" ? (
-
-
-
- Performance Fee
-
{formatApy(fee)}
-
- {formatApy(feeApy)}
-
- ) : undefined}
-
-
-
-
+ ) : undefined}
+
+
+
);
}
diff --git a/apps/lite/src/lib/curators.ts b/apps/lite/src/lib/curators.ts
index 3a725c1..8dc8e91 100644
--- a/apps/lite/src/lib/curators.ts
+++ b/apps/lite/src/lib/curators.ts
@@ -108,7 +108,7 @@ export const ADDITIONAL_OFFCHAIN_CURATORS: Record
roles: [],
url: "https://www.cicada.partners/",
imageSrc:
- "https://static.wixstatic.com/media/f9d184_1702c7c11ec647f480ad8e0c8c4859c3~mv2.png/v1/fill/w_120,h_155,al_c,lg_1,q_85,enc_avif,quality_auto/Cicada%20Image_Black%20on%20White_25%25.png",
+ "https://static.wixstatic.com/media/f9d184_1702c7c11ec647f480ad8e0c8c4859c3~mv2.png/v1/fill/w_16,h_16,al_c,lg_1,q_85,enc_avif,quality_auto/Cicada%20Image_Black%20on%20White_25%25.png",
shouldAlwaysShow: true,
},
},
diff --git a/apps/lite/src/main.tsx b/apps/lite/src/main.tsx
index acd16b5..8d516ec 100644
--- a/apps/lite/src/main.tsx
+++ b/apps/lite/src/main.tsx
@@ -1,16 +1,19 @@
import { getChainSlug } from "@morpho-org/uikit/lib/utils";
-import "core-js/stable/array/iterator";
-import { StrictMode } from "react";
+import { StrictMode, lazy } from "react";
import { createRoot } from "react-dom/client";
import { BrowserRouter, Navigate, Outlet, Route, Routes } from "react-router";
-import "@/index.css";
-import { BorrowSubPage } from "@/app/dashboard/borrow-subpage.tsx";
-import { EarnSubPage } from "@/app/dashboard/earn-subpage.tsx";
-import Page from "@/app/dashboard/page.tsx";
import App from "@/App.tsx";
import { DEFAULT_CHAIN } from "@/lib/constants";
+const Page = lazy(() => import("@/app/dashboard/page.tsx"));
+const EarnSubPage = lazy(() =>
+ import("@/app/dashboard/earn-subpage.tsx").then((module) => ({ default: module.EarnSubPage })),
+);
+const BorrowSubPage = lazy(() =>
+ import("@/app/dashboard/borrow-subpage.tsx").then((module) => ({ default: module.BorrowSubPage })),
+);
+
createRoot(document.getElementById("root")!).render(
@@ -30,8 +33,6 @@ createRoot(document.getElementById("root")!).render(
} />
} />
- {/* } />
- } /> */}
diff --git a/apps/lite/vite.config.ts b/apps/lite/vite.config.ts
index 7c22f8e..1d1c1ba 100644
--- a/apps/lite/vite.config.ts
+++ b/apps/lite/vite.config.ts
@@ -6,7 +6,6 @@ import react from "@vitejs/plugin-react";
import { defineConfig } from "vite";
import svgr from "vite-plugin-svgr";
-// https://vite.dev/config/
export default defineConfig({
plugins: [svgr(), tailwindcss(), react()],
resolve: {
@@ -14,6 +13,23 @@ export default defineConfig({
"@": path.resolve(__dirname, "./src"),
},
},
+ build: {
+ target: "esnext",
+ minify: "esbuild",
+ terserOptions: {
+ compress: {
+ drop_console: true,
+ drop_debugger: true,
+ },
+ },
+ cssCodeSplit: true,
+ sourcemap: true,
+ reportCompressedSize: false,
+ chunkSizeWarningLimit: 1000,
+ },
+ optimizeDeps: {
+ include: ["react", "react-dom", "react-router", "wagmi", "viem", "connectkit", "@tanstack/react-query"],
+ },
test: {
include: ["./test/**/*.{test,spec}.?(c|m)[jt]s?(x)"],
environment: "jsdom",
diff --git a/packages/uikit/package.json b/packages/uikit/package.json
index 693a4d7..19c7575 100644
--- a/packages/uikit/package.json
+++ b/packages/uikit/package.json
@@ -69,7 +69,7 @@
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^4.3.4",
"blo": "^1.2.0",
- "effect": "3.13.2",
+ "effect": "3.18.1",
"eslint": "^9.21.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
diff --git a/packages/uikit/src/assets/morpho-horizontal-lite.svg b/packages/uikit/src/assets/morpho-horizontal-lite.svg
index 4ecb938..e02737e 100644
--- a/packages/uikit/src/assets/morpho-horizontal-lite.svg
+++ b/packages/uikit/src/assets/morpho-horizontal-lite.svg
@@ -1,13 +1 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
+
\ No newline at end of file
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index bca02d9..84fa8df 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -9,55 +9,55 @@ importers:
devDependencies:
"@eslint/js":
specifier: ^9.21.0
- version: 9.26.0
+ version: 9.39.1
"@morpho-org/test":
specifier: ^2.1.1
- version: 2.1.3(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(vitest@3.1.3(@types/debug@4.1.12)(@types/node@22.15.17)(jiti@2.4.2)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))
+ version: 2.6.3(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.19.1)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1))
"@testing-library/dom":
specifier: ^10.4.0
- version: 10.4.0
+ version: 10.4.1
"@testing-library/jest-dom":
specifier: ^6.6.3
- version: 6.6.3
+ version: 6.9.1
"@testing-library/react":
specifier: ^16.3.0
- version: 16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 16.3.0(@testing-library/dom@10.4.1)(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
"@testing-library/user-event":
specifier: ^14.6.1
- version: 14.6.1(@testing-library/dom@10.4.0)
+ version: 14.6.1(@testing-library/dom@10.4.1)
"@types/node":
specifier: ^22.13.1
- version: 22.15.17
+ version: 22.19.1
"@types/react":
specifier: ^19.0.10
- version: 19.1.3
+ version: 19.2.6
"@types/react-dom":
specifier: ^19.0.4
- version: 19.1.3(@types/react@19.1.3)
+ version: 19.2.3(@types/react@19.2.6)
autoprefixer:
specifier: ^10.4.20
- version: 10.4.21(postcss@8.5.3)
+ version: 10.4.22(postcss@8.5.6)
eslint:
specifier: ^9.21.0
- version: 9.26.0(jiti@2.4.2)
+ version: 9.39.1(jiti@2.6.1)
eslint-config-prettier:
specifier: ^10.0.1
- version: 10.1.5(eslint@9.26.0(jiti@2.4.2))
+ version: 10.1.8(eslint@9.39.1(jiti@2.6.1))
eslint-import-resolver-next:
specifier: ^0.4.3
version: 0.4.3
eslint-plugin-import-x:
specifier: ^4.6.1
- version: 4.11.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.7.3)
+ version: 4.16.1(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.7.3))(eslint@9.39.1(jiti@2.6.1))
eslint-plugin-prettier:
specifier: ^5.2.3
- version: 5.4.0(@types/eslint@9.6.1)(eslint-config-prettier@10.1.5(eslint@9.26.0(jiti@2.4.2)))(eslint@9.26.0(jiti@2.4.2))(prettier@3.5.0)
+ version: 5.5.4(@types/eslint@9.6.1)(eslint-config-prettier@10.1.8(eslint@9.39.1(jiti@2.6.1)))(eslint@9.39.1(jiti@2.6.1))(prettier@3.5.0)
eslint-plugin-react-hooks:
specifier: ^5.1.0
- version: 5.2.0(eslint@9.26.0(jiti@2.4.2))
+ version: 5.2.0(eslint@9.39.1(jiti@2.6.1))
eslint-plugin-react-refresh:
specifier: ^0.4.19
- version: 0.4.20(eslint@9.26.0(jiti@2.4.2))
+ version: 0.4.24(eslint@9.39.1(jiti@2.6.1))
globals:
specifier: ^15.15.0
version: 15.15.0
@@ -72,249 +72,246 @@ importers:
version: 15.5.2
postcss:
specifier: ^8.5.1
- version: 8.5.3
+ version: 8.5.6
prettier:
specifier: 3.5.0
version: 3.5.0
prettier-plugin-tailwindcss:
specifier: ^0.6.11
- version: 0.6.11(prettier@3.5.0)
+ version: 0.6.14(prettier@3.5.0)
typescript:
specifier: ~5.7.2
version: 5.7.3
typescript-eslint:
specifier: ^8.24.1
- version: 8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.7.3)
+ version: 8.47.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.7.3)
vitest:
specifier: ^3.1.1
- version: 3.1.3(@types/debug@4.1.12)(@types/node@22.15.17)(jiti@2.4.2)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
+ version: 3.2.4(@types/debug@4.1.12)(@types/node@22.19.1)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)
apps/fallback:
dependencies:
"@morpho-org/blue-sdk":
specifier: ^3.0.9
- version: 3.0.9(@morpho-org/morpho-ts@2.3.0)
+ version: 3.0.9(@morpho-org/morpho-ts@2.4.5)
"@morpho-org/uikit":
specifier: workspace:*
version: link:../../packages/uikit
"@tanstack/query-sync-storage-persister":
specifier: ^5.66.0
- version: 5.75.7
+ version: 5.90.12
"@tanstack/react-query":
specifier: ^5.66.0
- version: 5.75.7(react@19.1.0)
+ version: 5.90.10(react@19.2.0)
"@tanstack/react-query-persist-client":
specifier: ^5.66.0
- version: 5.75.7(@tanstack/react-query@5.75.7(react@19.1.0))(react@19.1.0)
+ version: 5.90.12(@tanstack/react-query@5.90.10(react@19.2.0))(react@19.2.0)
blo:
specifier: ^1.2.0
version: 1.2.0
humanize-duration:
specifier: ^3.32.1
- version: 3.32.1
+ version: 3.33.1
lucide-react:
specifier: ^0.475.0
- version: 0.475.0(react@19.1.0)
+ version: 0.475.0(react@19.2.0)
ohash:
specifier: ^1.1.4
version: 1.1.6
react:
specifier: ^19.0.0
- version: 19.1.0
+ version: 19.2.0
react-dom:
specifier: ^19.0.0
- version: 19.1.0(react@19.1.0)
+ version: 19.2.0(react@19.2.0)
recharts:
specifier: ^2.15.1
- version: 2.15.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 2.15.4(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
sonner:
specifier: ^2.0.0
- version: 2.0.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 2.0.7(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
tailwind-merge:
specifier: ^3.0.1
- version: 3.3.0
+ version: 3.4.0
tailwindcss-animate:
specifier: ^1.0.7
- version: 1.0.7(tailwindcss@4.1.6)
+ version: 1.0.7(tailwindcss@4.1.17)
viem:
specifier: ~2.29.1
- version: 2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ version: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
wagmi:
specifier: 2.15.2
- version: 2.15.2(@tanstack/query-core@5.75.7)(@tanstack/react-query@5.75.7(react@19.1.0))(@types/react@19.1.3)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
+ version: 2.15.2(@tanstack/query-core@5.90.10)(@tanstack/react-query@5.90.10(react@19.2.0))(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76))(zod@3.25.76)
devDependencies:
"@fleek-platform/cli":
specifier: ^3.8.2
- version: 3.8.3(@types/node@22.15.17)(typescript@5.7.3)
+ version: 3.9.4(@types/node@22.19.1)(typescript@5.7.3)
"@tailwindcss/vite":
specifier: ^4.0.6
- version: 4.1.6(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))
+ version: 4.1.17(vite@6.4.1(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1))
"@vitejs/plugin-react":
specifier: ^4.3.4
- version: 4.4.1(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))
+ version: 4.7.0(vite@6.4.1(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1))
tailwindcss:
specifier: ^4.0.6
- version: 4.1.6
+ version: 4.1.17
typescript:
specifier: ~5.7.2
version: 5.7.3
vite:
specifier: ^6.2.0
- version: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
+ version: 6.4.1(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)
vite-plugin-svgr:
specifier: ^4.3.0
- version: 4.3.0(rollup@4.40.2)(typescript@5.7.3)(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))
+ version: 4.5.0(rollup@4.53.3)(typescript@5.7.3)(vite@6.4.1(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1))
apps/lite:
dependencies:
"@merkl/api":
specifier: ^0.21.47
- version: 0.21.47(@opentelemetry/api@1.9.0)(@types/pg@8.6.1)(bufferutil@4.0.9)(graphql@16.11.0)(openapi-types@12.1.3)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ version: 0.21.47(@opentelemetry/api@1.9.0)(@types/pg@8.6.1)(bufferutil@4.0.9)(graphql@16.12.0)(openapi-types@12.1.3)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
"@morpho-org/blue-sdk":
specifier: ^3.0.9
- version: 3.0.9(@morpho-org/morpho-ts@2.3.0)
+ version: 3.0.9(@morpho-org/morpho-ts@2.4.5)
"@morpho-org/blue-sdk-viem":
specifier: ^3.1.1
- version: 3.1.1(@morpho-org/blue-sdk@3.0.9(@morpho-org/morpho-ts@2.3.0))(@morpho-org/morpho-ts@2.3.0)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))
+ version: 3.2.0(@morpho-org/blue-sdk@3.0.9(@morpho-org/morpho-ts@2.4.5))(@morpho-org/morpho-ts@2.4.5)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76))
"@morpho-org/uikit":
specifier: workspace:*
version: link:../../packages/uikit
"@tanstack/query-sync-storage-persister":
specifier: ^5.66.0
- version: 5.75.7
+ version: 5.90.12
"@tanstack/react-query":
specifier: ^5.66.0
- version: 5.75.7(react@19.1.0)
+ version: 5.90.10(react@19.2.0)
"@tanstack/react-query-persist-client":
specifier: ^5.66.0
- version: 5.75.7(@tanstack/react-query@5.75.7(react@19.1.0))(react@19.1.0)
+ version: 5.90.12(@tanstack/react-query@5.90.10(react@19.2.0))(react@19.2.0)
blo:
specifier: ^1.2.0
version: 1.2.0
connectkit:
specifier: ^1.8.2
- version: 1.9.0(@babel/core@7.27.1)(@tanstack/react-query@5.75.7(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react-is@18.3.1)(react@19.1.0)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(wagmi@2.15.2(@tanstack/query-core@5.75.7)(@tanstack/react-query@5.75.7(react@19.1.0))(@types/react@19.1.3)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4))
- core-js:
- specifier: 3.42.0
- version: 3.42.0
+ version: 1.9.1(@babel/core@7.28.5)(@tanstack/react-query@5.90.10(react@19.2.0))(react-dom@19.2.0(react@19.2.0))(react-is@18.3.1)(react@19.2.0)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76))(wagmi@2.15.2(@tanstack/query-core@5.90.10)(@tanstack/react-query@5.90.10(react@19.2.0))(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76))(zod@3.25.76))
gql.tada:
specifier: ^1.8.10
- version: 1.8.10(graphql@16.11.0)(typescript@5.7.3)
+ version: 1.9.0(graphql@16.12.0)(typescript@5.7.3)
humanize-duration:
specifier: ^3.32.1
- version: 3.32.1
+ version: 3.33.1
lucide-react:
specifier: ^0.475.0
- version: 0.475.0(react@19.1.0)
+ version: 0.475.0(react@19.2.0)
ohash:
specifier: ^1.1.4
version: 1.1.6
react:
specifier: ^19.0.0
- version: 19.1.0
+ version: 19.2.0
react-dom:
specifier: ^19.0.0
- version: 19.1.0(react@19.1.0)
+ version: 19.2.0(react@19.2.0)
react-router:
specifier: ^7.4.0
- version: 7.6.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 7.9.6(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
recharts:
specifier: ^2.15.1
- version: 2.15.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 2.15.4(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
sonner:
specifier: ^2.0.0
- version: 2.0.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- tailwind-merge:
- specifier: ^3.0.1
- version: 3.3.0
+ version: 2.0.7(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
tailwindcss-animate:
specifier: ^1.0.7
- version: 1.0.7(tailwindcss@4.1.6)
+ version: 1.0.7(tailwindcss@4.1.17)
urql:
specifier: ^4.2.2
- version: 4.2.2(@urql/core@5.1.1(graphql@16.11.0))(react@19.1.0)
+ version: 4.2.2(@urql/core@5.2.0(graphql@16.12.0))(react@19.2.0)
viem:
specifier: ~2.29.1
- version: 2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ version: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
wagmi:
specifier: 2.15.2
- version: 2.15.2(@tanstack/query-core@5.75.7)(@tanstack/react-query@5.75.7(react@19.1.0))(@types/react@19.1.3)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
+ version: 2.15.2(@tanstack/query-core@5.90.10)(@tanstack/react-query@5.90.10(react@19.2.0))(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76))(zod@3.25.76)
devDependencies:
"@fleek-platform/cli":
specifier: ^3.8.2
- version: 3.8.3(@types/node@22.15.17)(typescript@5.7.3)
+ version: 3.9.4(@types/node@22.19.1)(typescript@5.7.3)
"@tailwindcss/vite":
specifier: ^4.0.6
- version: 4.1.6(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))
+ version: 4.1.17(vite@6.4.1(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1))
+ "@types/humanize-duration":
+ specifier: ^3.27.4
+ version: 3.27.4
"@vitejs/plugin-react":
specifier: ^4.3.4
- version: 4.4.1(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))
+ version: 4.7.0(vite@6.4.1(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1))
tailwindcss:
specifier: ^4.0.6
- version: 4.1.6
+ version: 4.1.17
terser:
specifier: ^5.39.0
- version: 5.39.0
+ version: 5.44.1
typescript:
specifier: ~5.7.2
version: 5.7.3
vite:
specifier: ^6.2.0
- version: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
+ version: 6.4.1(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)
vite-plugin-svgr:
specifier: ^4.3.0
- version: 4.3.0(rollup@4.40.2)(typescript@5.7.3)(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))
+ version: 4.5.0(rollup@4.53.3)(typescript@5.7.3)(vite@6.4.1(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1))
packages/uikit:
dependencies:
"@octokit/plugin-retry":
specifier: ^7.1.4
- version: 7.2.1(@octokit/core@6.1.5)
+ version: 7.2.1(@octokit/core@6.1.6)
"@octokit/rest":
specifier: ^21.1.1
version: 21.1.1
"@radix-ui/react-alert-dialog":
specifier: ^1.1.6
- version: 1.1.13(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
"@radix-ui/react-avatar":
specifier: ^1.1.3
- version: 1.1.9(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
"@radix-ui/react-collapsible":
specifier: ^1.1.3
- version: 1.1.10(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.1.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
"@radix-ui/react-dialog":
specifier: ^1.1.6
- version: 1.1.13(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
"@radix-ui/react-dropdown-menu":
specifier: ^2.1.6
- version: 2.1.14(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 2.1.16(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
"@radix-ui/react-hover-card":
specifier: ^1.1.6
- version: 1.1.13(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
"@radix-ui/react-label":
specifier: ^2.1.2
- version: 2.1.6(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 2.1.8(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
"@radix-ui/react-popover":
specifier: ^1.1.6
- version: 1.1.13(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
"@radix-ui/react-progress":
specifier: ^1.1.2
- version: 1.1.6(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.1.8(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
"@radix-ui/react-select":
specifier: ^2.1.6
- version: 2.2.4(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 2.2.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
"@radix-ui/react-separator":
specifier: ^1.1.2
- version: 1.1.6(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.1.8(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
"@radix-ui/react-slot":
specifier: ^1.1.2
- version: 1.2.2(@types/react@19.1.3)(react@19.1.0)
+ version: 1.2.4(@types/react@19.2.6)(react@19.2.0)
"@radix-ui/react-tabs":
specifier: ^1.1.3
- version: 1.1.11(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.1.13(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
"@radix-ui/react-tooltip":
specifier: ^1.1.8
- version: 1.2.6(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
class-variance-authority:
specifier: ^0.7.1
version: 0.7.1
@@ -323,26 +320,26 @@ importers:
version: 2.1.1
lucide-react:
specifier: ^0.475.0
- version: 0.475.0(react@19.1.0)
+ version: 0.475.0(react@19.2.0)
next-themes:
specifier: ^0.4.4
- version: 0.4.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 0.4.6(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
solady:
specifier: ^0.1.12
- version: 0.1.18
+ version: 0.1.26
tailwind-merge:
specifier: ^3.0.1
- version: 3.3.0
+ version: 3.4.0
tailwindcss-animate:
specifier: ^1.0.7
- version: 1.0.7(tailwindcss@4.1.6)
+ version: 1.0.7(tailwindcss@4.1.17)
devDependencies:
"@eslint/js":
specifier: ^9.21.0
- version: 9.26.0
+ version: 9.39.1
"@tanstack/react-query":
specifier: ^5.66.0
- version: 5.75.7(react@19.1.0)
+ version: 5.90.10(react@19.2.0)
"@tevm/bundler-cache":
specifier: 1.0.0-next.140
version: 1.0.0-next.140
@@ -351,126 +348,121 @@ importers:
version: 1.0.0-next.140(typescript@5.7.3)
"@types/react":
specifier: ^19.0.10
- version: 19.1.3
+ version: 19.2.6
"@types/react-dom":
specifier: ^19.0.4
- version: 19.1.3(@types/react@19.1.3)
+ version: 19.2.3(@types/react@19.2.6)
"@vitejs/plugin-react":
specifier: ^4.3.4
- version: 4.4.1(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))
+ version: 4.7.0(vite@6.4.1(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1))
blo:
specifier: ^1.2.0
version: 1.2.0
effect:
- specifier: 3.13.2
- version: 3.13.2
+ specifier: 3.18.1
+ version: 3.18.1
eslint:
specifier: ^9.21.0
- version: 9.26.0(jiti@2.4.2)
+ version: 9.39.1(jiti@2.6.1)
eslint-plugin-react-hooks:
specifier: ^5.1.0
- version: 5.2.0(eslint@9.26.0(jiti@2.4.2))
+ version: 5.2.0(eslint@9.39.1(jiti@2.6.1))
eslint-plugin-react-refresh:
specifier: ^0.4.19
- version: 0.4.20(eslint@9.26.0(jiti@2.4.2))
+ version: 0.4.24(eslint@9.39.1(jiti@2.6.1))
glob:
specifier: ^11.0.1
- version: 11.0.2
+ version: 11.1.0
globals:
specifier: ^15.15.0
version: 15.15.0
react:
specifier: ^19.0.0
- version: 19.1.0
+ version: 19.2.0
react-dom:
specifier: ^19.0.0
- version: 19.1.0(react@19.1.0)
+ version: 19.2.0(react@19.2.0)
recharts:
specifier: ^2.15.1
- version: 2.15.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 2.15.4(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
solc:
specifier: ^0.8.29
version: 0.8.30
sonner:
specifier: ^2.0.0
- version: 2.0.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 2.0.7(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
tailwindcss:
specifier: ^4.0.6
- version: 4.1.6
+ version: 4.1.17
tevm:
specifier: 1.0.0-next.140
- version: 1.0.0-next.140(@tevm/ts-plugin@1.0.0-next.140(typescript@5.7.3))(@types/debug@4.1.12)(@types/node@22.15.17)(@types/react@19.1.3)(bufferutil@4.0.9)(jiti@2.4.2)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(typescript@5.7.3)(use-sync-external-store@1.5.0(react@19.1.0))(utf-8-validate@5.0.10)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(webpack@5.99.8)(yaml@2.7.1)(zod@3.24.4)
+ version: 1.0.0-next.140(@tevm/ts-plugin@1.0.0-next.140(typescript@5.7.3))(@types/debug@4.1.12)(@types/node@24.10.1)(@types/react@19.2.6)(bufferutil@4.0.9)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(typescript@5.7.3)(use-sync-external-store@1.6.0(react@19.2.0))(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(webpack@5.103.0)(yaml@2.8.1)(zod@4.1.12)
typescript:
specifier: ~5.7.2
version: 5.7.3
typescript-eslint:
specifier: ^8.24.1
- version: 8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.7.3)
+ version: 8.47.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.7.3)
viem:
specifier: ~2.29.1
- version: 2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ version: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
vite:
specifier: ^6.2.0
- version: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
+ version: 6.4.1(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)
vite-plugin-dts:
specifier: ^4.5.3
- version: 4.5.3(@types/node@22.15.17)(rollup@4.40.2)(typescript@5.7.3)(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))
+ version: 4.5.4(@types/node@24.10.1)(rollup@4.53.3)(typescript@5.7.3)(vite@6.4.1(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1))
vite-plugin-externalize-deps:
specifier: ^0.9.0
- version: 0.9.0(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))
+ version: 0.9.0(vite@6.4.1(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1))
vite-plugin-static-copy:
specifier: ^2.3.0
- version: 2.3.1(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))
+ version: 2.3.2(vite@6.4.1(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1))
vite-plugin-svgr:
specifier: ^4.3.0
- version: 4.3.0(rollup@4.40.2)(typescript@5.7.3)(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))
+ version: 4.5.0(rollup@4.53.3)(typescript@5.7.3)(vite@6.4.1(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1))
wagmi:
specifier: 2.15.2
- version: 2.15.2(@tanstack/query-core@5.75.7)(@tanstack/react-query@5.75.7(react@19.1.0))(@types/react@19.1.3)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
+ version: 2.15.2(@tanstack/query-core@5.90.10)(@tanstack/react-query@5.90.10(react@19.2.0))(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
packages:
- "@0no-co/graphql.web@1.1.2":
+ "@0no-co/graphql.web@1.2.0":
resolution:
- { integrity: sha512-N2NGsU5FLBhT8NZ+3l2YrzZSHITjNXNuDhC4iDiikv0IujaJ0Xc6xIxQZ/Ek3Cb+rgPjnLHYyJm11tInuJn+cw== }
+ { integrity: sha512-/1iHy9TTr63gE1YcR5idjx8UREz1s0kFhydf3bBLCXyqjhkIc6igAzTOx3zPifCwFR87tsh/4Pa9cNts6d2otw== }
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0
peerDependenciesMeta:
graphql:
optional: true
- "@0no-co/graphqlsp@1.12.16":
+ "@0no-co/graphqlsp@1.15.1":
resolution:
- { integrity: sha512-B5pyYVH93Etv7xjT6IfB7QtMBdaaC07yjbhN6v8H7KgFStMkPvi+oWYBTibMFRMY89qwc9H8YixXg8SXDVgYWw== }
+ { integrity: sha512-UBDBuVGpX5Ti0PjGnSAzkMG04psNYxKfJ+1bgF8HFPfHHpKNVl4GULHSNW0GTOngcYCYA70c+InoKw0qjHwmVQ== }
peerDependencies:
graphql: ^15.5.0 || ^16.0.0 || ^17.0.0
typescript: ^5.0.0
- "@adobe/css-tools@4.4.2":
+ "@adobe/css-tools@4.4.4":
resolution:
- { integrity: sha512-baYZExFpsdkBNuvGKTKWCwKH57HRZLVtycZS05WTQNVOiXVSeAki3nU35zlRbToeMW8aHlJfyS+1C4BOv27q0A== }
+ { integrity: sha512-Elp+iwUx5rN5+Y8xLt5/GRoG20WGoDCQ/1Fb+1LiGtvwbDavuSk0jhD/eZdckHAuzcDzccnkv+rEjyWfRx18gg== }
- "@adraffy/ens-normalize@1.11.0":
+ "@adraffy/ens-normalize@1.11.1":
resolution:
- { integrity: sha512-/3DDPKHqqIqxUULp8yP4zODUY1i+2xvVWsv8A79xGWdCAG+8sb0hRh0Rk2QyOJUnnbyPUAZYcpBuRe3nS2OIUg== }
+ { integrity: sha512-nhCBV3quEgesuf7c7KYfperqSS14T8bYuvJ8PcLJp6znkZpFc0AuW4qBtr8eKVyPPe/8RSr7sglCWPU5eaxwKQ== }
- "@alcalzone/ansi-tokenize@0.1.3":
+ "@alcalzone/ansi-tokenize@0.2.2":
resolution:
- { integrity: sha512-3yWxPTq3UQ/FY9p1ErPxIyfT64elWaMvM9lIHnaqpyft63tkxodF5aUElYHrdisWve5cETkh1+KBw1yJuW0aRw== }
- engines: { node: ">=14.13.1" }
+ { integrity: sha512-mkOh+Wwawzuf5wa30bvc4nA+Qb6DIrGWgBhRR/Pw4T9nsgYait8izvXkNyU78D6Wcu3Z+KUdwCmLCxlWjEotYA== }
+ engines: { node: ">=18" }
"@alloc/quick-lru@5.2.0":
resolution:
{ integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw== }
engines: { node: ">=10" }
- "@ampproject/remapping@2.3.0":
- resolution:
- { integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw== }
- engines: { node: ">=6.0.0" }
-
- "@asamuzakjp/css-color@3.1.7":
+ "@asamuzakjp/css-color@3.2.0":
resolution:
- { integrity: sha512-Ok5fYhtwdyJQmU1PpEv6Si7Y+A4cYb8yNM9oiIJC9TzXPMuN9fvdonKJqcnz9TbFqV6bQ8z0giRq0iaOpGZV2g== }
+ { integrity: sha512-K1A6z8tS3XsmCMM86xoWdn7Fkdn9m6RSVtocUrJYIwZnFVkng/PvkEoWtOWmP+Scc6saYWHWZYbndEEXxl24jw== }
"@aws-crypto/crc32@5.2.0":
resolution:
@@ -494,113 +486,118 @@ packages:
resolution:
{ integrity: sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ== }
- "@aws-sdk/client-lambda@3.806.0":
+ "@aws-sdk/client-lambda@3.936.0":
+ resolution:
+ { integrity: sha512-Qb8ypBPiQ9VemxzBbGhYacOP4mHMVFMc/L9tKjcNBRHaVcHmMAfwbRuGdnZUZWALneHcPfET5oESVzEPhN8CGA== }
+ engines: { node: ">=18.0.0" }
+
+ "@aws-sdk/client-sso@3.936.0":
resolution:
- { integrity: sha512-Fxh08DKju+wzRlGPs+p9yaNDc5IC8hftJi+p6kkQ5DRCqshL/MtH9uGMYL7krYPMSO9ulnmcCWoaHioUvCFE2g== }
+ { integrity: sha512-0G73S2cDqYwJVvqL08eakj79MZG2QRaB56Ul8/Ps9oQxllr7DMI1IQ/N3j3xjxgpq/U36pkoFZ8aK1n7Sbr3IQ== }
engines: { node: ">=18.0.0" }
- "@aws-sdk/client-sso@3.806.0":
+ "@aws-sdk/core@3.936.0":
resolution:
- { integrity: sha512-X0p/9/u9e6b22rlQqKucdtjdqmjSNB4c/8zDEoD5MvgYAAbMF9HNE0ST2xaA/WsJ7uE0jFfhPY2/00pslL1DqQ== }
+ { integrity: sha512-eGJ2ySUMvgtOziHhDRDLCrj473RJoL4J1vPjVM3NrKC/fF3/LoHjkut8AAnKmrW6a2uTzNKubigw8dEnpmpERw== }
engines: { node: ">=18.0.0" }
- "@aws-sdk/core@3.806.0":
+ "@aws-sdk/credential-provider-env@3.936.0":
resolution:
- { integrity: sha512-HJRINPncdjPK0iL3f6cBpqCMaxVwq2oDbRCzOx04tsLZ0tNgRACBfT3d/zNVRvMt6fnOVKXoN1LAtQaw50pjEA== }
+ { integrity: sha512-dKajFuaugEA5i9gCKzOaVy9uTeZcApE+7Z5wdcZ6j40523fY1a56khDAUYkCfwqa7sHci4ccmxBkAo+fW1RChA== }
engines: { node: ">=18.0.0" }
- "@aws-sdk/credential-provider-env@3.806.0":
+ "@aws-sdk/credential-provider-http@3.936.0":
resolution:
- { integrity: sha512-nbPwmZn0kt6Q1XI2FaJWP6AhF9tro4cO5HlmZQx8NU+B0H1y9WMo659Q5zLLY46BXgoQVIJEsPSZpcZk27O4aw== }
+ { integrity: sha512-5FguODLXG1tWx/x8fBxH+GVrk7Hey2LbXV5h9SFzYCx/2h50URBm0+9hndg0Rd23+xzYe14F6SI9HA9c1sPnjg== }
engines: { node: ">=18.0.0" }
- "@aws-sdk/credential-provider-http@3.806.0":
+ "@aws-sdk/credential-provider-ini@3.936.0":
resolution:
- { integrity: sha512-e/gB2iJQQ4ZpecOVpEFhEvjGwuTqNCzhVaVsFYVc49FPfR1seuN7qBGYe1MO7mouGDQFInzJgcNup0DnYUrLiw== }
+ { integrity: sha512-TbUv56ERQQujoHcLMcfL0Q6bVZfYF83gu/TjHkVkdSlHPOIKaG/mhE2XZSQzXv1cud6LlgeBbfzVAxJ+HPpffg== }
engines: { node: ">=18.0.0" }
- "@aws-sdk/credential-provider-ini@3.806.0":
+ "@aws-sdk/credential-provider-login@3.936.0":
resolution:
- { integrity: sha512-FogfbuYSEZgFxbNy0QcsBZHHe5mSv5HV3+JyB5n0kCyjOISCVCZD7gwxKdXjt8O1hXq5k5SOdQvydGULlB6rew== }
+ { integrity: sha512-8DVrdRqPyUU66gfV7VZNToh56ZuO5D6agWrkLQE/xbLJOm2RbeRgh6buz7CqV8ipRd6m+zCl9mM4F3osQLZn8Q== }
engines: { node: ">=18.0.0" }
- "@aws-sdk/credential-provider-node@3.806.0":
+ "@aws-sdk/credential-provider-node@3.936.0":
resolution:
- { integrity: sha512-fZX8xP2Kf0k70kDTog/87fh/M+CV0E2yujSw1cUBJhDSwDX3RlUahiJk7TpB/KGw6hEFESMd6+7kq3UzYuw3rg== }
+ { integrity: sha512-rk/2PCtxX9xDsQW8p5Yjoca3StqmQcSfkmD7nQ61AqAHL1YgpSQWqHE+HjfGGiHDYKG7PvE33Ku2GyA7lEIJAw== }
engines: { node: ">=18.0.0" }
- "@aws-sdk/credential-provider-process@3.806.0":
+ "@aws-sdk/credential-provider-process@3.936.0":
resolution:
- { integrity: sha512-8Y8GYEw/1e5IZRDQL02H6nsTDcRWid/afRMeWg+93oLQmbHcTtdm48tjis+7Xwqy+XazhMDmkbUht11QPTDJcQ== }
+ { integrity: sha512-GpA4AcHb96KQK2PSPUyvChvrsEKiLhQ5NWjeef2IZ3Jc8JoosiedYqp6yhZR+S8cTysuvx56WyJIJc8y8OTrLA== }
engines: { node: ">=18.0.0" }
- "@aws-sdk/credential-provider-sso@3.806.0":
+ "@aws-sdk/credential-provider-sso@3.936.0":
resolution:
- { integrity: sha512-hT9OBwCxWMPBydNhXm2gdNNzx5AJNheS9RglwDDvXWzQ9qDuRztjuMBilMSUMb0HF9K4IqQjYzGqczMuktz4qQ== }
+ { integrity: sha512-wHlEAJJvtnSyxTfNhN98JcU4taA1ED2JvuI2eePgawqBwS/Tzi0mhED1lvNIaWOkjfLd+nHALwszGrtJwEq4yQ== }
engines: { node: ">=18.0.0" }
- "@aws-sdk/credential-provider-web-identity@3.806.0":
+ "@aws-sdk/credential-provider-web-identity@3.936.0":
resolution:
- { integrity: sha512-XxaSY9Zd3D4ClUGENYMvi52ac5FuJPPAsvRtEfyrSdEpf6QufbMpnexWBZMYRF31h/VutgqtJwosGgNytpxMEg== }
+ { integrity: sha512-v3qHAuoODkoRXsAF4RG+ZVO6q2P9yYBT4GMpMEfU9wXVNn7AIfwZgTwzSUfnjNiGva5BKleWVpRpJ9DeuLFbUg== }
engines: { node: ">=18.0.0" }
- "@aws-sdk/middleware-host-header@3.804.0":
+ "@aws-sdk/middleware-host-header@3.936.0":
resolution:
- { integrity: sha512-bum1hLVBrn2lJCi423Z2fMUYtsbkGI2s4N+2RI2WSjvbaVyMSv/WcejIrjkqiiMR+2Y7m5exgoKeg4/TODLDPQ== }
+ { integrity: sha512-tAaObaAnsP1XnLGndfkGWFuzrJYuk9W0b/nLvol66t8FZExIAf/WdkT2NNAWOYxljVs++oHnyHBCxIlaHrzSiw== }
engines: { node: ">=18.0.0" }
- "@aws-sdk/middleware-logger@3.804.0":
+ "@aws-sdk/middleware-logger@3.936.0":
resolution:
- { integrity: sha512-w/qLwL3iq0KOPQNat0Kb7sKndl9BtceigINwBU7SpkYWX9L/Lem6f8NPEKrC9Tl4wDBht3Yztub4oRTy/horJA== }
+ { integrity: sha512-aPSJ12d3a3Ea5nyEnLbijCaaYJT2QjQ9iW+zGh5QcZYXmOGWbKVyPSxmVOboZQG+c1M8t6d2O7tqrwzIq8L8qw== }
engines: { node: ">=18.0.0" }
- "@aws-sdk/middleware-recursion-detection@3.804.0":
+ "@aws-sdk/middleware-recursion-detection@3.936.0":
resolution:
- { integrity: sha512-zqHOrvLRdsUdN/ehYfZ9Tf8svhbiLLz5VaWUz22YndFv6m9qaAcijkpAOlKexsv3nLBMJdSdJ6GUTAeIy3BZzw== }
+ { integrity: sha512-l4aGbHpXM45YNgXggIux1HgsCVAvvBoqHPkqLnqMl9QVapfuSTjJHfDYDsx1Xxct6/m7qSMUzanBALhiaGO2fA== }
engines: { node: ">=18.0.0" }
- "@aws-sdk/middleware-user-agent@3.806.0":
+ "@aws-sdk/middleware-user-agent@3.936.0":
resolution:
- { integrity: sha512-XoIromVffgXnc+/mjlR2EVzQVIei3bPVtafIZNsHuEmUvIWJXiWsa2eJpt3BUqa0HF9YPknK7ommNEhqRb8ucg== }
+ { integrity: sha512-YB40IPa7K3iaYX0lSnV9easDOLPLh+fJyUDF3BH8doX4i1AOSsYn86L4lVldmOaSX+DwiaqKHpvk4wPBdcIPWw== }
engines: { node: ">=18.0.0" }
- "@aws-sdk/nested-clients@3.806.0":
+ "@aws-sdk/nested-clients@3.936.0":
resolution:
- { integrity: sha512-ua2gzpfQ9MF8Rny+tOAivowOWWvqEusez2rdcQK8jdBjA1ANd/0xzToSZjZh0ziN8Kl8jOhNnHbQJ0v6dT6+hg== }
+ { integrity: sha512-eyj2tz1XmDSLSZQ5xnB7cLTVKkSJnYAEoNDSUNhzWPxrBDYeJzIbatecOKceKCU8NBf8gWWZCK/CSY0mDxMO0A== }
engines: { node: ">=18.0.0" }
- "@aws-sdk/region-config-resolver@3.806.0":
+ "@aws-sdk/region-config-resolver@3.936.0":
resolution:
- { integrity: sha512-cuv5pX55JOlzKC/iLsB5nZ9eUyVgncim3VhhWHZA/KYPh7rLMjOEfZ+xyaE9uLJXGmzOJboFH7+YdTRdIcOgrg== }
+ { integrity: sha512-wOKhzzWsshXGduxO4pqSiNyL9oUtk4BEvjWm9aaq6Hmfdoydq6v6t0rAGHWPjFwy9z2haovGRi3C8IxdMB4muw== }
engines: { node: ">=18.0.0" }
- "@aws-sdk/token-providers@3.806.0":
+ "@aws-sdk/token-providers@3.936.0":
resolution:
- { integrity: sha512-I6SxcsvV7yinJZmPgGullFHS0tsTKa7K3jEc5dmyCz8X+kZPfsWNffZmtmnCvWXPqMXWBvK6hVaxwomx79yeHA== }
+ { integrity: sha512-vvw8+VXk0I+IsoxZw0mX9TMJawUJvEsg3EF7zcCSetwhNPAU8Xmlhv7E/sN/FgSmm7b7DsqKoW6rVtQiCs1PWQ== }
engines: { node: ">=18.0.0" }
- "@aws-sdk/types@3.804.0":
+ "@aws-sdk/types@3.936.0":
resolution:
- { integrity: sha512-A9qnsy9zQ8G89vrPPlNG9d1d8QcKRGqJKqwyGgS0dclJpwy6d1EWgQLIolKPl6vcFpLoe6avLOLxr+h8ur5wpg== }
+ { integrity: sha512-uz0/VlMd2pP5MepdrHizd+T+OKfyK4r3OA9JI+L/lPKg0YFQosdJNCKisr6o70E3dh8iMpFYxF1UN/4uZsyARg== }
engines: { node: ">=18.0.0" }
- "@aws-sdk/util-endpoints@3.806.0":
+ "@aws-sdk/util-endpoints@3.936.0":
resolution:
- { integrity: sha512-3YRRgZ+qFuWDdm5uAbxKsr65UAil4KkrFKua9f4m7Be3v24ETiFOOqhanFUIk9/WOtvzF7oFEiDjYKDGlwV2xg== }
+ { integrity: sha512-0Zx3Ntdpu+z9Wlm7JKUBOzS9EunwKAb4KdGUQQxDqh5Lc3ta5uBoub+FgmVuzwnmBu9U1Os8UuwVTH0Lgu+P5w== }
engines: { node: ">=18.0.0" }
- "@aws-sdk/util-locate-window@3.804.0":
+ "@aws-sdk/util-locate-window@3.893.0":
resolution:
- { integrity: sha512-zVoRfpmBVPodYlnMjgVjfGoEZagyRF5IPn3Uo6ZvOZp24chnW/FRstH7ESDHDDRga4z3V+ElUQHKpFDXWyBW5A== }
+ { integrity: sha512-T89pFfgat6c8nMmpI8eKjBcDcgJq36+m9oiXbcUzeU55MP9ZuGgBomGjGnHaEyF36jenW9gmg3NfZDm0AO2XPg== }
engines: { node: ">=18.0.0" }
- "@aws-sdk/util-user-agent-browser@3.804.0":
+ "@aws-sdk/util-user-agent-browser@3.936.0":
resolution:
- { integrity: sha512-KfW6T6nQHHM/vZBBdGn6fMyG/MgX5lq82TDdX4HRQRRuHKLgBWGpKXqqvBwqIaCdXwWHgDrg2VQups6GqOWW2A== }
+ { integrity: sha512-eZ/XF6NxMtu+iCma58GRNRxSq4lHo6zHQLOZRIeL/ghqYJirqHdenMOwrzPettj60KWlv827RVebP9oNVrwZbw== }
- "@aws-sdk/util-user-agent-node@3.806.0":
+ "@aws-sdk/util-user-agent-node@3.936.0":
resolution:
- { integrity: sha512-Az2e4/gmPZ4BpB7QRj7U76I+fctXhNcxlcgsaHnMhvt+R30nvzM2EhsyBUvsWl8+r9bnLeYt9BpvEZeq2ANDzA== }
+ { integrity: sha512-XOEc7PF9Op00pWV2AYCGDSu5iHgYjIO53Py2VUQTIvP7SRCaCsXmA33mjBvC2Ms6FhSyWNa4aK4naUGIz0hQcw== }
engines: { node: ">=18.0.0" }
peerDependencies:
aws-crt: ">=1.0.0"
@@ -608,29 +605,39 @@ packages:
aws-crt:
optional: true
+ "@aws-sdk/xml-builder@3.930.0":
+ resolution:
+ { integrity: sha512-YIfkD17GocxdmlUVc3ia52QhcWuRIUJonbF8A2CYfcWNV3HzvAqpcPeC0bYUhkK+8e8YO1ARnLKZQE0TlwzorA== }
+ engines: { node: ">=18.0.0" }
+
+ "@aws/lambda-invoke-store@0.2.0":
+ resolution:
+ { integrity: sha512-D1jAmAZQYMoPiacfgNf7AWhg3DFN3Wq/vQv3WINt9znwjzHp2x+WzdJFxxj7xZL7V1U79As6G8f7PorMYWBKsQ== }
+ engines: { node: ">=18.0.0" }
+
"@babel/code-frame@7.27.1":
resolution:
{ integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg== }
engines: { node: ">=6.9.0" }
- "@babel/compat-data@7.27.2":
+ "@babel/compat-data@7.28.5":
resolution:
- { integrity: sha512-TUtMJYRPyUb/9aU8f3K0mjmjf6M9N5Woshn2CS6nqJSeJtTtQcpLUXjGt9vbF8ZGff0El99sWkLgzwW3VXnxZQ== }
+ { integrity: sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA== }
engines: { node: ">=6.9.0" }
- "@babel/core@7.27.1":
+ "@babel/core@7.28.5":
resolution:
- { integrity: sha512-IaaGWsQqfsQWVLqMn9OB92MNN7zukfVA4s7KKAI0KfrrDsZ0yhi5uV4baBuLuN7n3vsZpwP8asPPcVwApxvjBQ== }
+ { integrity: sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw== }
engines: { node: ">=6.9.0" }
- "@babel/generator@7.27.1":
+ "@babel/generator@7.28.5":
resolution:
- { integrity: sha512-UnJfnIpc/+JO0/+KRVQNGU+y5taA5vCbwN8+azkX6beii/ZF+enZJSOKo11ZSzGJjlNfJHfQtmQT8H+9TXPG2w== }
+ { integrity: sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ== }
engines: { node: ">=6.9.0" }
- "@babel/helper-annotate-as-pure@7.27.1":
+ "@babel/helper-annotate-as-pure@7.27.3":
resolution:
- { integrity: sha512-WnuuDILl9oOBbKnb4L+DyODx7iC47XfzmNCpTttFsSp6hTG7XZxu60+4IO+2/hPfcGOoKbFiwoI/+zwARbNQow== }
+ { integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg== }
engines: { node: ">=6.9.0" }
"@babel/helper-compilation-targets@7.27.2":
@@ -638,14 +645,19 @@ packages:
{ integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ== }
engines: { node: ">=6.9.0" }
+ "@babel/helper-globals@7.28.0":
+ resolution:
+ { integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw== }
+ engines: { node: ">=6.9.0" }
+
"@babel/helper-module-imports@7.27.1":
resolution:
{ integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w== }
engines: { node: ">=6.9.0" }
- "@babel/helper-module-transforms@7.27.1":
+ "@babel/helper-module-transforms@7.28.3":
resolution:
- { integrity: sha512-9yHn519/8KvTU5BjTVEEeIM3w9/2yXNKoD82JifINImhpKkARMJKPP59kLo+BafpdN5zgNeIcS4jsGDmd3l58g== }
+ { integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw== }
engines: { node: ">=6.9.0" }
peerDependencies:
"@babel/core": ^7.0.0
@@ -660,9 +672,9 @@ packages:
{ integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA== }
engines: { node: ">=6.9.0" }
- "@babel/helper-validator-identifier@7.27.1":
+ "@babel/helper-validator-identifier@7.28.5":
resolution:
- { integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow== }
+ { integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q== }
engines: { node: ">=6.9.0" }
"@babel/helper-validator-option@7.27.1":
@@ -670,14 +682,14 @@ packages:
{ integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg== }
engines: { node: ">=6.9.0" }
- "@babel/helpers@7.27.1":
+ "@babel/helpers@7.28.4":
resolution:
- { integrity: sha512-FCvFTm0sWV8Fxhpp2McP5/W53GPllQ9QeQ7SiqGWjMf/LVG07lFa5+pgK05IRhVwtvafT22KF+ZSnM9I545CvQ== }
+ { integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w== }
engines: { node: ">=6.9.0" }
- "@babel/parser@7.27.2":
+ "@babel/parser@7.28.5":
resolution:
- { integrity: sha512-QYLs8299NA7WM/bZAdp+CviYYkVoYXlDW2rzliy3chxd1PQjej7JORuMJDJXJUb9g0TT+B99EwaVLKmX+sPXWw== }
+ { integrity: sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ== }
engines: { node: ">=6.0.0" }
hasBin: true
@@ -702,9 +714,9 @@ packages:
peerDependencies:
"@babel/core": ^7.0.0-0
- "@babel/runtime@7.27.1":
+ "@babel/runtime@7.28.4":
resolution:
- { integrity: sha512-1x3D2xEk2fRo3PAhwQwu5UubzgiVWSXTBfWpVd2Mx2AzRqJuDJCsgaDVZ7HB5iGzDW1Hl1sWN2mFyKjmR9uAog== }
+ { integrity: sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ== }
engines: { node: ">=6.9.0" }
"@babel/template@7.27.2":
@@ -712,21 +724,22 @@ packages:
{ integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw== }
engines: { node: ">=6.9.0" }
- "@babel/traverse@7.27.1":
+ "@babel/traverse@7.28.5":
resolution:
- { integrity: sha512-ZCYtZciz1IWJB4U61UPu4KEaqyfj+r5T1Q5mqPo+IBpcG9kHv30Z0aD8LXPgC1trYa6rK0orRyAhqUgk4MjmEg== }
+ { integrity: sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ== }
engines: { node: ">=6.9.0" }
- "@babel/types@7.27.1":
+ "@babel/types@7.28.5":
resolution:
- { integrity: sha512-+EzkxvLNfiUeKMgy/3luqfsCWFRXLb7U6wNQTk60tovuckwB15B191tJWvpp4HjiQWdJkCxO3Wbvc6jlk3Xb2Q== }
+ { integrity: sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA== }
engines: { node: ">=6.9.0" }
- "@bogeychan/elysia-logger@0.1.8":
+ "@bogeychan/elysia-logger@0.1.10":
resolution:
- { integrity: sha512-TbCpMX+m68t0FbvpbBjMrCs4HQ9f1twkvTSGf6ShAkjash7zP9vGLGnEJ0iSG0ymgqLNN8Dgq0SdAEaMC6XLug== }
+ { integrity: sha512-wFp3KUCNIkCV4zcbo70gifHH99ch7e4LNrP5Xa5e2MRO2MDyPgM92SWQmrzkng6PsSZk13+UKJskGNQ+ZuDZkQ== }
peerDependencies:
elysia: ">= 1.2.10"
+ pino: ">= 9.6.0"
"@coinbase/wallet-sdk@3.9.3":
resolution:
@@ -741,42 +754,42 @@ packages:
{ integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw== }
engines: { node: ">=12" }
- "@csstools/color-helpers@5.0.2":
+ "@csstools/color-helpers@5.1.0":
resolution:
- { integrity: sha512-JqWH1vsgdGcw2RR6VliXXdA0/59LttzlU8UlRT/iUUsEeWfYq8I+K0yhihEUTTHLRm1EXvpsCx3083EU15ecsA== }
+ { integrity: sha512-S11EXWJyy0Mz5SYvRmY8nJYTFFd1LCNV+7cXyAgQtOOuzb4EsgfqDufL+9esx72/eLhsRdGZwaldu/h+E4t4BA== }
engines: { node: ">=18" }
- "@csstools/css-calc@2.1.3":
+ "@csstools/css-calc@2.1.4":
resolution:
- { integrity: sha512-XBG3talrhid44BY1x3MHzUx/aTG8+x/Zi57M4aTKK9RFB4aLlF3TTSzfzn8nWVHWL3FgAXAxmupmDd6VWww+pw== }
+ { integrity: sha512-3N8oaj+0juUw/1H3YwmDDJXCgTB1gKU6Hc/bB502u9zR0q2vd786XJH9QfrKIEgFlZmhZiq6epXl4rHqhzsIgQ== }
engines: { node: ">=18" }
peerDependencies:
- "@csstools/css-parser-algorithms": ^3.0.4
- "@csstools/css-tokenizer": ^3.0.3
+ "@csstools/css-parser-algorithms": ^3.0.5
+ "@csstools/css-tokenizer": ^3.0.4
- "@csstools/css-color-parser@3.0.9":
+ "@csstools/css-color-parser@3.1.0":
resolution:
- { integrity: sha512-wILs5Zk7BU86UArYBJTPy/FMPPKVKHMj1ycCEyf3VUptol0JNRLFU/BZsJ4aiIHJEbSLiizzRrw8Pc1uAEDrXw== }
+ { integrity: sha512-nbtKwh3a6xNVIp/VRuXV64yTKnb1IjTAEEh3irzS+HkKjAOYLTGNb9pmVNntZ8iVBHcWDA2Dof0QtPgFI1BaTA== }
engines: { node: ">=18" }
peerDependencies:
- "@csstools/css-parser-algorithms": ^3.0.4
- "@csstools/css-tokenizer": ^3.0.3
+ "@csstools/css-parser-algorithms": ^3.0.5
+ "@csstools/css-tokenizer": ^3.0.4
- "@csstools/css-parser-algorithms@3.0.4":
+ "@csstools/css-parser-algorithms@3.0.5":
resolution:
- { integrity: sha512-Up7rBoV77rv29d3uKHUIVubz1BTcgyUK72IvCQAbfbMv584xHcGKCKbWh7i8hPrRJ7qU4Y8IO3IY9m+iTB7P3A== }
+ { integrity: sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ== }
engines: { node: ">=18" }
peerDependencies:
- "@csstools/css-tokenizer": ^3.0.3
+ "@csstools/css-tokenizer": ^3.0.4
- "@csstools/css-tokenizer@3.0.3":
+ "@csstools/css-tokenizer@3.0.4":
resolution:
- { integrity: sha512-UJnjoFsmxfKUdNYdWgOB0mWUypuLvAfQPH1+pyvRJs6euowbFkFC6P13w1l8mJyi3vxYMxc9kld5jZEGRQs6bw== }
+ { integrity: sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw== }
engines: { node: ">=18" }
- "@discordjs/builders@1.11.2":
+ "@discordjs/builders@1.13.0":
resolution:
- { integrity: sha512-F1WTABdd8/R9D1icJzajC4IuLyyS8f3rTOz66JsSI3pKvpCAtsMBweu8cyNYsIyvcrKAVn9EPK+Psoymq+XC0A== }
+ { integrity: sha512-COK0uU6ZaJI+LA67H/rp8IbEkYwlZf3mAoBI5wtPh5G5cbEQGNhVpzINg2f/6+q/YipnNIKy6fJDg6kMUKUw4Q== }
engines: { node: ">=16.11.0" }
"@discordjs/collection@1.5.3":
@@ -789,29 +802,29 @@ packages:
{ integrity: sha512-LiSusze9Tc7qF03sLCujF5iZp7K+vRNEDBZ86FT9aQAv3vxMLihUvKvpsCWiQ2DJq1tVckopKm1rxomgNUc9hg== }
engines: { node: ">=18" }
- "@discordjs/formatters@0.6.1":
+ "@discordjs/formatters@0.6.2":
resolution:
- { integrity: sha512-5cnX+tASiPCqCWtFcFslxBVUaCetB0thvM/JyavhbXInP1HJIEU+Qv/zMrnuwSsX3yWH2lVXNJZeDK3EiP4HHg== }
+ { integrity: sha512-y4UPwWhH6vChKRkGdMB4odasUbHOUwy7KL+OVwF86PvT6QVOwElx+TiI1/6kcmcEe+g5YRXJFiXSXUdabqZOvQ== }
engines: { node: ">=16.11.0" }
- "@discordjs/rest@2.5.0":
+ "@discordjs/rest@2.6.0":
resolution:
- { integrity: sha512-PWhchxTzpn9EV3vvPRpwS0EE2rNYB9pvzDU/eLLW3mByJl0ZHZjHI2/wA8EbH2gRMQV7nu+0FoDF84oiPl8VAQ== }
+ { integrity: sha512-RDYrhmpB7mTvmCKcpj+pc5k7POKszS4E2O9TYc+U+Y4iaCP+r910QdO43qmpOja8LRr1RJ0b3U+CqVsnPqzf4w== }
engines: { node: ">=18" }
- "@discordjs/util@1.1.1":
+ "@discordjs/util@1.2.0":
resolution:
- { integrity: sha512-eddz6UnOBEB1oITPinyrB2Pttej49M9FZQY8NxgEvc3tq6ZICZ19m70RsmzRdDHk80O9NoYN/25AqJl8vPVf/g== }
+ { integrity: sha512-3LKP7F2+atl9vJFhaBjn4nOaSWahZ/yWjOvA4e5pnXkt2qyXRCHLxoBQy81GFtLGCq7K9lPm9R517M1U+/90Qg== }
engines: { node: ">=18" }
- "@discordjs/ws@1.2.2":
+ "@discordjs/ws@1.2.3":
resolution:
- { integrity: sha512-dyfq7yn0wO0IYeYOs3z79I6/HumhmKISzFL0Z+007zQJMtAFGtt3AEoq1nuLXtcunUE5YYYQqgKvybXukAK8/w== }
+ { integrity: sha512-wPlQDxEmlDg5IxhJPuxXr3Vy9AjYq5xCvFWGJyD7w7Np8ZGu+Mc+97LCoEc/+AYCo2IDpKioiH0/c/mj5ZR9Uw== }
engines: { node: ">=16.11.0" }
- "@ecies/ciphers@0.2.3":
+ "@ecies/ciphers@0.2.5":
resolution:
- { integrity: sha512-tapn6XhOueMwht3E2UzY0ZZjYokdaw9XtL9kEyjhQ/Fb9vL9xTFbOaI+fV0AWvTpYu4BNloC6getKW6NtSg4mA== }
+ { integrity: sha512-GalEZH4JgOMHYYcYmVqnFirFsjZHeoGMDt9IxEnM9F7GRUUyUksJ7Ou53L83WHJq3RWKD3AcBpo0iQh0oMpf8A== }
engines: { bun: ">=1", deno: ">=2", node: ">=16" }
peerDependencies:
"@noble/ciphers": ^1.0.0
@@ -823,23 +836,23 @@ packages:
peerDependencies:
effect: ^3.9.2
- "@elysiajs/cors@1.3.3":
+ "@elysiajs/cors@1.4.0":
resolution:
- { integrity: sha512-mYIU6PyMM6xIJuj7d27Vt0/wuzVKIEnFPjcvlkyd7t/m9xspAG37cwNjFxVOnyvY43oOd2I/oW2DB85utXpA2Q== }
+ { integrity: sha512-pb0SCzBfFbFSYA/U40HHO7R+YrcXBJXOWgL20eSViK33ol1e20ru2/KUaZYo5IMUn63yaTJI/bQERuQ+77ND8g== }
peerDependencies:
- elysia: ">= 1.3.0"
+ elysia: ">= 1.4.0"
- "@elysiajs/eden@1.3.2":
+ "@elysiajs/eden@1.4.5":
resolution:
- { integrity: sha512-0bCU5DO7J7hQfS2y3O3399GtoxMWRDMgQNMTHOnf70/F2nF8SwGHvzwh3+wO62Ko5FMF7EYqTN9Csw/g/Q7qwg== }
+ { integrity: sha512-hIOeH+S5NU/84A7+t8yB1JjxqjmzRkBF9fnLn6y+AH8EcF39KumOAnciMhIOkhhThVZvXZ3d+GsizRc+Fxoi8g== }
peerDependencies:
- elysia: ">= 1.3.0"
+ elysia: ">= 1.4.0"
- "@elysiajs/opentelemetry@1.3.0":
+ "@elysiajs/opentelemetry@1.4.7":
resolution:
- { integrity: sha512-KFb00Hmec4jHRm9kAF8rZedJIjZ7VNk5ZrGsusb1jRZ+V5BOryJ+yp8/sGbjq4rqxmd78zjtPWPAht7wRDDfbA== }
+ { integrity: sha512-biJfj3bCHf7aYPB8EygvN90sEKR/qgPn8Cziq2ebJSGyY8cpmskTTP6zbUMkMk6R6rfpoP7ECZbXlTZz+7BfJA== }
peerDependencies:
- elysia: ">= 1.3.0"
+ elysia: ">= 1.4.0"
graphql: "*"
graphql-yoga: "*"
peerDependenciesMeta:
@@ -848,31 +861,31 @@ packages:
graphql-yoga:
optional: true
- "@elysiajs/swagger@1.3.0":
+ "@elysiajs/swagger@1.3.1":
resolution:
- { integrity: sha512-0fo3FWkDRPNYpowJvLz3jBHe9bFe6gruZUyf+feKvUEEMG9ZHptO1jolSoPE0ffFw1BgN1/wMsP19p4GRXKdfg== }
+ { integrity: sha512-LcbLHa0zE6FJKWPWKsIC/f+62wbDv3aXydqcNPVPyqNcaUgwvCajIi+5kHEU6GO3oXUCpzKaMsb3gsjt8sLzFQ== }
peerDependencies:
elysia: ">= 1.3.0"
- "@emnapi/core@1.4.3":
+ "@emnapi/core@1.7.1":
resolution:
- { integrity: sha512-4m62DuCE07lw01soJwPiBGC0nAww0Q+RY70VZ+n49yDIO13yyinhbWCeNnaob0lakDtWQzSdtNWzJeOJt2ma+g== }
+ { integrity: sha512-o1uhUASyo921r2XtHYOHy7gdkGLge8ghBEQHMWmyJFoXlpU58kIrhhN3w26lpQb6dspetweapMn2CSNwQ8I4wg== }
- "@emnapi/runtime@1.4.3":
+ "@emnapi/runtime@1.7.1":
resolution:
- { integrity: sha512-pBPWdu6MLKROBX05wSNKcNb++m5Er+KQ9QkB+WVM+pW2Kx9hoSrVTnu3BdkI5eBLZoKu/J6mW/B6i6bJB2ytXQ== }
+ { integrity: sha512-PVtJr5CmLwYAU9PZDMITZoR5iAOShYREoR45EyyLrbntV50mdePTgUn4AmOw90Ifcj+x2kRjdzr1HP3RrNiHGA== }
- "@emnapi/wasi-threads@1.0.2":
+ "@emnapi/wasi-threads@1.1.0":
resolution:
- { integrity: sha512-5n3nTJblwRi8LlXkJ9eBzu+kZR8Yxcc7ubakyQTFzPMtIhFpUBRbsnc2Dv88IZDIbCDlBiWrknhB4Lsz7mg6BA== }
+ { integrity: sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ== }
"@emotion/is-prop-valid@0.8.8":
resolution:
{ integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA== }
- "@emotion/is-prop-valid@1.3.1":
+ "@emotion/is-prop-valid@1.4.0":
resolution:
- { integrity: sha512-/ACwoqx7XQi9knQs/G0qKvv5teDMhD7bXYns9N/wM8ah8iNb8jZ2uNO0YOgiq2o2poIvVtJS2YALasQuMSQ7Kw== }
+ { integrity: sha512-QgD4fyscGcbbKwJmqNvUMSE02OsHUa+lAWKdEUIJKgqe5IwRSKd7+KhibEWdaKwgjLj0DRSHA9biAIqGBk05lw== }
"@emotion/memoize@0.7.4":
resolution:
@@ -897,9 +910,9 @@ packages:
cpu: [ppc64]
os: [aix]
- "@esbuild/aix-ppc64@0.25.4":
+ "@esbuild/aix-ppc64@0.25.12":
resolution:
- { integrity: sha512-1VCICWypeQKhVbE9oW/sJaAmjLxhVqacdkvPLEjwlttjfwENRSClS8EjBz0KzRyFSCPDIkuXW34Je/vk7zdB7Q== }
+ { integrity: sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA== }
engines: { node: ">=18" }
cpu: [ppc64]
os: [aix]
@@ -911,9 +924,9 @@ packages:
cpu: [arm64]
os: [android]
- "@esbuild/android-arm64@0.25.4":
+ "@esbuild/android-arm64@0.25.12":
resolution:
- { integrity: sha512-bBy69pgfhMGtCnwpC/x5QhfxAz/cBgQ9enbtwjf6V9lnPI/hMyT9iWpR1arm0l3kttTr4L0KSLpKmLp/ilKS9A== }
+ { integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg== }
engines: { node: ">=18" }
cpu: [arm64]
os: [android]
@@ -925,9 +938,9 @@ packages:
cpu: [arm]
os: [android]
- "@esbuild/android-arm@0.25.4":
+ "@esbuild/android-arm@0.25.12":
resolution:
- { integrity: sha512-QNdQEps7DfFwE3hXiU4BZeOV68HHzYwGd0Nthhd3uCkkEKK7/R6MTgM0P7H7FAs5pU/DIWsviMmEGxEoxIZ+ZQ== }
+ { integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg== }
engines: { node: ">=18" }
cpu: [arm]
os: [android]
@@ -939,9 +952,9 @@ packages:
cpu: [x64]
os: [android]
- "@esbuild/android-x64@0.25.4":
+ "@esbuild/android-x64@0.25.12":
resolution:
- { integrity: sha512-TVhdVtQIFuVpIIR282btcGC2oGQoSfZfmBdTip2anCaVYcqWlZXGcdcKIUklfX2wj0JklNYgz39OBqh2cqXvcQ== }
+ { integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg== }
engines: { node: ">=18" }
cpu: [x64]
os: [android]
@@ -953,9 +966,9 @@ packages:
cpu: [arm64]
os: [darwin]
- "@esbuild/darwin-arm64@0.25.4":
+ "@esbuild/darwin-arm64@0.25.12":
resolution:
- { integrity: sha512-Y1giCfM4nlHDWEfSckMzeWNdQS31BQGs9/rouw6Ub91tkK79aIMTH3q9xHvzH8d0wDru5Ci0kWB8b3up/nl16g== }
+ { integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg== }
engines: { node: ">=18" }
cpu: [arm64]
os: [darwin]
@@ -967,9 +980,9 @@ packages:
cpu: [x64]
os: [darwin]
- "@esbuild/darwin-x64@0.25.4":
+ "@esbuild/darwin-x64@0.25.12":
resolution:
- { integrity: sha512-CJsry8ZGM5VFVeyUYB3cdKpd/H69PYez4eJh1W/t38vzutdjEjtP7hB6eLKBoOdxcAlCtEYHzQ/PJ/oU9I4u0A== }
+ { integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA== }
engines: { node: ">=18" }
cpu: [x64]
os: [darwin]
@@ -981,9 +994,9 @@ packages:
cpu: [arm64]
os: [freebsd]
- "@esbuild/freebsd-arm64@0.25.4":
+ "@esbuild/freebsd-arm64@0.25.12":
resolution:
- { integrity: sha512-yYq+39NlTRzU2XmoPW4l5Ifpl9fqSk0nAJYM/V/WUGPEFfek1epLHJIkTQM6bBs1swApjO5nWgvr843g6TjxuQ== }
+ { integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg== }
engines: { node: ">=18" }
cpu: [arm64]
os: [freebsd]
@@ -995,9 +1008,9 @@ packages:
cpu: [x64]
os: [freebsd]
- "@esbuild/freebsd-x64@0.25.4":
+ "@esbuild/freebsd-x64@0.25.12":
resolution:
- { integrity: sha512-0FgvOJ6UUMflsHSPLzdfDnnBBVoCDtBTVyn/MrWloUNvq/5SFmh13l3dvgRPkDihRxb77Y17MbqbCAa2strMQQ== }
+ { integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ== }
engines: { node: ">=18" }
cpu: [x64]
os: [freebsd]
@@ -1009,9 +1022,9 @@ packages:
cpu: [arm64]
os: [linux]
- "@esbuild/linux-arm64@0.25.4":
+ "@esbuild/linux-arm64@0.25.12":
resolution:
- { integrity: sha512-+89UsQTfXdmjIvZS6nUnOOLoXnkUTB9hR5QAeLrQdzOSWZvNSAXAtcRDHWtqAUtAmv7ZM1WPOOeSxDzzzMogiQ== }
+ { integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ== }
engines: { node: ">=18" }
cpu: [arm64]
os: [linux]
@@ -1023,9 +1036,9 @@ packages:
cpu: [arm]
os: [linux]
- "@esbuild/linux-arm@0.25.4":
+ "@esbuild/linux-arm@0.25.12":
resolution:
- { integrity: sha512-kro4c0P85GMfFYqW4TWOpvmF8rFShbWGnrLqlzp4X1TNWjRY3JMYUfDCtOxPKOIY8B0WC8HN51hGP4I4hz4AaQ== }
+ { integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw== }
engines: { node: ">=18" }
cpu: [arm]
os: [linux]
@@ -1037,9 +1050,9 @@ packages:
cpu: [ia32]
os: [linux]
- "@esbuild/linux-ia32@0.25.4":
+ "@esbuild/linux-ia32@0.25.12":
resolution:
- { integrity: sha512-yTEjoapy8UP3rv8dB0ip3AfMpRbyhSN3+hY8mo/i4QXFeDxmiYbEKp3ZRjBKcOP862Ua4b1PDfwlvbuwY7hIGQ== }
+ { integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA== }
engines: { node: ">=18" }
cpu: [ia32]
os: [linux]
@@ -1051,9 +1064,9 @@ packages:
cpu: [loong64]
os: [linux]
- "@esbuild/linux-loong64@0.25.4":
+ "@esbuild/linux-loong64@0.25.12":
resolution:
- { integrity: sha512-NeqqYkrcGzFwi6CGRGNMOjWGGSYOpqwCjS9fvaUlX5s3zwOtn1qwg1s2iE2svBe4Q/YOG1q6875lcAoQK/F4VA== }
+ { integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng== }
engines: { node: ">=18" }
cpu: [loong64]
os: [linux]
@@ -1065,9 +1078,9 @@ packages:
cpu: [mips64el]
os: [linux]
- "@esbuild/linux-mips64el@0.25.4":
+ "@esbuild/linux-mips64el@0.25.12":
resolution:
- { integrity: sha512-IcvTlF9dtLrfL/M8WgNI/qJYBENP3ekgsHbYUIzEzq5XJzzVEV/fXY9WFPfEEXmu3ck2qJP8LG/p3Q8f7Zc2Xg== }
+ { integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw== }
engines: { node: ">=18" }
cpu: [mips64el]
os: [linux]
@@ -1079,9 +1092,9 @@ packages:
cpu: [ppc64]
os: [linux]
- "@esbuild/linux-ppc64@0.25.4":
+ "@esbuild/linux-ppc64@0.25.12":
resolution:
- { integrity: sha512-HOy0aLTJTVtoTeGZh4HSXaO6M95qu4k5lJcH4gxv56iaycfz1S8GO/5Jh6X4Y1YiI0h7cRyLi+HixMR+88swag== }
+ { integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA== }
engines: { node: ">=18" }
cpu: [ppc64]
os: [linux]
@@ -1093,9 +1106,9 @@ packages:
cpu: [riscv64]
os: [linux]
- "@esbuild/linux-riscv64@0.25.4":
+ "@esbuild/linux-riscv64@0.25.12":
resolution:
- { integrity: sha512-i8JUDAufpz9jOzo4yIShCTcXzS07vEgWzyX3NH2G7LEFVgrLEhjwL3ajFE4fZI3I4ZgiM7JH3GQ7ReObROvSUA== }
+ { integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w== }
engines: { node: ">=18" }
cpu: [riscv64]
os: [linux]
@@ -1107,9 +1120,9 @@ packages:
cpu: [s390x]
os: [linux]
- "@esbuild/linux-s390x@0.25.4":
+ "@esbuild/linux-s390x@0.25.12":
resolution:
- { integrity: sha512-jFnu+6UbLlzIjPQpWCNh5QtrcNfMLjgIavnwPQAfoGx4q17ocOU9MsQ2QVvFxwQoWpZT8DvTLooTvmOQXkO51g== }
+ { integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg== }
engines: { node: ">=18" }
cpu: [s390x]
os: [linux]
@@ -1121,16 +1134,16 @@ packages:
cpu: [x64]
os: [linux]
- "@esbuild/linux-x64@0.25.4":
+ "@esbuild/linux-x64@0.25.12":
resolution:
- { integrity: sha512-6e0cvXwzOnVWJHq+mskP8DNSrKBr1bULBvnFLpc1KY+d+irZSgZ02TGse5FsafKS5jg2e4pbvK6TPXaF/A6+CA== }
+ { integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw== }
engines: { node: ">=18" }
cpu: [x64]
os: [linux]
- "@esbuild/netbsd-arm64@0.25.4":
+ "@esbuild/netbsd-arm64@0.25.12":
resolution:
- { integrity: sha512-vUnkBYxZW4hL/ie91hSqaSNjulOnYXE1VSLusnvHg2u3jewJBz3YzB9+oCw8DABeVqZGg94t9tyZFoHma8gWZQ== }
+ { integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg== }
engines: { node: ">=18" }
cpu: [arm64]
os: [netbsd]
@@ -1142,16 +1155,16 @@ packages:
cpu: [x64]
os: [netbsd]
- "@esbuild/netbsd-x64@0.25.4":
+ "@esbuild/netbsd-x64@0.25.12":
resolution:
- { integrity: sha512-XAg8pIQn5CzhOB8odIcAm42QsOfa98SBeKUdo4xa8OvX8LbMZqEtgeWE9P/Wxt7MlG2QqvjGths+nq48TrUiKw== }
+ { integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ== }
engines: { node: ">=18" }
cpu: [x64]
os: [netbsd]
- "@esbuild/openbsd-arm64@0.25.4":
+ "@esbuild/openbsd-arm64@0.25.12":
resolution:
- { integrity: sha512-Ct2WcFEANlFDtp1nVAXSNBPDxyU+j7+tId//iHXU2f/lN5AmO4zLyhDcpR5Cz1r08mVxzt3Jpyt4PmXQ1O6+7A== }
+ { integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A== }
engines: { node: ">=18" }
cpu: [arm64]
os: [openbsd]
@@ -1163,13 +1176,20 @@ packages:
cpu: [x64]
os: [openbsd]
- "@esbuild/openbsd-x64@0.25.4":
+ "@esbuild/openbsd-x64@0.25.12":
resolution:
- { integrity: sha512-xAGGhyOQ9Otm1Xu8NT1ifGLnA6M3sJxZ6ixylb+vIUVzvvd6GOALpwQrYrtlPouMqd/vSbgehz6HaVk4+7Afhw== }
+ { integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw== }
engines: { node: ">=18" }
cpu: [x64]
os: [openbsd]
+ "@esbuild/openharmony-arm64@0.25.12":
+ resolution:
+ { integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg== }
+ engines: { node: ">=18" }
+ cpu: [arm64]
+ os: [openharmony]
+
"@esbuild/sunos-x64@0.21.5":
resolution:
{ integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg== }
@@ -1177,9 +1197,9 @@ packages:
cpu: [x64]
os: [sunos]
- "@esbuild/sunos-x64@0.25.4":
+ "@esbuild/sunos-x64@0.25.12":
resolution:
- { integrity: sha512-Mw+tzy4pp6wZEK0+Lwr76pWLjrtjmJyUB23tHKqEDP74R3q95luY/bXqXZeYl4NYlvwOqoRKlInQialgCKy67Q== }
+ { integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w== }
engines: { node: ">=18" }
cpu: [x64]
os: [sunos]
@@ -1191,9 +1211,9 @@ packages:
cpu: [arm64]
os: [win32]
- "@esbuild/win32-arm64@0.25.4":
+ "@esbuild/win32-arm64@0.25.12":
resolution:
- { integrity: sha512-AVUP428VQTSddguz9dO9ngb+E5aScyg7nOeJDrF1HPYu555gmza3bDGMPhmVXL8svDSoqPCsCPjb265yG/kLKQ== }
+ { integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg== }
engines: { node: ">=18" }
cpu: [arm64]
os: [win32]
@@ -1205,9 +1225,9 @@ packages:
cpu: [ia32]
os: [win32]
- "@esbuild/win32-ia32@0.25.4":
+ "@esbuild/win32-ia32@0.25.12":
resolution:
- { integrity: sha512-i1sW+1i+oWvQzSgfRcxxG2k4I9n3O9NRqy8U+uugaT2Dy7kLO9Y7wI72haOahxceMX8hZAzgGou1FhndRldxRg== }
+ { integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ== }
engines: { node: ">=18" }
cpu: [ia32]
os: [win32]
@@ -1219,38 +1239,38 @@ packages:
cpu: [x64]
os: [win32]
- "@esbuild/win32-x64@0.25.4":
+ "@esbuild/win32-x64@0.25.12":
resolution:
- { integrity: sha512-nOT2vZNw6hJ+z43oP1SPea/G/6AbN6X+bGNhNuq8NtRHy4wsMhw765IKLNmnjek7GvjWBYQ8Q5VBoYTFg9y1UQ== }
+ { integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA== }
engines: { node: ">=18" }
cpu: [x64]
os: [win32]
- "@eslint-community/eslint-utils@4.7.0":
+ "@eslint-community/eslint-utils@4.9.0":
resolution:
- { integrity: sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw== }
+ { integrity: sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g== }
engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
- "@eslint-community/regexpp@4.12.1":
+ "@eslint-community/regexpp@4.12.2":
resolution:
- { integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ== }
+ { integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew== }
engines: { node: ^12.0.0 || ^14.0.0 || >=16.0.0 }
- "@eslint/config-array@0.20.0":
+ "@eslint/config-array@0.21.1":
resolution:
- { integrity: sha512-fxlS1kkIjx8+vy2SjuCB94q3htSNrufYTXubwiBFeaQHbH6Ipi43gFJq2zCMt6PHhImH3Xmr0NksKDvchWlpQQ== }
+ { integrity: sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA== }
engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
- "@eslint/config-helpers@0.2.2":
+ "@eslint/config-helpers@0.4.2":
resolution:
- { integrity: sha512-+GPzk8PlG0sPpzdU5ZvIRMPidzAnZDl/s9L+y13iodqvb8leL53bTannOrQ/Im7UkpsmFU5Ily5U60LWixnmLg== }
+ { integrity: sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw== }
engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
- "@eslint/core@0.13.0":
+ "@eslint/core@0.17.0":
resolution:
- { integrity: sha512-yfkgDw1KR66rkT5A8ci4irzDysN7FRpq3ttJolR88OqQikAWqwA8j5VZyas+vjyBNFIJ7MfybJ9plMILI2UrCw== }
+ { integrity: sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ== }
engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
"@eslint/eslintrc@3.3.1":
@@ -1258,48 +1278,59 @@ packages:
{ integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ== }
engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
- "@eslint/js@9.26.0":
+ "@eslint/js@9.39.1":
resolution:
- { integrity: sha512-I9XlJawFdSMvWjDt6wksMCrgns5ggLNfFwFvnShsleWruvXM514Qxk8V246efTw+eo9JABvVz+u3q2RiAowKxQ== }
+ { integrity: sha512-S26Stp4zCy88tH94QbBv3XCuzRQiZ9yXofEILmglYTh/Ug/a9/umqvgFtYBAo3Lp0nsI/5/qH1CCrbdK3AP1Tw== }
engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
- "@eslint/object-schema@2.1.6":
+ "@eslint/object-schema@2.1.7":
resolution:
- { integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA== }
+ { integrity: sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA== }
engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
- "@eslint/plugin-kit@0.2.8":
+ "@eslint/plugin-kit@0.4.1":
resolution:
- { integrity: sha512-ZAoA40rNMPwSm+AeHpCq8STiNAwzWLJuP8Xv4CHIc9wv/PSuExjMrmjfYNj682vW0OOiZ1HKxzvjQr9XZIisQA== }
+ { integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA== }
engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
- "@ethereumjs/block@5.3.0":
+ "@ethereumjs/binarytree@10.1.0":
+ resolution:
+ { integrity: sha512-54n24oYJqgDk6DtXVjjGohjQCFCDgcvI2+AeNGRZcsQuz6yE2HYvxWq8VrAAcR8ja/gNc9eVYL51DvU93qK8Eg== }
+ engines: { node: ">=18" }
+
+ "@ethereumjs/block@10.1.0":
resolution:
- { integrity: sha512-cyphdEB/ywIERqWLRHdAS6muTkAcd6BibMOp6XmGbeWgvtIhe4ArxcMDI78MVstJzT/faihvRI4rKQKy+MpdKQ== }
+ { integrity: sha512-W2GR/ejYn/idfX4fxQ2DRbrbOF5U04Q2wDiMuxtvnOr8zdVCBSlVYCC348N73ufkrqY5ltTlEUZYWLWWobcS/Q== }
engines: { node: ">=18" }
- "@ethereumjs/blockchain@7.3.0":
+ "@ethereumjs/blockchain@10.1.0":
resolution:
- { integrity: sha512-UZXFb6JFeXDHobKhXGAiKf+m5n2ynCtqpgHWCl2nQ3Tol9W7C3By4UFMpAl2E6EyaFhC26Maig9kqCWxfsQ6bQ== }
+ { integrity: sha512-KDp1C7XYAXLIl/HQ459K7PIsLtGT58BEprEMrAseAsagVmgVv7+cBacrEppwV7Fx33+JYm8tQ3vACt82bHbTWQ== }
engines: { node: ">=18" }
+ "@ethereumjs/common@10.1.0":
+ resolution:
+ { integrity: sha512-zIHCy0i2LFmMDp+QkENyoPGxcoD3QzeNVhx6/vE4nJk4uWGNXzO8xJ2UC4gtGW4UJTAOXja8Z1yZMVeRc2/+Ew== }
+
"@ethereumjs/common@3.2.0":
resolution:
{ integrity: sha512-pksvzI0VyLgmuEF2FA/JR/4/y6hcPq8OUail3/AvycBaW1d5VSauOZzqGvJ3RTmR4MU35lWE8KseKOsEhrFRBA== }
- "@ethereumjs/common@4.4.0":
+ "@ethereumjs/evm@10.1.0":
resolution:
- { integrity: sha512-Fy5hMqF6GsE6DpYTyqdDIJPJgUtDn4dL120zKw+Pswuo+iLyBsEYuSyzMw6NVzD2vDzcBG9fE4+qX4X2bPc97w== }
+ { integrity: sha512-RD6tjysXEWPfyBHmMxsg3s3T2JdbPVYvsDDDUR0laFaHWtHMnOeW/EIZ5njUx75nG+i72w34Sh6NhhkpkhMGDg== }
+ engines: { node: ">=18" }
- "@ethereumjs/ethash@3.0.4":
+ "@ethereumjs/mpt@10.1.0":
resolution:
- { integrity: sha512-dDc9h4RxEIWr38DxzeFyWlTmc++WeAFysFT6Ru0opoQ8WSM/hM3KH1VfHMPwx6JaqQT89Q/xtHV3CEvWrbwLKw== }
+ { integrity: sha512-gWxx8n1OB2Js3EFWNeSdsUdYvw1P5WvdKxHmeq+giO03mt5fGRbuSh3ruXzreG4JRugpNSW6Dwqk+StVwjrQ4Q== }
engines: { node: ">=18" }
- "@ethereumjs/evm@3.1.1":
+ "@ethereumjs/rlp@10.1.0":
resolution:
- { integrity: sha512-JbDXtIn0PPZFU2oqVngje0YvW/JuNa6Y+kIYp1MCh5pn9NRplR8FkBbvb991fVSSo6AzuFMHJxSwgVl+OksnvQ== }
+ { integrity: sha512-r67BJbwilammAqYI4B5okA66cNdTlFzeWxPNJOolKV52ZS/flo0tUBf4x4gxWXBgh48OgsdFV1Qp5pRoSe8IhQ== }
engines: { node: ">=18" }
+ hasBin: true
"@ethereumjs/rlp@4.0.1":
resolution:
@@ -1313,23 +1344,28 @@ packages:
engines: { node: ">=18" }
hasBin: true
- "@ethereumjs/statemanager@2.4.0":
+ "@ethereumjs/statemanager@10.1.0":
resolution:
- { integrity: sha512-IBe5kMGsDWlSvNg7QCERwO3BQE1c9hzVIZ9ktZF7xyifFEfA4VNhTMMEpwLuiAIy0l/ZzZiZ17/Iqar+SawMYA== }
+ { integrity: sha512-n4AB8olDocXtq/V6SClbZ5zEDfJL7cw3MmkGUb/MVQwJBgYZ143oll4UfGaK7jWQfF5Gth68KEJZQay5Hh3h6g== }
"@ethereumjs/trie@6.2.1":
resolution:
{ integrity: sha512-MguABMVi/dPtgagK+SuY57rpXFP+Ghr2x+pBDy+e3VmMqUY+WGzFu1QWjBb5/iJ7lINk4CI2Uwsih07Nu9sTSg== }
engines: { node: ">=18" }
+ "@ethereumjs/tx@10.1.0":
+ resolution:
+ { integrity: sha512-svG6pyzUZDpunafszf2BaolA6Izuvo8ZTIETIegpKxAXYudV1hmzPQDdSI+d8nHCFyQfEFbQ6tfUq95lNArmmg== }
+ engines: { node: ">=18" }
+
"@ethereumjs/tx@4.2.0":
resolution:
{ integrity: sha512-1nc6VO4jtFd172BbSnTnDQVr9IYBFl1y4xPzZdtkrkKIncBCkdbgfdRV+MiTkJYAtTxvV12GRZLqBFT1PNK6Yw== }
engines: { node: ">=14" }
- "@ethereumjs/tx@5.4.0":
+ "@ethereumjs/util@10.1.0":
resolution:
- { integrity: sha512-SCHnK7m/AouZ7nyoR0MEXw1OO/tQojSbp88t8oxhwes5iZkZCtfFdUrJaiIb72qIpH2FVw6s1k1uP7LXuH7PsA== }
+ { integrity: sha512-GGTCkRu1kWXbz2JoUnIYtJBOoA9T5akzsYa91Bh+DZQ3Cj4qXj3hkNU0Rx6wZlbcmkmhQfrjZfVt52eJO/y2nA== }
engines: { node: ">=18" }
"@ethereumjs/util@8.1.0":
@@ -1342,9 +1378,9 @@ packages:
{ integrity: sha512-XBEKsYqLGXLah9PNJbgdkigthkG7TAGvlD/sH12beMXEyHDyigfcbdvHhmLyDWgDyOJn4QwiQUaF7yeuhnjdog== }
engines: { node: ">=18" }
- "@ethereumjs/vm@8.1.1":
+ "@ethereumjs/vm@10.1.0":
resolution:
- { integrity: sha512-h9gIN/maMKXltM4VxZ9ac581PPUUObnFVBniLuu9vJgGTELdnwqxLwJVxSfho/Bhk56YyvKBYf1RpHwoLZZ6xw== }
+ { integrity: sha512-5OxHK4hdccDeSiBeSZj8WITl9uB6NbXA6/yf2wAPoflVxZKzOM5h6ssFrOAhz2faD130UoU62pnT23WClgrXSQ== }
engines: { node: ">=18" }
"@ethersproject/abi@5.8.0":
@@ -1467,9 +1503,9 @@ packages:
resolution:
{ integrity: sha512-2df9bbXicZws2Sb5S6ET493uJ0Z84Fjr3pC4tu/qlnZERibZCeUVuqdtt+7Tv9xxhUxHoIekIA7avrKUWHrezg== }
- "@fleek-platform/cli@3.8.3":
+ "@fleek-platform/cli@3.9.4":
resolution:
- { integrity: sha512-tfSoA77siuqVTQQ3jNj1vAiO/iuo2m4rsmcRfVCTkgHcRn1eINd7m7vgxN8SgMvggMQKoBjs5eYuh6w8APeAzg== }
+ { integrity: sha512-/d1o0Flf36fycClJaLIzNHisTy5f/K1dy072jxTzpmNZxs9xfxD501qcERUaQrVUBlYcSklzVDwpFB+APjEO0g== }
engines: { node: ">=18.18.2" }
hasBin: true
@@ -1480,24 +1516,24 @@ packages:
peerDependencies:
esbuild: ">=0.21.0"
- "@floating-ui/core@1.7.0":
+ "@floating-ui/core@1.7.3":
resolution:
- { integrity: sha512-FRdBLykrPPA6P76GGGqlex/e7fbe0F1ykgxHYNXQsH/iTEtjMj/f9bpY5oQqbjt5VgZvgz/uKXbGuROijh3VLA== }
+ { integrity: sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w== }
- "@floating-ui/dom@1.7.0":
+ "@floating-ui/dom@1.7.4":
resolution:
- { integrity: sha512-lGTor4VlXcesUMh1cupTUTDoCxMb0V6bm3CnxHzQcw8Eaf1jQbgQX4i02fYgT0vJ82tb5MZ4CZk1LRGkktJCzg== }
+ { integrity: sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA== }
- "@floating-ui/react-dom@2.1.2":
+ "@floating-ui/react-dom@2.1.6":
resolution:
- { integrity: sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A== }
+ { integrity: sha512-4JX6rEatQEvlmgU80wZyq9RT96HZJa88q8hp0pBd+LrczeDI4o6uA2M+uvxngVHo4Ihr8uibXxH6+70zhAFrVw== }
peerDependencies:
react: ">=16.8.0"
react-dom: ">=16.8.0"
- "@floating-ui/utils@0.2.9":
+ "@floating-ui/utils@0.2.10":
resolution:
- { integrity: sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg== }
+ { integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ== }
"@google-cloud/paginator@5.0.2":
resolution:
@@ -1514,14 +1550,14 @@ packages:
{ integrity: sha512-Orxzlfb9c67A15cq2JQEyVc7wEsmFBmHjZWZYQMUyJ1qivXyMwdyNOs9odi79hze+2zqdTtu1E19IM/FtqZ10g== }
engines: { node: ">=14" }
- "@google-cloud/storage@7.16.0":
+ "@google-cloud/storage@7.17.3":
resolution:
- { integrity: sha512-7/5LRgykyOfQENcm6hDKP8SX/u9XxE5YOiWOkgkwcoO+cG8xT/cyOvp9wwN3IxfdYgpHs8CE7Nq2PKX2lNaEXw== }
+ { integrity: sha512-gOnCAbFgAYKRozywLsxagdevTF7Gm+2Ncz5u5CQAuOv/2VCa0rdGJWvJFDOftPx1tc+q8TXiC2pEJfFKu+yeMQ== }
engines: { node: ">=14" }
- "@gql.tada/cli-utils@1.6.3":
+ "@gql.tada/cli-utils@1.7.2":
resolution:
- { integrity: sha512-jFFSY8OxYeBxdKi58UzeMXG1tdm4FVjXa8WHIi66Gzu9JWtCE6mqom3a8xkmSw+mVaybFW5EN2WXf1WztJVNyQ== }
+ { integrity: sha512-Qbc7hbLvCz6IliIJpJuKJa9p05b2Jona7ov7+qofCsMRxHRZE1kpAmZMvL8JCI4c0IagpIlWNaMizXEQUe8XjQ== }
peerDependencies:
"@0no-co/graphqlsp": ^1.12.13
"@gql.tada/svelte-support": 1.0.1
@@ -1547,14 +1583,14 @@ packages:
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- "@grpc/grpc-js@1.13.4":
+ "@grpc/grpc-js@1.14.1":
resolution:
- { integrity: sha512-GsFaMXCkMqkKIvwCQjCrwH+GHbPKBjhwo/8ZuUkWHqbI73Kky9I+pQltrlT0+MWpedCoosda53lgjYfyEPgxBg== }
+ { integrity: sha512-sPxgEWtPUR3EnRJCEtbGZG2iX8LQDUls2wUS3o27jg07KqJFMq6YDeWvMo1wfpmy3rqRdS0rivpLwhqQtEyCuQ== }
engines: { node: ">=12.10.0" }
- "@grpc/proto-loader@0.7.15":
+ "@grpc/proto-loader@0.8.0":
resolution:
- { integrity: sha512-tMXdRCfYVixjuFK+Hk0Q1s38gV9zDiDJfWL3h1rv4Qc39oILCu1TRTDt7+fGUI8K4G1Fj125Hx/ru3azECWTyQ== }
+ { integrity: sha512-rc1hOQtjIWGxcxpb9aHAfLpIctjEnsDehj0DAiVfBlmT84uvR0uUtN2hEi/ecvWVjXUGf5qPF4qEgiLOx1YIMQ== }
engines: { node: ">=6" }
hasBin: true
@@ -1563,9 +1599,9 @@ packages:
{ integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA== }
engines: { node: ">=18.18.0" }
- "@humanfs/node@0.16.6":
+ "@humanfs/node@0.16.7":
resolution:
- { integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw== }
+ { integrity: sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ== }
engines: { node: ">=18.18.0" }
"@humanwhocodes/module-importer@1.0.1":
@@ -1573,11 +1609,6 @@ packages:
{ integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== }
engines: { node: ">=12.22" }
- "@humanwhocodes/retry@0.3.1":
- resolution:
- { integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA== }
- engines: { node: ">=18.18" }
-
"@humanwhocodes/retry@0.4.3":
resolution:
{ integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ== }
@@ -1590,42 +1621,45 @@ packages:
peerDependencies:
ink: ">=5"
+ "@isaacs/balanced-match@4.0.1":
+ resolution:
+ { integrity: sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ== }
+ engines: { node: 20 || >=22 }
+
+ "@isaacs/brace-expansion@5.0.0":
+ resolution:
+ { integrity: sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA== }
+ engines: { node: 20 || >=22 }
+
"@isaacs/cliui@8.0.2":
resolution:
{ integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA== }
engines: { node: ">=12" }
- "@isaacs/fs-minipass@4.0.1":
+ "@jridgewell/gen-mapping@0.3.13":
resolution:
- { integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w== }
- engines: { node: ">=18.0.0" }
+ { integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA== }
- "@jridgewell/gen-mapping@0.3.8":
+ "@jridgewell/remapping@2.3.5":
resolution:
- { integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA== }
- engines: { node: ">=6.0.0" }
+ { integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ== }
"@jridgewell/resolve-uri@3.1.2":
resolution:
{ integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw== }
engines: { node: ">=6.0.0" }
- "@jridgewell/set-array@1.2.1":
- resolution:
- { integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A== }
- engines: { node: ">=6.0.0" }
-
- "@jridgewell/source-map@0.3.6":
+ "@jridgewell/source-map@0.3.11":
resolution:
- { integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ== }
+ { integrity: sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA== }
- "@jridgewell/sourcemap-codec@1.5.0":
+ "@jridgewell/sourcemap-codec@1.5.5":
resolution:
- { integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ== }
+ { integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og== }
- "@jridgewell/trace-mapping@0.3.25":
+ "@jridgewell/trace-mapping@0.3.31":
resolution:
- { integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ== }
+ { integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw== }
"@jridgewell/trace-mapping@0.3.9":
resolution:
@@ -1635,13 +1669,13 @@ packages:
resolution:
{ integrity: sha512-iUKgm52T8HOE/makSxjqoWhe95ZJA1/G1sYsGev2JDKUSS14KAgg1LHb+Ba+IPow0xflbnSkOsZcO08C7w1gYw== }
- "@lit-labs/ssr-dom-shim@1.3.0":
+ "@lit-labs/ssr-dom-shim@1.4.0":
resolution:
- { integrity: sha512-nQIWonJ6eFAvUUrSlwyHDm/aE8PBDu5kRpL0vHMg6K8fK3Diq1xdPjTnsJSwxABhaZ+5eBi1btQB5ShUTKo4nQ== }
+ { integrity: sha512-ficsEARKnmmW5njugNYKipTm4SFnbik7CXtoencDZzmzo/dQ+2Q0bgkzJuoJP20Aj0F+izzJjOqsnkd6F/o1bw== }
- "@lit/reactive-element@2.1.0":
+ "@lit/reactive-element@2.1.1":
resolution:
- { integrity: sha512-L2qyoZSQClcBmq0qajBVbhYEcG6iK0XfLn66ifLe/RfC0/ihpc+pl0Wdn8bJ8o+hj38cG0fGXRgSS20MuXn7qA== }
+ { integrity: sha512-N+dm5PAYdQ8e6UlywyyrgI2t++wFGXfHx+dSJ1oBrg6FAxUj40jId++EaRm80MKX5JnlH1sBsyZ5h0bcZKemCg== }
"@merkl/api@0.21.47":
resolution:
@@ -1733,34 +1767,29 @@ packages:
{ integrity: sha512-w8CVbdkDrVXFJbfBSlDfafDR6BAkpDmv1bC1UJVCoVny5tW2RKAdn9i68Xf7asYT4TnUhl/hN4zfUiKQq9II4g== }
engines: { node: ">=16.0.0" }
- "@microsoft/api-extractor-model@7.30.6":
+ "@microsoft/api-extractor-model@7.32.0":
resolution:
- { integrity: sha512-znmFn69wf/AIrwHya3fxX6uB5etSIn6vg4Q4RB/tb5VDDs1rqREc+AvMC/p19MUN13CZ7+V/8pkYPTj7q8tftg== }
+ { integrity: sha512-QIVJSreb8fGGJy1Qx0yzGVXxvHJN1WXgkFNHFheVv1iBJNqgvp+xeT3ienJmRwXmPPc5Es/cxBrXtKZJR3i7iw== }
- "@microsoft/api-extractor@7.52.7":
+ "@microsoft/api-extractor@7.55.0":
resolution:
- { integrity: sha512-YLdPS644MfbLJt4hArP1WcldcaEUBh9wnFjcLEcQnVG0AMznbLh2sdE0F5Wr+w6+Lyp5/XUPvRAg3sYGSP3GCw== }
+ { integrity: sha512-TYc5OtAK/9E3HGgd2bIfSjQDYIwPc0dysf9rPiwXZGsq916I6W2oww9bhm1OxPOeg6rMfOX3PoroGd7oCryYog== }
hasBin: true
- "@microsoft/tsdoc-config@0.17.1":
- resolution:
- { integrity: sha512-UtjIFe0C6oYgTnad4q1QP4qXwLhe6tIpNTRStJ2RZEPIkqQPREAwE5spzVxsdn9UaEMUqhh0AqSx3X4nWAKXWw== }
-
- "@microsoft/tsdoc@0.15.1":
+ "@microsoft/tsdoc-config@0.18.0":
resolution:
- { integrity: sha512-4aErSrCR/On/e5G2hDP0wjooqDdauzEbIq8hIkIe5pXV0rtWJZvdCEKL0ykZxex+IxIwBp0eGeV48hQN07dXtw== }
+ { integrity: sha512-8N/vClYyfOH+l4fLkkr9+myAoR6M7akc8ntBJ4DJdWH2b09uVfr71+LTMpNyG19fNqWDg8KEDZhx5wxuqHyGjw== }
- "@modelcontextprotocol/sdk@1.11.1":
+ "@microsoft/tsdoc@0.16.0":
resolution:
- { integrity: sha512-9LfmxKTb1v+vUS1/emSk1f5ePmTLkb9Le9AxOB5T0XM59EUumwcS45z05h7aiZx3GI0Bl7mjb3FMEglYj+acuQ== }
- engines: { node: ">=18" }
+ { integrity: sha512-xgAyonlVVS+q7Vc7qLW0UrJU7rSFcETRWsqdXZtjzRU8dF+6CkozTK4V4y1LwOX7j8r/vHphjDeMeGI4tNGeGA== }
- "@morpho-org/blue-sdk-viem@3.1.1":
+ "@morpho-org/blue-sdk-viem@3.2.0":
resolution:
- { integrity: sha512-lWeZSJ00SQCJ14WfQ+4mgL1jrG7OWnX+b7KHO1zrEhA3Y9IdqZeuEYqtPvDEXumbLvVb0rVRr0x/MzvHFvz8+g== }
+ { integrity: sha512-NZzQbDfBprqDrvlq0axHKrACJQAbRj7wkTy5ozwjdvmnFmkRgKXASmSXwvIPvnYKUXsTsaN9x9SimS5iO+xdCg== }
peerDependencies:
- "@morpho-org/blue-sdk": ^3.0.9
- "@morpho-org/morpho-ts": ^2.3.0
+ "@morpho-org/blue-sdk": ^4.13.0
+ "@morpho-org/morpho-ts": ^2.4.2
viem: ^2.0.0
"@morpho-org/blue-sdk@3.0.9":
@@ -1769,23 +1798,20 @@ packages:
peerDependencies:
"@morpho-org/morpho-ts": ^2.3.0
- "@morpho-org/morpho-ts@2.3.0":
+ "@morpho-org/morpho-ts@2.4.5":
resolution:
- { integrity: sha512-VBi9ntCAKEoIjVejVSB2P2Gg62QOcBw1sBfES47i/EDswBuqpTXlX1QYclP3GoD1dQaZUpLulRrajGPrHHKDhQ== }
+ { integrity: sha512-s8Kbnl5vWATfhJCRFYunypPD3LIXIHqMmHT9MCMpuup3LCdjd1SUwdDC4UY1jUCciIaL/fbxQll2oHyHaiX5Xw== }
- "@morpho-org/test@2.1.3":
+ "@morpho-org/test@2.6.3":
resolution:
- { integrity: sha512-qggGhvcJZsi3X8jxl+cBeZAWEhc/2J2xXHyWu9+mRR3V3KZ4NLr15xPLRWcpoXVQLdPayCpC5E1qyQeq0GuDdg== }
+ { integrity: sha512-4U7M5ZWmaLG9aae6ygwfTGY6UnGHM1Jc3SIoWlVtDfo5XIoEV7zvSvyGuzwtnwJENtlaJSYtTuj3BBDOIPSxUw== }
peerDependencies:
"@playwright/test": ^1.48.1
- ethers: ^6.13.0
viem: ^2.21.10
vitest: ">=2.0.0 <4.0.0"
peerDependenciesMeta:
"@playwright/test":
optional: true
- ethers:
- optional: true
vitest:
optional: true
@@ -1818,9 +1844,9 @@ packages:
{ integrity: sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g== }
engines: { node: ">=4" }
- "@napi-rs/wasm-runtime@0.2.9":
+ "@napi-rs/wasm-runtime@0.2.12":
resolution:
- { integrity: sha512-OKRBiajrrxB9ATokgEQoG87Z25c67pCpYcCwmXYX8PBftC9pBfN18gnm/fh1wurSLEKIAt+QRFLFCQISrb66Jg== }
+ { integrity: sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ== }
"@noble/ciphers@0.5.3":
resolution:
@@ -1860,6 +1886,21 @@ packages:
{ integrity: sha512-7YDlXiNMdO1YZeH6t/kvopHHbIZzlxrCV9WLqCY6QhcXOoXiNCMDqJIglZ9Yjx5+w7Dz30TITFrlTjnRg7sKEg== }
engines: { node: ^14.21.3 || >=16 }
+ "@noble/curves@1.9.1":
+ resolution:
+ { integrity: sha512-k11yZxZg+t+gWvBbIswW0yoJlu8cHOC7dhunwOzoWH/mXGBiYyR4YY6hAEK/3EUs4UpB8la1RfdRpeGsFHkWsA== }
+ engines: { node: ^14.21.3 || >=16 }
+
+ "@noble/curves@1.9.7":
+ resolution:
+ { integrity: sha512-gbKGcRUYIjA3/zCCNaWDciTMFI0dCkvou3TL8Zmy5Nc7sJ47a0jtOeZoTaMxkuqRo9cRhjOdZJXegxYE5FN/xw== }
+ engines: { node: ^14.21.3 || >=16 }
+
+ "@noble/curves@2.0.1":
+ resolution:
+ { integrity: sha512-vs1Az2OOTBiP4q0pwjW5aF0xp9n4MxVrmkFBxc6EKZc6ddYx5gaZiAsZoq0uRRXWbi3AT/sBqn05eRPtn1JCPw== }
+ engines: { node: ">= 20.19.0" }
+
"@noble/hashes@1.4.0":
resolution:
{ integrity: sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg== }
@@ -1885,6 +1926,11 @@ packages:
{ integrity: sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A== }
engines: { node: ^14.21.3 || >=16 }
+ "@noble/hashes@2.0.1":
+ resolution:
+ { integrity: sha512-XlOlEbQcE9fmuXxrVTXCTlG2nlRXa9Rj3rr5Ue/+tX+nmkgbX720YHh0VR3hBF9xDvwnb8D2shVGOwNx+ulArw== }
+ engines: { node: ">= 20.19.0" }
+
"@nodelib/fs.scandir@2.1.5":
resolution:
{ integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== }
@@ -1915,9 +1961,9 @@ packages:
{ integrity: sha512-JcQDsBdg49Yky2w2ld20IHAlwr8d/d8N6NiOXbtuoPCqzbsiJgF633mVUw3x4mo0H5ypataQIX7SFu3yy44Mpw== }
engines: { node: ">= 18" }
- "@octokit/core@6.1.5":
+ "@octokit/core@6.1.6":
resolution:
- { integrity: sha512-vvmsN0r7rguA+FySiCsbaTTobSftpIDIpPW81trAmsv9TGxg3YCujAxRYp/Uy8xmDgYCzzgulG62H7KYUFmeIg== }
+ { integrity: sha512-kIU8SLQkYWGp3pVKiYzA5OSaNF5EE03P/R8zEmmrG6XwOg5oBjXyQVVIauQ0dgau4zYhpZEhJrvIYt6oM+zZZA== }
engines: { node: ">= 18" }
"@octokit/endpoint@10.1.4":
@@ -1934,9 +1980,9 @@ packages:
resolution:
{ integrity: sha512-9sIH3nSUttelJSXUrmGzl7QUBFul0/mB8HRYl3fOlgHbIWG+WnYDXU3v/2zMtAvuzZ/ed00Ei6on975FhBfzrg== }
- "@octokit/openapi-types@25.0.0":
+ "@octokit/openapi-types@25.1.0":
resolution:
- { integrity: sha512-FZvktFu7HfOIJf2BScLKIEYjDsw6RKc7rBJCdvCTfKsVnx2GEB/Nbzjr29DUdb7vQhlzS/j8qDzdditP0OC6aw== }
+ { integrity: sha512-idsIggNXUKkk0+BExUn1dQ92sfysJrje03Q0bv0e+KPLrvyqZF8MnBpFz8UNfYDwB3Ie7Z0TByjWfzxt7vseaA== }
"@octokit/plugin-paginate-rest@11.6.0":
resolution:
@@ -1971,9 +2017,9 @@ packages:
{ integrity: sha512-WEi/R0Jmq+IJKydWlKDmryPcmdYSVjL3ekaiEL1L9eo1sUnqMJ+grqmC9cjk7CA7+b2/T397tO5d8YLOH3qYpQ== }
engines: { node: ">= 18" }
- "@octokit/request@9.2.3":
+ "@octokit/request@9.2.4":
resolution:
- { integrity: sha512-Ma+pZU8PXLOEYzsWf0cn/gY+ME57Wq8f49WTXA8FMHp2Ps9djKw//xYJ1je8Hm0pR2lU9FUGeJRWOtxq6olt4w== }
+ { integrity: sha512-q8ybdytBmxa6KogWlNa818r0k1wlqzNC+yNkcQDECHvQo8Vmstrg18JwqJHdJdUiHD2sjlwBgSm9kHkOKe2iyA== }
engines: { node: ">= 18" }
"@octokit/rest@21.1.1":
@@ -1985,9 +2031,9 @@ packages:
resolution:
{ integrity: sha512-ifLaO34EbbPj0Xgro4G5lP5asESjwHracYJvVaPIyXMuiuXLlhic3S47cBdTb+jfODkTE5YtGCLt3Ay3+J97sA== }
- "@octokit/types@14.0.0":
+ "@octokit/types@14.1.0":
resolution:
- { integrity: sha512-VVmZP0lEhbo2O1pdq63gZFiGCKkm8PPp8AUOijlwPO6hojEVjspA0MWKP7E4hbvGxzFKNqKr6p0IYtOH/Wf/zA== }
+ { integrity: sha512-1y6DgTy8Jomcpu33N+p5w58l6xyt55Ar2I91RPiIA0xCJBXyUAhXCcmZaDWSANiha7R9a6qJJ2CRomGPZ6f46g== }
"@opentelemetry/api-logs@0.200.0":
resolution:
@@ -2698,9 +2744,9 @@ packages:
{ integrity: sha512-lp4qAiMTD4sNWW4DbKLBkfiMZ4jbAboJIGOQr5DvciMRI494OapieI9qiODpOt0XBr1LjIDy1xAGAnVs5supTA== }
engines: { node: ">=14" }
- "@opentelemetry/semantic-conventions@1.34.0":
+ "@opentelemetry/semantic-conventions@1.38.0":
resolution:
- { integrity: sha512-aKcOkyrorBGlajjRdVoJWHTxfxO1vCNHLJVlSDaRHDIdjU+pX8IYQPvPDkYiujKLbRnWU+1TBwEt0QRgSm4SGA== }
+ { integrity: sha512-kocjix+/sSggfJhwXqClZ3i9Y/MI0fp7b+g7kCRm6psy2dsf8uApTRclwG18h8Avm7C9+fnt+O36PspJ/OzoWg== }
engines: { node: ">=14" }
"@opentelemetry/sql-common@0.40.1":
@@ -2710,9 +2756,9 @@ packages:
peerDependencies:
"@opentelemetry/api": ^1.1.0
- "@openzeppelin/contracts@5.2.0":
+ "@openzeppelin/contracts@5.4.0":
resolution:
- { integrity: sha512-bxjNie5z89W1Ea0NZLZluFh8PrFNn9DH8DQlujEok2yjsOlraUPKID5p1Wk3qdNbf6XkQ1Os2RvfiHrrXLHWKA== }
+ { integrity: sha512-eCYgWnLg6WO+X52I16TZt8uEjbtdkgLC0SUX/xnAksjjrQI4Xfn4iBRoI5j55dmlOhDv1Y7BoR3cU7e3WWhC6A== }
"@oxc-resolver/binding-darwin-arm64@5.3.0":
resolution:
@@ -2797,9 +2843,13 @@ packages:
{ integrity: sha512-IHnV6A+zxU7XwmKFinmYjUcwlyK9+xkG3/s9KcQhI9BjQKycrJ1JRO+FbNYPwZiPKW3je/DR0k7w8/gLa5eaxQ== }
deprecated: 'The package is now available as "qr": npm install qr'
- "@pkgr/core@0.2.4":
+ "@pinojs/redact@0.4.0":
resolution:
- { integrity: sha512-ROFF39F6ZrnzSUEmQQZUar0Jt4xVoP9WnDRdWwF4NNcXs3xBTLgBUDoOwW141y1jP+S8nahIbdxbFC7IShw9Iw== }
+ { integrity: sha512-k2ENnmBugE/rzQfEcdWHcCY+/FM3VLzH9cYEsbdsoqrvzAKRhUZeRNhAZvB8OitQJ1TBed3yqWtdjzS6wJKBwg== }
+
+ "@pkgr/core@0.2.9":
+ resolution:
+ { integrity: sha512-QNqXyfVS2wm9hweSYD2O7F0G06uurj9kZ96TRQE5Y9hU7+tgdZwIkbAKc5Ocy1HxEY2kuDQa6cQ1WRs/O5LFKA== }
engines: { node: ^12.20.0 || ^14.18.0 || >=16.0.0 }
"@pnpm/config.env-replace@1.1.0":
@@ -2817,9 +2867,9 @@ packages:
{ integrity: sha512-c83qWb22rNRuB0UaVCI0uRPNRr8Z0FWnEIvT47jiHAmOIUHbBOg5XvV7pM5x+rKn9HRpjxquDbXYSXr3fAKFcw== }
engines: { node: ">=12" }
- "@ponder/utils@0.2.6":
+ "@ponder/utils@0.2.16":
resolution:
- { integrity: sha512-rsb4Sbq9+v2WRwsQMepkBaUXzQYbHE5fNkqumaECL8KSS9pvetA357Lud+S+QDaXVhikidT+BFRcJLYnRjFTdQ== }
+ { integrity: sha512-Q2TpJ1BywdZhGDjtWe6mDQXn/jF2YDfMwdblDytwGjQ6zuFyuujP+o/liVbuHfqSYmeUOPHugxk5yKAhHwWfJw== }
peerDependencies:
typescript: ">=5.0.4"
viem: ">=2"
@@ -2840,9 +2890,9 @@ packages:
typescript:
optional: true
- "@prisma/instrumentation@6.9.0":
+ "@prisma/instrumentation@6.19.0":
resolution:
- { integrity: sha512-HFfr89v7WEbygdTzh1t171SUMYlkFRTXf48QthDc1cKduEsGIsOdt1QhOlpF7VK+yMg9EXHaXQo5Z8lQ7WtEYA== }
+ { integrity: sha512-QcuYy25pkXM8BJ37wVFBO7Zh34nyRV1GOb2n3lPkkbRYfl4hWl3PTcImP41P0KrzVXfa/45p6eVCos27x3exIg== }
peerDependencies:
"@opentelemetry/api": ^1.8
@@ -2890,13 +2940,13 @@ packages:
resolution:
{ integrity: sha512-MkKCwxlXTgz6CFoJx3pCwn07GKp36+aZyu/u2Ln2VrA5DcdyCZkASEDBTd8x5whTQQL5CiYf4prXKLcgQdv29g== }
- "@radix-ui/primitive@1.1.2":
+ "@radix-ui/primitive@1.1.3":
resolution:
- { integrity: sha512-XnbHrrprsNqZKQhStrSwgRUQzoCI1glLzdw79xiZPoofhGICeZRSQ3dIxAKH1gb3OHfNf4d6f+vAv3kil2eggA== }
+ { integrity: sha512-JTF99U/6XIjCBo0wqkU5sK10glYe27MRRsfwoiq5zzOEZLHU3A3KCMa5X/azekYRCJ0HlwI0crAXS/5dEHTzDg== }
- "@radix-ui/react-alert-dialog@1.1.13":
+ "@radix-ui/react-alert-dialog@1.1.15":
resolution:
- { integrity: sha512-/uPs78OwxGxslYOG5TKeUsv9fZC0vo376cXSADdKirTmsLJU2au6L3n34c3p6W26rFDDDze/hwy4fYeNd0qdGA== }
+ { integrity: sha512-oTVLkEw5GpdRe29BqJ0LSDFWI3qu0vR1M0mUkOQWDIUnY/QIkLpgDMWuKxP94c2NAC2LGcgVhG1ImF3jkZ5wXw== }
peerDependencies:
"@types/react": "*"
"@types/react-dom": "*"
@@ -2908,9 +2958,9 @@ packages:
"@types/react-dom":
optional: true
- "@radix-ui/react-arrow@1.1.6":
+ "@radix-ui/react-arrow@1.1.7":
resolution:
- { integrity: sha512-2JMfHJf/eVnwq+2dewT3C0acmCWD3XiVA1Da+jTDqo342UlU13WvXtqHhG+yJw5JeQmu4ue2eMy6gcEArLBlcw== }
+ { integrity: sha512-F+M1tLhO+mlQaOWspE8Wstg+z6PwxwRd8oQ8IXceWz92kfAmalTRf0EjrouQeo7QssEPfCn05B4Ihs1K9WQ/7w== }
peerDependencies:
"@types/react": "*"
"@types/react-dom": "*"
@@ -2922,9 +2972,9 @@ packages:
"@types/react-dom":
optional: true
- "@radix-ui/react-avatar@1.1.9":
+ "@radix-ui/react-avatar@1.1.11":
resolution:
- { integrity: sha512-10tQokfvZdFvnvDkcOJPjm2pWiP8A0R4T83MoD7tb15bC/k2GU7B1YBuzJi8lNQ8V1QqhP8ocNqp27ByZaNagQ== }
+ { integrity: sha512-0Qk603AHGV28BOBO34p7IgD5m+V5Sg/YovfayABkoDDBM5d3NCx0Mp4gGrjzLGes1jV5eNOE1r3itqOR33VC6Q== }
peerDependencies:
"@types/react": "*"
"@types/react-dom": "*"
@@ -2936,9 +2986,9 @@ packages:
"@types/react-dom":
optional: true
- "@radix-ui/react-collapsible@1.1.10":
+ "@radix-ui/react-collapsible@1.1.12":
resolution:
- { integrity: sha512-O2mcG3gZNkJ/Ena34HurA3llPOEA/M4dJtIRMa6y/cknRDC8XY5UZBInKTsUwW5cUue9A4k0wi1XU5fKBzKe1w== }
+ { integrity: sha512-Uu+mSh4agx2ib1uIGPP4/CKNULyajb3p92LsVXmH2EHVMTfZWpll88XJ0j4W0z3f8NK1eYl1+Mf/szHPmcHzyA== }
peerDependencies:
"@types/react": "*"
"@types/react-dom": "*"
@@ -2950,9 +3000,9 @@ packages:
"@types/react-dom":
optional: true
- "@radix-ui/react-collection@1.1.6":
+ "@radix-ui/react-collection@1.1.7":
resolution:
- { integrity: sha512-PbhRFK4lIEw9ADonj48tiYWzkllz81TM7KVYyyMMw2cwHO7D5h4XKEblL8NlaRisTK3QTe6tBEhDccFUryxHBQ== }
+ { integrity: sha512-Fh9rGN0MoI4ZFUNyfFVNU4y9LUz93u9/0K+yLgA2bwRojxM8JU1DyvvMBabnZPBgMWREAJvU2jjVzq+LrFUglw== }
peerDependencies:
"@types/react": "*"
"@types/react-dom": "*"
@@ -2984,9 +3034,19 @@ packages:
"@types/react":
optional: true
- "@radix-ui/react-dialog@1.1.13":
+ "@radix-ui/react-context@1.1.3":
+ resolution:
+ { integrity: sha512-ieIFACdMpYfMEjF0rEf5KLvfVyIkOz6PDGyNnP+u+4xQ6jny3VCgA4OgXOwNx2aUkxn8zx9fiVcM8CfFYv9Lxw== }
+ peerDependencies:
+ "@types/react": "*"
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ "@types/react":
+ optional: true
+
+ "@radix-ui/react-dialog@1.1.15":
resolution:
- { integrity: sha512-ARFmqUyhIVS3+riWzwGTe7JLjqwqgnODBUZdqpWar/z1WFs9z76fuOs/2BOWCR+YboRn4/WN9aoaGVwqNRr8VA== }
+ { integrity: sha512-TCglVRtzlffRNxRMEyR36DGBLJpeusFcgMVD9PZEzAKnUs1lKCgX5u9BmC2Yg+LL9MgZDugFFs1Vl+Jp4t/PGw== }
peerDependencies:
"@types/react": "*"
"@types/react-dom": "*"
@@ -3008,9 +3068,9 @@ packages:
"@types/react":
optional: true
- "@radix-ui/react-dismissable-layer@1.1.9":
+ "@radix-ui/react-dismissable-layer@1.1.11":
resolution:
- { integrity: sha512-way197PiTvNp+WBP7svMJasHl+vibhWGQDb6Mgf5mhEWJkgb85z7Lfl9TUdkqpWsf8GRNmoopx9ZxCyDzmgRMQ== }
+ { integrity: sha512-Nqcp+t5cTB8BinFkZgXiMJniQH0PsUt2k51FUhbdfeKvc4ACcG2uQniY/8+h1Yv6Kza4Q7lD7PQV0z0oicE0Mg== }
peerDependencies:
"@types/react": "*"
"@types/react-dom": "*"
@@ -3022,9 +3082,9 @@ packages:
"@types/react-dom":
optional: true
- "@radix-ui/react-dropdown-menu@2.1.14":
+ "@radix-ui/react-dropdown-menu@2.1.16":
resolution:
- { integrity: sha512-lzuyNjoWOoaMFE/VC5FnAAYM16JmQA8ZmucOXtlhm2kKR5TSU95YLAueQ4JYuRmUJmBvSqXaVFGIfuukybwZJQ== }
+ { integrity: sha512-1PLGQEynI/3OX/ftV54COn+3Sud/Mn8vALg2rWnBLnRaGtJDduNW/22XjlGgPdpcIbiQxjKtb7BkcjP00nqfJw== }
peerDependencies:
"@types/react": "*"
"@types/react-dom": "*"
@@ -3036,9 +3096,9 @@ packages:
"@types/react-dom":
optional: true
- "@radix-ui/react-focus-guards@1.1.2":
+ "@radix-ui/react-focus-guards@1.1.3":
resolution:
- { integrity: sha512-fyjAACV62oPV925xFCrH8DR5xWhg9KYtJT4s3u54jxp+L/hbpTY2kIeEFFbFe+a/HCE94zGQMZLIpVTPVZDhaA== }
+ { integrity: sha512-0rFg/Rj2Q62NCm62jZw0QX7a3sz6QCQU0LpZdNrJX8byRGaGVTqbrW9jAoIAHyMQqsNpeZ81YgSizOt5WXq0Pw== }
peerDependencies:
"@types/react": "*"
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -3046,9 +3106,9 @@ packages:
"@types/react":
optional: true
- "@radix-ui/react-focus-scope@1.1.6":
+ "@radix-ui/react-focus-scope@1.1.7":
resolution:
- { integrity: sha512-r9zpYNUQY+2jWHWZGyddQLL9YHkM/XvSFHVcWs7bdVuxMAnCwTAuy6Pf47Z4nw7dYcUou1vg/VgjjrrH03VeBw== }
+ { integrity: sha512-t2ODlkXBQyn7jkl6TNaw/MtVEVvIGelJDCG41Okq/KwUsJBwQ4XVZsHAVUkK4mBv3ewiAS3PGuUWuY2BoK4ZUw== }
peerDependencies:
"@types/react": "*"
"@types/react-dom": "*"
@@ -3060,9 +3120,9 @@ packages:
"@types/react-dom":
optional: true
- "@radix-ui/react-hover-card@1.1.13":
+ "@radix-ui/react-hover-card@1.1.15":
resolution:
- { integrity: sha512-Wtjvx0d/6Bgd/jAYS1mW6IPSUQ25y0hkUSOS1z5/4+U8+DJPwKroqJlM/AlVFl3LywGoruiPmcvB9Aks9mSOQw== }
+ { integrity: sha512-qgTkjNT1CfKMoP0rcasmlH2r1DAiYicWsDsufxl940sT2wHNEWWv6FMWIQXWhVdmC1d/HYfbhQx60KYyAtKxjg== }
peerDependencies:
"@types/react": "*"
"@types/react-dom": "*"
@@ -3084,9 +3144,23 @@ packages:
"@types/react":
optional: true
- "@radix-ui/react-label@2.1.6":
+ "@radix-ui/react-label@2.1.8":
+ resolution:
+ { integrity: sha512-FmXs37I6hSBVDlO4y764TNz1rLgKwjJMQ0EGte6F3Cb3f4bIuHB/iLa/8I9VKkmOy+gNHq8rql3j686ACVV21A== }
+ 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-menu@2.1.16":
resolution:
- { integrity: sha512-S/hv1mTlgcPX2gCTJrWuTjSXf7ER3Zf7zWGtOprxhIIY93Qin3n5VgNA0Ez9AgrK/lEtlYgzLd4f5x6AVar4Yw== }
+ { integrity: sha512-72F2T+PLlphrqLcAotYPp0uJMr5SjP5SL01wfEspJbru5Zs5vQaSHb4VB3ZMJPimgHHCHG7gMOeOB9H3Hdmtxg== }
peerDependencies:
"@types/react": "*"
"@types/react-dom": "*"
@@ -3098,9 +3172,9 @@ packages:
"@types/react-dom":
optional: true
- "@radix-ui/react-menu@2.1.14":
+ "@radix-ui/react-popover@1.1.15":
resolution:
- { integrity: sha512-0zSiBAIFq9GSKoSH5PdEaQeRB3RnEGxC+H2P0egtnKoKKLNBH8VBHyVO6/jskhjAezhOIplyRUj7U2lds9A+Yg== }
+ { integrity: sha512-kr0X2+6Yy/vJzLYJUPCZEc8SfQcf+1COFoAqauJm74umQhta9M7lNJHP7QQS3vkvcGLQUbWpMzwrXYwrYztHKA== }
peerDependencies:
"@types/react": "*"
"@types/react-dom": "*"
@@ -3112,9 +3186,9 @@ packages:
"@types/react-dom":
optional: true
- "@radix-ui/react-popover@1.1.13":
+ "@radix-ui/react-popper@1.2.8":
resolution:
- { integrity: sha512-84uqQV3omKDR076izYgcha6gdpN8m3z6w/AeJ83MSBJYVG/AbOHdLjAgsPZkeC/kt+k64moXFCnio8BbqXszlw== }
+ { integrity: sha512-0NJQ4LFFUuWkE7Oxf0htBKS6zLkkjBH+hM1uk7Ng705ReR8m/uelduy1DBo0PyBXPKVnBA6YBlU94MBGXrSBCw== }
peerDependencies:
"@types/react": "*"
"@types/react-dom": "*"
@@ -3126,9 +3200,9 @@ packages:
"@types/react-dom":
optional: true
- "@radix-ui/react-popper@1.2.6":
+ "@radix-ui/react-portal@1.1.9":
resolution:
- { integrity: sha512-7iqXaOWIjDBfIG7aq8CUEeCSsQMLFdn7VEE8TaFz704DtEzpPHR7w/uuzRflvKgltqSAImgcmxQ7fFX3X7wasg== }
+ { integrity: sha512-bpIxvq03if6UNwXZ+HTK71JLh4APvnXntDc6XOX8UVq4XQOVl7lwok0AvIl+b8zgCw3fSaVTZMpAPPagXbKmHQ== }
peerDependencies:
"@types/react": "*"
"@types/react-dom": "*"
@@ -3140,9 +3214,9 @@ packages:
"@types/react-dom":
optional: true
- "@radix-ui/react-portal@1.1.8":
+ "@radix-ui/react-presence@1.1.5":
resolution:
- { integrity: sha512-hQsTUIn7p7fxCPvao/q6wpbxmCwgLrlz+nOrJgC+RwfZqWY/WN+UMqkXzrtKbPrF82P43eCTl3ekeKuyAQbFeg== }
+ { integrity: sha512-/jfEwNDdQVBCNvjkGit4h6pMOzq8bHkopq458dPt2lMjx+eBQUohZNG9A7DtO/O5ukSbxuaNGXMjHicgwy6rQQ== }
peerDependencies:
"@types/react": "*"
"@types/react-dom": "*"
@@ -3154,9 +3228,9 @@ packages:
"@types/react-dom":
optional: true
- "@radix-ui/react-presence@1.1.4":
+ "@radix-ui/react-primitive@2.1.3":
resolution:
- { integrity: sha512-ueDqRbdc4/bkaQT3GIpLQssRlFgWaL/U2z/S31qRwwLWoxHLgry3SIfCwhxeQNbirEUXFa+lq3RL3oBYXtcmIA== }
+ { integrity: sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ== }
peerDependencies:
"@types/react": "*"
"@types/react-dom": "*"
@@ -3168,9 +3242,9 @@ packages:
"@types/react-dom":
optional: true
- "@radix-ui/react-primitive@2.1.2":
+ "@radix-ui/react-primitive@2.1.4":
resolution:
- { integrity: sha512-uHa+l/lKfxuDD2zjN/0peM/RhhSmRjr5YWdk/37EnSv1nJ88uvG85DPexSm8HdFQROd2VdERJ6ynXbkCFi+APw== }
+ { integrity: sha512-9hQc4+GNVtJAIEPEqlYqW5RiYdrr8ea5XQ0ZOnD6fgru+83kqT15mq2OCcbe8KnjRZl5vF3ks69AKz3kh1jrhg== }
peerDependencies:
"@types/react": "*"
"@types/react-dom": "*"
@@ -3182,9 +3256,9 @@ packages:
"@types/react-dom":
optional: true
- "@radix-ui/react-progress@1.1.6":
+ "@radix-ui/react-progress@1.1.8":
resolution:
- { integrity: sha512-QzN9a36nKk2eZKMf9EBCia35x3TT+SOgZuzQBVIHyRrmYYi73VYBRK3zKwdJ6az/F5IZ6QlacGJBg7zfB85liA== }
+ { integrity: sha512-+gISHcSPUJ7ktBy9RnTqbdKW78bcGke3t6taawyZ71pio1JewwGSJizycs7rLhGTvMJYCQB1DBK4KQsxs7U8dA== }
peerDependencies:
"@types/react": "*"
"@types/react-dom": "*"
@@ -3196,9 +3270,9 @@ packages:
"@types/react-dom":
optional: true
- "@radix-ui/react-roving-focus@1.1.9":
+ "@radix-ui/react-roving-focus@1.1.11":
resolution:
- { integrity: sha512-ZzrIFnMYHHCNqSNCsuN6l7wlewBEq0O0BCSBkabJMFXVO51LRUTq71gLP1UxFvmrXElqmPjA5VX7IqC9VpazAQ== }
+ { integrity: sha512-7A6S9jSgm/S+7MdtNDSb+IU859vQqJ/QAtcYQcfFC6W8RS4IxIZDldLR0xqCFZ6DCyrQLjLPsxtTNch5jVA4lA== }
peerDependencies:
"@types/react": "*"
"@types/react-dom": "*"
@@ -3210,9 +3284,9 @@ packages:
"@types/react-dom":
optional: true
- "@radix-ui/react-select@2.2.4":
+ "@radix-ui/react-select@2.2.6":
resolution:
- { integrity: sha512-/OOm58Gil4Ev5zT8LyVzqfBcij4dTHYdeyuF5lMHZ2bIp0Lk9oETocYiJ5QC0dHekEQnK6L/FNJCceeb4AkZ6Q== }
+ { integrity: sha512-I30RydO+bnn2PQztvo25tswPH+wFBjehVGtmagkU78yMdwTwVf12wnAOF+AeP8S2N8xD+5UPbGhkUfPyvT+mwQ== }
peerDependencies:
"@types/react": "*"
"@types/react-dom": "*"
@@ -3224,9 +3298,9 @@ packages:
"@types/react-dom":
optional: true
- "@radix-ui/react-separator@1.1.6":
+ "@radix-ui/react-separator@1.1.8":
resolution:
- { integrity: sha512-Izof3lPpbCfTM7WDta+LRkz31jem890VjEvpVRoWQNKpDUMMVffuyq854XPGP1KYGWWmjmYvHvPFeocWhFCy1w== }
+ { integrity: sha512-sDvqVY4itsKwwSMEe0jtKgfTh+72Sy3gPmQpjqcQneqQ4PFmr/1I0YA+2/puilhggCe2gJcx5EBAYFkWkdpa5g== }
peerDependencies:
"@types/react": "*"
"@types/react-dom": "*"
@@ -3238,9 +3312,19 @@ packages:
"@types/react-dom":
optional: true
- "@radix-ui/react-slot@1.2.2":
+ "@radix-ui/react-slot@1.2.3":
+ resolution:
+ { integrity: sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A== }
+ peerDependencies:
+ "@types/react": "*"
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ "@types/react":
+ optional: true
+
+ "@radix-ui/react-slot@1.2.4":
resolution:
- { integrity: sha512-y7TBO4xN4Y94FvcWIOIh18fM4R1A8S4q1jhoz4PNzOoHsFcN8pogcFmZrTYAm4F9VRUrWP/Mw7xSKybIeRI+CQ== }
+ { integrity: sha512-Jl+bCv8HxKnlTLVrcDE8zTMJ09R9/ukw4qBs/oZClOfoQk/cOTbDn+NceXfV7j09YPVQUryJPHurafcSg6EVKA== }
peerDependencies:
"@types/react": "*"
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -3248,9 +3332,9 @@ packages:
"@types/react":
optional: true
- "@radix-ui/react-tabs@1.1.11":
+ "@radix-ui/react-tabs@1.1.13":
resolution:
- { integrity: sha512-4FiKSVoXqPP/KfzlB7lwwqoFV6EPwkrrqGp9cUYXjwDYHhvpnqq79P+EPHKcdoTE7Rl8w/+6s9rTlsfXHES9GA== }
+ { integrity: sha512-7xdcatg7/U+7+Udyoj2zodtI9H/IIopqo+YOIcZOq1nJwXWBZ9p8xiu5llXlekDbZkca79a/fozEYQXIA4sW6A== }
peerDependencies:
"@types/react": "*"
"@types/react-dom": "*"
@@ -3262,9 +3346,9 @@ packages:
"@types/react-dom":
optional: true
- "@radix-ui/react-tooltip@1.2.6":
+ "@radix-ui/react-tooltip@1.2.8":
resolution:
- { integrity: sha512-zYb+9dc9tkoN2JjBDIIPLQtk3gGyz8FMKoqYTb8EMVQ5a5hBcdHPECrsZVI4NpPAUOixhkoqg7Hj5ry5USowfA== }
+ { integrity: sha512-tY7sVt1yL9ozIxvmbtN5qtmH2krXcBCfjEiCgKGLqunJHvgvZG2Pcl2oQ3kbcZARb1BGEHdkLzcYGO8ynVlieg== }
peerDependencies:
"@types/react": "*"
"@types/react-dom": "*"
@@ -3366,9 +3450,9 @@ packages:
"@types/react":
optional: true
- "@radix-ui/react-visually-hidden@1.2.2":
+ "@radix-ui/react-visually-hidden@1.2.3":
resolution:
- { integrity: sha512-ORCmRUbNiZIv6uV5mhFrhsIKw4UX/N3syZtyqvry61tbGm4JlgQuSn0hk5TwCARsCjkcnuRkSdCE3xfb+ADHew== }
+ { integrity: sha512-pzJq12tEaaIhqjbzpCuv/OypJY/BPavOofm+dbab+MHLajy277+1lLm6JFcGgF5eskJ6mquGirhXY2GD/8u8Ug== }
peerDependencies:
"@types/react": "*"
"@types/react-dom": "*"
@@ -3453,9 +3537,13 @@ packages:
resolution:
{ integrity: sha512-aA/UIwi/dVzxEB62xlw3qxHa3RK1YcPMjNxoGj/fHNCqL2qWmbcOXT7coCUa9RG7/Bh26FZ3vdVT2v71j6hebQ== }
- "@rollup/pluginutils@5.1.4":
+ "@rolldown/pluginutils@1.0.0-beta.27":
+ resolution:
+ { integrity: sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA== }
+
+ "@rollup/pluginutils@5.3.0":
resolution:
- { integrity: sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ== }
+ { integrity: sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q== }
engines: { node: ">=14.0.0" }
peerDependencies:
rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
@@ -3463,151 +3551,172 @@ packages:
rollup:
optional: true
- "@rollup/rollup-android-arm-eabi@4.40.2":
+ "@rollup/rollup-android-arm-eabi@4.53.3":
resolution:
- { integrity: sha512-JkdNEq+DFxZfUwxvB58tHMHBHVgX23ew41g1OQinthJ+ryhdRk67O31S7sYw8u2lTjHUPFxwar07BBt1KHp/hg== }
+ { integrity: sha512-mRSi+4cBjrRLoaal2PnqH82Wqyb+d3HsPUN/W+WslCXsZsyHa9ZeQQX/pQsZaVIWDkPcpV6jJ+3KLbTbgnwv8w== }
cpu: [arm]
os: [android]
- "@rollup/rollup-android-arm64@4.40.2":
+ "@rollup/rollup-android-arm64@4.53.3":
resolution:
- { integrity: sha512-13unNoZ8NzUmnndhPTkWPWbX3vtHodYmy+I9kuLxN+F+l+x3LdVF7UCu8TWVMt1POHLh6oDHhnOA04n8oJZhBw== }
+ { integrity: sha512-CbDGaMpdE9sh7sCmTrTUyllhrg65t6SwhjlMJsLr+J8YjFuPmCEjbBSx4Z/e4SmDyH3aB5hGaJUP2ltV/vcs4w== }
cpu: [arm64]
os: [android]
- "@rollup/rollup-darwin-arm64@4.40.2":
+ "@rollup/rollup-darwin-arm64@4.53.3":
resolution:
- { integrity: sha512-Gzf1Hn2Aoe8VZzevHostPX23U7N5+4D36WJNHK88NZHCJr7aVMG4fadqkIf72eqVPGjGc0HJHNuUaUcxiR+N/w== }
+ { integrity: sha512-Nr7SlQeqIBpOV6BHHGZgYBuSdanCXuw09hon14MGOLGmXAFYjx1wNvquVPmpZnl0tLjg25dEdr4IQ6GgyToCUA== }
cpu: [arm64]
os: [darwin]
- "@rollup/rollup-darwin-x64@4.40.2":
+ "@rollup/rollup-darwin-x64@4.53.3":
resolution:
- { integrity: sha512-47N4hxa01a4x6XnJoskMKTS8XZ0CZMd8YTbINbi+w03A2w4j1RTlnGHOz/P0+Bg1LaVL6ufZyNprSg+fW5nYQQ== }
+ { integrity: sha512-DZ8N4CSNfl965CmPktJ8oBnfYr3F8dTTNBQkRlffnUarJ2ohudQD17sZBa097J8xhQ26AwhHJ5mvUyQW8ddTsQ== }
cpu: [x64]
os: [darwin]
- "@rollup/rollup-freebsd-arm64@4.40.2":
+ "@rollup/rollup-freebsd-arm64@4.53.3":
resolution:
- { integrity: sha512-8t6aL4MD+rXSHHZUR1z19+9OFJ2rl1wGKvckN47XFRVO+QL/dUSpKA2SLRo4vMg7ELA8pzGpC+W9OEd1Z/ZqoQ== }
+ { integrity: sha512-yMTrCrK92aGyi7GuDNtGn2sNW+Gdb4vErx4t3Gv/Tr+1zRb8ax4z8GWVRfr3Jw8zJWvpGHNpss3vVlbF58DZ4w== }
cpu: [arm64]
os: [freebsd]
- "@rollup/rollup-freebsd-x64@4.40.2":
+ "@rollup/rollup-freebsd-x64@4.53.3":
resolution:
- { integrity: sha512-C+AyHBzfpsOEYRFjztcYUFsH4S7UsE9cDtHCtma5BK8+ydOZYgMmWg1d/4KBytQspJCld8ZIujFMAdKG1xyr4Q== }
+ { integrity: sha512-lMfF8X7QhdQzseM6XaX0vbno2m3hlyZFhwcndRMw8fbAGUGL3WFMBdK0hbUBIUYcEcMhVLr1SIamDeuLBnXS+Q== }
cpu: [x64]
os: [freebsd]
- "@rollup/rollup-linux-arm-gnueabihf@4.40.2":
+ "@rollup/rollup-linux-arm-gnueabihf@4.53.3":
resolution:
- { integrity: sha512-de6TFZYIvJwRNjmW3+gaXiZ2DaWL5D5yGmSYzkdzjBDS3W+B9JQ48oZEsmMvemqjtAFzE16DIBLqd6IQQRuG9Q== }
+ { integrity: sha512-k9oD15soC/Ln6d2Wv/JOFPzZXIAIFLp6B+i14KhxAfnq76ajt0EhYc5YPeX6W1xJkAdItcVT+JhKl1QZh44/qw== }
cpu: [arm]
os: [linux]
- "@rollup/rollup-linux-arm-musleabihf@4.40.2":
+ "@rollup/rollup-linux-arm-musleabihf@4.53.3":
resolution:
- { integrity: sha512-urjaEZubdIkacKc930hUDOfQPysezKla/O9qV+O89enqsqUmQm8Xj8O/vh0gHg4LYfv7Y7UsE3QjzLQzDYN1qg== }
+ { integrity: sha512-vTNlKq+N6CK/8UktsrFuc+/7NlEYVxgaEgRXVUVK258Z5ymho29skzW1sutgYjqNnquGwVUObAaxae8rZ6YMhg== }
cpu: [arm]
os: [linux]
- "@rollup/rollup-linux-arm64-gnu@4.40.2":
+ "@rollup/rollup-linux-arm64-gnu@4.53.3":
resolution:
- { integrity: sha512-KlE8IC0HFOC33taNt1zR8qNlBYHj31qGT1UqWqtvR/+NuCVhfufAq9fxO8BMFC22Wu0rxOwGVWxtCMvZVLmhQg== }
+ { integrity: sha512-RGrFLWgMhSxRs/EWJMIFM1O5Mzuz3Xy3/mnxJp/5cVhZ2XoCAxJnmNsEyeMJtpK+wu0FJFWz+QF4mjCA7AUQ3w== }
cpu: [arm64]
os: [linux]
- "@rollup/rollup-linux-arm64-musl@4.40.2":
+ "@rollup/rollup-linux-arm64-musl@4.53.3":
resolution:
- { integrity: sha512-j8CgxvfM0kbnhu4XgjnCWJQyyBOeBI1Zq91Z850aUddUmPeQvuAy6OiMdPS46gNFgy8gN1xkYyLgwLYZG3rBOg== }
+ { integrity: sha512-kASyvfBEWYPEwe0Qv4nfu6pNkITLTb32p4yTgzFCocHnJLAHs+9LjUu9ONIhvfT/5lv4YS5muBHyuV84epBo/A== }
cpu: [arm64]
os: [linux]
- "@rollup/rollup-linux-loongarch64-gnu@4.40.2":
+ "@rollup/rollup-linux-loong64-gnu@4.53.3":
resolution:
- { integrity: sha512-Ybc/1qUampKuRF4tQXc7G7QY9YRyeVSykfK36Y5Qc5dmrIxwFhrOzqaVTNoZygqZ1ZieSWTibfFhQ5qK8jpWxw== }
+ { integrity: sha512-JiuKcp2teLJwQ7vkJ95EwESWkNRFJD7TQgYmCnrPtlu50b4XvT5MOmurWNrCj3IFdyjBQ5p9vnrX4JM6I8OE7g== }
cpu: [loong64]
os: [linux]
- "@rollup/rollup-linux-powerpc64le-gnu@4.40.2":
+ "@rollup/rollup-linux-ppc64-gnu@4.53.3":
resolution:
- { integrity: sha512-3FCIrnrt03CCsZqSYAOW/k9n625pjpuMzVfeI+ZBUSDT3MVIFDSPfSUgIl9FqUftxcUXInvFah79hE1c9abD+Q== }
+ { integrity: sha512-EoGSa8nd6d3T7zLuqdojxC20oBfNT8nexBbB/rkxgKj5T5vhpAQKKnD+h3UkoMuTyXkP5jTjK/ccNRmQrPNDuw== }
cpu: [ppc64]
os: [linux]
- "@rollup/rollup-linux-riscv64-gnu@4.40.2":
+ "@rollup/rollup-linux-riscv64-gnu@4.53.3":
resolution:
- { integrity: sha512-QNU7BFHEvHMp2ESSY3SozIkBPaPBDTsfVNGx3Xhv+TdvWXFGOSH2NJvhD1zKAT6AyuuErJgbdvaJhYVhVqrWTg== }
+ { integrity: sha512-4s+Wped2IHXHPnAEbIB0YWBv7SDohqxobiiPA1FIWZpX+w9o2i4LezzH/NkFUl8LRci/8udci6cLq+jJQlh+0g== }
cpu: [riscv64]
os: [linux]
- "@rollup/rollup-linux-riscv64-musl@4.40.2":
+ "@rollup/rollup-linux-riscv64-musl@4.53.3":
resolution:
- { integrity: sha512-5W6vNYkhgfh7URiXTO1E9a0cy4fSgfE4+Hl5agb/U1sa0kjOLMLC1wObxwKxecE17j0URxuTrYZZME4/VH57Hg== }
+ { integrity: sha512-68k2g7+0vs2u9CxDt5ktXTngsxOQkSEV/xBbwlqYcUrAVh6P9EgMZvFsnHy4SEiUl46Xf0IObWVbMvPrr2gw8A== }
cpu: [riscv64]
os: [linux]
- "@rollup/rollup-linux-s390x-gnu@4.40.2":
+ "@rollup/rollup-linux-s390x-gnu@4.53.3":
resolution:
- { integrity: sha512-B7LKIz+0+p348JoAL4X/YxGx9zOx3sR+o6Hj15Y3aaApNfAshK8+mWZEf759DXfRLeL2vg5LYJBB7DdcleYCoQ== }
+ { integrity: sha512-VYsFMpULAz87ZW6BVYw3I6sWesGpsP9OPcyKe8ofdg9LHxSbRMd7zrVrr5xi/3kMZtpWL/wC+UIJWJYVX5uTKg== }
cpu: [s390x]
os: [linux]
- "@rollup/rollup-linux-x64-gnu@4.40.2":
+ "@rollup/rollup-linux-x64-gnu@4.53.3":
resolution:
- { integrity: sha512-lG7Xa+BmBNwpjmVUbmyKxdQJ3Q6whHjMjzQplOs5Z+Gj7mxPtWakGHqzMqNER68G67kmCX9qX57aRsW5V0VOng== }
+ { integrity: sha512-3EhFi1FU6YL8HTUJZ51imGJWEX//ajQPfqWLI3BQq4TlvHy4X0MOr5q3D2Zof/ka0d5FNdPwZXm3Yyib/UEd+w== }
cpu: [x64]
os: [linux]
- "@rollup/rollup-linux-x64-musl@4.40.2":
+ "@rollup/rollup-linux-x64-musl@4.53.3":
resolution:
- { integrity: sha512-tD46wKHd+KJvsmije4bUskNuvWKFcTOIM9tZ/RrmIvcXnbi0YK/cKS9FzFtAm7Oxi2EhV5N2OpfFB348vSQRXA== }
+ { integrity: sha512-eoROhjcc6HbZCJr+tvVT8X4fW3/5g/WkGvvmwz/88sDtSJzO7r/blvoBDgISDiCjDRZmHpwud7h+6Q9JxFwq1Q== }
cpu: [x64]
os: [linux]
- "@rollup/rollup-win32-arm64-msvc@4.40.2":
+ "@rollup/rollup-openharmony-arm64@4.53.3":
resolution:
- { integrity: sha512-Bjv/HG8RRWLNkXwQQemdsWw4Mg+IJ29LK+bJPW2SCzPKOUaMmPEppQlu/Fqk1d7+DX3V7JbFdbkh/NMmurT6Pg== }
+ { integrity: sha512-OueLAWgrNSPGAdUdIjSWXw+u/02BRTcnfw9PN41D2vq/JSEPnJnVuBgw18VkN8wcd4fjUs+jFHVM4t9+kBSNLw== }
+ cpu: [arm64]
+ os: [openharmony]
+
+ "@rollup/rollup-win32-arm64-msvc@4.53.3":
+ resolution:
+ { integrity: sha512-GOFuKpsxR/whszbF/bzydebLiXIHSgsEUp6M0JI8dWvi+fFa1TD6YQa4aSZHtpmh2/uAlj/Dy+nmby3TJ3pkTw== }
cpu: [arm64]
os: [win32]
- "@rollup/rollup-win32-ia32-msvc@4.40.2":
+ "@rollup/rollup-win32-ia32-msvc@4.53.3":
resolution:
- { integrity: sha512-dt1llVSGEsGKvzeIO76HToiYPNPYPkmjhMHhP00T9S4rDern8P2ZWvWAQUEJ+R1UdMWJ/42i/QqJ2WV765GZcA== }
+ { integrity: sha512-iah+THLcBJdpfZ1TstDFbKNznlzoxa8fmnFYK4V67HvmuNYkVdAywJSoteUszvBQ9/HqN2+9AZghbajMsFT+oA== }
cpu: [ia32]
os: [win32]
- "@rollup/rollup-win32-x64-msvc@4.40.2":
+ "@rollup/rollup-win32-x64-gnu@4.53.3":
+ resolution:
+ { integrity: sha512-J9QDiOIZlZLdcot5NXEepDkstocktoVjkaKUtqzgzpt2yWjGlbYiKyp05rWwk4nypbYUNoFAztEgixoLaSETkg== }
+ cpu: [x64]
+ os: [win32]
+
+ "@rollup/rollup-win32-x64-msvc@4.53.3":
resolution:
- { integrity: sha512-bwspbWB04XJpeElvsp+DCylKfF4trJDa2Y9Go8O6A7YLX2LIKGcNK/CYImJN6ZP4DcuOHB4Utl3iCbnR62DudA== }
+ { integrity: sha512-UhTd8u31dXadv0MopwGgNOBpUVROFKWVQgAg5N1ESyCz8AuBcMqm4AuTjrwgQKGDfoFuz02EuMRHQIw/frmYKQ== }
cpu: [x64]
os: [win32]
- "@rushstack/node-core-library@5.13.1":
+ "@rushstack/node-core-library@5.18.0":
+ resolution:
+ { integrity: sha512-XDebtBdw5S3SuZIt+Ra2NieT8kQ3D2Ow1HxhDQ/2soinswnOu9e7S69VSwTOLlQnx5mpWbONu+5JJjDxMAb6Fw== }
+ peerDependencies:
+ "@types/node": "*"
+ peerDependenciesMeta:
+ "@types/node":
+ optional: true
+
+ "@rushstack/problem-matcher@0.1.1":
resolution:
- { integrity: sha512-5yXhzPFGEkVc9Fu92wsNJ9jlvdwz4RNb2bMso+/+TH0nMm1jDDDsOIf4l8GAkPxGuwPw5DH24RliWVfSPhlW/Q== }
+ { integrity: sha512-Fm5XtS7+G8HLcJHCWpES5VmeMyjAKaWeyZU5qPzZC+22mPlJzAsOxymHiWIfuirtPckX3aptWws+K2d0BzniJA== }
peerDependencies:
"@types/node": "*"
peerDependenciesMeta:
"@types/node":
optional: true
- "@rushstack/rig-package@0.5.3":
+ "@rushstack/rig-package@0.6.0":
resolution:
- { integrity: sha512-olzSSjYrvCNxUFZowevC3uz8gvKr3WTpHQ7BkpjtRpA3wK+T0ybep/SRUMfr195gBzJm5gaXw0ZMgjIyHqJUow== }
+ { integrity: sha512-ZQmfzsLE2+Y91GF15c65L/slMRVhF6Hycq04D4TwtdGaUAbIXXg9c5pKA5KFU7M4QMaihoobp9JJYpYcaY3zOw== }
- "@rushstack/terminal@0.15.3":
+ "@rushstack/terminal@0.19.3":
resolution:
- { integrity: sha512-DGJ0B2Vm69468kZCJkPj3AH5nN+nR9SPmC0rFHtzsS4lBQ7/dgOwtwVxYP7W9JPDMuRBkJ4KHmWKr036eJsj9g== }
+ { integrity: sha512-0P8G18gK9STyO+CNBvkKPnWGMxESxecTYqOcikHOVIHXa9uAuTK+Fw8TJq2Gng1w7W6wTC9uPX6hGNvrMll2wA== }
peerDependencies:
"@types/node": "*"
peerDependenciesMeta:
"@types/node":
optional: true
- "@rushstack/ts-command-line@5.0.1":
+ "@rushstack/ts-command-line@5.1.3":
resolution:
- { integrity: sha512-bsbUucn41UXrQK7wgM8CNM/jagBytEyJqXw/umtI8d68vFm1Jwxh1OtLrlW7uGZgjCWiiPH6ooUNa1aVsuVr3Q== }
+ { integrity: sha512-Kdv0k/BnnxIYFlMVC1IxrIS0oGQd4T4b7vKfx52Y2+wk2WZSDFIvedr7JrhenzSlm3ou5KwtoTGTGd5nbODRug== }
"@safe-global/safe-apps-provider@0.18.6":
resolution:
@@ -3666,9 +3775,9 @@ packages:
resolution:
{ integrity: sha512-8YKhl8GHiNI/pU2VMaofa2Tor7PJRAjwQLBBuilkJ9L5+13yVbC7JO/wS7piioAvPSwR3JKM1IJ/u4xQzbcXKg== }
- "@scure/base@1.2.5":
+ "@scure/base@1.2.6":
resolution:
- { integrity: sha512-9rE6EOVeIQzt5TSu4v+K523F8u6DhBsoZWPGKlnCshhlDhy0kJzUX4V+tr2dWmzF1GdekvThABoEQBGBQI7xZw== }
+ { integrity: sha512-g/nm5FgUa//MCj1gV09zTJTaM6KBAHqLN907YVQqf7zC49+DcO4B1so4ZX07Ef10Twr6nuqYEH9GEggFXA4Fmg== }
"@scure/bip32@1.4.0":
resolution:
@@ -3694,68 +3803,68 @@ packages:
resolution:
{ integrity: sha512-+lF0BbLiJNwVlev4eKelw1WWLaiKXw7sSl8T6FvBlWkdX+94aGJ4o8XjUdlyhTCjd8c+B3KT3JfS8P0bLRNU6A== }
- "@sinclair/typebox@0.34.33":
+ "@sinclair/typebox@0.34.41":
resolution:
- { integrity: sha512-5HAV9exOMcXRUxo+9iYB5n09XxzCXnfy4VTNW4xnDv+FgjzAGY989C28BIdljKqmF+ZltUwujE3aossvcVtq6g== }
+ { integrity: sha512-6gS8pZzSXdyRHTIqoqSVknxolr1kzfy4/CeDnrzsVz8TTIWUbOBr6gnzOmTYJ3eXQNh4IYHIGi5aIL7sOZ2G/g== }
- "@smithy/abort-controller@4.0.2":
+ "@smithy/abort-controller@4.2.5":
resolution:
- { integrity: sha512-Sl/78VDtgqKxN2+1qduaVE140XF+Xg+TafkncspwM4jFP/LHr76ZHmIY/y3V1M0mMLNk+Je6IGbzxy23RSToMw== }
+ { integrity: sha512-j7HwVkBw68YW8UmFRcjZOmssE77Rvk0GWAIN1oFBhsaovQmZWYCIcGa9/pwRB0ExI8Sk9MWNALTjftjHZea7VA== }
engines: { node: ">=18.0.0" }
- "@smithy/config-resolver@4.1.2":
+ "@smithy/config-resolver@4.4.3":
resolution:
- { integrity: sha512-7r6mZGwb5LmLJ+zPtkLoznf2EtwEuSWdtid10pjGl/7HefCE4mueOkrfki8JCUm99W6UfP47/r3tbxx9CfBN5A== }
+ { integrity: sha512-ezHLe1tKLUxDJo2LHtDuEDyWXolw8WGOR92qb4bQdWq/zKenO5BvctZGrVJBK08zjezSk7bmbKFOXIVyChvDLw== }
engines: { node: ">=18.0.0" }
- "@smithy/core@3.3.1":
+ "@smithy/core@3.18.5":
resolution:
- { integrity: sha512-W7AppgQD3fP1aBmo8wWo0id5zeR2/aYRy067vZsDVaa6v/mdhkg6DxXwEVuSPjZl+ZnvWAQbUMCd5ckw38+tHQ== }
+ { integrity: sha512-6gnIz3h+PEPQGDj8MnRSjDvKBah042jEoPgjFGJ4iJLBE78L4lY/n98x14XyPF4u3lN179Ub/ZKFY5za9GeLQw== }
engines: { node: ">=18.0.0" }
- "@smithy/credential-provider-imds@4.0.4":
+ "@smithy/credential-provider-imds@4.2.5":
resolution:
- { integrity: sha512-jN6M6zaGVyB8FmNGG+xOPQB4N89M1x97MMdMnm1ESjljLS3Qju/IegQizKujaNcy2vXAvrz0en8bobe6E55FEA== }
+ { integrity: sha512-BZwotjoZWn9+36nimwm/OLIcVe+KYRwzMjfhd4QT7QxPm9WY0HiOV8t/Wlh+HVUif0SBVV7ksq8//hPaBC/okQ== }
engines: { node: ">=18.0.0" }
- "@smithy/eventstream-codec@4.0.2":
+ "@smithy/eventstream-codec@4.2.5":
resolution:
- { integrity: sha512-p+f2kLSK7ZrXVfskU/f5dzksKTewZk8pJLPvER3aFHPt76C2MxD9vNatSfLzzQSQB4FNO96RK4PSXfhD1TTeMQ== }
+ { integrity: sha512-Ogt4Zi9hEbIP17oQMd68qYOHUzmH47UkK7q7Gl55iIm9oKt27MUGrC5JfpMroeHjdkOliOA4Qt3NQ1xMq/nrlA== }
engines: { node: ">=18.0.0" }
- "@smithy/eventstream-serde-browser@4.0.2":
+ "@smithy/eventstream-serde-browser@4.2.5":
resolution:
- { integrity: sha512-CepZCDs2xgVUtH7ZZ7oDdZFH8e6Y2zOv8iiX6RhndH69nlojCALSKK+OXwZUgOtUZEUaZ5e1hULVCHYbCn7pug== }
+ { integrity: sha512-HohfmCQZjppVnKX2PnXlf47CW3j92Ki6T/vkAT2DhBR47e89pen3s4fIa7otGTtrVxmj7q+IhH0RnC5kpR8wtw== }
engines: { node: ">=18.0.0" }
- "@smithy/eventstream-serde-config-resolver@4.1.0":
+ "@smithy/eventstream-serde-config-resolver@4.3.5":
resolution:
- { integrity: sha512-1PI+WPZ5TWXrfj3CIoKyUycYynYJgZjuQo8U+sphneOtjsgrttYybdqESFReQrdWJ+LKt6NEdbYzmmfDBmjX2A== }
+ { integrity: sha512-ibjQjM7wEXtECiT6my1xfiMH9IcEczMOS6xiCQXoUIYSj5b1CpBbJ3VYbdwDy8Vcg5JHN7eFpOCGk8nyZAltNQ== }
engines: { node: ">=18.0.0" }
- "@smithy/eventstream-serde-node@4.0.2":
+ "@smithy/eventstream-serde-node@4.2.5":
resolution:
- { integrity: sha512-C5bJ/C6x9ENPMx2cFOirspnF9ZsBVnBMtP6BdPl/qYSuUawdGQ34Lq0dMcf42QTjUZgWGbUIZnz6+zLxJlb9aw== }
+ { integrity: sha512-+elOuaYx6F2H6x1/5BQP5ugv12nfJl66GhxON8+dWVUEDJ9jah/A0tayVdkLRP0AeSac0inYkDz5qBFKfVp2Gg== }
engines: { node: ">=18.0.0" }
- "@smithy/eventstream-serde-universal@4.0.2":
+ "@smithy/eventstream-serde-universal@4.2.5":
resolution:
- { integrity: sha512-St8h9JqzvnbB52FtckiHPN4U/cnXcarMniXRXTKn0r4b4XesZOGiAyUdj1aXbqqn1icSqBlzzUsCl6nPB018ng== }
+ { integrity: sha512-G9WSqbST45bmIFaeNuP/EnC19Rhp54CcVdX9PDL1zyEB514WsDVXhlyihKlGXnRycmHNmVv88Bvvt4EYxWef/Q== }
engines: { node: ">=18.0.0" }
- "@smithy/fetch-http-handler@5.0.2":
+ "@smithy/fetch-http-handler@5.3.6":
resolution:
- { integrity: sha512-+9Dz8sakS9pe7f2cBocpJXdeVjMopUDLgZs1yWeu7h++WqSbjUYv/JAJwKwXw1HV6gq1jyWjxuyn24E2GhoEcQ== }
+ { integrity: sha512-3+RG3EA6BBJ/ofZUeTFJA7mHfSYrZtQIrDP9dI8Lf7X6Jbos2jptuLrAAteDiFVrmbEmLSuRG/bUKzfAXk7dhg== }
engines: { node: ">=18.0.0" }
- "@smithy/hash-node@4.0.2":
+ "@smithy/hash-node@4.2.5":
resolution:
- { integrity: sha512-VnTpYPnRUE7yVhWozFdlxcYknv9UN7CeOqSrMH+V877v4oqtVYuoqhIhtSjmGPvYrYnAkaM61sLMKHvxL138yg== }
+ { integrity: sha512-DpYX914YOfA3UDT9CN1BM787PcHfWRBB43fFGCYrZFUH0Jv+5t8yYl+Pd5PW4+QzoGEDvn5d5QIO4j2HyYZQSA== }
engines: { node: ">=18.0.0" }
- "@smithy/invalid-dependency@4.0.2":
+ "@smithy/invalid-dependency@4.2.5":
resolution:
- { integrity: sha512-GatB4+2DTpgWPday+mnUkoumP54u/MDM/5u44KF9hIu8jF0uafZtQLcdfIKkIcUNuF/fBojpLEHZS/56JqPeXQ== }
+ { integrity: sha512-2L2erASEro1WC5nV+plwIMxrTXpvpfzl4e+Nre6vBVRR2HKeGGcvpJyyL3/PpiSg+cJG2KpTmZmq934Olb6e5A== }
engines: { node: ">=18.0.0" }
"@smithy/is-array-buffer@2.2.0":
@@ -3763,109 +3872,109 @@ packages:
{ integrity: sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA== }
engines: { node: ">=14.0.0" }
- "@smithy/is-array-buffer@4.0.0":
+ "@smithy/is-array-buffer@4.2.0":
resolution:
- { integrity: sha512-saYhF8ZZNoJDTvJBEWgeBccCg+yvp1CX+ed12yORU3NilJScfc6gfch2oVb4QgxZrGUx3/ZJlb+c/dJbyupxlw== }
+ { integrity: sha512-DZZZBvC7sjcYh4MazJSGiWMI2L7E0oCiRHREDzIxi/M2LY79/21iXt6aPLHge82wi5LsuRF5A06Ds3+0mlh6CQ== }
engines: { node: ">=18.0.0" }
- "@smithy/middleware-content-length@4.0.2":
+ "@smithy/middleware-content-length@4.2.5":
resolution:
- { integrity: sha512-hAfEXm1zU+ELvucxqQ7I8SszwQ4znWMbNv6PLMndN83JJN41EPuS93AIyh2N+gJ6x8QFhzSO6b7q2e6oClDI8A== }
+ { integrity: sha512-Y/RabVa5vbl5FuHYV2vUCwvh/dqzrEY/K2yWPSqvhFUwIY0atLqO4TienjBXakoy4zrKAMCZwg+YEqmH7jaN7A== }
engines: { node: ">=18.0.0" }
- "@smithy/middleware-endpoint@4.1.4":
+ "@smithy/middleware-endpoint@4.3.12":
resolution:
- { integrity: sha512-qWyYvszzvDjT2AxRvEpNhnMTo8QX9MCAtuSA//kYbXewb+2mEGQCk1UL4dNIrKLcF5KT11dOJtxFYT0kzajq5g== }
+ { integrity: sha512-9pAX/H+VQPzNbouhDhkW723igBMLgrI8OtX+++M7iKJgg/zY/Ig3i1e6seCcx22FWhE6Q/S61BRdi2wXBORT+A== }
engines: { node: ">=18.0.0" }
- "@smithy/middleware-retry@4.1.5":
+ "@smithy/middleware-retry@4.4.12":
resolution:
- { integrity: sha512-eQguCTA2TRGyg4P7gDuhRjL2HtN5OKJXysq3Ufj0EppZe4XBmSyKIvVX9ws9KkD3lkJskw1tfE96wMFsiUShaw== }
+ { integrity: sha512-S4kWNKFowYd0lID7/DBqWHOQxmxlsf0jBaos9chQZUWTVOjSW1Ogyh8/ib5tM+agFDJ/TCxuCTvrnlc+9cIBcQ== }
engines: { node: ">=18.0.0" }
- "@smithy/middleware-serde@4.0.3":
+ "@smithy/middleware-serde@4.2.6":
resolution:
- { integrity: sha512-rfgDVrgLEVMmMn0BI8O+8OVr6vXzjV7HZj57l0QxslhzbvVfikZbVfBVthjLHqib4BW44QhcIgJpvebHlRaC9A== }
+ { integrity: sha512-VkLoE/z7e2g8pirwisLz8XJWedUSY8my/qrp81VmAdyrhi94T+riBfwP+AOEEFR9rFTSonC/5D2eWNmFabHyGQ== }
engines: { node: ">=18.0.0" }
- "@smithy/middleware-stack@4.0.2":
+ "@smithy/middleware-stack@4.2.5":
resolution:
- { integrity: sha512-eSPVcuJJGVYrFYu2hEq8g8WWdJav3sdrI4o2c6z/rjnYDd3xH9j9E7deZQCzFn4QvGPouLngH3dQ+QVTxv5bOQ== }
+ { integrity: sha512-bYrutc+neOyWxtZdbB2USbQttZN0mXaOyYLIsaTbJhFsfpXyGWUxJpEuO1rJ8IIJm2qH4+xJT0mxUSsEDTYwdQ== }
engines: { node: ">=18.0.0" }
- "@smithy/node-config-provider@4.1.1":
+ "@smithy/node-config-provider@4.3.5":
resolution:
- { integrity: sha512-1slS5jf5icHETwl5hxEVBj+mh6B+LbVW4yRINsGtUKH+nxM5Pw2H59+qf+JqYFCHp9jssG4vX81f5WKnjMN3Vw== }
+ { integrity: sha512-UTurh1C4qkVCtqggI36DGbLB2Kv8UlcFdMXDcWMbqVY2uRg0XmT9Pb4Vj6oSQ34eizO1fvR0RnFV4Axw4IrrAg== }
engines: { node: ">=18.0.0" }
- "@smithy/node-http-handler@4.0.4":
+ "@smithy/node-http-handler@4.4.5":
resolution:
- { integrity: sha512-/mdqabuAT3o/ihBGjL94PUbTSPSRJ0eeVTdgADzow0wRJ0rN4A27EOrtlK56MYiO1fDvlO3jVTCxQtQmK9dZ1g== }
+ { integrity: sha512-CMnzM9R2WqlqXQGtIlsHMEZfXKJVTIrqCNoSd/QpAyp+Dw0a1Vps13l6ma1fH8g7zSPNsA59B/kWgeylFuA/lw== }
engines: { node: ">=18.0.0" }
- "@smithy/property-provider@4.0.2":
+ "@smithy/property-provider@4.2.5":
resolution:
- { integrity: sha512-wNRoQC1uISOuNc2s4hkOYwYllmiyrvVXWMtq+TysNRVQaHm4yoafYQyjN/goYZS+QbYlPIbb/QRjaUZMuzwQ7A== }
+ { integrity: sha512-8iLN1XSE1rl4MuxvQ+5OSk/Zb5El7NJZ1td6Tn+8dQQHIjp59Lwl6bd0+nzw6SKm2wSSriH2v/I9LPzUic7EOg== }
engines: { node: ">=18.0.0" }
- "@smithy/protocol-http@5.1.0":
+ "@smithy/protocol-http@5.3.5":
resolution:
- { integrity: sha512-KxAOL1nUNw2JTYrtviRRjEnykIDhxc84qMBzxvu1MUfQfHTuBlCG7PA6EdVwqpJjH7glw7FqQoFxUJSyBQgu7g== }
+ { integrity: sha512-RlaL+sA0LNMp03bf7XPbFmT5gN+w3besXSWMkA8rcmxLSVfiEXElQi4O2IWwPfxzcHkxqrwBFMbngB8yx/RvaQ== }
engines: { node: ">=18.0.0" }
- "@smithy/querystring-builder@4.0.2":
+ "@smithy/querystring-builder@4.2.5":
resolution:
- { integrity: sha512-NTOs0FwHw1vimmQM4ebh+wFQvOwkEf/kQL6bSM1Lock+Bv4I89B3hGYoUEPkmvYPkDKyp5UdXJYu+PoTQ3T31Q== }
+ { integrity: sha512-y98otMI1saoajeik2kLfGyRp11e5U/iJYH/wLCh3aTV/XutbGT9nziKGkgCaMD1ghK7p6htHMm6b6scl9JRUWg== }
engines: { node: ">=18.0.0" }
- "@smithy/querystring-parser@4.0.2":
+ "@smithy/querystring-parser@4.2.5":
resolution:
- { integrity: sha512-v6w8wnmZcVXjfVLjxw8qF7OwESD9wnpjp0Dqry/Pod0/5vcEA3qxCr+BhbOHlxS8O+29eLpT3aagxXGwIoEk7Q== }
+ { integrity: sha512-031WCTdPYgiQRYNPXznHXof2YM0GwL6SeaSyTH/P72M1Vz73TvCNH2Nq8Iu2IEPq9QP2yx0/nrw5YmSeAi/AjQ== }
engines: { node: ">=18.0.0" }
- "@smithy/service-error-classification@4.0.3":
+ "@smithy/service-error-classification@4.2.5":
resolution:
- { integrity: sha512-FTbcajmltovWMjj3tksDQdD23b2w6gH+A0DYA1Yz3iSpjDj8fmkwy62UnXcWMy4d5YoMoSyLFHMfkEVEzbiN8Q== }
+ { integrity: sha512-8fEvK+WPE3wUAcDvqDQG1Vk3ANLR8Px979te96m84CbKAjBVf25rPYSzb4xU4hlTyho7VhOGnh5i62D/JVF0JQ== }
engines: { node: ">=18.0.0" }
- "@smithy/shared-ini-file-loader@4.0.2":
+ "@smithy/shared-ini-file-loader@4.4.0":
resolution:
- { integrity: sha512-J9/gTWBGVuFZ01oVA6vdb4DAjf1XbDhK6sLsu3OS9qmLrS6KB5ygpeHiM3miIbj1qgSJ96GYszXFWv6ErJ8QEw== }
+ { integrity: sha512-5WmZ5+kJgJDjwXXIzr1vDTG+RhF9wzSODQBfkrQ2VVkYALKGvZX1lgVSxEkgicSAFnFhPj5rudJV0zoinqS0bA== }
engines: { node: ">=18.0.0" }
- "@smithy/signature-v4@5.1.0":
+ "@smithy/signature-v4@5.3.5":
resolution:
- { integrity: sha512-4t5WX60sL3zGJF/CtZsUQTs3UrZEDO2P7pEaElrekbLqkWPYkgqNW1oeiNYC6xXifBnT9dVBOnNQRvOE9riU9w== }
+ { integrity: sha512-xSUfMu1FT7ccfSXkoLl/QRQBi2rOvi3tiBZU2Tdy3I6cgvZ6SEi9QNey+lqps/sJRnogIS+lq+B1gxxbra2a/w== }
engines: { node: ">=18.0.0" }
- "@smithy/smithy-client@4.2.4":
+ "@smithy/smithy-client@4.9.8":
resolution:
- { integrity: sha512-oolSEpr/ABUtVmFMdNgi6sSXsK4csV9n4XM9yXgvDJGRa32tQDUdv9s+ztFZKccay1AiTWLSGsyDj2xy1gsv7Q== }
+ { integrity: sha512-8xgq3LgKDEFoIrLWBho/oYKyWByw9/corz7vuh1upv7ZBm0ZMjGYBhbn6v643WoIqA9UTcx5A5htEp/YatUwMA== }
engines: { node: ">=18.0.0" }
- "@smithy/types@4.2.0":
+ "@smithy/types@4.9.0":
resolution:
- { integrity: sha512-7eMk09zQKCO+E/ivsjQv+fDlOupcFUCSC/L2YUPgwhvowVGWbPQHjEFcmjt7QQ4ra5lyowS92SV53Zc6XD4+fg== }
+ { integrity: sha512-MvUbdnXDTwykR8cB1WZvNNwqoWVaTRA0RLlLmf/cIFNMM2cKWz01X4Ly6SMC4Kks30r8tT3Cty0jmeWfiuyHTA== }
engines: { node: ">=18.0.0" }
- "@smithy/url-parser@4.0.2":
+ "@smithy/url-parser@4.2.5":
resolution:
- { integrity: sha512-Bm8n3j2ScqnT+kJaClSVCMeiSenK6jVAzZCNewsYWuZtnBehEz4r2qP0riZySZVfzB+03XZHJeqfmJDkeeSLiQ== }
+ { integrity: sha512-VaxMGsilqFnK1CeBX+LXnSuaMx4sTL/6znSZh2829txWieazdVxr54HmiyTsIbpOTLcf5nYpq9lpzmwRdxj6rQ== }
engines: { node: ">=18.0.0" }
- "@smithy/util-base64@4.0.0":
+ "@smithy/util-base64@4.3.0":
resolution:
- { integrity: sha512-CvHfCmO2mchox9kjrtzoHkWHxjHZzaFojLc8quxXY7WAAMAg43nuxwv95tATVgQFNDwd4M9S1qFzj40Ul41Kmg== }
+ { integrity: sha512-GkXZ59JfyxsIwNTWFnjmFEI8kZpRNIBfxKjv09+nkAWPt/4aGaEWMM04m4sxgNVWkbt2MdSvE3KF/PfX4nFedQ== }
engines: { node: ">=18.0.0" }
- "@smithy/util-body-length-browser@4.0.0":
+ "@smithy/util-body-length-browser@4.2.0":
resolution:
- { integrity: sha512-sNi3DL0/k64/LO3A256M+m3CDdG6V7WKWHdAiBBMUN8S3hK3aMPhwnPik2A/a2ONN+9doY9UxaLfgqsIRg69QA== }
+ { integrity: sha512-Fkoh/I76szMKJnBXWPdFkQJl2r9SjPt3cMzLdOB6eJ4Pnpas8hVoWPYemX/peO0yrrvldgCUVJqOAjUrOLjbxg== }
engines: { node: ">=18.0.0" }
- "@smithy/util-body-length-node@4.0.0":
+ "@smithy/util-body-length-node@4.2.1":
resolution:
- { integrity: sha512-q0iDP3VsZzqJyje8xJWEJCNIu3lktUGVoSy1KB0UWym2CL1siV3artm+u1DFYTLejpsrdGyCSWBdGNjJzfDPjg== }
+ { integrity: sha512-h53dz/pISVrVrfxV1iqXlx5pRg3V2YWFcSQyPyXZRrZoZj4R4DeWRDo1a7dd3CPTcFi3kE+98tuNyD2axyZReA== }
engines: { node: ">=18.0.0" }
"@smithy/util-buffer-from@2.2.0":
@@ -3873,54 +3982,54 @@ packages:
{ integrity: sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA== }
engines: { node: ">=14.0.0" }
- "@smithy/util-buffer-from@4.0.0":
+ "@smithy/util-buffer-from@4.2.0":
resolution:
- { integrity: sha512-9TOQ7781sZvddgO8nxueKi3+yGvkY35kotA0Y6BWRajAv8jjmigQ1sBwz0UX47pQMYXJPahSKEKYFgt+rXdcug== }
+ { integrity: sha512-kAY9hTKulTNevM2nlRtxAG2FQ3B2OR6QIrPY3zE5LqJy1oxzmgBGsHLWTcNhWXKchgA0WHW+mZkQrng/pgcCew== }
engines: { node: ">=18.0.0" }
- "@smithy/util-config-provider@4.0.0":
+ "@smithy/util-config-provider@4.2.0":
resolution:
- { integrity: sha512-L1RBVzLyfE8OXH+1hsJ8p+acNUSirQnWQ6/EgpchV88G6zGBTDPdXiiExei6Z1wR2RxYvxY/XLw6AMNCCt8H3w== }
+ { integrity: sha512-YEjpl6XJ36FTKmD+kRJJWYvrHeUvm5ykaUS5xK+6oXffQPHeEM4/nXlZPe+Wu0lsgRUcNZiliYNh/y7q9c2y6Q== }
engines: { node: ">=18.0.0" }
- "@smithy/util-defaults-mode-browser@4.0.12":
+ "@smithy/util-defaults-mode-browser@4.3.11":
resolution:
- { integrity: sha512-0vPKiC+rXWMq397tsa/RFcO/kJ1UsibgNCXScMsRwzm9WMT4QjGf43zVPWZ5hPLu3z/1XddiZFIlKcu2j/yUuQ== }
+ { integrity: sha512-yHv+r6wSQXEXTPVCIQTNmXVWs7ekBTpMVErjqZoWkYN75HIFN5y9+/+sYOejfAuvxWGvgzgxbTHa/oz61YTbKw== }
engines: { node: ">=18.0.0" }
- "@smithy/util-defaults-mode-node@4.0.12":
+ "@smithy/util-defaults-mode-node@4.2.14":
resolution:
- { integrity: sha512-zCx9noceM3Pw2jvcJ3w3RbvKnPe3lCo6txH9ksZj6CeRZPkvRZPLXmKVSOvDr9QQP3VRq/WnBLd+LTZAL7+0IQ== }
+ { integrity: sha512-ljZN3iRvaJUgulfvobIuG97q1iUuCMrvXAlkZ4msY+ZuVHQHDIqn7FKZCEj+bx8omz6kF5yQXms/xhzjIO5XiA== }
engines: { node: ">=18.0.0" }
- "@smithy/util-endpoints@3.0.4":
+ "@smithy/util-endpoints@3.2.5":
resolution:
- { integrity: sha512-VfFATC1bmZLV2858B/O1NpMcL32wYo8DPPhHxYxDCodDl3f3mSZ5oJheW1IF91A0EeAADz2WsakM/hGGPGNKLg== }
+ { integrity: sha512-3O63AAWu2cSNQZp+ayl9I3NapW1p1rR5mlVHcF6hAB1dPZUQFfRPYtplWX/3xrzWthPGj5FqB12taJJCfH6s8A== }
engines: { node: ">=18.0.0" }
- "@smithy/util-hex-encoding@4.0.0":
+ "@smithy/util-hex-encoding@4.2.0":
resolution:
- { integrity: sha512-Yk5mLhHtfIgW2W2WQZWSg5kuMZCVbvhFmC7rV4IO2QqnZdbEFPmQnCcGMAX2z/8Qj3B9hYYNjZOhWym+RwhePw== }
+ { integrity: sha512-CCQBwJIvXMLKxVbO88IukazJD9a4kQ9ZN7/UMGBjBcJYvatpWk+9g870El4cB8/EJxfe+k+y0GmR9CAzkF+Nbw== }
engines: { node: ">=18.0.0" }
- "@smithy/util-middleware@4.0.2":
+ "@smithy/util-middleware@4.2.5":
resolution:
- { integrity: sha512-6GDamTGLuBQVAEuQ4yDQ+ti/YINf/MEmIegrEeg7DdB/sld8BX1lqt9RRuIcABOhAGTA50bRbPzErez7SlDtDQ== }
+ { integrity: sha512-6Y3+rvBF7+PZOc40ybeZMcGln6xJGVeY60E7jy9Mv5iKpMJpHgRE6dKy9ScsVxvfAYuEX4Q9a65DQX90KaQ3bA== }
engines: { node: ">=18.0.0" }
- "@smithy/util-retry@4.0.3":
+ "@smithy/util-retry@4.2.5":
resolution:
- { integrity: sha512-DPuYjZQDXmKr/sNvy9Spu8R/ESa2e22wXZzSAY6NkjOLj6spbIje/Aq8rT97iUMdDj0qHMRIe+bTxvlU74d9Ng== }
+ { integrity: sha512-GBj3+EZBbN4NAqJ/7pAhsXdfzdlznOh8PydUijy6FpNIMnHPSMO2/rP4HKu+UFeikJxShERk528oy7GT79YiJg== }
engines: { node: ">=18.0.0" }
- "@smithy/util-stream@4.2.0":
+ "@smithy/util-stream@4.5.6":
resolution:
- { integrity: sha512-Vj1TtwWnuWqdgQI6YTUF5hQ/0jmFiOYsc51CSMgj7QfyO+RF4EnT2HNjoviNlOOmgzgvf3f5yno+EiC4vrnaWQ== }
+ { integrity: sha512-qWw/UM59TiaFrPevefOZ8CNBKbYEP6wBAIlLqxn3VAIo9rgnTNc4ASbVrqDmhuwI87usnjhdQrxodzAGFFzbRQ== }
engines: { node: ">=18.0.0" }
- "@smithy/util-uri-escape@4.0.0":
+ "@smithy/util-uri-escape@4.2.0":
resolution:
- { integrity: sha512-77yfbCbQMtgtTylO9itEAdpPXSog3ZxMe09AEhm0dU0NLTalV70ghDZFR+Nfi1C60jnJoh/Re4090/DuZh2Omg== }
+ { integrity: sha512-igZpCKV9+E/Mzrpq6YacdTQ0qTiLm85gD6N/IrmyDvQFA4UnU3d5g3m8tMT/6zG/vVkWSU+VxeUyGonL62DuxA== }
engines: { node: ">=18.0.0" }
"@smithy/util-utf8@2.3.0":
@@ -3928,14 +4037,19 @@ packages:
{ integrity: sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A== }
engines: { node: ">=14.0.0" }
- "@smithy/util-utf8@4.0.0":
+ "@smithy/util-utf8@4.2.0":
+ resolution:
+ { integrity: sha512-zBPfuzoI8xyBtR2P6WQj63Rz8i3AmfAaJLuNG8dWsfvPe8lO4aCPYLn879mEgHndZH1zQ2oXmG8O1GGzzaoZiw== }
+ engines: { node: ">=18.0.0" }
+
+ "@smithy/util-waiter@4.2.5":
resolution:
- { integrity: sha512-b+zebfKCfRdgNJDknHCob3O7FpeYQN6ZG6YLExMcasDHsCXlsXCEuiPZeLnJLpwa5dvPetGlnGCiMHuLwGvFow== }
+ { integrity: sha512-Dbun99A3InifQdIrsXZ+QLcC0PGBPAdrl4cj1mTgJvyc9N2zf7QSxg8TBkzsCmGJdE3TLbO9ycwpY0EkWahQ/g== }
engines: { node: ">=18.0.0" }
- "@smithy/util-waiter@4.0.3":
+ "@smithy/uuid@1.1.0":
resolution:
- { integrity: sha512-JtaY3FxmD+te+KSI2FJuEcfNC9T/DGGVf551babM7fAaXhjJUt7oSYurH1Devxd2+BOSUACCgt3buinx4UnmEA== }
+ { integrity: sha512-4aUIteuyxtBUhVdiQqcDhKFitwfd9hqoSDYY2KRXiWtgoWJ9Bmise+KfEPDiVHWeJepvF8xJO9/9+WDIciMFFw== }
engines: { node: ">=18.0.0" }
"@socket.io/component-emitter@3.1.2":
@@ -4026,76 +4140,76 @@ packages:
peerDependencies:
"@svgr/core": "*"
- "@tailwindcss/node@4.1.6":
+ "@tailwindcss/node@4.1.17":
resolution:
- { integrity: sha512-ed6zQbgmKsjsVvodAS1q1Ld2BolEuxJOSyyNc+vhkjdmfNUDCmQnlXBfQkHrlzNmslxHsQU/bFmzcEbv4xXsLg== }
+ { integrity: sha512-csIkHIgLb3JisEFQ0vxr2Y57GUNYh447C8xzwj89U/8fdW8LhProdxvnVH6U8M2Y73QKiTIH+LWbK3V2BBZsAg== }
- "@tailwindcss/oxide-android-arm64@4.1.6":
+ "@tailwindcss/oxide-android-arm64@4.1.17":
resolution:
- { integrity: sha512-VHwwPiwXtdIvOvqT/0/FLH/pizTVu78FOnI9jQo64kSAikFSZT7K4pjyzoDpSMaveJTGyAKvDjuhxJxKfmvjiQ== }
+ { integrity: sha512-BMqpkJHgOZ5z78qqiGE6ZIRExyaHyuxjgrJ6eBO5+hfrfGkuya0lYfw8fRHG77gdTjWkNWEEm+qeG2cDMxArLQ== }
engines: { node: ">= 10" }
cpu: [arm64]
os: [android]
- "@tailwindcss/oxide-darwin-arm64@4.1.6":
+ "@tailwindcss/oxide-darwin-arm64@4.1.17":
resolution:
- { integrity: sha512-weINOCcqv1HVBIGptNrk7c6lWgSFFiQMcCpKM4tnVi5x8OY2v1FrV76jwLukfT6pL1hyajc06tyVmZFYXoxvhQ== }
+ { integrity: sha512-EquyumkQweUBNk1zGEU/wfZo2qkp/nQKRZM8bUYO0J+Lums5+wl2CcG1f9BgAjn/u9pJzdYddHWBiFXJTcxmOg== }
engines: { node: ">= 10" }
cpu: [arm64]
os: [darwin]
- "@tailwindcss/oxide-darwin-x64@4.1.6":
+ "@tailwindcss/oxide-darwin-x64@4.1.17":
resolution:
- { integrity: sha512-3FzekhHG0ww1zQjQ1lPoq0wPrAIVXAbUkWdWM8u5BnYFZgb9ja5ejBqyTgjpo5mfy0hFOoMnMuVDI+7CXhXZaQ== }
+ { integrity: sha512-gdhEPLzke2Pog8s12oADwYu0IAw04Y2tlmgVzIN0+046ytcgx8uZmCzEg4VcQh+AHKiS7xaL8kGo/QTiNEGRog== }
engines: { node: ">= 10" }
cpu: [x64]
os: [darwin]
- "@tailwindcss/oxide-freebsd-x64@4.1.6":
+ "@tailwindcss/oxide-freebsd-x64@4.1.17":
resolution:
- { integrity: sha512-4m5F5lpkBZhVQJq53oe5XgJ+aFYWdrgkMwViHjRsES3KEu2m1udR21B1I77RUqie0ZYNscFzY1v9aDssMBZ/1w== }
+ { integrity: sha512-hxGS81KskMxML9DXsaXT1H0DyA+ZBIbyG/sSAjWNe2EDl7TkPOBI42GBV3u38itzGUOmFfCzk1iAjDXds8Oh0g== }
engines: { node: ">= 10" }
cpu: [x64]
os: [freebsd]
- "@tailwindcss/oxide-linux-arm-gnueabihf@4.1.6":
+ "@tailwindcss/oxide-linux-arm-gnueabihf@4.1.17":
resolution:
- { integrity: sha512-qU0rHnA9P/ZoaDKouU1oGPxPWzDKtIfX7eOGi5jOWJKdxieUJdVV+CxWZOpDWlYTd4N3sFQvcnVLJWJ1cLP5TA== }
+ { integrity: sha512-k7jWk5E3ldAdw0cNglhjSgv501u7yrMf8oeZ0cElhxU6Y2o7f8yqelOp3fhf7evjIS6ujTI3U8pKUXV2I4iXHQ== }
engines: { node: ">= 10" }
cpu: [arm]
os: [linux]
- "@tailwindcss/oxide-linux-arm64-gnu@4.1.6":
+ "@tailwindcss/oxide-linux-arm64-gnu@4.1.17":
resolution:
- { integrity: sha512-jXy3TSTrbfgyd3UxPQeXC3wm8DAgmigzar99Km9Sf6L2OFfn/k+u3VqmpgHQw5QNfCpPe43em6Q7V76Wx7ogIQ== }
+ { integrity: sha512-HVDOm/mxK6+TbARwdW17WrgDYEGzmoYayrCgmLEw7FxTPLcp/glBisuyWkFz/jb7ZfiAXAXUACfyItn+nTgsdQ== }
engines: { node: ">= 10" }
cpu: [arm64]
os: [linux]
- "@tailwindcss/oxide-linux-arm64-musl@4.1.6":
+ "@tailwindcss/oxide-linux-arm64-musl@4.1.17":
resolution:
- { integrity: sha512-8kjivE5xW0qAQ9HX9reVFmZj3t+VmljDLVRJpVBEoTR+3bKMnvC7iLcoSGNIUJGOZy1mLVq7x/gerVg0T+IsYw== }
+ { integrity: sha512-HvZLfGr42i5anKtIeQzxdkw/wPqIbpeZqe7vd3V9vI3RQxe3xU1fLjss0TjyhxWcBaipk7NYwSrwTwK1hJARMg== }
engines: { node: ">= 10" }
cpu: [arm64]
os: [linux]
- "@tailwindcss/oxide-linux-x64-gnu@4.1.6":
+ "@tailwindcss/oxide-linux-x64-gnu@4.1.17":
resolution:
- { integrity: sha512-A4spQhwnWVpjWDLXnOW9PSinO2PTKJQNRmL/aIl2U/O+RARls8doDfs6R41+DAXK0ccacvRyDpR46aVQJJCoCg== }
+ { integrity: sha512-M3XZuORCGB7VPOEDH+nzpJ21XPvK5PyjlkSFkFziNHGLc5d6g3di2McAAblmaSUNl8IOmzYwLx9NsE7bplNkwQ== }
engines: { node: ">= 10" }
cpu: [x64]
os: [linux]
- "@tailwindcss/oxide-linux-x64-musl@4.1.6":
+ "@tailwindcss/oxide-linux-x64-musl@4.1.17":
resolution:
- { integrity: sha512-YRee+6ZqdzgiQAHVSLfl3RYmqeeaWVCk796MhXhLQu2kJu2COHBkqlqsqKYx3p8Hmk5pGCQd2jTAoMWWFeyG2A== }
+ { integrity: sha512-k7f+pf9eXLEey4pBlw+8dgfJHY4PZ5qOUFDyNf7SI6lHjQ9Zt7+NcscjpwdCEbYi6FI5c2KDTDWyf2iHcCSyyQ== }
engines: { node: ">= 10" }
cpu: [x64]
os: [linux]
- "@tailwindcss/oxide-wasm32-wasi@4.1.6":
+ "@tailwindcss/oxide-wasm32-wasi@4.1.17":
resolution:
- { integrity: sha512-qAp4ooTYrBQ5pk5jgg54/U1rCJ/9FLYOkkQ/nTE+bVMseMfB6O7J8zb19YTpWuu4UdfRf5zzOrNKfl6T64MNrQ== }
+ { integrity: sha512-cEytGqSSoy7zK4JRWiTCx43FsKP/zGr0CsuMawhH67ONlH+T79VteQeJQRO/X7L0juEUA8ZyuYikcRBf0vsxhg== }
engines: { node: ">=14.0.0" }
cpu: [wasm32]
bundledDependencies:
@@ -4106,64 +4220,64 @@ packages:
- "@emnapi/wasi-threads"
- tslib
- "@tailwindcss/oxide-win32-arm64-msvc@4.1.6":
+ "@tailwindcss/oxide-win32-arm64-msvc@4.1.17":
resolution:
- { integrity: sha512-nqpDWk0Xr8ELO/nfRUDjk1pc9wDJ3ObeDdNMHLaymc4PJBWj11gdPCWZFKSK2AVKjJQC7J2EfmSmf47GN7OuLg== }
+ { integrity: sha512-JU5AHr7gKbZlOGvMdb4722/0aYbU+tN6lv1kONx0JK2cGsh7g148zVWLM0IKR3NeKLv+L90chBVYcJ8uJWbC9A== }
engines: { node: ">= 10" }
cpu: [arm64]
os: [win32]
- "@tailwindcss/oxide-win32-x64-msvc@4.1.6":
+ "@tailwindcss/oxide-win32-x64-msvc@4.1.17":
resolution:
- { integrity: sha512-5k9xF33xkfKpo9wCvYcegQ21VwIBU1/qEbYlVukfEIyQbEA47uK8AAwS7NVjNE3vHzcmxMYwd0l6L4pPjjm1rQ== }
+ { integrity: sha512-SKWM4waLuqx0IH+FMDUw6R66Hu4OuTALFgnleKbqhgGU30DY20NORZMZUKgLRjQXNN2TLzKvh48QXTig4h4bGw== }
engines: { node: ">= 10" }
cpu: [x64]
os: [win32]
- "@tailwindcss/oxide@4.1.6":
+ "@tailwindcss/oxide@4.1.17":
resolution:
- { integrity: sha512-0bpEBQiGx+227fW4G0fLQ8vuvyy5rsB1YIYNapTq3aRsJ9taF3f5cCaovDjN5pUGKKzcpMrZst/mhNaKAPOHOA== }
+ { integrity: sha512-F0F7d01fmkQhsTjXezGBLdrl1KresJTcI3DB8EkScCldyKp3Msz4hub4uyYaVnk88BAS1g5DQjjF6F5qczheLA== }
engines: { node: ">= 10" }
- "@tailwindcss/vite@4.1.6":
+ "@tailwindcss/vite@4.1.17":
resolution:
- { integrity: sha512-zjtqjDeY1w3g2beYQtrMAf51n5G7o+UwmyOjtsDMP7t6XyoRMOidcoKP32ps7AkNOHIXEOK0bhIC05dj8oJp4w== }
+ { integrity: sha512-4+9w8ZHOiGnpcGI6z1TVVfWaX/koK7fKeSYF3qlYg2xpBtbteP2ddBxiarL+HVgfSJGeK5RIxRQmKm4rTJJAwA== }
peerDependencies:
- vite: ^5.2.0 || ^6
+ vite: ^5.2.0 || ^6 || ^7
- "@tanstack/query-core@5.75.7":
+ "@tanstack/query-core@5.90.10":
resolution:
- { integrity: sha512-4BHu0qnxUHOSnTn3ow9fIoBKTelh0GY08yn1IO9cxjBTsGvnxz1ut42CHZqUE3Vl/8FAjcHsj8RNJMoXvjgHEA== }
+ { integrity: sha512-EhZVFu9rl7GfRNuJLJ3Y7wtbTnENsvzp+YpcAV7kCYiXni1v8qZh++lpw4ch4rrwC0u/EZRnBHIehzCGzwXDSQ== }
- "@tanstack/query-persist-client-core@5.75.7":
+ "@tanstack/query-persist-client-core@5.91.9":
resolution:
- { integrity: sha512-VI6gYsw9TOGd62n9fKrC7gdp0rvxjF7rf5l/9U+QWm0GcjO0MdBt3VMCp4pyVHJKlz4H89N7jKp6svDPLRDXLg== }
+ { integrity: sha512-LliMZl/pkO/6vRf5//fO8nl4UCfM1LQsnT+N0aRYkK7bqoM3QdqHxD65EApmJRypKkqaWmiyulPG3Mi1NYuyIA== }
- "@tanstack/query-sync-storage-persister@5.75.7":
+ "@tanstack/query-sync-storage-persister@5.90.12":
resolution:
- { integrity: sha512-jJGhyf5KzMZQCGCNwEAxL/wE+ptlgiGdZhsBHqVHaI39i6xmVeYxhi/S1c2kB6ii7kYSkU7doWtplB8IHexW0w== }
+ { integrity: sha512-RXLcwHwCYUKkXbhPLuWftS3h7ZlM4WVfSOvIYMmPIJ7Xcle9KwvVsT2IaUAf7Ltow4qCNRZsSkatf+t9LiOj3A== }
- "@tanstack/react-query-persist-client@5.75.7":
+ "@tanstack/react-query-persist-client@5.90.12":
resolution:
- { integrity: sha512-DJ52g5NVoTja5aSTuhWDDGl2GDODIPPqKI0awowNxzUlsNCPxvEF2p8mkyb6Dsuo/T5OjLSeDjZTgk003DVBWQ== }
+ { integrity: sha512-o51hwImpKgb85FnFljtCXcUzuLXpKONF9N6bhKfifPL3SNSj8neh1a2aHQd7sN9mbeIeNfGMGJuDpSt/Fc3GwQ== }
peerDependencies:
- "@tanstack/react-query": ^5.75.7
+ "@tanstack/react-query": ^5.90.10
react: ^18 || ^19
- "@tanstack/react-query@5.75.7":
+ "@tanstack/react-query@5.90.10":
resolution:
- { integrity: sha512-JYcH1g5pNjKXNQcvvnCU/PueaYg05uKBDHlWIyApspv7r5C0BM12n6ysa2QF2T+1tlPnNXOob8vr8o96Nx0GxQ== }
+ { integrity: sha512-BKLss9Y8PQ9IUjPYQiv3/Zmlx92uxffUOX8ZZNoQlCIZBJPT5M+GOMQj7xislvVQ6l1BstBjcX0XB/aHfFYVNw== }
peerDependencies:
react: ^18 || ^19
- "@testing-library/dom@10.4.0":
+ "@testing-library/dom@10.4.1":
resolution:
- { integrity: sha512-pemlzrSESWbdAloYml3bAJMEfNh1Z7EduzqPKprCH5S341frlpYnUEW0H72dLxa6IsYr+mPno20GiSm+h9dEdQ== }
+ { integrity: sha512-o4PXJQidqJl82ckFaXUeoAW+XysPLauYI43Abki5hABd853iMhitooc6znOnczgbTYmEP6U6/y1ZyKAIsvMKGg== }
engines: { node: ">=18" }
- "@testing-library/jest-dom@6.6.3":
+ "@testing-library/jest-dom@6.9.1":
resolution:
- { integrity: sha512-IteBhl4XqYNkM54f4ejhLRJiZNqcSCoXUOG2CPK7qbD322KjQozM4kHQOfkG2oln9b9HTYqs+Sae8vBATubxxA== }
+ { integrity: sha512-zIcONa+hVtVSSep9UT3jZ5rizo2BsxgyDYU7WFD5eICBE7no3881HGeb/QkGfsJs6JTkY1aQhT7rIPC7e+0nnA== }
engines: { node: ">=14", npm: ">=6", yarn: ">=1" }
"@testing-library/react@16.3.0":
@@ -4189,183 +4303,184 @@ packages:
peerDependencies:
"@testing-library/dom": ">=7.21.4"
- "@tevm/actions@1.0.0-next.143":
+ "@tevm/actions@1.0.0-next.149":
resolution:
- { integrity: sha512-xlu1ciBRQZUwsVZdsf9JTpwPPRlH2Qul/SeOT9M26DoaFjXlwOsAmk4nQ+IAlDiZB9IZguYOQPhIdNZSgUoQjQ== }
+ { integrity: sha512-cFM2HVYg/rXykL83QFGqIU6Eg7M1d0/O67f2tbrakQAJOpMRzW3lwEDjpuRp154t4aPwrmGDOzQCI3DAH94tng== }
peerDependencies:
- viem: ^2.21.1
+ viem: ^2.37.9
+ zod: ^4.1.11
- "@tevm/address@1.0.0-next.142":
+ "@tevm/address@1.0.0-next.148":
resolution:
- { integrity: sha512-ta9c3F6sFqQ6v1/TUpSnsKxA/6X9JHQHa0U/pUNOvptDfZSYI6f8x76l6KWNbI5Q48h3fkymFmk0F5RzLAwQjw== }
+ { integrity: sha512-yBPMy8DbveoM/+lyvYtS+Pjdehi3la9Ppxtt7+YMwDkmZZlcx53Ws1qByIaaiDjFsq0ZhWHGSagOfpUS3kRjDg== }
peerDependencies:
- viem: ^2.21.1
+ viem: ^2.37.9
- "@tevm/base-bundler@1.0.0-next.142":
+ "@tevm/base-bundler@1.0.0-next.149":
resolution:
- { integrity: sha512-11WjdFU/0d5PB9C4t3V5UETSjxZPryVz8Y/MMYKtFeqpr/5lMhdjIwyYrPP6F7Ro4a0D2v7A9U8sMvIq4574/w== }
+ { integrity: sha512-HwGX3C7ehWkJCJnRtgBvGProdurGskiCADPzagBjPLcF4a19lp4u/Ti8yiDyQrJ4tV3b8OPIjLviiBT3ZvA0MQ== }
- "@tevm/block@1.0.0-next.142":
+ "@tevm/block@1.0.0-next.148":
resolution:
- { integrity: sha512-aW0XC1WkJy2S6p1/3kB2ZLLWtGSRFlRyLfQEBDblRG3CPH4rwhoRx71nND+H3N2/6drdjiCvA+3VSWjPtulFGw== }
+ { integrity: sha512-HQbwKIaoWzXGdAfSR7SyhMHP+0Dx6ObRL4ealAU7zpfd3PqQIB4Ga7hIDDxox0YYkaNmFvJKKq3jjKdplk7FrQ== }
- "@tevm/blockchain@1.0.0-next.142":
+ "@tevm/blockchain@1.0.0-next.148":
resolution:
- { integrity: sha512-WRnVwJRJUsA+zUmzNhMbbyjtIVD4b2dokGTRKJAEDuF0Re6jySV1sdV7lKEUhLGoGo74UVacUZF9wZESAbbTTg== }
+ { integrity: sha512-y7evKF2TVtYNCjM3744R6eVQyeoyhdo4J4eOH4IdMpR4YIfoa1QueJ7vNftvzp0BHhjMRoz8WXdTZrUwsh9lYw== }
peerDependencies:
- viem: ^2.21.1
+ viem: ^2.37.9
- "@tevm/bun-plugin@1.0.0-next.142":
+ "@tevm/bun-plugin@1.0.0-next.148":
resolution:
- { integrity: sha512-hEw4yREGO35aSkjfdJ9Y+nk1B/NIlz1nZF63Cfe4bCQoO6mNdpF9stnsO9LcMwACRYKR29g2A5y+jDUs7TLmsA== }
+ { integrity: sha512-dld2rLNxdsgcxivBbJcc1z/FdLAww57JfBZwf2GGhpeCkl7cvjzy7bsJ9/AfgbGGJFRXJ9ECMQDgL6L+9ax2Vw== }
"@tevm/bundler-cache@1.0.0-next.140":
resolution:
{ integrity: sha512-TtUVX1+0ouH77wbSkYFaqDCKOaTZaAyegxNeU+5NKomUzPBYYR2dxPY+H9x4gDLIBoDm6Ob7hIf2/4qb2lXTLg== }
- "@tevm/bundler-cache@1.0.0-next.142":
+ "@tevm/bundler-cache@1.0.0-next.148":
resolution:
- { integrity: sha512-v2l2oU0Y+ic0QADoX06c92yfh8SbaQKZRdH2+rMwtIwaOBKuKddZ/kkrsivj8BIVS7YfrDVvFGxImqHaGoNZkQ== }
+ { integrity: sha512-5T89klJ4waDPBh5n2TInmZM1K53Dc+NWjQAJDguWGdqkaUZF4Z2eBlL+mBDJcxLQIUWktRBhBRzqj2/A3+n0VQ== }
- "@tevm/cli@1.0.0-next.143":
+ "@tevm/cli@1.0.0-next.148":
resolution:
- { integrity: sha512-qTx4kitDgnyUxmsCMZM8WbbSDl3JOWWd56uSwHGBXs1cZP9+gKfGBFK/XL+o2NBuCaUVFrgf4Ok+yne/oTXqmg== }
+ { integrity: sha512-mMXqaoN8RY3NMl+9rLTIEx4nuqtfGxfhdBuWq4Z7OUU9aZlXlUg3sa3lqx7KweAHcAfV9XlY7zPuJJcW3H7csQ== }
engines: { node: ">=16" }
hasBin: true
- "@tevm/client-types@1.0.0-next.142":
+ "@tevm/client-types@1.0.0-next.148":
resolution:
- { integrity: sha512-xQsdZz1lD1Y5bpcNXjh3pulx/S1DKkfT6BmD5BuOx/mLdbTnfEO6m7YegYIVNfkFayNOdcL2mRxJz/8JQ9Jlow== }
+ { integrity: sha512-GOgZ38g/zRlb2jYOEBnZjZ9FmkiWb3pHcBPIWerNgPbLpkD3pPDHkxuTQ0Xw6Q5qqtJRFe4P++rAIDFNpCDh8g== }
- "@tevm/common@1.0.0-next.142":
+ "@tevm/common@1.0.0-next.148":
resolution:
- { integrity: sha512-GZNW6U86CfPcq2qSkoTx8jIBpvvc3sYJxSqTwDLlAKOJ81znZG4uQoTJ5S5+sQu44Dt+OfPC+vJ7CbY5Sz3TPw== }
+ { integrity: sha512-JFi0FJRsSjR8lEeS5U2CYM8u5HZh0mijZADjHjh89yohfV4SATolHJ5wdKGkoa4Y4HGA+qXs62BX7HsgKFj/TA== }
peerDependencies:
- viem: ^2.21.1
+ viem: ^2.37.9
- "@tevm/compiler@1.0.0-next.142":
+ "@tevm/compiler@1.0.0-next.148":
resolution:
- { integrity: sha512-glaAAQWdqvql372WM2oEh7gzZQSswGvp6EysTG/fVlnUSKb9+w6nd9PbULXRPDnJDWTVpkpP4ai8tkK1HoMLTQ== }
+ { integrity: sha512-bi5+2FBccxi3og+S6lkhxy5KGntNTK28fsOzoT4OxfdfXfTrpzPfqgLTayCT874PsGJPqjlvfF1YE0Tu0EfcHw== }
- "@tevm/config@1.0.0-next.142":
+ "@tevm/config@1.0.0-next.148":
resolution:
- { integrity: sha512-Ox2owRqlXtxErz3cZAqCDIyH/B84b7yCah5mV+q5yV58u3gtc3X6G3N4xn7Z1deiL7L6Fem8h9zl5QWt1uzEzQ== }
+ { integrity: sha512-/ztk5eQqmExLYvf9ZGnQJS4NQEBzq6hkVYjmFmQLyainDL5meWrnmr/5nUuneu74fczAhPkHB3AKUzcqqmx/aQ== }
- "@tevm/contract@1.0.0-next.142":
+ "@tevm/contract@1.0.0-next.149":
resolution:
- { integrity: sha512-wlFqmY3xks2ksyWCu8f7fsbbkcoQzlSA/KVmgNwbjY1gj8GBnmx2IfXmv0Gz3w2RB485+bPjWTSjVgtJ6pPz9g== }
+ { integrity: sha512-mMkiO4cg5XggXW+ihsw5L5IW3KuImOZgNE756VTAEN8jexpSXR+XyCTADyxSZKdDFsrKkaqHtRwo559bTDE1IA== }
- "@tevm/decorators@1.0.0-next.143":
+ "@tevm/decorators@1.0.0-next.148":
resolution:
- { integrity: sha512-UtfzYI/+LQvMWVU075qWaFnsHtYKlO1ZEbYKTiHhsc3Z9FD3L8dZVrspPGXKI6uLTNfyEq7burv3uNl1vnjCIA== }
+ { integrity: sha512-gopWEBlub28wBDZ0XZb3O5bFtblh+lBNE/Srf1hSvr2sYrt6xTLXf098vnJMQbCZAV/nRlTRjZg1kKlXVCa9+A== }
peerDependencies:
- viem: ^2.21.1
+ viem: ^2.37.9
- "@tevm/effect@1.0.0-next.142":
+ "@tevm/effect@1.0.0-next.148":
resolution:
- { integrity: sha512-C6QT8xA2Ci2KntN7MAZ9534iIUUkGISrZn9stMbfKIf/d53S6pQyOjgIw19FVZveIXOb0wNuYzp90Lx37YkNFA== }
+ { integrity: sha512-/QpAXSdM75IBtAd5ju4LP+8IddyoDz03i7WDHcQUNPP4wzQ2Db+pEeiSLErFJd5qQr9EeerhCQpNKy4kQapfgw== }
- "@tevm/errors@1.0.0-next.142":
+ "@tevm/errors@1.0.0-next.148":
resolution:
- { integrity: sha512-JKVCQj2biMJr2wwbbxVWxJ15I23LsAoP2b3Wv8B4sxutRxUd9mfIl398mOvnQ5XDTO6OYyq9AfAIpRrLLPBqjw== }
+ { integrity: sha512-/VspnlMGtHPtT6AYJX2xSBLK+kohNvC3gX872q13YH7/XtiVmrJVlsa6zrpD1Uw4Ln567yoLfGYI2SelYkFY3w== }
peerDependencies:
- viem: ^2.21.1
+ viem: ^2.37.9
- "@tevm/esbuild-plugin@1.0.0-next.142":
+ "@tevm/esbuild-plugin@1.0.0-next.148":
resolution:
- { integrity: sha512-KE6kF4wV4S8ByiEPPu2GMRovqyNRUCK1eGrJsGY5QFVk3M4wuR2CplEvqU6wrSDljJ3agj1p7SoVP5/WA7WLHA== }
+ { integrity: sha512-qLa2LE/ncqpYSZWGjCjdMSUtW33MevCoA5qsCKMMiauDUBCkTn+4XuL+ysBcyAOIQbtsTx82Q0Qg8sw2Qy4hVg== }
- "@tevm/evm@1.0.0-next.142":
+ "@tevm/evm@1.0.0-next.148":
resolution:
- { integrity: sha512-j+uu8gLmKWiVxE+Ag9g5JTbTZ/OaZ9KveaydR/1sHObjOklWB0sk9zn2CjC5ZN41kamoAn4Hbx/Px5ai0m3p+A== }
+ { integrity: sha512-r92OtsI3oE996AZw1xpbgbpwZYZYAtLAs3CzuQXTz2PjpW2jNFbrcN3VCQz3/f1rzCO7dOXRfqQfYbO60mROaA== }
- "@tevm/http-client@1.0.0-next.143":
+ "@tevm/http-client@1.0.0-next.148":
resolution:
- { integrity: sha512-rBUs/RmVBEp7IZfQThj2O3m6QVcDUWRxqnENsk5l356vtWM2Kt9wnjyQXX3wmKvL7iLrXrG/HiMx2HTBw2qkkg== }
+ { integrity: sha512-XMHnVR/YeJiTbWx5/sVu4tbgQ2nxeQxWjcYMcoxppO/k/NAh1v5IAfCBVp5W1aaTvfUXZfykoXUIPnsZ7sedNA== }
peerDependencies:
- viem: ^2.21.1
+ viem: ^2.37.9
- "@tevm/jsonrpc@1.0.0-next.142":
+ "@tevm/jsonrpc@1.0.0-next.148":
resolution:
- { integrity: sha512-+TV8NGE0b+yjI9ZJrNmpQSWDVjnLtBinIAtKjGPJiYsAhJklhRCBxwL9m8D40lr5OnKGjtKJJRRxbbq8xtSD8Q== }
+ { integrity: sha512-e+Sln2MzdjvdgRpbu5iGui8YNbUo/riPMu+BSu5feCnVurEtCo0RYZ6ineOK1j2pKSIan3d9aAHqvwFlGJIsbQ== }
peerDependencies:
- viem: ^2.21.1
+ viem: ^2.37.9
- "@tevm/logger@1.0.0-next.142":
+ "@tevm/logger@1.0.0-next.148":
resolution:
- { integrity: sha512-o5kvZTkRoODF4+V3H9A9dbIIxtgbsO5+8EHCQXUpXX77ErK0T1dBvXxWEGKQIwBhG+rMIb/JBvCF5OfsBdVf1Q== }
+ { integrity: sha512-B8o0V9tW6IwQffN4b8cC8SUk9bWv6AEcupgsqh5o19YyWjZKbZX/Dp3eVyv0h9FD3IsZYl70Fef3Bx7iUrVLAg== }
- "@tevm/memory-client@1.0.0-next.143":
+ "@tevm/memory-client@1.0.0-next.148":
resolution:
- { integrity: sha512-ME4kS+Dl/XiOvScFGWVancw7bL8Um1/6DgCrEc31MJS04cfPhQqN3K30LdxYbypRFVWmTczFY8QVC7fvGMS4XQ== }
+ { integrity: sha512-4aMYnKMJtGXdmZDAuNpoYuu+InK1QOZ6eIGMzzkcgwOHyOSSzaq3eMbyHLQ4hDYxgQPDbSRHYmy5l8ltymce8A== }
peerDependencies:
- viem: ^2.23.5
+ viem: ^2.37.9
- "@tevm/node@1.0.0-next.143":
+ "@tevm/node@1.0.0-next.148":
resolution:
- { integrity: sha512-g7kz6HWUu12pPN498ssBg8zFOFa7Q6YWLBaFyPvNadrrDKtPUmclAQnaZiRbk4fkXFVk6/nbzPa8XcPSz4eRjA== }
+ { integrity: sha512-xzMjuUgzTlGzryJfoNqlfqAWJHDgHlNJSj4zuHiK/24dJXWN0Gs3jsHln4bASZJhn+1IPT/qSNfifrwBeNZ9ug== }
peerDependencies:
- viem: ^2.21.1
+ viem: ^2.37.9
- "@tevm/precompiles@1.0.0-next.142":
+ "@tevm/precompiles@1.0.0-next.148":
resolution:
- { integrity: sha512-8mGTY/gEB0jiYxCgBOuGyOiNbgrBoiI/ZffB1c0pwbqrH+V9DngM1t290dubFNy1G+O3omaqpyL8PX/t1lY9qA== }
+ { integrity: sha512-uteo0jtWqNe5B1PJUPX5vMfk4PvLKJo+hDcHnB1/XOAmnq4eawA6czbcDZC/gRZbZzE8Gjb3tT2+MD8oBUJEIw== }
- "@tevm/predeploys@1.0.0-next.142":
+ "@tevm/predeploys@1.0.0-next.148":
resolution:
- { integrity: sha512-lZiIQWB0RlOBlmYGWEFPapIf8Dh8Oto46kUJQnGLyMiFMvD7QoQG/PICVNuE+WgOtm+QR92JKbSW8JVA0/3NGQ== }
+ { integrity: sha512-h95fBhVIsADvbkVIkZ8kWxXnmmhPc6bCTtgL224or3OjFvrJIjV6OfiNR6thmmRQiZmybApg0qpbyeA9jNRmvw== }
- "@tevm/receipt-manager@1.0.0-next.142":
+ "@tevm/receipt-manager@1.0.0-next.148":
resolution:
- { integrity: sha512-va1rZT96fdzGXMeSBMqCbj/PedMeXDNjgnHBhsB43GUjJWgWDZLEWINvc5Jfmg10xmbUEsUc/dq4UPFiYxLYcw== }
+ { integrity: sha512-81ScweBmdzZET8HZ0CIWnzof7t4T0TMrEkrO1syARIpcKuvuhsoyIrkCEFmUbU7T/TxAeHGMFVep7skT1me2ZA== }
- "@tevm/resolutions@1.0.0-next.142":
+ "@tevm/resolutions@1.0.0-next.148":
resolution:
- { integrity: sha512-YI6py5hUr7Mrq72/PcztijoKMMguCOgJVDl4h7zVZNyp6RKPwvz6SRIt93qnQ8Tb+Eimn1c4Zra5iYjfWiLm3Q== }
+ { integrity: sha512-IWrhb/kicpx/AMCX/HGP10sYSbWGqBDjMsP3jSG/csnYGVnK+D2ekQLxXxSd6Axgw3VkUFgY9qYw7rSg9k9Mjw== }
- "@tevm/rlp@1.0.0-next.142":
+ "@tevm/rlp@1.0.0-next.148":
resolution:
- { integrity: sha512-lwpE2iUG8zQqeDQtiVC3ruTHT5iDc6Y/Rn8u9MxrjlKBWdnEsV6V0LaZF9hodNkun4Lr/JkUtaim1FS87k53Gw== }
+ { integrity: sha512-XvOmCi0rAPG3nKkXkkE2SIGA/KD7nezGz67bRlLMcCrxovZ0uSKAivPrEw6uI3sKZ2IqBCYUDmJedlpttm9U6A== }
- "@tevm/rollup-plugin@1.0.0-next.142":
+ "@tevm/rollup-plugin@1.0.0-next.148":
resolution:
- { integrity: sha512-0WNq1wSV9eWvtEl4CGx/4z2JIHbEQ+TgJyRZzJDN6b5em68KTgorzaFeMaV+vUkblUJaTViyuNi3RkzbM/x+Gw== }
+ { integrity: sha512-wBhWxjnNdzI6mlsFhNoXLX6e3PvnYZd4+yLt0PaXpUu1AyoNsUamRJE0ARReNAqqI8rvtrjbMwJuMDjme/7ymA== }
- "@tevm/rspack-plugin@1.0.0-next.142":
+ "@tevm/rspack-plugin@1.0.0-next.148":
resolution:
- { integrity: sha512-+qjutNXLY4XWBtIKBz4WhkvkwuBL9/KWBrblVB3oRXALK29JuxIFMnWZcvs5eXIPxAKGufuldcZ994V9KPVuBg== }
+ { integrity: sha512-oC21VqYdDUcIOUrEVFeIx4DJ1PMPkPB82q71l81PomZblSW0wpM/ZWIWY6Hj0+FvVoGr91kNdBnuoxdUP94eNw== }
- "@tevm/runtime@1.0.0-next.142":
+ "@tevm/runtime@1.0.0-next.148":
resolution:
- { integrity: sha512-elysafIGBGMWldH70H7B478gyogwIs4wcnZPwxwo7KxnXowCqeaRoxMbWADxTqYxIgoBRhL1z1Dal7U3w+uDWg== }
+ { integrity: sha512-Xq9VEF1vJCVxYkZb8xcQPi05f45qIxXfV9P0K0adlrX66nYwJLB0EZraqVxgT4SjgCzHEEl1/l2jVlkLoa5EYw== }
- "@tevm/server@1.0.0-next.143":
+ "@tevm/server@1.0.0-next.148":
resolution:
- { integrity: sha512-suWwmjW6iYQCmChQtHYZ9OTkv5TR36yE0Opn8uae0iUISKX/S/3iVsbBFSMWkhPXLjc+MzKYjVV/gUoPyhhzpQ== }
+ { integrity: sha512-cdDpFT/Ci+jQFkuor7yQKUVh0m6S/j9631RLZGaBGN034J9d3tM98F0f2/NI+60Fqa/2JFB5ytl6TFJApyF/MQ== }
- "@tevm/solc@1.0.0-next.142":
+ "@tevm/solc@1.0.0-next.148":
resolution:
- { integrity: sha512-m5YvzjzZw3Urh4n9XzZtsMxW8W3x3koJ+Ru4/s0+GIhuf9Otml3LiEJQ7fdkm8yCzNrZDaSwD3yYURDPsDpiCA== }
+ { integrity: sha512-GhE+cQKo/xvwMFMqIryaQfp4UyncJOEefc3dzNHCB7F27pqiPcYvdsx+t7CK6SK/ahdRcG7eSQ+/3f9VYKulXA== }
- "@tevm/state@1.0.0-next.142":
+ "@tevm/state@1.0.0-next.148":
resolution:
- { integrity: sha512-Gop2YFgjx0yDXVHqDkWO7lgXWidYWTEDpDTOAGHVQmE0C5YcVVafunTZfiR+0llN2GVeTDur/bnSarCulBcXHw== }
+ { integrity: sha512-by8U3/fAGKf8HTdRAANePMwGdzDLb+Kz5shH0+p5Qd4BOef70/7Cwy/HovwF4gAFA59GsAQrE51ZSPIWJzfqwg== }
peerDependencies:
- viem: ^2.21.1
+ viem: ^2.37.9
- "@tevm/sync-storage-persister@1.0.0-next.142":
+ "@tevm/sync-storage-persister@1.0.0-next.148":
resolution:
- { integrity: sha512-Cf/gJRVXbqK5g1L/GflfxBuSEEQxZB9hc2r0bGV21o4tsS4dFD4WCxJTGHNsw07gwup56zYPjqilkUZIpucttA== }
+ { integrity: sha512-UHqWFKpHKDzRcb09J8Qo49z2x0wTl4YSCKkwz1pUNpRrOjuiqcVywh/Q+3iwvWC88gxSWsrIG7kQz1Iave6v/Q== }
- "@tevm/test-utils@1.0.0-next.142":
+ "@tevm/test-utils@1.0.0-next.148":
resolution:
- { integrity: sha512-DIQXGXZWiMVs7CsbPvnmU6qNnB9zVzneK0ZCPgmrcUhqCaCR0CPcLtzvhqkFEs0zWjVx9mkYsm63YDylZg8s+Q== }
+ { integrity: sha512-K86d7NO12S3Us5TD92nma5jbvQK/ovwX1uu3CUsBBy+WS25Dz0FC9Lw4+5aI/EM198FP4CfdCe7O9Qt6Pk8tsw== }
peerDependencies:
- viem: ^2.21.1
+ viem: ^2.37.9
- "@tevm/trie@1.0.0-next.142":
+ "@tevm/trie@1.0.0-next.148":
resolution:
- { integrity: sha512-FPNj81nyeF6wb3725wFL7bUo0OwFNEcNgaFGjizT7xPnfH/c0LF5DVtTLARIJWJnpSuqNuC2I3ENBmBDCKj3uA== }
+ { integrity: sha512-mHQPPDOvZQUze7g+FFC0jiPy/qcVDLvADpDdVfkiAWlZ2DJiNfq8MOxLikDUv8SGosgKMyMwuBbSbNrNVdAPHw== }
"@tevm/ts-plugin@1.0.0-next.140":
resolution:
@@ -4374,9 +4489,9 @@ packages:
peerDependencies:
typescript: ">=5.0.0"
- "@tevm/ts-plugin@1.0.0-next.142":
+ "@tevm/ts-plugin@1.0.0-next.148":
resolution:
- { integrity: sha512-HgOOzgY/UMF0dA0i/K6/FIs3UTIzsanSlc/gc6bruIiz+4eiPIVguN7IQemCYD49CZJ3RrNT5qAI91Z//CeWhg== }
+ { integrity: sha512-uKl3loZHLzkFwjBiJc57S7npxlTExqEg8C6wCzZ7gcCCBuwu7cHe5+QU1R90MMamclV+jsgqVNEL33CkGcIWsw== }
hasBin: true
peerDependencies:
typescript: ">=5.0.0"
@@ -4385,47 +4500,47 @@ packages:
resolution:
{ integrity: sha512-wSs3HmnIsToNzT3j/p+AYW3KTQ3PvWhLKHvTQh1FpbWG4FiwG4dNO46BsoWAGsr59CLjn/+YUcbt5xFbaMVoUQ== }
- "@tevm/tsupconfig@1.0.0-next.142":
+ "@tevm/tsupconfig@1.0.0-next.148":
resolution:
- { integrity: sha512-zRhajNp0fpEy8O77nChThycT0+m0zrhnIPP4AL2ognrJY/tDmdm2kpuokxshEOg+lA0pcu4zDANuIrkRAaEhRQ== }
+ { integrity: sha512-kJblIsgZl7REGfpvm1gQN3aTue0nC4jQ5Orh0D4Wmos2OnTwR3+QHkvINnCzOdFDveqcF/LlrRgZb2FkgSKOzg== }
- "@tevm/tx@1.0.0-next.142":
+ "@tevm/tx@1.0.0-next.148":
resolution:
- { integrity: sha512-FIDbDYWkQHBuiG4wLFvJ4Zhv799OyR2g6X9/KFiXKGsQRXImTp6aMCk5ep757KCEPNwV+tJR0Ez1Oe/J7XjTVw== }
+ { integrity: sha512-omQMr5cOVVFulrc2jFJHdlLm9Dck1uRGOHtrJO+BGHo9NaMu6vE+rhfOkUiBpGSUvxdVtgyp9eoFehnvu1MNYw== }
- "@tevm/txpool@1.0.0-next.143":
+ "@tevm/txpool@1.0.0-next.148":
resolution:
- { integrity: sha512-bzPxFieZoaLRSdC8H+fdxcIP5N/VJVmDQ0ZZjd2YG0UkSxzHqKyWUTQYZWt1UUBW+SI5fKzUp3ewtAjy1SSG7w== }
+ { integrity: sha512-/RJ/4eJ4fl4VUk9GaCqOuNem0OyF6kkePAh/n2BjDH6KiEwQ54Wn3xknJZwZKHYHYJBzZGE0VtDGlSl86PPtnA== }
- "@tevm/unplugin@1.0.0-next.142":
+ "@tevm/unplugin@1.0.0-next.148":
resolution:
- { integrity: sha512-G/r51gqbvLj0xlxzHoBMKE5ORs9dIp+fjeJgVe70dblpI6gW800oMzND0NuT000GFuLwLdCDGtNHZu9cVyDUhQ== }
+ { integrity: sha512-VoLvZuUXX4Rv/HK2j50qEso9Wjv3Bp6lbhLX+CeGdNDlEYwA2Ovw5D7D7tjAhcxQEk1FuouJ4WzMPMqByXmFYw== }
- "@tevm/utils@1.0.0-next.142":
+ "@tevm/utils@1.0.0-next.148":
resolution:
- { integrity: sha512-ptHmcDRIAQHNSVWCziNVcocI0cc+K9xL1JWCCbJBNqIB2+3fuf0S+8E6TULWG0lO6EnebHONYkhFEby6x/AWJg== }
+ { integrity: sha512-J5uXzviEo8e2Mhp+Rpapi5fT/DO5EwNsqtJCvZKbeCWcROpTwfWR7CqEFWuU7MYf05T1sWtaqWudP7Tf/KQN7w== }
peerDependencies:
- viem: ^2.21.1
+ viem: ^2.37.9
- "@tevm/viem@1.0.0-next.143":
+ "@tevm/viem@1.0.0-next.148":
resolution:
- { integrity: sha512-FmDulDec0iFfD0jCoJiHGDCNpI1H/Nm4th7bfJmqM4qT+UtKyonDkTKacW2uQEuk3rkD47gMvEc8qz3XqqORsA== }
+ { integrity: sha512-+EQzYbtuY2yAPjxS8nGUHt/O9Po0n4q/pzFQAHSx3KDtK8LmNmJS+jX1lH3yXcKnx0h5DJmzTqswMDcmrap8DQ== }
peerDependencies:
- viem: ^2.21.1
+ viem: ^2.37.9
- "@tevm/vite-plugin@1.0.0-next.142":
+ "@tevm/vite-plugin@1.0.0-next.148":
resolution:
- { integrity: sha512-4T+Hhmm7mtXPIbB752nsYSFAgl+kUYDZTlmf5tz1LbdMnDSnoMIORoRM1b1AYZl35OypXZGQJ7nRSXsKrMg/yA== }
+ { integrity: sha512-K8EVdywxqulnoQl0YcW8kzv44Niyd7/JsK5PywX5QkoDy5EXQadFI9nQ6xNZ5EW3936FhH7esFDGsQS8xTuraA== }
- "@tevm/vm@1.0.0-next.143":
+ "@tevm/vm@1.0.0-next.148":
resolution:
- { integrity: sha512-gDxYq1TeSnN2A9bHOjQqG9bWGh1emNZjKtvSUfc6iIiP4/AbHBOStqZFO4mkVTrkCyxf7K+ldCZj5r81UTOZAA== }
+ { integrity: sha512-OHca31KH6soIlOaN2RyFqh9iX2QuuMdPf38W7Wlt3tBssujrq6Xwi9Mv5qXiK8BfM/ysTjoTREXv5nPNnE4Xvg== }
peerDependencies:
- viem: ^2.21.1
+ viem: ^2.37.9
- "@tevm/webpack-plugin@1.0.0-next.142":
+ "@tevm/webpack-plugin@1.0.0-next.148":
resolution:
- { integrity: sha512-ZWD7AR0+GWGGvbw/rum3XPgz6PjNRlNI/tRPk4ipoA1x/EfvHvYK5oVphhYWtx6GRrlSW68aeiwcWbXBprFqfg== }
+ { integrity: sha512-88yGm/5/ByLPHn9ss4kxor1BKmNaCUi1RVf+1FlWZnlEHU8ZApdh2g9WrP3XC5HMMpJFxA713TgVYVUvJ5f6pQ== }
peerDependencies:
webpack: ">5.0.0"
@@ -4434,9 +4549,9 @@ packages:
{ integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A== }
engines: { node: ">= 10" }
- "@tsconfig/node10@1.0.11":
+ "@tsconfig/node10@1.0.12":
resolution:
- { integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw== }
+ { integrity: sha512-UCYBaeFvM11aU2y3YPZ//O5Rhj+xKyzy7mvcIoAjASbigy8mHMryP5cK7dgjlz2hWxh1g5pLw084E0a/wlUSFQ== }
"@tsconfig/node12@1.0.11":
resolution:
@@ -4450,9 +4565,9 @@ packages:
resolution:
{ integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA== }
- "@tybys/wasm-util@0.9.0":
+ "@tybys/wasm-util@0.10.1":
resolution:
- { integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw== }
+ { integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg== }
"@types/argparse@1.0.38":
resolution:
@@ -4478,9 +4593,9 @@ packages:
resolution:
{ integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A== }
- "@types/babel__traverse@7.20.7":
+ "@types/babel__traverse@7.28.0":
resolution:
- { integrity: sha512-dkO5fhS7+/oos4ciWxyEyjWe48zmG6wbCheo/G2ZnHx4fs3EU6YC6UM8rk56gAjNJ9P3MTH2jo5jb92/K6wbng== }
+ { integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q== }
"@types/bunyan@1.8.11":
resolution:
@@ -4490,6 +4605,10 @@ packages:
resolution:
{ integrity: sha512-hWtVTC2q7hc7xZ/RLbxapMvDMgUnDvKvMOpKal4DrMyfGBUfB1oKaZlIRr6mJL+If3bAP6sV/QneGzF6tJjZDg== }
+ "@types/chai@5.2.3":
+ resolution:
+ { integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA== }
+
"@types/connect@3.4.38":
resolution:
{ integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug== }
@@ -4498,9 +4617,9 @@ packages:
resolution:
{ integrity: sha512-sDOLlVbHhXpAUAL0YHDUUwDZf3iN4Bwi4W6a0W0b+QcAezUbRtH4FVb+9J4h+XFPW7l/gQ9F8qC7P+Ec4k8QVQ== }
- "@types/d3-array@3.2.1":
+ "@types/d3-array@3.2.2":
resolution:
- { integrity: sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg== }
+ { integrity: sha512-hOLWVbm7uRza0BYXpIIW5pxfrKe0W+D5lrFiAEYR+pb6w3N2SwSMaJbXdUfSEv+dT4MfHBLtn5js0LAWaO6otw== }
"@types/d3-color@3.1.3":
resolution:
@@ -4538,6 +4657,10 @@ packages:
resolution:
{ integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ== }
+ "@types/deep-eql@4.0.2":
+ resolution:
+ { integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw== }
+
"@types/eslint-scope@3.7.7":
resolution:
{ integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg== }
@@ -4546,22 +4669,27 @@ packages:
resolution:
{ integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag== }
- "@types/estree@1.0.7":
+ "@types/estree@1.0.8":
resolution:
- { integrity: sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ== }
+ { integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w== }
"@types/glob@7.2.0":
resolution:
{ integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA== }
- "@types/glob@8.1.0":
+ "@types/glob@9.0.0":
resolution:
- { integrity: sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w== }
+ { integrity: sha512-00UxlRaIUvYm4R4W9WYkN8/J+kV8fmOQ7okeH6YFtGWFMt3odD45tpG5yA5wnL7HE6lLgjaTW5n14ju2hl2NNA== }
+ deprecated: This is a stub types definition. glob provides its own type definitions, so you do not need this installed.
"@types/gradient-string@1.1.6":
resolution:
{ integrity: sha512-LkaYxluY4G5wR1M4AKQUal2q61Di1yVVCw42ImFTuaIoQVgmV0WP1xUaLB8zwb47mp82vWTpePI9JmrjEnJ7nQ== }
+ "@types/humanize-duration@3.27.4":
+ resolution:
+ { integrity: sha512-yaf7kan2Sq0goxpbcwTQ+8E9RP6HutFBPv74T/IA/ojcHKhuKVlk2YFYyHhWZeLvZPzzLE3aatuQB4h0iqyyUA== }
+
"@types/json-bigint@1.0.4":
resolution:
{ integrity: sha512-ydHooXLbOmxBbubnA7Eh+RpBzuaIiQjh8WGJYQB50JFGFrdxW7JzVlyEV7fAXw0T2sqJ1ysTneJbiyNLqZRAag== }
@@ -4570,9 +4698,9 @@ packages:
resolution:
{ integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA== }
- "@types/lodash@4.17.17":
+ "@types/lodash@4.17.20":
resolution:
- { integrity: sha512-RRVJ+J3J+WmyOTqnz3PiBLA501eKwXl2noseKOrNo/6+XEHjTAxO4xHvxQB6QuNm+s4WRbn6rSiap8+EA+ykFQ== }
+ { integrity: sha512-H3MHACvFUEiujabxhaI/ImO6gUrd8oOurg7LQtS7mbwIXA/cUqWrvBsaeJ23aZEPk1TAYkurjfMbSELfoCXlGA== }
"@types/memcached@2.2.10":
resolution:
@@ -4582,6 +4710,11 @@ packages:
resolution:
{ integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA== }
+ "@types/minimatch@6.0.0":
+ resolution:
+ { integrity: sha512-zmPitbQ8+6zNutpwgcQuLcsEpn/Cj54Kbn7L5pX0Os5kdWplB7xPgEh/g+SWOB/qmows2gpuCaPyduq8ZZRnxA== }
+ deprecated: This is a stub types definition. minimatch provides its own type definitions, so you do not need this installed.
+
"@types/ms@2.1.0":
resolution:
{ integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA== }
@@ -4590,13 +4723,17 @@ packages:
resolution:
{ integrity: sha512-DSLCOXhkvfS5WNNPbfn2KdICAmk8lLc+/PNvnPnF7gOdMZCxopXduqv0OQ13y/yA/zXTSikZZqVgybUxOEg6YQ== }
- "@types/node-fetch@2.6.12":
+ "@types/node-fetch@2.6.13":
+ resolution:
+ { integrity: sha512-QGpRVpzSaUs30JBSGPjOg4Uveu384erbHBoT1zeONvyCfwQxIkUshLAOqN/k9EjGviPRmWTTe6aH2qySWKTVSw== }
+
+ "@types/node@22.19.1":
resolution:
- { integrity: sha512-8nneRWKCg3rMtF69nLQJnOYUcbafYeFSjqkw3jCRLsqkWFlHaoQrr5mXmofFGOx3DKn7UfmBMyov8ySvLRVldA== }
+ { integrity: sha512-LCCV0HdSZZZb34qifBsyWlUmok6W7ouER+oQIGBScS8EsZsQbrtFTUrDX4hOl+CS6p7cnNC4td+qrSVGSCTUfQ== }
- "@types/node@22.15.17":
+ "@types/node@24.10.1":
resolution:
- { integrity: sha512-wIX2aSZL5FE+MR0JlvF87BNVrtFWf6AE6rxSE9X7OwnVvoyCQjpzSRJ+M87se/4QCkCiebQAqrJ0y6fwIyi7nw== }
+ { integrity: sha512-GNWcUTRBgIRJD5zj+Tq0fKOJ5XZajIiBroOF0yvj2bSU1WvNdYS/dn9UxwsujGW4JX06dnHyjV2y9rRaybH0iQ== }
"@types/normalize-package-data@2.4.4":
resolution:
@@ -4610,23 +4747,23 @@ packages:
resolution:
{ integrity: sha512-1Kc4oAGzAl7uqUStZCDvaLFqZrW9qWSjXOmBfdgyBP5La7Us6Mg4GBvRlSoaZMhQF/zSj1C8CtKMBkoiT8eL8w== }
- "@types/react-dom@19.1.3":
+ "@types/react-dom@19.2.3":
resolution:
- { integrity: sha512-rJXC08OG0h3W6wDMFxQrZF00Kq6qQvw0djHRdzl3U5DnIERz0MRce3WVc7IS6JYBwtaP/DwYtRRjVlvivNveKg== }
+ { integrity: sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ== }
peerDependencies:
- "@types/react": ^19.0.0
+ "@types/react": ^19.2.0
- "@types/react@19.1.3":
+ "@types/react@19.2.6":
resolution:
- { integrity: sha512-dLWQ+Z0CkIvK1J8+wrDPwGxEYFA4RAyHoZPxHVGspYmFVnwGSNT24cGIhFJrtfRnWVuW8X7NO52gCXmhkVUWGQ== }
+ { integrity: sha512-p/jUvulfgU7oKtj6Xpk8cA2Y1xKTtICGpJYeJXz2YVO2UcvjQgeRMLDGfDeqeRW2Ta+0QNFwcc8X3GH8SxZz6w== }
"@types/readable-stream@2.3.15":
resolution:
{ integrity: sha512-oM5JSKQCcICF1wvGgmecmHldZ48OZamtMxcGGVICOJA8o8cahXC1zEVAif8iwoc5j8etxFaRFnf095+CDsuoFQ== }
- "@types/request@2.48.12":
+ "@types/request@2.48.13":
resolution:
- { integrity: sha512-G3sY+NpsA9jnwm0ixhAFQSJ3Q9JkpLZpJbI3GMv0mIAT0y3mRabYeINzal5WOChIiaTEGQYlHOKgkaM9EisWHw== }
+ { integrity: sha512-FGJ6udDNUCjd19pp0Q3iTiDkwhYup7J8hpMW9c4k53NrccQFFWKRho6hvtPPEhnXWKvukfwAlB6DbDz4yhH5Gg== }
"@types/shimmer@1.2.0":
resolution:
@@ -4652,238 +4789,264 @@ packages:
resolution:
{ integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg== }
- "@typescript-eslint/eslint-plugin@8.32.0":
+ "@typescript-eslint/eslint-plugin@8.47.0":
resolution:
- { integrity: sha512-/jU9ettcntkBFmWUzzGgsClEi2ZFiikMX5eEQsmxIAWMOn4H3D4rvHssstmAHGVvrYnaMqdWWWg0b5M6IN/MTQ== }
+ { integrity: sha512-fe0rz9WJQ5t2iaLfdbDc9T80GJy0AeO453q8C3YCilnGozvOyCG5t+EZtg7j7D88+c3FipfP/x+wzGnh1xp8ZA== }
engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
peerDependencies:
- "@typescript-eslint/parser": ^8.0.0 || ^8.0.0-alpha.0
+ "@typescript-eslint/parser": ^8.47.0
eslint: ^8.57.0 || ^9.0.0
- typescript: ">=4.8.4 <5.9.0"
+ typescript: ">=4.8.4 <6.0.0"
- "@typescript-eslint/parser@8.32.0":
+ "@typescript-eslint/parser@8.47.0":
resolution:
- { integrity: sha512-B2MdzyWxCE2+SqiZHAjPphft+/2x2FlO9YBx7eKE1BCb+rqBlQdhtAEhzIEdozHd55DXPmxBdpMygFJjfjjA9A== }
+ { integrity: sha512-lJi3PfxVmo0AkEY93ecfN+r8SofEqZNGByvHAI3GBLrvt1Cw6H5k1IM02nSzu0RfUafr2EvFSw0wAsZgubNplQ== }
engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- typescript: ">=4.8.4 <5.9.0"
+ typescript: ">=4.8.4 <6.0.0"
+
+ "@typescript-eslint/project-service@8.47.0":
+ resolution:
+ { integrity: sha512-2X4BX8hUeB5JcA1TQJ7GjcgulXQ+5UkNb0DL8gHsHUHdFoiCTJoYLTpib3LtSDPZsRET5ygN4qqIWrHyYIKERA== }
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
+ peerDependencies:
+ typescript: ">=4.8.4 <6.0.0"
+
+ "@typescript-eslint/scope-manager@8.47.0":
+ resolution:
+ { integrity: sha512-a0TTJk4HXMkfpFkL9/WaGTNuv7JWfFTQFJd6zS9dVAjKsojmv9HT55xzbEpnZoY+VUb+YXLMp+ihMLz/UlZfDg== }
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
- "@typescript-eslint/scope-manager@8.32.0":
+ "@typescript-eslint/tsconfig-utils@8.47.0":
resolution:
- { integrity: sha512-jc/4IxGNedXkmG4mx4nJTILb6TMjL66D41vyeaPWvDUmeYQzF3lKtN15WsAeTr65ce4mPxwopPSo1yUUAWw0hQ== }
+ { integrity: sha512-ybUAvjy4ZCL11uryalkKxuT3w3sXJAuWhOoGS3T/Wu+iUu1tGJmk5ytSY8gbdACNARmcYEB0COksD2j6hfGK2g== }
engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
+ peerDependencies:
+ typescript: ">=4.8.4 <6.0.0"
- "@typescript-eslint/type-utils@8.32.0":
+ "@typescript-eslint/type-utils@8.47.0":
resolution:
- { integrity: sha512-t2vouuYQKEKSLtJaa5bB4jHeha2HJczQ6E5IXPDPgIty9EqcJxpr1QHQ86YyIPwDwxvUmLfP2YADQ5ZY4qddZg== }
+ { integrity: sha512-QC9RiCmZ2HmIdCEvhd1aJELBlD93ErziOXXlHEZyuBo3tBiAZieya0HLIxp+DoDWlsQqDawyKuNEhORyku+P8A== }
engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- typescript: ">=4.8.4 <5.9.0"
+ typescript: ">=4.8.4 <6.0.0"
- "@typescript-eslint/types@8.32.0":
+ "@typescript-eslint/types@8.47.0":
resolution:
- { integrity: sha512-O5Id6tGadAZEMThM6L9HmVf5hQUXNSxLVKeGJYWNhhVseps/0LddMkp7//VDkzwJ69lPL0UmZdcZwggj9akJaA== }
+ { integrity: sha512-nHAE6bMKsizhA2uuYZbEbmp5z2UpffNrPEqiKIeN7VsV6UY/roxanWfoRrf6x/k9+Obf+GQdkm0nPU+vnMXo9A== }
engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
- "@typescript-eslint/typescript-estree@8.32.0":
+ "@typescript-eslint/typescript-estree@8.47.0":
resolution:
- { integrity: sha512-pU9VD7anSCOIoBFnhTGfOzlVFQIA1XXiQpH/CezqOBaDppRwTglJzCC6fUQGpfwey4T183NKhF1/mfatYmjRqQ== }
+ { integrity: sha512-k6ti9UepJf5NpzCjH31hQNLHQWupTRPhZ+KFF8WtTuTpy7uHPfeg2NM7cP27aCGajoEplxJDFVCEm9TGPYyiVg== }
engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
peerDependencies:
- typescript: ">=4.8.4 <5.9.0"
+ typescript: ">=4.8.4 <6.0.0"
- "@typescript-eslint/utils@8.32.0":
+ "@typescript-eslint/utils@8.47.0":
resolution:
- { integrity: sha512-8S9hXau6nQ/sYVtC3D6ISIDoJzS1NsCK+gluVhLN2YkBPX+/1wkwyUiDKnxRh15579WoOIyVWnoyIf3yGI9REw== }
+ { integrity: sha512-g7XrNf25iL4TJOiPqatNuaChyqt49a/onq5YsJ9+hXeugK+41LVg7AxikMfM02PC6jbNtZLCJj6AUcQXJS/jGQ== }
engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- typescript: ">=4.8.4 <5.9.0"
+ typescript: ">=4.8.4 <6.0.0"
- "@typescript-eslint/visitor-keys@8.32.0":
+ "@typescript-eslint/visitor-keys@8.47.0":
resolution:
- { integrity: sha512-1rYQTCLFFzOI5Nl0c8LUpJT8HxpwVRn9E4CkMsYfuN6ctmQqExjSTzzSk0Tz2apmXy7WU6/6fyaZVVA/thPN+w== }
+ { integrity: sha512-SIV3/6eftCy1bNzCQoPmbWsRLujS8t5iDIZ4spZOBHqrM+yfX2ogg8Tt3PDTAVKw3sSCiUgg30uOAvK2r9zGjQ== }
engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
"@unhead/schema@1.11.20":
resolution:
{ integrity: sha512-0zWykKAaJdm+/Y7yi/Yds20PrUK7XabLe9c3IRcjnwYmSWY6z0Cr19VIs3ozCj8P+GhR+/TI2mwtGlueCEYouA== }
- "@unrs/resolver-binding-darwin-arm64@1.7.2":
+ "@unrs/resolver-binding-android-arm-eabi@1.11.1":
+ resolution:
+ { integrity: sha512-ppLRUgHVaGRWUx0R0Ut06Mjo9gBaBkg3v/8AxusGLhsIotbBLuRk51rAzqLC8gq6NyyAojEXglNjzf6R948DNw== }
+ cpu: [arm]
+ os: [android]
+
+ "@unrs/resolver-binding-android-arm64@1.11.1":
+ resolution:
+ { integrity: sha512-lCxkVtb4wp1v+EoN+HjIG9cIIzPkX5OtM03pQYkG+U5O/wL53LC4QbIeazgiKqluGeVEeBlZahHalCaBvU1a2g== }
+ cpu: [arm64]
+ os: [android]
+
+ "@unrs/resolver-binding-darwin-arm64@1.11.1":
resolution:
- { integrity: sha512-vxtBno4xvowwNmO/ASL0Y45TpHqmNkAaDtz4Jqb+clmcVSSl8XCG/PNFFkGsXXXS6AMjP+ja/TtNCFFa1QwLRg== }
+ { integrity: sha512-gPVA1UjRu1Y/IsB/dQEsp2V1pm44Of6+LWvbLc9SDk1c2KhhDRDBUkQCYVWe6f26uJb3fOK8saWMgtX8IrMk3g== }
cpu: [arm64]
os: [darwin]
- "@unrs/resolver-binding-darwin-x64@1.7.2":
+ "@unrs/resolver-binding-darwin-x64@1.11.1":
resolution:
- { integrity: sha512-qhVa8ozu92C23Hsmv0BF4+5Dyyd5STT1FolV4whNgbY6mj3kA0qsrGPe35zNR3wAN7eFict3s4Rc2dDTPBTuFQ== }
+ { integrity: sha512-cFzP7rWKd3lZaCsDze07QX1SC24lO8mPty9vdP+YVa3MGdVgPmFc59317b2ioXtgCMKGiCLxJ4HQs62oz6GfRQ== }
cpu: [x64]
os: [darwin]
- "@unrs/resolver-binding-freebsd-x64@1.7.2":
+ "@unrs/resolver-binding-freebsd-x64@1.11.1":
resolution:
- { integrity: sha512-zKKdm2uMXqLFX6Ac7K5ElnnG5VIXbDlFWzg4WJ8CGUedJryM5A3cTgHuGMw1+P5ziV8CRhnSEgOnurTI4vpHpg== }
+ { integrity: sha512-fqtGgak3zX4DCB6PFpsH5+Kmt/8CIi4Bry4rb1ho6Av2QHTREM+47y282Uqiu3ZRF5IQioJQ5qWRV6jduA+iGw== }
cpu: [x64]
os: [freebsd]
- "@unrs/resolver-binding-linux-arm-gnueabihf@1.7.2":
+ "@unrs/resolver-binding-linux-arm-gnueabihf@1.11.1":
resolution:
- { integrity: sha512-8N1z1TbPnHH+iDS/42GJ0bMPLiGK+cUqOhNbMKtWJ4oFGzqSJk/zoXFzcQkgtI63qMcUI7wW1tq2usZQSb2jxw== }
+ { integrity: sha512-u92mvlcYtp9MRKmP+ZvMmtPN34+/3lMHlyMj7wXJDeXxuM0Vgzz0+PPJNsro1m3IZPYChIkn944wW8TYgGKFHw== }
cpu: [arm]
os: [linux]
- "@unrs/resolver-binding-linux-arm-musleabihf@1.7.2":
+ "@unrs/resolver-binding-linux-arm-musleabihf@1.11.1":
resolution:
- { integrity: sha512-tjYzI9LcAXR9MYd9rO45m1s0B/6bJNuZ6jeOxo1pq1K6OBuRMMmfyvJYval3s9FPPGmrldYA3mi4gWDlWuTFGA== }
+ { integrity: sha512-cINaoY2z7LVCrfHkIcmvj7osTOtm6VVT16b5oQdS4beibX2SYBwgYLmqhBjA1t51CarSaBuX5YNsWLjsqfW5Cw== }
cpu: [arm]
os: [linux]
- "@unrs/resolver-binding-linux-arm64-gnu@1.7.2":
+ "@unrs/resolver-binding-linux-arm64-gnu@1.11.1":
resolution:
- { integrity: sha512-jon9M7DKRLGZ9VYSkFMflvNqu9hDtOCEnO2QAryFWgT6o6AXU8du56V7YqnaLKr6rAbZBWYsYpikF226v423QA== }
+ { integrity: sha512-34gw7PjDGB9JgePJEmhEqBhWvCiiWCuXsL9hYphDF7crW7UgI05gyBAi6MF58uGcMOiOqSJ2ybEeCvHcq0BCmQ== }
cpu: [arm64]
os: [linux]
- "@unrs/resolver-binding-linux-arm64-musl@1.7.2":
+ "@unrs/resolver-binding-linux-arm64-musl@1.11.1":
resolution:
- { integrity: sha512-c8Cg4/h+kQ63pL43wBNaVMmOjXI/X62wQmru51qjfTvI7kmCy5uHTJvK/9LrF0G8Jdx8r34d019P1DVJmhXQpA== }
+ { integrity: sha512-RyMIx6Uf53hhOtJDIamSbTskA99sPHS96wxVE/bJtePJJtpdKGXO1wY90oRdXuYOGOTuqjT8ACccMc4K6QmT3w== }
cpu: [arm64]
os: [linux]
- "@unrs/resolver-binding-linux-ppc64-gnu@1.7.2":
+ "@unrs/resolver-binding-linux-ppc64-gnu@1.11.1":
resolution:
- { integrity: sha512-A+lcwRFyrjeJmv3JJvhz5NbcCkLQL6Mk16kHTNm6/aGNc4FwPHPE4DR9DwuCvCnVHvF5IAd9U4VIs/VvVir5lg== }
+ { integrity: sha512-D8Vae74A4/a+mZH0FbOkFJL9DSK2R6TFPC9M+jCWYia/q2einCubX10pecpDiTmkJVUH+y8K3BZClycD8nCShA== }
cpu: [ppc64]
os: [linux]
- "@unrs/resolver-binding-linux-riscv64-gnu@1.7.2":
+ "@unrs/resolver-binding-linux-riscv64-gnu@1.11.1":
resolution:
- { integrity: sha512-hQQ4TJQrSQW8JlPm7tRpXN8OCNP9ez7PajJNjRD1ZTHQAy685OYqPrKjfaMw/8LiHCt8AZ74rfUVHP9vn0N69Q== }
+ { integrity: sha512-frxL4OrzOWVVsOc96+V3aqTIQl1O2TjgExV4EKgRY09AJ9leZpEg8Ak9phadbuX0BA4k8U5qtvMSQQGGmaJqcQ== }
cpu: [riscv64]
os: [linux]
- "@unrs/resolver-binding-linux-riscv64-musl@1.7.2":
+ "@unrs/resolver-binding-linux-riscv64-musl@1.11.1":
resolution:
- { integrity: sha512-NoAGbiqrxtY8kVooZ24i70CjLDlUFI7nDj3I9y54U94p+3kPxwd2L692YsdLa+cqQ0VoqMWoehDFp21PKRUoIQ== }
+ { integrity: sha512-mJ5vuDaIZ+l/acv01sHoXfpnyrNKOk/3aDoEdLO/Xtn9HuZlDD6jKxHlkN8ZhWyLJsRBxfv9GYM2utQ1SChKew== }
cpu: [riscv64]
os: [linux]
- "@unrs/resolver-binding-linux-s390x-gnu@1.7.2":
+ "@unrs/resolver-binding-linux-s390x-gnu@1.11.1":
resolution:
- { integrity: sha512-KaZByo8xuQZbUhhreBTW+yUnOIHUsv04P8lKjQ5otiGoSJ17ISGYArc+4vKdLEpGaLbemGzr4ZeUbYQQsLWFjA== }
+ { integrity: sha512-kELo8ebBVtb9sA7rMe1Cph4QHreByhaZ2QEADd9NzIQsYNQpt9UkM9iqr2lhGr5afh885d/cB5QeTXSbZHTYPg== }
cpu: [s390x]
os: [linux]
- "@unrs/resolver-binding-linux-x64-gnu@1.7.2":
+ "@unrs/resolver-binding-linux-x64-gnu@1.11.1":
resolution:
- { integrity: sha512-dEidzJDubxxhUCBJ/SHSMJD/9q7JkyfBMT77Px1npl4xpg9t0POLvnWywSk66BgZS/b2Hy9Y1yFaoMTFJUe9yg== }
+ { integrity: sha512-C3ZAHugKgovV5YvAMsxhq0gtXuwESUKc5MhEtjBpLoHPLYM+iuwSj3lflFwK3DPm68660rZ7G8BMcwSro7hD5w== }
cpu: [x64]
os: [linux]
- "@unrs/resolver-binding-linux-x64-musl@1.7.2":
+ "@unrs/resolver-binding-linux-x64-musl@1.11.1":
resolution:
- { integrity: sha512-RvP+Ux3wDjmnZDT4XWFfNBRVG0fMsc+yVzNFUqOflnDfZ9OYujv6nkh+GOr+watwrW4wdp6ASfG/e7bkDradsw== }
+ { integrity: sha512-rV0YSoyhK2nZ4vEswT/QwqzqQXw5I6CjoaYMOX0TqBlWhojUf8P94mvI7nuJTeaCkkds3QE4+zS8Ko+GdXuZtA== }
cpu: [x64]
os: [linux]
- "@unrs/resolver-binding-wasm32-wasi@1.7.2":
+ "@unrs/resolver-binding-wasm32-wasi@1.11.1":
resolution:
- { integrity: sha512-y797JBmO9IsvXVRCKDXOxjyAE4+CcZpla2GSoBQ33TVb3ILXuFnMrbR/QQZoauBYeOFuu4w3ifWLw52sdHGz6g== }
+ { integrity: sha512-5u4RkfxJm+Ng7IWgkzi3qrFOvLvQYnPBmjmZQ8+szTK/b31fQCnleNl1GgEt7nIsZRIf5PLhPwT0WM+q45x/UQ== }
engines: { node: ">=14.0.0" }
cpu: [wasm32]
- "@unrs/resolver-binding-win32-arm64-msvc@1.7.2":
+ "@unrs/resolver-binding-win32-arm64-msvc@1.11.1":
resolution:
- { integrity: sha512-gtYTh4/VREVSLA+gHrfbWxaMO/00y+34htY7XpioBTy56YN2eBjkPrY1ML1Zys89X3RJDKVaogzwxlM1qU7egg== }
+ { integrity: sha512-nRcz5Il4ln0kMhfL8S3hLkxI85BXs3o8EYoattsJNdsX4YUU89iOkVn7g0VHSRxFuVMdM4Q1jEpIId1Ihim/Uw== }
cpu: [arm64]
os: [win32]
- "@unrs/resolver-binding-win32-ia32-msvc@1.7.2":
+ "@unrs/resolver-binding-win32-ia32-msvc@1.11.1":
resolution:
- { integrity: sha512-Ywv20XHvHTDRQs12jd3MY8X5C8KLjDbg/jyaal/QLKx3fAShhJyD4blEANInsjxW3P7isHx1Blt56iUDDJO3jg== }
+ { integrity: sha512-DCEI6t5i1NmAZp6pFonpD5m7i6aFrpofcp4LA2i8IIq60Jyo28hamKBxNrZcyOwVOZkgsRp9O2sXWBWP8MnvIQ== }
cpu: [ia32]
os: [win32]
- "@unrs/resolver-binding-win32-x64-msvc@1.7.2":
+ "@unrs/resolver-binding-win32-x64-msvc@1.11.1":
resolution:
- { integrity: sha512-friS8NEQfHaDbkThxopGk+LuE5v3iY0StruifjQEt7SLbA46OnfgMO15sOTkbpJkol6RB+1l1TYPXh0sCddpvA== }
+ { integrity: sha512-lrW200hZdbfRtztbygyaq/6jP6AKE8qQN2KvPcJ+x7wiD038YtnYtZ82IMNJ69GJibV7bwL3y9FgK+5w/pYt6g== }
cpu: [x64]
os: [win32]
- "@urql/core@5.1.1":
+ "@urql/core@5.2.0":
resolution:
- { integrity: sha512-aGh024z5v2oINGD/In6rAtVKTm4VmQ2TxKQBAtk2ZSME5dunZFcjltw4p5ENQg+5CBhZ3FHMzl0Oa+rwqiWqlg== }
+ { integrity: sha512-/n0ieD0mvvDnVAXEQgX/7qJiVcvYvNkOHeBvkwtylfjydar123caCXcl58PXFY11oU1oquJocVXHxLAbtv4x1A== }
- "@vitejs/plugin-react@4.4.1":
+ "@vitejs/plugin-react@4.7.0":
resolution:
- { integrity: sha512-IpEm5ZmeXAP/osiBXVVP5KjFMzbWOonMs0NaQQl+xYnUAcq4oHUBsF2+p4MgKWG4YMmFYJU8A6sxRPuowllm6w== }
+ { integrity: sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA== }
engines: { node: ^14.18.0 || >=16.0.0 }
peerDependencies:
- vite: ^4.2.0 || ^5.0.0 || ^6.0.0
+ vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
- "@vitest/expect@3.1.3":
+ "@vitest/expect@3.2.4":
resolution:
- { integrity: sha512-7FTQQuuLKmN1Ig/h+h/GO+44Q1IlglPlR2es4ab7Yvfx+Uk5xsv+Ykk+MEt/M2Yn/xGmzaLKxGw2lgy2bwuYqg== }
+ { integrity: sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig== }
- "@vitest/mocker@3.1.3":
+ "@vitest/mocker@3.2.4":
resolution:
- { integrity: sha512-PJbLjonJK82uCWHjzgBJZuR7zmAOrSvKk1QBxrennDIgtH4uK0TB1PvYmc0XBCigxxtiAVPfWtAdy4lpz8SQGQ== }
+ { integrity: sha512-46ryTE9RZO/rfDd7pEqFl7etuyzekzEhUbTW3BvmeO/BcCMEgq59BKhek3dXDWgAj4oMK6OZi+vRr1wPW6qjEQ== }
peerDependencies:
msw: ^2.4.9
- vite: ^5.0.0 || ^6.0.0
+ vite: ^5.0.0 || ^6.0.0 || ^7.0.0-0
peerDependenciesMeta:
msw:
optional: true
vite:
optional: true
- "@vitest/pretty-format@3.1.3":
+ "@vitest/pretty-format@3.2.4":
resolution:
- { integrity: sha512-i6FDiBeJUGLDKADw2Gb01UtUNb12yyXAqC/mmRWuYl+m/U9GS7s8us5ONmGkGpUUo7/iAYzI2ePVfOZTYvUifA== }
+ { integrity: sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA== }
- "@vitest/runner@3.1.3":
+ "@vitest/runner@3.2.4":
resolution:
- { integrity: sha512-Tae+ogtlNfFei5DggOsSUvkIaSuVywujMj6HzR97AHK6XK8i3BuVyIifWAm/sE3a15lF5RH9yQIrbXYuo0IFyA== }
+ { integrity: sha512-oukfKT9Mk41LreEW09vt45f8wx7DordoWUZMYdY/cyAk7w5TWkTRCNZYF7sX7n2wB7jyGAl74OxgwhPgKaqDMQ== }
- "@vitest/snapshot@3.1.3":
+ "@vitest/snapshot@3.2.4":
resolution:
- { integrity: sha512-XVa5OPNTYUsyqG9skuUkFzAeFnEzDp8hQu7kZ0N25B1+6KjGm4hWLtURyBbsIAOekfWQ7Wuz/N/XXzgYO3deWQ== }
+ { integrity: sha512-dEYtS7qQP2CjU27QBC5oUOxLE/v5eLkGqPE0ZKEIDGMs4vKWe7IjgLOeauHsR0D5YuuycGRO5oSRXnwnmA78fQ== }
- "@vitest/spy@3.1.3":
+ "@vitest/spy@3.2.4":
resolution:
- { integrity: sha512-x6w+ctOEmEXdWaa6TO4ilb7l9DxPR5bwEb6hILKuxfU1NqWT2mpJD9NJN7t3OTfxmVlOMrvtoFJGdgyzZ605lQ== }
+ { integrity: sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw== }
- "@vitest/utils@3.1.3":
+ "@vitest/utils@3.2.4":
resolution:
- { integrity: sha512-2Ltrpht4OmHO9+c/nmHtF09HWiyWdworqnHIwjfvDyWjuwKbdkcS9AnhsDn+8E2RM4x++foD1/tNuLPVvWG1Rg== }
+ { integrity: sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA== }
- "@vladfrangu/async_event_emitter@2.4.6":
+ "@vladfrangu/async_event_emitter@2.4.7":
resolution:
- { integrity: sha512-RaI5qZo6D2CVS6sTHFKg1v5Ohq/+Bo2LZ5gzUEwZ/WkHhwtGTCB/sVLw8ijOkAUxasZ+WshN/Rzj4ywsABJ5ZA== }
+ { integrity: sha512-Xfe6rpCTxSxfbswi/W/Pz7zp1WWSNn4A0eW4mLkQUewCrXXtMj31lCg+iQyTkh/CkusZSq9eDflu7tjEDXUY6g== }
engines: { node: ">=v14.0.0", npm: ">=7.0.0" }
- "@volar/language-core@2.4.13":
+ "@volar/language-core@2.4.23":
resolution:
- { integrity: sha512-MnQJ7eKchJx5Oz+YdbqyFUk8BN6jasdJv31n/7r6/WwlOOv7qzvot6B66887l2ST3bUW4Mewml54euzpJWA6bg== }
+ { integrity: sha512-hEEd5ET/oSmBC6pi1j6NaNYRWoAiDhINbT8rmwtINugR39loROSlufGdYMF9TaKGfz+ViGs1Idi3mAhnuPcoGQ== }
- "@volar/source-map@2.4.13":
+ "@volar/source-map@2.4.23":
resolution:
- { integrity: sha512-l/EBcc2FkvHgz2ZxV+OZK3kMSroMr7nN3sZLF2/f6kWW66q8+tEL4giiYyFjt0BcubqJhBt6soYIrAPhg/Yr+Q== }
+ { integrity: sha512-Z1Uc8IB57Lm6k7q6KIDu/p+JWtf3xsXJqAX/5r18hYOTpJyBn0KXUR8oTJ4WFYOcDzWC9n3IflGgHowx6U6z9Q== }
- "@volar/typescript@2.4.13":
+ "@volar/typescript@2.4.23":
resolution:
- { integrity: sha512-Ukz4xv84swJPupZeoFsQoeJEOm7U9pqsEnaGGgt5ni3SCTa22m8oJP5Nng3Wed7Uw5RBELdLxxORX8YhJPyOgQ== }
+ { integrity: sha512-lAB5zJghWxVPqfcStmAP1ZqQacMpe90UrP5RJ3arDyrhy4aCUQqmxPPLB2PWDKugvylmO41ljK7vZ+t6INMTag== }
- "@vue/compiler-core@3.5.13":
+ "@vue/compiler-core@3.5.24":
resolution:
- { integrity: sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q== }
+ { integrity: sha512-eDl5H57AOpNakGNAkFDH+y7kTqrQpJkZFXhWZQGyx/5Wh7B1uQYvcWkvZi11BDhscPgj8N7XV3oRwiPnx1Vrig== }
- "@vue/compiler-dom@3.5.13":
+ "@vue/compiler-dom@3.5.24":
resolution:
- { integrity: sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA== }
+ { integrity: sha512-1QHGAvs53gXkWdd3ZMGYuvQFXHW4ksKWPG8HP8/2BscrbZ0brw183q2oNWjMrSWImYLHxHrx1ItBQr50I/q2zw== }
"@vue/compiler-vue2@2.7.16":
resolution:
@@ -4898,9 +5061,9 @@ packages:
typescript:
optional: true
- "@vue/shared@3.5.13":
+ "@vue/shared@3.5.24":
resolution:
- { integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ== }
+ { integrity: sha512-9cwHL2EsJBdi8NY22pngYYWzkTDhld6fAD6jlaeloNGciNSJL6bLpbxVgXl96X00Jtc6YWQv96YA/0sxex/k1A== }
"@wagmi/connectors@5.8.1":
resolution:
@@ -4943,6 +5106,7 @@ packages:
"@walletconnect/ethereum-provider@2.20.0":
resolution:
{ integrity: sha512-TSu1nr+AzCjM5u7xdnWTGX8ryKuHHb1Za56BD6UU0UPS7ZC2fZ99TVa5Q3Sng9JyksY5p99Iwg7fOtlozc3QYQ== }
+ deprecated: "Reliability and performance improvements. See: https://github.com/WalletConnect/walletconnect-monorepo/releases"
"@walletconnect/events@1.0.1":
resolution:
@@ -5000,10 +5164,12 @@ packages:
"@walletconnect/sign-client@2.19.2":
resolution:
{ integrity: sha512-a/K5PRIFPCjfHq5xx3WYKHAAF8Ft2I1LtxloyibqiQOoUtNLfKgFB1r8sdMvXM7/PADNPe4iAw4uSE6PrARrfg== }
+ deprecated: "Reliability and performance improvements. See: https://github.com/WalletConnect/walletconnect-monorepo/releases"
"@walletconnect/sign-client@2.20.0":
resolution:
{ integrity: sha512-5Ao9RVGsgpMTLjVByFfjMbX7RwJM0HvKV7P9ONJwPPo4OiviNyneeOufr2KKZhuwF+QUu5mTE0Lj/euGWSNaOQ== }
+ deprecated: "Reliability and performance improvements. See: https://github.com/WalletConnect/walletconnect-monorepo/releases"
"@walletconnect/time@1.0.2":
resolution:
@@ -5020,10 +5186,12 @@ packages:
"@walletconnect/universal-provider@2.19.2":
resolution:
{ integrity: sha512-LkKg+EjcSUpPUhhvRANgkjPL38wJPIWumAYD8OK/g4OFuJ4W3lS/XTCKthABQfFqmiNbNbVllmywiyE44KdpQg== }
+ deprecated: "Reliability and performance improvements. See: https://github.com/WalletConnect/walletconnect-monorepo/releases"
"@walletconnect/universal-provider@2.20.0":
resolution:
{ integrity: sha512-kzMWXao+RyWfv46nS/owJ99/QhObGkYHhpMxdzl4bae98JXdQ0xhmov3Rvy3GRt5csgJXldoM2VO44B/Fsuj4Q== }
+ deprecated: "Reliability and performance improvements. See: https://github.com/WalletConnect/walletconnect-monorepo/releases"
"@walletconnect/utils@2.19.2":
resolution:
@@ -5137,22 +5305,48 @@ packages:
zod:
optional: true
+ abitype@1.1.0:
+ resolution:
+ { integrity: sha512-6Vh4HcRxNMLA0puzPjM5GBgT4aAcFGKZzSgAXvuZ27shJP6NEpielTuqbBmZILR5/xd0PizkBGy5hReKz9jl5A== }
+ peerDependencies:
+ typescript: ">=5.0.4"
+ zod: ^3.22.0 || ^4.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ zod:
+ optional: true
+
+ abitype@1.1.2:
+ resolution:
+ { integrity: sha512-mqpSSIuddHs7t3IgsAweIZgYIQT4RhpIzrdcSN4fvHp9d77O0mglAAQ7fnI3r/hHIvgMwdpJAKr2T9K9leccYw== }
+ peerDependencies:
+ typescript: ">=5.0.4"
+ zod: ^3.22.0 || ^4.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ zod:
+ optional: true
+
abort-controller@3.0.0:
resolution:
{ integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg== }
engines: { node: ">=6.5" }
- accepts@2.0.0:
- resolution:
- { integrity: sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng== }
- engines: { node: ">= 0.6" }
-
acorn-import-attributes@1.9.5:
resolution:
{ integrity: sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ== }
peerDependencies:
acorn: ^8
+ acorn-import-phases@1.0.4:
+ resolution:
+ { integrity: sha512-wKmbr/DDiIXzEOiWrTTUcDm24kQ2vGfZQvM2fwg2vXqR5uW6aapr7ObPtj1th32b9u90/Pf4AItvdTh42fBmVQ== }
+ engines: { node: ">=10.13.0" }
+ peerDependencies:
+ acorn: ^8.14.0
+
acorn-jsx@5.3.2:
resolution:
{ integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== }
@@ -5164,9 +5358,9 @@ packages:
{ integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g== }
engines: { node: ">=0.4.0" }
- acorn@8.14.1:
+ acorn@8.15.0:
resolution:
- { integrity: sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg== }
+ { integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg== }
engines: { node: ">=0.4.0" }
hasBin: true
@@ -5179,9 +5373,9 @@ packages:
{ integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== }
engines: { node: ">= 6.0.0" }
- agent-base@7.1.3:
+ agent-base@7.1.4:
resolution:
- { integrity: sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw== }
+ { integrity: sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ== }
engines: { node: ">= 14" }
ajv-draft-04@1.0.0:
@@ -5246,9 +5440,9 @@ packages:
{ integrity: sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== }
engines: { node: ">=4" }
- ansi-escapes@7.0.0:
+ ansi-escapes@7.2.0:
resolution:
- { integrity: sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw== }
+ { integrity: sha512-g6LhBsl+GBPRWGWsBtutpzBYuIIdBkLEvad5C/va/74Db018+5TZiyA26cZJAr3Rft5lprVqOIPxf5Vid6tqAw== }
engines: { node: ">=18" }
ansi-regex@2.1.1:
@@ -5266,9 +5460,9 @@ packages:
{ integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== }
engines: { node: ">=8" }
- ansi-regex@6.1.0:
+ ansi-regex@6.2.2:
resolution:
- { integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA== }
+ { integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg== }
engines: { node: ">=12" }
ansi-styles@3.2.1:
@@ -5286,9 +5480,9 @@ packages:
{ integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== }
engines: { node: ">=10" }
- ansi-styles@6.2.1:
+ ansi-styles@6.2.3:
resolution:
- { integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug== }
+ { integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg== }
engines: { node: ">=12" }
anymatch@3.1.3:
@@ -5308,9 +5502,9 @@ packages:
resolution:
{ integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== }
- aria-hidden@1.2.4:
+ aria-hidden@1.2.6:
resolution:
- { integrity: sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A== }
+ { integrity: sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA== }
engines: { node: ">=10" }
aria-query@5.3.0:
@@ -5404,9 +5598,9 @@ packages:
{ integrity: sha512-ooviqdwwgfIfNmDwo94wlshcdzfO64XV0Cg6oDsDYBJfITDz1EngD2z7DkbvCWn+XIMsIqW27sEVF6qcpJrRcg== }
engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
- autoprefixer@10.4.21:
+ autoprefixer@10.4.22:
resolution:
- { integrity: sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ== }
+ { integrity: sha512-ARe0v/t9gO28Bznv6GgqARmVqcWOV3mfgUPn9becPHMiD3o9BwlRgaeccZnwTpZ7Zwqrm+c1sUSsMxIzQzc8Xg== }
engines: { node: ^10 || ^12 || >=14 }
hasBin: true
peerDependencies:
@@ -5421,9 +5615,9 @@ packages:
resolution:
{ integrity: sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw== }
- axios@1.9.0:
+ axios@1.13.2:
resolution:
- { integrity: sha512-re4CqKTJaURpzbLHtIi6XpDv20/CnpXOtjRY5/CU32L8gU8ek9UIivcfvSWvmKEngmVbrUtPpdDwWDWL7DNHvg== }
+ { integrity: sha512-VPk9ebNqPcy5lRGuSlKx752IlDatOjT9paPlm8A7yOuW2Fbvp4X3JznJtT4f0GzGLLiWE9W8onz51SqLYwzGaA== }
babel-plugin-styled-components@2.1.4:
resolution:
@@ -5448,6 +5642,11 @@ packages:
{ integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== }
engines: { node: ">=0.10.0" }
+ baseline-browser-mapping@2.8.29:
+ resolution:
+ { integrity: sha512-sXdt2elaVnhpDNRDz+1BDx1JQoJRuNk7oVlAlbGiFkLikHCAQiccexF/9e91zVi6RCgqspl04aP+6Cnl9zRLrA== }
+ hasBin: true
+
bech32@1.1.4:
resolution:
{ integrity: sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ== }
@@ -5460,14 +5659,9 @@ packages:
resolution:
{ integrity: sha512-y/ie+Faknx7sZA5MfGA2xKlu0GDv8RWrXGsmlteyJQ2lvoKv9GBK/fpRMc2qlSoBAgNxrixICFCBefIq8WCQpQ== }
- bigint-crypto-utils@3.3.0:
- resolution:
- { integrity: sha512-jOTSb+drvEDxEq6OuUybOAv/xxoh3cuYRUIPyu8sSHQNKM303UQ2R1DAo45o1AkcIXw6fzbaFI1+xGGdaXs2lg== }
- engines: { node: ">=14.0.0" }
-
- bignumber.js@9.3.0:
+ bignumber.js@9.3.1:
resolution:
- { integrity: sha512-EM7aMFTXbptt/wZdMlBv2t8IViwQL+h6SLHosp8Yf0dqJMTnY6iL32opnAB6kAdL0SZPuvcAzFr31o0c/R3/RA== }
+ { integrity: sha512-Ko0uX15oIUS7wJ3Rb30Fs6SkVbLmPBAKdlm7q9+ak9bbIeFf0MwuBsQV6z7+X768/cHsfg+WlysDWJcmthjsjQ== }
binary-extensions@2.3.0:
resolution:
@@ -5487,31 +5681,26 @@ packages:
resolution:
{ integrity: sha512-v2YAxEmKaBLahNwE1mjp4WON6huMNeuDvagFZW+ASCuA/ku0bXR9hSMw0XpiqMoA3+rmnyck/tPRSFQkoC9Cuw== }
- body-parser@2.2.0:
- resolution:
- { integrity: sha512-02qvAaxv8tp7fBa/mw1ga98OGm+eCbqzJOKoRt70sLmfEEi+jyBYVTDGfCL/k06/4EMk/z01gCe7HoCH/f2LTg== }
- engines: { node: ">=18" }
-
bottleneck@2.19.5:
resolution:
{ integrity: sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw== }
- bowser@2.11.0:
+ bowser@2.12.1:
resolution:
- { integrity: sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA== }
+ { integrity: sha512-z4rE2Gxh7tvshQ4hluIT7XcFrgLIQaw9X3A+kTTRdovCz5PMukm/0QC/BKSYPj3omF5Qfypn9O/c5kgpmvYUCw== }
boxen@5.1.2:
resolution:
{ integrity: sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ== }
engines: { node: ">=10" }
- brace-expansion@1.1.11:
+ brace-expansion@1.1.12:
resolution:
- { integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== }
+ { integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg== }
- brace-expansion@2.0.1:
+ brace-expansion@2.0.2:
resolution:
- { integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== }
+ { integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ== }
braces@2.3.2:
resolution:
@@ -5531,9 +5720,9 @@ packages:
resolution:
{ integrity: sha512-oTKjJdShmDuGW94SyyaoQvAjf30dZaHnjJ8uAF+u2/vGJkJbJPJAT1gDiOJP5v1Zb6f9KEyW/1HpuaWIXtGHPg== }
- browserslist@4.24.5:
+ browserslist@4.28.0:
resolution:
- { integrity: sha512-FDToo4Wo82hIdgc1CQ+NQD0hEhmpPjrZ3hiUgwgOG6IuTdlpr8jdjyG24P6cNP1yJpTLzS5OcGgSw0xmDU1/Tw== }
+ { integrity: sha512-tbydkR/CxfMwelN0vwdP/pLkDwyAASZ+VfWm4EOwlB6SWhx1sYnWLqo8N5j0rAzPfzfRaxt0mM/4wPU/Su84RQ== }
engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 }
hasBin: true
@@ -5569,11 +5758,6 @@ packages:
peerDependencies:
esbuild: ">=0.18"
- bytes@3.1.2:
- resolution:
- { integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== }
- engines: { node: ">= 0.8" }
-
cac@6.7.14:
resolution:
{ integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ== }
@@ -5622,39 +5806,34 @@ packages:
resolution:
{ integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ== }
- caniuse-lite@1.0.30001717:
+ caniuse-lite@1.0.30001756:
resolution:
- { integrity: sha512-auPpttCq6BDEG8ZAuHJIplGw6GODhjw+/11e7IjpnYCxZcW/ONgPs0KVBJ0d1bY3e2+7PRe5RCLyP+PfwVgkYw== }
+ { integrity: sha512-4HnCNKbMLkLdhJz3TToeVWHSnfJvPaq6vu/eRP0Ahub/07n484XHhBF5AJoSGHdVrS8tKFauUQz8Bp9P7LVx7A== }
- cfonts@3.3.0:
+ cfonts@3.3.1:
resolution:
- { integrity: sha512-RlVxeEw2FXWI5Bs9LD0/Ef3bsQIc9m6lK/DINN20HIW0Y0YHUO2jjy88cot9YKZITiRTCdWzTfLmTyx47HeSLA== }
+ { integrity: sha512-ZGEmN3W9mViWEDjsuPo4nK4h39sfh6YtoneFYp9WLPI/rw8BaSSrfQC6jkrGW3JMvV3ZnExJB/AEqXc/nHYxkw== }
engines: { node: ">=10" }
hasBin: true
- chai@5.2.0:
+ chai@5.3.3:
resolution:
- { integrity: sha512-mCuXncKXk5iCLhfhwTc0izo0gtEmpz5CtG2y8GiOINBlMVS6v8TMRc5TaLWKS6692m9+dVVfzgeVxR5UxWHTYw== }
- engines: { node: ">=12" }
+ { integrity: sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw== }
+ engines: { node: ">=18" }
chalk@2.4.2:
resolution:
{ integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== }
engines: { node: ">=4" }
- chalk@3.0.0:
- resolution:
- { integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== }
- engines: { node: ">=8" }
-
chalk@4.1.2:
resolution:
{ integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== }
engines: { node: ">=10" }
- chalk@5.4.1:
+ chalk@5.6.2:
resolution:
- { integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w== }
+ { integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA== }
engines: { node: ^12.17.0 || ^14.13 || >=16.0.0 }
check-error@2.1.1:
@@ -5672,11 +5851,6 @@ packages:
{ integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA== }
engines: { node: ">= 14.16.0" }
- chownr@3.0.0:
- resolution:
- { integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g== }
- engines: { node: ">=18" }
-
chrome-trace-event@1.0.4:
resolution:
{ integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ== }
@@ -5734,9 +5908,9 @@ packages:
{ integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg== }
engines: { node: ">=6" }
- cli-spinners@3.2.0:
+ cli-spinners@3.3.0:
resolution:
- { integrity: sha512-pXftdQloMZzjCr3pCTIRniDcys6dDzgpgVhAHHk6TKBDbRuP1MkuetTF5KSv4YUutbOPa7+7ZrAJ2kVtbMqyXA== }
+ { integrity: sha512-/+40ljC3ONVnYIttjMWrlL51nItDAbBrq2upN8BPyvGU/2n5Oxw3tbNwORCaNuNqLJnxGqOfjUuhsv7l5Q4IsQ== }
engines: { node: ">=18.20" }
cli-truncate@4.0.0:
@@ -5744,6 +5918,11 @@ packages:
{ integrity: sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA== }
engines: { node: ">=18" }
+ cli-truncate@5.1.1:
+ resolution:
+ { integrity: sha512-SroPvNHxUnk+vIW/dOSfNqdy1sPEFkrTk6TUtqLCnBlo3N7TNYYkzzN7uSD6+jVjrdO4+p8nH7JzH6cIvUem6A== }
+ engines: { node: ">=20" }
+
cliui@6.0.0:
resolution:
{ integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ== }
@@ -5861,9 +6040,9 @@ packages:
resolution:
{ integrity: sha512-4hm4VPpIecmlg59CHXnRDnqGplJFrbLG4aFEl5vl6cK1u76ws3LLvX7ikFnTDl5vo39sjWD6AaDPYodJp/NNHg== }
- complex.js@2.4.2:
+ complex.js@2.4.3:
resolution:
- { integrity: sha512-qtx7HRhPGSCBtGiST4/WGHuW+zeaND/6Ld+db6PbrulIB1i2Ev/2UPiqcmpQNPSyfBKraC0EOvOKCB5dGZKt3g== }
+ { integrity: sha512-UrQVSUur14tNX6tiP4y8T4w4FeJAX3bi2cIv0pu/DTLFNxoq7z2Yh83Vfzztj6Px3X/lubqQ9IrPp7Bpn6p4MQ== }
component-emitter@1.3.1:
resolution:
@@ -5895,9 +6074,9 @@ packages:
{ integrity: sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA== }
engines: { node: ">=8" }
- connectkit@1.9.0:
+ connectkit@1.9.1:
resolution:
- { integrity: sha512-bkqg8zK35pWWG2q8xeo41J1mnBP8D2ffOd/ItB12aad9QZZU20SlEeiQM9iYfRyl0JAH1tqIDlZbXajqZBFfDw== }
+ { integrity: sha512-ac9Ki3+HdS3l5NCa6H86y7R+0PqwJ8yzsBQVtWk4/jkFo+JJioetO43A/Q0O7VtxLbfuLLfwDGZ09taePLNzfQ== }
engines: { node: ">=12.4" }
peerDependencies:
"@tanstack/react-query": ">=5.0.0"
@@ -5906,16 +6085,6 @@ packages:
viem: 2.x
wagmi: 2.x
- content-disposition@1.0.0:
- resolution:
- { integrity: sha512-Au9nRL8VNUut/XSzbQA38+M78dzP4D+eqg3gfJHMIHHYa3bg067xj1KxMUWj+VULbiZMowKngFFbKczUrNJ1mg== }
- engines: { node: ">= 0.6" }
-
- content-type@1.0.5:
- resolution:
- { integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA== }
- engines: { node: ">= 0.6" }
-
convert-source-map@2.0.0:
resolution:
{ integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== }
@@ -5929,16 +6098,6 @@ packages:
resolution:
{ integrity: sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg== }
- cookie-signature@1.2.2:
- resolution:
- { integrity: sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg== }
- engines: { node: ">=6.6.0" }
-
- cookie@0.7.2:
- resolution:
- { integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w== }
- engines: { node: ">= 0.6" }
-
cookie@1.0.2:
resolution:
{ integrity: sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA== }
@@ -5949,19 +6108,10 @@ packages:
{ integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw== }
engines: { node: ">=0.10.0" }
- core-js@3.42.0:
- resolution:
- { integrity: sha512-Sz4PP4ZA+Rq4II21qkNqOEDTDrCvcANId3xpIgB34NDkWc3UduWj2dqEtN9yZIq8Dk3HyPI33x9sqqU5C8sr0g== }
-
core-util-is@1.0.3:
resolution:
{ integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== }
- cors@2.8.5:
- resolution:
- { integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g== }
- engines: { node: ">= 0.10" }
-
cosmiconfig@8.3.6:
resolution:
{ integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA== }
@@ -6021,14 +6171,14 @@ packages:
resolution:
{ integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg== }
- cssstyle@4.3.1:
+ cssstyle@4.6.0:
resolution:
- { integrity: sha512-ZgW+Jgdd7i52AaLYCriF8Mxqft0gD/R9i9wi6RWBhs1pqdPEzPjym7rvRKi397WmQFf3SlyUsszhw+VVCbx79Q== }
+ { integrity: sha512-2z+rWdzbbSZv6/rhtvzvqeZQHrBaqgogqt85sqFNbabZOuFbCVFb8kPeEtZjiKkbrm395irpNKiYeFeLiQnFPg== }
engines: { node: ">=18" }
- csstype@3.1.3:
+ csstype@3.2.3:
resolution:
- { integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw== }
+ { integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ== }
d3-array@3.2.4:
resolution:
@@ -6121,15 +6271,6 @@ packages:
supports-color:
optional: true
- debug@3.2.7:
- resolution:
- { integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== }
- peerDependencies:
- supports-color: "*"
- peerDependenciesMeta:
- supports-color:
- optional: true
-
debug@4.3.4:
resolution:
{ integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== }
@@ -6150,9 +6291,9 @@ packages:
supports-color:
optional: true
- debug@4.4.0:
+ debug@4.4.3:
resolution:
- { integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA== }
+ { integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA== }
engines: { node: ">=6.0" }
peerDependencies:
supports-color: "*"
@@ -6165,18 +6306,18 @@ packages:
{ integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== }
engines: { node: ">=0.10.0" }
- decamelize@6.0.0:
+ decamelize@6.0.1:
resolution:
- { integrity: sha512-Fv96DCsdOgB6mdGl67MT5JaTNKRzrzill5OH5s8bjYJXVlcXyPYGyPsUkWyGV5p1TXI5esYIYMMeDJL0hEIwaA== }
+ { integrity: sha512-G7Cqgaelq68XHJNGlZ7lrNQyhZGsFqpwtGFexqUv4IQdjKoSYF7ipZ9UuTJZUSQXFj/XaoBLuEVIVqr8EJngEQ== }
engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
decimal.js-light@2.5.1:
resolution:
{ integrity: sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg== }
- decimal.js@10.5.0:
+ decimal.js@10.6.0:
resolution:
- { integrity: sha512-8vDa8Qxvr/+d94hSh5P3IJwI5t8/c0KsMp+g8bNw9cY2icONa5aPfvKeieW1WlG0WQYwwhJ7mjui2xtiePQSXw== }
+ { integrity: sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg== }
decode-uri-component@0.2.2:
resolution:
@@ -6235,11 +6376,6 @@ packages:
{ integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== }
engines: { node: ">=0.4.0" }
- depd@2.0.0:
- resolution:
- { integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== }
- engines: { node: ">= 0.8" }
-
dequal@2.0.3:
resolution:
{ integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA== }
@@ -6259,9 +6395,9 @@ packages:
resolution:
{ integrity: sha512-53rsFbGdwMwlF7qvCt0ypLM5V5/Mbl0szB7GPN8y9NCcbknYOeVVXdrXEq+90IwAfrrzt6Hd+u2E2ntakICU8w== }
- detect-libc@2.0.4:
+ detect-libc@2.1.2:
resolution:
- { integrity: sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA== }
+ { integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ== }
engines: { node: ">=8" }
detect-node-es@1.1.0:
@@ -6273,6 +6409,11 @@ packages:
{ integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== }
engines: { node: ">=0.3.1" }
+ diff@8.0.2:
+ resolution:
+ { integrity: sha512-sSuxWU5j5SR9QQji/o2qMvqRNYRDOcBTgsJ/DeCf4iSN4gW+gNMXM7wFIP+fdXZxoNiAnHUTGjCr+TSWXdRDKg== }
+ engines: { node: ">=0.3.1" }
+
dijkstrajs@1.0.3:
resolution:
{ integrity: sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA== }
@@ -6282,13 +6423,13 @@ packages:
{ integrity: sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw== }
engines: { node: ">=4" }
- discord-api-types@0.38.11:
+ discord-api-types@0.38.34:
resolution:
- { integrity: sha512-XN0qhcQpetkyb/49hcDHuoeUPsQqOkb17wbV/t48gUkoEDi4ajhsxqugGcxvcN17BBtI9FPPWEgzv6IhQmCwyw== }
+ { integrity: sha512-muq7xKGznj5MSFCzuIm/2TO7DpttuomUTemVM82fRqgnMl70YRzEyY24jlbiV6R9tzOTq6A6UnZ0bsfZeKD38Q== }
- discord.js@14.19.3:
+ discord.js@14.25.0:
resolution:
- { integrity: sha512-lncTRk0k+8Q5D3nThnODBR8fR8x2fM798o8Vsr40Krx0DjPwpZCuxxTcFMrXMQVOqM1QB9wqWgaXPg3TbmlHqA== }
+ { integrity: sha512-9rnJWTAkfauKTieYJ3oI4oncrSzpbJPWN1/XU+2H6wsHQPtqbOrXvgM0nFhSVnIbTo7nfUF7fzcYRevvRGjpzA== }
engines: { node: ">=18" }
dom-accessibility-api@0.5.16:
@@ -6317,9 +6458,9 @@ packages:
{ integrity: sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA== }
engines: { node: ">=10" }
- dotenv@16.5.0:
+ dotenv@16.6.1:
resolution:
- { integrity: sha512-m/C+AwOAr9/W1UOIZUo232ejMNnJAJtYQjUbHoNTBNTJSvqzzDh7vnrei3o3r3m9blf6ZoDkvcw0VmozNRFJxg== }
+ { integrity: sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow== }
engines: { node: ">=12" }
drizzle-orm@0.39.3:
@@ -6426,9 +6567,9 @@ packages:
resolution:
{ integrity: sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ== }
- eciesjs@0.4.14:
+ eciesjs@0.4.16:
resolution:
- { integrity: sha512-eJAgf9pdv214Hn98FlUzclRMYWF7WfoLlkS9nWMTm1qcCwn6Ad4EGD9lr9HXMBfSrZhYQujRE+p0adPRkctC6A== }
+ { integrity: sha512-dS5cbA9rA2VR4Ybuvhg6jvdmp46ubLn3E+px8cG/35aEDNclrqoCjg6mt0HYZ/M+OoESS3jSkCrqk1kWAEhWAw== }
engines: { bun: ">=1", deno: ">=2", node: ">=16" }
eciesjs@0.4.7:
@@ -6436,29 +6577,25 @@ packages:
{ integrity: sha512-4JQahOkBdDy27jjW4q3FJQigHlcwZXx28sCtBQkBamF2XUdcNXrInpgrr8h205MtVIS0CMHufyIKGVjtjxQ2ZA== }
engines: { node: ">=16.0.0" }
- ee-first@1.1.1:
- resolution:
- { integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== }
-
- effect@3.13.11:
- resolution:
- { integrity: sha512-SOUwX2E1ciNDPZDbSfx+YszGfIIg90sluKyx0BB6VwLIt8+NOA6tEAR3N2XI9MEOWfO/EpWzbARLnXI2hXcvaQ== }
-
effect@3.13.2:
resolution:
{ integrity: sha512-/w+CPqHDJ33Wq7xC4YKAchrEEPtjvxh563xH9kDTZp99seNYBoBs87vl8DJwartEjj+KLQLP8PzoDne+XmGT2A== }
- electron-to-chromium@1.5.151:
+ effect@3.18.1:
+ resolution:
+ { integrity: sha512-5aJ7yRlvvkBplMSnhPyol7WYvPenvau12asO3HJhG/126SySWV9D8bscGTbV52XxtC5bwO/VUd5ffjE6uep/1A== }
+
+ electron-to-chromium@1.5.258:
resolution:
- { integrity: sha512-Rl6uugut2l9sLojjS4H4SAr3A4IgACMLgpuEMPYCVcKydzfyPrn5absNRju38IhQOf/NwjJY8OGWjlteqYeBCA== }
+ { integrity: sha512-rHUggNV5jKQ0sSdWwlaRDkFc3/rRJIVnOSe9yR4zrR07m3ZxhP4N27Hlg8VeJGGYgFTxK5NqDmWI4DSH72vIJg== }
elliptic@6.6.1:
resolution:
{ integrity: sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g== }
- elysia-rate-limit@4.4.0:
+ elysia-rate-limit@4.4.2:
resolution:
- { integrity: sha512-pyQdFEdjgf5ELx5CAEfOZ2IWhPaYv8WIQMrXimzHzslsJ9awDHoK6rcF9K7k/yAOh4qB1UhiasNeMMBGtxAwYQ== }
+ { integrity: sha512-zrtqk3BDsCZ6VhJDJMmpkGsSqs6ZFaYNU+wTHqqEprUxVa3wA5/QV9N/y1V0f34n9gz3Gpd8vlVe2CbKOWHCQA== }
peerDependencies:
elysia: ">= 1.0.0"
@@ -6475,9 +6612,9 @@ packages:
typescript:
optional: true
- emoji-regex@10.4.0:
+ emoji-regex@10.6.0:
resolution:
- { integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw== }
+ { integrity: sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A== }
emoji-regex@8.0.0:
resolution:
@@ -6491,14 +6628,9 @@ packages:
resolution:
{ integrity: sha512-ucAnuBEhUK4boH2HjVYG5Q2mQyPorvv0u/ocS+zhdw0S8AlHYY+GOFhP1Gio5z4icpP2ivFSvhtFjQi8+T9ppw== }
- encodeurl@2.0.0:
+ end-of-stream@1.4.5:
resolution:
- { integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg== }
- engines: { node: ">= 0.8" }
-
- end-of-stream@1.4.4:
- resolution:
- { integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== }
+ { integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg== }
engine.io-client@6.6.3:
resolution:
@@ -6509,9 +6641,9 @@ packages:
{ integrity: sha512-HqD3yTBfnBxIrbnM1DoD6Pcq8NECnh8d4As1Qgh0z5Gg3jRRIqijury0CL3ghu/edArpUYiYqQiDUQBIs4np3Q== }
engines: { node: ">=10.0.0" }
- enhanced-resolve@5.18.1:
+ enhanced-resolve@5.18.3:
resolution:
- { integrity: sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg== }
+ { integrity: sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww== }
engines: { node: ">=10.13.0" }
entities@4.5.0:
@@ -6519,9 +6651,9 @@ packages:
{ integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== }
engines: { node: ">=0.12" }
- entities@6.0.0:
+ entities@6.0.1:
resolution:
- { integrity: sha512-aKstq2TDOndCn4diEyp9Uq/Flu2i1GlLkc6XIDQSDMuaFE3OPW5OphLCyQ5SpSJZTb4reN+kTcYru5yIfXoRPw== }
+ { integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g== }
engines: { node: ">=0.12" }
env-paths@2.2.1:
@@ -6534,9 +6666,9 @@ packages:
{ integrity: sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q== }
engines: { node: ">=18" }
- error-ex@1.3.2:
+ error-ex@1.3.4:
resolution:
- { integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== }
+ { integrity: sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ== }
es-define-property@1.0.1:
resolution:
@@ -6566,9 +6698,9 @@ packages:
resolution:
{ integrity: sha512-X13Q/ZSc+vsO1q600bvNK4bxgXMkHcf//RxCmYDaRY5DAcT+eoXjY5hoAPGMdRnWQjvyLEcyauG3b6hz76LNqg== }
- es-toolkit@1.37.2:
+ es-toolkit@1.42.0:
resolution:
- { integrity: sha512-ADDfk+pPFF0ofMpRAIc6on01p8heiuwuuJsYLzTP4UOjxVK9QsE2+0D1Q4J/zX2XBo6ac+27H5++YBIwmGAX/g== }
+ { integrity: sha512-SLHIyY7VfDJBM8clz4+T2oquwTQxEzu263AyhVK4jREOAwJ+8eebaa4wM3nlvnAqhDrMm2EsA6hWHaQsMPQ1nA== }
esbuild@0.21.5:
resolution:
@@ -6576,9 +6708,9 @@ packages:
engines: { node: ">=12" }
hasBin: true
- esbuild@0.25.4:
+ esbuild@0.25.12:
resolution:
- { integrity: sha512-8pgjLUcUjcgDg+2Q4NYXnPbo/vncAY4UmyaCm0jZevERqCHZIaWwdJHkf8XQtu4AxSKCdvrUbT0XUr1IdZzI8Q== }
+ { integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg== }
engines: { node: ">=18" }
hasBin: true
@@ -6592,10 +6724,6 @@ packages:
{ integrity: sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q== }
engines: { node: ">=8" }
- escape-html@1.0.3:
- resolution:
- { integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== }
-
escape-latex@1.2.0:
resolution:
{ integrity: sha512-nV5aVWW1K0wEiUIEdZ4erkGGH8mDxGyxSeqPzRNtWP7ataw+/olFObw7hujFWlVjNsaDFw5VZ5NzVSIqRgfTiw== }
@@ -6615,32 +6743,45 @@ packages:
{ integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== }
engines: { node: ">=10" }
- eslint-config-prettier@10.1.5:
+ eslint-config-prettier@10.1.8:
resolution:
- { integrity: sha512-zc1UmCpNltmVY34vuLRV61r1K27sWuX39E+uyUnY8xS2Bex88VV9cugG+UZbRSRGtGyFboj+D8JODyme1plMpw== }
+ { integrity: sha512-82GZUjRS0p/jganf6q1rEO25VSoHH0hKPCTrgillPjdI/3bgBhAE1QzHrHTizjpRvy6pGAvKjDJtk2pF9NDq8w== }
hasBin: true
peerDependencies:
eslint: ">=7.0.0"
+ eslint-import-context@0.1.9:
+ resolution:
+ { integrity: sha512-K9Hb+yRaGAGUbwjhFNHvSmmkZs9+zbuoe3kFQ4V1wYjrepUFYM2dZAfNtjbbj3qsPfUfsA68Bx/ICWQMi+C8Eg== }
+ engines: { node: ^12.20.0 || ^14.18.0 || >=16.0.0 }
+ peerDependencies:
+ unrs-resolver: ^1.0.0
+ peerDependenciesMeta:
+ unrs-resolver:
+ optional: true
+
eslint-import-resolver-next@0.4.3:
resolution:
{ integrity: sha512-9PV5hdtDQyiZuwtWRenbknKSBgYxYC5m8AQW7FbYWkmTmXJn9QkHHNOc9WgFzroyig7Qod5OD+s23WGFA5g8FQ== }
engines: { node: ">=14" }
- eslint-import-resolver-node@0.3.9:
- resolution:
- { integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g== }
-
- eslint-plugin-import-x@4.11.1:
+ eslint-plugin-import-x@4.16.1:
resolution:
- { integrity: sha512-CiqREASJRnhwCB0NujkTdo4jU+cJAnhQrd4aCnWC1o+rYWIWakVbyuzVbnCriUUSLAnn5CoJ2ob36TEgNzejBQ== }
+ { integrity: sha512-vPZZsiOKaBAIATpFE2uMI4w5IRwdv/FpQ+qZZMR4E+PeOcM4OeoEbqxRMnywdxP19TyB/3h6QBB0EWon7letSQ== }
engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
peerDependencies:
+ "@typescript-eslint/utils": ^8.0.0
eslint: ^8.57.0 || ^9.0.0
+ eslint-import-resolver-node: "*"
+ peerDependenciesMeta:
+ "@typescript-eslint/utils":
+ optional: true
+ eslint-import-resolver-node:
+ optional: true
- eslint-plugin-prettier@5.4.0:
+ eslint-plugin-prettier@5.5.4:
resolution:
- { integrity: sha512-BvQOvUhkVQM1i63iMETK9Hjud9QhqBnbtT1Zc642p9ynzBuCe5pybkOnvqZIBypXmMlsGcnU4HZ8sCTPfpAexA== }
+ { integrity: sha512-swNtI95SToIz05YINMA6Ox5R057IMAmWZ26GqPxusAp1TZzj+IdY9tXNWWD3vkF/wEqydCONcwjTFpxybBqZsg== }
engines: { node: ^14.18.0 || >=16.0.0 }
peerDependencies:
"@types/eslint": ">=8.0.0"
@@ -6660,9 +6801,9 @@ packages:
peerDependencies:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0
- eslint-plugin-react-refresh@0.4.20:
+ eslint-plugin-react-refresh@0.4.24:
resolution:
- { integrity: sha512-XpbHQ2q5gUF8BGOX4dHe+71qoirYMhApEPZ7sfhF/dNnOF1UXnCMGZf79SFTBO7Bz5YEIT4TMieSlJBWhP9WBA== }
+ { integrity: sha512-nLHIW7TEq3aLrEYWpVaJ1dRgFR+wLDPN8e8FpYAql/bMV2oBEfC37K0gLEGgv9fy66juNShSMV8OkTqzltcG/w== }
peerDependencies:
eslint: ">=8.40"
@@ -6671,9 +6812,9 @@ packages:
{ integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== }
engines: { node: ">=8.0.0" }
- eslint-scope@8.3.0:
+ eslint-scope@8.4.0:
resolution:
- { integrity: sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ== }
+ { integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg== }
engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
eslint-visitor-keys@3.4.3:
@@ -6681,14 +6822,14 @@ packages:
{ integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== }
engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
- eslint-visitor-keys@4.2.0:
+ eslint-visitor-keys@4.2.1:
resolution:
- { integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw== }
+ { integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ== }
engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
- eslint@9.26.0:
+ eslint@9.39.1:
resolution:
- { integrity: sha512-Hx0MOjPh6uK9oq9nVsATZKE/Wlbai7KFjfCuw9UHaguDW3x+HF0O5nIi3ud39TWgrTjTO5nHxmL3R1eANinWHQ== }
+ { integrity: sha512-BhHmn2yNOFA9H9JmmIVKJmd288g9hrVRDkdoIgRCRuSySRUHH7r/DI6aAXW9T1WwUuY3DFgrcaqB+deURBLR5g== }
engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
hasBin: true
peerDependencies:
@@ -6697,9 +6838,9 @@ packages:
jiti:
optional: true
- espree@10.3.0:
+ espree@10.4.0:
resolution:
- { integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg== }
+ { integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ== }
engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
esquery@1.6.0:
@@ -6735,11 +6876,6 @@ packages:
{ integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== }
engines: { node: ">=0.10.0" }
- etag@1.8.1:
- resolution:
- { integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== }
- engines: { node: ">= 0.6" }
-
eth-block-tracker@7.1.0:
resolution:
{ integrity: sha512-8YdplnuE1IK4xfqpf4iU7oBxnOYAc35934o083G8ao+8WM8QQtt/mVlAY6yIAdY1eMeLqg4Z//PZjJGmWGPMRg== }
@@ -6799,17 +6935,7 @@ packages:
{ integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== }
engines: { node: ">=0.8.x" }
- eventsource-parser@3.0.1:
- resolution:
- { integrity: sha512-VARTJ9CYeuQYb0pZEPbzi740OWFgpHe7AYJ2WFZVnUDUQp5Dk2yJUgF36YsZ81cOyxT0QxmXD2EQpapAouzWVA== }
- engines: { node: ">=18.0.0" }
-
- eventsource@3.0.7:
- resolution:
- { integrity: sha512-CRT1WTyuQoD771GW56XEZFQ/ZoSfWid1alKGDYMmkt2yl8UXrVR4pspqWNEcqKvVIzg6PAltWjxcSSPrboA4iA== }
- engines: { node: ">=18.0.0" }
-
- execa@8.0.1:
+ execa@8.0.1:
resolution:
{ integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg== }
engines: { node: ">=16.17" }
@@ -6819,26 +6945,14 @@ packages:
{ integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA== }
engines: { node: ">=0.10.0" }
- expect-type@1.2.1:
+ expect-type@1.2.2:
resolution:
- { integrity: sha512-/kP8CAwxzLVEeFrMm4kMmy4CCDlpipyA7MYLVrdJIkV0fYF0UaigQHRsxHiuY/GEea+bh4KSv3TIlgr+2UL6bw== }
+ { integrity: sha512-JhFGDVJ7tmDJItKhYgJCGLOWjuK9vPxiXoUFLwLDc99NlmklilbiQJwoctZtt13+xMw91MCk/REan6MWHqDjyA== }
engines: { node: ">=12.0.0" }
- express-rate-limit@7.5.0:
- resolution:
- { integrity: sha512-eB5zbQh5h+VenMPM3fh+nw1YExi5nMr6HUCR62ELSP11huvxm/Uir1H1QEyTkk5QX6A58pX6NmaTMceKZ0Eodg== }
- engines: { node: ">= 16" }
- peerDependencies:
- express: ^4.11 || 5 || ^5.0.0-beta.1
-
- express@5.1.0:
- resolution:
- { integrity: sha512-DT9ck5YIRU+8GYzzU5kT3eHGA5iL+1Zd0EutOmTE9Dtk+Tvuzd23VBU+ec7HPNSTxXYO55gPV/hq4pSBJDjFpA== }
- engines: { node: ">= 18" }
-
- exsolve@1.0.5:
+ exsolve@1.0.8:
resolution:
- { integrity: sha512-pz5dvkYYKQ1AHVrgOzBKWeP4u4FRb3a6DNK2ucr0OoNwYIU4QWsJ+NM36LLzORT+z845MzKHHhpXiUF5nvQoJg== }
+ { integrity: sha512-LmDxfWXwcTArk8fUEnOfSZpHOJ6zOMUJKOtFLFqJLoKJetuQG874Uc7/Kki7zFLzYybmZhp1M7+98pfMqeX8yA== }
extend-shallow@2.0.1:
resolution:
@@ -6864,10 +6978,9 @@ packages:
{ integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== }
engines: { node: ">=0.10.0" }
- family@0.1.1:
+ family@0.1.4:
resolution:
- { integrity: sha512-X9gxkV4fm7U6ftSWcrHmNLfIhwwsvyn2uKEtLVgAGXbm+b+IAxXS1YdBC0HqQfooCZSUnw0vtVQg+eXN+kJAlw== }
- engines: { node: ">=12.4" }
+ { integrity: sha512-qRlQA7v0O36EorMeTJ3MzlQ5vjFUDF1zYT3qU0hHREls+lN6+YJZc0Ifv1JWWk/8jSUHZcroYrWKjBwucU6+HQ== }
peerDependencies:
react: 17.x || 18.x || 19.x
react-dom: 17.x || 18.x || 19.x
@@ -6908,9 +7021,9 @@ packages:
resolution:
{ integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw== }
- fast-equals@5.2.2:
+ fast-equals@5.3.3:
resolution:
- { integrity: sha512-V7/RktU11J3I36Nwq2JnZEM7tNm17eBJz+u25qdxBZeCKiX6BkVSZQjwWIr+IobgnZy+ag73tTZgZi7tr0LrBw== }
+ { integrity: sha512-/boTcHZeIAQ2r/tL11voclBHDeP9WPxLt+tyAbVSyyXuUFyh0Tne7gJZTqGbxnvj79TjLdCXLOY7UIPhyG5MTw== }
engines: { node: ">=6.0.0" }
fast-glob@2.2.7:
@@ -6940,22 +7053,28 @@ packages:
resolution:
{ integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA== }
- fast-uri@3.0.6:
+ fast-uri@3.1.0:
+ resolution:
+ { integrity: sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA== }
+
+ fast-xml-parser@4.5.3:
resolution:
- { integrity: sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw== }
+ { integrity: sha512-RKihhV+SHsIUGXObeVy9AXiBbFwkVk7Syp8XgwN5U3JV416+Gwp/GO9i0JYKmikykgz/UHRrrV4ROuZEo/T0ig== }
+ hasBin: true
- fast-xml-parser@4.4.1:
+ fast-xml-parser@5.2.5:
resolution:
- { integrity: sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw== }
+ { integrity: sha512-pfX9uG9Ki0yekDHx2SiuRIyFdyAr1kMIMitPvb0YBo8SUfKvia7w7FIyd/l6av85pFYRhZscS75MwMnbvY+hcQ== }
hasBin: true
fastq@1.19.1:
resolution:
{ integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ== }
- fdir@6.4.4:
+ fdir@6.5.0:
resolution:
- { integrity: sha512-1NZP+GK4GfuAv3PqKvxQRDMjdSRZjnkq7KfhlNrCNNlZ0ygQFpebfrnfnq/W7fpUnAv9aGWmY1zKx7FYL3gwhg== }
+ { integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg== }
+ engines: { node: ">=12.0.0" }
peerDependencies:
picomatch: ^3 || ^4
peerDependenciesMeta:
@@ -6992,11 +7111,6 @@ packages:
{ integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ== }
engines: { node: ">=0.10.0" }
- finalhandler@2.1.0:
- resolution:
- { integrity: sha512-/t88Ty3d5JWQbWYgaOGCCYfXRwV1+be02WqYYlL6h0lEiUAMPM8o8qKGO01YIkOHzka2up08wvgYD0mDiI+q3Q== }
- engines: { node: ">= 0.8" }
-
find-up-simple@1.0.1:
resolution:
{ integrity: sha512-afd4O7zpqHeRyg4PfDQsXmlDe2PfdHtJt6Akt8jOWaApLOZk5JXs6VMR29lz03pRe9mpykrRCYIYxaJYcfpncQ== }
@@ -7026,9 +7140,9 @@ packages:
resolution:
{ integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg== }
- follow-redirects@1.15.9:
+ follow-redirects@1.15.11:
resolution:
- { integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ== }
+ { integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ== }
engines: { node: ">=4.0" }
peerDependencies:
debug: "*"
@@ -7051,33 +7165,23 @@ packages:
{ integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw== }
engines: { node: ">=14" }
- form-data@2.5.3:
+ form-data@2.5.5:
resolution:
- { integrity: sha512-XHIrMD0NpDrNM/Ckf7XJiBbLl57KEhT3+i3yY+eWm+cqYZJQTZrKo8Y8AWKnuV5GT4scfuUGt9LzNoIx3dU1nQ== }
+ { integrity: sha512-jqdObeR2rxZZbPSGL+3VckHMYtu+f9//KXBsVny6JSX/pa38Fy+bGjuG8eW/H6USNQWhLi8Num++cU2yOCNz4A== }
engines: { node: ">= 0.12" }
- form-data@4.0.2:
+ form-data@4.0.5:
resolution:
- { integrity: sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w== }
+ { integrity: sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w== }
engines: { node: ">= 6" }
forwarded-parse@2.1.2:
resolution:
{ integrity: sha512-alTFZZQDKMporBH77856pXgzhEzaUVmLCDk+egLgIgHst3Tpndzz8MnKe+GzRJRfvVdn69HhpW7cmXzvtLvJAw== }
- forwarded@0.2.0:
- resolution:
- { integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== }
- engines: { node: ">= 0.6" }
-
- fraction.js@4.3.7:
- resolution:
- { integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew== }
-
- fraction.js@5.2.2:
+ fraction.js@5.3.4:
resolution:
- { integrity: sha512-uXBDv5knpYmv/2gLzWQ5mBHGBRk9wcKTeWu6GLTUEQfjCxO09uM/mHDrojlL+Q1mVGIIFo149Gba7od1XPgSzQ== }
- engines: { node: ">= 12" }
+ { integrity: sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ== }
fragment-cache@0.2.1:
resolution:
@@ -7095,14 +7199,9 @@ packages:
resolution:
{ integrity: sha512-fUY88kXvGiIItgNC7wcTOl0SNRCVXMKSWW2Yzfmn7EKNc+MpCzcz9DhdHcdjbrtN3c6R4H5dTY2jiCpPdysEjA== }
- fresh@2.0.0:
+ fs-extra@11.3.2:
resolution:
- { integrity: sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A== }
- engines: { node: ">= 0.8" }
-
- fs-extra@11.3.0:
- resolution:
- { integrity: sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew== }
+ { integrity: sha512-Xr9F6z6up6Ws+NjzMCZc6WXg2YFRlrLP9NQDO3VQrWrfiojdhS56TzueT88ze0uBdCTwEIhQ3ptnmKeWGFAe0A== }
engines: { node: ">=14.14" }
fs.realpath@1.0.0:
@@ -7129,6 +7228,11 @@ packages:
{ integrity: sha512-a4tiq7E0/5fTjxPAaH4jpjkSv/uCaU2p5KC6HVGrvl0cDjA8iBZv4vv1gyzlmK0ZUKqwpOyQMKzZQe3lTit77A== }
engines: { node: ">=14" }
+ generator-function@2.0.1:
+ resolution:
+ { integrity: sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g== }
+ engines: { node: ">= 0.4" }
+
generic-pool@3.9.0:
resolution:
{ integrity: sha512-hymDOu5B53XvN4QT9dBmZxPX4CWhBPPLguTZ9MMFeFa/Kg0xWVfylOVNlJji/E7yTZWFd/q9GO5TxDLq156D7g== }
@@ -7144,9 +7248,9 @@ packages:
{ integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== }
engines: { node: 6.* || 8.* || >= 10.* }
- get-east-asian-width@1.3.0:
+ get-east-asian-width@1.4.0:
resolution:
- { integrity: sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ== }
+ { integrity: sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q== }
engines: { node: ">=18" }
get-intrinsic@1.3.0:
@@ -7169,9 +7273,9 @@ packages:
{ integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA== }
engines: { node: ">=16" }
- get-tsconfig@4.10.0:
+ get-tsconfig@4.13.0:
resolution:
- { integrity: sha512-kGzZ3LWWQcGIAmg6iWvXn0ei6WDtV26wzHRMwDSzmAbcXrTEXxHy6IehI6/4eT6VRKyMP1eF1VqwrVUmE/LR7A== }
+ { integrity: sha512-1VKTZJCwBrvbd+Wn3AOgQP/2Av+TfTCOlE4AcRJE72W1ksZXbAx8PPBR9RzgTeSPzlPMHrbANMH3LbltH73wxQ== }
get-value@2.0.6:
resolution:
@@ -7200,9 +7304,9 @@ packages:
resolution:
{ integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== }
- glob@11.0.2:
+ glob@11.1.0:
resolution:
- { integrity: sha512-YT7U7Vye+t5fZ/QMkBFrTJ7ZQxInIUjwyAjVj84CYXqgBdv30MFUPGnBR6sQaVq6Is15wYJUsnzTuWaGRBhBAQ== }
+ { integrity: sha512-vuNwKSaKiqm7g0THUBu2x7ckSs3XJLXE+2ssL7/MfTGPLLcrJQ/4Uq1CjPTtO5cCIiRxqvN6Twy1qOwhL0Xjcw== }
engines: { node: 20 || >=22 }
hasBin: true
@@ -7222,11 +7326,6 @@ packages:
{ integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA== }
engines: { node: ">=10" }
- globals@11.12.0:
- resolution:
- { integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== }
- engines: { node: ">=4" }
-
globals@14.0.0:
resolution:
{ integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ== }
@@ -7257,9 +7356,9 @@ packages:
{ integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg== }
engines: { node: ">= 0.4" }
- gql.tada@1.8.10:
+ gql.tada@1.9.0:
resolution:
- { integrity: sha512-FrvSxgz838FYVPgZHGOSgbpOjhR+yq44rCzww3oOPJYi0OvBJjAgCiP6LEokZIYND2fUTXzQAyLgcvgw1yNP5A== }
+ { integrity: sha512-1LMiA46dRs5oF7Qev6vMU32gmiNvM3+3nHoQZA9K9j2xQzH8xOAWnnJrLSbZOFHTSdFxqn86TL6beo1/7ja/aA== }
hasBin: true
peerDependencies:
typescript: ^5.0.0
@@ -7281,15 +7380,15 @@ packages:
resolution:
{ integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== }
- graphql-request@7.2.0:
+ graphql-request@7.3.4:
resolution:
- { integrity: sha512-0GR7eQHBFYz372u9lxS16cOtEekFlZYB2qOyq8wDvzRmdRSJ0mgUVX1tzNcIzk3G+4NY+mGtSz411wZdeDF/+A== }
+ { integrity: sha512-kbpP5dw9hHIL5jN/2VS2JU0/Sc1hlsj7zrYBKSDiYd5iG8QfX7P79u26ZBi84eAijsqYVZEpLvCCwEzVxscWhg== }
peerDependencies:
graphql: 14 - 16
- graphql@16.11.0:
+ graphql@16.12.0:
resolution:
- { integrity: sha512-mS1lbMsxgQj6hge1XZ6p7GPhbrtFwUFYi3wRzXAC/FmYnyXMTvvI3td3rjmQ2u8ewXueaSvRPWaEcgVVOT9Jnw== }
+ { integrity: sha512-DKKrynuQRne0PNpEbzuEdHlYOMksHSUI8Zc9Unei5gTsMNA2/vMpoMz/yKba50pejK56qj98qM0SjYxAKi13gQ== }
engines: { node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0 }
gtoken@7.1.0:
@@ -7297,9 +7396,9 @@ packages:
{ integrity: sha512-pCcEwRi+TKpMlxAQObHDQ56KawURgyAf6jtIY046fJ5tIv3zDe/LEIubckAO8fj6JnAxLdmWkUfNyulQ2iKdEw== }
engines: { node: ">=14.0.0" }
- h3@1.15.3:
+ h3@1.15.4:
resolution:
- { integrity: sha512-z6GknHqyX0h9aQaTx22VZDf6QyZn+0Nh+Ym8O/u0SGSkyF5cuTJYKlc8MkzW3Nzf9LE1ivcpmYC3FUGpywhuUQ== }
+ { integrity: sha512-z5cFQWDffyOe4vQ9xIqNfCZdV4p//vy6fBnr8Q1AWnVZ0teurKMG66rLj++TKwKPUP3u7iMUvrvKaEUiQw2QWQ== }
has-flag@3.0.0:
resolution:
@@ -7402,11 +7501,6 @@ packages:
resolution:
{ integrity: sha512-kig+rMn/QOVRvr7c86gQ8lWXq+Hkv6CbAH1hLu+RG338StTpE8Z0b44SDVaqVu7HGKf27frdmUYEs9hTUX/cLQ== }
- http-errors@2.0.0:
- resolution:
- { integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ== }
- engines: { node: ">= 0.8" }
-
http-proxy-agent@5.0.0:
resolution:
{ integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w== }
@@ -7432,9 +7526,9 @@ packages:
{ integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ== }
engines: { node: ">=16.17.0" }
- humanize-duration@3.32.1:
+ humanize-duration@3.33.1:
resolution:
- { integrity: sha512-inh5wue5XdfObhu/IGEMiA1nUXigSGcaKNemcbLRKa7jXYGDZXr3LoT9pTIzq2hPEbld7w/qv9h+ikWGz8fL1g== }
+ { integrity: sha512-hwzSCymnRdFx9YdRkQQ0OYequXiVAV6ZGQA2uzocwB0F4309Ke6pO8dg0P8LHhRQJyVjGteRTAA/zNfEcpXn8A== }
husky@9.1.7:
resolution:
@@ -7465,14 +7559,19 @@ packages:
{ integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g== }
engines: { node: ">= 4" }
+ ignore@7.0.5:
+ resolution:
+ { integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg== }
+ engines: { node: ">= 4" }
+
import-fresh@3.3.1:
resolution:
{ integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ== }
engines: { node: ">=6" }
- import-in-the-middle@1.14.0:
+ import-in-the-middle@1.15.0:
resolution:
- { integrity: sha512-g5zLT0HaztRJWysayWYiUq/7E5H825QIiecMD2pI5QO7Wzr847l6GDvPvmZaDIdrDtS2w7qRczywxiK6SL5vRw== }
+ { integrity: sha512-bpQy+CrsRmYmoPMAE/0G33iwRqwW4ouqdRg8jgbH3aKuCtOc8lxgmYXg2dMM92CRiGP660EtBcymH/eVUpCSaA== }
import-lazy@2.1.0:
resolution:
@@ -7503,9 +7602,9 @@ packages:
{ integrity: sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg== }
engines: { node: ">=12" }
- index-to-position@1.1.0:
+ index-to-position@1.2.0:
resolution:
- { integrity: sha512-XPdx9Dq4t9Qk1mTMbWONJqU7boCoumEH7fRET37HX5+khDUl3J2W6PdALxhILYlIYx2amlwYcRPp28p0tSiojg== }
+ { integrity: sha512-Yg7+ztRkqslMAS2iFaU+Oa4KTSidr63OsFGlOrJoW981kIYO3CGCS3wA95P1mUi/IVSJkn0D479KTJpVpvFNuw== }
engines: { node: ">=18" }
inflight@1.0.6:
@@ -7565,14 +7664,14 @@ packages:
ink: ">=5"
react: ">=18"
- ink@5.2.1:
+ ink@6.5.1:
resolution:
- { integrity: sha512-BqcUyWrG9zq5HIwW6JcfFHsIYebJkWWb4fczNah1goUO0vv5vneIlfwuS85twyJ5hYR/y18FlAYUxrO9ChIWVg== }
- engines: { node: ">=18" }
+ { integrity: sha512-wF3j/DmkM8q5E+OtfdQhCRw8/0ahkc8CUTgEddxZzpEWPslu7YPL3t64MWRoI9m6upVGpfAg4ms2BBvxCdKRLQ== }
+ engines: { node: ">=20" }
peerDependencies:
- "@types/react": ">=18.0.0"
- react: ">=18.0.0"
- react-devtools-core: ^4.19.1
+ "@types/react": ">=19.0.0"
+ react: ">=19.0.0"
+ react-devtools-core: ^6.1.2
peerDependenciesMeta:
"@types/react":
optional: true
@@ -7584,11 +7683,6 @@ packages:
{ integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg== }
engines: { node: ">=12" }
- ipaddr.js@1.9.1:
- resolution:
- { integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== }
- engines: { node: ">= 0.10" }
-
iron-webcrypto@1.2.1:
resolution:
{ integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg== }
@@ -7681,14 +7775,14 @@ packages:
{ integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ== }
engines: { node: ">=12" }
- is-fullwidth-code-point@5.0.0:
+ is-fullwidth-code-point@5.1.0:
resolution:
- { integrity: sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA== }
+ { integrity: sha512-5XHYaSyiqADb4RnZ1Bdad6cPp8Toise4TzEjcOYDHZkTCbKgiUl7WTUCpNWHuxmDt91wnsZBc9xinNzopv3JMQ== }
engines: { node: ">=18" }
- is-generator-function@1.1.0:
+ is-generator-function@1.1.2:
resolution:
- { integrity: sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ== }
+ { integrity: sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA== }
engines: { node: ">= 0.4" }
is-glob@3.1.0:
@@ -7701,10 +7795,10 @@ packages:
{ integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== }
engines: { node: ">=0.10.0" }
- is-in-ci@1.0.0:
+ is-in-ci@2.0.0:
resolution:
- { integrity: sha512-eUuAjybVTHMYWm/U+vBO1sY/JOCgoPCXRxzdju0K+K0BiGW0SChEL1MLC0PoCIR1OlPo5YAp8HuQoUlsWEICwg== }
- engines: { node: ">=18" }
+ { integrity: sha512-cFeerHriAnhrQSbpAxL37W1wcJKUUX07HyLWZCW1URJT/ra3GyUTzBgUnh24TMVfNTV2Hij2HLxkPHFZfOZy5w== }
+ engines: { node: ">=20" }
hasBin: true
is-installed-globally@0.4.0:
@@ -7746,10 +7840,6 @@ packages:
resolution:
{ integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ== }
- is-promise@4.0.0:
- resolution:
- { integrity: sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ== }
-
is-regex@1.2.1:
resolution:
{ integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g== }
@@ -7792,6 +7882,10 @@ packages:
resolution:
{ integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== }
+ isarray@2.0.5:
+ resolution:
+ { integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== }
+
isexe@2.0.0:
resolution:
{ integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== }
@@ -7816,9 +7910,15 @@ packages:
peerDependencies:
ws: "*"
- jackspeak@4.1.0:
+ isows@1.0.7:
+ resolution:
+ { integrity: sha512-I1fSfDCZL5P0v33sVqeTDSpcstAg/N+wF5HS033mogOVIp4B+oHC7oOCsA3axAbBSGTJ8QubbNmnIRN/h8U7hg== }
+ peerDependencies:
+ ws: "*"
+
+ jackspeak@4.1.1:
resolution:
- { integrity: sha512-9DDdhb5j6cpeitCbvLO7n7J4IxnbM6hoF6O1g4HQ5TfhvvKN8ywDM7668ZhMHRqVmxqhps/F6syWK2KcPxYlkw== }
+ { integrity: sha512-zptv57P3GpL+O0I7VdMJNBZCu+BPHVQUk55Ft8/QCJjTVxrnJHuVuX/0Bl2A6/+2oyR/ZMEuFKwmzqqZ/U5nPQ== }
engines: { node: 20 || >=22 }
javascript-natural-sort@0.7.1:
@@ -7830,28 +7930,24 @@ packages:
{ integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg== }
engines: { node: ">= 10.13.0" }
- jiti@2.4.2:
+ jiti@2.6.1:
resolution:
- { integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A== }
+ { integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ== }
hasBin: true
jju@1.4.0:
resolution:
{ integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA== }
- jose@6.0.11:
+ jose@6.1.2:
resolution:
- { integrity: sha512-QxG7EaliDARm1O1S8BGakqncGT9s25bKL1WSf6/oa17Tkqwi8D2ZNglqCF+DsYF88/rV66Q/Q2mFAy697E1DUg== }
+ { integrity: sha512-MpcPtHLE5EmztuFIqB0vzHAWJPpmN1E6L4oo+kze56LIs3MyXIj9ZHMDxqOvkP38gBR7K1v3jqd4WU2+nrfONQ== }
joycon@3.1.1:
resolution:
{ integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw== }
engines: { node: ">=10" }
- js-sdsl@4.4.2:
- resolution:
- { integrity: sha512-dwXFwByc/ajSV6m5bcKAPwe4yDDF6D614pxmIi5odytzxRlwqF6nwoiCek80Ixc7Cvma5awClxrzFtxCQvcM8w== }
-
js-sha3@0.8.0:
resolution:
{ integrity: sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q== }
@@ -7860,9 +7956,13 @@ packages:
resolution:
{ integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== }
- js-yaml@4.1.0:
+ js-tokens@9.0.1:
resolution:
- { integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== }
+ { integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ== }
+
+ js-yaml@4.1.1:
+ resolution:
+ { integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA== }
hasBin: true
jsbi@4.3.2:
@@ -7936,9 +8036,9 @@ packages:
resolution:
{ integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ== }
- jsonfile@6.1.0:
+ jsonfile@6.2.0:
resolution:
- { integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== }
+ { integrity: sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg== }
jsonpack@1.1.5:
resolution:
@@ -7998,79 +8098,86 @@ packages:
{ integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== }
engines: { node: ">= 0.8.0" }
- lightningcss-darwin-arm64@1.29.2:
+ lightningcss-android-arm64@1.30.2:
+ resolution:
+ { integrity: sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A== }
+ engines: { node: ">= 12.0.0" }
+ cpu: [arm64]
+ os: [android]
+
+ lightningcss-darwin-arm64@1.30.2:
resolution:
- { integrity: sha512-cK/eMabSViKn/PG8U/a7aCorpeKLMlK0bQeNHmdb7qUnBkNPnL+oV5DjJUo0kqWsJUapZsM4jCfYItbqBDvlcA== }
+ { integrity: sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA== }
engines: { node: ">= 12.0.0" }
cpu: [arm64]
os: [darwin]
- lightningcss-darwin-x64@1.29.2:
+ lightningcss-darwin-x64@1.30.2:
resolution:
- { integrity: sha512-j5qYxamyQw4kDXX5hnnCKMf3mLlHvG44f24Qyi2965/Ycz829MYqjrVg2H8BidybHBp9kom4D7DR5VqCKDXS0w== }
+ { integrity: sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ== }
engines: { node: ">= 12.0.0" }
cpu: [x64]
os: [darwin]
- lightningcss-freebsd-x64@1.29.2:
+ lightningcss-freebsd-x64@1.30.2:
resolution:
- { integrity: sha512-wDk7M2tM78Ii8ek9YjnY8MjV5f5JN2qNVO+/0BAGZRvXKtQrBC4/cn4ssQIpKIPP44YXw6gFdpUF+Ps+RGsCwg== }
+ { integrity: sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA== }
engines: { node: ">= 12.0.0" }
cpu: [x64]
os: [freebsd]
- lightningcss-linux-arm-gnueabihf@1.29.2:
+ lightningcss-linux-arm-gnueabihf@1.30.2:
resolution:
- { integrity: sha512-IRUrOrAF2Z+KExdExe3Rz7NSTuuJ2HvCGlMKoquK5pjvo2JY4Rybr+NrKnq0U0hZnx5AnGsuFHjGnNT14w26sg== }
+ { integrity: sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA== }
engines: { node: ">= 12.0.0" }
cpu: [arm]
os: [linux]
- lightningcss-linux-arm64-gnu@1.29.2:
+ lightningcss-linux-arm64-gnu@1.30.2:
resolution:
- { integrity: sha512-KKCpOlmhdjvUTX/mBuaKemp0oeDIBBLFiU5Fnqxh1/DZ4JPZi4evEH7TKoSBFOSOV3J7iEmmBaw/8dpiUvRKlQ== }
+ { integrity: sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A== }
engines: { node: ">= 12.0.0" }
cpu: [arm64]
os: [linux]
- lightningcss-linux-arm64-musl@1.29.2:
+ lightningcss-linux-arm64-musl@1.30.2:
resolution:
- { integrity: sha512-Q64eM1bPlOOUgxFmoPUefqzY1yV3ctFPE6d/Vt7WzLW4rKTv7MyYNky+FWxRpLkNASTnKQUaiMJ87zNODIrrKQ== }
+ { integrity: sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA== }
engines: { node: ">= 12.0.0" }
cpu: [arm64]
os: [linux]
- lightningcss-linux-x64-gnu@1.29.2:
+ lightningcss-linux-x64-gnu@1.30.2:
resolution:
- { integrity: sha512-0v6idDCPG6epLXtBH/RPkHvYx74CVziHo6TMYga8O2EiQApnUPZsbR9nFNrg2cgBzk1AYqEd95TlrsL7nYABQg== }
+ { integrity: sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w== }
engines: { node: ">= 12.0.0" }
cpu: [x64]
os: [linux]
- lightningcss-linux-x64-musl@1.29.2:
+ lightningcss-linux-x64-musl@1.30.2:
resolution:
- { integrity: sha512-rMpz2yawkgGT8RULc5S4WiZopVMOFWjiItBT7aSfDX4NQav6M44rhn5hjtkKzB+wMTRlLLqxkeYEtQ3dd9696w== }
+ { integrity: sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA== }
engines: { node: ">= 12.0.0" }
cpu: [x64]
os: [linux]
- lightningcss-win32-arm64-msvc@1.29.2:
+ lightningcss-win32-arm64-msvc@1.30.2:
resolution:
- { integrity: sha512-nL7zRW6evGQqYVu/bKGK+zShyz8OVzsCotFgc7judbt6wnB2KbiKKJwBE4SGoDBQ1O94RjW4asrCjQL4i8Fhbw== }
+ { integrity: sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ== }
engines: { node: ">= 12.0.0" }
cpu: [arm64]
os: [win32]
- lightningcss-win32-x64-msvc@1.29.2:
+ lightningcss-win32-x64-msvc@1.30.2:
resolution:
- { integrity: sha512-EdIUW3B2vLuHmv7urfzMI/h2fmlnOQBk1xlsDxkN1tCWKjNFjfLhGxYk8C8mzpSfr+A6jFFIi8fU6LbQGsRWjA== }
+ { integrity: sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw== }
engines: { node: ">= 12.0.0" }
cpu: [x64]
os: [win32]
- lightningcss@1.29.2:
+ lightningcss@1.30.2:
resolution:
- { integrity: sha512-6b6gd/RUXKaw5keVdSEtqFVdzWnU5jMxTUjA2bVcMNPLwSQ08Sv/UodBVtETLCn7k4S1Ibxwh7k68IwLZPgKaA== }
+ { integrity: sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ== }
engines: { node: ">= 12.0.0" }
lilconfig@3.1.3:
@@ -8093,13 +8200,13 @@ packages:
{ integrity: sha512-LWzX2KsqcB1wqQ4AHgYb4RsDXauQiqhjLk+6hjbaeHG4zpjjVAB6wC/gz6X0l+Du1cN3pUB5ZlrvTbhGSNnUQQ== }
engines: { node: ">=18.0.0" }
- lit-element@4.2.0:
+ lit-element@4.2.1:
resolution:
- { integrity: sha512-MGrXJVAI5x+Bfth/pU9Kst1iWID6GHDLEzFEnyULB/sFiRLgkd8NPK/PeeXxktA3T6EIIaq8U3KcbTU5XFcP2Q== }
+ { integrity: sha512-WGAWRGzirAgyphK2urmYOV72tlvnxw7YfyLDgQ+OZnM9vQQBQnumQ7jUJe6unEzwGU3ahFOjuz1iz1jjrpCPuw== }
- lit-html@3.3.0:
+ lit-html@3.3.1:
resolution:
- { integrity: sha512-RHoswrFAxY2d8Cf2mm4OZ1DgzCoBKUKSPvA1fhtSELxUERq2aQQ2h05pO9j81gS1o7RIRJ+CePLogfyahwmynw== }
+ { integrity: sha512-S9hbyDu/vs1qNrithiNyeyv64c9yqiW9l+DBgI18fL+MTvOtWoFR0FWiyq1TxaYef5wNlpEmzlXoBlZEO+WjoA== }
lit@3.1.0:
resolution:
@@ -8110,14 +8217,14 @@ packages:
{ integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg== }
engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
- loader-runner@4.3.0:
+ loader-runner@4.3.1:
resolution:
- { integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg== }
+ { integrity: sha512-IWqP2SCPhyVFTBtRcgMHdzlf9ul25NwaFx4wCEH/KjAXuuHY4yNjvPXsBokp8jCB936PyWRaPKUNh8NvylLp2Q== }
engines: { node: ">=6.11.5" }
- local-pkg@1.1.1:
+ local-pkg@1.1.2:
resolution:
- { integrity: sha512-WunYko2W1NcdfAFpuLUoucsgULmgDBRkdxHxWQ7mK0cQqwPiy8E1enjuRBrhLtZkB5iScJ1XIPdhVEFK8aOLSg== }
+ { integrity: sha512-arhlxbFRmoQHl33a0Zkle/YWlmNwoyt6QNZEIJcqNbdrsix5Lvc4HyyI3EnwxTYlZYc32EbYrQ8SzEZ7dqgg9A== }
engines: { node: ">=14" }
locate-path@3.0.0:
@@ -8178,9 +8285,9 @@ packages:
{ integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== }
hasBin: true
- loupe@3.1.3:
+ loupe@3.2.1:
resolution:
- { integrity: sha512-kkIp7XSkP78ZxJEsSxW3712C6teJVoeHHwgo9zJ380de7IYyJ2ISlxojcH2pC5OFLewESmnRi/+XCDIEEVyoug== }
+ { integrity: sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ== }
lower-case@2.0.2:
resolution:
@@ -8195,9 +8302,14 @@ packages:
resolution:
{ integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ== }
- lru-cache@11.1.0:
+ lru-cache@11.0.2:
+ resolution:
+ { integrity: sha512-123qHRfJBmo2jXDbo/a5YOQrJoHF/GNQTLzQ5+IdK5pWpceK17yRc6ozlWd25FxvGKQbIUs91fDFkXmDHTKcyA== }
+ engines: { node: 20 || >=22 }
+
+ lru-cache@11.2.2:
resolution:
- { integrity: sha512-QIXZUBJUx+2zHUdQujWejBkcD9+cs94tLn0+YL8UrCh+D5sCXZ4c7LaEH48pNwRY3MLDgqUFyhlCyjJPf1WP0A== }
+ { integrity: sha512-F9ODfyqML2coTIsQpSkRHnLSZMtkU8Q+mSfcaIyKwy58u+8k5nvAYeiNhsyMARvzNcXJ9QfWVrcPsC9e9rAxtg== }
engines: { node: 20 || >=22 }
lru-cache@5.1.1:
@@ -8229,9 +8341,9 @@ packages:
resolution:
{ integrity: sha512-ThQLOhN86ZkJ7qemtVRGYM+gRgR8GEXNli9H/PMvpnZsE44Xfh3wx9kGJaldg314v85m+bFW6WBMaVHJc/c3zA== }
- magic-string@0.30.17:
+ magic-string@0.30.21:
resolution:
- { integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA== }
+ { integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ== }
make-dir@3.1.0:
resolution:
@@ -8257,27 +8369,17 @@ packages:
{ integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g== }
engines: { node: ">= 0.4" }
- mathjs@14.5.2:
+ mathjs@14.9.1:
resolution:
- { integrity: sha512-51U6hp7j4M4Rj+l+q2KbmXAV9EhQVQzUdw1wE67RnUkKKq5ibxdrl9Ky2YkSUEIc2+VU8/IsThZNu6QSHUoyTA== }
+ { integrity: sha512-xhqv8Xjf+caWG3WlaPekg4v8QFOR3D5+8ycfcjMcPcnCNDgAONQLaLfyGgrggJrcHx2yUGCpACRpiD4GmXwX+Q== }
engines: { node: ">= 18" }
hasBin: true
- media-typer@1.1.0:
- resolution:
- { integrity: sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw== }
- engines: { node: ">= 0.8" }
-
memorystream@0.3.1:
resolution:
{ integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw== }
engines: { node: ">= 0.10.0" }
- merge-descriptors@2.0.0:
- resolution:
- { integrity: sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g== }
- engines: { node: ">=18" }
-
merge-stream@2.0.0:
resolution:
{ integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== }
@@ -8306,21 +8408,11 @@ packages:
{ integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== }
engines: { node: ">= 0.6" }
- mime-db@1.54.0:
- resolution:
- { integrity: sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ== }
- engines: { node: ">= 0.6" }
-
mime-types@2.1.35:
resolution:
{ integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== }
engines: { node: ">= 0.6" }
- mime-types@3.0.1:
- resolution:
- { integrity: sha512-xRc4oEhT6eaBpU1XF7AjpOFD+xQmXNB5OVKwp4tqCuBpHLS/ZbBDrc07mYTDqVMg6PfxUjjNp85O6Cd2Z/5HWA== }
- engines: { node: ">= 0.6" }
-
mime@3.0.0:
resolution:
{ integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A== }
@@ -8365,14 +8457,15 @@ packages:
resolution:
{ integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg== }
- minimatch@10.0.1:
+ minimatch@10.0.3:
resolution:
- { integrity: sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ== }
+ { integrity: sha512-IPZ167aShDZZUMdRk66cyQAW3qr0WzbHkPdMYa8bzZhlHhO3jALbKdxcaak7W9FfT2rZNpQuUu4Od7ILEpXSaw== }
engines: { node: 20 || >=22 }
- minimatch@3.0.8:
+ minimatch@10.1.1:
resolution:
- { integrity: sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q== }
+ { integrity: sha512-enIvLvRAFZYXJzkCYG5RKmPfrFArdLv+R+lbQ53BmIMLIry74bjKzX6iHAm8WYamJkhSSEabrWN5D97XnKObjQ== }
+ engines: { node: 20 || >=22 }
minimatch@3.1.2:
resolution:
@@ -8397,11 +8490,6 @@ packages:
{ integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw== }
engines: { node: ">=16 || 14 >=14.17" }
- minizlib@3.0.2:
- resolution:
- { integrity: sha512-oG62iEk+CYt5Xj2YqI5Xi9xWUeZhDI8jjQmC5oThVH5JGCTgIjr7ciJDzC7MBzYd//WvR1OTmP5Q38Q8ShQtVA== }
- engines: { node: ">= 18" }
-
mipd@0.0.7:
resolution:
{ integrity: sha512-aAPZPNDQ3uMTdKbuO2YmAw2TxLHO0moa4YKAyETM/DTj5FloZo+a+8tU+iv4GmW+sOxKLSRwcSFuczk+Cpt6fg== }
@@ -8416,15 +8504,9 @@ packages:
{ integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA== }
engines: { node: ">=0.10.0" }
- mkdirp@3.0.1:
- resolution:
- { integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg== }
- engines: { node: ">=10" }
- hasBin: true
-
- mlly@1.7.4:
+ mlly@1.8.0:
resolution:
- { integrity: sha512-qmdSIPC4bDJXgZTCR7XosJiNKySV7O215tsPtDN9iEO/7q/76b/ijtgRu/+epFXSJhijtTCCGp3DWS549P3xKw== }
+ { integrity: sha512-l8D9ODSRWLe2KHJSifWGwBqpTZXIXTeo8mlKjY+E2HAakaTeNpqAyBZ8GSqLzHgw4XmHmC8whvpjJNMbFZN7/g== }
module-details-from-path@1.0.4:
resolution:
@@ -8460,9 +8542,9 @@ packages:
engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 }
hasBin: true
- nanoid@5.1.5:
+ nanoid@5.1.6:
resolution:
- { integrity: sha512-Ir/+ZpE9fDsNH0hQ3C68uyThDXzYcim2EqcZ8zn8Chtt1iylPT9xXJB0kPCnqzgcEGikO9RxSrh63MsmVCU7Fw== }
+ { integrity: sha512-c7+7RQ+dMB5dPwwCp4ee1/iV/q2P6aK1mTZcfr1BTuVlyW9hJYiMPybJCcnBlQtuSmTIWNeazm/zqNoZSSElBg== }
engines: { node: ^18 || >=20 }
hasBin: true
@@ -8471,9 +8553,9 @@ packages:
{ integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== }
engines: { node: ">=0.10.0" }
- napi-postinstall@0.2.3:
+ napi-postinstall@0.3.4:
resolution:
- { integrity: sha512-Mi7JISo/4Ij2tDZ2xBE2WH+/KvVlkhA6juEjpEeRAVPNCpN3nxJo/5FhDNKgBcdmcmhaH6JjgST4xY/23ZYK0w== }
+ { integrity: sha512-PHI5f1O0EP5xJ9gQmFGMS6IZcrVvTjpXjz7Na41gTE7eE2hK11lg04CECCYEEjdc17EV4DO+fkGEtt7TpTaTiQ== }
engines: { node: ^12.20.0 || ^14.18.0 || >=16.0.0 }
hasBin: true
@@ -8487,11 +8569,6 @@ packages:
resolution:
{ integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== }
- negotiator@1.0.0:
- resolution:
- { integrity: sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg== }
- engines: { node: ">= 0.6" }
-
neo-async@2.6.2:
resolution:
{ integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== }
@@ -8516,9 +8593,9 @@ packages:
{ integrity: sha512-t1QzWwnk4sjLWaQAS8CHgOJ+RAfmHpxFWmc36IWTiWHQfs0w5JDMBS1b1ZxQteo0vVVuWJvIUKHDkkeK7vIGCg== }
engines: { node: ">= 8.0.0" }
- node-fetch-native@1.6.6:
+ node-fetch-native@1.6.7:
resolution:
- { integrity: sha512-8Mc2HhqPdlIfedsuZoc3yioPuzp6b+L5jRCRY1QzuWZh2EGJVQrGppC6V6cF0bLdbW0+O2YpqCA25aF/1lvipQ== }
+ { integrity: sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q== }
node-fetch@2.7.0:
resolution:
@@ -8535,13 +8612,13 @@ packages:
{ integrity: sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ== }
hasBin: true
- node-mock-http@1.0.0:
+ node-mock-http@1.0.3:
resolution:
- { integrity: sha512-0uGYQ1WQL1M5kKvGRXWQ3uZCHtLTO8hln3oBjIusM75WoesZ909uQJs/Hb946i2SS+Gsrhkaa6iAO17jRIv6DQ== }
+ { integrity: sha512-jN8dK25fsfnMrVsEhluUTPkBFY+6ybu7jSB1n+ri/vOGjJxU8J9CZhpSGkHXSkFjtUhbmoncG/YG9ta5Ludqog== }
- node-releases@2.0.19:
+ node-releases@2.0.27:
resolution:
- { integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw== }
+ { integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA== }
normalize-package-data@6.0.2:
resolution:
@@ -8568,9 +8645,9 @@ packages:
{ integrity: sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ== }
engines: { node: ">=0.10.0" }
- nwsapi@2.2.20:
+ nwsapi@2.2.22:
resolution:
- { integrity: sha512-/ieB+mDe4MrrKMT8z+mQL8klXydZWGR5Dowt4RAGKbJ3kIGEx3X4ljUo+6V73IXtUPWgfOlU5B9MlGxFO5T+cA== }
+ { integrity: sha512-ujSMe1OWVn55euT1ihwCI1ZcAaAU3nxUiDwfDQldc51ZXaB9m2AyOn6/jh1BLe2t/G8xd6uKG1UBF2aZJeg2SQ== }
obj-multiplex@1.0.0:
resolution:
@@ -8586,11 +8663,6 @@ packages:
{ integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ== }
engines: { node: ">=0.10.0" }
- object-inspect@1.13.4:
- resolution:
- { integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew== }
- engines: { node: ">= 0.4" }
-
object-visit@1.0.1:
resolution:
{ integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA== }
@@ -8601,9 +8673,9 @@ packages:
{ integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ== }
engines: { node: ">=0.10.0" }
- ofetch@1.4.1:
+ ofetch@1.5.1:
resolution:
- { integrity: sha512-QZj2DfGplQAr2oj9KzceK9Hwz6Whxazmn85yYeVuS3u9XTMOGMRx0kO95MQ+vLsj/S/NwBDMMLU5hpxvI6Tklw== }
+ { integrity: sha512-2W4oUZlVaqAPAil6FUg/difl6YhqhUR7x2eZY4bQCko22UXg3hptq9KLQdqFClV+Wu85UX7hNtdGTngi/1BxcA== }
ohash@1.1.6:
resolution:
@@ -8618,11 +8690,6 @@ packages:
{ integrity: sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA== }
engines: { node: ">=14.0.0" }
- on-finished@2.4.1:
- resolution:
- { integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== }
- engines: { node: ">= 0.8" }
-
once@1.4.0:
resolution:
{ integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== }
@@ -8684,6 +8751,15 @@ packages:
typescript:
optional: true
+ ox@0.9.6:
+ resolution:
+ { integrity: sha512-8SuCbHPvv2eZLYXrNmC0EC12rdzXQLdhnOMlHDW2wiCPLxBrOOJwX5L5E61by+UjTPOryqQiRSnjIKCI+GykKg== }
+ peerDependencies:
+ typescript: ">=5.4.0"
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
oxc-resolver@5.3.0:
resolution:
{ integrity: sha512-FHqtZx0idP5QRPSNcI5g2ItmADg7fhR3XIeWg5eRMGfp44xqRpfkdvo+EX4ZceqV9bxvl0Z8vaqMqY0gYaNYNA== }
@@ -8713,9 +8789,9 @@ packages:
{ integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== }
engines: { node: ">=10" }
- p-map@7.0.3:
+ p-map@7.0.4:
resolution:
- { integrity: sha512-VkndIv2fIB99swvQoA65bm+fsmt6UNdGeIB0oxBs+WhAhdh08QA04JXpI7rbB9r08/nkbysKoya9rtDERYOYMA== }
+ { integrity: sha512-tkAQEw8ysMzmkhgw8k+1U/iPhWNhykKnSk4Rd5zLoPJCuJaGRPo6YposrZgaxHKzDHdDWWZvE/Sk7hsL2X/CpQ== }
engines: { node: ">=18" }
p-try@2.2.0:
@@ -8746,11 +8822,6 @@ packages:
resolution:
{ integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw== }
- parseurl@1.3.3:
- resolution:
- { integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== }
- engines: { node: ">= 0.8" }
-
pascalcase@0.1.1:
resolution:
{ integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw== }
@@ -8807,16 +8878,11 @@ packages:
resolution:
{ integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== }
- path-scurry@2.0.0:
+ path-scurry@2.0.1:
resolution:
- { integrity: sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg== }
+ { integrity: sha512-oWyT4gICAu+kaA7QWk/jvCHWarMKNs6pXOGWKDTr7cw4IGcUbW+PeTfbaQiLGheFRpjo6O9J0PmyMfQPjH71oA== }
engines: { node: 20 || >=22 }
- path-to-regexp@8.2.0:
- resolution:
- { integrity: sha512-TdrF7fW9Rphjq4RjrW0Kp2AW0Ahwu9sRGTkS6bvDi0SCwZlEZYmcfDbEsTz8RVk0EHIS/Vd1bv3JhG+1xZuAyQ== }
- engines: { node: ">=16" }
-
path-type@3.0.0:
resolution:
{ integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== }
@@ -8835,9 +8901,9 @@ packages:
resolution:
{ integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w== }
- pathval@2.0.0:
+ pathval@2.0.1:
resolution:
- { integrity: sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA== }
+ { integrity: sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ== }
engines: { node: ">= 14.16" }
pg-int8@1.0.1:
@@ -8845,9 +8911,9 @@ packages:
{ integrity: sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw== }
engines: { node: ">=4.0.0" }
- pg-protocol@1.10.0:
+ pg-protocol@1.10.3:
resolution:
- { integrity: sha512-IpdytjudNuLv8nhlHs/UrVBhU0e78J0oIS/0AVdTbWxSOkFUVdsHC/NrorO6nXsQNDTT1kzDSOMJubBQviX18Q== }
+ { integrity: sha512-6DIBgBQaTKDJyxnXaLiLR8wBpQQcGWuAESkRBX/t6OwA8YsqP+iVSiond2EDy6Y/dsGk8rh/jtax3js5NeV7JQ== }
pg-types@2.2.0:
resolution:
@@ -8863,9 +8929,9 @@ packages:
{ integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== }
engines: { node: ">=8.6" }
- picomatch@4.0.2:
+ picomatch@4.0.3:
resolution:
- { integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg== }
+ { integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q== }
engines: { node: ">=12" }
pidtree@0.6.0:
@@ -8897,9 +8963,9 @@ packages:
resolution:
{ integrity: sha512-F63x5tizV6WCh4R6RHyi2Ml+M70DNRXt/+HANowMflpgGFMAym/VKm6G7ZOQRjqN7XbGxK1Lg9t6ZrtzOaivMw== }
- pino-pretty@13.0.0:
+ pino-pretty@13.1.2:
resolution:
- { integrity: sha512-cQBBIVG3YajgoUjo1FdKVRX6t9XPxwB9lcNJVD5GCnNM4Y6T12YYx8c6zEejxQsU0wrg9TwmDulcE9LR7qcJqA== }
+ { integrity: sha512-3cN0tCakkT4f3zo9RXDIhy6GTvtYD6bK4CRBLN9j3E/ePqN1tugAXD5rGVfoChW6s0hiek+eyYlLNqc/BG7vBQ== }
hasBin: true
pino-std-serializers@4.0.0:
@@ -8915,23 +8981,18 @@ packages:
{ integrity: sha512-dMACeu63HtRLmCG8VKdy4cShCPKaYDR4youZqoSWLxl5Gu99HUw8bw75thbPv9Nip+H+QYX8o3ZJbTdVZZ2TVg== }
hasBin: true
- pino@9.6.0:
+ pino@9.14.0:
resolution:
- { integrity: sha512-i85pKRCt4qMjZ1+L7sy2Ag4t1atFcdbEt76+7iRJn1g2BvsnRMGu9p8pivl9fs63M2kF/A0OacFZhTub+m/qMg== }
+ { integrity: sha512-8OEwKp5juEvb/MjpIc4hjqfgCNysrS94RIOMXYvpYCdm/jglrKEiAYmiumbmGhCvs+IcInsphYDFwqrjr7398w== }
hasBin: true
- pkce-challenge@5.0.0:
- resolution:
- { integrity: sha512-ueGLflrrnvwB3xuo/uGob5pd5FN7l0MsLf0Z87o/UQmRtwjvfylfc9MurIxRAWywCYTgrvpXBcqjV4OfCYGCIQ== }
- engines: { node: ">=16.20.0" }
-
pkg-types@1.3.1:
resolution:
{ integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ== }
- pkg-types@2.1.0:
+ pkg-types@2.3.0:
resolution:
- { integrity: sha512-wmJwA+8ihJixSoHKxZJRBQG1oY8Yr9pGLzRmSsNms0iNWyHHAlZCa7mmKiFR10YPZuz/2k169JiS/inOjBCZ2A== }
+ { integrity: sha512-SIqCzDRg0s9npO5XQ3tNZioRY1uK06lA41ynBC1YmFTmnY6FjUjVt6s4LoADmwoig1qqD0oK8h1p/8mlMx8Oig== }
pkg-up@3.1.0:
resolution:
@@ -8971,9 +9032,9 @@ packages:
resolution:
{ integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== }
- postcss@8.5.3:
+ postcss@8.5.6:
resolution:
- { integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A== }
+ { integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg== }
engines: { node: ^10 || ^12 || >=14 }
postgres-array@2.0.0:
@@ -8996,9 +9057,9 @@ packages:
{ integrity: sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ== }
engines: { node: ">=0.10.0" }
- preact@10.26.6:
+ preact@10.27.2:
resolution:
- { integrity: sha512-5SRRBinwpwkaD+OqlBDeITlRgvd8I8QlxHJw9AxSdMNV6O+LodN9nUyYGpSF7sadHjs6RzeFShMexC6DbtWr9g== }
+ { integrity: sha512-5SYSgFKSyhCbk6SrXyMpqjb5+MQBgfvEKE/OC+PujcY34sOpqtr+0AZQtPYx5IA6VxynQ7rUPCtKzyovpj9Bpg== }
prelude-ls@1.2.1:
resolution:
@@ -9015,12 +9076,14 @@ packages:
{ integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== }
engines: { node: ">=6.0.0" }
- prettier-plugin-tailwindcss@0.6.11:
+ prettier-plugin-tailwindcss@0.6.14:
resolution:
- { integrity: sha512-YxaYSIvZPAqhrrEpRtonnrXdghZg1irNg4qrjboCXrpybLWVs55cW2N3juhspVJiO0JBvYJT8SYsJpc8OQSnsA== }
+ { integrity: sha512-pi2e/+ZygeIqntN+vC573BcW5Cve8zUB0SSAGxqpB4f96boZF4M3phPVoOFCeypwkpRYdi7+jQ5YJJUwrkGUAg== }
engines: { node: ">=14.21.3" }
peerDependencies:
"@ianvs/prettier-plugin-sort-imports": "*"
+ "@prettier/plugin-hermes": "*"
+ "@prettier/plugin-oxc": "*"
"@prettier/plugin-pug": "*"
"@shopify/prettier-plugin-liquid": "*"
"@trivago/prettier-plugin-sort-imports": "*"
@@ -9040,6 +9103,10 @@ packages:
peerDependenciesMeta:
"@ianvs/prettier-plugin-sort-imports":
optional: true
+ "@prettier/plugin-hermes":
+ optional: true
+ "@prettier/plugin-oxc":
+ optional: true
"@prettier/plugin-pug":
optional: true
"@shopify/prettier-plugin-liquid":
@@ -9094,9 +9161,9 @@ packages:
resolution:
{ integrity: sha512-du4wfLyj4yCZq1VupnVSZmRsPJsNuxoDQFdCFHLaYiEbFBD7QE0a+I4D7hOxrVnh78QE/YipFAj9lXHiXocV+Q== }
- process-warning@4.0.1:
+ process-warning@5.0.0:
resolution:
- { integrity: sha512-3c2LzQ3rY9d0hc1emcsHhfT9Jwz0cChib/QN89oME2R451w5fy3f0afAhERFZAwrbDU43wk12d0ORBpDVME50Q== }
+ { integrity: sha512-a39t9ApHNx2L4+HBnQKqxxHNs1r7KF+Intd8Q/g1bUh6q0WIp9voPXJ/x0j+ZL45KF1pJd9+q2jLIRMfvEshkA== }
prompts@2.4.2:
resolution:
@@ -9111,16 +9178,11 @@ packages:
resolution:
{ integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA== }
- protobufjs@7.5.3:
+ protobufjs@7.5.4:
resolution:
- { integrity: sha512-sildjKwVqOI2kmFDiXQ6aEB0fjYTafpEvIBs8tOR8qI4spuL9OPROLVu2qZqi/xgCfsHIwVqlaF8JBjWFHnKbw== }
+ { integrity: sha512-CvexbZtbov6jW2eXAvLukXjXUW1TzFaivC46BpWc/3BpcCysb5Vffu+B3XHMm8lVEuy2Mm4XGex8hBSg1yapPg== }
engines: { node: ">=12.0.0" }
- proxy-addr@2.0.7:
- resolution:
- { integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg== }
- engines: { node: ">= 0.10" }
-
proxy-compare@2.6.0:
resolution:
{ integrity: sha512-8xuCeM3l8yqdmbPoYeLbrAXCBWu19XEYc5/F28f5qOaoAIMyfmBUkl5axiK+x9olUvRlcekvnm98AP9RDngOIw== }
@@ -9129,9 +9191,9 @@ packages:
resolution:
{ integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== }
- pump@3.0.2:
+ pump@3.0.3:
resolution:
- { integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw== }
+ { integrity: sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA== }
punycode@2.3.1:
resolution:
@@ -9163,14 +9225,9 @@ packages:
engines: { node: ">=10.13.0" }
hasBin: true
- qs@6.14.0:
- resolution:
- { integrity: sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w== }
- engines: { node: ">=0.6" }
-
- quansync@0.2.10:
+ quansync@0.2.11:
resolution:
- { integrity: sha512-t41VRkMYbkHyCYmOvx/6URnN80H7k4X0lLdBMGsz+maAwrJQYB1djpV6vHrQIBE0WBSGqhtEHrK9U3DWWH8v7A== }
+ { integrity: sha512-AifT7QEbW9Nri4tAwR5M/uzpBuqfZf+zwaEM/QkzEjj7NBuFD2rBuy0K3dE+8wltbezDV7JMA0WfnCPYRSYbXA== }
query-string@7.1.3:
resolution:
@@ -9193,26 +9250,16 @@ packages:
resolution:
{ integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== }
- range-parser@1.2.1:
- resolution:
- { integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== }
- engines: { node: ">= 0.6" }
-
- raw-body@3.0.0:
- resolution:
- { integrity: sha512-RmkhL8CAyCRPXCE28MMH0z2PNWQBNk2Q09ZdxM9IOOXwxwZbN+qbWaatPkdkWIKL2ZVDImrN/pK5HTRz2PcS4g== }
- engines: { node: ">= 0.8" }
-
rc@1.2.8:
resolution:
{ integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== }
hasBin: true
- react-dom@19.1.0:
+ react-dom@19.2.0:
resolution:
- { integrity: sha512-Xs1hdnE+DyKgeHJeJznQmYMIBG3TKIHJJT95Q58nHLSrElKlGQqDTR2HQ9fx5CN/Gk6Vh/kupBTDLU11/nDk/g== }
+ { integrity: sha512-UlbRu4cAiGaIewkPyiRGJk0imDN2T3JjieT6spoL2UeSf5od4n5LB/mQ4ejmxhCFT1tYe8IvaFulzynWovsEFQ== }
peerDependencies:
- react: ^19.1.0
+ react: ^19.2.0
react-is@16.13.1:
resolution:
@@ -9226,12 +9273,12 @@ packages:
resolution:
{ integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg== }
- react-reconciler@0.29.2:
+ react-reconciler@0.33.0:
resolution:
- { integrity: sha512-zZQqIiYgDCTP/f1N/mAR10nJGrPD2ZR+jDSEsKWJHYC7Cm2wodlwbR3upZRdC3cjIjSlTLNVyO7Iu0Yy7t2AYg== }
+ { integrity: sha512-KetWRytFv1epdpJc3J4G75I4WrplZE5jOL7Yq0p34+OVOKF4Se7WrdIdVC45XsSSmUTlht2FM/fM1FZb1mfQeA== }
engines: { node: ">=0.10.0" }
peerDependencies:
- react: ^18.3.1
+ react: ^19.2.0
react-refresh@0.17.0:
resolution:
@@ -9249,9 +9296,9 @@ packages:
"@types/react":
optional: true
- react-remove-scroll@2.6.3:
+ react-remove-scroll@2.7.1:
resolution:
- { integrity: sha512-pnAi91oOk8g8ABQKGF5/M9qxmmOPxaAnopyTHYfqYEwJhyFrbbBtHuSgtKEoH0jpcxx5o3hXqH1mNd9/Oi+8iQ== }
+ { integrity: sha512-HpMh8+oahmIdOuS5aFKKY6Pyog+FNaZV/XyJOq7b4YFwsFHe5yYfdbIalI4k3vU2nSDql7YskmUseHsRrJqIPA== }
engines: { node: ">=10" }
peerDependencies:
"@types/react": "*"
@@ -9260,9 +9307,9 @@ packages:
"@types/react":
optional: true
- react-router@7.6.0:
+ react-router@7.9.6:
resolution:
- { integrity: sha512-GGufuHIVCJDbnIAXP3P9Sxzq3UUsddG3rrI3ut1q6m0FI6vxVBF3JoPQ38+W/blslLH4a5Yutp8drkEpXoddGQ== }
+ { integrity: sha512-Y1tUp8clYRXpfPITyuifmSoE2vncSME18uVLgaqyxh9H35JWpIfzHo+9y3Fzh5odk/jxPW29IgLgzcdwxGqyNA== }
engines: { node: ">=20.0.0" }
peerDependencies:
react: ">=18"
@@ -9313,14 +9360,9 @@ packages:
react-dom:
optional: true
- react@18.3.1:
+ react@19.2.0:
resolution:
- { integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ== }
- engines: { node: ">=0.10.0" }
-
- react@19.1.0:
- resolution:
- { integrity: sha512-FS+XFBNvn3GTAWq26joslQgWNoFu08F4kl0J4CgdNKADkdSGXQyTCnKteIAJy96Br6YbpEU1LSzV5dYtjMkMDg== }
+ { integrity: sha512-tmbWg6W31tQLeB5cdIBOicJDJRR2KzXsV7uSK9iNfLWQ5bIZfxuPEHp7M8wiHyHnn0DD1i7w3Zmin0FtkrwoCQ== }
engines: { node: ">=0.10.0" }
read-package-up@11.0.0:
@@ -9366,9 +9408,9 @@ packages:
resolution:
{ integrity: sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w== }
- recharts@2.15.3:
+ recharts@2.15.4:
resolution:
- { integrity: sha512-EdOPzTwcFSuqtvkDoaM5ws/Km1+WTAO2eizL7rqiG0V2UVhTnz0m7J2i0CjVPUCdEkZImaWvXLbZDS2H5t6GFQ== }
+ { integrity: sha512-UT/q6fwS3c1dHbXv2uFgYJ9BMFHu3fwnd7AYZaEQhXuYQ4hgsxLvsUXzGdKeZrW5xopzDCvuA2N41WJ88I7zIw== }
engines: { node: ">=14" }
peerDependencies:
react: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
@@ -9445,9 +9487,9 @@ packages:
{ integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg== }
deprecated: https://github.com/lydell/resolve-url#deprecated
- resolve@1.22.10:
+ resolve@1.22.11:
resolution:
- { integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w== }
+ { integrity: sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ== }
engines: { node: ">= 0.4" }
hasBin: true
@@ -9490,17 +9532,12 @@ packages:
resolution:
{ integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA== }
- rollup@4.40.2:
+ rollup@4.53.3:
resolution:
- { integrity: sha512-tfUOg6DTP4rhQ3VjOO6B4wyrJnGOX85requAXvqYTHsOgb2TFJdZ3aWpT8W2kPoypSGP7dZUyzxJ9ee4buM5Fg== }
+ { integrity: sha512-w8GmOxZfBmKknvdXU1sdM9NHcoQejwF/4mNgj2JuEEdRaHwwF12K7e9eXn1nLZ07ad+du76mkVsyeb2rKGllsA== }
engines: { node: ">=18.0.0", npm: ">=8.0.0" }
hasBin: true
- router@2.2.0:
- resolution:
- { integrity: sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ== }
- engines: { node: ">= 18" }
-
rrweb-cssom@0.8.0:
resolution:
{ integrity: sha512-guoltQEx+9aMf2gDZ0s62EcV8lsXR+0w8915TC3ITdn2YueuNjdAYh/levpU9nFaoChh9RUS5ZdQMrKfVEN9tw== }
@@ -9509,10 +9546,6 @@ packages:
resolution:
{ integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== }
- rustbn-wasm@0.4.0:
- resolution:
- { integrity: sha512-C2ujvPv05hXC69MD7YwSsoUEsT/X/dKHkkgwN9B0ZTgb0OXDC9yaHhE6Pq+uaRAzMyW0Y97bwc4JO4cqPDzVuQ== }
-
safe-buffer@5.1.2:
resolution:
{ integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== }
@@ -9544,26 +9577,22 @@ packages:
{ integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA== }
engines: { node: ">=v12.22.7" }
- scheduler@0.23.2:
+ scheduler@0.27.0:
resolution:
- { integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ== }
+ { integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q== }
- scheduler@0.26.0:
+ schema-utils@4.3.3:
resolution:
- { integrity: sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA== }
-
- schema-utils@4.3.2:
- resolution:
- { integrity: sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ== }
+ { integrity: sha512-eflK8wEtyOE6+hsaRVPxvUKYCpRgzLqDTb8krvAsRIwOGlHoSgYLgBXoubGgLd2fT41/OUYdb48v4k4WWHQurA== }
engines: { node: ">= 10.13.0" }
scrypt-js@3.0.1:
resolution:
{ integrity: sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA== }
- secure-json-parse@2.7.0:
+ secure-json-parse@4.1.0:
resolution:
- { integrity: sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw== }
+ { integrity: sha512-l4KnYfEyqYJxDwlNVyRfO2E4NTHfMKAWdUuA8J0yve2Dz/E/PdBepY03RvyJpssIpRFwJoCD55wA+mEDs6ByWA== }
seedrandom@3.0.5:
resolution:
@@ -9590,33 +9619,23 @@ packages:
engines: { node: ">=10" }
hasBin: true
- semver@7.7.1:
+ semver@7.7.3:
resolution:
- { integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA== }
+ { integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q== }
engines: { node: ">=10" }
hasBin: true
- send@1.2.0:
- resolution:
- { integrity: sha512-uaW0WwXKpL9blXE2o0bRhoL2EGXIrZxQ2ZQ4mgcfoBxdFmQold+qWsD2jLrfZ0trjKL6vOw0j//eAwcALFjKSw== }
- engines: { node: ">= 18" }
-
serialize-javascript@6.0.2:
resolution:
{ integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g== }
- serve-static@2.2.0:
- resolution:
- { integrity: sha512-61g9pCh0Vnh7IutZjtLGGpTA355+OPn2TyDv/6ivP2h/AdAVX9azsoxmg2/M6nZeQZNYBEwIcsne1mJd9oQItQ== }
- engines: { node: ">= 18" }
-
set-blocking@2.0.0:
resolution:
{ integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== }
- set-cookie-parser@2.7.1:
+ set-cookie-parser@2.7.2:
resolution:
- { integrity: sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ== }
+ { integrity: sha512-oeM1lpU/UvhTxw+g3cIfxXHyJRc/uidd3yK1P242gzHds0udQBYzs3y8j4gCCW+ZJ7ad0yctld8RYO+bdurlvw== }
set-function-length@1.2.2:
resolution:
@@ -9628,13 +9647,10 @@ packages:
{ integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw== }
engines: { node: ">=0.10.0" }
- setprototypeof@1.2.0:
+ sha.js@2.4.12:
resolution:
- { integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== }
-
- sha.js@2.4.11:
- resolution:
- { integrity: sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ== }
+ { integrity: sha512-8LzC5+bvI45BjpfXU8V5fdU2mfeKiQe1D1gIMn7XUlF3OTUrpdJpPPH4EMAnF0DsHHdSZqCdSss5qCmJKuiO3w== }
+ engines: { node: ">= 0.10" }
hasBin: true
shallowequal@1.1.0:
@@ -9655,26 +9671,6 @@ packages:
resolution:
{ integrity: sha512-sQTKC1Re/rM6XyFM6fIAGHRPVGvyXfgzIDvzoq608vM+jeyVD0Tu1E6Np0Kc2zAIFWIj963V2800iF/9LPieQw== }
- side-channel-list@1.0.0:
- resolution:
- { integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA== }
- engines: { node: ">= 0.4" }
-
- side-channel-map@1.0.1:
- resolution:
- { integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA== }
- engines: { node: ">= 0.4" }
-
- side-channel-weakmap@1.0.2:
- resolution:
- { integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A== }
- engines: { node: ">= 0.4" }
-
- side-channel@1.1.0:
- resolution:
- { integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw== }
- engines: { node: ">= 0.4" }
-
siginfo@2.0.0:
resolution:
{ integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g== }
@@ -9706,9 +9702,9 @@ packages:
{ integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ== }
engines: { node: ">=12" }
- slice-ansi@7.1.0:
+ slice-ansi@7.1.2:
resolution:
- { integrity: sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg== }
+ { integrity: sha512-iOBWFgUX7caIZiuutICxVgX1SdxwAVFFKwt1EvMYYec/NWO5meOJ6K5uQxhrYBdQJne4KxiqZc+KptFOWFSI9w== }
engines: { node: ">=18" }
snake-case@3.0.4:
@@ -9740,9 +9736,9 @@ packages:
{ integrity: sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew== }
engines: { node: ">=10.0.0" }
- solady@0.1.18:
+ solady@0.1.26:
resolution:
- { integrity: sha512-l++2B3//hZZJt/VpwzBWdx/+7iBQIdHnnheSue8ATbuwCfdpXQr6VPYutHEJTgYvuMhK/0AJGlq6ufE66IqwWQ== }
+ { integrity: sha512-dhGr/ptJFdea/1KE6xgqgwEdbMhUiSfRc6A+jLeltPe16zyt9qtED3PElIBVRnzEmUO5aZTjKVAr6SlqXBBcIw== }
solc@0.8.28:
resolution:
@@ -9756,9 +9752,9 @@ packages:
engines: { node: ">=12.0.0" }
hasBin: true
- solidity-ast@0.4.60:
+ solidity-ast@0.4.61:
resolution:
- { integrity: sha512-UwhasmQ37ji1ul8cIp0XlrQ/+SVQhy09gGqJH4jnwdo2TgI6YIByzi0PI5QvIGcIdFOs1pbSmJW1pnWB7AVh2w== }
+ { integrity: sha512-OYBJYcYyG7gLV0VuXl9CUrvgJXjV/v0XnR4+1YomVe3q+QyENQXJJxAEASUz4vN6lMAl+C8RSRSr5MBAz09f6w== }
sonic-boom@2.8.0:
resolution:
@@ -9768,9 +9764,9 @@ packages:
resolution:
{ integrity: sha512-INb7TM37/mAcsGmc9hyyI6+QR3rR1zVRu36B0NeGXKnOOLiZOfER5SA+N7X7k3yUYRzLWafduTDvJAfDswwEww== }
- sonner@2.0.3:
+ sonner@2.0.7:
resolution:
- { integrity: sha512-njQ4Hht92m0sMqqHVDL32V2Oun9W1+PHO9NDv9FHfJjT3JT22IG4Jpo3FPQy+mouRKCXFWO+r67v6MrHX2zeIA== }
+ { integrity: sha512-W6ZN4p58k8aDKA4XPcx2hpIQXBRAgyiWVkYhT7CvK6D3iAu7xjvVyhQHg2/iaKJZ1XVJ4r7XuwGL+WGEK37i9w== }
peerDependencies:
react: ^18.0.0 || ^19.0.0 || ^19.0.0-rc
react-dom: ^18.0.0 || ^19.0.0 || ^19.0.0-rc
@@ -9816,9 +9812,9 @@ packages:
resolution:
{ integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== }
- spdx-license-ids@3.0.21:
+ spdx-license-ids@3.0.22:
resolution:
- { integrity: sha512-Bvg/8F5XephndSK3JffaRqdT+gyhfqIPwDHpX80tJrF8QQRYMo8sNMeaZ2Dp5+jhwKnUmIOyFFQfHRkjJm5nXg== }
+ { integrity: sha512-4PRT4nh1EImPbt2jASOKHX7PB7I+e4IWNLvkKFDxNhJlfjbYlleYQh285Z/3mPTHSAK/AvdMmw5BNNuYH8ShgQ== }
split-on-first@1.1.0:
resolution:
@@ -9839,6 +9835,11 @@ packages:
resolution:
{ integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== }
+ stable-hash-x@0.2.0:
+ resolution:
+ { integrity: sha512-o3yWv49B/o4QZk5ZcsALc6t0+eCelPc44zZsLtCQnZPDwFpDYSWcDnrv2TtMmMbQ7uKo3J0HTURCqckw23czNQ== }
+ engines: { node: ">=12.0.0" }
+
stable-hash@0.0.5:
resolution:
{ integrity: sha512-+L3ccpzibovGXFK+Ap/f8LOS0ahMrHTf3xu7mMLSpEGU0EO9ucaysSylKo9eRDFNhWve/y275iPmIZ4z39a9iA== }
@@ -9857,14 +9858,9 @@ packages:
{ integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g== }
engines: { node: ">=0.10.0" }
- statuses@2.0.1:
- resolution:
- { integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== }
- engines: { node: ">= 0.8" }
-
- std-env@3.9.0:
+ std-env@3.10.0:
resolution:
- { integrity: sha512-UGvjygr6F6tpH7o2qyqR6QYpwraIjKSdtzyBdyytFOHmPZY917kwdwLG0RbOjWOnKmnm3PeHjaoLLMie7kPLQw== }
+ { integrity: sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg== }
stream-events@1.0.5:
resolution:
@@ -9904,6 +9900,11 @@ packages:
{ integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ== }
engines: { node: ">=18" }
+ string-width@8.1.0:
+ resolution:
+ { integrity: sha512-Kxl3KJGb/gxkaUMOjRsQ8IrXiGW75O4E3RPjFIINOVH8AMl2SQ/yWdTzWwF3FevIX9LcMAjJW+GRwAlAbTSXdg== }
+ engines: { node: ">=20" }
+
string_decoder@1.1.1:
resolution:
{ integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== }
@@ -9927,9 +9928,9 @@ packages:
{ integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== }
engines: { node: ">=8" }
- strip-ansi@7.1.0:
+ strip-ansi@7.1.2:
resolution:
- { integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ== }
+ { integrity: sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA== }
engines: { node: ">=12" }
strip-final-newline@3.0.0:
@@ -9952,10 +9953,23 @@ packages:
{ integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== }
engines: { node: ">=8" }
+ strip-json-comments@5.0.3:
+ resolution:
+ { integrity: sha512-1tB5mhVo7U+ETBKNf92xT4hrQa3pm0MZ0PQvuDnWgAAGHDsfp4lPSpiS6psrSiet87wyGPh9ft6wmhOMQ0hDiw== }
+ engines: { node: ">=14.16" }
+
+ strip-literal@3.1.0:
+ resolution:
+ { integrity: sha512-8r3mkIM/2+PpjHoOtiAW8Rg3jJLHaV7xPwG+YRGrv6FP0wwk/toTpATxWYOW0BKdWwl82VT2tFYi5DlROa0Mxg== }
+
strnum@1.1.2:
resolution:
{ integrity: sha512-vrN+B7DBIoTTZjnPNewwhx6cBA/H+IS7rfW68n7XxC1y7uoiGQBxaKzqucGUgavX15dJgiGztLJ8vxuEzwqBdA== }
+ strnum@2.1.1:
+ resolution:
+ { integrity: sha512-7ZvoFTiCnGxBtDqJ//Cu6fWtZtc7Y3x+QOirG15wztbdngGSkht27o2pyGWrVy0b4WAy3jbKmnoK6g5VlVNUUw== }
+
stubs@3.0.0:
resolution:
{ integrity: sha512-PdHt7hHUJKxvTCgbKX9C1V/ftOcjJQgz8BZwNfV5c4B6dcGqlpelTbJ999jBGZ2jYiPAwcX5dP6oBwVlBlUbxw== }
@@ -10006,14 +10020,14 @@ packages:
resolution:
{ integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== }
- synckit@0.11.4:
+ synckit@0.11.11:
resolution:
- { integrity: sha512-Q/XQKRaJiLiFIBNN+mndW7S/RHxvwzuZS6ZwmRzUBqJBv/5QIKCEwkBC8GBf8EQJKYnaFs0wOZbKTXBPj8L9oQ== }
+ { integrity: sha512-MeQTA1r0litLUf0Rp/iisCaL8761lKAZHaimlbGK4j0HysC4PLfqygQj9srcs0m2RdtDYnF8UuYyKpbjHYp7Jw== }
engines: { node: ^14.18.0 || >=16.0.0 }
- tailwind-merge@3.3.0:
+ tailwind-merge@3.4.0:
resolution:
- { integrity: sha512-fyW/pEfcQSiigd5SNn0nApUOxx0zB/dm6UDU/rEwc2c3sX2smWUNbapHv+QRqLGVp9GWX3THIa7MUGPo+YkDzQ== }
+ { integrity: sha512-uSaO4gnW+b3Y2aWoWfFpX62vn2sR3skfhbjsEnaBI81WD1wBLlHZe5sWf0AqjksNdYTbGBEd0UasQMT3SNV15g== }
tailwindcss-animate@1.0.7:
resolution:
@@ -10021,20 +10035,15 @@ packages:
peerDependencies:
tailwindcss: ">=3.0.0 || insiders"
- tailwindcss@4.1.6:
+ tailwindcss@4.1.17:
resolution:
- { integrity: sha512-j0cGLTreM6u4OWzBeLBpycK0WIh8w7kSwcUsQZoGLHZ7xDTdM69lN64AgoIEEwFi0tnhs4wSykUa5YWxAzgFYg== }
+ { integrity: sha512-j9Ee2YjuQqYT9bbRTfTZht9W/ytp5H+jJpZKiYdP/bpnXARAuELt9ofP0lPnmHjbga7SNQIxdTAXCmtKVYjN+Q== }
- tapable@2.2.1:
+ tapable@2.3.0:
resolution:
- { integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== }
+ { integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg== }
engines: { node: ">=6" }
- tar@7.4.3:
- resolution:
- { integrity: sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw== }
- engines: { node: ">=18" }
-
teeny-request@9.0.0:
resolution:
{ integrity: sha512-resvxdc6Mgb7YEThw6G6bExlXKkv6+YbuzGg9xuXxSgxJF7Ozs+o8Y9+2R3sArdWdW8nOokoQb1yrpFB0pQK2g== }
@@ -10057,9 +10066,9 @@ packages:
uglify-js:
optional: true
- terser@5.39.0:
+ terser@5.44.1:
resolution:
- { integrity: sha512-LBAhFyLho16harJoWMg/nZsQYgTrg5jXOn2nCYjRUcZZEdE3qa2zb8QEDRUGVZBW4rlazf2fxkg8tztybTaqWw== }
+ { integrity: sha512-t/R3R/n0MSwnnazuPpPNVO60LX0SKL45pyl9YlvxIdkH0Of7D5qM2EVe+yASRIlY5pZ73nclYJfNANGWPwFDZw== }
engines: { node: ">=10" }
hasBin: true
@@ -10087,10 +10096,6 @@ packages:
resolution:
{ integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg== }
- tiny-jsonc@1.0.2:
- resolution:
- { integrity: sha512-f5QDAfLq6zIVSyCZQZhhyl0QS6MvAyTxgz4X4x3+EoCktNWEYJ6PeoEA97fyb98njpBNNi88ybpD7m+BDFXaCw== }
-
tinybench@2.9.0:
resolution:
{ integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg== }
@@ -10103,18 +10108,18 @@ packages:
resolution:
{ integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA== }
- tinyglobby@0.2.13:
+ tinyglobby@0.2.15:
resolution:
- { integrity: sha512-mEwzpUgrLySlveBwEVDMKk5B57bhLPYovRfPAXD5gA/98Opn0rCDj3GtLwFvCvH5RK9uPCExUROW5NjDwvqkxw== }
+ { integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ== }
engines: { node: ">=12.0.0" }
tinygradient@1.1.5:
resolution:
{ integrity: sha512-8nIfc2vgQ4TeLnk2lFj4tRLvvJwEfQuabdsmvDdQPT0xlk9TaNtpGd6nNRxXoK6vQhN6RSzj+Cnp5tTQmpxmbw== }
- tinypool@1.0.2:
+ tinypool@1.1.1:
resolution:
- { integrity: sha512-al6n+QEANGFOMf/dmUMsuS5/r9B06uwlyNjZZql/zv8J7ybHCgoihBNORZCY2mzUuAnomQa2JdhyHKzZxPCrFA== }
+ { integrity: sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg== }
engines: { node: ^18.0.0 || >=20.0.0 }
tinyrainbow@2.0.0:
@@ -10122,9 +10127,9 @@ packages:
{ integrity: sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw== }
engines: { node: ">=14.0.0" }
- tinyspy@3.0.2:
+ tinyspy@4.0.4:
resolution:
- { integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q== }
+ { integrity: sha512-azl+t0z7pw/z958Gy9svOTuzqIk6xq+NSheJzn5MMWtWTFywIacg2wUlzKFGtt3cthx0r2SxMK0yzJOR0IES7Q== }
engines: { node: ">=14.0.0" }
tldts-core@6.1.86:
@@ -10141,6 +10146,11 @@ packages:
{ integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== }
engines: { node: ">=0.6.0" }
+ to-buffer@1.2.2:
+ resolution:
+ { integrity: sha512-db0E3UJjcFhpDhAF4tLo03oli3pwl3dbnzXOUIlRKrp+ldk/VUxzpWYZENsw2SZiuBjHAk7DfB0VU7NKdpb6sw== }
+ engines: { node: ">= 0.4" }
+
to-object-path@0.3.0:
resolution:
{ integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg== }
@@ -10166,11 +10176,6 @@ packages:
{ integrity: sha512-KsEID8AfgUy+pxVRLsWp0VzCa69wxzUDZnzGbyIST/bcgcrMvTYoFBX/QORH4YApoD89EDuUovx4BTdpOn319Q== }
engines: { node: ">=18" }
- toidentifier@1.0.1:
- resolution:
- { integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== }
- engines: { node: ">=0.6" }
-
tough-cookie@5.1.2:
resolution:
{ integrity: sha512-FVDYdxtnj0G6Qm/DhNPSb8Ju59ULcup3tuJxkFb5K8Bv2pUXILbf0xZWU8PX8Ov19OXljbUyveOFwRMwkXzO+A== }
@@ -10229,9 +10234,9 @@ packages:
resolution:
{ integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w== }
- tsx@4.19.4:
+ tsx@4.20.6:
resolution:
- { integrity: sha512-gK5GVzDkJK1SI1zwHf32Mqxf2tSJkNx+eYcNly5+nHvWqXUJYUkWBQtKauoESz3ymezAI++ZwT855x5p5eop+Q== }
+ { integrity: sha512-ytQKuwgmrrkDTFP4LjR0ToE2nqgy886GpvRSpU0JAnrdBYppuY5rLkRUYPU1yCryb24SsKBTL/hlDQAEFVwtZg== }
engines: { node: ">=18.0.0" }
hasBin: true
@@ -10250,10 +10255,10 @@ packages:
{ integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA== }
engines: { node: ">=16" }
- type-is@2.0.1:
+ typed-array-buffer@1.0.3:
resolution:
- { integrity: sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw== }
- engines: { node: ">= 0.6" }
+ { integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw== }
+ engines: { node: ">= 0.4" }
typed-function@4.2.1:
resolution:
@@ -10264,13 +10269,13 @@ packages:
resolution:
{ integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== }
- typescript-eslint@8.32.0:
+ typescript-eslint@8.47.0:
resolution:
- { integrity: sha512-UMq2kxdXCzinFFPsXc9o2ozIpYCCOiEC46MG3yEh5Vipq6BO27otTtEBZA1fQ66DulEUgE97ucQ/3YY66CPg0A== }
+ { integrity: sha512-Lwe8i2XQ3WoMjua/r1PHrCTpkubPYJCAfOurtn+mtTzqB6jNd+14n9UN1bJ4s3F49x9ixAm0FLflB/JzQ57M8Q== }
engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- typescript: ">=4.8.4 <5.9.0"
+ typescript: ">=4.8.4 <6.0.0"
typescript@5.7.3:
resolution:
@@ -10300,14 +10305,18 @@ packages:
resolution:
{ integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ== }
- undici@6.21.1:
+ undici-types@7.16.0:
+ resolution:
+ { integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw== }
+
+ undici@6.21.3:
resolution:
- { integrity: sha512-q/1rj5D0/zayJB2FraXdaWxbhWiNKDvu8naDT2dl1yTlvJp4BLtOcp2a5BvgGNQpYYJzau7tf1WgKv3b+7mqpQ== }
+ { integrity: sha512-gBLkYIlEnSp8pFbT64yFgGE6UIB9tAkhukC23PmMDCe5Nd+cRqKxSjw5y54MK2AZMgZfJWMaNE4nYUHgi1XEOw== }
engines: { node: ">=18.17" }
- undici@6.21.2:
+ undici@6.22.0:
resolution:
- { integrity: sha512-uROZWze0R0itiAKVPsYhFov9LxrPMHLMEQFszeI2gCN6bnIIZ8twzBCJcN2LJrBBLfrP0t1FW0g+JmKVl8Vk1g== }
+ { integrity: sha512-hU/10obOIu62MGYjdskASR3CUAiYaFTtC9Pa6vHyf//mAipSvSQg6od2CnJswq7fvzNS3zJhxoRkgNVaHurWKw== }
engines: { node: ">=18.17" }
unicorn-magic@0.1.0:
@@ -10330,37 +10339,32 @@ packages:
{ integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg== }
engines: { node: ">=8" }
- universal-user-agent@7.0.2:
+ universal-user-agent@7.0.3:
resolution:
- { integrity: sha512-0JCqzSKnStlRRQfCdowvqy3cy0Dvtlb8xecj/H8JFZuCze4rwjPZQOgvFvn0Ws/usCHQFGpyr+pB9adaGwXn4Q== }
+ { integrity: sha512-TmnEAEAsBJVZM/AADELsK76llnwcf9vMKuPz8JflO1frO8Lchitr0fNaN9d+Ap0BjKtqWqd/J17qeDnXh8CL2A== }
universalify@2.0.1:
resolution:
{ integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw== }
engines: { node: ">= 10.0.0" }
- unpipe@1.0.0:
- resolution:
- { integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== }
- engines: { node: ">= 0.8" }
-
- unplugin@2.3.2:
+ unplugin@2.3.10:
resolution:
- { integrity: sha512-3n7YA46rROb3zSj8fFxtxC/PqoyvYQ0llwz9wtUPUutr9ig09C8gGo5CWCwHrUzlqC1LLR43kxp5vEIyH1ac1w== }
+ { integrity: sha512-6NCPkv1ClwH+/BGE9QeoTIl09nuiAt0gS28nn1PvYXsGKRwM2TCbFA2QiilmehPDTXIe684k4rZI1yl3A1PCUw== }
engines: { node: ">=18.12.0" }
- unrs-resolver@1.7.2:
+ unrs-resolver@1.11.1:
resolution:
- { integrity: sha512-BBKpaylOW8KbHsu378Zky/dGh4ckT/4NW/0SHRABdqRLcQJ2dAOjDo9g97p04sWflm0kqPqpUatxReNV/dqI5A== }
+ { integrity: sha512-bSjt9pjaEBnNiGgc9rUiHGKv5l4/TGzDmYw3RhnkJGtLhbnnA/5qJj7x3dNDCRx/PJxu774LlH8lCOlB4hEfKg== }
unset-value@1.0.0:
resolution:
{ integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ== }
engines: { node: ">=0.10.0" }
- unstorage@1.16.0:
+ unstorage@1.17.2:
resolution:
- { integrity: sha512-WQ37/H5A7LcRPWfYOrDa1Ys02xAbpPJq6q5GkO88FBXVSQzHd7+BjEwfRqyaSWCv9MbsJy058GWjjPjcJ16GGA== }
+ { integrity: sha512-cKEsD6iBWJgOMJ6vW1ID/SYuqNf8oN4yqRk8OYqaVQ3nnkJXOT1PSpaMh2QfzLs78UN5kSNRD2c/mgjT8tX7+w== }
peerDependencies:
"@azure/app-configuration": ^1.8.0
"@azure/cosmos": ^4.2.0
@@ -10370,10 +10374,11 @@ packages:
"@azure/storage-blob": ^12.26.0
"@capacitor/preferences": ^6.0.3 || ^7.0.0
"@deno/kv": ">=0.9.0"
- "@netlify/blobs": ^6.5.0 || ^7.0.0 || ^8.1.0
+ "@netlify/blobs": ^6.5.0 || ^7.0.0 || ^8.1.0 || ^9.0.0 || ^10.0.0
"@planetscale/database": ^1.19.0
"@upstash/redis": ^1.34.3
"@vercel/blob": ">=0.27.1"
+ "@vercel/functions": ^2.2.12 || ^3.0.0
"@vercel/kv": ^1.0.1
aws4fetch: ^1.0.20
db0: ">=0.2.1"
@@ -10405,6 +10410,8 @@ packages:
optional: true
"@vercel/blob":
optional: true
+ "@vercel/functions":
+ optional: true
"@vercel/kv":
optional: true
aws4fetch:
@@ -10418,9 +10425,9 @@ packages:
uploadthing:
optional: true
- update-browserslist-db@1.1.3:
+ update-browserslist-db@1.1.4:
resolution:
- { integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw== }
+ { integrity: sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A== }
hasBin: true
peerDependencies:
browserslist: ">= 4.21.0"
@@ -10480,9 +10487,9 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
- use-sync-external-store@1.5.0:
+ use-sync-external-store@1.6.0:
resolution:
- { integrity: sha512-Rb46I4cGGVBmjamjphe8L/UnvJD+uPPtTkNvX5mZgqdbavhI4EbgIWJiIHXJ8bc/i9EQGPRh4DwEURJ552Do0A== }
+ { integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w== }
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
@@ -10540,11 +10547,6 @@ packages:
react:
optional: true
- vary@1.1.2:
- resolution:
- { integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== }
- engines: { node: ">= 0.8" }
-
victory-vendor@36.9.2:
resolution:
{ integrity: sha512-PnpQQMuxlwYdocC8fIJqVXvkeViHYzotI+NJrCuav0ZYFoq912ZHBk3mCeuj+5/VpodOjPe1z0Fk2ihgzlXqjQ== }
@@ -10555,9 +10557,9 @@ packages:
peerDependencies:
viem: ^2.21.18
- viem-tracer@1.6.0:
+ viem-tracer@1.8.0:
resolution:
- { integrity: sha512-gzEN7V0TmnfC0nQ8Z+IS+gTiOKw6hOPIMlZdn+VYBLCMLc6UDd5pUjID9nkXLF/gGvvkzey9yo2o/E9X9GMbMA== }
+ { integrity: sha512-4cyMux8N9v8gBLpmgtayhdPsNz7C46SNqaS2RrURKRFqEgDGvCGuRNn5I+PhDrnY/NZoLWWosUF3gOQ/r60lcA== }
peerDependencies:
viem: ^2.21.0
@@ -10570,24 +10572,33 @@ packages:
typescript:
optional: true
- viem@2.29.2:
+ viem@2.29.4:
+ resolution:
+ { integrity: sha512-Dhyae+w1LKKpYVXypGjBnZ3WU5EHl/Uip5RtVwVRYSVxD5VvHzqKzIfbFU1KP4vnnh3++ZNgLjBY/kVT/tPrrg== }
+ peerDependencies:
+ typescript: ">=5.0.4"
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ viem@2.39.3:
resolution:
- { integrity: sha512-cukRxab90jvQ+TDD84sU3qB3UmejYqgCw4cX8SfWzvh7JPfZXI3kAMUaT5OSR2As1Mgvx1EJawccwPjGqkSSwA== }
+ { integrity: sha512-s11rPQRvUEdc5qHK3xT4fIk4qvgPAaLwaTFq+EbFlcJJD+Xn3R4mc9H6B6fquEiHl/mdsdbG/uKCnYpoNtHNHw== }
peerDependencies:
typescript: ">=5.0.4"
peerDependenciesMeta:
typescript:
optional: true
- vite-node@3.1.3:
+ vite-node@3.2.4:
resolution:
- { integrity: sha512-uHV4plJ2IxCl4u1up1FQRrqclylKAogbtBfOTwcuJ28xFi+89PZ57BRh+naIRvH70HPwxy5QHYzg1OrEaC7AbA== }
+ { integrity: sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg== }
engines: { node: ^18.0.0 || ^20.0.0 || >=22.0.0 }
hasBin: true
- vite-plugin-dts@4.5.3:
+ vite-plugin-dts@4.5.4:
resolution:
- { integrity: sha512-P64VnD00dR+e8S26ESoFELqc17+w7pKkwlBpgXteOljFyT0zDwD8hH4zXp49M/kciy//7ZbVXIwQCekBJjfWzA== }
+ { integrity: sha512-d4sOM8M/8z7vRXHHq/ebbblfaxENjogAAekcfcDCCwAyvGqnPrc7f4NZbvItS+g4WTgerW0xDwSz5qz11JT3vg== }
peerDependencies:
typescript: "*"
vite: "*"
@@ -10601,22 +10612,22 @@ packages:
peerDependencies:
vite: ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0
- vite-plugin-static-copy@2.3.1:
+ vite-plugin-static-copy@2.3.2:
resolution:
- { integrity: sha512-EfsPcBm3ewg3UMG8RJaC0ADq6/qnUZnokXx4By4+2cAcipjT9i0Y0owIJGqmZI7d6nxk4qB1q5aXOwNuSyPdyA== }
+ { integrity: sha512-iwrrf+JupY4b9stBttRWzGHzZbeMjAHBhkrn67MNACXJVjEMRpCI10Q3AkxdBkl45IHaTfw/CNVevzQhP7yTwg== }
engines: { node: ^18.0.0 || >=20.0.0 }
peerDependencies:
vite: ^5.0.0 || ^6.0.0
- vite-plugin-svgr@4.3.0:
+ vite-plugin-svgr@4.5.0:
resolution:
- { integrity: sha512-Jy9qLB2/PyWklpYy0xk0UU3TlU0t2UMpJXZvf+hWII1lAmRHrOUKi11Uw8N3rxoNk7atZNYO3pR3vI1f7oi+6w== }
+ { integrity: sha512-W+uoSpmVkSmNOGPSsDCWVW/DDAyv+9fap9AZXBvWiQqrboJ08j2vh0tFxTD/LjwqwAd3yYSVJgm54S/1GhbdnA== }
peerDependencies:
vite: ">=2.6.0"
- vite@6.3.5:
+ vite@6.4.1:
resolution:
- { integrity: sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ== }
+ { integrity: sha512-+Oxm7q9hDoLMyJOYfUYBuHQo+dkAloi33apOPP56pzj+vsdJDzr+j1NISE5pyaAuKL4A3UD34qd0lx5+kfKp2g== }
engines: { node: ^18.0.0 || ^20.0.0 || >=22.0.0 }
hasBin: true
peerDependencies:
@@ -10655,17 +10666,17 @@ packages:
yaml:
optional: true
- vitest@3.1.3:
+ vitest@3.2.4:
resolution:
- { integrity: sha512-188iM4hAHQ0km23TN/adso1q5hhwKqUpv+Sd6p5sOuh6FhQnRNW3IsiIpvxqahtBabsJ2SLZgmGSpcYK4wQYJw== }
+ { integrity: sha512-LUCP5ev3GURDysTWiP47wRRUpLKMOfPh+yKTx3kVIEiu5KOMeqzpnYNsKyOoVrULivR8tLcks4+lga33Whn90A== }
engines: { node: ^18.0.0 || ^20.0.0 || >=22.0.0 }
hasBin: true
peerDependencies:
"@edge-runtime/vm": "*"
"@types/debug": ^4.1.12
"@types/node": ^18.0.0 || ^20.0.0 || >=22.0.0
- "@vitest/browser": 3.1.3
- "@vitest/ui": 3.1.3
+ "@vitest/browser": 3.2.4
+ "@vitest/ui": 3.2.4
happy-dom: "*"
jsdom: "*"
peerDependenciesMeta:
@@ -10705,9 +10716,9 @@ packages:
typescript:
optional: true
- watchpack@2.4.2:
+ watchpack@2.4.4:
resolution:
- { integrity: sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw== }
+ { integrity: sha512-c5EGNOiyxxV5qmTtAB7rbiXxi1ooX1pQKMLX/MIabJjRA0SJBQOjKF+KSVfHkr9U1cADPon0mRiVe/riyaiDUA== }
engines: { node: ">=10.13.0" }
wcwidth@1.0.1:
@@ -10736,18 +10747,18 @@ packages:
{ integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g== }
engines: { node: ">=12" }
- webpack-sources@3.2.3:
+ webpack-sources@3.3.3:
resolution:
- { integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w== }
+ { integrity: sha512-yd1RBzSGanHkitROoPFd6qsrxt+oFhg/129YzheDGqeustzX0vTZJZsSsQjVQC4yzBQ56K55XU8gaNCtIzOnTg== }
engines: { node: ">=10.13.0" }
webpack-virtual-modules@0.6.2:
resolution:
{ integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ== }
- webpack@5.99.8:
+ webpack@5.103.0:
resolution:
- { integrity: sha512-lQ3CPiSTpfOnrEGeXDwoq5hIGzSjmwD72GdfVzF7CQAI7t47rJG9eDWvcEkEn3CUQymAElVvDg3YNTlCYj+qUQ== }
+ { integrity: sha512-HU1JOuV1OavsZ+mfigY0j8d1TgQgbZ6M+J75zDkpEAwYeXjWSqrGJtgnPblJjd/mAyTNQ7ygw0MiKOn6etz8yw== }
engines: { node: ">=10.13.0" }
hasBin: true
peerDependencies:
@@ -10840,9 +10851,9 @@ packages:
{ integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ== }
engines: { node: ">=12" }
- wrap-ansi@9.0.0:
+ wrap-ansi@9.0.2:
resolution:
- { integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q== }
+ { integrity: sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww== }
engines: { node: ">=18" }
wrappy@1.0.2:
@@ -10905,9 +10916,9 @@ packages:
utf-8-validate:
optional: true
- ws@8.18.2:
+ ws@8.18.3:
resolution:
- { integrity: sha512-DMricUmwGZUVr++AEAe2uiVM7UoO9MAVZMDu05UQOaUII0lp+zOzLLU4Xqh/JvTqklB1T4uELaaPBKyjE1r4fQ== }
+ { integrity: sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg== }
engines: { node: ">=10.0.0" }
peerDependencies:
bufferutil: ^4.0.1
@@ -10959,15 +10970,10 @@ packages:
resolution:
{ integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== }
- yallist@5.0.0:
- resolution:
- { integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw== }
- engines: { node: ">=18" }
-
- yaml@2.7.1:
+ yaml@2.8.1:
resolution:
- { integrity: sha512-10ULxpnOCQXxJvBgxsn9ptjq6uviG/htZKk9veJGhlqn3w/DxQ631zFF+nlQXLwmImeS5amR2dl2U8sg6U9jsQ== }
- engines: { node: ">= 14" }
+ { integrity: sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw== }
+ engines: { node: ">= 14.6" }
hasBin: true
yargs-parser@18.1.3:
@@ -11008,15 +11014,9 @@ packages:
resolution:
{ integrity: sha512-8F0OI5dpWIA5IGG5NHUg9staDwz/ZPxZtvGVf01j7vHqSyZ0raHY+78atOVxRqb73AotX22uV1pXt3gYSstGag== }
- zod-to-json-schema@3.24.5:
- resolution:
- { integrity: sha512-/AuWwMP+YqiPbsJx5D6TfgRTc4kTLjsh5SOcd4bLsfUg2RcEXrFMJl1DGgdHy2aCfsIA/cr/1JM0xcB2GZji8g== }
- peerDependencies:
- zod: ^3.24.1
-
- zod-validation-error@3.4.1:
+ zod-validation-error@3.5.4:
resolution:
- { integrity: sha512-1KP64yqDPQ3rupxNv7oXhf7KdhHHgaqbKuspVoiN93TT0xrBjql+Svjkdjq/Qh/7GSMmgQs3AfvBT0heE35thw== }
+ { integrity: sha512-+hEiRIiPobgyuFlEojnqjJnhFvg4r/i3cqgcm67eehZf/WBaK3g6cD02YU9mtdVxZjv8CzCA9n/Rhrs3yAAvAw== }
engines: { node: ">=18.0.0" }
peerDependencies:
zod: ^3.24.4
@@ -11025,9 +11025,13 @@ packages:
resolution:
{ integrity: sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg== }
- zod@3.24.4:
+ zod@3.25.76:
+ resolution:
+ { integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ== }
+
+ zod@4.1.12:
resolution:
- { integrity: sha512-OdqJE9UDRPwWsrHjLN2F8bPxvwJBK22EHLWtanu0LSYr5YqzsaaW3RMgmjwr8Rypg5k+meEJdSPXJZXE/yqOMg== }
+ { integrity: sha512-JInaHOamG8pt5+Ey8kGmdcAcg3OL9reK8ltczgHTAwNhMys/6ThXHityHxVV2p3fkw/c+MAvBHFVYHFZDmjMCQ== }
zustand@5.0.0:
resolution:
@@ -11048,9 +11052,9 @@ packages:
use-sync-external-store:
optional: true
- zustand@5.0.4:
+ zustand@5.0.8:
resolution:
- { integrity: sha512-39VFTN5InDtMd28ZhjLyuTnlytDr9HfwO512Ai4I8ZABCoyAj4F1+sr7sD1jP/+p7k77Iko0Pb5NhgBFDCX0kQ== }
+ { integrity: sha512-gyPKpIaxY9XcO2vSMrLbiER7QMAMGOQZVRdJ6Zi782jkbzZygq5GI9nG8g+sMgitRtndwaBSl7uiqC49o1SSiw== }
engines: { node: ">=12.20.0" }
peerDependencies:
"@types/react": ">=18.0.0"
@@ -11068,44 +11072,39 @@ packages:
optional: true
snapshots:
- "@0no-co/graphql.web@1.1.2(graphql@16.11.0)":
+ "@0no-co/graphql.web@1.2.0(graphql@16.12.0)":
optionalDependencies:
- graphql: 16.11.0
+ graphql: 16.12.0
- "@0no-co/graphqlsp@1.12.16(graphql@16.11.0)(typescript@5.7.3)":
+ "@0no-co/graphqlsp@1.15.1(graphql@16.12.0)(typescript@5.7.3)":
dependencies:
- "@gql.tada/internal": 1.0.8(graphql@16.11.0)(typescript@5.7.3)
- graphql: 16.11.0
+ "@gql.tada/internal": 1.0.8(graphql@16.12.0)(typescript@5.7.3)
+ graphql: 16.12.0
typescript: 5.7.3
- "@adobe/css-tools@4.4.2": {}
+ "@adobe/css-tools@4.4.4": {}
- "@adraffy/ens-normalize@1.11.0": {}
+ "@adraffy/ens-normalize@1.11.1": {}
- "@alcalzone/ansi-tokenize@0.1.3":
+ "@alcalzone/ansi-tokenize@0.2.2":
dependencies:
- ansi-styles: 6.2.1
- is-fullwidth-code-point: 4.0.0
+ ansi-styles: 6.2.3
+ is-fullwidth-code-point: 5.1.0
"@alloc/quick-lru@5.2.0": {}
- "@ampproject/remapping@2.3.0":
- dependencies:
- "@jridgewell/gen-mapping": 0.3.8
- "@jridgewell/trace-mapping": 0.3.25
-
- "@asamuzakjp/css-color@3.1.7":
+ "@asamuzakjp/css-color@3.2.0":
dependencies:
- "@csstools/css-calc": 2.1.3(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
- "@csstools/css-color-parser": 3.0.9(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
- "@csstools/css-parser-algorithms": 3.0.4(@csstools/css-tokenizer@3.0.3)
- "@csstools/css-tokenizer": 3.0.3
+ "@csstools/css-calc": 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ "@csstools/css-color-parser": 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ "@csstools/css-parser-algorithms": 3.0.5(@csstools/css-tokenizer@3.0.4)
+ "@csstools/css-tokenizer": 3.0.4
lru-cache: 10.4.3
"@aws-crypto/crc32@5.2.0":
dependencies:
"@aws-crypto/util": 5.2.0
- "@aws-sdk/types": 3.804.0
+ "@aws-sdk/types": 3.936.0
tslib: 2.8.1
"@aws-crypto/sha256-browser@5.2.0":
@@ -11113,15 +11112,15 @@ snapshots:
"@aws-crypto/sha256-js": 5.2.0
"@aws-crypto/supports-web-crypto": 5.2.0
"@aws-crypto/util": 5.2.0
- "@aws-sdk/types": 3.804.0
- "@aws-sdk/util-locate-window": 3.804.0
+ "@aws-sdk/types": 3.936.0
+ "@aws-sdk/util-locate-window": 3.893.0
"@smithy/util-utf8": 2.3.0
tslib: 2.8.1
"@aws-crypto/sha256-js@5.2.0":
dependencies:
"@aws-crypto/util": 5.2.0
- "@aws-sdk/types": 3.804.0
+ "@aws-sdk/types": 3.936.0
tslib: 2.8.1
"@aws-crypto/supports-web-crypto@5.2.0":
@@ -11130,390 +11129,419 @@ snapshots:
"@aws-crypto/util@5.2.0":
dependencies:
- "@aws-sdk/types": 3.804.0
+ "@aws-sdk/types": 3.936.0
"@smithy/util-utf8": 2.3.0
tslib: 2.8.1
- "@aws-sdk/client-lambda@3.806.0":
+ "@aws-sdk/client-lambda@3.936.0":
dependencies:
"@aws-crypto/sha256-browser": 5.2.0
"@aws-crypto/sha256-js": 5.2.0
- "@aws-sdk/core": 3.806.0
- "@aws-sdk/credential-provider-node": 3.806.0
- "@aws-sdk/middleware-host-header": 3.804.0
- "@aws-sdk/middleware-logger": 3.804.0
- "@aws-sdk/middleware-recursion-detection": 3.804.0
- "@aws-sdk/middleware-user-agent": 3.806.0
- "@aws-sdk/region-config-resolver": 3.806.0
- "@aws-sdk/types": 3.804.0
- "@aws-sdk/util-endpoints": 3.806.0
- "@aws-sdk/util-user-agent-browser": 3.804.0
- "@aws-sdk/util-user-agent-node": 3.806.0
- "@smithy/config-resolver": 4.1.2
- "@smithy/core": 3.3.1
- "@smithy/eventstream-serde-browser": 4.0.2
- "@smithy/eventstream-serde-config-resolver": 4.1.0
- "@smithy/eventstream-serde-node": 4.0.2
- "@smithy/fetch-http-handler": 5.0.2
- "@smithy/hash-node": 4.0.2
- "@smithy/invalid-dependency": 4.0.2
- "@smithy/middleware-content-length": 4.0.2
- "@smithy/middleware-endpoint": 4.1.4
- "@smithy/middleware-retry": 4.1.5
- "@smithy/middleware-serde": 4.0.3
- "@smithy/middleware-stack": 4.0.2
- "@smithy/node-config-provider": 4.1.1
- "@smithy/node-http-handler": 4.0.4
- "@smithy/protocol-http": 5.1.0
- "@smithy/smithy-client": 4.2.4
- "@smithy/types": 4.2.0
- "@smithy/url-parser": 4.0.2
- "@smithy/util-base64": 4.0.0
- "@smithy/util-body-length-browser": 4.0.0
- "@smithy/util-body-length-node": 4.0.0
- "@smithy/util-defaults-mode-browser": 4.0.12
- "@smithy/util-defaults-mode-node": 4.0.12
- "@smithy/util-endpoints": 3.0.4
- "@smithy/util-middleware": 4.0.2
- "@smithy/util-retry": 4.0.3
- "@smithy/util-stream": 4.2.0
- "@smithy/util-utf8": 4.0.0
- "@smithy/util-waiter": 4.0.3
+ "@aws-sdk/core": 3.936.0
+ "@aws-sdk/credential-provider-node": 3.936.0
+ "@aws-sdk/middleware-host-header": 3.936.0
+ "@aws-sdk/middleware-logger": 3.936.0
+ "@aws-sdk/middleware-recursion-detection": 3.936.0
+ "@aws-sdk/middleware-user-agent": 3.936.0
+ "@aws-sdk/region-config-resolver": 3.936.0
+ "@aws-sdk/types": 3.936.0
+ "@aws-sdk/util-endpoints": 3.936.0
+ "@aws-sdk/util-user-agent-browser": 3.936.0
+ "@aws-sdk/util-user-agent-node": 3.936.0
+ "@smithy/config-resolver": 4.4.3
+ "@smithy/core": 3.18.5
+ "@smithy/eventstream-serde-browser": 4.2.5
+ "@smithy/eventstream-serde-config-resolver": 4.3.5
+ "@smithy/eventstream-serde-node": 4.2.5
+ "@smithy/fetch-http-handler": 5.3.6
+ "@smithy/hash-node": 4.2.5
+ "@smithy/invalid-dependency": 4.2.5
+ "@smithy/middleware-content-length": 4.2.5
+ "@smithy/middleware-endpoint": 4.3.12
+ "@smithy/middleware-retry": 4.4.12
+ "@smithy/middleware-serde": 4.2.6
+ "@smithy/middleware-stack": 4.2.5
+ "@smithy/node-config-provider": 4.3.5
+ "@smithy/node-http-handler": 4.4.5
+ "@smithy/protocol-http": 5.3.5
+ "@smithy/smithy-client": 4.9.8
+ "@smithy/types": 4.9.0
+ "@smithy/url-parser": 4.2.5
+ "@smithy/util-base64": 4.3.0
+ "@smithy/util-body-length-browser": 4.2.0
+ "@smithy/util-body-length-node": 4.2.1
+ "@smithy/util-defaults-mode-browser": 4.3.11
+ "@smithy/util-defaults-mode-node": 4.2.14
+ "@smithy/util-endpoints": 3.2.5
+ "@smithy/util-middleware": 4.2.5
+ "@smithy/util-retry": 4.2.5
+ "@smithy/util-stream": 4.5.6
+ "@smithy/util-utf8": 4.2.0
+ "@smithy/util-waiter": 4.2.5
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
- "@aws-sdk/client-sso@3.806.0":
+ "@aws-sdk/client-sso@3.936.0":
dependencies:
"@aws-crypto/sha256-browser": 5.2.0
"@aws-crypto/sha256-js": 5.2.0
- "@aws-sdk/core": 3.806.0
- "@aws-sdk/middleware-host-header": 3.804.0
- "@aws-sdk/middleware-logger": 3.804.0
- "@aws-sdk/middleware-recursion-detection": 3.804.0
- "@aws-sdk/middleware-user-agent": 3.806.0
- "@aws-sdk/region-config-resolver": 3.806.0
- "@aws-sdk/types": 3.804.0
- "@aws-sdk/util-endpoints": 3.806.0
- "@aws-sdk/util-user-agent-browser": 3.804.0
- "@aws-sdk/util-user-agent-node": 3.806.0
- "@smithy/config-resolver": 4.1.2
- "@smithy/core": 3.3.1
- "@smithy/fetch-http-handler": 5.0.2
- "@smithy/hash-node": 4.0.2
- "@smithy/invalid-dependency": 4.0.2
- "@smithy/middleware-content-length": 4.0.2
- "@smithy/middleware-endpoint": 4.1.4
- "@smithy/middleware-retry": 4.1.5
- "@smithy/middleware-serde": 4.0.3
- "@smithy/middleware-stack": 4.0.2
- "@smithy/node-config-provider": 4.1.1
- "@smithy/node-http-handler": 4.0.4
- "@smithy/protocol-http": 5.1.0
- "@smithy/smithy-client": 4.2.4
- "@smithy/types": 4.2.0
- "@smithy/url-parser": 4.0.2
- "@smithy/util-base64": 4.0.0
- "@smithy/util-body-length-browser": 4.0.0
- "@smithy/util-body-length-node": 4.0.0
- "@smithy/util-defaults-mode-browser": 4.0.12
- "@smithy/util-defaults-mode-node": 4.0.12
- "@smithy/util-endpoints": 3.0.4
- "@smithy/util-middleware": 4.0.2
- "@smithy/util-retry": 4.0.3
- "@smithy/util-utf8": 4.0.0
+ "@aws-sdk/core": 3.936.0
+ "@aws-sdk/middleware-host-header": 3.936.0
+ "@aws-sdk/middleware-logger": 3.936.0
+ "@aws-sdk/middleware-recursion-detection": 3.936.0
+ "@aws-sdk/middleware-user-agent": 3.936.0
+ "@aws-sdk/region-config-resolver": 3.936.0
+ "@aws-sdk/types": 3.936.0
+ "@aws-sdk/util-endpoints": 3.936.0
+ "@aws-sdk/util-user-agent-browser": 3.936.0
+ "@aws-sdk/util-user-agent-node": 3.936.0
+ "@smithy/config-resolver": 4.4.3
+ "@smithy/core": 3.18.5
+ "@smithy/fetch-http-handler": 5.3.6
+ "@smithy/hash-node": 4.2.5
+ "@smithy/invalid-dependency": 4.2.5
+ "@smithy/middleware-content-length": 4.2.5
+ "@smithy/middleware-endpoint": 4.3.12
+ "@smithy/middleware-retry": 4.4.12
+ "@smithy/middleware-serde": 4.2.6
+ "@smithy/middleware-stack": 4.2.5
+ "@smithy/node-config-provider": 4.3.5
+ "@smithy/node-http-handler": 4.4.5
+ "@smithy/protocol-http": 5.3.5
+ "@smithy/smithy-client": 4.9.8
+ "@smithy/types": 4.9.0
+ "@smithy/url-parser": 4.2.5
+ "@smithy/util-base64": 4.3.0
+ "@smithy/util-body-length-browser": 4.2.0
+ "@smithy/util-body-length-node": 4.2.1
+ "@smithy/util-defaults-mode-browser": 4.3.11
+ "@smithy/util-defaults-mode-node": 4.2.14
+ "@smithy/util-endpoints": 3.2.5
+ "@smithy/util-middleware": 4.2.5
+ "@smithy/util-retry": 4.2.5
+ "@smithy/util-utf8": 4.2.0
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
- "@aws-sdk/core@3.806.0":
- dependencies:
- "@aws-sdk/types": 3.804.0
- "@smithy/core": 3.3.1
- "@smithy/node-config-provider": 4.1.1
- "@smithy/property-provider": 4.0.2
- "@smithy/protocol-http": 5.1.0
- "@smithy/signature-v4": 5.1.0
- "@smithy/smithy-client": 4.2.4
- "@smithy/types": 4.2.0
- "@smithy/util-middleware": 4.0.2
- fast-xml-parser: 4.4.1
+ "@aws-sdk/core@3.936.0":
+ dependencies:
+ "@aws-sdk/types": 3.936.0
+ "@aws-sdk/xml-builder": 3.930.0
+ "@smithy/core": 3.18.5
+ "@smithy/node-config-provider": 4.3.5
+ "@smithy/property-provider": 4.2.5
+ "@smithy/protocol-http": 5.3.5
+ "@smithy/signature-v4": 5.3.5
+ "@smithy/smithy-client": 4.9.8
+ "@smithy/types": 4.9.0
+ "@smithy/util-base64": 4.3.0
+ "@smithy/util-middleware": 4.2.5
+ "@smithy/util-utf8": 4.2.0
tslib: 2.8.1
- "@aws-sdk/credential-provider-env@3.806.0":
+ "@aws-sdk/credential-provider-env@3.936.0":
dependencies:
- "@aws-sdk/core": 3.806.0
- "@aws-sdk/types": 3.804.0
- "@smithy/property-provider": 4.0.2
- "@smithy/types": 4.2.0
+ "@aws-sdk/core": 3.936.0
+ "@aws-sdk/types": 3.936.0
+ "@smithy/property-provider": 4.2.5
+ "@smithy/types": 4.9.0
+ tslib: 2.8.1
+
+ "@aws-sdk/credential-provider-http@3.936.0":
+ dependencies:
+ "@aws-sdk/core": 3.936.0
+ "@aws-sdk/types": 3.936.0
+ "@smithy/fetch-http-handler": 5.3.6
+ "@smithy/node-http-handler": 4.4.5
+ "@smithy/property-provider": 4.2.5
+ "@smithy/protocol-http": 5.3.5
+ "@smithy/smithy-client": 4.9.8
+ "@smithy/types": 4.9.0
+ "@smithy/util-stream": 4.5.6
tslib: 2.8.1
- "@aws-sdk/credential-provider-http@3.806.0":
- dependencies:
- "@aws-sdk/core": 3.806.0
- "@aws-sdk/types": 3.804.0
- "@smithy/fetch-http-handler": 5.0.2
- "@smithy/node-http-handler": 4.0.4
- "@smithy/property-provider": 4.0.2
- "@smithy/protocol-http": 5.1.0
- "@smithy/smithy-client": 4.2.4
- "@smithy/types": 4.2.0
- "@smithy/util-stream": 4.2.0
+ "@aws-sdk/credential-provider-ini@3.936.0":
+ dependencies:
+ "@aws-sdk/core": 3.936.0
+ "@aws-sdk/credential-provider-env": 3.936.0
+ "@aws-sdk/credential-provider-http": 3.936.0
+ "@aws-sdk/credential-provider-login": 3.936.0
+ "@aws-sdk/credential-provider-process": 3.936.0
+ "@aws-sdk/credential-provider-sso": 3.936.0
+ "@aws-sdk/credential-provider-web-identity": 3.936.0
+ "@aws-sdk/nested-clients": 3.936.0
+ "@aws-sdk/types": 3.936.0
+ "@smithy/credential-provider-imds": 4.2.5
+ "@smithy/property-provider": 4.2.5
+ "@smithy/shared-ini-file-loader": 4.4.0
+ "@smithy/types": 4.9.0
tslib: 2.8.1
+ transitivePeerDependencies:
+ - aws-crt
- "@aws-sdk/credential-provider-ini@3.806.0":
- dependencies:
- "@aws-sdk/core": 3.806.0
- "@aws-sdk/credential-provider-env": 3.806.0
- "@aws-sdk/credential-provider-http": 3.806.0
- "@aws-sdk/credential-provider-process": 3.806.0
- "@aws-sdk/credential-provider-sso": 3.806.0
- "@aws-sdk/credential-provider-web-identity": 3.806.0
- "@aws-sdk/nested-clients": 3.806.0
- "@aws-sdk/types": 3.804.0
- "@smithy/credential-provider-imds": 4.0.4
- "@smithy/property-provider": 4.0.2
- "@smithy/shared-ini-file-loader": 4.0.2
- "@smithy/types": 4.2.0
+ "@aws-sdk/credential-provider-login@3.936.0":
+ dependencies:
+ "@aws-sdk/core": 3.936.0
+ "@aws-sdk/nested-clients": 3.936.0
+ "@aws-sdk/types": 3.936.0
+ "@smithy/property-provider": 4.2.5
+ "@smithy/protocol-http": 5.3.5
+ "@smithy/shared-ini-file-loader": 4.4.0
+ "@smithy/types": 4.9.0
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
- "@aws-sdk/credential-provider-node@3.806.0":
- dependencies:
- "@aws-sdk/credential-provider-env": 3.806.0
- "@aws-sdk/credential-provider-http": 3.806.0
- "@aws-sdk/credential-provider-ini": 3.806.0
- "@aws-sdk/credential-provider-process": 3.806.0
- "@aws-sdk/credential-provider-sso": 3.806.0
- "@aws-sdk/credential-provider-web-identity": 3.806.0
- "@aws-sdk/types": 3.804.0
- "@smithy/credential-provider-imds": 4.0.4
- "@smithy/property-provider": 4.0.2
- "@smithy/shared-ini-file-loader": 4.0.2
- "@smithy/types": 4.2.0
+ "@aws-sdk/credential-provider-node@3.936.0":
+ dependencies:
+ "@aws-sdk/credential-provider-env": 3.936.0
+ "@aws-sdk/credential-provider-http": 3.936.0
+ "@aws-sdk/credential-provider-ini": 3.936.0
+ "@aws-sdk/credential-provider-process": 3.936.0
+ "@aws-sdk/credential-provider-sso": 3.936.0
+ "@aws-sdk/credential-provider-web-identity": 3.936.0
+ "@aws-sdk/types": 3.936.0
+ "@smithy/credential-provider-imds": 4.2.5
+ "@smithy/property-provider": 4.2.5
+ "@smithy/shared-ini-file-loader": 4.4.0
+ "@smithy/types": 4.9.0
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
- "@aws-sdk/credential-provider-process@3.806.0":
+ "@aws-sdk/credential-provider-process@3.936.0":
dependencies:
- "@aws-sdk/core": 3.806.0
- "@aws-sdk/types": 3.804.0
- "@smithy/property-provider": 4.0.2
- "@smithy/shared-ini-file-loader": 4.0.2
- "@smithy/types": 4.2.0
+ "@aws-sdk/core": 3.936.0
+ "@aws-sdk/types": 3.936.0
+ "@smithy/property-provider": 4.2.5
+ "@smithy/shared-ini-file-loader": 4.4.0
+ "@smithy/types": 4.9.0
tslib: 2.8.1
- "@aws-sdk/credential-provider-sso@3.806.0":
+ "@aws-sdk/credential-provider-sso@3.936.0":
dependencies:
- "@aws-sdk/client-sso": 3.806.0
- "@aws-sdk/core": 3.806.0
- "@aws-sdk/token-providers": 3.806.0
- "@aws-sdk/types": 3.804.0
- "@smithy/property-provider": 4.0.2
- "@smithy/shared-ini-file-loader": 4.0.2
- "@smithy/types": 4.2.0
+ "@aws-sdk/client-sso": 3.936.0
+ "@aws-sdk/core": 3.936.0
+ "@aws-sdk/token-providers": 3.936.0
+ "@aws-sdk/types": 3.936.0
+ "@smithy/property-provider": 4.2.5
+ "@smithy/shared-ini-file-loader": 4.4.0
+ "@smithy/types": 4.9.0
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
- "@aws-sdk/credential-provider-web-identity@3.806.0":
+ "@aws-sdk/credential-provider-web-identity@3.936.0":
dependencies:
- "@aws-sdk/core": 3.806.0
- "@aws-sdk/nested-clients": 3.806.0
- "@aws-sdk/types": 3.804.0
- "@smithy/property-provider": 4.0.2
- "@smithy/types": 4.2.0
+ "@aws-sdk/core": 3.936.0
+ "@aws-sdk/nested-clients": 3.936.0
+ "@aws-sdk/types": 3.936.0
+ "@smithy/property-provider": 4.2.5
+ "@smithy/shared-ini-file-loader": 4.4.0
+ "@smithy/types": 4.9.0
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
- "@aws-sdk/middleware-host-header@3.804.0":
+ "@aws-sdk/middleware-host-header@3.936.0":
dependencies:
- "@aws-sdk/types": 3.804.0
- "@smithy/protocol-http": 5.1.0
- "@smithy/types": 4.2.0
+ "@aws-sdk/types": 3.936.0
+ "@smithy/protocol-http": 5.3.5
+ "@smithy/types": 4.9.0
tslib: 2.8.1
- "@aws-sdk/middleware-logger@3.804.0":
+ "@aws-sdk/middleware-logger@3.936.0":
dependencies:
- "@aws-sdk/types": 3.804.0
- "@smithy/types": 4.2.0
+ "@aws-sdk/types": 3.936.0
+ "@smithy/types": 4.9.0
tslib: 2.8.1
- "@aws-sdk/middleware-recursion-detection@3.804.0":
+ "@aws-sdk/middleware-recursion-detection@3.936.0":
dependencies:
- "@aws-sdk/types": 3.804.0
- "@smithy/protocol-http": 5.1.0
- "@smithy/types": 4.2.0
+ "@aws-sdk/types": 3.936.0
+ "@aws/lambda-invoke-store": 0.2.0
+ "@smithy/protocol-http": 5.3.5
+ "@smithy/types": 4.9.0
tslib: 2.8.1
- "@aws-sdk/middleware-user-agent@3.806.0":
+ "@aws-sdk/middleware-user-agent@3.936.0":
dependencies:
- "@aws-sdk/core": 3.806.0
- "@aws-sdk/types": 3.804.0
- "@aws-sdk/util-endpoints": 3.806.0
- "@smithy/core": 3.3.1
- "@smithy/protocol-http": 5.1.0
- "@smithy/types": 4.2.0
+ "@aws-sdk/core": 3.936.0
+ "@aws-sdk/types": 3.936.0
+ "@aws-sdk/util-endpoints": 3.936.0
+ "@smithy/core": 3.18.5
+ "@smithy/protocol-http": 5.3.5
+ "@smithy/types": 4.9.0
tslib: 2.8.1
- "@aws-sdk/nested-clients@3.806.0":
+ "@aws-sdk/nested-clients@3.936.0":
dependencies:
"@aws-crypto/sha256-browser": 5.2.0
"@aws-crypto/sha256-js": 5.2.0
- "@aws-sdk/core": 3.806.0
- "@aws-sdk/middleware-host-header": 3.804.0
- "@aws-sdk/middleware-logger": 3.804.0
- "@aws-sdk/middleware-recursion-detection": 3.804.0
- "@aws-sdk/middleware-user-agent": 3.806.0
- "@aws-sdk/region-config-resolver": 3.806.0
- "@aws-sdk/types": 3.804.0
- "@aws-sdk/util-endpoints": 3.806.0
- "@aws-sdk/util-user-agent-browser": 3.804.0
- "@aws-sdk/util-user-agent-node": 3.806.0
- "@smithy/config-resolver": 4.1.2
- "@smithy/core": 3.3.1
- "@smithy/fetch-http-handler": 5.0.2
- "@smithy/hash-node": 4.0.2
- "@smithy/invalid-dependency": 4.0.2
- "@smithy/middleware-content-length": 4.0.2
- "@smithy/middleware-endpoint": 4.1.4
- "@smithy/middleware-retry": 4.1.5
- "@smithy/middleware-serde": 4.0.3
- "@smithy/middleware-stack": 4.0.2
- "@smithy/node-config-provider": 4.1.1
- "@smithy/node-http-handler": 4.0.4
- "@smithy/protocol-http": 5.1.0
- "@smithy/smithy-client": 4.2.4
- "@smithy/types": 4.2.0
- "@smithy/url-parser": 4.0.2
- "@smithy/util-base64": 4.0.0
- "@smithy/util-body-length-browser": 4.0.0
- "@smithy/util-body-length-node": 4.0.0
- "@smithy/util-defaults-mode-browser": 4.0.12
- "@smithy/util-defaults-mode-node": 4.0.12
- "@smithy/util-endpoints": 3.0.4
- "@smithy/util-middleware": 4.0.2
- "@smithy/util-retry": 4.0.3
- "@smithy/util-utf8": 4.0.0
+ "@aws-sdk/core": 3.936.0
+ "@aws-sdk/middleware-host-header": 3.936.0
+ "@aws-sdk/middleware-logger": 3.936.0
+ "@aws-sdk/middleware-recursion-detection": 3.936.0
+ "@aws-sdk/middleware-user-agent": 3.936.0
+ "@aws-sdk/region-config-resolver": 3.936.0
+ "@aws-sdk/types": 3.936.0
+ "@aws-sdk/util-endpoints": 3.936.0
+ "@aws-sdk/util-user-agent-browser": 3.936.0
+ "@aws-sdk/util-user-agent-node": 3.936.0
+ "@smithy/config-resolver": 4.4.3
+ "@smithy/core": 3.18.5
+ "@smithy/fetch-http-handler": 5.3.6
+ "@smithy/hash-node": 4.2.5
+ "@smithy/invalid-dependency": 4.2.5
+ "@smithy/middleware-content-length": 4.2.5
+ "@smithy/middleware-endpoint": 4.3.12
+ "@smithy/middleware-retry": 4.4.12
+ "@smithy/middleware-serde": 4.2.6
+ "@smithy/middleware-stack": 4.2.5
+ "@smithy/node-config-provider": 4.3.5
+ "@smithy/node-http-handler": 4.4.5
+ "@smithy/protocol-http": 5.3.5
+ "@smithy/smithy-client": 4.9.8
+ "@smithy/types": 4.9.0
+ "@smithy/url-parser": 4.2.5
+ "@smithy/util-base64": 4.3.0
+ "@smithy/util-body-length-browser": 4.2.0
+ "@smithy/util-body-length-node": 4.2.1
+ "@smithy/util-defaults-mode-browser": 4.3.11
+ "@smithy/util-defaults-mode-node": 4.2.14
+ "@smithy/util-endpoints": 3.2.5
+ "@smithy/util-middleware": 4.2.5
+ "@smithy/util-retry": 4.2.5
+ "@smithy/util-utf8": 4.2.0
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
- "@aws-sdk/region-config-resolver@3.806.0":
+ "@aws-sdk/region-config-resolver@3.936.0":
dependencies:
- "@aws-sdk/types": 3.804.0
- "@smithy/node-config-provider": 4.1.1
- "@smithy/types": 4.2.0
- "@smithy/util-config-provider": 4.0.0
- "@smithy/util-middleware": 4.0.2
+ "@aws-sdk/types": 3.936.0
+ "@smithy/config-resolver": 4.4.3
+ "@smithy/node-config-provider": 4.3.5
+ "@smithy/types": 4.9.0
tslib: 2.8.1
- "@aws-sdk/token-providers@3.806.0":
+ "@aws-sdk/token-providers@3.936.0":
dependencies:
- "@aws-sdk/nested-clients": 3.806.0
- "@aws-sdk/types": 3.804.0
- "@smithy/property-provider": 4.0.2
- "@smithy/shared-ini-file-loader": 4.0.2
- "@smithy/types": 4.2.0
+ "@aws-sdk/core": 3.936.0
+ "@aws-sdk/nested-clients": 3.936.0
+ "@aws-sdk/types": 3.936.0
+ "@smithy/property-provider": 4.2.5
+ "@smithy/shared-ini-file-loader": 4.4.0
+ "@smithy/types": 4.9.0
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
- "@aws-sdk/types@3.804.0":
+ "@aws-sdk/types@3.936.0":
dependencies:
- "@smithy/types": 4.2.0
+ "@smithy/types": 4.9.0
tslib: 2.8.1
- "@aws-sdk/util-endpoints@3.806.0":
+ "@aws-sdk/util-endpoints@3.936.0":
dependencies:
- "@aws-sdk/types": 3.804.0
- "@smithy/types": 4.2.0
- "@smithy/util-endpoints": 3.0.4
+ "@aws-sdk/types": 3.936.0
+ "@smithy/types": 4.9.0
+ "@smithy/url-parser": 4.2.5
+ "@smithy/util-endpoints": 3.2.5
tslib: 2.8.1
- "@aws-sdk/util-locate-window@3.804.0":
+ "@aws-sdk/util-locate-window@3.893.0":
dependencies:
tslib: 2.8.1
- "@aws-sdk/util-user-agent-browser@3.804.0":
+ "@aws-sdk/util-user-agent-browser@3.936.0":
dependencies:
- "@aws-sdk/types": 3.804.0
- "@smithy/types": 4.2.0
- bowser: 2.11.0
+ "@aws-sdk/types": 3.936.0
+ "@smithy/types": 4.9.0
+ bowser: 2.12.1
tslib: 2.8.1
- "@aws-sdk/util-user-agent-node@3.806.0":
+ "@aws-sdk/util-user-agent-node@3.936.0":
dependencies:
- "@aws-sdk/middleware-user-agent": 3.806.0
- "@aws-sdk/types": 3.804.0
- "@smithy/node-config-provider": 4.1.1
- "@smithy/types": 4.2.0
+ "@aws-sdk/middleware-user-agent": 3.936.0
+ "@aws-sdk/types": 3.936.0
+ "@smithy/node-config-provider": 4.3.5
+ "@smithy/types": 4.9.0
tslib: 2.8.1
+ "@aws-sdk/xml-builder@3.930.0":
+ dependencies:
+ "@smithy/types": 4.9.0
+ fast-xml-parser: 5.2.5
+ tslib: 2.8.1
+
+ "@aws/lambda-invoke-store@0.2.0": {}
+
"@babel/code-frame@7.27.1":
dependencies:
- "@babel/helper-validator-identifier": 7.27.1
+ "@babel/helper-validator-identifier": 7.28.5
js-tokens: 4.0.0
picocolors: 1.1.1
- "@babel/compat-data@7.27.2": {}
+ "@babel/compat-data@7.28.5": {}
- "@babel/core@7.27.1":
+ "@babel/core@7.28.5":
dependencies:
- "@ampproject/remapping": 2.3.0
"@babel/code-frame": 7.27.1
- "@babel/generator": 7.27.1
+ "@babel/generator": 7.28.5
"@babel/helper-compilation-targets": 7.27.2
- "@babel/helper-module-transforms": 7.27.1(@babel/core@7.27.1)
- "@babel/helpers": 7.27.1
- "@babel/parser": 7.27.2
+ "@babel/helper-module-transforms": 7.28.3(@babel/core@7.28.5)
+ "@babel/helpers": 7.28.4
+ "@babel/parser": 7.28.5
"@babel/template": 7.27.2
- "@babel/traverse": 7.27.1(supports-color@5.5.0)
- "@babel/types": 7.27.1
+ "@babel/traverse": 7.28.5(supports-color@5.5.0)
+ "@babel/types": 7.28.5
+ "@jridgewell/remapping": 2.3.5
convert-source-map: 2.0.0
- debug: 4.4.0(supports-color@5.5.0)
+ debug: 4.4.3(supports-color@5.5.0)
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- "@babel/generator@7.27.1":
+ "@babel/generator@7.28.5":
dependencies:
- "@babel/parser": 7.27.2
- "@babel/types": 7.27.1
- "@jridgewell/gen-mapping": 0.3.8
- "@jridgewell/trace-mapping": 0.3.25
+ "@babel/parser": 7.28.5
+ "@babel/types": 7.28.5
+ "@jridgewell/gen-mapping": 0.3.13
+ "@jridgewell/trace-mapping": 0.3.31
jsesc: 3.1.0
- "@babel/helper-annotate-as-pure@7.27.1":
+ "@babel/helper-annotate-as-pure@7.27.3":
dependencies:
- "@babel/types": 7.27.1
+ "@babel/types": 7.28.5
"@babel/helper-compilation-targets@7.27.2":
dependencies:
- "@babel/compat-data": 7.27.2
+ "@babel/compat-data": 7.28.5
"@babel/helper-validator-option": 7.27.1
- browserslist: 4.24.5
+ browserslist: 4.28.0
lru-cache: 5.1.1
semver: 6.3.1
+ "@babel/helper-globals@7.28.0": {}
+
"@babel/helper-module-imports@7.27.1(supports-color@5.5.0)":
dependencies:
- "@babel/traverse": 7.27.1(supports-color@5.5.0)
- "@babel/types": 7.27.1
+ "@babel/traverse": 7.28.5(supports-color@5.5.0)
+ "@babel/types": 7.28.5
transitivePeerDependencies:
- supports-color
- "@babel/helper-module-transforms@7.27.1(@babel/core@7.27.1)":
+ "@babel/helper-module-transforms@7.28.3(@babel/core@7.28.5)":
dependencies:
- "@babel/core": 7.27.1
+ "@babel/core": 7.28.5
"@babel/helper-module-imports": 7.27.1(supports-color@5.5.0)
- "@babel/helper-validator-identifier": 7.27.1
- "@babel/traverse": 7.27.1(supports-color@5.5.0)
+ "@babel/helper-validator-identifier": 7.28.5
+ "@babel/traverse": 7.28.5(supports-color@5.5.0)
transitivePeerDependencies:
- supports-color
@@ -11521,63 +11549,63 @@ snapshots:
"@babel/helper-string-parser@7.27.1": {}
- "@babel/helper-validator-identifier@7.27.1": {}
+ "@babel/helper-validator-identifier@7.28.5": {}
"@babel/helper-validator-option@7.27.1": {}
- "@babel/helpers@7.27.1":
+ "@babel/helpers@7.28.4":
dependencies:
"@babel/template": 7.27.2
- "@babel/types": 7.27.1
+ "@babel/types": 7.28.5
- "@babel/parser@7.27.2":
+ "@babel/parser@7.28.5":
dependencies:
- "@babel/types": 7.27.1
+ "@babel/types": 7.28.5
- "@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.27.1)":
+ "@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.28.5)":
dependencies:
- "@babel/core": 7.27.1
+ "@babel/core": 7.28.5
"@babel/helper-plugin-utils": 7.27.1
- "@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.27.1)":
+ "@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.28.5)":
dependencies:
- "@babel/core": 7.27.1
+ "@babel/core": 7.28.5
"@babel/helper-plugin-utils": 7.27.1
- "@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.27.1)":
+ "@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.28.5)":
dependencies:
- "@babel/core": 7.27.1
+ "@babel/core": 7.28.5
"@babel/helper-plugin-utils": 7.27.1
- "@babel/runtime@7.27.1": {}
+ "@babel/runtime@7.28.4": {}
"@babel/template@7.27.2":
dependencies:
"@babel/code-frame": 7.27.1
- "@babel/parser": 7.27.2
- "@babel/types": 7.27.1
+ "@babel/parser": 7.28.5
+ "@babel/types": 7.28.5
- "@babel/traverse@7.27.1(supports-color@5.5.0)":
+ "@babel/traverse@7.28.5(supports-color@5.5.0)":
dependencies:
"@babel/code-frame": 7.27.1
- "@babel/generator": 7.27.1
- "@babel/parser": 7.27.2
+ "@babel/generator": 7.28.5
+ "@babel/helper-globals": 7.28.0
+ "@babel/parser": 7.28.5
"@babel/template": 7.27.2
- "@babel/types": 7.27.1
- debug: 4.4.0(supports-color@5.5.0)
- globals: 11.12.0
+ "@babel/types": 7.28.5
+ debug: 4.4.3(supports-color@5.5.0)
transitivePeerDependencies:
- supports-color
- "@babel/types@7.27.1":
+ "@babel/types@7.28.5":
dependencies:
"@babel/helper-string-parser": 7.27.1
- "@babel/helper-validator-identifier": 7.27.1
+ "@babel/helper-validator-identifier": 7.28.5
- "@bogeychan/elysia-logger@0.1.8(elysia@1.1.26(@sinclair/typebox@0.34.33)(openapi-types@12.1.3)(typescript@5.7.3))":
+ "@bogeychan/elysia-logger@0.1.10(elysia@1.1.26(@sinclair/typebox@0.34.41)(openapi-types@12.1.3)(typescript@5.7.3))(pino@9.14.0)":
dependencies:
- elysia: 1.1.26(@sinclair/typebox@0.34.33)(openapi-types@12.1.3)(typescript@5.7.3)
- pino: 9.6.0
+ elysia: 1.1.26(@sinclair/typebox@0.34.41)(openapi-types@12.1.3)(typescript@5.7.3)
+ pino: 9.14.0
"@coinbase/wallet-sdk@3.9.3":
dependencies:
@@ -11588,8 +11616,8 @@ snapshots:
eth-json-rpc-filters: 6.0.1
eventemitter3: 5.0.1
keccak: 3.0.4
- preact: 10.26.6
- sha.js: 2.4.11
+ preact: 10.27.2
+ sha.js: 2.4.12
transitivePeerDependencies:
- supports-color
@@ -11598,38 +11626,38 @@ snapshots:
"@noble/hashes": 1.8.0
clsx: 1.2.1
eventemitter3: 5.0.1
- preact: 10.26.6
+ preact: 10.27.2
"@cspotcode/source-map-support@0.8.1":
dependencies:
"@jridgewell/trace-mapping": 0.3.9
- "@csstools/color-helpers@5.0.2": {}
+ "@csstools/color-helpers@5.1.0": {}
- "@csstools/css-calc@2.1.3(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)":
+ "@csstools/css-calc@2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)":
dependencies:
- "@csstools/css-parser-algorithms": 3.0.4(@csstools/css-tokenizer@3.0.3)
- "@csstools/css-tokenizer": 3.0.3
+ "@csstools/css-parser-algorithms": 3.0.5(@csstools/css-tokenizer@3.0.4)
+ "@csstools/css-tokenizer": 3.0.4
- "@csstools/css-color-parser@3.0.9(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)":
+ "@csstools/css-color-parser@3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)":
dependencies:
- "@csstools/color-helpers": 5.0.2
- "@csstools/css-calc": 2.1.3(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
- "@csstools/css-parser-algorithms": 3.0.4(@csstools/css-tokenizer@3.0.3)
- "@csstools/css-tokenizer": 3.0.3
+ "@csstools/color-helpers": 5.1.0
+ "@csstools/css-calc": 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ "@csstools/css-parser-algorithms": 3.0.5(@csstools/css-tokenizer@3.0.4)
+ "@csstools/css-tokenizer": 3.0.4
- "@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3)":
+ "@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4)":
dependencies:
- "@csstools/css-tokenizer": 3.0.3
+ "@csstools/css-tokenizer": 3.0.4
- "@csstools/css-tokenizer@3.0.3": {}
+ "@csstools/css-tokenizer@3.0.4": {}
- "@discordjs/builders@1.11.2":
+ "@discordjs/builders@1.13.0":
dependencies:
- "@discordjs/formatters": 0.6.1
- "@discordjs/util": 1.1.1
+ "@discordjs/formatters": 0.6.2
+ "@discordjs/util": 1.2.0
"@sapphire/shapeshift": 4.0.0
- discord-api-types: 0.38.11
+ discord-api-types: 0.38.34
fast-deep-equal: 3.1.3
ts-mixer: 6.0.4
tslib: 2.8.1
@@ -11638,87 +11666,89 @@ snapshots:
"@discordjs/collection@2.1.1": {}
- "@discordjs/formatters@0.6.1":
+ "@discordjs/formatters@0.6.2":
dependencies:
- discord-api-types: 0.38.11
+ discord-api-types: 0.38.34
- "@discordjs/rest@2.5.0":
+ "@discordjs/rest@2.6.0":
dependencies:
"@discordjs/collection": 2.1.1
- "@discordjs/util": 1.1.1
+ "@discordjs/util": 1.2.0
"@sapphire/async-queue": 1.5.5
"@sapphire/snowflake": 3.5.3
- "@vladfrangu/async_event_emitter": 2.4.6
- discord-api-types: 0.38.11
+ "@vladfrangu/async_event_emitter": 2.4.7
+ discord-api-types: 0.38.34
magic-bytes.js: 1.12.1
tslib: 2.8.1
- undici: 6.21.1
+ undici: 6.21.3
- "@discordjs/util@1.1.1": {}
+ "@discordjs/util@1.2.0":
+ dependencies:
+ discord-api-types: 0.38.34
- "@discordjs/ws@1.2.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)":
+ "@discordjs/ws@1.2.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)":
dependencies:
"@discordjs/collection": 2.1.1
- "@discordjs/rest": 2.5.0
- "@discordjs/util": 1.1.1
+ "@discordjs/rest": 2.6.0
+ "@discordjs/util": 1.2.0
"@sapphire/async-queue": 1.5.5
"@types/ws": 8.18.1
- "@vladfrangu/async_event_emitter": 2.4.6
- discord-api-types: 0.38.11
+ "@vladfrangu/async_event_emitter": 2.4.7
+ discord-api-types: 0.38.34
tslib: 2.8.1
- ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ ws: 8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)
transitivePeerDependencies:
- bufferutil
- utf-8-validate
- "@ecies/ciphers@0.2.3(@noble/ciphers@1.3.0)":
+ "@ecies/ciphers@0.2.5(@noble/ciphers@1.3.0)":
dependencies:
"@noble/ciphers": 1.3.0
- "@effect/schema@0.75.5(effect@3.13.2)":
+ "@effect/schema@0.75.5(effect@3.18.1)":
dependencies:
- effect: 3.13.2
+ effect: 3.18.1
fast-check: 3.23.2
- "@elysiajs/cors@1.3.3(elysia@1.1.26(@sinclair/typebox@0.34.33)(openapi-types@12.1.3)(typescript@5.7.3))":
+ "@elysiajs/cors@1.4.0(elysia@1.1.26(@sinclair/typebox@0.34.41)(openapi-types@12.1.3)(typescript@5.7.3))":
dependencies:
- elysia: 1.1.26(@sinclair/typebox@0.34.33)(openapi-types@12.1.3)(typescript@5.7.3)
+ elysia: 1.1.26(@sinclair/typebox@0.34.41)(openapi-types@12.1.3)(typescript@5.7.3)
- "@elysiajs/eden@1.3.2(elysia@1.1.26(@sinclair/typebox@0.34.33)(openapi-types@12.1.3)(typescript@5.7.3))":
+ "@elysiajs/eden@1.4.5(elysia@1.1.26(@sinclair/typebox@0.34.41)(openapi-types@12.1.3)(typescript@5.7.3))":
dependencies:
- elysia: 1.1.26(@sinclair/typebox@0.34.33)(openapi-types@12.1.3)(typescript@5.7.3)
+ elysia: 1.1.26(@sinclair/typebox@0.34.41)(openapi-types@12.1.3)(typescript@5.7.3)
- "@elysiajs/opentelemetry@1.3.0(elysia@1.1.26(@sinclair/typebox@0.34.33)(openapi-types@12.1.3)(typescript@5.7.3))(graphql@16.11.0)":
+ "@elysiajs/opentelemetry@1.4.7(elysia@1.1.26(@sinclair/typebox@0.34.41)(openapi-types@12.1.3)(typescript@5.7.3))(graphql@16.12.0)":
dependencies:
"@opentelemetry/api": 1.9.0
"@opentelemetry/instrumentation": 0.200.0(@opentelemetry/api@1.9.0)
"@opentelemetry/sdk-node": 0.200.0(@opentelemetry/api@1.9.0)
- elysia: 1.1.26(@sinclair/typebox@0.34.33)(openapi-types@12.1.3)(typescript@5.7.3)
+ elysia: 1.1.26(@sinclair/typebox@0.34.41)(openapi-types@12.1.3)(typescript@5.7.3)
optionalDependencies:
- graphql: 16.11.0
+ graphql: 16.12.0
transitivePeerDependencies:
- supports-color
- "@elysiajs/swagger@1.3.0(elysia@1.1.26(@sinclair/typebox@0.34.33)(openapi-types@12.1.3)(typescript@5.7.3))":
+ "@elysiajs/swagger@1.3.1(elysia@1.1.26(@sinclair/typebox@0.34.41)(openapi-types@12.1.3)(typescript@5.7.3))":
dependencies:
"@scalar/themes": 0.9.86
"@scalar/types": 0.0.12
- elysia: 1.1.26(@sinclair/typebox@0.34.33)(openapi-types@12.1.3)(typescript@5.7.3)
+ elysia: 1.1.26(@sinclair/typebox@0.34.41)(openapi-types@12.1.3)(typescript@5.7.3)
openapi-types: 12.1.3
pathe: 1.1.2
- "@emnapi/core@1.4.3":
+ "@emnapi/core@1.7.1":
dependencies:
- "@emnapi/wasi-threads": 1.0.2
+ "@emnapi/wasi-threads": 1.1.0
tslib: 2.8.1
optional: true
- "@emnapi/runtime@1.4.3":
+ "@emnapi/runtime@1.7.1":
dependencies:
tslib: 2.8.1
optional: true
- "@emnapi/wasi-threads@1.0.2":
+ "@emnapi/wasi-threads@1.1.0":
dependencies:
tslib: 2.8.1
optional: true
@@ -11728,7 +11758,7 @@ snapshots:
"@emotion/memoize": 0.7.4
optional: true
- "@emotion/is-prop-valid@1.3.1":
+ "@emotion/is-prop-valid@1.4.0":
dependencies:
"@emotion/memoize": 0.9.0
@@ -11744,264 +11774,282 @@ snapshots:
"@esbuild/aix-ppc64@0.21.5":
optional: true
- "@esbuild/aix-ppc64@0.25.4":
+ "@esbuild/aix-ppc64@0.25.12":
optional: true
"@esbuild/android-arm64@0.21.5":
optional: true
- "@esbuild/android-arm64@0.25.4":
+ "@esbuild/android-arm64@0.25.12":
optional: true
"@esbuild/android-arm@0.21.5":
optional: true
- "@esbuild/android-arm@0.25.4":
+ "@esbuild/android-arm@0.25.12":
optional: true
"@esbuild/android-x64@0.21.5":
optional: true
- "@esbuild/android-x64@0.25.4":
+ "@esbuild/android-x64@0.25.12":
optional: true
"@esbuild/darwin-arm64@0.21.5":
optional: true
- "@esbuild/darwin-arm64@0.25.4":
+ "@esbuild/darwin-arm64@0.25.12":
optional: true
"@esbuild/darwin-x64@0.21.5":
optional: true
- "@esbuild/darwin-x64@0.25.4":
+ "@esbuild/darwin-x64@0.25.12":
optional: true
"@esbuild/freebsd-arm64@0.21.5":
optional: true
- "@esbuild/freebsd-arm64@0.25.4":
+ "@esbuild/freebsd-arm64@0.25.12":
optional: true
"@esbuild/freebsd-x64@0.21.5":
optional: true
- "@esbuild/freebsd-x64@0.25.4":
+ "@esbuild/freebsd-x64@0.25.12":
optional: true
"@esbuild/linux-arm64@0.21.5":
optional: true
- "@esbuild/linux-arm64@0.25.4":
+ "@esbuild/linux-arm64@0.25.12":
optional: true
"@esbuild/linux-arm@0.21.5":
optional: true
- "@esbuild/linux-arm@0.25.4":
+ "@esbuild/linux-arm@0.25.12":
optional: true
"@esbuild/linux-ia32@0.21.5":
optional: true
- "@esbuild/linux-ia32@0.25.4":
+ "@esbuild/linux-ia32@0.25.12":
optional: true
"@esbuild/linux-loong64@0.21.5":
optional: true
- "@esbuild/linux-loong64@0.25.4":
+ "@esbuild/linux-loong64@0.25.12":
optional: true
"@esbuild/linux-mips64el@0.21.5":
optional: true
- "@esbuild/linux-mips64el@0.25.4":
+ "@esbuild/linux-mips64el@0.25.12":
optional: true
"@esbuild/linux-ppc64@0.21.5":
optional: true
- "@esbuild/linux-ppc64@0.25.4":
+ "@esbuild/linux-ppc64@0.25.12":
optional: true
"@esbuild/linux-riscv64@0.21.5":
optional: true
- "@esbuild/linux-riscv64@0.25.4":
+ "@esbuild/linux-riscv64@0.25.12":
optional: true
"@esbuild/linux-s390x@0.21.5":
optional: true
- "@esbuild/linux-s390x@0.25.4":
+ "@esbuild/linux-s390x@0.25.12":
optional: true
"@esbuild/linux-x64@0.21.5":
optional: true
- "@esbuild/linux-x64@0.25.4":
+ "@esbuild/linux-x64@0.25.12":
optional: true
- "@esbuild/netbsd-arm64@0.25.4":
+ "@esbuild/netbsd-arm64@0.25.12":
optional: true
"@esbuild/netbsd-x64@0.21.5":
optional: true
- "@esbuild/netbsd-x64@0.25.4":
+ "@esbuild/netbsd-x64@0.25.12":
optional: true
- "@esbuild/openbsd-arm64@0.25.4":
+ "@esbuild/openbsd-arm64@0.25.12":
optional: true
"@esbuild/openbsd-x64@0.21.5":
optional: true
- "@esbuild/openbsd-x64@0.25.4":
+ "@esbuild/openbsd-x64@0.25.12":
+ optional: true
+
+ "@esbuild/openharmony-arm64@0.25.12":
optional: true
"@esbuild/sunos-x64@0.21.5":
optional: true
- "@esbuild/sunos-x64@0.25.4":
+ "@esbuild/sunos-x64@0.25.12":
optional: true
"@esbuild/win32-arm64@0.21.5":
optional: true
- "@esbuild/win32-arm64@0.25.4":
+ "@esbuild/win32-arm64@0.25.12":
optional: true
"@esbuild/win32-ia32@0.21.5":
optional: true
- "@esbuild/win32-ia32@0.25.4":
+ "@esbuild/win32-ia32@0.25.12":
optional: true
"@esbuild/win32-x64@0.21.5":
optional: true
- "@esbuild/win32-x64@0.25.4":
+ "@esbuild/win32-x64@0.25.12":
optional: true
- "@eslint-community/eslint-utils@4.7.0(eslint@9.26.0(jiti@2.4.2))":
+ "@eslint-community/eslint-utils@4.9.0(eslint@9.39.1(jiti@2.6.1))":
dependencies:
- eslint: 9.26.0(jiti@2.4.2)
+ eslint: 9.39.1(jiti@2.6.1)
eslint-visitor-keys: 3.4.3
- "@eslint-community/regexpp@4.12.1": {}
+ "@eslint-community/regexpp@4.12.2": {}
- "@eslint/config-array@0.20.0":
+ "@eslint/config-array@0.21.1":
dependencies:
- "@eslint/object-schema": 2.1.6
- debug: 4.4.0(supports-color@5.5.0)
+ "@eslint/object-schema": 2.1.7
+ debug: 4.4.3(supports-color@5.5.0)
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
- "@eslint/config-helpers@0.2.2": {}
+ "@eslint/config-helpers@0.4.2":
+ dependencies:
+ "@eslint/core": 0.17.0
- "@eslint/core@0.13.0":
+ "@eslint/core@0.17.0":
dependencies:
"@types/json-schema": 7.0.15
"@eslint/eslintrc@3.3.1":
dependencies:
ajv: 6.12.6
- debug: 4.4.0(supports-color@5.5.0)
- espree: 10.3.0
+ debug: 4.4.3(supports-color@5.5.0)
+ espree: 10.4.0
globals: 14.0.0
ignore: 5.3.2
import-fresh: 3.3.1
- js-yaml: 4.1.0
+ js-yaml: 4.1.1
minimatch: 3.1.2
strip-json-comments: 3.1.1
transitivePeerDependencies:
- supports-color
- "@eslint/js@9.26.0": {}
+ "@eslint/js@9.39.1": {}
- "@eslint/object-schema@2.1.6": {}
+ "@eslint/object-schema@2.1.7": {}
- "@eslint/plugin-kit@0.2.8":
+ "@eslint/plugin-kit@0.4.1":
dependencies:
- "@eslint/core": 0.13.0
+ "@eslint/core": 0.17.0
levn: 0.4.1
- "@ethereumjs/block@5.3.0":
+ "@ethereumjs/binarytree@10.1.0":
dependencies:
- "@ethereumjs/common": 4.4.0
- "@ethereumjs/rlp": 5.0.2
- "@ethereumjs/trie": 6.2.1
- "@ethereumjs/tx": 5.4.0
- "@ethereumjs/util": 9.1.0
- ethereum-cryptography: 2.2.1
+ "@ethereumjs/rlp": 10.1.0
+ "@ethereumjs/util": 10.1.0
+ "@noble/hashes": 1.8.0
+ debug: 4.4.3(supports-color@5.5.0)
+ ethereum-cryptography: 3.2.0
+ lru-cache: 11.0.2
transitivePeerDependencies:
- supports-color
- "@ethereumjs/blockchain@7.3.0":
+ "@ethereumjs/block@10.1.0":
dependencies:
- "@ethereumjs/block": 5.3.0
- "@ethereumjs/common": 4.4.0
- "@ethereumjs/ethash": 3.0.4
- "@ethereumjs/rlp": 5.0.2
- "@ethereumjs/trie": 6.2.1
- "@ethereumjs/tx": 5.4.0
- "@ethereumjs/util": 9.1.0
- debug: 4.4.0(supports-color@5.5.0)
- ethereum-cryptography: 2.2.1
- lru-cache: 10.1.0
+ "@ethereumjs/common": 10.1.0
+ "@ethereumjs/mpt": 10.1.0
+ "@ethereumjs/rlp": 10.1.0
+ "@ethereumjs/tx": 10.1.0
+ "@ethereumjs/util": 10.1.0
+ ethereum-cryptography: 3.2.0
+ transitivePeerDependencies:
+ - supports-color
+
+ "@ethereumjs/blockchain@10.1.0":
+ dependencies:
+ "@ethereumjs/block": 10.1.0
+ "@ethereumjs/common": 10.1.0
+ "@ethereumjs/mpt": 10.1.0
+ "@ethereumjs/rlp": 10.1.0
+ "@ethereumjs/util": 10.1.0
+ debug: 4.4.3(supports-color@5.5.0)
+ eventemitter3: 5.0.1
+ lru-cache: 11.0.2
transitivePeerDependencies:
- supports-color
+ "@ethereumjs/common@10.1.0":
+ dependencies:
+ "@ethereumjs/util": 10.1.0
+ eventemitter3: 5.0.1
+
"@ethereumjs/common@3.2.0":
dependencies:
"@ethereumjs/util": 8.1.0
crc-32: 1.2.2
- "@ethereumjs/common@4.4.0":
+ "@ethereumjs/evm@10.1.0":
dependencies:
- "@ethereumjs/util": 9.1.0
+ "@ethereumjs/binarytree": 10.1.0
+ "@ethereumjs/common": 10.1.0
+ "@ethereumjs/statemanager": 10.1.0
+ "@ethereumjs/util": 10.1.0
+ "@noble/curves": 1.9.7
+ debug: 4.4.3(supports-color@5.5.0)
+ ethereum-cryptography: 3.2.0
+ eventemitter3: 5.0.1
+ transitivePeerDependencies:
+ - supports-color
- "@ethereumjs/ethash@3.0.4":
+ "@ethereumjs/mpt@10.1.0":
dependencies:
- "@ethereumjs/block": 5.3.0
- "@ethereumjs/rlp": 5.0.2
- "@ethereumjs/util": 9.1.0
- bigint-crypto-utils: 3.3.0
- ethereum-cryptography: 2.2.1
+ "@ethereumjs/rlp": 10.1.0
+ "@ethereumjs/util": 10.1.0
+ debug: 4.4.3(supports-color@5.5.0)
+ ethereum-cryptography: 3.2.0
+ lru-cache: 11.0.2
transitivePeerDependencies:
- supports-color
- "@ethereumjs/evm@3.1.1":
- dependencies:
- "@ethereumjs/common": 4.4.0
- "@ethereumjs/statemanager": 2.4.0
- "@ethereumjs/tx": 5.4.0
- "@ethereumjs/util": 9.1.0
- "@noble/curves": 1.9.0
- "@types/debug": 4.1.12
- debug: 4.4.0(supports-color@5.5.0)
- ethereum-cryptography: 2.2.1
- rustbn-wasm: 0.4.0
- transitivePeerDependencies:
- - supports-color
+ "@ethereumjs/rlp@10.1.0": {}
"@ethereumjs/rlp@4.0.1": {}
"@ethereumjs/rlp@5.0.2": {}
- "@ethereumjs/statemanager@2.4.0":
+ "@ethereumjs/statemanager@10.1.0":
dependencies:
- "@ethereumjs/common": 4.4.0
- "@ethereumjs/rlp": 5.0.2
- "@ethereumjs/trie": 6.2.1
- "@ethereumjs/util": 9.1.0
- debug: 4.4.0(supports-color@5.5.0)
- ethereum-cryptography: 2.2.1
- js-sdsl: 4.4.2
- lru-cache: 10.1.0
+ "@ethereumjs/binarytree": 10.1.0
+ "@ethereumjs/common": 10.1.0
+ "@ethereumjs/mpt": 10.1.0
+ "@ethereumjs/rlp": 10.1.0
+ "@ethereumjs/util": 10.1.0
+ "@js-sdsl/ordered-map": 4.4.2
+ "@noble/hashes": 1.8.0
+ debug: 4.4.3(supports-color@5.5.0)
+ ethereum-cryptography: 3.2.0
+ lru-cache: 11.0.2
transitivePeerDependencies:
- supports-color
@@ -12010,13 +12058,20 @@ snapshots:
"@ethereumjs/rlp": 5.0.2
"@ethereumjs/util": 9.1.0
"@types/readable-stream": 2.3.15
- debug: 4.4.0(supports-color@5.5.0)
+ debug: 4.4.3(supports-color@5.5.0)
ethereum-cryptography: 2.2.1
lru-cache: 10.1.0
readable-stream: 3.6.2
transitivePeerDependencies:
- supports-color
+ "@ethereumjs/tx@10.1.0":
+ dependencies:
+ "@ethereumjs/common": 10.1.0
+ "@ethereumjs/rlp": 10.1.0
+ "@ethereumjs/util": 10.1.0
+ ethereum-cryptography: 3.2.0
+
"@ethereumjs/tx@4.2.0":
dependencies:
"@ethereumjs/common": 3.2.0
@@ -12024,12 +12079,10 @@ snapshots:
"@ethereumjs/util": 8.1.0
ethereum-cryptography: 2.2.1
- "@ethereumjs/tx@5.4.0":
+ "@ethereumjs/util@10.1.0":
dependencies:
- "@ethereumjs/common": 4.4.0
- "@ethereumjs/rlp": 5.0.2
- "@ethereumjs/util": 9.1.0
- ethereum-cryptography: 2.2.1
+ "@ethereumjs/rlp": 10.1.0
+ ethereum-cryptography: 3.2.0
"@ethereumjs/util@8.1.0":
dependencies:
@@ -12042,19 +12095,19 @@ snapshots:
"@ethereumjs/rlp": 5.0.2
ethereum-cryptography: 2.2.1
- "@ethereumjs/vm@8.1.1":
- dependencies:
- "@ethereumjs/block": 5.3.0
- "@ethereumjs/blockchain": 7.3.0
- "@ethereumjs/common": 4.4.0
- "@ethereumjs/evm": 3.1.1
- "@ethereumjs/rlp": 5.0.2
- "@ethereumjs/statemanager": 2.4.0
- "@ethereumjs/trie": 6.2.1
- "@ethereumjs/tx": 5.4.0
- "@ethereumjs/util": 9.1.0
- debug: 4.4.0(supports-color@5.5.0)
- ethereum-cryptography: 2.2.1
+ "@ethereumjs/vm@10.1.0":
+ dependencies:
+ "@ethereumjs/block": 10.1.0
+ "@ethereumjs/common": 10.1.0
+ "@ethereumjs/evm": 10.1.0
+ "@ethereumjs/mpt": 10.1.0
+ "@ethereumjs/rlp": 10.1.0
+ "@ethereumjs/statemanager": 10.1.0
+ "@ethereumjs/tx": 10.1.0
+ "@ethereumjs/util": 10.1.0
+ debug: 4.4.3(supports-color@5.5.0)
+ ethereum-cryptography: 3.2.0
+ eventemitter3: 5.0.1
transitivePeerDependencies:
- supports-color
@@ -12313,21 +12366,21 @@ snapshots:
"@ethersproject/properties": 5.8.0
"@ethersproject/strings": 5.8.0
- "@fleek-platform/cli@3.8.3(@types/node@22.15.17)(typescript@5.7.3)":
+ "@fleek-platform/cli@3.9.4(@types/node@22.19.1)(typescript@5.7.3)":
dependencies:
- "@aws-sdk/client-lambda": 3.806.0
+ "@aws-sdk/client-lambda": 3.936.0
"@fleek-platform/functions-esbuild-config": 0.0.19(esbuild@0.21.5)
"@web-std/file": 3.0.3
ansi-escapes: 3.2.0
as-table: 1.0.55
aws4: 1.13.2
- axios: 1.9.0
+ axios: 1.13.2
boxen: 5.1.2
chalk: 4.1.2
cli-progress: 3.12.0
commander: 9.5.0
conf: 10.2.0
- dotenv: 16.5.0
+ dotenv: 16.6.1
eciesjs: 0.4.7
esbuild: 0.21.5
files-from-path: 1.0.0
@@ -12337,13 +12390,13 @@ snapshots:
lodash-es: 4.17.21
multiformats: 9.9.0
nanoid: 3.3.11
- native-fetch: 4.0.2(undici@6.21.2)
+ native-fetch: 4.0.2(undici@6.22.0)
ora: 3.4.0
press-any-key: 0.1.1
prompts: 2.4.2
- semver: 7.7.1
- ts-node: 10.9.1(@types/node@22.15.17)(typescript@5.7.3)
- undici: 6.21.2
+ semver: 7.7.3
+ ts-node: 10.9.1(@types/node@22.19.1)(typescript@5.7.3)
+ undici: 6.22.0
unique-names-generator: 4.7.1
update-notifier-cjs: 5.1.7
transitivePeerDependencies:
@@ -12360,22 +12413,22 @@ snapshots:
dependencies:
esbuild: 0.21.5
- "@floating-ui/core@1.7.0":
+ "@floating-ui/core@1.7.3":
dependencies:
- "@floating-ui/utils": 0.2.9
+ "@floating-ui/utils": 0.2.10
- "@floating-ui/dom@1.7.0":
+ "@floating-ui/dom@1.7.4":
dependencies:
- "@floating-ui/core": 1.7.0
- "@floating-ui/utils": 0.2.9
+ "@floating-ui/core": 1.7.3
+ "@floating-ui/utils": 0.2.10
- "@floating-ui/react-dom@2.1.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)":
+ "@floating-ui/react-dom@2.1.6(react-dom@19.2.0(react@19.2.0))(react@19.2.0)":
dependencies:
- "@floating-ui/dom": 1.7.0
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ "@floating-ui/dom": 1.7.4
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
- "@floating-ui/utils@0.2.9": {}
+ "@floating-ui/utils@0.2.10": {}
"@google-cloud/paginator@5.0.2":
dependencies:
@@ -12386,7 +12439,7 @@ snapshots:
"@google-cloud/promisify@4.0.0": {}
- "@google-cloud/storage@7.16.0":
+ "@google-cloud/storage@7.17.3":
dependencies:
"@google-cloud/paginator": 5.0.2
"@google-cloud/projectify": 4.0.0
@@ -12394,7 +12447,7 @@ snapshots:
abort-controller: 3.0.0
async-retry: 1.3.3
duplexify: 4.1.3
- fast-xml-parser: 4.4.1
+ fast-xml-parser: 4.5.3
gaxios: 6.7.1
google-auth-library: 9.15.1
html-entities: 2.6.0
@@ -12407,150 +12460,152 @@ snapshots:
- encoding
- supports-color
- "@gql.tada/cli-utils@1.6.3(@0no-co/graphqlsp@1.12.16(graphql@16.11.0)(typescript@5.7.3))(graphql@16.11.0)(typescript@5.7.3)":
+ "@gql.tada/cli-utils@1.7.2(@0no-co/graphqlsp@1.15.1(graphql@16.12.0)(typescript@5.7.3))(graphql@16.12.0)(typescript@5.7.3)":
dependencies:
- "@0no-co/graphqlsp": 1.12.16(graphql@16.11.0)(typescript@5.7.3)
- "@gql.tada/internal": 1.0.8(graphql@16.11.0)(typescript@5.7.3)
- graphql: 16.11.0
+ "@0no-co/graphqlsp": 1.15.1(graphql@16.12.0)(typescript@5.7.3)
+ "@gql.tada/internal": 1.0.8(graphql@16.12.0)(typescript@5.7.3)
+ graphql: 16.12.0
typescript: 5.7.3
- "@gql.tada/internal@1.0.8(graphql@16.11.0)(typescript@5.7.3)":
+ "@gql.tada/internal@1.0.8(graphql@16.12.0)(typescript@5.7.3)":
dependencies:
- "@0no-co/graphql.web": 1.1.2(graphql@16.11.0)
- graphql: 16.11.0
+ "@0no-co/graphql.web": 1.2.0(graphql@16.12.0)
+ graphql: 16.12.0
typescript: 5.7.3
- "@graphql-typed-document-node/core@3.2.0(graphql@16.11.0)":
+ "@graphql-typed-document-node/core@3.2.0(graphql@16.12.0)":
dependencies:
- graphql: 16.11.0
+ graphql: 16.12.0
- "@grpc/grpc-js@1.13.4":
+ "@grpc/grpc-js@1.14.1":
dependencies:
- "@grpc/proto-loader": 0.7.15
+ "@grpc/proto-loader": 0.8.0
"@js-sdsl/ordered-map": 4.4.2
- "@grpc/proto-loader@0.7.15":
+ "@grpc/proto-loader@0.8.0":
dependencies:
lodash.camelcase: 4.3.0
long: 5.3.2
- protobufjs: 7.5.3
+ protobufjs: 7.5.4
yargs: 17.7.2
"@humanfs/core@0.19.1": {}
- "@humanfs/node@0.16.6":
+ "@humanfs/node@0.16.7":
dependencies:
"@humanfs/core": 0.19.1
- "@humanwhocodes/retry": 0.3.1
+ "@humanwhocodes/retry": 0.4.3
"@humanwhocodes/module-importer@1.0.1": {}
- "@humanwhocodes/retry@0.3.1": {}
-
"@humanwhocodes/retry@0.4.3": {}
- "@inkjs/ui@2.0.0(ink@5.2.1(@types/react@19.1.3)(bufferutil@4.0.9)(react@18.3.1)(utf-8-validate@5.0.10))":
+ "@inkjs/ui@2.0.0(ink@6.5.1(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(utf-8-validate@5.0.10))":
dependencies:
- chalk: 5.4.1
- cli-spinners: 3.2.0
+ chalk: 5.6.2
+ cli-spinners: 3.3.0
deepmerge: 4.3.1
figures: 6.1.0
- ink: 5.2.1(@types/react@19.1.3)(bufferutil@4.0.9)(react@18.3.1)(utf-8-validate@5.0.10)
+ ink: 6.5.1(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(utf-8-validate@5.0.10)
+
+ "@isaacs/balanced-match@4.0.1": {}
+
+ "@isaacs/brace-expansion@5.0.0":
+ dependencies:
+ "@isaacs/balanced-match": 4.0.1
"@isaacs/cliui@8.0.2":
dependencies:
string-width: 5.1.2
string-width-cjs: string-width@4.2.3
- strip-ansi: 7.1.0
+ strip-ansi: 7.1.2
strip-ansi-cjs: strip-ansi@6.0.1
wrap-ansi: 8.1.0
wrap-ansi-cjs: wrap-ansi@7.0.0
- "@isaacs/fs-minipass@4.0.1":
+ "@jridgewell/gen-mapping@0.3.13":
dependencies:
- minipass: 7.1.2
+ "@jridgewell/sourcemap-codec": 1.5.5
+ "@jridgewell/trace-mapping": 0.3.31
- "@jridgewell/gen-mapping@0.3.8":
+ "@jridgewell/remapping@2.3.5":
dependencies:
- "@jridgewell/set-array": 1.2.1
- "@jridgewell/sourcemap-codec": 1.5.0
- "@jridgewell/trace-mapping": 0.3.25
+ "@jridgewell/gen-mapping": 0.3.13
+ "@jridgewell/trace-mapping": 0.3.31
"@jridgewell/resolve-uri@3.1.2": {}
- "@jridgewell/set-array@1.2.1": {}
-
- "@jridgewell/source-map@0.3.6":
+ "@jridgewell/source-map@0.3.11":
dependencies:
- "@jridgewell/gen-mapping": 0.3.8
- "@jridgewell/trace-mapping": 0.3.25
+ "@jridgewell/gen-mapping": 0.3.13
+ "@jridgewell/trace-mapping": 0.3.31
- "@jridgewell/sourcemap-codec@1.5.0": {}
+ "@jridgewell/sourcemap-codec@1.5.5": {}
- "@jridgewell/trace-mapping@0.3.25":
+ "@jridgewell/trace-mapping@0.3.31":
dependencies:
"@jridgewell/resolve-uri": 3.1.2
- "@jridgewell/sourcemap-codec": 1.5.0
+ "@jridgewell/sourcemap-codec": 1.5.5
"@jridgewell/trace-mapping@0.3.9":
dependencies:
"@jridgewell/resolve-uri": 3.1.2
- "@jridgewell/sourcemap-codec": 1.5.0
+ "@jridgewell/sourcemap-codec": 1.5.5
"@js-sdsl/ordered-map@4.4.2": {}
- "@lit-labs/ssr-dom-shim@1.3.0": {}
+ "@lit-labs/ssr-dom-shim@1.4.0": {}
- "@lit/reactive-element@2.1.0":
+ "@lit/reactive-element@2.1.1":
dependencies:
- "@lit-labs/ssr-dom-shim": 1.3.0
+ "@lit-labs/ssr-dom-shim": 1.4.0
- "@merkl/api@0.21.47(@opentelemetry/api@1.9.0)(@types/pg@8.6.1)(bufferutil@4.0.9)(graphql@16.11.0)(openapi-types@12.1.3)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)":
+ "@merkl/api@0.21.47(@opentelemetry/api@1.9.0)(@types/pg@8.6.1)(bufferutil@4.0.9)(graphql@16.12.0)(openapi-types@12.1.3)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)":
dependencies:
- "@bogeychan/elysia-logger": 0.1.8(elysia@1.1.26(@sinclair/typebox@0.34.33)(openapi-types@12.1.3)(typescript@5.7.3))
- "@elysiajs/cors": 1.3.3(elysia@1.1.26(@sinclair/typebox@0.34.33)(openapi-types@12.1.3)(typescript@5.7.3))
- "@elysiajs/eden": 1.3.2(elysia@1.1.26(@sinclair/typebox@0.34.33)(openapi-types@12.1.3)(typescript@5.7.3))
- "@elysiajs/opentelemetry": 1.3.0(elysia@1.1.26(@sinclair/typebox@0.34.33)(openapi-types@12.1.3)(typescript@5.7.3))(graphql@16.11.0)
- "@elysiajs/swagger": 1.3.0(elysia@1.1.26(@sinclair/typebox@0.34.33)(openapi-types@12.1.3)(typescript@5.7.3))
+ "@bogeychan/elysia-logger": 0.1.10(elysia@1.1.26(@sinclair/typebox@0.34.41)(openapi-types@12.1.3)(typescript@5.7.3))(pino@9.14.0)
+ "@elysiajs/cors": 1.4.0(elysia@1.1.26(@sinclair/typebox@0.34.41)(openapi-types@12.1.3)(typescript@5.7.3))
+ "@elysiajs/eden": 1.4.5(elysia@1.1.26(@sinclair/typebox@0.34.41)(openapi-types@12.1.3)(typescript@5.7.3))
+ "@elysiajs/opentelemetry": 1.4.7(elysia@1.1.26(@sinclair/typebox@0.34.41)(openapi-types@12.1.3)(typescript@5.7.3))(graphql@16.12.0)
+ "@elysiajs/swagger": 1.3.1(elysia@1.1.26(@sinclair/typebox@0.34.41)(openapi-types@12.1.3)(typescript@5.7.3))
"@ethersproject/abi": 5.8.0
- "@google-cloud/storage": 7.16.0
+ "@google-cloud/storage": 7.17.3
"@notionhq/client": 2.3.0
"@opentelemetry/auto-instrumentations-node": 0.56.1(@opentelemetry/api@1.9.0)
"@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.0)
"@opentelemetry/instrumentation-redis-4": 0.47.0(@opentelemetry/api@1.9.0)
"@prisma/client": 6.3.1(typescript@5.7.3)
- "@prisma/instrumentation": 6.9.0(@opentelemetry/api@1.9.0)
- "@sinclair/typebox": 0.34.33
+ "@prisma/instrumentation": 6.19.0(@opentelemetry/api@1.9.0)
+ "@sinclair/typebox": 0.34.41
"@types/crypto-js": 4.2.2
- "@types/lodash": 4.17.17
- "@types/node": 22.15.17
- axios: 1.9.0
+ "@types/lodash": 4.17.20
+ "@types/node": 22.19.1
+ axios: 1.13.2
big.js: 6.2.2
brotli: 1.3.3
buffer-reverse: 1.0.1
commander: 13.1.0
crypto-js: 4.2.0
- discord.js: 14.19.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ discord.js: 14.25.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
drizzle-orm: 0.39.3(@opentelemetry/api@1.9.0)(@prisma/client@6.3.1(typescript@5.7.3))(@types/pg@8.6.1)
- elysia: 1.1.26(@sinclair/typebox@0.34.33)(openapi-types@12.1.3)(typescript@5.7.3)
- elysia-rate-limit: 4.4.0(elysia@1.1.26(@sinclair/typebox@0.34.33)(openapi-types@12.1.3)(typescript@5.7.3))
+ elysia: 1.1.26(@sinclair/typebox@0.34.41)(openapi-types@12.1.3)(typescript@5.7.3)
+ elysia-rate-limit: 4.4.2(elysia@1.1.26(@sinclair/typebox@0.34.41)(openapi-types@12.1.3)(typescript@5.7.3))
ethers: 5.8.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
ethers-types: 3.18.1(ethers@5.8.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- graphql-request: 7.2.0(graphql@16.11.0)
- jose: 6.0.11
+ graphql-request: 7.3.4(graphql@16.12.0)
+ jose: 6.1.2
jsbi: 4.3.2
json-shrink: 0.0.124
lodash: 4.17.21
- mathjs: 14.5.2
+ mathjs: 14.9.1
moment: 2.30.1
node-cache: 5.1.2
- pino: 9.6.0
- pino-pretty: 13.0.0
+ pino: 9.14.0
+ pino-pretty: 13.1.2
redis: 4.7.1
treeify: 1.1.0
tscpaths: 0.0.9
uuid: 11.1.0
- viem: 2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
transitivePeerDependencies:
- "@aws-sdk/client-rds-data"
- "@cloudflare/workers-types"
@@ -12629,7 +12684,7 @@ snapshots:
"@metamask/onboarding@1.0.1":
dependencies:
- bowser: 2.11.0
+ bowser: 2.12.1
"@metamask/providers@16.1.0":
dependencies:
@@ -12659,13 +12714,13 @@ snapshots:
"@metamask/safe-event-emitter@3.1.2": {}
- "@metamask/sdk-communication-layer@0.32.0(cross-fetch@4.1.0)(eciesjs@0.4.14)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.8.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))":
+ "@metamask/sdk-communication-layer@0.32.0(cross-fetch@4.1.0)(eciesjs@0.4.16)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.8.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))":
dependencies:
bufferutil: 4.0.9
cross-fetch: 4.1.0
date-fns: 2.30.0
- debug: 4.4.0(supports-color@5.5.0)
- eciesjs: 0.4.14
+ debug: 4.4.3(supports-color@5.5.0)
+ eciesjs: 0.4.16
eventemitter2: 6.4.9
readable-stream: 3.6.2
socket.io-client: 4.8.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)
@@ -12680,20 +12735,20 @@ snapshots:
"@metamask/sdk@0.32.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)":
dependencies:
- "@babel/runtime": 7.27.1
+ "@babel/runtime": 7.28.4
"@metamask/onboarding": 1.0.1
"@metamask/providers": 16.1.0
- "@metamask/sdk-communication-layer": 0.32.0(cross-fetch@4.1.0)(eciesjs@0.4.14)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.8.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ "@metamask/sdk-communication-layer": 0.32.0(cross-fetch@4.1.0)(eciesjs@0.4.16)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.8.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))
"@metamask/sdk-install-modal-web": 0.32.0
"@paulmillr/qr": 0.2.1
- bowser: 2.11.0
+ bowser: 2.12.1
cross-fetch: 4.1.0
- debug: 4.4.0(supports-color@5.5.0)
- eciesjs: 0.4.14
+ debug: 4.4.3(supports-color@5.5.0)
+ eciesjs: 0.4.16
eth-rpc-errors: 4.0.3
eventemitter2: 6.4.9
obj-multiplex: 1.0.0
- pump: 3.0.2
+ pump: 3.0.3
readable-stream: 3.6.2
socket.io-client: 4.8.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)
tslib: 2.8.1
@@ -12711,8 +12766,8 @@ snapshots:
dependencies:
"@ethereumjs/tx": 4.2.0
"@types/debug": 4.1.12
- debug: 4.4.0(supports-color@5.5.0)
- semver: 7.7.1
+ debug: 4.4.3(supports-color@5.5.0)
+ semver: 7.7.3
superstruct: 1.0.4
transitivePeerDependencies:
- supports-color
@@ -12722,11 +12777,11 @@ snapshots:
"@ethereumjs/tx": 4.2.0
"@metamask/superstruct": 3.2.1
"@noble/hashes": 1.8.0
- "@scure/base": 1.2.5
+ "@scure/base": 1.2.6
"@types/debug": 4.1.12
- debug: 4.4.0(supports-color@5.5.0)
+ debug: 4.4.3(supports-color@5.5.0)
pony-cause: 2.1.11
- semver: 7.7.1
+ semver: 7.7.3
uuid: 9.0.1
transitivePeerDependencies:
- supports-color
@@ -12736,86 +12791,72 @@ snapshots:
"@ethereumjs/tx": 4.2.0
"@metamask/superstruct": 3.2.1
"@noble/hashes": 1.8.0
- "@scure/base": 1.2.5
+ "@scure/base": 1.2.6
"@types/debug": 4.1.12
- debug: 4.4.0(supports-color@5.5.0)
+ debug: 4.4.3(supports-color@5.5.0)
pony-cause: 2.1.11
- semver: 7.7.1
+ semver: 7.7.3
uuid: 9.0.1
transitivePeerDependencies:
- supports-color
- "@microsoft/api-extractor-model@7.30.6(@types/node@22.15.17)":
+ "@microsoft/api-extractor-model@7.32.0(@types/node@24.10.1)":
dependencies:
- "@microsoft/tsdoc": 0.15.1
- "@microsoft/tsdoc-config": 0.17.1
- "@rushstack/node-core-library": 5.13.1(@types/node@22.15.17)
+ "@microsoft/tsdoc": 0.16.0
+ "@microsoft/tsdoc-config": 0.18.0
+ "@rushstack/node-core-library": 5.18.0(@types/node@24.10.1)
transitivePeerDependencies:
- "@types/node"
- "@microsoft/api-extractor@7.52.7(@types/node@22.15.17)":
+ "@microsoft/api-extractor@7.55.0(@types/node@24.10.1)":
dependencies:
- "@microsoft/api-extractor-model": 7.30.6(@types/node@22.15.17)
- "@microsoft/tsdoc": 0.15.1
- "@microsoft/tsdoc-config": 0.17.1
- "@rushstack/node-core-library": 5.13.1(@types/node@22.15.17)
- "@rushstack/rig-package": 0.5.3
- "@rushstack/terminal": 0.15.3(@types/node@22.15.17)
- "@rushstack/ts-command-line": 5.0.1(@types/node@22.15.17)
+ "@microsoft/api-extractor-model": 7.32.0(@types/node@24.10.1)
+ "@microsoft/tsdoc": 0.16.0
+ "@microsoft/tsdoc-config": 0.18.0
+ "@rushstack/node-core-library": 5.18.0(@types/node@24.10.1)
+ "@rushstack/rig-package": 0.6.0
+ "@rushstack/terminal": 0.19.3(@types/node@24.10.1)
+ "@rushstack/ts-command-line": 5.1.3(@types/node@24.10.1)
+ diff: 8.0.2
lodash: 4.17.21
- minimatch: 3.0.8
- resolve: 1.22.10
+ minimatch: 10.0.3
+ resolve: 1.22.11
semver: 7.5.4
source-map: 0.6.1
typescript: 5.8.2
transitivePeerDependencies:
- "@types/node"
- "@microsoft/tsdoc-config@0.17.1":
+ "@microsoft/tsdoc-config@0.18.0":
dependencies:
- "@microsoft/tsdoc": 0.15.1
+ "@microsoft/tsdoc": 0.16.0
ajv: 8.12.0
jju: 1.4.0
- resolve: 1.22.10
-
- "@microsoft/tsdoc@0.15.1": {}
+ resolve: 1.22.11
- "@modelcontextprotocol/sdk@1.11.1":
- dependencies:
- content-type: 1.0.5
- cors: 2.8.5
- cross-spawn: 7.0.6
- eventsource: 3.0.7
- express: 5.1.0
- express-rate-limit: 7.5.0(express@5.1.0)
- pkce-challenge: 5.0.0
- raw-body: 3.0.0
- zod: 3.24.4
- zod-to-json-schema: 3.24.5(zod@3.24.4)
- transitivePeerDependencies:
- - supports-color
+ "@microsoft/tsdoc@0.16.0": {}
- "@morpho-org/blue-sdk-viem@3.1.1(@morpho-org/blue-sdk@3.0.9(@morpho-org/morpho-ts@2.3.0))(@morpho-org/morpho-ts@2.3.0)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))":
+ "@morpho-org/blue-sdk-viem@3.2.0(@morpho-org/blue-sdk@3.0.9(@morpho-org/morpho-ts@2.4.5))(@morpho-org/morpho-ts@2.4.5)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76))":
dependencies:
- "@morpho-org/blue-sdk": 3.0.9(@morpho-org/morpho-ts@2.3.0)
- "@morpho-org/morpho-ts": 2.3.0
- viem: 2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ "@morpho-org/blue-sdk": 3.0.9(@morpho-org/morpho-ts@2.4.5)
+ "@morpho-org/morpho-ts": 2.4.5
+ viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
- "@morpho-org/blue-sdk@3.0.9(@morpho-org/morpho-ts@2.3.0)":
+ "@morpho-org/blue-sdk@3.0.9(@morpho-org/morpho-ts@2.4.5)":
dependencies:
- "@morpho-org/morpho-ts": 2.3.0
+ "@morpho-org/morpho-ts": 2.4.5
"@noble/hashes": 1.8.0
- "@morpho-org/morpho-ts@2.3.0": {}
+ "@morpho-org/morpho-ts@2.4.5": {}
- "@morpho-org/test@2.1.3(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(vitest@3.1.3(@types/debug@4.1.12)(@types/node@22.15.17)(jiti@2.4.2)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))":
+ "@morpho-org/test@2.6.3(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.19.1)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1))":
dependencies:
lodash.kebabcase: 4.1.1
- viem: 2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
- viem-deal: 2.0.4(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))
- viem-tracer: 1.6.0(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))
+ viem: 2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
+ viem-deal: 2.0.4(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ viem-tracer: 1.8.0(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
optionalDependencies:
- vitest: 3.1.3(@types/debug@4.1.12)(@types/node@22.15.17)(jiti@2.4.2)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
+ vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.19.1)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)
"@motionone/animation@10.18.0":
dependencies:
@@ -12857,11 +12898,11 @@ snapshots:
call-me-maybe: 1.0.2
glob-to-regexp: 0.3.0
- "@napi-rs/wasm-runtime@0.2.9":
+ "@napi-rs/wasm-runtime@0.2.12":
dependencies:
- "@emnapi/core": 1.4.3
- "@emnapi/runtime": 1.4.3
- "@tybys/wasm-util": 0.9.0
+ "@emnapi/core": 1.7.1
+ "@emnapi/runtime": 1.7.1
+ "@tybys/wasm-util": 0.10.1
optional: true
"@noble/ciphers@0.5.3": {}
@@ -12890,6 +12931,18 @@ snapshots:
dependencies:
"@noble/hashes": 1.8.0
+ "@noble/curves@1.9.1":
+ dependencies:
+ "@noble/hashes": 1.8.0
+
+ "@noble/curves@1.9.7":
+ dependencies:
+ "@noble/hashes": 1.8.0
+
+ "@noble/curves@2.0.1":
+ dependencies:
+ "@noble/hashes": 2.0.1
+
"@noble/hashes@1.4.0": {}
"@noble/hashes@1.7.0": {}
@@ -12900,6 +12953,8 @@ snapshots:
"@noble/hashes@1.8.0": {}
+ "@noble/hashes@2.0.1": {}
+
"@nodelib/fs.scandir@2.1.5":
dependencies:
"@nodelib/fs.stat": 2.0.5
@@ -12916,85 +12971,85 @@ snapshots:
"@notionhq/client@2.3.0":
dependencies:
- "@types/node-fetch": 2.6.12
+ "@types/node-fetch": 2.6.13
node-fetch: 2.7.0
transitivePeerDependencies:
- encoding
"@octokit/auth-token@5.1.2": {}
- "@octokit/core@6.1.5":
+ "@octokit/core@6.1.6":
dependencies:
"@octokit/auth-token": 5.1.2
"@octokit/graphql": 8.2.2
- "@octokit/request": 9.2.3
+ "@octokit/request": 9.2.4
"@octokit/request-error": 6.1.8
- "@octokit/types": 14.0.0
+ "@octokit/types": 14.1.0
before-after-hook: 3.0.2
- universal-user-agent: 7.0.2
+ universal-user-agent: 7.0.3
"@octokit/endpoint@10.1.4":
dependencies:
- "@octokit/types": 14.0.0
- universal-user-agent: 7.0.2
+ "@octokit/types": 14.1.0
+ universal-user-agent: 7.0.3
"@octokit/graphql@8.2.2":
dependencies:
- "@octokit/request": 9.2.3
- "@octokit/types": 14.0.0
- universal-user-agent: 7.0.2
+ "@octokit/request": 9.2.4
+ "@octokit/types": 14.1.0
+ universal-user-agent: 7.0.3
"@octokit/openapi-types@24.2.0": {}
- "@octokit/openapi-types@25.0.0": {}
+ "@octokit/openapi-types@25.1.0": {}
- "@octokit/plugin-paginate-rest@11.6.0(@octokit/core@6.1.5)":
+ "@octokit/plugin-paginate-rest@11.6.0(@octokit/core@6.1.6)":
dependencies:
- "@octokit/core": 6.1.5
+ "@octokit/core": 6.1.6
"@octokit/types": 13.10.0
- "@octokit/plugin-request-log@5.3.1(@octokit/core@6.1.5)":
+ "@octokit/plugin-request-log@5.3.1(@octokit/core@6.1.6)":
dependencies:
- "@octokit/core": 6.1.5
+ "@octokit/core": 6.1.6
- "@octokit/plugin-rest-endpoint-methods@13.5.0(@octokit/core@6.1.5)":
+ "@octokit/plugin-rest-endpoint-methods@13.5.0(@octokit/core@6.1.6)":
dependencies:
- "@octokit/core": 6.1.5
+ "@octokit/core": 6.1.6
"@octokit/types": 13.10.0
- "@octokit/plugin-retry@7.2.1(@octokit/core@6.1.5)":
+ "@octokit/plugin-retry@7.2.1(@octokit/core@6.1.6)":
dependencies:
- "@octokit/core": 6.1.5
+ "@octokit/core": 6.1.6
"@octokit/request-error": 6.1.8
- "@octokit/types": 14.0.0
+ "@octokit/types": 14.1.0
bottleneck: 2.19.5
"@octokit/request-error@6.1.8":
dependencies:
- "@octokit/types": 14.0.0
+ "@octokit/types": 14.1.0
- "@octokit/request@9.2.3":
+ "@octokit/request@9.2.4":
dependencies:
"@octokit/endpoint": 10.1.4
"@octokit/request-error": 6.1.8
- "@octokit/types": 14.0.0
+ "@octokit/types": 14.1.0
fast-content-type-parse: 2.0.1
- universal-user-agent: 7.0.2
+ universal-user-agent: 7.0.3
"@octokit/rest@21.1.1":
dependencies:
- "@octokit/core": 6.1.5
- "@octokit/plugin-paginate-rest": 11.6.0(@octokit/core@6.1.5)
- "@octokit/plugin-request-log": 5.3.1(@octokit/core@6.1.5)
- "@octokit/plugin-rest-endpoint-methods": 13.5.0(@octokit/core@6.1.5)
+ "@octokit/core": 6.1.6
+ "@octokit/plugin-paginate-rest": 11.6.0(@octokit/core@6.1.6)
+ "@octokit/plugin-request-log": 5.3.1(@octokit/core@6.1.6)
+ "@octokit/plugin-rest-endpoint-methods": 13.5.0(@octokit/core@6.1.6)
"@octokit/types@13.10.0":
dependencies:
"@octokit/openapi-types": 24.2.0
- "@octokit/types@14.0.0":
+ "@octokit/types@14.1.0":
dependencies:
- "@octokit/openapi-types": 25.0.0
+ "@octokit/openapi-types": 25.1.0
"@opentelemetry/api-logs@0.200.0":
dependencies:
@@ -13076,11 +13131,11 @@ snapshots:
"@opentelemetry/core@2.0.0(@opentelemetry/api@1.9.0)":
dependencies:
"@opentelemetry/api": 1.9.0
- "@opentelemetry/semantic-conventions": 1.34.0
+ "@opentelemetry/semantic-conventions": 1.38.0
"@opentelemetry/exporter-logs-otlp-grpc@0.200.0(@opentelemetry/api@1.9.0)":
dependencies:
- "@grpc/grpc-js": 1.13.4
+ "@grpc/grpc-js": 1.14.1
"@opentelemetry/api": 1.9.0
"@opentelemetry/core": 2.0.0(@opentelemetry/api@1.9.0)
"@opentelemetry/otlp-exporter-base": 0.200.0(@opentelemetry/api@1.9.0)
@@ -13090,7 +13145,7 @@ snapshots:
"@opentelemetry/exporter-logs-otlp-grpc@0.57.2(@opentelemetry/api@1.9.0)":
dependencies:
- "@grpc/grpc-js": 1.13.4
+ "@grpc/grpc-js": 1.14.1
"@opentelemetry/api": 1.9.0
"@opentelemetry/core": 1.30.1(@opentelemetry/api@1.9.0)
"@opentelemetry/otlp-exporter-base": 0.57.2(@opentelemetry/api@1.9.0)
@@ -13140,7 +13195,7 @@ snapshots:
"@opentelemetry/exporter-metrics-otlp-grpc@0.200.0(@opentelemetry/api@1.9.0)":
dependencies:
- "@grpc/grpc-js": 1.13.4
+ "@grpc/grpc-js": 1.14.1
"@opentelemetry/api": 1.9.0
"@opentelemetry/core": 2.0.0(@opentelemetry/api@1.9.0)
"@opentelemetry/exporter-metrics-otlp-http": 0.200.0(@opentelemetry/api@1.9.0)
@@ -13152,7 +13207,7 @@ snapshots:
"@opentelemetry/exporter-metrics-otlp-grpc@0.57.2(@opentelemetry/api@1.9.0)":
dependencies:
- "@grpc/grpc-js": 1.13.4
+ "@grpc/grpc-js": 1.14.1
"@opentelemetry/api": 1.9.0
"@opentelemetry/core": 1.30.1(@opentelemetry/api@1.9.0)
"@opentelemetry/exporter-metrics-otlp-http": 0.57.2(@opentelemetry/api@1.9.0)
@@ -13216,7 +13271,7 @@ snapshots:
"@opentelemetry/exporter-trace-otlp-grpc@0.200.0(@opentelemetry/api@1.9.0)":
dependencies:
- "@grpc/grpc-js": 1.13.4
+ "@grpc/grpc-js": 1.14.1
"@opentelemetry/api": 1.9.0
"@opentelemetry/core": 2.0.0(@opentelemetry/api@1.9.0)
"@opentelemetry/otlp-exporter-base": 0.200.0(@opentelemetry/api@1.9.0)
@@ -13227,7 +13282,7 @@ snapshots:
"@opentelemetry/exporter-trace-otlp-grpc@0.57.2(@opentelemetry/api@1.9.0)":
dependencies:
- "@grpc/grpc-js": 1.13.4
+ "@grpc/grpc-js": 1.14.1
"@opentelemetry/api": 1.9.0
"@opentelemetry/core": 1.30.1(@opentelemetry/api@1.9.0)
"@opentelemetry/otlp-exporter-base": 0.57.2(@opentelemetry/api@1.9.0)
@@ -13286,14 +13341,14 @@ snapshots:
"@opentelemetry/core": 2.0.0(@opentelemetry/api@1.9.0)
"@opentelemetry/resources": 2.0.0(@opentelemetry/api@1.9.0)
"@opentelemetry/sdk-trace-base": 2.0.0(@opentelemetry/api@1.9.0)
- "@opentelemetry/semantic-conventions": 1.34.0
+ "@opentelemetry/semantic-conventions": 1.38.0
"@opentelemetry/instrumentation-amqplib@0.46.1(@opentelemetry/api@1.9.0)":
dependencies:
"@opentelemetry/api": 1.9.0
"@opentelemetry/core": 1.30.1(@opentelemetry/api@1.9.0)
"@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.0)
- "@opentelemetry/semantic-conventions": 1.34.0
+ "@opentelemetry/semantic-conventions": 1.38.0
transitivePeerDependencies:
- supports-color
@@ -13301,7 +13356,7 @@ snapshots:
dependencies:
"@opentelemetry/api": 1.9.0
"@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.0)
- "@opentelemetry/semantic-conventions": 1.34.0
+ "@opentelemetry/semantic-conventions": 1.38.0
"@types/aws-lambda": 8.10.147
transitivePeerDependencies:
- supports-color
@@ -13312,7 +13367,7 @@ snapshots:
"@opentelemetry/core": 1.30.1(@opentelemetry/api@1.9.0)
"@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.0)
"@opentelemetry/propagation-utils": 0.30.16(@opentelemetry/api@1.9.0)
- "@opentelemetry/semantic-conventions": 1.34.0
+ "@opentelemetry/semantic-conventions": 1.38.0
transitivePeerDependencies:
- supports-color
@@ -13329,7 +13384,7 @@ snapshots:
dependencies:
"@opentelemetry/api": 1.9.0
"@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.0)
- "@opentelemetry/semantic-conventions": 1.34.0
+ "@opentelemetry/semantic-conventions": 1.38.0
transitivePeerDependencies:
- supports-color
@@ -13338,7 +13393,7 @@ snapshots:
"@opentelemetry/api": 1.9.0
"@opentelemetry/core": 1.30.1(@opentelemetry/api@1.9.0)
"@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.0)
- "@opentelemetry/semantic-conventions": 1.34.0
+ "@opentelemetry/semantic-conventions": 1.38.0
"@types/connect": 3.4.38
transitivePeerDependencies:
- supports-color
@@ -13347,7 +13402,7 @@ snapshots:
dependencies:
"@opentelemetry/api": 1.9.0
"@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.0)
- "@opentelemetry/semantic-conventions": 1.34.0
+ "@opentelemetry/semantic-conventions": 1.38.0
transitivePeerDependencies:
- supports-color
@@ -13370,7 +13425,7 @@ snapshots:
"@opentelemetry/api": 1.9.0
"@opentelemetry/core": 1.30.1(@opentelemetry/api@1.9.0)
"@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.0)
- "@opentelemetry/semantic-conventions": 1.34.0
+ "@opentelemetry/semantic-conventions": 1.38.0
transitivePeerDependencies:
- supports-color
@@ -13379,7 +13434,7 @@ snapshots:
"@opentelemetry/api": 1.9.0
"@opentelemetry/core": 1.30.1(@opentelemetry/api@1.9.0)
"@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.0)
- "@opentelemetry/semantic-conventions": 1.34.0
+ "@opentelemetry/semantic-conventions": 1.38.0
transitivePeerDependencies:
- supports-color
@@ -13418,7 +13473,7 @@ snapshots:
"@opentelemetry/api": 1.9.0
"@opentelemetry/core": 1.30.1(@opentelemetry/api@1.9.0)
"@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.0)
- "@opentelemetry/semantic-conventions": 1.34.0
+ "@opentelemetry/semantic-conventions": 1.38.0
transitivePeerDependencies:
- supports-color
@@ -13429,7 +13484,7 @@ snapshots:
"@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.0)
"@opentelemetry/semantic-conventions": 1.28.0
forwarded-parse: 2.1.2
- semver: 7.7.1
+ semver: 7.7.3
transitivePeerDependencies:
- supports-color
@@ -13438,7 +13493,7 @@ snapshots:
"@opentelemetry/api": 1.9.0
"@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.0)
"@opentelemetry/redis-common": 0.36.2
- "@opentelemetry/semantic-conventions": 1.34.0
+ "@opentelemetry/semantic-conventions": 1.38.0
transitivePeerDependencies:
- supports-color
@@ -13446,7 +13501,7 @@ snapshots:
dependencies:
"@opentelemetry/api": 1.9.0
"@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.0)
- "@opentelemetry/semantic-conventions": 1.34.0
+ "@opentelemetry/semantic-conventions": 1.38.0
transitivePeerDependencies:
- supports-color
@@ -13454,7 +13509,7 @@ snapshots:
dependencies:
"@opentelemetry/api": 1.9.0
"@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.0)
- "@opentelemetry/semantic-conventions": 1.34.0
+ "@opentelemetry/semantic-conventions": 1.38.0
transitivePeerDependencies:
- supports-color
@@ -13463,7 +13518,7 @@ snapshots:
"@opentelemetry/api": 1.9.0
"@opentelemetry/core": 1.30.1(@opentelemetry/api@1.9.0)
"@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.0)
- "@opentelemetry/semantic-conventions": 1.34.0
+ "@opentelemetry/semantic-conventions": 1.38.0
transitivePeerDependencies:
- supports-color
@@ -13478,7 +13533,7 @@ snapshots:
dependencies:
"@opentelemetry/api": 1.9.0
"@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.0)
- "@opentelemetry/semantic-conventions": 1.34.0
+ "@opentelemetry/semantic-conventions": 1.38.0
"@types/memcached": 2.2.10
transitivePeerDependencies:
- supports-color
@@ -13487,7 +13542,7 @@ snapshots:
dependencies:
"@opentelemetry/api": 1.9.0
"@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.0)
- "@opentelemetry/semantic-conventions": 1.34.0
+ "@opentelemetry/semantic-conventions": 1.38.0
transitivePeerDependencies:
- supports-color
@@ -13496,7 +13551,7 @@ snapshots:
"@opentelemetry/api": 1.9.0
"@opentelemetry/core": 1.30.1(@opentelemetry/api@1.9.0)
"@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.0)
- "@opentelemetry/semantic-conventions": 1.34.0
+ "@opentelemetry/semantic-conventions": 1.38.0
transitivePeerDependencies:
- supports-color
@@ -13504,7 +13559,7 @@ snapshots:
dependencies:
"@opentelemetry/api": 1.9.0
"@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.0)
- "@opentelemetry/semantic-conventions": 1.34.0
+ "@opentelemetry/semantic-conventions": 1.38.0
"@opentelemetry/sql-common": 0.40.1(@opentelemetry/api@1.9.0)
transitivePeerDependencies:
- supports-color
@@ -13513,7 +13568,7 @@ snapshots:
dependencies:
"@opentelemetry/api": 1.9.0
"@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.0)
- "@opentelemetry/semantic-conventions": 1.34.0
+ "@opentelemetry/semantic-conventions": 1.38.0
"@types/mysql": 2.15.26
transitivePeerDependencies:
- supports-color
@@ -13522,7 +13577,7 @@ snapshots:
dependencies:
"@opentelemetry/api": 1.9.0
"@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.0)
- "@opentelemetry/semantic-conventions": 1.34.0
+ "@opentelemetry/semantic-conventions": 1.38.0
transitivePeerDependencies:
- supports-color
@@ -13530,7 +13585,7 @@ snapshots:
dependencies:
"@opentelemetry/api": 1.9.0
"@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.0)
- "@opentelemetry/semantic-conventions": 1.34.0
+ "@opentelemetry/semantic-conventions": 1.38.0
transitivePeerDependencies:
- supports-color
@@ -13539,7 +13594,7 @@ snapshots:
"@opentelemetry/api": 1.9.0
"@opentelemetry/core": 1.30.1(@opentelemetry/api@1.9.0)
"@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.0)
- "@opentelemetry/semantic-conventions": 1.34.0
+ "@opentelemetry/semantic-conventions": 1.38.0
"@opentelemetry/sql-common": 0.40.1(@opentelemetry/api@1.9.0)
"@types/pg": 8.6.1
"@types/pg-pool": 2.0.6
@@ -13560,7 +13615,7 @@ snapshots:
"@opentelemetry/api": 1.9.0
"@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.0)
"@opentelemetry/redis-common": 0.36.2
- "@opentelemetry/semantic-conventions": 1.34.0
+ "@opentelemetry/semantic-conventions": 1.38.0
transitivePeerDependencies:
- supports-color
@@ -13569,7 +13624,7 @@ snapshots:
"@opentelemetry/api": 1.9.0
"@opentelemetry/instrumentation": 0.200.0(@opentelemetry/api@1.9.0)
"@opentelemetry/redis-common": 0.37.0
- "@opentelemetry/semantic-conventions": 1.34.0
+ "@opentelemetry/semantic-conventions": 1.38.0
transitivePeerDependencies:
- supports-color
@@ -13578,7 +13633,7 @@ snapshots:
"@opentelemetry/api": 1.9.0
"@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.0)
"@opentelemetry/redis-common": 0.36.2
- "@opentelemetry/semantic-conventions": 1.34.0
+ "@opentelemetry/semantic-conventions": 1.38.0
transitivePeerDependencies:
- supports-color
@@ -13587,7 +13642,7 @@ snapshots:
"@opentelemetry/api": 1.9.0
"@opentelemetry/core": 1.30.1(@opentelemetry/api@1.9.0)
"@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.0)
- "@opentelemetry/semantic-conventions": 1.34.0
+ "@opentelemetry/semantic-conventions": 1.38.0
transitivePeerDependencies:
- supports-color
@@ -13595,7 +13650,7 @@ snapshots:
dependencies:
"@opentelemetry/api": 1.9.0
"@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.0)
- "@opentelemetry/semantic-conventions": 1.34.0
+ "@opentelemetry/semantic-conventions": 1.38.0
transitivePeerDependencies:
- supports-color
@@ -13603,7 +13658,7 @@ snapshots:
dependencies:
"@opentelemetry/api": 1.9.0
"@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.0)
- "@opentelemetry/semantic-conventions": 1.34.0
+ "@opentelemetry/semantic-conventions": 1.38.0
transitivePeerDependencies:
- supports-color
@@ -13611,7 +13666,7 @@ snapshots:
dependencies:
"@opentelemetry/api": 1.9.0
"@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.0)
- "@opentelemetry/semantic-conventions": 1.34.0
+ "@opentelemetry/semantic-conventions": 1.38.0
"@types/tedious": 4.0.14
transitivePeerDependencies:
- supports-color
@@ -13637,7 +13692,7 @@ snapshots:
"@opentelemetry/api": 1.9.0
"@opentelemetry/api-logs": 0.200.0
"@types/shimmer": 1.2.0
- import-in-the-middle: 1.14.0
+ import-in-the-middle: 1.15.0
require-in-the-middle: 7.5.2
shimmer: 1.2.1
transitivePeerDependencies:
@@ -13648,9 +13703,9 @@ snapshots:
"@opentelemetry/api": 1.9.0
"@opentelemetry/api-logs": 0.57.2
"@types/shimmer": 1.2.0
- import-in-the-middle: 1.14.0
+ import-in-the-middle: 1.15.0
require-in-the-middle: 7.5.2
- semver: 7.7.1
+ semver: 7.7.3
shimmer: 1.2.1
transitivePeerDependencies:
- supports-color
@@ -13669,7 +13724,7 @@ snapshots:
"@opentelemetry/otlp-grpc-exporter-base@0.200.0(@opentelemetry/api@1.9.0)":
dependencies:
- "@grpc/grpc-js": 1.13.4
+ "@grpc/grpc-js": 1.14.1
"@opentelemetry/api": 1.9.0
"@opentelemetry/core": 2.0.0(@opentelemetry/api@1.9.0)
"@opentelemetry/otlp-exporter-base": 0.200.0(@opentelemetry/api@1.9.0)
@@ -13677,7 +13732,7 @@ snapshots:
"@opentelemetry/otlp-grpc-exporter-base@0.57.2(@opentelemetry/api@1.9.0)":
dependencies:
- "@grpc/grpc-js": 1.13.4
+ "@grpc/grpc-js": 1.14.1
"@opentelemetry/api": 1.9.0
"@opentelemetry/core": 1.30.1(@opentelemetry/api@1.9.0)
"@opentelemetry/otlp-exporter-base": 0.57.2(@opentelemetry/api@1.9.0)
@@ -13692,7 +13747,7 @@ snapshots:
"@opentelemetry/sdk-logs": 0.200.0(@opentelemetry/api@1.9.0)
"@opentelemetry/sdk-metrics": 2.0.0(@opentelemetry/api@1.9.0)
"@opentelemetry/sdk-trace-base": 2.0.0(@opentelemetry/api@1.9.0)
- protobufjs: 7.5.3
+ protobufjs: 7.5.4
"@opentelemetry/otlp-transformer@0.57.2(@opentelemetry/api@1.9.0)":
dependencies:
@@ -13703,7 +13758,7 @@ snapshots:
"@opentelemetry/sdk-logs": 0.57.2(@opentelemetry/api@1.9.0)
"@opentelemetry/sdk-metrics": 1.30.1(@opentelemetry/api@1.9.0)
"@opentelemetry/sdk-trace-base": 1.30.1(@opentelemetry/api@1.9.0)
- protobufjs: 7.5.3
+ protobufjs: 7.5.4
"@opentelemetry/propagation-utils@0.30.16(@opentelemetry/api@1.9.0)":
dependencies:
@@ -13738,35 +13793,35 @@ snapshots:
"@opentelemetry/api": 1.9.0
"@opentelemetry/core": 1.30.1(@opentelemetry/api@1.9.0)
"@opentelemetry/resources": 1.30.1(@opentelemetry/api@1.9.0)
- "@opentelemetry/semantic-conventions": 1.34.0
+ "@opentelemetry/semantic-conventions": 1.38.0
"@opentelemetry/resource-detector-aws@1.12.0(@opentelemetry/api@1.9.0)":
dependencies:
"@opentelemetry/api": 1.9.0
"@opentelemetry/core": 1.30.1(@opentelemetry/api@1.9.0)
"@opentelemetry/resources": 1.30.1(@opentelemetry/api@1.9.0)
- "@opentelemetry/semantic-conventions": 1.34.0
+ "@opentelemetry/semantic-conventions": 1.38.0
"@opentelemetry/resource-detector-azure@0.6.1(@opentelemetry/api@1.9.0)":
dependencies:
"@opentelemetry/api": 1.9.0
"@opentelemetry/core": 1.30.1(@opentelemetry/api@1.9.0)
"@opentelemetry/resources": 1.30.1(@opentelemetry/api@1.9.0)
- "@opentelemetry/semantic-conventions": 1.34.0
+ "@opentelemetry/semantic-conventions": 1.38.0
"@opentelemetry/resource-detector-container@0.6.1(@opentelemetry/api@1.9.0)":
dependencies:
"@opentelemetry/api": 1.9.0
"@opentelemetry/core": 1.30.1(@opentelemetry/api@1.9.0)
"@opentelemetry/resources": 1.30.1(@opentelemetry/api@1.9.0)
- "@opentelemetry/semantic-conventions": 1.34.0
+ "@opentelemetry/semantic-conventions": 1.38.0
"@opentelemetry/resource-detector-gcp@0.33.1(@opentelemetry/api@1.9.0)":
dependencies:
"@opentelemetry/api": 1.9.0
"@opentelemetry/core": 1.30.1(@opentelemetry/api@1.9.0)
"@opentelemetry/resources": 1.30.1(@opentelemetry/api@1.9.0)
- "@opentelemetry/semantic-conventions": 1.34.0
+ "@opentelemetry/semantic-conventions": 1.38.0
gcp-metadata: 6.1.1
transitivePeerDependencies:
- encoding
@@ -13782,7 +13837,7 @@ snapshots:
dependencies:
"@opentelemetry/api": 1.9.0
"@opentelemetry/core": 2.0.0(@opentelemetry/api@1.9.0)
- "@opentelemetry/semantic-conventions": 1.34.0
+ "@opentelemetry/semantic-conventions": 1.38.0
"@opentelemetry/sdk-logs@0.200.0(@opentelemetry/api@1.9.0)":
dependencies:
@@ -13834,7 +13889,7 @@ snapshots:
"@opentelemetry/sdk-metrics": 2.0.0(@opentelemetry/api@1.9.0)
"@opentelemetry/sdk-trace-base": 2.0.0(@opentelemetry/api@1.9.0)
"@opentelemetry/sdk-trace-node": 2.0.0(@opentelemetry/api@1.9.0)
- "@opentelemetry/semantic-conventions": 1.34.0
+ "@opentelemetry/semantic-conventions": 1.38.0
transitivePeerDependencies:
- supports-color
@@ -13876,7 +13931,7 @@ snapshots:
"@opentelemetry/api": 1.9.0
"@opentelemetry/core": 2.0.0(@opentelemetry/api@1.9.0)
"@opentelemetry/resources": 2.0.0(@opentelemetry/api@1.9.0)
- "@opentelemetry/semantic-conventions": 1.34.0
+ "@opentelemetry/semantic-conventions": 1.38.0
"@opentelemetry/sdk-trace-node@1.30.1(@opentelemetry/api@1.9.0)":
dependencies:
@@ -13886,7 +13941,7 @@ snapshots:
"@opentelemetry/propagator-b3": 1.30.1(@opentelemetry/api@1.9.0)
"@opentelemetry/propagator-jaeger": 1.30.1(@opentelemetry/api@1.9.0)
"@opentelemetry/sdk-trace-base": 1.30.1(@opentelemetry/api@1.9.0)
- semver: 7.7.1
+ semver: 7.7.3
"@opentelemetry/sdk-trace-node@2.0.0(@opentelemetry/api@1.9.0)":
dependencies:
@@ -13897,14 +13952,14 @@ snapshots:
"@opentelemetry/semantic-conventions@1.28.0": {}
- "@opentelemetry/semantic-conventions@1.34.0": {}
+ "@opentelemetry/semantic-conventions@1.38.0": {}
"@opentelemetry/sql-common@0.40.1(@opentelemetry/api@1.9.0)":
dependencies:
"@opentelemetry/api": 1.9.0
"@opentelemetry/core": 1.30.1(@opentelemetry/api@1.9.0)
- "@openzeppelin/contracts@5.2.0": {}
+ "@openzeppelin/contracts@5.4.0": {}
"@oxc-resolver/binding-darwin-arm64@5.3.0":
optional: true
@@ -13938,7 +13993,7 @@ snapshots:
"@oxc-resolver/binding-wasm32-wasi@5.3.0":
dependencies:
- "@napi-rs/wasm-runtime": 0.2.9
+ "@napi-rs/wasm-runtime": 0.2.12
optional: true
"@oxc-resolver/binding-win32-arm64-msvc@5.3.0":
@@ -13949,7 +14004,9 @@ snapshots:
"@paulmillr/qr@0.2.1": {}
- "@pkgr/core@0.2.4": {}
+ "@pinojs/redact@0.4.0": {}
+
+ "@pkgr/core@0.2.9": {}
"@pnpm/config.env-replace@1.1.0": {}
@@ -13963,9 +14020,15 @@ snapshots:
"@pnpm/network.ca-file": 1.0.2
config-chain: 1.1.13
- "@ponder/utils@0.2.6(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))":
+ "@ponder/utils@0.2.16(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))":
+ dependencies:
+ viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
+ optionalDependencies:
+ typescript: 5.7.3
+
+ "@ponder/utils@0.2.16(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))":
dependencies:
- viem: 2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ viem: 2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
optionalDependencies:
typescript: 5.7.3
@@ -13973,7 +14036,7 @@ snapshots:
optionalDependencies:
typescript: 5.7.3
- "@prisma/instrumentation@6.9.0(@opentelemetry/api@1.9.0)":
+ "@prisma/instrumentation@6.19.0(@opentelemetry/api@1.9.0)":
dependencies:
"@opentelemetry/api": 1.9.0
"@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.0)
@@ -14005,463 +14068,485 @@ snapshots:
"@radix-ui/number@1.1.1": {}
- "@radix-ui/primitive@1.1.2": {}
+ "@radix-ui/primitive@1.1.3": {}
- "@radix-ui/react-alert-dialog@1.1.13(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)":
+ "@radix-ui/react-alert-dialog@1.1.15(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)":
dependencies:
- "@radix-ui/primitive": 1.1.2
- "@radix-ui/react-compose-refs": 1.1.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-context": 1.1.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-dialog": 1.1.13(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-primitive": 2.1.2(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-slot": 1.2.2(@types/react@19.1.3)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ "@radix-ui/primitive": 1.1.3
+ "@radix-ui/react-compose-refs": 1.1.2(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-context": 1.1.2(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-dialog": 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-primitive": 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-slot": 1.2.3(@types/react@19.2.6)(react@19.2.0)
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
optionalDependencies:
- "@types/react": 19.1.3
- "@types/react-dom": 19.1.3(@types/react@19.1.3)
+ "@types/react": 19.2.6
+ "@types/react-dom": 19.2.3(@types/react@19.2.6)
- "@radix-ui/react-arrow@1.1.6(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)":
+ "@radix-ui/react-arrow@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)":
dependencies:
- "@radix-ui/react-primitive": 2.1.2(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ "@radix-ui/react-primitive": 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
optionalDependencies:
- "@types/react": 19.1.3
- "@types/react-dom": 19.1.3(@types/react@19.1.3)
-
- "@radix-ui/react-avatar@1.1.9(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)":
- dependencies:
- "@radix-ui/react-context": 1.1.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-primitive": 2.1.2(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-use-callback-ref": 1.1.1(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-use-is-hydrated": 0.1.0(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-use-layout-effect": 1.1.1(@types/react@19.1.3)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ "@types/react": 19.2.6
+ "@types/react-dom": 19.2.3(@types/react@19.2.6)
+
+ "@radix-ui/react-avatar@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)":
+ dependencies:
+ "@radix-ui/react-context": 1.1.3(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-primitive": 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-use-callback-ref": 1.1.1(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-use-is-hydrated": 0.1.0(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-use-layout-effect": 1.1.1(@types/react@19.2.6)(react@19.2.0)
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
optionalDependencies:
- "@types/react": 19.1.3
- "@types/react-dom": 19.1.3(@types/react@19.1.3)
-
- "@radix-ui/react-collapsible@1.1.10(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)":
- dependencies:
- "@radix-ui/primitive": 1.1.2
- "@radix-ui/react-compose-refs": 1.1.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-context": 1.1.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-id": 1.1.1(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-presence": 1.1.4(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-primitive": 2.1.2(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-use-controllable-state": 1.2.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-use-layout-effect": 1.1.1(@types/react@19.1.3)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ "@types/react": 19.2.6
+ "@types/react-dom": 19.2.3(@types/react@19.2.6)
+
+ "@radix-ui/react-collapsible@1.1.12(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)":
+ dependencies:
+ "@radix-ui/primitive": 1.1.3
+ "@radix-ui/react-compose-refs": 1.1.2(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-context": 1.1.2(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-id": 1.1.1(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-presence": 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-primitive": 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-use-controllable-state": 1.2.2(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-use-layout-effect": 1.1.1(@types/react@19.2.6)(react@19.2.0)
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ optionalDependencies:
+ "@types/react": 19.2.6
+ "@types/react-dom": 19.2.3(@types/react@19.2.6)
+
+ "@radix-ui/react-collection@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)":
+ dependencies:
+ "@radix-ui/react-compose-refs": 1.1.2(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-context": 1.1.2(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-primitive": 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-slot": 1.2.3(@types/react@19.2.6)(react@19.2.0)
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
optionalDependencies:
- "@types/react": 19.1.3
- "@types/react-dom": 19.1.3(@types/react@19.1.3)
+ "@types/react": 19.2.6
+ "@types/react-dom": 19.2.3(@types/react@19.2.6)
- "@radix-ui/react-collection@1.1.6(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)":
+ "@radix-ui/react-compose-refs@1.1.2(@types/react@19.2.6)(react@19.2.0)":
dependencies:
- "@radix-ui/react-compose-refs": 1.1.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-context": 1.1.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-primitive": 2.1.2(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-slot": 1.2.2(@types/react@19.1.3)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.0
optionalDependencies:
- "@types/react": 19.1.3
- "@types/react-dom": 19.1.3(@types/react@19.1.3)
+ "@types/react": 19.2.6
- "@radix-ui/react-compose-refs@1.1.2(@types/react@19.1.3)(react@19.1.0)":
+ "@radix-ui/react-context@1.1.2(@types/react@19.2.6)(react@19.2.0)":
dependencies:
- react: 19.1.0
+ react: 19.2.0
optionalDependencies:
- "@types/react": 19.1.3
+ "@types/react": 19.2.6
- "@radix-ui/react-context@1.1.2(@types/react@19.1.3)(react@19.1.0)":
+ "@radix-ui/react-context@1.1.3(@types/react@19.2.6)(react@19.2.0)":
dependencies:
- react: 19.1.0
+ react: 19.2.0
optionalDependencies:
- "@types/react": 19.1.3
-
- "@radix-ui/react-dialog@1.1.13(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)":
- dependencies:
- "@radix-ui/primitive": 1.1.2
- "@radix-ui/react-compose-refs": 1.1.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-context": 1.1.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-dismissable-layer": 1.1.9(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-focus-guards": 1.1.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-focus-scope": 1.1.6(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-id": 1.1.1(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-portal": 1.1.8(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-presence": 1.1.4(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-primitive": 2.1.2(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-slot": 1.2.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-use-controllable-state": 1.2.2(@types/react@19.1.3)(react@19.1.0)
- aria-hidden: 1.2.4
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- react-remove-scroll: 2.6.3(@types/react@19.1.3)(react@19.1.0)
+ "@types/react": 19.2.6
+
+ "@radix-ui/react-dialog@1.1.15(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)":
+ dependencies:
+ "@radix-ui/primitive": 1.1.3
+ "@radix-ui/react-compose-refs": 1.1.2(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-context": 1.1.2(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-dismissable-layer": 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-focus-guards": 1.1.3(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-focus-scope": 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-id": 1.1.1(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-portal": 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-presence": 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-primitive": 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-slot": 1.2.3(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-use-controllable-state": 1.2.2(@types/react@19.2.6)(react@19.2.0)
+ aria-hidden: 1.2.6
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ react-remove-scroll: 2.7.1(@types/react@19.2.6)(react@19.2.0)
optionalDependencies:
- "@types/react": 19.1.3
- "@types/react-dom": 19.1.3(@types/react@19.1.3)
+ "@types/react": 19.2.6
+ "@types/react-dom": 19.2.3(@types/react@19.2.6)
- "@radix-ui/react-direction@1.1.1(@types/react@19.1.3)(react@19.1.0)":
+ "@radix-ui/react-direction@1.1.1(@types/react@19.2.6)(react@19.2.0)":
dependencies:
- react: 19.1.0
+ react: 19.2.0
optionalDependencies:
- "@types/react": 19.1.3
+ "@types/react": 19.2.6
- "@radix-ui/react-dismissable-layer@1.1.9(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)":
+ "@radix-ui/react-dismissable-layer@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)":
dependencies:
- "@radix-ui/primitive": 1.1.2
- "@radix-ui/react-compose-refs": 1.1.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-primitive": 2.1.2(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-use-callback-ref": 1.1.1(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-use-escape-keydown": 1.1.1(@types/react@19.1.3)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ "@radix-ui/primitive": 1.1.3
+ "@radix-ui/react-compose-refs": 1.1.2(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-primitive": 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-use-callback-ref": 1.1.1(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-use-escape-keydown": 1.1.1(@types/react@19.2.6)(react@19.2.0)
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
optionalDependencies:
- "@types/react": 19.1.3
- "@types/react-dom": 19.1.3(@types/react@19.1.3)
-
- "@radix-ui/react-dropdown-menu@2.1.14(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)":
- dependencies:
- "@radix-ui/primitive": 1.1.2
- "@radix-ui/react-compose-refs": 1.1.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-context": 1.1.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-id": 1.1.1(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-menu": 2.1.14(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-primitive": 2.1.2(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-use-controllable-state": 1.2.2(@types/react@19.1.3)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ "@types/react": 19.2.6
+ "@types/react-dom": 19.2.3(@types/react@19.2.6)
+
+ "@radix-ui/react-dropdown-menu@2.1.16(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)":
+ dependencies:
+ "@radix-ui/primitive": 1.1.3
+ "@radix-ui/react-compose-refs": 1.1.2(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-context": 1.1.2(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-id": 1.1.1(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-menu": 2.1.16(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-primitive": 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-use-controllable-state": 1.2.2(@types/react@19.2.6)(react@19.2.0)
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
optionalDependencies:
- "@types/react": 19.1.3
- "@types/react-dom": 19.1.3(@types/react@19.1.3)
+ "@types/react": 19.2.6
+ "@types/react-dom": 19.2.3(@types/react@19.2.6)
- "@radix-ui/react-focus-guards@1.1.2(@types/react@19.1.3)(react@19.1.0)":
+ "@radix-ui/react-focus-guards@1.1.3(@types/react@19.2.6)(react@19.2.0)":
dependencies:
- react: 19.1.0
+ react: 19.2.0
optionalDependencies:
- "@types/react": 19.1.3
+ "@types/react": 19.2.6
- "@radix-ui/react-focus-scope@1.1.6(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)":
+ "@radix-ui/react-focus-scope@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)":
dependencies:
- "@radix-ui/react-compose-refs": 1.1.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-primitive": 2.1.2(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-use-callback-ref": 1.1.1(@types/react@19.1.3)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ "@radix-ui/react-compose-refs": 1.1.2(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-primitive": 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-use-callback-ref": 1.1.1(@types/react@19.2.6)(react@19.2.0)
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
optionalDependencies:
- "@types/react": 19.1.3
- "@types/react-dom": 19.1.3(@types/react@19.1.3)
-
- "@radix-ui/react-hover-card@1.1.13(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)":
- dependencies:
- "@radix-ui/primitive": 1.1.2
- "@radix-ui/react-compose-refs": 1.1.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-context": 1.1.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-dismissable-layer": 1.1.9(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-popper": 1.2.6(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-portal": 1.1.8(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-presence": 1.1.4(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-primitive": 2.1.2(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-use-controllable-state": 1.2.2(@types/react@19.1.3)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ "@types/react": 19.2.6
+ "@types/react-dom": 19.2.3(@types/react@19.2.6)
+
+ "@radix-ui/react-hover-card@1.1.15(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)":
+ dependencies:
+ "@radix-ui/primitive": 1.1.3
+ "@radix-ui/react-compose-refs": 1.1.2(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-context": 1.1.2(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-dismissable-layer": 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-popper": 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-portal": 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-presence": 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-primitive": 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-use-controllable-state": 1.2.2(@types/react@19.2.6)(react@19.2.0)
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
optionalDependencies:
- "@types/react": 19.1.3
- "@types/react-dom": 19.1.3(@types/react@19.1.3)
+ "@types/react": 19.2.6
+ "@types/react-dom": 19.2.3(@types/react@19.2.6)
- "@radix-ui/react-id@1.1.1(@types/react@19.1.3)(react@19.1.0)":
+ "@radix-ui/react-id@1.1.1(@types/react@19.2.6)(react@19.2.0)":
dependencies:
- "@radix-ui/react-use-layout-effect": 1.1.1(@types/react@19.1.3)(react@19.1.0)
- react: 19.1.0
+ "@radix-ui/react-use-layout-effect": 1.1.1(@types/react@19.2.6)(react@19.2.0)
+ react: 19.2.0
optionalDependencies:
- "@types/react": 19.1.3
+ "@types/react": 19.2.6
- "@radix-ui/react-label@2.1.6(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)":
+ "@radix-ui/react-label@2.1.8(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)":
dependencies:
- "@radix-ui/react-primitive": 2.1.2(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ "@radix-ui/react-primitive": 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
optionalDependencies:
- "@types/react": 19.1.3
- "@types/react-dom": 19.1.3(@types/react@19.1.3)
-
- "@radix-ui/react-menu@2.1.14(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)":
- dependencies:
- "@radix-ui/primitive": 1.1.2
- "@radix-ui/react-collection": 1.1.6(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-compose-refs": 1.1.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-context": 1.1.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-direction": 1.1.1(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-dismissable-layer": 1.1.9(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-focus-guards": 1.1.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-focus-scope": 1.1.6(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-id": 1.1.1(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-popper": 1.2.6(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-portal": 1.1.8(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-presence": 1.1.4(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-primitive": 2.1.2(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-roving-focus": 1.1.9(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-slot": 1.2.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-use-callback-ref": 1.1.1(@types/react@19.1.3)(react@19.1.0)
- aria-hidden: 1.2.4
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- react-remove-scroll: 2.6.3(@types/react@19.1.3)(react@19.1.0)
+ "@types/react": 19.2.6
+ "@types/react-dom": 19.2.3(@types/react@19.2.6)
+
+ "@radix-ui/react-menu@2.1.16(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)":
+ dependencies:
+ "@radix-ui/primitive": 1.1.3
+ "@radix-ui/react-collection": 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-compose-refs": 1.1.2(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-context": 1.1.2(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-direction": 1.1.1(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-dismissable-layer": 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-focus-guards": 1.1.3(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-focus-scope": 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-id": 1.1.1(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-popper": 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-portal": 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-presence": 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-primitive": 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-roving-focus": 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-slot": 1.2.3(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-use-callback-ref": 1.1.1(@types/react@19.2.6)(react@19.2.0)
+ aria-hidden: 1.2.6
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ react-remove-scroll: 2.7.1(@types/react@19.2.6)(react@19.2.0)
optionalDependencies:
- "@types/react": 19.1.3
- "@types/react-dom": 19.1.3(@types/react@19.1.3)
-
- "@radix-ui/react-popover@1.1.13(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)":
- dependencies:
- "@radix-ui/primitive": 1.1.2
- "@radix-ui/react-compose-refs": 1.1.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-context": 1.1.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-dismissable-layer": 1.1.9(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-focus-guards": 1.1.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-focus-scope": 1.1.6(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-id": 1.1.1(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-popper": 1.2.6(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-portal": 1.1.8(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-presence": 1.1.4(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-primitive": 2.1.2(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-slot": 1.2.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-use-controllable-state": 1.2.2(@types/react@19.1.3)(react@19.1.0)
- aria-hidden: 1.2.4
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- react-remove-scroll: 2.6.3(@types/react@19.1.3)(react@19.1.0)
+ "@types/react": 19.2.6
+ "@types/react-dom": 19.2.3(@types/react@19.2.6)
+
+ "@radix-ui/react-popover@1.1.15(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)":
+ dependencies:
+ "@radix-ui/primitive": 1.1.3
+ "@radix-ui/react-compose-refs": 1.1.2(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-context": 1.1.2(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-dismissable-layer": 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-focus-guards": 1.1.3(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-focus-scope": 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-id": 1.1.1(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-popper": 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-portal": 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-presence": 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-primitive": 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-slot": 1.2.3(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-use-controllable-state": 1.2.2(@types/react@19.2.6)(react@19.2.0)
+ aria-hidden: 1.2.6
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ react-remove-scroll: 2.7.1(@types/react@19.2.6)(react@19.2.0)
optionalDependencies:
- "@types/react": 19.1.3
- "@types/react-dom": 19.1.3(@types/react@19.1.3)
-
- "@radix-ui/react-popper@1.2.6(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)":
- dependencies:
- "@floating-ui/react-dom": 2.1.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-arrow": 1.1.6(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-compose-refs": 1.1.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-context": 1.1.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-primitive": 2.1.2(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-use-callback-ref": 1.1.1(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-use-layout-effect": 1.1.1(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-use-rect": 1.1.1(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-use-size": 1.1.1(@types/react@19.1.3)(react@19.1.0)
+ "@types/react": 19.2.6
+ "@types/react-dom": 19.2.3(@types/react@19.2.6)
+
+ "@radix-ui/react-popper@1.2.8(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)":
+ dependencies:
+ "@floating-ui/react-dom": 2.1.6(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-arrow": 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-compose-refs": 1.1.2(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-context": 1.1.2(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-primitive": 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-use-callback-ref": 1.1.1(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-use-layout-effect": 1.1.1(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-use-rect": 1.1.1(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-use-size": 1.1.1(@types/react@19.2.6)(react@19.2.0)
"@radix-ui/rect": 1.1.1
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ optionalDependencies:
+ "@types/react": 19.2.6
+ "@types/react-dom": 19.2.3(@types/react@19.2.6)
+
+ "@radix-ui/react-portal@1.1.9(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)":
+ dependencies:
+ "@radix-ui/react-primitive": 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-use-layout-effect": 1.1.1(@types/react@19.2.6)(react@19.2.0)
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
optionalDependencies:
- "@types/react": 19.1.3
- "@types/react-dom": 19.1.3(@types/react@19.1.3)
+ "@types/react": 19.2.6
+ "@types/react-dom": 19.2.3(@types/react@19.2.6)
- "@radix-ui/react-portal@1.1.8(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)":
+ "@radix-ui/react-presence@1.1.5(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)":
dependencies:
- "@radix-ui/react-primitive": 2.1.2(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-use-layout-effect": 1.1.1(@types/react@19.1.3)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ "@radix-ui/react-compose-refs": 1.1.2(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-use-layout-effect": 1.1.1(@types/react@19.2.6)(react@19.2.0)
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
optionalDependencies:
- "@types/react": 19.1.3
- "@types/react-dom": 19.1.3(@types/react@19.1.3)
+ "@types/react": 19.2.6
+ "@types/react-dom": 19.2.3(@types/react@19.2.6)
- "@radix-ui/react-presence@1.1.4(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)":
+ "@radix-ui/react-primitive@2.1.3(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)":
dependencies:
- "@radix-ui/react-compose-refs": 1.1.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-use-layout-effect": 1.1.1(@types/react@19.1.3)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ "@radix-ui/react-slot": 1.2.3(@types/react@19.2.6)(react@19.2.0)
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
optionalDependencies:
- "@types/react": 19.1.3
- "@types/react-dom": 19.1.3(@types/react@19.1.3)
+ "@types/react": 19.2.6
+ "@types/react-dom": 19.2.3(@types/react@19.2.6)
- "@radix-ui/react-primitive@2.1.2(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)":
+ "@radix-ui/react-primitive@2.1.4(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)":
dependencies:
- "@radix-ui/react-slot": 1.2.2(@types/react@19.1.3)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ "@radix-ui/react-slot": 1.2.4(@types/react@19.2.6)(react@19.2.0)
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
optionalDependencies:
- "@types/react": 19.1.3
- "@types/react-dom": 19.1.3(@types/react@19.1.3)
+ "@types/react": 19.2.6
+ "@types/react-dom": 19.2.3(@types/react@19.2.6)
- "@radix-ui/react-progress@1.1.6(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)":
+ "@radix-ui/react-progress@1.1.8(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)":
dependencies:
- "@radix-ui/react-context": 1.1.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-primitive": 2.1.2(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ "@radix-ui/react-context": 1.1.3(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-primitive": 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
optionalDependencies:
- "@types/react": 19.1.3
- "@types/react-dom": 19.1.3(@types/react@19.1.3)
-
- "@radix-ui/react-roving-focus@1.1.9(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)":
- dependencies:
- "@radix-ui/primitive": 1.1.2
- "@radix-ui/react-collection": 1.1.6(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-compose-refs": 1.1.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-context": 1.1.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-direction": 1.1.1(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-id": 1.1.1(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-primitive": 2.1.2(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-use-callback-ref": 1.1.1(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-use-controllable-state": 1.2.2(@types/react@19.1.3)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ "@types/react": 19.2.6
+ "@types/react-dom": 19.2.3(@types/react@19.2.6)
+
+ "@radix-ui/react-roving-focus@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)":
+ dependencies:
+ "@radix-ui/primitive": 1.1.3
+ "@radix-ui/react-collection": 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-compose-refs": 1.1.2(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-context": 1.1.2(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-direction": 1.1.1(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-id": 1.1.1(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-primitive": 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-use-callback-ref": 1.1.1(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-use-controllable-state": 1.2.2(@types/react@19.2.6)(react@19.2.0)
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
optionalDependencies:
- "@types/react": 19.1.3
- "@types/react-dom": 19.1.3(@types/react@19.1.3)
+ "@types/react": 19.2.6
+ "@types/react-dom": 19.2.3(@types/react@19.2.6)
- "@radix-ui/react-select@2.2.4(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)":
+ "@radix-ui/react-select@2.2.6(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)":
dependencies:
"@radix-ui/number": 1.1.1
- "@radix-ui/primitive": 1.1.2
- "@radix-ui/react-collection": 1.1.6(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-compose-refs": 1.1.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-context": 1.1.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-direction": 1.1.1(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-dismissable-layer": 1.1.9(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-focus-guards": 1.1.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-focus-scope": 1.1.6(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-id": 1.1.1(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-popper": 1.2.6(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-portal": 1.1.8(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-primitive": 2.1.2(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-slot": 1.2.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-use-callback-ref": 1.1.1(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-use-controllable-state": 1.2.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-use-layout-effect": 1.1.1(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-use-previous": 1.1.1(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-visually-hidden": 1.2.2(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- aria-hidden: 1.2.4
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- react-remove-scroll: 2.6.3(@types/react@19.1.3)(react@19.1.0)
+ "@radix-ui/primitive": 1.1.3
+ "@radix-ui/react-collection": 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-compose-refs": 1.1.2(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-context": 1.1.2(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-direction": 1.1.1(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-dismissable-layer": 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-focus-guards": 1.1.3(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-focus-scope": 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-id": 1.1.1(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-popper": 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-portal": 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-primitive": 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-slot": 1.2.3(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-use-callback-ref": 1.1.1(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-use-controllable-state": 1.2.2(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-use-layout-effect": 1.1.1(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-use-previous": 1.1.1(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-visually-hidden": 1.2.3(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ aria-hidden: 1.2.6
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ react-remove-scroll: 2.7.1(@types/react@19.2.6)(react@19.2.0)
optionalDependencies:
- "@types/react": 19.1.3
- "@types/react-dom": 19.1.3(@types/react@19.1.3)
+ "@types/react": 19.2.6
+ "@types/react-dom": 19.2.3(@types/react@19.2.6)
- "@radix-ui/react-separator@1.1.6(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)":
+ "@radix-ui/react-separator@1.1.8(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)":
dependencies:
- "@radix-ui/react-primitive": 2.1.2(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ "@radix-ui/react-primitive": 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
optionalDependencies:
- "@types/react": 19.1.3
- "@types/react-dom": 19.1.3(@types/react@19.1.3)
+ "@types/react": 19.2.6
+ "@types/react-dom": 19.2.3(@types/react@19.2.6)
- "@radix-ui/react-slot@1.2.2(@types/react@19.1.3)(react@19.1.0)":
+ "@radix-ui/react-slot@1.2.3(@types/react@19.2.6)(react@19.2.0)":
dependencies:
- "@radix-ui/react-compose-refs": 1.1.2(@types/react@19.1.3)(react@19.1.0)
- react: 19.1.0
+ "@radix-ui/react-compose-refs": 1.1.2(@types/react@19.2.6)(react@19.2.0)
+ react: 19.2.0
optionalDependencies:
- "@types/react": 19.1.3
-
- "@radix-ui/react-tabs@1.1.11(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)":
- dependencies:
- "@radix-ui/primitive": 1.1.2
- "@radix-ui/react-context": 1.1.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-direction": 1.1.1(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-id": 1.1.1(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-presence": 1.1.4(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-primitive": 2.1.2(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-roving-focus": 1.1.9(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-use-controllable-state": 1.2.2(@types/react@19.1.3)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ "@types/react": 19.2.6
+
+ "@radix-ui/react-slot@1.2.4(@types/react@19.2.6)(react@19.2.0)":
+ dependencies:
+ "@radix-ui/react-compose-refs": 1.1.2(@types/react@19.2.6)(react@19.2.0)
+ react: 19.2.0
optionalDependencies:
- "@types/react": 19.1.3
- "@types/react-dom": 19.1.3(@types/react@19.1.3)
-
- "@radix-ui/react-tooltip@1.2.6(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)":
- dependencies:
- "@radix-ui/primitive": 1.1.2
- "@radix-ui/react-compose-refs": 1.1.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-context": 1.1.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-dismissable-layer": 1.1.9(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-id": 1.1.1(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-popper": 1.2.6(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-portal": 1.1.8(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-presence": 1.1.4(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-primitive": 2.1.2(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-slot": 1.2.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-use-controllable-state": 1.2.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-visually-hidden": 1.2.2(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ "@types/react": 19.2.6
+
+ "@radix-ui/react-tabs@1.1.13(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)":
+ dependencies:
+ "@radix-ui/primitive": 1.1.3
+ "@radix-ui/react-context": 1.1.2(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-direction": 1.1.1(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-id": 1.1.1(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-presence": 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-primitive": 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-roving-focus": 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-use-controllable-state": 1.2.2(@types/react@19.2.6)(react@19.2.0)
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
optionalDependencies:
- "@types/react": 19.1.3
- "@types/react-dom": 19.1.3(@types/react@19.1.3)
+ "@types/react": 19.2.6
+ "@types/react-dom": 19.2.3(@types/react@19.2.6)
+
+ "@radix-ui/react-tooltip@1.2.8(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)":
+ dependencies:
+ "@radix-ui/primitive": 1.1.3
+ "@radix-ui/react-compose-refs": 1.1.2(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-context": 1.1.2(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-dismissable-layer": 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-id": 1.1.1(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-popper": 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-portal": 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-presence": 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-primitive": 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ "@radix-ui/react-slot": 1.2.3(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-use-controllable-state": 1.2.2(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-visually-hidden": 1.2.3(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ optionalDependencies:
+ "@types/react": 19.2.6
+ "@types/react-dom": 19.2.3(@types/react@19.2.6)
- "@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.1.3)(react@19.1.0)":
+ "@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.2.6)(react@19.2.0)":
dependencies:
- react: 19.1.0
+ react: 19.2.0
optionalDependencies:
- "@types/react": 19.1.3
+ "@types/react": 19.2.6
- "@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.1.3)(react@19.1.0)":
+ "@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.2.6)(react@19.2.0)":
dependencies:
- "@radix-ui/react-use-effect-event": 0.0.2(@types/react@19.1.3)(react@19.1.0)
- "@radix-ui/react-use-layout-effect": 1.1.1(@types/react@19.1.3)(react@19.1.0)
- react: 19.1.0
+ "@radix-ui/react-use-effect-event": 0.0.2(@types/react@19.2.6)(react@19.2.0)
+ "@radix-ui/react-use-layout-effect": 1.1.1(@types/react@19.2.6)(react@19.2.0)
+ react: 19.2.0
optionalDependencies:
- "@types/react": 19.1.3
+ "@types/react": 19.2.6
- "@radix-ui/react-use-effect-event@0.0.2(@types/react@19.1.3)(react@19.1.0)":
+ "@radix-ui/react-use-effect-event@0.0.2(@types/react@19.2.6)(react@19.2.0)":
dependencies:
- "@radix-ui/react-use-layout-effect": 1.1.1(@types/react@19.1.3)(react@19.1.0)
- react: 19.1.0
+ "@radix-ui/react-use-layout-effect": 1.1.1(@types/react@19.2.6)(react@19.2.0)
+ react: 19.2.0
optionalDependencies:
- "@types/react": 19.1.3
+ "@types/react": 19.2.6
- "@radix-ui/react-use-escape-keydown@1.1.1(@types/react@19.1.3)(react@19.1.0)":
+ "@radix-ui/react-use-escape-keydown@1.1.1(@types/react@19.2.6)(react@19.2.0)":
dependencies:
- "@radix-ui/react-use-callback-ref": 1.1.1(@types/react@19.1.3)(react@19.1.0)
- react: 19.1.0
+ "@radix-ui/react-use-callback-ref": 1.1.1(@types/react@19.2.6)(react@19.2.0)
+ react: 19.2.0
optionalDependencies:
- "@types/react": 19.1.3
+ "@types/react": 19.2.6
- "@radix-ui/react-use-is-hydrated@0.1.0(@types/react@19.1.3)(react@19.1.0)":
+ "@radix-ui/react-use-is-hydrated@0.1.0(@types/react@19.2.6)(react@19.2.0)":
dependencies:
- react: 19.1.0
- use-sync-external-store: 1.5.0(react@19.1.0)
+ react: 19.2.0
+ use-sync-external-store: 1.6.0(react@19.2.0)
optionalDependencies:
- "@types/react": 19.1.3
+ "@types/react": 19.2.6
- "@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.1.3)(react@19.1.0)":
+ "@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.2.6)(react@19.2.0)":
dependencies:
- react: 19.1.0
+ react: 19.2.0
optionalDependencies:
- "@types/react": 19.1.3
+ "@types/react": 19.2.6
- "@radix-ui/react-use-previous@1.1.1(@types/react@19.1.3)(react@19.1.0)":
+ "@radix-ui/react-use-previous@1.1.1(@types/react@19.2.6)(react@19.2.0)":
dependencies:
- react: 19.1.0
+ react: 19.2.0
optionalDependencies:
- "@types/react": 19.1.3
+ "@types/react": 19.2.6
- "@radix-ui/react-use-rect@1.1.1(@types/react@19.1.3)(react@19.1.0)":
+ "@radix-ui/react-use-rect@1.1.1(@types/react@19.2.6)(react@19.2.0)":
dependencies:
"@radix-ui/rect": 1.1.1
- react: 19.1.0
+ react: 19.2.0
optionalDependencies:
- "@types/react": 19.1.3
+ "@types/react": 19.2.6
- "@radix-ui/react-use-size@1.1.1(@types/react@19.1.3)(react@19.1.0)":
+ "@radix-ui/react-use-size@1.1.1(@types/react@19.2.6)(react@19.2.0)":
dependencies:
- "@radix-ui/react-use-layout-effect": 1.1.1(@types/react@19.1.3)(react@19.1.0)
- react: 19.1.0
+ "@radix-ui/react-use-layout-effect": 1.1.1(@types/react@19.2.6)(react@19.2.0)
+ react: 19.2.0
optionalDependencies:
- "@types/react": 19.1.3
+ "@types/react": 19.2.6
- "@radix-ui/react-visually-hidden@1.2.2(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)":
+ "@radix-ui/react-visually-hidden@1.2.3(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)":
dependencies:
- "@radix-ui/react-primitive": 2.1.2(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ "@radix-ui/react-primitive": 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
optionalDependencies:
- "@types/react": 19.1.3
- "@types/react-dom": 19.1.3(@types/react@19.1.3)
+ "@types/react": 19.2.6
+ "@types/react-dom": 19.2.3(@types/react@19.2.6)
"@radix-ui/rect@1.1.1": {}
@@ -14495,31 +14580,77 @@ snapshots:
dependencies:
big.js: 6.2.2
dayjs: 1.11.13
- viem: 2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)
+ viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)
+ transitivePeerDependencies:
+ - bufferutil
+ - typescript
+ - utf-8-validate
+ - zod
+
+ "@reown/appkit-common@1.7.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)":
+ dependencies:
+ big.js: 6.2.2
+ dayjs: 1.11.13
+ viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
transitivePeerDependencies:
- bufferutil
- typescript
- utf-8-validate
- zod
- "@reown/appkit-common@1.7.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)":
+ "@reown/appkit-common@1.7.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)":
dependencies:
big.js: 6.2.2
dayjs: 1.11.13
- viem: 2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
+ transitivePeerDependencies:
+ - bufferutil
+ - typescript
+ - utf-8-validate
+ - zod
+
+ "@reown/appkit-controllers@1.7.3(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)":
+ dependencies:
+ "@reown/appkit-common": 1.7.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ "@reown/appkit-wallet": 1.7.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)
+ "@walletconnect/universal-provider": 2.19.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ valtio: 1.13.2(@types/react@19.2.6)(react@19.2.0)
+ viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
transitivePeerDependencies:
+ - "@azure/app-configuration"
+ - "@azure/cosmos"
+ - "@azure/data-tables"
+ - "@azure/identity"
+ - "@azure/keyvault-secrets"
+ - "@azure/storage-blob"
+ - "@capacitor/preferences"
+ - "@deno/kv"
+ - "@netlify/blobs"
+ - "@planetscale/database"
+ - "@react-native-async-storage/async-storage"
+ - "@types/react"
+ - "@upstash/redis"
+ - "@vercel/blob"
+ - "@vercel/functions"
+ - "@vercel/kv"
+ - aws4fetch
- bufferutil
+ - db0
+ - encoding
+ - ioredis
+ - react
- typescript
+ - uploadthing
- utf-8-validate
- zod
- "@reown/appkit-controllers@1.7.3(@types/react@19.1.3)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)":
+ "@reown/appkit-controllers@1.7.3(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)":
dependencies:
- "@reown/appkit-common": 1.7.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ "@reown/appkit-common": 1.7.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
"@reown/appkit-wallet": 1.7.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)
- "@walletconnect/universal-provider": 2.19.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
- valtio: 1.13.2(@types/react@19.1.3)(react@19.1.0)
- viem: 2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ "@walletconnect/universal-provider": 2.19.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
+ valtio: 1.13.2(@types/react@19.2.6)(react@19.2.0)
+ viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
transitivePeerDependencies:
- "@azure/app-configuration"
- "@azure/cosmos"
@@ -14535,6 +14666,7 @@ snapshots:
- "@types/react"
- "@upstash/redis"
- "@vercel/blob"
+ - "@vercel/functions"
- "@vercel/kv"
- aws4fetch
- bufferutil
@@ -14551,12 +14683,49 @@ snapshots:
dependencies:
buffer: 6.0.3
- "@reown/appkit-scaffold-ui@1.7.3(@types/react@19.1.3)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.1.3)(react@19.1.0))(zod@3.24.4)":
+ "@reown/appkit-scaffold-ui@1.7.3(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.2.6)(react@19.2.0))(zod@3.25.76)":
+ dependencies:
+ "@reown/appkit-common": 1.7.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ "@reown/appkit-controllers": 1.7.3(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ "@reown/appkit-ui": 1.7.3(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ "@reown/appkit-utils": 1.7.3(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.2.6)(react@19.2.0))(zod@3.25.76)
+ "@reown/appkit-wallet": 1.7.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)
+ lit: 3.1.0
+ transitivePeerDependencies:
+ - "@azure/app-configuration"
+ - "@azure/cosmos"
+ - "@azure/data-tables"
+ - "@azure/identity"
+ - "@azure/keyvault-secrets"
+ - "@azure/storage-blob"
+ - "@capacitor/preferences"
+ - "@deno/kv"
+ - "@netlify/blobs"
+ - "@planetscale/database"
+ - "@react-native-async-storage/async-storage"
+ - "@types/react"
+ - "@upstash/redis"
+ - "@vercel/blob"
+ - "@vercel/functions"
+ - "@vercel/kv"
+ - aws4fetch
+ - bufferutil
+ - db0
+ - encoding
+ - ioredis
+ - react
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - valtio
+ - zod
+
+ "@reown/appkit-scaffold-ui@1.7.3(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.2.6)(react@19.2.0))(zod@4.1.12)":
dependencies:
- "@reown/appkit-common": 1.7.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
- "@reown/appkit-controllers": 1.7.3(@types/react@19.1.3)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
- "@reown/appkit-ui": 1.7.3(@types/react@19.1.3)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
- "@reown/appkit-utils": 1.7.3(@types/react@19.1.3)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.1.3)(react@19.1.0))(zod@3.24.4)
+ "@reown/appkit-common": 1.7.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
+ "@reown/appkit-controllers": 1.7.3(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
+ "@reown/appkit-ui": 1.7.3(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
+ "@reown/appkit-utils": 1.7.3(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.2.6)(react@19.2.0))(zod@4.1.12)
"@reown/appkit-wallet": 1.7.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)
lit: 3.1.0
transitivePeerDependencies:
@@ -14574,6 +14743,7 @@ snapshots:
- "@types/react"
- "@upstash/redis"
- "@vercel/blob"
+ - "@vercel/functions"
- "@vercel/kv"
- aws4fetch
- bufferutil
@@ -14587,10 +14757,45 @@ snapshots:
- valtio
- zod
- "@reown/appkit-ui@1.7.3(@types/react@19.1.3)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)":
+ "@reown/appkit-ui@1.7.3(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)":
+ dependencies:
+ "@reown/appkit-common": 1.7.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ "@reown/appkit-controllers": 1.7.3(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ "@reown/appkit-wallet": 1.7.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)
+ lit: 3.1.0
+ qrcode: 1.5.3
+ transitivePeerDependencies:
+ - "@azure/app-configuration"
+ - "@azure/cosmos"
+ - "@azure/data-tables"
+ - "@azure/identity"
+ - "@azure/keyvault-secrets"
+ - "@azure/storage-blob"
+ - "@capacitor/preferences"
+ - "@deno/kv"
+ - "@netlify/blobs"
+ - "@planetscale/database"
+ - "@react-native-async-storage/async-storage"
+ - "@types/react"
+ - "@upstash/redis"
+ - "@vercel/blob"
+ - "@vercel/functions"
+ - "@vercel/kv"
+ - aws4fetch
+ - bufferutil
+ - db0
+ - encoding
+ - ioredis
+ - react
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
+
+ "@reown/appkit-ui@1.7.3(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)":
dependencies:
- "@reown/appkit-common": 1.7.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
- "@reown/appkit-controllers": 1.7.3(@types/react@19.1.3)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ "@reown/appkit-common": 1.7.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
+ "@reown/appkit-controllers": 1.7.3(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
"@reown/appkit-wallet": 1.7.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)
lit: 3.1.0
qrcode: 1.5.3
@@ -14609,6 +14814,45 @@ snapshots:
- "@types/react"
- "@upstash/redis"
- "@vercel/blob"
+ - "@vercel/functions"
+ - "@vercel/kv"
+ - aws4fetch
+ - bufferutil
+ - db0
+ - encoding
+ - ioredis
+ - react
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
+
+ "@reown/appkit-utils@1.7.3(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.2.6)(react@19.2.0))(zod@3.25.76)":
+ dependencies:
+ "@reown/appkit-common": 1.7.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ "@reown/appkit-controllers": 1.7.3(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ "@reown/appkit-polyfills": 1.7.3
+ "@reown/appkit-wallet": 1.7.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)
+ "@walletconnect/logger": 2.1.2
+ "@walletconnect/universal-provider": 2.19.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ valtio: 1.13.2(@types/react@19.2.6)(react@19.2.0)
+ viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ transitivePeerDependencies:
+ - "@azure/app-configuration"
+ - "@azure/cosmos"
+ - "@azure/data-tables"
+ - "@azure/identity"
+ - "@azure/keyvault-secrets"
+ - "@azure/storage-blob"
+ - "@capacitor/preferences"
+ - "@deno/kv"
+ - "@netlify/blobs"
+ - "@planetscale/database"
+ - "@react-native-async-storage/async-storage"
+ - "@types/react"
+ - "@upstash/redis"
+ - "@vercel/blob"
+ - "@vercel/functions"
- "@vercel/kv"
- aws4fetch
- bufferutil
@@ -14621,16 +14865,16 @@ snapshots:
- utf-8-validate
- zod
- "@reown/appkit-utils@1.7.3(@types/react@19.1.3)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.1.3)(react@19.1.0))(zod@3.24.4)":
+ "@reown/appkit-utils@1.7.3(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.2.6)(react@19.2.0))(zod@4.1.12)":
dependencies:
- "@reown/appkit-common": 1.7.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
- "@reown/appkit-controllers": 1.7.3(@types/react@19.1.3)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ "@reown/appkit-common": 1.7.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
+ "@reown/appkit-controllers": 1.7.3(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
"@reown/appkit-polyfills": 1.7.3
"@reown/appkit-wallet": 1.7.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)
"@walletconnect/logger": 2.1.2
- "@walletconnect/universal-provider": 2.19.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
- valtio: 1.13.2(@types/react@19.1.3)(react@19.1.0)
- viem: 2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ "@walletconnect/universal-provider": 2.19.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
+ valtio: 1.13.2(@types/react@19.2.6)(react@19.2.0)
+ viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
transitivePeerDependencies:
- "@azure/app-configuration"
- "@azure/cosmos"
@@ -14646,6 +14890,7 @@ snapshots:
- "@types/react"
- "@upstash/redis"
- "@vercel/blob"
+ - "@vercel/functions"
- "@vercel/kv"
- aws4fetch
- bufferutil
@@ -14669,20 +14914,62 @@ snapshots:
- typescript
- utf-8-validate
- "@reown/appkit@1.7.3(@types/react@19.1.3)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)":
+ "@reown/appkit@1.7.3(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)":
+ dependencies:
+ "@reown/appkit-common": 1.7.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ "@reown/appkit-controllers": 1.7.3(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ "@reown/appkit-polyfills": 1.7.3
+ "@reown/appkit-scaffold-ui": 1.7.3(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.2.6)(react@19.2.0))(zod@3.25.76)
+ "@reown/appkit-ui": 1.7.3(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ "@reown/appkit-utils": 1.7.3(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.2.6)(react@19.2.0))(zod@3.25.76)
+ "@reown/appkit-wallet": 1.7.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)
+ "@walletconnect/types": 2.19.2
+ "@walletconnect/universal-provider": 2.19.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ bs58: 6.0.0
+ valtio: 1.13.2(@types/react@19.2.6)(react@19.2.0)
+ viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ transitivePeerDependencies:
+ - "@azure/app-configuration"
+ - "@azure/cosmos"
+ - "@azure/data-tables"
+ - "@azure/identity"
+ - "@azure/keyvault-secrets"
+ - "@azure/storage-blob"
+ - "@capacitor/preferences"
+ - "@deno/kv"
+ - "@netlify/blobs"
+ - "@planetscale/database"
+ - "@react-native-async-storage/async-storage"
+ - "@types/react"
+ - "@upstash/redis"
+ - "@vercel/blob"
+ - "@vercel/functions"
+ - "@vercel/kv"
+ - aws4fetch
+ - bufferutil
+ - db0
+ - encoding
+ - ioredis
+ - react
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
+
+ "@reown/appkit@1.7.3(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)":
dependencies:
- "@reown/appkit-common": 1.7.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
- "@reown/appkit-controllers": 1.7.3(@types/react@19.1.3)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ "@reown/appkit-common": 1.7.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
+ "@reown/appkit-controllers": 1.7.3(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
"@reown/appkit-polyfills": 1.7.3
- "@reown/appkit-scaffold-ui": 1.7.3(@types/react@19.1.3)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.1.3)(react@19.1.0))(zod@3.24.4)
- "@reown/appkit-ui": 1.7.3(@types/react@19.1.3)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
- "@reown/appkit-utils": 1.7.3(@types/react@19.1.3)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.1.3)(react@19.1.0))(zod@3.24.4)
+ "@reown/appkit-scaffold-ui": 1.7.3(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.2.6)(react@19.2.0))(zod@4.1.12)
+ "@reown/appkit-ui": 1.7.3(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
+ "@reown/appkit-utils": 1.7.3(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.2.6)(react@19.2.0))(zod@4.1.12)
"@reown/appkit-wallet": 1.7.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)
"@walletconnect/types": 2.19.2
- "@walletconnect/universal-provider": 2.19.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ "@walletconnect/universal-provider": 2.19.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
bs58: 6.0.0
- valtio: 1.13.2(@types/react@19.1.3)(react@19.1.0)
- viem: 2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ valtio: 1.13.2(@types/react@19.2.6)(react@19.2.0)
+ viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
transitivePeerDependencies:
- "@azure/app-configuration"
- "@azure/cosmos"
@@ -14698,6 +14985,7 @@ snapshots:
- "@types/react"
- "@upstash/redis"
- "@vercel/blob"
+ - "@vercel/functions"
- "@vercel/kv"
- aws4fetch
- bufferutil
@@ -14710,111 +14998,134 @@ snapshots:
- utf-8-validate
- zod
- "@rollup/pluginutils@5.1.4(rollup@4.40.2)":
+ "@rolldown/pluginutils@1.0.0-beta.27": {}
+
+ "@rollup/pluginutils@5.3.0(rollup@4.53.3)":
dependencies:
- "@types/estree": 1.0.7
+ "@types/estree": 1.0.8
estree-walker: 2.0.2
- picomatch: 4.0.2
+ picomatch: 4.0.3
optionalDependencies:
- rollup: 4.40.2
+ rollup: 4.53.3
+
+ "@rollup/rollup-android-arm-eabi@4.53.3":
+ optional: true
+
+ "@rollup/rollup-android-arm64@4.53.3":
+ optional: true
- "@rollup/rollup-android-arm-eabi@4.40.2":
+ "@rollup/rollup-darwin-arm64@4.53.3":
optional: true
- "@rollup/rollup-android-arm64@4.40.2":
+ "@rollup/rollup-darwin-x64@4.53.3":
optional: true
- "@rollup/rollup-darwin-arm64@4.40.2":
+ "@rollup/rollup-freebsd-arm64@4.53.3":
optional: true
- "@rollup/rollup-darwin-x64@4.40.2":
+ "@rollup/rollup-freebsd-x64@4.53.3":
optional: true
- "@rollup/rollup-freebsd-arm64@4.40.2":
+ "@rollup/rollup-linux-arm-gnueabihf@4.53.3":
optional: true
- "@rollup/rollup-freebsd-x64@4.40.2":
+ "@rollup/rollup-linux-arm-musleabihf@4.53.3":
optional: true
- "@rollup/rollup-linux-arm-gnueabihf@4.40.2":
+ "@rollup/rollup-linux-arm64-gnu@4.53.3":
optional: true
- "@rollup/rollup-linux-arm-musleabihf@4.40.2":
+ "@rollup/rollup-linux-arm64-musl@4.53.3":
optional: true
- "@rollup/rollup-linux-arm64-gnu@4.40.2":
+ "@rollup/rollup-linux-loong64-gnu@4.53.3":
optional: true
- "@rollup/rollup-linux-arm64-musl@4.40.2":
+ "@rollup/rollup-linux-ppc64-gnu@4.53.3":
optional: true
- "@rollup/rollup-linux-loongarch64-gnu@4.40.2":
+ "@rollup/rollup-linux-riscv64-gnu@4.53.3":
optional: true
- "@rollup/rollup-linux-powerpc64le-gnu@4.40.2":
+ "@rollup/rollup-linux-riscv64-musl@4.53.3":
optional: true
- "@rollup/rollup-linux-riscv64-gnu@4.40.2":
+ "@rollup/rollup-linux-s390x-gnu@4.53.3":
optional: true
- "@rollup/rollup-linux-riscv64-musl@4.40.2":
+ "@rollup/rollup-linux-x64-gnu@4.53.3":
optional: true
- "@rollup/rollup-linux-s390x-gnu@4.40.2":
+ "@rollup/rollup-linux-x64-musl@4.53.3":
optional: true
- "@rollup/rollup-linux-x64-gnu@4.40.2":
+ "@rollup/rollup-openharmony-arm64@4.53.3":
optional: true
- "@rollup/rollup-linux-x64-musl@4.40.2":
+ "@rollup/rollup-win32-arm64-msvc@4.53.3":
optional: true
- "@rollup/rollup-win32-arm64-msvc@4.40.2":
+ "@rollup/rollup-win32-ia32-msvc@4.53.3":
optional: true
- "@rollup/rollup-win32-ia32-msvc@4.40.2":
+ "@rollup/rollup-win32-x64-gnu@4.53.3":
optional: true
- "@rollup/rollup-win32-x64-msvc@4.40.2":
+ "@rollup/rollup-win32-x64-msvc@4.53.3":
optional: true
- "@rushstack/node-core-library@5.13.1(@types/node@22.15.17)":
+ "@rushstack/node-core-library@5.18.0(@types/node@24.10.1)":
dependencies:
ajv: 8.13.0
ajv-draft-04: 1.0.0(ajv@8.13.0)
ajv-formats: 3.0.1(ajv@8.13.0)
- fs-extra: 11.3.0
+ fs-extra: 11.3.2
import-lazy: 4.0.0
jju: 1.4.0
- resolve: 1.22.10
+ resolve: 1.22.11
semver: 7.5.4
optionalDependencies:
- "@types/node": 22.15.17
+ "@types/node": 24.10.1
+
+ "@rushstack/problem-matcher@0.1.1(@types/node@24.10.1)":
+ optionalDependencies:
+ "@types/node": 24.10.1
- "@rushstack/rig-package@0.5.3":
+ "@rushstack/rig-package@0.6.0":
dependencies:
- resolve: 1.22.10
+ resolve: 1.22.11
strip-json-comments: 3.1.1
- "@rushstack/terminal@0.15.3(@types/node@22.15.17)":
+ "@rushstack/terminal@0.19.3(@types/node@24.10.1)":
dependencies:
- "@rushstack/node-core-library": 5.13.1(@types/node@22.15.17)
+ "@rushstack/node-core-library": 5.18.0(@types/node@24.10.1)
+ "@rushstack/problem-matcher": 0.1.1(@types/node@24.10.1)
supports-color: 8.1.1
optionalDependencies:
- "@types/node": 22.15.17
+ "@types/node": 24.10.1
- "@rushstack/ts-command-line@5.0.1(@types/node@22.15.17)":
+ "@rushstack/ts-command-line@5.1.3(@types/node@24.10.1)":
dependencies:
- "@rushstack/terminal": 0.15.3(@types/node@22.15.17)
+ "@rushstack/terminal": 0.19.3(@types/node@24.10.1)
"@types/argparse": 1.0.38
argparse: 1.0.10
string-argv: 0.3.2
transitivePeerDependencies:
- "@types/node"
- "@safe-global/safe-apps-provider@0.18.6(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)":
+ "@safe-global/safe-apps-provider@0.18.6(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)":
+ dependencies:
+ "@safe-global/safe-apps-sdk": 9.1.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ events: 3.3.0
+ transitivePeerDependencies:
+ - bufferutil
+ - typescript
+ - utf-8-validate
+ - zod
+
+ "@safe-global/safe-apps-provider@0.18.6(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)":
dependencies:
- "@safe-global/safe-apps-sdk": 9.1.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ "@safe-global/safe-apps-sdk": 9.1.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
events: 3.3.0
transitivePeerDependencies:
- bufferutil
@@ -14822,10 +15133,20 @@ snapshots:
- utf-8-validate
- zod
- "@safe-global/safe-apps-sdk@9.1.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)":
+ "@safe-global/safe-apps-sdk@9.1.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)":
+ dependencies:
+ "@safe-global/safe-gateway-typescript-sdk": 3.23.1
+ viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ transitivePeerDependencies:
+ - bufferutil
+ - typescript
+ - utf-8-validate
+ - zod
+
+ "@safe-global/safe-apps-sdk@9.1.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)":
dependencies:
"@safe-global/safe-gateway-typescript-sdk": 3.23.1
- viem: 2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
transitivePeerDependencies:
- bufferutil
- typescript
@@ -14847,7 +15168,7 @@ snapshots:
"@scalar/openapi-types@0.2.0":
dependencies:
- zod: 3.24.4
+ zod: 3.25.76
"@scalar/themes@0.9.86":
dependencies:
@@ -14862,13 +15183,13 @@ snapshots:
dependencies:
"@scalar/openapi-types": 0.2.0
"@unhead/schema": 1.11.20
- nanoid: 5.1.5
+ nanoid: 5.1.6
type-fest: 4.41.0
- zod: 3.24.4
+ zod: 3.25.76
"@scure/base@1.1.9": {}
- "@scure/base@1.2.5": {}
+ "@scure/base@1.2.6": {}
"@scure/bip32@1.4.0":
dependencies:
@@ -14880,13 +15201,13 @@ snapshots:
dependencies:
"@noble/curves": 1.8.2
"@noble/hashes": 1.7.2
- "@scure/base": 1.2.5
+ "@scure/base": 1.2.6
"@scure/bip32@1.7.0":
dependencies:
- "@noble/curves": 1.9.0
+ "@noble/curves": 1.9.1
"@noble/hashes": 1.8.0
- "@scure/base": 1.2.5
+ "@scure/base": 1.2.6
"@scure/bip39@1.3.0":
dependencies:
@@ -14896,231 +15217,235 @@ snapshots:
"@scure/bip39@1.5.4":
dependencies:
"@noble/hashes": 1.7.2
- "@scure/base": 1.2.5
+ "@scure/base": 1.2.6
"@scure/bip39@1.6.0":
dependencies:
"@noble/hashes": 1.8.0
- "@scure/base": 1.2.5
+ "@scure/base": 1.2.6
- "@sinclair/typebox@0.34.33": {}
+ "@sinclair/typebox@0.34.41": {}
- "@smithy/abort-controller@4.0.2":
+ "@smithy/abort-controller@4.2.5":
dependencies:
- "@smithy/types": 4.2.0
+ "@smithy/types": 4.9.0
tslib: 2.8.1
- "@smithy/config-resolver@4.1.2":
+ "@smithy/config-resolver@4.4.3":
dependencies:
- "@smithy/node-config-provider": 4.1.1
- "@smithy/types": 4.2.0
- "@smithy/util-config-provider": 4.0.0
- "@smithy/util-middleware": 4.0.2
+ "@smithy/node-config-provider": 4.3.5
+ "@smithy/types": 4.9.0
+ "@smithy/util-config-provider": 4.2.0
+ "@smithy/util-endpoints": 3.2.5
+ "@smithy/util-middleware": 4.2.5
tslib: 2.8.1
- "@smithy/core@3.3.1":
- dependencies:
- "@smithy/middleware-serde": 4.0.3
- "@smithy/protocol-http": 5.1.0
- "@smithy/types": 4.2.0
- "@smithy/util-body-length-browser": 4.0.0
- "@smithy/util-middleware": 4.0.2
- "@smithy/util-stream": 4.2.0
- "@smithy/util-utf8": 4.0.0
+ "@smithy/core@3.18.5":
+ dependencies:
+ "@smithy/middleware-serde": 4.2.6
+ "@smithy/protocol-http": 5.3.5
+ "@smithy/types": 4.9.0
+ "@smithy/util-base64": 4.3.0
+ "@smithy/util-body-length-browser": 4.2.0
+ "@smithy/util-middleware": 4.2.5
+ "@smithy/util-stream": 4.5.6
+ "@smithy/util-utf8": 4.2.0
+ "@smithy/uuid": 1.1.0
tslib: 2.8.1
- "@smithy/credential-provider-imds@4.0.4":
+ "@smithy/credential-provider-imds@4.2.5":
dependencies:
- "@smithy/node-config-provider": 4.1.1
- "@smithy/property-provider": 4.0.2
- "@smithy/types": 4.2.0
- "@smithy/url-parser": 4.0.2
+ "@smithy/node-config-provider": 4.3.5
+ "@smithy/property-provider": 4.2.5
+ "@smithy/types": 4.9.0
+ "@smithy/url-parser": 4.2.5
tslib: 2.8.1
- "@smithy/eventstream-codec@4.0.2":
+ "@smithy/eventstream-codec@4.2.5":
dependencies:
"@aws-crypto/crc32": 5.2.0
- "@smithy/types": 4.2.0
- "@smithy/util-hex-encoding": 4.0.0
+ "@smithy/types": 4.9.0
+ "@smithy/util-hex-encoding": 4.2.0
tslib: 2.8.1
- "@smithy/eventstream-serde-browser@4.0.2":
+ "@smithy/eventstream-serde-browser@4.2.5":
dependencies:
- "@smithy/eventstream-serde-universal": 4.0.2
- "@smithy/types": 4.2.0
+ "@smithy/eventstream-serde-universal": 4.2.5
+ "@smithy/types": 4.9.0
tslib: 2.8.1
- "@smithy/eventstream-serde-config-resolver@4.1.0":
+ "@smithy/eventstream-serde-config-resolver@4.3.5":
dependencies:
- "@smithy/types": 4.2.0
+ "@smithy/types": 4.9.0
tslib: 2.8.1
- "@smithy/eventstream-serde-node@4.0.2":
+ "@smithy/eventstream-serde-node@4.2.5":
dependencies:
- "@smithy/eventstream-serde-universal": 4.0.2
- "@smithy/types": 4.2.0
+ "@smithy/eventstream-serde-universal": 4.2.5
+ "@smithy/types": 4.9.0
tslib: 2.8.1
- "@smithy/eventstream-serde-universal@4.0.2":
+ "@smithy/eventstream-serde-universal@4.2.5":
dependencies:
- "@smithy/eventstream-codec": 4.0.2
- "@smithy/types": 4.2.0
+ "@smithy/eventstream-codec": 4.2.5
+ "@smithy/types": 4.9.0
tslib: 2.8.1
- "@smithy/fetch-http-handler@5.0.2":
+ "@smithy/fetch-http-handler@5.3.6":
dependencies:
- "@smithy/protocol-http": 5.1.0
- "@smithy/querystring-builder": 4.0.2
- "@smithy/types": 4.2.0
- "@smithy/util-base64": 4.0.0
+ "@smithy/protocol-http": 5.3.5
+ "@smithy/querystring-builder": 4.2.5
+ "@smithy/types": 4.9.0
+ "@smithy/util-base64": 4.3.0
tslib: 2.8.1
- "@smithy/hash-node@4.0.2":
+ "@smithy/hash-node@4.2.5":
dependencies:
- "@smithy/types": 4.2.0
- "@smithy/util-buffer-from": 4.0.0
- "@smithy/util-utf8": 4.0.0
+ "@smithy/types": 4.9.0
+ "@smithy/util-buffer-from": 4.2.0
+ "@smithy/util-utf8": 4.2.0
tslib: 2.8.1
- "@smithy/invalid-dependency@4.0.2":
+ "@smithy/invalid-dependency@4.2.5":
dependencies:
- "@smithy/types": 4.2.0
+ "@smithy/types": 4.9.0
tslib: 2.8.1
"@smithy/is-array-buffer@2.2.0":
dependencies:
tslib: 2.8.1
- "@smithy/is-array-buffer@4.0.0":
+ "@smithy/is-array-buffer@4.2.0":
dependencies:
tslib: 2.8.1
- "@smithy/middleware-content-length@4.0.2":
+ "@smithy/middleware-content-length@4.2.5":
dependencies:
- "@smithy/protocol-http": 5.1.0
- "@smithy/types": 4.2.0
+ "@smithy/protocol-http": 5.3.5
+ "@smithy/types": 4.9.0
tslib: 2.8.1
- "@smithy/middleware-endpoint@4.1.4":
+ "@smithy/middleware-endpoint@4.3.12":
dependencies:
- "@smithy/core": 3.3.1
- "@smithy/middleware-serde": 4.0.3
- "@smithy/node-config-provider": 4.1.1
- "@smithy/shared-ini-file-loader": 4.0.2
- "@smithy/types": 4.2.0
- "@smithy/url-parser": 4.0.2
- "@smithy/util-middleware": 4.0.2
+ "@smithy/core": 3.18.5
+ "@smithy/middleware-serde": 4.2.6
+ "@smithy/node-config-provider": 4.3.5
+ "@smithy/shared-ini-file-loader": 4.4.0
+ "@smithy/types": 4.9.0
+ "@smithy/url-parser": 4.2.5
+ "@smithy/util-middleware": 4.2.5
tslib: 2.8.1
- "@smithy/middleware-retry@4.1.5":
+ "@smithy/middleware-retry@4.4.12":
dependencies:
- "@smithy/node-config-provider": 4.1.1
- "@smithy/protocol-http": 5.1.0
- "@smithy/service-error-classification": 4.0.3
- "@smithy/smithy-client": 4.2.4
- "@smithy/types": 4.2.0
- "@smithy/util-middleware": 4.0.2
- "@smithy/util-retry": 4.0.3
+ "@smithy/node-config-provider": 4.3.5
+ "@smithy/protocol-http": 5.3.5
+ "@smithy/service-error-classification": 4.2.5
+ "@smithy/smithy-client": 4.9.8
+ "@smithy/types": 4.9.0
+ "@smithy/util-middleware": 4.2.5
+ "@smithy/util-retry": 4.2.5
+ "@smithy/uuid": 1.1.0
tslib: 2.8.1
- uuid: 9.0.1
- "@smithy/middleware-serde@4.0.3":
+ "@smithy/middleware-serde@4.2.6":
dependencies:
- "@smithy/types": 4.2.0
+ "@smithy/protocol-http": 5.3.5
+ "@smithy/types": 4.9.0
tslib: 2.8.1
- "@smithy/middleware-stack@4.0.2":
+ "@smithy/middleware-stack@4.2.5":
dependencies:
- "@smithy/types": 4.2.0
+ "@smithy/types": 4.9.0
tslib: 2.8.1
- "@smithy/node-config-provider@4.1.1":
+ "@smithy/node-config-provider@4.3.5":
dependencies:
- "@smithy/property-provider": 4.0.2
- "@smithy/shared-ini-file-loader": 4.0.2
- "@smithy/types": 4.2.0
+ "@smithy/property-provider": 4.2.5
+ "@smithy/shared-ini-file-loader": 4.4.0
+ "@smithy/types": 4.9.0
tslib: 2.8.1
- "@smithy/node-http-handler@4.0.4":
+ "@smithy/node-http-handler@4.4.5":
dependencies:
- "@smithy/abort-controller": 4.0.2
- "@smithy/protocol-http": 5.1.0
- "@smithy/querystring-builder": 4.0.2
- "@smithy/types": 4.2.0
+ "@smithy/abort-controller": 4.2.5
+ "@smithy/protocol-http": 5.3.5
+ "@smithy/querystring-builder": 4.2.5
+ "@smithy/types": 4.9.0
tslib: 2.8.1
- "@smithy/property-provider@4.0.2":
+ "@smithy/property-provider@4.2.5":
dependencies:
- "@smithy/types": 4.2.0
+ "@smithy/types": 4.9.0
tslib: 2.8.1
- "@smithy/protocol-http@5.1.0":
+ "@smithy/protocol-http@5.3.5":
dependencies:
- "@smithy/types": 4.2.0
+ "@smithy/types": 4.9.0
tslib: 2.8.1
- "@smithy/querystring-builder@4.0.2":
+ "@smithy/querystring-builder@4.2.5":
dependencies:
- "@smithy/types": 4.2.0
- "@smithy/util-uri-escape": 4.0.0
+ "@smithy/types": 4.9.0
+ "@smithy/util-uri-escape": 4.2.0
tslib: 2.8.1
- "@smithy/querystring-parser@4.0.2":
+ "@smithy/querystring-parser@4.2.5":
dependencies:
- "@smithy/types": 4.2.0
+ "@smithy/types": 4.9.0
tslib: 2.8.1
- "@smithy/service-error-classification@4.0.3":
+ "@smithy/service-error-classification@4.2.5":
dependencies:
- "@smithy/types": 4.2.0
+ "@smithy/types": 4.9.0
- "@smithy/shared-ini-file-loader@4.0.2":
+ "@smithy/shared-ini-file-loader@4.4.0":
dependencies:
- "@smithy/types": 4.2.0
+ "@smithy/types": 4.9.0
tslib: 2.8.1
- "@smithy/signature-v4@5.1.0":
+ "@smithy/signature-v4@5.3.5":
dependencies:
- "@smithy/is-array-buffer": 4.0.0
- "@smithy/protocol-http": 5.1.0
- "@smithy/types": 4.2.0
- "@smithy/util-hex-encoding": 4.0.0
- "@smithy/util-middleware": 4.0.2
- "@smithy/util-uri-escape": 4.0.0
- "@smithy/util-utf8": 4.0.0
+ "@smithy/is-array-buffer": 4.2.0
+ "@smithy/protocol-http": 5.3.5
+ "@smithy/types": 4.9.0
+ "@smithy/util-hex-encoding": 4.2.0
+ "@smithy/util-middleware": 4.2.5
+ "@smithy/util-uri-escape": 4.2.0
+ "@smithy/util-utf8": 4.2.0
tslib: 2.8.1
- "@smithy/smithy-client@4.2.4":
+ "@smithy/smithy-client@4.9.8":
dependencies:
- "@smithy/core": 3.3.1
- "@smithy/middleware-endpoint": 4.1.4
- "@smithy/middleware-stack": 4.0.2
- "@smithy/protocol-http": 5.1.0
- "@smithy/types": 4.2.0
- "@smithy/util-stream": 4.2.0
+ "@smithy/core": 3.18.5
+ "@smithy/middleware-endpoint": 4.3.12
+ "@smithy/middleware-stack": 4.2.5
+ "@smithy/protocol-http": 5.3.5
+ "@smithy/types": 4.9.0
+ "@smithy/util-stream": 4.5.6
tslib: 2.8.1
- "@smithy/types@4.2.0":
+ "@smithy/types@4.9.0":
dependencies:
tslib: 2.8.1
- "@smithy/url-parser@4.0.2":
+ "@smithy/url-parser@4.2.5":
dependencies:
- "@smithy/querystring-parser": 4.0.2
- "@smithy/types": 4.2.0
+ "@smithy/querystring-parser": 4.2.5
+ "@smithy/types": 4.9.0
tslib: 2.8.1
- "@smithy/util-base64@4.0.0":
+ "@smithy/util-base64@4.3.0":
dependencies:
- "@smithy/util-buffer-from": 4.0.0
- "@smithy/util-utf8": 4.0.0
+ "@smithy/util-buffer-from": 4.2.0
+ "@smithy/util-utf8": 4.2.0
tslib: 2.8.1
- "@smithy/util-body-length-browser@4.0.0":
+ "@smithy/util-body-length-browser@4.2.0":
dependencies:
tslib: 2.8.1
- "@smithy/util-body-length-node@4.0.0":
+ "@smithy/util-body-length-node@4.2.1":
dependencies:
tslib: 2.8.1
@@ -15129,66 +15454,65 @@ snapshots:
"@smithy/is-array-buffer": 2.2.0
tslib: 2.8.1
- "@smithy/util-buffer-from@4.0.0":
+ "@smithy/util-buffer-from@4.2.0":
dependencies:
- "@smithy/is-array-buffer": 4.0.0
+ "@smithy/is-array-buffer": 4.2.0
tslib: 2.8.1
- "@smithy/util-config-provider@4.0.0":
+ "@smithy/util-config-provider@4.2.0":
dependencies:
tslib: 2.8.1
- "@smithy/util-defaults-mode-browser@4.0.12":
+ "@smithy/util-defaults-mode-browser@4.3.11":
dependencies:
- "@smithy/property-provider": 4.0.2
- "@smithy/smithy-client": 4.2.4
- "@smithy/types": 4.2.0
- bowser: 2.11.0
+ "@smithy/property-provider": 4.2.5
+ "@smithy/smithy-client": 4.9.8
+ "@smithy/types": 4.9.0
tslib: 2.8.1
- "@smithy/util-defaults-mode-node@4.0.12":
+ "@smithy/util-defaults-mode-node@4.2.14":
dependencies:
- "@smithy/config-resolver": 4.1.2
- "@smithy/credential-provider-imds": 4.0.4
- "@smithy/node-config-provider": 4.1.1
- "@smithy/property-provider": 4.0.2
- "@smithy/smithy-client": 4.2.4
- "@smithy/types": 4.2.0
+ "@smithy/config-resolver": 4.4.3
+ "@smithy/credential-provider-imds": 4.2.5
+ "@smithy/node-config-provider": 4.3.5
+ "@smithy/property-provider": 4.2.5
+ "@smithy/smithy-client": 4.9.8
+ "@smithy/types": 4.9.0
tslib: 2.8.1
- "@smithy/util-endpoints@3.0.4":
+ "@smithy/util-endpoints@3.2.5":
dependencies:
- "@smithy/node-config-provider": 4.1.1
- "@smithy/types": 4.2.0
+ "@smithy/node-config-provider": 4.3.5
+ "@smithy/types": 4.9.0
tslib: 2.8.1
- "@smithy/util-hex-encoding@4.0.0":
+ "@smithy/util-hex-encoding@4.2.0":
dependencies:
tslib: 2.8.1
- "@smithy/util-middleware@4.0.2":
+ "@smithy/util-middleware@4.2.5":
dependencies:
- "@smithy/types": 4.2.0
+ "@smithy/types": 4.9.0
tslib: 2.8.1
- "@smithy/util-retry@4.0.3":
+ "@smithy/util-retry@4.2.5":
dependencies:
- "@smithy/service-error-classification": 4.0.3
- "@smithy/types": 4.2.0
+ "@smithy/service-error-classification": 4.2.5
+ "@smithy/types": 4.9.0
tslib: 2.8.1
- "@smithy/util-stream@4.2.0":
+ "@smithy/util-stream@4.5.6":
dependencies:
- "@smithy/fetch-http-handler": 5.0.2
- "@smithy/node-http-handler": 4.0.4
- "@smithy/types": 4.2.0
- "@smithy/util-base64": 4.0.0
- "@smithy/util-buffer-from": 4.0.0
- "@smithy/util-hex-encoding": 4.0.0
- "@smithy/util-utf8": 4.0.0
+ "@smithy/fetch-http-handler": 5.3.6
+ "@smithy/node-http-handler": 4.4.5
+ "@smithy/types": 4.9.0
+ "@smithy/util-base64": 4.3.0
+ "@smithy/util-buffer-from": 4.2.0
+ "@smithy/util-hex-encoding": 4.2.0
+ "@smithy/util-utf8": 4.2.0
tslib: 2.8.1
- "@smithy/util-uri-escape@4.0.0":
+ "@smithy/util-uri-escape@4.2.0":
dependencies:
tslib: 2.8.1
@@ -15197,69 +15521,73 @@ snapshots:
"@smithy/util-buffer-from": 2.2.0
tslib: 2.8.1
- "@smithy/util-utf8@4.0.0":
+ "@smithy/util-utf8@4.2.0":
dependencies:
- "@smithy/util-buffer-from": 4.0.0
+ "@smithy/util-buffer-from": 4.2.0
tslib: 2.8.1
- "@smithy/util-waiter@4.0.3":
+ "@smithy/util-waiter@4.2.5":
+ dependencies:
+ "@smithy/abort-controller": 4.2.5
+ "@smithy/types": 4.9.0
+ tslib: 2.8.1
+
+ "@smithy/uuid@1.1.0":
dependencies:
- "@smithy/abort-controller": 4.0.2
- "@smithy/types": 4.2.0
tslib: 2.8.1
"@socket.io/component-emitter@3.1.2": {}
"@standard-schema/spec@1.0.0": {}
- "@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.27.1)":
+ "@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.28.5)":
dependencies:
- "@babel/core": 7.27.1
+ "@babel/core": 7.28.5
- "@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.27.1)":
+ "@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.28.5)":
dependencies:
- "@babel/core": 7.27.1
+ "@babel/core": 7.28.5
- "@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.27.1)":
+ "@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.28.5)":
dependencies:
- "@babel/core": 7.27.1
+ "@babel/core": 7.28.5
- "@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.27.1)":
+ "@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.28.5)":
dependencies:
- "@babel/core": 7.27.1
+ "@babel/core": 7.28.5
- "@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.27.1)":
+ "@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.28.5)":
dependencies:
- "@babel/core": 7.27.1
+ "@babel/core": 7.28.5
- "@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.27.1)":
+ "@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.28.5)":
dependencies:
- "@babel/core": 7.27.1
+ "@babel/core": 7.28.5
- "@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.27.1)":
+ "@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.28.5)":
dependencies:
- "@babel/core": 7.27.1
+ "@babel/core": 7.28.5
- "@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.27.1)":
+ "@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.28.5)":
dependencies:
- "@babel/core": 7.27.1
+ "@babel/core": 7.28.5
- "@svgr/babel-preset@8.1.0(@babel/core@7.27.1)":
+ "@svgr/babel-preset@8.1.0(@babel/core@7.28.5)":
dependencies:
- "@babel/core": 7.27.1
- "@svgr/babel-plugin-add-jsx-attribute": 8.0.0(@babel/core@7.27.1)
- "@svgr/babel-plugin-remove-jsx-attribute": 8.0.0(@babel/core@7.27.1)
- "@svgr/babel-plugin-remove-jsx-empty-expression": 8.0.0(@babel/core@7.27.1)
- "@svgr/babel-plugin-replace-jsx-attribute-value": 8.0.0(@babel/core@7.27.1)
- "@svgr/babel-plugin-svg-dynamic-title": 8.0.0(@babel/core@7.27.1)
- "@svgr/babel-plugin-svg-em-dimensions": 8.0.0(@babel/core@7.27.1)
- "@svgr/babel-plugin-transform-react-native-svg": 8.1.0(@babel/core@7.27.1)
- "@svgr/babel-plugin-transform-svg-component": 8.0.0(@babel/core@7.27.1)
+ "@babel/core": 7.28.5
+ "@svgr/babel-plugin-add-jsx-attribute": 8.0.0(@babel/core@7.28.5)
+ "@svgr/babel-plugin-remove-jsx-attribute": 8.0.0(@babel/core@7.28.5)
+ "@svgr/babel-plugin-remove-jsx-empty-expression": 8.0.0(@babel/core@7.28.5)
+ "@svgr/babel-plugin-replace-jsx-attribute-value": 8.0.0(@babel/core@7.28.5)
+ "@svgr/babel-plugin-svg-dynamic-title": 8.0.0(@babel/core@7.28.5)
+ "@svgr/babel-plugin-svg-em-dimensions": 8.0.0(@babel/core@7.28.5)
+ "@svgr/babel-plugin-transform-react-native-svg": 8.1.0(@babel/core@7.28.5)
+ "@svgr/babel-plugin-transform-svg-component": 8.0.0(@babel/core@7.28.5)
"@svgr/core@8.1.0(typescript@5.7.3)":
dependencies:
- "@babel/core": 7.27.1
- "@svgr/babel-preset": 8.1.0(@babel/core@7.27.1)
+ "@babel/core": 7.28.5
+ "@svgr/babel-preset": 8.1.0(@babel/core@7.28.5)
camelcase: 6.3.0
cosmiconfig: 8.3.6(typescript@5.7.3)
snake-case: 3.0.4
@@ -15269,288 +15597,342 @@ snapshots:
"@svgr/hast-util-to-babel-ast@8.0.0":
dependencies:
- "@babel/types": 7.27.1
+ "@babel/types": 7.28.5
entities: 4.5.0
"@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.7.3))":
dependencies:
- "@babel/core": 7.27.1
- "@svgr/babel-preset": 8.1.0(@babel/core@7.27.1)
+ "@babel/core": 7.28.5
+ "@svgr/babel-preset": 8.1.0(@babel/core@7.28.5)
"@svgr/core": 8.1.0(typescript@5.7.3)
"@svgr/hast-util-to-babel-ast": 8.0.0
svg-parser: 2.0.4
transitivePeerDependencies:
- supports-color
- "@tailwindcss/node@4.1.6":
+ "@tailwindcss/node@4.1.17":
dependencies:
- "@ampproject/remapping": 2.3.0
- enhanced-resolve: 5.18.1
- jiti: 2.4.2
- lightningcss: 1.29.2
- magic-string: 0.30.17
+ "@jridgewell/remapping": 2.3.5
+ enhanced-resolve: 5.18.3
+ jiti: 2.6.1
+ lightningcss: 1.30.2
+ magic-string: 0.30.21
source-map-js: 1.2.1
- tailwindcss: 4.1.6
+ tailwindcss: 4.1.17
- "@tailwindcss/oxide-android-arm64@4.1.6":
+ "@tailwindcss/oxide-android-arm64@4.1.17":
optional: true
- "@tailwindcss/oxide-darwin-arm64@4.1.6":
+ "@tailwindcss/oxide-darwin-arm64@4.1.17":
optional: true
- "@tailwindcss/oxide-darwin-x64@4.1.6":
+ "@tailwindcss/oxide-darwin-x64@4.1.17":
optional: true
- "@tailwindcss/oxide-freebsd-x64@4.1.6":
+ "@tailwindcss/oxide-freebsd-x64@4.1.17":
optional: true
- "@tailwindcss/oxide-linux-arm-gnueabihf@4.1.6":
+ "@tailwindcss/oxide-linux-arm-gnueabihf@4.1.17":
optional: true
- "@tailwindcss/oxide-linux-arm64-gnu@4.1.6":
+ "@tailwindcss/oxide-linux-arm64-gnu@4.1.17":
optional: true
- "@tailwindcss/oxide-linux-arm64-musl@4.1.6":
+ "@tailwindcss/oxide-linux-arm64-musl@4.1.17":
optional: true
- "@tailwindcss/oxide-linux-x64-gnu@4.1.6":
+ "@tailwindcss/oxide-linux-x64-gnu@4.1.17":
optional: true
- "@tailwindcss/oxide-linux-x64-musl@4.1.6":
+ "@tailwindcss/oxide-linux-x64-musl@4.1.17":
optional: true
- "@tailwindcss/oxide-wasm32-wasi@4.1.6":
+ "@tailwindcss/oxide-wasm32-wasi@4.1.17":
optional: true
- "@tailwindcss/oxide-win32-arm64-msvc@4.1.6":
+ "@tailwindcss/oxide-win32-arm64-msvc@4.1.17":
optional: true
- "@tailwindcss/oxide-win32-x64-msvc@4.1.6":
+ "@tailwindcss/oxide-win32-x64-msvc@4.1.17":
optional: true
- "@tailwindcss/oxide@4.1.6":
- dependencies:
- detect-libc: 2.0.4
- tar: 7.4.3
+ "@tailwindcss/oxide@4.1.17":
optionalDependencies:
- "@tailwindcss/oxide-android-arm64": 4.1.6
- "@tailwindcss/oxide-darwin-arm64": 4.1.6
- "@tailwindcss/oxide-darwin-x64": 4.1.6
- "@tailwindcss/oxide-freebsd-x64": 4.1.6
- "@tailwindcss/oxide-linux-arm-gnueabihf": 4.1.6
- "@tailwindcss/oxide-linux-arm64-gnu": 4.1.6
- "@tailwindcss/oxide-linux-arm64-musl": 4.1.6
- "@tailwindcss/oxide-linux-x64-gnu": 4.1.6
- "@tailwindcss/oxide-linux-x64-musl": 4.1.6
- "@tailwindcss/oxide-wasm32-wasi": 4.1.6
- "@tailwindcss/oxide-win32-arm64-msvc": 4.1.6
- "@tailwindcss/oxide-win32-x64-msvc": 4.1.6
+ "@tailwindcss/oxide-android-arm64": 4.1.17
+ "@tailwindcss/oxide-darwin-arm64": 4.1.17
+ "@tailwindcss/oxide-darwin-x64": 4.1.17
+ "@tailwindcss/oxide-freebsd-x64": 4.1.17
+ "@tailwindcss/oxide-linux-arm-gnueabihf": 4.1.17
+ "@tailwindcss/oxide-linux-arm64-gnu": 4.1.17
+ "@tailwindcss/oxide-linux-arm64-musl": 4.1.17
+ "@tailwindcss/oxide-linux-x64-gnu": 4.1.17
+ "@tailwindcss/oxide-linux-x64-musl": 4.1.17
+ "@tailwindcss/oxide-wasm32-wasi": 4.1.17
+ "@tailwindcss/oxide-win32-arm64-msvc": 4.1.17
+ "@tailwindcss/oxide-win32-x64-msvc": 4.1.17
- "@tailwindcss/vite@4.1.6(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))":
+ "@tailwindcss/vite@4.1.17(vite@6.4.1(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1))":
dependencies:
- "@tailwindcss/node": 4.1.6
- "@tailwindcss/oxide": 4.1.6
- tailwindcss: 4.1.6
- vite: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
+ "@tailwindcss/node": 4.1.17
+ "@tailwindcss/oxide": 4.1.17
+ tailwindcss: 4.1.17
+ vite: 6.4.1(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)
- "@tanstack/query-core@5.75.7": {}
+ "@tanstack/query-core@5.90.10": {}
- "@tanstack/query-persist-client-core@5.75.7":
+ "@tanstack/query-persist-client-core@5.91.9":
dependencies:
- "@tanstack/query-core": 5.75.7
+ "@tanstack/query-core": 5.90.10
- "@tanstack/query-sync-storage-persister@5.75.7":
+ "@tanstack/query-sync-storage-persister@5.90.12":
dependencies:
- "@tanstack/query-core": 5.75.7
- "@tanstack/query-persist-client-core": 5.75.7
+ "@tanstack/query-core": 5.90.10
+ "@tanstack/query-persist-client-core": 5.91.9
- "@tanstack/react-query-persist-client@5.75.7(@tanstack/react-query@5.75.7(react@19.1.0))(react@19.1.0)":
+ "@tanstack/react-query-persist-client@5.90.12(@tanstack/react-query@5.90.10(react@19.2.0))(react@19.2.0)":
dependencies:
- "@tanstack/query-persist-client-core": 5.75.7
- "@tanstack/react-query": 5.75.7(react@19.1.0)
- react: 19.1.0
+ "@tanstack/query-persist-client-core": 5.91.9
+ "@tanstack/react-query": 5.90.10(react@19.2.0)
+ react: 19.2.0
- "@tanstack/react-query@5.75.7(react@18.3.1)":
+ "@tanstack/react-query@5.90.10(react@19.2.0)":
dependencies:
- "@tanstack/query-core": 5.75.7
- react: 18.3.1
+ "@tanstack/query-core": 5.90.10
+ react: 19.2.0
- "@tanstack/react-query@5.75.7(react@19.1.0)":
- dependencies:
- "@tanstack/query-core": 5.75.7
- react: 19.1.0
-
- "@testing-library/dom@10.4.0":
+ "@testing-library/dom@10.4.1":
dependencies:
"@babel/code-frame": 7.27.1
- "@babel/runtime": 7.27.1
+ "@babel/runtime": 7.28.4
"@types/aria-query": 5.0.4
aria-query: 5.3.0
- chalk: 4.1.2
dom-accessibility-api: 0.5.16
lz-string: 1.5.0
+ picocolors: 1.1.1
pretty-format: 27.5.1
- "@testing-library/jest-dom@6.6.3":
+ "@testing-library/jest-dom@6.9.1":
dependencies:
- "@adobe/css-tools": 4.4.2
+ "@adobe/css-tools": 4.4.4
aria-query: 5.3.2
- chalk: 3.0.0
css.escape: 1.5.1
dom-accessibility-api: 0.6.3
- lodash: 4.17.21
+ picocolors: 1.1.1
redent: 3.0.0
- "@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)":
+ "@testing-library/react@16.3.0(@testing-library/dom@10.4.1)(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)":
dependencies:
- "@babel/runtime": 7.27.1
- "@testing-library/dom": 10.4.0
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ "@babel/runtime": 7.28.4
+ "@testing-library/dom": 10.4.1
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
optionalDependencies:
- "@types/react": 19.1.3
- "@types/react-dom": 19.1.3(@types/react@19.1.3)
-
- "@testing-library/user-event@14.6.1(@testing-library/dom@10.4.0)":
- dependencies:
- "@testing-library/dom": 10.4.0
-
- "@tevm/actions@1.0.0-next.143(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))":
- dependencies:
- "@tevm/address": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/block": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/blockchain": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/common": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/contract": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/errors": 1.0.0-next.142(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))
- "@tevm/evm": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/jsonrpc": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))
- "@tevm/node": 1.0.0-next.143(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/receipt-manager": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/state": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/tx": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/txpool": 1.0.0-next.143(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/utils": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/vm": 1.0.0-next.143(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- viem: 2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
- zod: 3.24.4
+ "@types/react": 19.2.6
+ "@types/react-dom": 19.2.3(@types/react@19.2.6)
+
+ "@testing-library/user-event@14.6.1(@testing-library/dom@10.4.1)":
+ dependencies:
+ "@testing-library/dom": 10.4.1
+
+ "@tevm/actions@1.0.0-next.149(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)":
+ dependencies:
+ "@tevm/address": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/block": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/blockchain": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/common": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/contract": 1.0.0-next.149(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/errors": 1.0.0-next.148(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ "@tevm/evm": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/jsonrpc": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ "@tevm/node": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/receipt-manager": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/state": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/tx": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/txpool": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/vm": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
+ zod: 4.1.12
+ transitivePeerDependencies:
+ - debug
+ - supports-color
+ - typescript
+
+ "@tevm/actions@1.0.0-next.149(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)":
+ dependencies:
+ "@tevm/address": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/block": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/blockchain": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/common": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/contract": 1.0.0-next.149(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/errors": 1.0.0-next.148(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ "@tevm/evm": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/jsonrpc": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ "@tevm/node": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/receipt-manager": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/state": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/tx": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/txpool": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/vm": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ viem: 2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
+ zod: 4.1.12
transitivePeerDependencies:
- debug
- supports-color
- typescript
- "@tevm/address@1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)":
+ "@tevm/address@1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)":
dependencies:
- "@tevm/errors": 1.0.0-next.142(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))
- "@tevm/utils": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- viem: 2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ "@tevm/errors": 1.0.0-next.148(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ "@tevm/utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
transitivePeerDependencies:
- supports-color
- typescript
- zod
- "@tevm/base-bundler@1.0.0-next.142":
+ "@tevm/address@1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)":
dependencies:
- "@tevm/bundler-cache": 1.0.0-next.142
- "@tevm/compiler": 1.0.0-next.142
- "@tevm/config": 1.0.0-next.142
- "@tevm/runtime": 1.0.0-next.142
- "@tevm/solc": 1.0.0-next.142
+ "@tevm/errors": 1.0.0-next.148(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ "@tevm/utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ viem: 2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+ - zod
+
+ "@tevm/base-bundler@1.0.0-next.149":
+ dependencies:
+ "@tevm/bundler-cache": 1.0.0-next.148
+ "@tevm/compiler": 1.0.0-next.148
+ "@tevm/config": 1.0.0-next.148
+ "@tevm/runtime": 1.0.0-next.148
+ "@tevm/solc": 1.0.0-next.148
"@tevm/tsconfig": 1.0.0-next.142
- "@tevm/tsupconfig": 1.0.0-next.142
- "@types/node": 22.15.17
- effect: 3.13.2
- solc: 0.8.28
- solidity-ast: 0.4.60
+ "@tevm/tsupconfig": 1.0.0-next.148
+ "@types/node": 24.10.1
+ effect: 3.18.1
+ solc: 0.8.30
+ solidity-ast: 0.4.61
transitivePeerDependencies:
- debug
- "@tevm/block@1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)":
+ "@tevm/block@1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)":
dependencies:
- "@tevm/common": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/errors": 1.0.0-next.142(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))
- "@tevm/rlp": 1.0.0-next.142
- "@tevm/trie": 1.0.0-next.142
- "@tevm/tx": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/utils": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
+ "@tevm/common": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/errors": 1.0.0-next.148(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ "@tevm/rlp": 1.0.0-next.148
+ "@tevm/trie": 1.0.0-next.148
+ "@tevm/tx": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
transitivePeerDependencies:
- supports-color
- typescript
- viem
- zod
- "@tevm/blockchain@1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)":
+ "@tevm/block@1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)":
dependencies:
- "@ethereumjs/blockchain": 7.3.0
- "@tevm/block": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/common": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/errors": 1.0.0-next.142(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))
- "@tevm/jsonrpc": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))
- "@tevm/logger": 1.0.0-next.142
- "@tevm/trie": 1.0.0-next.142
- "@tevm/utils": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- viem: 2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ "@tevm/common": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/errors": 1.0.0-next.148(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ "@tevm/rlp": 1.0.0-next.148
+ "@tevm/trie": 1.0.0-next.148
+ "@tevm/tx": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+ - viem
+ - zod
+
+ "@tevm/blockchain@1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)":
+ dependencies:
+ "@ethereumjs/blockchain": 10.1.0
+ "@tevm/block": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/common": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/errors": 1.0.0-next.148(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ "@tevm/jsonrpc": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ "@tevm/logger": 1.0.0-next.148
+ "@tevm/trie": 1.0.0-next.148
+ "@tevm/utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
transitivePeerDependencies:
- supports-color
- typescript
- zod
- "@tevm/bun-plugin@1.0.0-next.142":
+ "@tevm/blockchain@1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)":
+ dependencies:
+ "@ethereumjs/blockchain": 10.1.0
+ "@tevm/block": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/common": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/errors": 1.0.0-next.148(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ "@tevm/jsonrpc": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ "@tevm/logger": 1.0.0-next.148
+ "@tevm/trie": 1.0.0-next.148
+ "@tevm/utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ viem: 2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+ - zod
+
+ "@tevm/bun-plugin@1.0.0-next.148":
dependencies:
- "@tevm/base-bundler": 1.0.0-next.142
- "@tevm/bundler-cache": 1.0.0-next.142
- "@tevm/config": 1.0.0-next.142
- "@tevm/solc": 1.0.0-next.142
- effect: 3.13.2
- solc: 0.8.28
+ "@tevm/base-bundler": 1.0.0-next.149
+ "@tevm/bundler-cache": 1.0.0-next.148
+ "@tevm/config": 1.0.0-next.148
+ "@tevm/solc": 1.0.0-next.148
+ effect: 3.18.1
+ solc: 0.8.30
transitivePeerDependencies:
- debug
"@tevm/bundler-cache@1.0.0-next.140":
dependencies:
- "@tevm/compiler": 1.0.0-next.142
+ "@tevm/compiler": 1.0.0-next.148
"@tevm/tsconfig": 1.0.0-next.142
- "@tevm/tsupconfig": 1.0.0-next.142
- "@types/node": 22.15.17
+ "@tevm/tsupconfig": 1.0.0-next.148
+ "@types/node": 22.19.1
- "@tevm/bundler-cache@1.0.0-next.142":
+ "@tevm/bundler-cache@1.0.0-next.148":
dependencies:
- "@tevm/compiler": 1.0.0-next.142
+ "@tevm/compiler": 1.0.0-next.148
"@tevm/tsconfig": 1.0.0-next.142
- "@tevm/tsupconfig": 1.0.0-next.142
- "@types/node": 22.15.17
-
- "@tevm/cli@1.0.0-next.143(@types/debug@4.1.12)(@types/node@22.15.17)(@types/react@19.1.3)(bufferutil@4.0.9)(jiti@2.4.2)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(typescript@5.7.3)(use-sync-external-store@1.5.0(react@19.1.0))(utf-8-validate@5.0.10)(yaml@2.7.1)":
- dependencies:
- "@tanstack/react-query": 5.75.7(react@18.3.1)
- "@tevm/actions": 1.0.0-next.143(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))
- "@tevm/base-bundler": 1.0.0-next.142
- "@tevm/bundler-cache": 1.0.0-next.142
- "@tevm/common": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/config": 1.0.0-next.142
- "@tevm/jsonrpc": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))
- "@tevm/memory-client": 1.0.0-next.143(@types/debug@4.1.12)(@types/node@22.15.17)(jiti@2.4.2)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(yaml@2.7.1)(zod@3.24.4)
- "@tevm/server": 1.0.0-next.143(@types/debug@4.1.12)(@types/node@22.15.17)(jiti@2.4.2)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(yaml@2.7.1)
- "@tevm/utils": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@types/glob": 8.1.0
+ "@tevm/tsupconfig": 1.0.0-next.148
+ "@types/node": 24.10.1
+
+ "@tevm/cli@1.0.0-next.148(@types/debug@4.1.12)(@types/node@24.10.1)(@types/react@19.2.6)(bufferutil@4.0.9)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(typescript@5.7.3)(use-sync-external-store@1.6.0(react@19.2.0))(utf-8-validate@5.0.10)(yaml@2.8.1)":
+ dependencies:
+ "@tanstack/react-query": 5.90.10(react@19.2.0)
+ "@tevm/actions": 1.0.0-next.149(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/base-bundler": 1.0.0-next.149
+ "@tevm/bundler-cache": 1.0.0-next.148
+ "@tevm/common": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/config": 1.0.0-next.148
+ "@tevm/jsonrpc": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ "@tevm/memory-client": 1.0.0-next.148(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(yaml@2.8.1)(zod@4.1.12)
+ "@tevm/server": 1.0.0-next.148(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(yaml@2.8.1)
+ "@tevm/utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@types/glob": 9.0.0
"@types/json-bigint": 1.0.4
- effect: 3.13.11
+ effect: 3.18.1
figures: 6.1.0
- glob: 11.0.2
- ink: 5.2.1(@types/react@19.1.3)(bufferutil@4.0.9)(react@18.3.1)(utf-8-validate@5.0.10)
- ink-big-text: 2.0.0(ink@5.2.1(@types/react@19.1.3)(bufferutil@4.0.9)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
- ink-gradient: 3.0.0(ink@5.2.1(@types/react@19.1.3)(bufferutil@4.0.9)(react@18.3.1)(utf-8-validate@5.0.10))
- ink-select-input: 6.2.0(ink@5.2.1(@types/react@19.1.3)(bufferutil@4.0.9)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
- ink-spinner: 5.0.0(ink@5.2.1(@types/react@19.1.3)(bufferutil@4.0.9)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
- ink-text-input: 6.0.0(ink@5.2.1(@types/react@19.1.3)(bufferutil@4.0.9)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
+ glob: 11.1.0
+ ink: 6.5.1(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(utf-8-validate@5.0.10)
+ ink-big-text: 2.0.0(ink@6.5.1(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(utf-8-validate@5.0.10))(react@19.2.0)
+ ink-gradient: 3.0.0(ink@6.5.1(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(utf-8-validate@5.0.10))
+ ink-select-input: 6.2.0(ink@6.5.1(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(utf-8-validate@5.0.10))(react@19.2.0)
+ ink-spinner: 5.0.0(ink@6.5.1(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(utf-8-validate@5.0.10))(react@19.2.0)
+ ink-text-input: 6.0.0(ink@6.5.1(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(utf-8-validate@5.0.10))(react@19.2.0)
json-bigint: 1.0.0
- pastel: 3.0.0(ink@5.2.1(@types/react@19.1.3)(bufferutil@4.0.9)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(zod@3.24.4)
- react: 18.3.1
+ pastel: 3.0.0(ink@6.5.1(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(utf-8-validate@5.0.10))(react@19.2.0)(zod@4.1.12)
+ react: 19.2.0
solc: 0.8.30
- tiny-jsonc: 1.0.2
- viem: 2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
- zod: 3.24.4
- zustand: 5.0.4(@types/react@19.1.3)(react@18.3.1)(use-sync-external-store@1.5.0(react@19.1.0))
+ viem: 2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
+ zod: 4.1.12
+ zustand: 5.0.8(@types/react@19.2.6)(react@19.2.0)(use-sync-external-store@1.6.0(react@19.2.0))
transitivePeerDependencies:
- "@edge-runtime/vm"
- "@types/debug"
@@ -15580,96 +15962,156 @@ snapshots:
- utf-8-validate
- yaml
- "@tevm/client-types@1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)":
+ "@tevm/client-types@1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)":
dependencies:
- "@tevm/utils": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
+ "@tevm/actions": 1.0.0-next.149(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
transitivePeerDependencies:
+ - debug
- supports-color
- typescript
- viem
- zod
- "@tevm/common@1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)":
+ "@tevm/common@1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)":
dependencies:
- "@ethereumjs/common": 4.4.0
- "@tevm/errors": 1.0.0-next.142(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))
- "@tevm/logger": 1.0.0-next.142
- "@tevm/utils": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- viem: 2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ "@ethereumjs/common": 10.1.0
+ "@tevm/errors": 1.0.0-next.148(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ "@tevm/logger": 1.0.0-next.148
+ "@tevm/utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
transitivePeerDependencies:
- supports-color
- typescript
- zod
- "@tevm/compiler@1.0.0-next.142":
+ "@tevm/common@1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)":
dependencies:
- "@tevm/config": 1.0.0-next.142
- "@tevm/resolutions": 1.0.0-next.142
- "@tevm/solc": 1.0.0-next.142
- "@types/node": 22.15.17
- effect: 3.13.2
- resolve: 1.22.10
- solidity-ast: 0.4.60
+ "@ethereumjs/common": 10.1.0
+ "@tevm/errors": 1.0.0-next.148(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ "@tevm/logger": 1.0.0-next.148
+ "@tevm/utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ viem: 2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+ - zod
- "@tevm/config@1.0.0-next.142":
+ "@tevm/compiler@1.0.0-next.148":
dependencies:
- "@effect/schema": 0.75.5(effect@3.13.2)
- "@tevm/effect": 1.0.0-next.142
- "@types/node": 22.15.17
- effect: 3.13.2
- zod: 3.24.4
+ "@tevm/config": 1.0.0-next.148
+ "@tevm/resolutions": 1.0.0-next.148
+ "@tevm/solc": 1.0.0-next.148
+ "@types/node": 24.10.1
+ effect: 3.18.1
+ resolve: 1.22.11
+ solidity-ast: 0.4.61
- "@tevm/contract@1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)":
+ "@tevm/config@1.0.0-next.148":
dependencies:
- "@tevm/errors": 1.0.0-next.142(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))
- "@tevm/utils": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
+ "@effect/schema": 0.75.5(effect@3.18.1)
+ "@tevm/effect": 1.0.0-next.148
+ "@types/node": 24.10.1
+ effect: 3.18.1
+ zod: 4.1.12
+
+ "@tevm/contract@1.0.0-next.149(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)":
+ dependencies:
+ "@tevm/errors": 1.0.0-next.148(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ "@tevm/utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+ - viem
+ - zod
+
+ "@tevm/contract@1.0.0-next.149(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)":
+ dependencies:
+ "@tevm/errors": 1.0.0-next.148(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ "@tevm/utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
transitivePeerDependencies:
- supports-color
- typescript
- viem
- zod
- "@tevm/decorators@1.0.0-next.143(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)":
+ "@tevm/decorators@1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)":
dependencies:
- "@tevm/actions": 1.0.0-next.143(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))
- "@tevm/node": 1.0.0-next.143(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/utils": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- viem: 2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ "@tevm/actions": 1.0.0-next.149(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/node": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
transitivePeerDependencies:
- debug
- supports-color
- typescript
- zod
- "@tevm/effect@1.0.0-next.142":
+ "@tevm/decorators@1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)":
dependencies:
- effect: 3.13.2
+ "@tevm/actions": 1.0.0-next.149(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/node": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ viem: 2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
+ transitivePeerDependencies:
+ - debug
+ - supports-color
+ - typescript
+ - zod
+
+ "@tevm/effect@1.0.0-next.148":
+ dependencies:
+ effect: 3.18.1
jsonc-parser: 3.3.1
- resolve: 1.22.10
+ resolve: 1.22.11
+
+ "@tevm/errors@1.0.0-next.148(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))":
+ dependencies:
+ "@ethereumjs/evm": 10.1.0
+ viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
+ transitivePeerDependencies:
+ - supports-color
- "@tevm/errors@1.0.0-next.142(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))":
+ "@tevm/errors@1.0.0-next.148(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))":
dependencies:
- "@ethereumjs/evm": 3.1.1
- viem: 2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ "@ethereumjs/evm": 10.1.0
+ viem: 2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
transitivePeerDependencies:
- supports-color
- "@tevm/esbuild-plugin@1.0.0-next.142":
+ "@tevm/esbuild-plugin@1.0.0-next.148":
dependencies:
- "@tevm/unplugin": 1.0.0-next.142
+ "@tevm/unplugin": 1.0.0-next.148
transitivePeerDependencies:
- debug
- "@tevm/evm@1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)":
+ "@tevm/evm@1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)":
+ dependencies:
+ "@ethereumjs/evm": 10.1.0
+ "@tevm/blockchain": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/common": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/errors": 1.0.0-next.148(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ "@tevm/logger": 1.0.0-next.148
+ "@tevm/predeploys": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/state": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ transitivePeerDependencies:
+ - debug
+ - supports-color
+ - typescript
+ - viem
+ - zod
+
+ "@tevm/evm@1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)":
dependencies:
- "@ethereumjs/evm": 3.1.1
- "@tevm/blockchain": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/common": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/errors": 1.0.0-next.142(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))
- "@tevm/logger": 1.0.0-next.142
- "@tevm/predeploys": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/state": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/utils": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
+ "@ethereumjs/evm": 10.1.0
+ "@tevm/blockchain": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/common": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/errors": 1.0.0-next.148(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ "@tevm/logger": 1.0.0-next.148
+ "@tevm/predeploys": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/state": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
transitivePeerDependencies:
- debug
- supports-color
@@ -15677,13 +16119,14 @@ snapshots:
- viem
- zod
- "@tevm/http-client@1.0.0-next.143(@types/debug@4.1.12)(@types/node@22.15.17)(jiti@2.4.2)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(yaml@2.7.1)(zod@3.24.4)":
+ "@tevm/http-client@1.0.0-next.148(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(yaml@2.8.1)(zod@4.1.12)":
dependencies:
- "@tevm/contract": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/memory-client": 1.0.0-next.143(@types/debug@4.1.12)(@types/node@22.15.17)(jiti@2.4.2)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(yaml@2.7.1)(zod@3.24.4)
- "@tevm/utils": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/viem": 1.0.0-next.143(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- viem: 2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ "@tevm/address": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/contract": 1.0.0-next.149(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/memory-client": 1.0.0-next.148(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(yaml@2.8.1)(zod@4.1.12)
+ "@tevm/utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/viem": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
transitivePeerDependencies:
- "@edge-runtime/vm"
- "@types/debug"
@@ -15708,32 +16151,78 @@ snapshots:
- yaml
- zod
- "@tevm/jsonrpc@1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))":
+ "@tevm/jsonrpc@1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))":
dependencies:
- "@ponder/utils": 0.2.6(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))
- viem: 2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ "@ponder/utils": 0.2.16(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
transitivePeerDependencies:
- typescript
- "@tevm/logger@1.0.0-next.142":
+ "@tevm/jsonrpc@1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))":
dependencies:
- pino: 9.6.0
+ "@ponder/utils": 0.2.16(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ viem: 2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
+ transitivePeerDependencies:
+ - typescript
+
+ "@tevm/logger@1.0.0-next.148":
+ dependencies:
+ pino: 9.14.0
- "@tevm/memory-client@1.0.0-next.143(@types/debug@4.1.12)(@types/node@22.15.17)(jiti@2.4.2)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(yaml@2.7.1)(zod@3.24.4)":
+ "@tevm/memory-client@1.0.0-next.148(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(yaml@2.8.1)(zod@4.1.12)":
dependencies:
- "@tevm/actions": 1.0.0-next.143(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))
- "@tevm/address": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/common": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/contract": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/decorators": 1.0.0-next.143(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/errors": 1.0.0-next.142(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))
- "@tevm/evm": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/node": 1.0.0-next.143(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/predeploys": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/utils": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
+ "@tevm/actions": 1.0.0-next.149(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/address": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/common": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/contract": 1.0.0-next.149(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/decorators": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/errors": 1.0.0-next.148(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ "@tevm/evm": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/node": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/predeploys": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ kzg-wasm: 0.5.0
+ viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
+ vitest: 3.2.4(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)
+ transitivePeerDependencies:
+ - "@edge-runtime/vm"
+ - "@types/debug"
+ - "@types/node"
+ - "@vitest/browser"
+ - "@vitest/ui"
+ - debug
+ - happy-dom
+ - jiti
+ - jsdom
+ - less
+ - lightningcss
+ - msw
+ - sass
+ - sass-embedded
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ - tsx
+ - typescript
+ - yaml
+ - zod
+
+ "@tevm/memory-client@1.0.0-next.148(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(yaml@2.8.1)(zod@4.1.12)":
+ dependencies:
+ "@tevm/actions": 1.0.0-next.149(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/address": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/common": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/contract": 1.0.0-next.149(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/decorators": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/errors": 1.0.0-next.148(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ "@tevm/evm": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/node": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/predeploys": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
kzg-wasm: 0.5.0
- viem: 2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
- vitest: 3.1.3(@types/debug@4.1.12)(@types/node@22.15.17)(jiti@2.4.2)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
+ viem: 2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
+ vitest: 3.2.4(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)
transitivePeerDependencies:
- "@edge-runtime/vm"
- "@types/debug"
@@ -15758,35 +16247,77 @@ snapshots:
- yaml
- zod
- "@tevm/node@1.0.0-next.143(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)":
- dependencies:
- "@tevm/address": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/block": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/blockchain": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/common": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/evm": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/jsonrpc": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))
- "@tevm/logger": 1.0.0-next.142
- "@tevm/predeploys": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/receipt-manager": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/state": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/sync-storage-persister": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/tx": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/txpool": 1.0.0-next.143(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/utils": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/vm": 1.0.0-next.143(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- viem: 2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ "@tevm/node@1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)":
+ dependencies:
+ "@tevm/address": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/block": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/blockchain": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/common": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/evm": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/jsonrpc": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ "@tevm/logger": 1.0.0-next.148
+ "@tevm/precompiles": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/predeploys": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/receipt-manager": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/state": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/sync-storage-persister": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/tx": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/txpool": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/vm": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
transitivePeerDependencies:
- debug
- supports-color
- typescript
- zod
- "@tevm/precompiles@1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)":
+ "@tevm/node@1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)":
+ dependencies:
+ "@tevm/address": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/block": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/blockchain": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/common": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/evm": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/jsonrpc": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ "@tevm/logger": 1.0.0-next.148
+ "@tevm/precompiles": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/predeploys": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/receipt-manager": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/state": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/sync-storage-persister": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/tx": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/txpool": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/vm": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ viem: 2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
+ transitivePeerDependencies:
+ - debug
+ - supports-color
+ - typescript
+ - zod
+
+ "@tevm/precompiles@1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)":
+ dependencies:
+ "@noble/curves": 2.0.1
+ "@tevm/address": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/contract": 1.0.0-next.149(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/evm": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ transitivePeerDependencies:
+ - debug
+ - supports-color
+ - typescript
+ - viem
+ - zod
+
+ "@tevm/precompiles@1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)":
dependencies:
- "@tevm/contract": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/evm": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/utils": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
+ "@noble/curves": 2.0.1
+ "@tevm/address": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/contract": 1.0.0-next.149(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/evm": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
transitivePeerDependencies:
- debug
- supports-color
@@ -15794,70 +16325,128 @@ snapshots:
- viem
- zod
- "@tevm/predeploys@1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)":
+ "@tevm/predeploys@1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)":
dependencies:
- "@tevm/address": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/contract": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/utils": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
+ "@tevm/address": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/contract": 1.0.0-next.149(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
transitivePeerDependencies:
- supports-color
- typescript
- viem
- zod
- "@tevm/receipt-manager@1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)":
+ "@tevm/predeploys@1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)":
dependencies:
- "@tevm/block": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/blockchain": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/common": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/rlp": 1.0.0-next.142
- "@tevm/tx": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/utils": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
+ "@tevm/address": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/contract": 1.0.0-next.149(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
transitivePeerDependencies:
- supports-color
- typescript
- viem
- zod
- "@tevm/resolutions@1.0.0-next.142":
+ "@tevm/receipt-manager@1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)":
+ dependencies:
+ "@tevm/block": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/blockchain": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/common": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/rlp": 1.0.0-next.148
+ "@tevm/tx": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+ - viem
+ - zod
+
+ "@tevm/receipt-manager@1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)":
+ dependencies:
+ "@tevm/block": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/blockchain": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/common": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/rlp": 1.0.0-next.148
+ "@tevm/tx": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+ - viem
+ - zod
+
+ "@tevm/resolutions@1.0.0-next.148":
dependencies:
"@tevm/tsconfig": 1.0.0-next.142
- "@tevm/tsupconfig": 1.0.0-next.142
- "@types/node": 22.15.17
- effect: 3.13.2
- resolve: 1.22.10
+ "@tevm/tsupconfig": 1.0.0-next.148
+ "@types/node": 24.10.1
+ effect: 3.18.1
+ resolve: 1.22.11
- "@tevm/rlp@1.0.0-next.142":
+ "@tevm/rlp@1.0.0-next.148":
dependencies:
- "@ethereumjs/rlp": 5.0.2
+ "@ethereumjs/rlp": 10.1.0
- "@tevm/rollup-plugin@1.0.0-next.142":
+ "@tevm/rollup-plugin@1.0.0-next.148":
dependencies:
- "@tevm/unplugin": 1.0.0-next.142
+ "@tevm/unplugin": 1.0.0-next.148
transitivePeerDependencies:
- debug
- "@tevm/rspack-plugin@1.0.0-next.142":
+ "@tevm/rspack-plugin@1.0.0-next.148":
dependencies:
- "@tevm/unplugin": 1.0.0-next.142
+ "@tevm/unplugin": 1.0.0-next.148
transitivePeerDependencies:
- debug
- "@tevm/runtime@1.0.0-next.142":
+ "@tevm/runtime@1.0.0-next.148":
dependencies:
"@tevm/tsconfig": 1.0.0-next.142
- "@tevm/tsupconfig": 1.0.0-next.142
- effect: 3.13.2
+ "@tevm/tsupconfig": 1.0.0-next.148
+ effect: 3.18.1
+
+ "@tevm/server@1.0.0-next.148(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(yaml@2.8.1)":
+ dependencies:
+ "@tevm/common": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/decorators": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/errors": 1.0.0-next.148(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ "@tevm/jsonrpc": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ "@tevm/memory-client": 1.0.0-next.148(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(yaml@2.8.1)(zod@4.1.12)
+ "@tevm/utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ zod: 4.1.12
+ transitivePeerDependencies:
+ - "@edge-runtime/vm"
+ - "@types/debug"
+ - "@types/node"
+ - "@vitest/browser"
+ - "@vitest/ui"
+ - debug
+ - happy-dom
+ - jiti
+ - jsdom
+ - less
+ - lightningcss
+ - msw
+ - sass
+ - sass-embedded
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ - tsx
+ - typescript
+ - viem
+ - yaml
- "@tevm/server@1.0.0-next.143(@types/debug@4.1.12)(@types/node@22.15.17)(jiti@2.4.2)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(yaml@2.7.1)":
+ "@tevm/server@1.0.0-next.148(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(yaml@2.8.1)":
dependencies:
- "@tevm/common": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/decorators": 1.0.0-next.143(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/errors": 1.0.0-next.142(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))
- "@tevm/jsonrpc": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))
- "@tevm/memory-client": 1.0.0-next.143(@types/debug@4.1.12)(@types/node@22.15.17)(jiti@2.4.2)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(yaml@2.7.1)(zod@3.24.4)
- "@tevm/utils": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- zod: 3.24.4
+ "@tevm/common": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/decorators": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/errors": 1.0.0-next.148(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ "@tevm/jsonrpc": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ "@tevm/memory-client": 1.0.0-next.148(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(yaml@2.8.1)(zod@4.1.12)
+ "@tevm/utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ zod: 4.1.12
transitivePeerDependencies:
- "@edge-runtime/vm"
- "@types/debug"
@@ -15882,31 +16471,60 @@ snapshots:
- viem
- yaml
- "@tevm/solc@1.0.0-next.142":
+ "@tevm/solc@1.0.0-next.148":
dependencies:
"@tevm/tsconfig": 1.0.0-next.142
- "@tevm/tsupconfig": 1.0.0-next.142
+ "@tevm/tsupconfig": 1.0.0-next.148
+
+ "@tevm/state@1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)":
+ dependencies:
+ "@ethereumjs/statemanager": 10.1.0
+ "@tevm/address": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/common": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/errors": 1.0.0-next.148(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ "@tevm/logger": 1.0.0-next.148
+ "@tevm/rlp": 1.0.0-next.148
+ "@tevm/test-utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ ethereum-cryptography: 3.2.0
+ viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
+ transitivePeerDependencies:
+ - debug
+ - supports-color
+ - typescript
+ - zod
- "@tevm/state@1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)":
+ "@tevm/state@1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)":
dependencies:
- "@ethereumjs/statemanager": 2.4.0
- "@tevm/address": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/common": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/errors": 1.0.0-next.142(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))
- "@tevm/logger": 1.0.0-next.142
- "@tevm/test-utils": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/utils": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
+ "@ethereumjs/statemanager": 10.1.0
+ "@tevm/address": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/common": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/errors": 1.0.0-next.148(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ "@tevm/logger": 1.0.0-next.148
+ "@tevm/rlp": 1.0.0-next.148
+ "@tevm/test-utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
ethereum-cryptography: 3.2.0
- viem: 2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ viem: 2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
+ transitivePeerDependencies:
+ - debug
+ - supports-color
+ - typescript
+ - zod
+
+ "@tevm/sync-storage-persister@1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)":
+ dependencies:
+ "@tevm/state": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
transitivePeerDependencies:
- debug
- supports-color
- typescript
+ - viem
- zod
- "@tevm/sync-storage-persister@1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)":
+ "@tevm/sync-storage-persister@1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)":
dependencies:
- "@tevm/state": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
+ "@tevm/state": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
transitivePeerDependencies:
- debug
- supports-color
@@ -15914,21 +16532,35 @@ snapshots:
- viem
- zod
- "@tevm/test-utils@1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)":
+ "@tevm/test-utils@1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)":
+ dependencies:
+ "@openzeppelin/contracts": 5.4.0
+ "@ponder/utils": 0.2.16(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ "@tevm/contract": 1.0.0-next.149(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/esbuild-plugin": 1.0.0-next.148
+ "@tevm/ts-plugin": 1.0.0-next.148(typescript@5.7.3)
+ viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
+ transitivePeerDependencies:
+ - debug
+ - supports-color
+ - typescript
+ - zod
+
+ "@tevm/test-utils@1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)":
dependencies:
- "@openzeppelin/contracts": 5.2.0
- "@ponder/utils": 0.2.6(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))
- "@tevm/contract": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/esbuild-plugin": 1.0.0-next.142
- "@tevm/ts-plugin": 1.0.0-next.142(typescript@5.7.3)
- viem: 2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ "@openzeppelin/contracts": 5.4.0
+ "@ponder/utils": 0.2.16(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ "@tevm/contract": 1.0.0-next.149(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/esbuild-plugin": 1.0.0-next.148
+ "@tevm/ts-plugin": 1.0.0-next.148(typescript@5.7.3)
+ viem: 2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
transitivePeerDependencies:
- debug
- supports-color
- typescript
- zod
- "@tevm/trie@1.0.0-next.142":
+ "@tevm/trie@1.0.0-next.148":
dependencies:
"@ethereumjs/trie": 6.2.1
transitivePeerDependencies:
@@ -15936,60 +16568,71 @@ snapshots:
"@tevm/ts-plugin@1.0.0-next.140(typescript@5.7.3)":
dependencies:
- "@tevm/base-bundler": 1.0.0-next.142
+ "@tevm/base-bundler": 1.0.0-next.149
"@tevm/bundler-cache": 1.0.0-next.140
"@types/minimatch": 5.1.2
effect: 3.13.2
- glob: 11.0.2
- minimatch: 10.0.1
+ glob: 11.1.0
+ minimatch: 10.1.1
solc: 0.8.28
- solidity-ast: 0.4.60
+ solidity-ast: 0.4.61
typescript: 5.7.3
transitivePeerDependencies:
- debug
- "@tevm/ts-plugin@1.0.0-next.142(typescript@5.7.3)":
+ "@tevm/ts-plugin@1.0.0-next.148(typescript@5.7.3)":
dependencies:
- "@tevm/base-bundler": 1.0.0-next.142
- "@tevm/bundler-cache": 1.0.0-next.142
- "@types/minimatch": 5.1.2
- effect: 3.13.2
- glob: 11.0.2
- minimatch: 10.0.1
- solc: 0.8.28
- solidity-ast: 0.4.60
+ "@tevm/base-bundler": 1.0.0-next.149
+ "@tevm/bundler-cache": 1.0.0-next.148
+ "@types/minimatch": 6.0.0
+ effect: 3.18.1
+ glob: 11.1.0
+ minimatch: 10.1.1
+ solc: 0.8.30
+ solidity-ast: 0.4.61
typescript: 5.7.3
transitivePeerDependencies:
- debug
"@tevm/tsconfig@1.0.0-next.142": {}
- "@tevm/tsupconfig@1.0.0-next.142":
+ "@tevm/tsupconfig@1.0.0-next.148":
dependencies:
"@tevm/tsconfig": 1.0.0-next.142
- "@types/node": 22.15.17
+ "@types/node": 24.10.1
- "@tevm/tx@1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)":
+ "@tevm/tx@1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)":
dependencies:
- "@ethereumjs/tx": 5.4.0
- "@tevm/errors": 1.0.0-next.142(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))
- "@tevm/utils": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
+ "@ethereumjs/tx": 10.1.0
+ "@tevm/errors": 1.0.0-next.148(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ "@tevm/utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
transitivePeerDependencies:
- supports-color
- typescript
- viem
- zod
- "@tevm/txpool@1.0.0-next.143(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)":
+ "@tevm/tx@1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)":
dependencies:
- "@tevm/block": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/blockchain": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/common": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/evm": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/state": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/tx": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/utils": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/vm": 1.0.0-next.143(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
+ "@ethereumjs/tx": 10.1.0
+ "@tevm/errors": 1.0.0-next.148(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ "@tevm/utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+ - viem
+ - zod
+
+ "@tevm/txpool@1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)":
+ dependencies:
+ "@tevm/block": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/blockchain": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/common": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/evm": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/state": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/tx": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/vm": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
qheap: 1.4.0
transitivePeerDependencies:
- debug
@@ -15998,79 +16641,131 @@ snapshots:
- viem
- zod
- "@tevm/unplugin@1.0.0-next.142":
+ "@tevm/txpool@1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)":
dependencies:
- "@tevm/base-bundler": 1.0.0-next.142
- "@tevm/bundler-cache": 1.0.0-next.142
- "@tevm/config": 1.0.0-next.142
- "@tevm/solc": 1.0.0-next.142
- effect: 3.13.2
- solc: 0.8.28
- unplugin: 2.3.2
- zod: 3.24.4
+ "@tevm/block": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/blockchain": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/common": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/evm": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/state": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/tx": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/vm": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ qheap: 1.4.0
transitivePeerDependencies:
- debug
+ - supports-color
+ - typescript
+ - viem
+ - zod
- "@tevm/utils@1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)":
+ "@tevm/unplugin@1.0.0-next.148":
dependencies:
- "@ethereumjs/evm": 3.1.1
- "@ethereumjs/util": 9.1.0
- "@tevm/errors": 1.0.0-next.142(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))
- abitype: 1.0.8(typescript@5.7.3)(zod@3.24.4)
- viem: 2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ "@tevm/base-bundler": 1.0.0-next.149
+ "@tevm/bundler-cache": 1.0.0-next.148
+ "@tevm/config": 1.0.0-next.148
+ "@tevm/solc": 1.0.0-next.148
+ effect: 3.18.1
+ solc: 0.8.30
+ unplugin: 2.3.10
+ zod: 4.1.12
+ transitivePeerDependencies:
+ - debug
+
+ "@tevm/utils@1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)":
+ dependencies:
+ "@ethereumjs/evm": 10.1.0
+ "@ethereumjs/util": 10.1.0
+ "@tevm/errors": 1.0.0-next.148(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ abitype: 1.1.2(typescript@5.7.3)(zod@4.1.12)
+ viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+ - zod
+
+ "@tevm/utils@1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)":
+ dependencies:
+ "@ethereumjs/evm": 10.1.0
+ "@ethereumjs/util": 10.1.0
+ "@tevm/errors": 1.0.0-next.148(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ abitype: 1.1.2(typescript@5.7.3)(zod@4.1.12)
+ viem: 2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
transitivePeerDependencies:
- supports-color
- typescript
- zod
- "@tevm/viem@1.0.0-next.143(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)":
+ "@tevm/viem@1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)":
dependencies:
- "@tevm/decorators": 1.0.0-next.143(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/jsonrpc": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))
- "@tevm/node": 1.0.0-next.143(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- viem: 2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ "@tevm/decorators": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/jsonrpc": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ "@tevm/node": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
transitivePeerDependencies:
- debug
- supports-color
- typescript
- zod
- "@tevm/vite-plugin@1.0.0-next.142":
+ "@tevm/vite-plugin@1.0.0-next.148":
dependencies:
- "@tevm/unplugin": 1.0.0-next.142
+ "@tevm/unplugin": 1.0.0-next.148
transitivePeerDependencies:
- debug
- "@tevm/vm@1.0.0-next.143(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)":
- dependencies:
- "@ethereumjs/vm": 8.1.1
- "@tevm/block": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/blockchain": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/common": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/errors": 1.0.0-next.142(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))
- "@tevm/evm": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/rlp": 1.0.0-next.142
- "@tevm/state": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/trie": 1.0.0-next.142
- "@tevm/tx": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/utils": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- viem: 2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ "@tevm/vm@1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)":
+ dependencies:
+ "@ethereumjs/vm": 10.1.0
+ "@tevm/block": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/blockchain": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/common": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/errors": 1.0.0-next.148(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ "@tevm/evm": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/rlp": 1.0.0-next.148
+ "@tevm/state": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/trie": 1.0.0-next.148
+ "@tevm/tx": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ eventemitter3: 5.0.1
+ viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
transitivePeerDependencies:
- debug
- supports-color
- typescript
- zod
- "@tevm/webpack-plugin@1.0.0-next.142(webpack@5.99.8)":
+ "@tevm/vm@1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)":
+ dependencies:
+ "@ethereumjs/vm": 10.1.0
+ "@tevm/block": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/blockchain": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/common": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/errors": 1.0.0-next.148(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ "@tevm/evm": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/rlp": 1.0.0-next.148
+ "@tevm/state": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/trie": 1.0.0-next.148
+ "@tevm/tx": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ eventemitter3: 5.0.1
+ viem: 2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
+ transitivePeerDependencies:
+ - debug
+ - supports-color
+ - typescript
+ - zod
+
+ "@tevm/webpack-plugin@1.0.0-next.148(webpack@5.103.0)":
dependencies:
- "@tevm/unplugin": 1.0.0-next.142
- webpack: 5.99.8
+ "@tevm/unplugin": 1.0.0-next.148
+ webpack: 5.103.0
transitivePeerDependencies:
- debug
"@tootallnate/once@2.0.0": {}
- "@tsconfig/node10@1.0.11": {}
+ "@tsconfig/node10@1.0.12": {}
"@tsconfig/node12@1.0.11": {}
@@ -16078,7 +16773,7 @@ snapshots:
"@tsconfig/node16@1.0.4": {}
- "@tybys/wasm-util@0.9.0":
+ "@tybys/wasm-util@0.10.1":
dependencies:
tslib: 2.8.1
optional: true
@@ -16091,38 +16786,43 @@ snapshots:
"@types/babel__core@7.20.5":
dependencies:
- "@babel/parser": 7.27.2
- "@babel/types": 7.27.1
+ "@babel/parser": 7.28.5
+ "@babel/types": 7.28.5
"@types/babel__generator": 7.27.0
"@types/babel__template": 7.4.4
- "@types/babel__traverse": 7.20.7
+ "@types/babel__traverse": 7.28.0
"@types/babel__generator@7.27.0":
dependencies:
- "@babel/types": 7.27.1
+ "@babel/types": 7.28.5
"@types/babel__template@7.4.4":
dependencies:
- "@babel/parser": 7.27.2
- "@babel/types": 7.27.1
+ "@babel/parser": 7.28.5
+ "@babel/types": 7.28.5
- "@types/babel__traverse@7.20.7":
+ "@types/babel__traverse@7.28.0":
dependencies:
- "@babel/types": 7.27.1
+ "@babel/types": 7.28.5
"@types/bunyan@1.8.11":
dependencies:
- "@types/node": 22.15.17
+ "@types/node": 22.19.1
"@types/caseless@0.12.5": {}
+ "@types/chai@5.2.3":
+ dependencies:
+ "@types/deep-eql": 4.0.2
+ assertion-error: 2.0.1
+
"@types/connect@3.4.38":
dependencies:
- "@types/node": 22.15.17
+ "@types/node": 22.19.1
"@types/crypto-js@4.2.2": {}
- "@types/d3-array@3.2.1": {}
+ "@types/d3-array@3.2.2": {}
"@types/d3-color@3.1.3": {}
@@ -16150,59 +16850,70 @@ snapshots:
dependencies:
"@types/ms": 2.1.0
+ "@types/deep-eql@4.0.2": {}
+
"@types/eslint-scope@3.7.7":
dependencies:
"@types/eslint": 9.6.1
- "@types/estree": 1.0.7
+ "@types/estree": 1.0.8
"@types/eslint@9.6.1":
dependencies:
- "@types/estree": 1.0.7
+ "@types/estree": 1.0.8
"@types/json-schema": 7.0.15
- "@types/estree@1.0.7": {}
+ "@types/estree@1.0.8": {}
"@types/glob@7.2.0":
dependencies:
- "@types/minimatch": 5.1.2
- "@types/node": 22.15.17
+ "@types/minimatch": 6.0.0
+ "@types/node": 22.19.1
- "@types/glob@8.1.0":
+ "@types/glob@9.0.0":
dependencies:
- "@types/minimatch": 5.1.2
- "@types/node": 22.15.17
+ glob: 11.1.0
"@types/gradient-string@1.1.6":
dependencies:
"@types/tinycolor2": 1.4.6
+ "@types/humanize-duration@3.27.4": {}
+
"@types/json-bigint@1.0.4": {}
"@types/json-schema@7.0.15": {}
- "@types/lodash@4.17.17": {}
+ "@types/lodash@4.17.20": {}
"@types/memcached@2.2.10":
dependencies:
- "@types/node": 22.15.17
+ "@types/node": 22.19.1
"@types/minimatch@5.1.2": {}
+ "@types/minimatch@6.0.0":
+ dependencies:
+ minimatch: 10.1.1
+
"@types/ms@2.1.0": {}
"@types/mysql@2.15.26":
dependencies:
- "@types/node": 22.15.17
+ "@types/node": 22.19.1
- "@types/node-fetch@2.6.12":
+ "@types/node-fetch@2.6.13":
dependencies:
- "@types/node": 22.15.17
- form-data: 4.0.2
+ "@types/node": 22.19.1
+ form-data: 4.0.5
- "@types/node@22.15.17":
+ "@types/node@22.19.1":
dependencies:
undici-types: 6.21.0
+ "@types/node@24.10.1":
+ dependencies:
+ undici-types: 7.16.0
+
"@types/normalize-package-data@2.4.4": {}
"@types/pg-pool@2.0.6":
@@ -16211,35 +16922,35 @@ snapshots:
"@types/pg@8.6.1":
dependencies:
- "@types/node": 22.15.17
- pg-protocol: 1.10.0
+ "@types/node": 22.19.1
+ pg-protocol: 1.10.3
pg-types: 2.2.0
- "@types/react-dom@19.1.3(@types/react@19.1.3)":
+ "@types/react-dom@19.2.3(@types/react@19.2.6)":
dependencies:
- "@types/react": 19.1.3
+ "@types/react": 19.2.6
- "@types/react@19.1.3":
+ "@types/react@19.2.6":
dependencies:
- csstype: 3.1.3
+ csstype: 3.2.3
"@types/readable-stream@2.3.15":
dependencies:
- "@types/node": 22.15.17
+ "@types/node": 22.19.1
safe-buffer: 5.1.2
- "@types/request@2.48.12":
+ "@types/request@2.48.13":
dependencies:
"@types/caseless": 0.12.5
- "@types/node": 22.15.17
+ "@types/node": 22.19.1
"@types/tough-cookie": 4.0.5
- form-data: 2.5.3
+ form-data: 2.5.5
"@types/shimmer@1.2.0": {}
"@types/tedious@4.0.14":
dependencies:
- "@types/node": 22.15.17
+ "@types/node": 22.19.1
"@types/tinycolor2@1.4.6": {}
@@ -16249,227 +16960,272 @@ snapshots:
"@types/ws@8.18.1":
dependencies:
- "@types/node": 22.15.17
+ "@types/node": 22.19.1
- "@typescript-eslint/eslint-plugin@8.32.0(@typescript-eslint/parser@8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.26.0(jiti@2.4.2))(typescript@5.7.3)":
+ "@typescript-eslint/eslint-plugin@8.47.0(@typescript-eslint/parser@8.47.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.7.3))(eslint@9.39.1(jiti@2.6.1))(typescript@5.7.3)":
dependencies:
- "@eslint-community/regexpp": 4.12.1
- "@typescript-eslint/parser": 8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.7.3)
- "@typescript-eslint/scope-manager": 8.32.0
- "@typescript-eslint/type-utils": 8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.7.3)
- "@typescript-eslint/utils": 8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.7.3)
- "@typescript-eslint/visitor-keys": 8.32.0
- eslint: 9.26.0(jiti@2.4.2)
+ "@eslint-community/regexpp": 4.12.2
+ "@typescript-eslint/parser": 8.47.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.7.3)
+ "@typescript-eslint/scope-manager": 8.47.0
+ "@typescript-eslint/type-utils": 8.47.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.7.3)
+ "@typescript-eslint/utils": 8.47.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.7.3)
+ "@typescript-eslint/visitor-keys": 8.47.0
+ eslint: 9.39.1(jiti@2.6.1)
graphemer: 1.4.0
- ignore: 5.3.2
+ ignore: 7.0.5
natural-compare: 1.4.0
ts-api-utils: 2.1.0(typescript@5.7.3)
typescript: 5.7.3
transitivePeerDependencies:
- supports-color
- "@typescript-eslint/parser@8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.7.3)":
+ "@typescript-eslint/parser@8.47.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.7.3)":
+ dependencies:
+ "@typescript-eslint/scope-manager": 8.47.0
+ "@typescript-eslint/types": 8.47.0
+ "@typescript-eslint/typescript-estree": 8.47.0(typescript@5.7.3)
+ "@typescript-eslint/visitor-keys": 8.47.0
+ debug: 4.4.3(supports-color@5.5.0)
+ eslint: 9.39.1(jiti@2.6.1)
+ typescript: 5.7.3
+ transitivePeerDependencies:
+ - supports-color
+
+ "@typescript-eslint/project-service@8.47.0(typescript@5.7.3)":
dependencies:
- "@typescript-eslint/scope-manager": 8.32.0
- "@typescript-eslint/types": 8.32.0
- "@typescript-eslint/typescript-estree": 8.32.0(typescript@5.7.3)
- "@typescript-eslint/visitor-keys": 8.32.0
- debug: 4.4.0(supports-color@5.5.0)
- eslint: 9.26.0(jiti@2.4.2)
+ "@typescript-eslint/tsconfig-utils": 8.47.0(typescript@5.7.3)
+ "@typescript-eslint/types": 8.47.0
+ debug: 4.4.3(supports-color@5.5.0)
typescript: 5.7.3
transitivePeerDependencies:
- supports-color
- "@typescript-eslint/scope-manager@8.32.0":
+ "@typescript-eslint/scope-manager@8.47.0":
dependencies:
- "@typescript-eslint/types": 8.32.0
- "@typescript-eslint/visitor-keys": 8.32.0
+ "@typescript-eslint/types": 8.47.0
+ "@typescript-eslint/visitor-keys": 8.47.0
- "@typescript-eslint/type-utils@8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.7.3)":
+ "@typescript-eslint/tsconfig-utils@8.47.0(typescript@5.7.3)":
dependencies:
- "@typescript-eslint/typescript-estree": 8.32.0(typescript@5.7.3)
- "@typescript-eslint/utils": 8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.7.3)
- debug: 4.4.0(supports-color@5.5.0)
- eslint: 9.26.0(jiti@2.4.2)
+ typescript: 5.7.3
+
+ "@typescript-eslint/type-utils@8.47.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.7.3)":
+ dependencies:
+ "@typescript-eslint/types": 8.47.0
+ "@typescript-eslint/typescript-estree": 8.47.0(typescript@5.7.3)
+ "@typescript-eslint/utils": 8.47.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.7.3)
+ debug: 4.4.3(supports-color@5.5.0)
+ eslint: 9.39.1(jiti@2.6.1)
ts-api-utils: 2.1.0(typescript@5.7.3)
typescript: 5.7.3
transitivePeerDependencies:
- supports-color
- "@typescript-eslint/types@8.32.0": {}
+ "@typescript-eslint/types@8.47.0": {}
- "@typescript-eslint/typescript-estree@8.32.0(typescript@5.7.3)":
+ "@typescript-eslint/typescript-estree@8.47.0(typescript@5.7.3)":
dependencies:
- "@typescript-eslint/types": 8.32.0
- "@typescript-eslint/visitor-keys": 8.32.0
- debug: 4.4.0(supports-color@5.5.0)
+ "@typescript-eslint/project-service": 8.47.0(typescript@5.7.3)
+ "@typescript-eslint/tsconfig-utils": 8.47.0(typescript@5.7.3)
+ "@typescript-eslint/types": 8.47.0
+ "@typescript-eslint/visitor-keys": 8.47.0
+ debug: 4.4.3(supports-color@5.5.0)
fast-glob: 3.3.3
is-glob: 4.0.3
minimatch: 9.0.5
- semver: 7.7.1
+ semver: 7.7.3
ts-api-utils: 2.1.0(typescript@5.7.3)
typescript: 5.7.3
transitivePeerDependencies:
- supports-color
- "@typescript-eslint/utils@8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.7.3)":
+ "@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.7.3)":
dependencies:
- "@eslint-community/eslint-utils": 4.7.0(eslint@9.26.0(jiti@2.4.2))
- "@typescript-eslint/scope-manager": 8.32.0
- "@typescript-eslint/types": 8.32.0
- "@typescript-eslint/typescript-estree": 8.32.0(typescript@5.7.3)
- eslint: 9.26.0(jiti@2.4.2)
+ "@eslint-community/eslint-utils": 4.9.0(eslint@9.39.1(jiti@2.6.1))
+ "@typescript-eslint/scope-manager": 8.47.0
+ "@typescript-eslint/types": 8.47.0
+ "@typescript-eslint/typescript-estree": 8.47.0(typescript@5.7.3)
+ eslint: 9.39.1(jiti@2.6.1)
typescript: 5.7.3
transitivePeerDependencies:
- supports-color
- "@typescript-eslint/visitor-keys@8.32.0":
+ "@typescript-eslint/visitor-keys@8.47.0":
dependencies:
- "@typescript-eslint/types": 8.32.0
- eslint-visitor-keys: 4.2.0
+ "@typescript-eslint/types": 8.47.0
+ eslint-visitor-keys: 4.2.1
"@unhead/schema@1.11.20":
dependencies:
hookable: 5.5.3
zhead: 2.2.4
- "@unrs/resolver-binding-darwin-arm64@1.7.2":
+ "@unrs/resolver-binding-android-arm-eabi@1.11.1":
+ optional: true
+
+ "@unrs/resolver-binding-android-arm64@1.11.1":
+ optional: true
+
+ "@unrs/resolver-binding-darwin-arm64@1.11.1":
optional: true
- "@unrs/resolver-binding-darwin-x64@1.7.2":
+ "@unrs/resolver-binding-darwin-x64@1.11.1":
optional: true
- "@unrs/resolver-binding-freebsd-x64@1.7.2":
+ "@unrs/resolver-binding-freebsd-x64@1.11.1":
optional: true
- "@unrs/resolver-binding-linux-arm-gnueabihf@1.7.2":
+ "@unrs/resolver-binding-linux-arm-gnueabihf@1.11.1":
optional: true
- "@unrs/resolver-binding-linux-arm-musleabihf@1.7.2":
+ "@unrs/resolver-binding-linux-arm-musleabihf@1.11.1":
optional: true
- "@unrs/resolver-binding-linux-arm64-gnu@1.7.2":
+ "@unrs/resolver-binding-linux-arm64-gnu@1.11.1":
optional: true
- "@unrs/resolver-binding-linux-arm64-musl@1.7.2":
+ "@unrs/resolver-binding-linux-arm64-musl@1.11.1":
optional: true
- "@unrs/resolver-binding-linux-ppc64-gnu@1.7.2":
+ "@unrs/resolver-binding-linux-ppc64-gnu@1.11.1":
optional: true
- "@unrs/resolver-binding-linux-riscv64-gnu@1.7.2":
+ "@unrs/resolver-binding-linux-riscv64-gnu@1.11.1":
optional: true
- "@unrs/resolver-binding-linux-riscv64-musl@1.7.2":
+ "@unrs/resolver-binding-linux-riscv64-musl@1.11.1":
optional: true
- "@unrs/resolver-binding-linux-s390x-gnu@1.7.2":
+ "@unrs/resolver-binding-linux-s390x-gnu@1.11.1":
optional: true
- "@unrs/resolver-binding-linux-x64-gnu@1.7.2":
+ "@unrs/resolver-binding-linux-x64-gnu@1.11.1":
optional: true
- "@unrs/resolver-binding-linux-x64-musl@1.7.2":
+ "@unrs/resolver-binding-linux-x64-musl@1.11.1":
optional: true
- "@unrs/resolver-binding-wasm32-wasi@1.7.2":
+ "@unrs/resolver-binding-wasm32-wasi@1.11.1":
dependencies:
- "@napi-rs/wasm-runtime": 0.2.9
+ "@napi-rs/wasm-runtime": 0.2.12
optional: true
- "@unrs/resolver-binding-win32-arm64-msvc@1.7.2":
+ "@unrs/resolver-binding-win32-arm64-msvc@1.11.1":
optional: true
- "@unrs/resolver-binding-win32-ia32-msvc@1.7.2":
+ "@unrs/resolver-binding-win32-ia32-msvc@1.11.1":
optional: true
- "@unrs/resolver-binding-win32-x64-msvc@1.7.2":
+ "@unrs/resolver-binding-win32-x64-msvc@1.11.1":
optional: true
- "@urql/core@5.1.1(graphql@16.11.0)":
+ "@urql/core@5.2.0(graphql@16.12.0)":
dependencies:
- "@0no-co/graphql.web": 1.1.2(graphql@16.11.0)
+ "@0no-co/graphql.web": 1.2.0(graphql@16.12.0)
wonka: 6.3.5
transitivePeerDependencies:
- graphql
- "@vitejs/plugin-react@4.4.1(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))":
+ "@vitejs/plugin-react@4.7.0(vite@6.4.1(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1))":
dependencies:
- "@babel/core": 7.27.1
- "@babel/plugin-transform-react-jsx-self": 7.27.1(@babel/core@7.27.1)
- "@babel/plugin-transform-react-jsx-source": 7.27.1(@babel/core@7.27.1)
+ "@babel/core": 7.28.5
+ "@babel/plugin-transform-react-jsx-self": 7.27.1(@babel/core@7.28.5)
+ "@babel/plugin-transform-react-jsx-source": 7.27.1(@babel/core@7.28.5)
+ "@rolldown/pluginutils": 1.0.0-beta.27
"@types/babel__core": 7.20.5
react-refresh: 0.17.0
- vite: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
+ vite: 6.4.1(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)
transitivePeerDependencies:
- supports-color
- "@vitest/expect@3.1.3":
+ "@vitejs/plugin-react@4.7.0(vite@6.4.1(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1))":
dependencies:
- "@vitest/spy": 3.1.3
- "@vitest/utils": 3.1.3
- chai: 5.2.0
+ "@babel/core": 7.28.5
+ "@babel/plugin-transform-react-jsx-self": 7.27.1(@babel/core@7.28.5)
+ "@babel/plugin-transform-react-jsx-source": 7.27.1(@babel/core@7.28.5)
+ "@rolldown/pluginutils": 1.0.0-beta.27
+ "@types/babel__core": 7.20.5
+ react-refresh: 0.17.0
+ vite: 6.4.1(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)
+ transitivePeerDependencies:
+ - supports-color
+
+ "@vitest/expect@3.2.4":
+ dependencies:
+ "@types/chai": 5.2.3
+ "@vitest/spy": 3.2.4
+ "@vitest/utils": 3.2.4
+ chai: 5.3.3
tinyrainbow: 2.0.0
- "@vitest/mocker@3.1.3(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))":
+ "@vitest/mocker@3.2.4(vite@6.4.1(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1))":
+ dependencies:
+ "@vitest/spy": 3.2.4
+ estree-walker: 3.0.3
+ magic-string: 0.30.21
+ optionalDependencies:
+ vite: 6.4.1(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)
+
+ "@vitest/mocker@3.2.4(vite@6.4.1(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1))":
dependencies:
- "@vitest/spy": 3.1.3
+ "@vitest/spy": 3.2.4
estree-walker: 3.0.3
- magic-string: 0.30.17
+ magic-string: 0.30.21
optionalDependencies:
- vite: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
+ vite: 6.4.1(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)
- "@vitest/pretty-format@3.1.3":
+ "@vitest/pretty-format@3.2.4":
dependencies:
tinyrainbow: 2.0.0
- "@vitest/runner@3.1.3":
+ "@vitest/runner@3.2.4":
dependencies:
- "@vitest/utils": 3.1.3
+ "@vitest/utils": 3.2.4
pathe: 2.0.3
+ strip-literal: 3.1.0
- "@vitest/snapshot@3.1.3":
+ "@vitest/snapshot@3.2.4":
dependencies:
- "@vitest/pretty-format": 3.1.3
- magic-string: 0.30.17
+ "@vitest/pretty-format": 3.2.4
+ magic-string: 0.30.21
pathe: 2.0.3
- "@vitest/spy@3.1.3":
+ "@vitest/spy@3.2.4":
dependencies:
- tinyspy: 3.0.2
+ tinyspy: 4.0.4
- "@vitest/utils@3.1.3":
+ "@vitest/utils@3.2.4":
dependencies:
- "@vitest/pretty-format": 3.1.3
- loupe: 3.1.3
+ "@vitest/pretty-format": 3.2.4
+ loupe: 3.2.1
tinyrainbow: 2.0.0
- "@vladfrangu/async_event_emitter@2.4.6": {}
+ "@vladfrangu/async_event_emitter@2.4.7": {}
- "@volar/language-core@2.4.13":
+ "@volar/language-core@2.4.23":
dependencies:
- "@volar/source-map": 2.4.13
+ "@volar/source-map": 2.4.23
- "@volar/source-map@2.4.13": {}
+ "@volar/source-map@2.4.23": {}
- "@volar/typescript@2.4.13":
+ "@volar/typescript@2.4.23":
dependencies:
- "@volar/language-core": 2.4.13
+ "@volar/language-core": 2.4.23
path-browserify: 1.0.1
vscode-uri: 3.1.0
- "@vue/compiler-core@3.5.13":
+ "@vue/compiler-core@3.5.24":
dependencies:
- "@babel/parser": 7.27.2
- "@vue/shared": 3.5.13
+ "@babel/parser": 7.28.5
+ "@vue/shared": 3.5.24
entities: 4.5.0
estree-walker: 2.0.2
source-map-js: 1.2.1
- "@vue/compiler-dom@3.5.13":
+ "@vue/compiler-dom@3.5.24":
dependencies:
- "@vue/compiler-core": 3.5.13
- "@vue/shared": 3.5.13
+ "@vue/compiler-core": 3.5.24
+ "@vue/shared": 3.5.24
"@vue/compiler-vue2@2.7.16":
dependencies:
@@ -16478,10 +17234,10 @@ snapshots:
"@vue/language-core@2.2.0(typescript@5.7.3)":
dependencies:
- "@volar/language-core": 2.4.13
- "@vue/compiler-dom": 3.5.13
+ "@volar/language-core": 2.4.23
+ "@vue/compiler-dom": 3.5.24
"@vue/compiler-vue2": 2.7.16
- "@vue/shared": 3.5.13
+ "@vue/shared": 3.5.24
alien-signals: 0.4.14
minimatch: 9.0.5
muggle-string: 0.4.1
@@ -16489,18 +17245,18 @@ snapshots:
optionalDependencies:
typescript: 5.7.3
- "@vue/shared@3.5.13": {}
+ "@vue/shared@3.5.24": {}
- "@wagmi/connectors@5.8.1(@types/react@19.1.3)(@wagmi/core@2.17.1(@tanstack/query-core@5.75.7)(@types/react@19.1.3)(react@19.1.0)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.1.0))(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)))(bufferutil@4.0.9)(react@19.1.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)":
+ "@wagmi/connectors@5.8.1(@types/react@19.2.6)(@wagmi/core@2.17.1(@tanstack/query-core@5.90.10)(@types/react@19.2.6)(react@19.2.0)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.2.0))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)))(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76))(zod@3.25.76)":
dependencies:
"@coinbase/wallet-sdk": 4.3.0
"@metamask/sdk": 0.32.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
- "@safe-global/safe-apps-provider": 0.18.6(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
- "@safe-global/safe-apps-sdk": 9.1.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
- "@wagmi/core": 2.17.1(@tanstack/query-core@5.75.7)(@types/react@19.1.3)(react@19.1.0)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.1.0))(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))
- "@walletconnect/ethereum-provider": 2.20.0(@types/react@19.1.3)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ "@safe-global/safe-apps-provider": 0.18.6(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ "@safe-global/safe-apps-sdk": 9.1.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ "@wagmi/core": 2.17.1(@tanstack/query-core@5.90.10)(@types/react@19.2.6)(react@19.2.0)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.2.0))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76))
+ "@walletconnect/ethereum-provider": 2.20.0(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
cbw-sdk: "@coinbase/wallet-sdk@3.9.3"
- viem: 2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
optionalDependencies:
typescript: 5.7.3
transitivePeerDependencies:
@@ -16518,6 +17274,7 @@ snapshots:
- "@types/react"
- "@upstash/redis"
- "@vercel/blob"
+ - "@vercel/functions"
- "@vercel/kv"
- aws4fetch
- bufferutil
@@ -16530,14 +17287,54 @@ snapshots:
- utf-8-validate
- zod
- "@wagmi/core@2.17.1(@tanstack/query-core@5.75.7)(@types/react@19.1.3)(react@19.1.0)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.1.0))(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))":
+ "@wagmi/connectors@5.8.1(@types/react@19.2.6)(@wagmi/core@2.17.1(@tanstack/query-core@5.90.10)(@types/react@19.2.6)(react@19.2.0)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.2.0))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)))(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)":
+ dependencies:
+ "@coinbase/wallet-sdk": 4.3.0
+ "@metamask/sdk": 0.32.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ "@safe-global/safe-apps-provider": 0.18.6(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
+ "@safe-global/safe-apps-sdk": 9.1.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
+ "@wagmi/core": 2.17.1(@tanstack/query-core@5.90.10)(@types/react@19.2.6)(react@19.2.0)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.2.0))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ "@walletconnect/ethereum-provider": 2.20.0(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
+ cbw-sdk: "@coinbase/wallet-sdk@3.9.3"
+ viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
+ optionalDependencies:
+ typescript: 5.7.3
+ transitivePeerDependencies:
+ - "@azure/app-configuration"
+ - "@azure/cosmos"
+ - "@azure/data-tables"
+ - "@azure/identity"
+ - "@azure/keyvault-secrets"
+ - "@azure/storage-blob"
+ - "@capacitor/preferences"
+ - "@deno/kv"
+ - "@netlify/blobs"
+ - "@planetscale/database"
+ - "@react-native-async-storage/async-storage"
+ - "@types/react"
+ - "@upstash/redis"
+ - "@vercel/blob"
+ - "@vercel/functions"
+ - "@vercel/kv"
+ - aws4fetch
+ - bufferutil
+ - db0
+ - encoding
+ - ioredis
+ - react
+ - supports-color
+ - uploadthing
+ - utf-8-validate
+ - zod
+
+ "@wagmi/core@2.17.1(@tanstack/query-core@5.90.10)(@types/react@19.2.6)(react@19.2.0)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.2.0))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76))":
dependencies:
eventemitter3: 5.0.1
mipd: 0.0.7(typescript@5.7.3)
- viem: 2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
- zustand: 5.0.0(@types/react@19.1.3)(react@19.1.0)(use-sync-external-store@1.4.0(react@19.1.0))
+ viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ zustand: 5.0.0(@types/react@19.2.6)(react@19.2.0)(use-sync-external-store@1.4.0(react@19.2.0))
optionalDependencies:
- "@tanstack/query-core": 5.75.7
+ "@tanstack/query-core": 5.90.10
typescript: 5.7.3
transitivePeerDependencies:
- "@types/react"
@@ -16545,7 +17342,66 @@ snapshots:
- react
- use-sync-external-store
- "@walletconnect/core@2.19.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)":
+ "@wagmi/core@2.17.1(@tanstack/query-core@5.90.10)(@types/react@19.2.6)(react@19.2.0)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.2.0))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))":
+ dependencies:
+ eventemitter3: 5.0.1
+ mipd: 0.0.7(typescript@5.7.3)
+ viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
+ zustand: 5.0.0(@types/react@19.2.6)(react@19.2.0)(use-sync-external-store@1.4.0(react@19.2.0))
+ optionalDependencies:
+ "@tanstack/query-core": 5.90.10
+ typescript: 5.7.3
+ transitivePeerDependencies:
+ - "@types/react"
+ - immer
+ - react
+ - use-sync-external-store
+
+ "@walletconnect/core@2.19.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)":
+ dependencies:
+ "@walletconnect/heartbeat": 1.2.2
+ "@walletconnect/jsonrpc-provider": 1.0.14
+ "@walletconnect/jsonrpc-types": 1.0.4
+ "@walletconnect/jsonrpc-utils": 1.0.8
+ "@walletconnect/jsonrpc-ws-connection": 1.0.16(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ "@walletconnect/keyvaluestorage": 1.1.1
+ "@walletconnect/logger": 2.1.2
+ "@walletconnect/relay-api": 1.0.11
+ "@walletconnect/relay-auth": 1.1.0
+ "@walletconnect/safe-json": 1.0.2
+ "@walletconnect/time": 1.0.2
+ "@walletconnect/types": 2.19.2
+ "@walletconnect/utils": 2.19.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ "@walletconnect/window-getters": 1.0.1
+ es-toolkit: 1.33.0
+ events: 3.3.0
+ uint8arrays: 3.1.0
+ transitivePeerDependencies:
+ - "@azure/app-configuration"
+ - "@azure/cosmos"
+ - "@azure/data-tables"
+ - "@azure/identity"
+ - "@azure/keyvault-secrets"
+ - "@azure/storage-blob"
+ - "@capacitor/preferences"
+ - "@deno/kv"
+ - "@netlify/blobs"
+ - "@planetscale/database"
+ - "@react-native-async-storage/async-storage"
+ - "@upstash/redis"
+ - "@vercel/blob"
+ - "@vercel/functions"
+ - "@vercel/kv"
+ - aws4fetch
+ - bufferutil
+ - db0
+ - ioredis
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
+
+ "@walletconnect/core@2.19.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)":
dependencies:
"@walletconnect/heartbeat": 1.2.2
"@walletconnect/jsonrpc-provider": 1.0.14
@@ -16559,7 +17415,7 @@ snapshots:
"@walletconnect/safe-json": 1.0.2
"@walletconnect/time": 1.0.2
"@walletconnect/types": 2.19.2
- "@walletconnect/utils": 2.19.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ "@walletconnect/utils": 2.19.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
"@walletconnect/window-getters": 1.0.1
es-toolkit: 1.33.0
events: 3.3.0
@@ -16578,6 +17434,7 @@ snapshots:
- "@react-native-async-storage/async-storage"
- "@upstash/redis"
- "@vercel/blob"
+ - "@vercel/functions"
- "@vercel/kv"
- aws4fetch
- bufferutil
@@ -16588,7 +17445,7 @@ snapshots:
- utf-8-validate
- zod
- "@walletconnect/core@2.20.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)":
+ "@walletconnect/core@2.20.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)":
dependencies:
"@walletconnect/heartbeat": 1.2.2
"@walletconnect/jsonrpc-provider": 1.0.14
@@ -16602,7 +17459,7 @@ snapshots:
"@walletconnect/safe-json": 1.0.2
"@walletconnect/time": 1.0.2
"@walletconnect/types": 2.20.0
- "@walletconnect/utils": 2.20.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ "@walletconnect/utils": 2.20.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
"@walletconnect/window-getters": 1.0.1
es-toolkit: 1.33.0
events: 3.3.0
@@ -16621,6 +17478,51 @@ snapshots:
- "@react-native-async-storage/async-storage"
- "@upstash/redis"
- "@vercel/blob"
+ - "@vercel/functions"
+ - "@vercel/kv"
+ - aws4fetch
+ - bufferutil
+ - db0
+ - ioredis
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
+
+ "@walletconnect/core@2.20.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)":
+ dependencies:
+ "@walletconnect/heartbeat": 1.2.2
+ "@walletconnect/jsonrpc-provider": 1.0.14
+ "@walletconnect/jsonrpc-types": 1.0.4
+ "@walletconnect/jsonrpc-utils": 1.0.8
+ "@walletconnect/jsonrpc-ws-connection": 1.0.16(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ "@walletconnect/keyvaluestorage": 1.1.1
+ "@walletconnect/logger": 2.1.2
+ "@walletconnect/relay-api": 1.0.11
+ "@walletconnect/relay-auth": 1.1.0
+ "@walletconnect/safe-json": 1.0.2
+ "@walletconnect/time": 1.0.2
+ "@walletconnect/types": 2.20.0
+ "@walletconnect/utils": 2.20.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
+ "@walletconnect/window-getters": 1.0.1
+ es-toolkit: 1.33.0
+ events: 3.3.0
+ uint8arrays: 3.1.0
+ transitivePeerDependencies:
+ - "@azure/app-configuration"
+ - "@azure/cosmos"
+ - "@azure/data-tables"
+ - "@azure/identity"
+ - "@azure/keyvault-secrets"
+ - "@azure/storage-blob"
+ - "@capacitor/preferences"
+ - "@deno/kv"
+ - "@netlify/blobs"
+ - "@planetscale/database"
+ - "@react-native-async-storage/async-storage"
+ - "@upstash/redis"
+ - "@vercel/blob"
+ - "@vercel/functions"
- "@vercel/kv"
- aws4fetch
- bufferutil
@@ -16635,18 +17537,59 @@ snapshots:
dependencies:
tslib: 1.14.1
- "@walletconnect/ethereum-provider@2.20.0(@types/react@19.1.3)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)":
+ "@walletconnect/ethereum-provider@2.20.0(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)":
+ dependencies:
+ "@reown/appkit": 1.7.3(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ "@walletconnect/jsonrpc-http-connection": 1.0.8
+ "@walletconnect/jsonrpc-provider": 1.0.14
+ "@walletconnect/jsonrpc-types": 1.0.4
+ "@walletconnect/jsonrpc-utils": 1.0.8
+ "@walletconnect/keyvaluestorage": 1.1.1
+ "@walletconnect/sign-client": 2.20.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ "@walletconnect/types": 2.20.0
+ "@walletconnect/universal-provider": 2.20.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ "@walletconnect/utils": 2.20.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ events: 3.3.0
+ transitivePeerDependencies:
+ - "@azure/app-configuration"
+ - "@azure/cosmos"
+ - "@azure/data-tables"
+ - "@azure/identity"
+ - "@azure/keyvault-secrets"
+ - "@azure/storage-blob"
+ - "@capacitor/preferences"
+ - "@deno/kv"
+ - "@netlify/blobs"
+ - "@planetscale/database"
+ - "@react-native-async-storage/async-storage"
+ - "@types/react"
+ - "@upstash/redis"
+ - "@vercel/blob"
+ - "@vercel/functions"
+ - "@vercel/kv"
+ - aws4fetch
+ - bufferutil
+ - db0
+ - encoding
+ - ioredis
+ - react
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
+
+ "@walletconnect/ethereum-provider@2.20.0(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)":
dependencies:
- "@reown/appkit": 1.7.3(@types/react@19.1.3)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ "@reown/appkit": 1.7.3(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
"@walletconnect/jsonrpc-http-connection": 1.0.8
"@walletconnect/jsonrpc-provider": 1.0.14
"@walletconnect/jsonrpc-types": 1.0.4
"@walletconnect/jsonrpc-utils": 1.0.8
"@walletconnect/keyvaluestorage": 1.1.1
- "@walletconnect/sign-client": 2.20.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ "@walletconnect/sign-client": 2.20.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
"@walletconnect/types": 2.20.0
- "@walletconnect/universal-provider": 2.20.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
- "@walletconnect/utils": 2.20.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ "@walletconnect/universal-provider": 2.20.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
+ "@walletconnect/utils": 2.20.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
events: 3.3.0
transitivePeerDependencies:
- "@azure/app-configuration"
@@ -16663,6 +17606,7 @@ snapshots:
- "@types/react"
- "@upstash/redis"
- "@vercel/blob"
+ - "@vercel/functions"
- "@vercel/kv"
- aws4fetch
- bufferutil
@@ -16726,7 +17670,7 @@ snapshots:
dependencies:
"@walletconnect/safe-json": 1.0.2
idb-keyval: 6.2.2
- unstorage: 1.16.0(idb-keyval@6.2.2)
+ unstorage: 1.17.2(idb-keyval@6.2.2)
transitivePeerDependencies:
- "@azure/app-configuration"
- "@azure/cosmos"
@@ -16740,6 +17684,7 @@ snapshots:
- "@planetscale/database"
- "@upstash/redis"
- "@vercel/blob"
+ - "@vercel/functions"
- "@vercel/kv"
- aws4fetch
- db0
@@ -16767,16 +17712,88 @@ snapshots:
dependencies:
tslib: 1.14.1
- "@walletconnect/sign-client@2.19.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)":
+ "@walletconnect/sign-client@2.19.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)":
+ dependencies:
+ "@walletconnect/core": 2.19.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ "@walletconnect/events": 1.0.1
+ "@walletconnect/heartbeat": 1.2.2
+ "@walletconnect/jsonrpc-utils": 1.0.8
+ "@walletconnect/logger": 2.1.2
+ "@walletconnect/time": 1.0.2
+ "@walletconnect/types": 2.19.2
+ "@walletconnect/utils": 2.19.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ events: 3.3.0
+ transitivePeerDependencies:
+ - "@azure/app-configuration"
+ - "@azure/cosmos"
+ - "@azure/data-tables"
+ - "@azure/identity"
+ - "@azure/keyvault-secrets"
+ - "@azure/storage-blob"
+ - "@capacitor/preferences"
+ - "@deno/kv"
+ - "@netlify/blobs"
+ - "@planetscale/database"
+ - "@react-native-async-storage/async-storage"
+ - "@upstash/redis"
+ - "@vercel/blob"
+ - "@vercel/functions"
+ - "@vercel/kv"
+ - aws4fetch
+ - bufferutil
+ - db0
+ - ioredis
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
+
+ "@walletconnect/sign-client@2.19.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)":
+ dependencies:
+ "@walletconnect/core": 2.19.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
+ "@walletconnect/events": 1.0.1
+ "@walletconnect/heartbeat": 1.2.2
+ "@walletconnect/jsonrpc-utils": 1.0.8
+ "@walletconnect/logger": 2.1.2
+ "@walletconnect/time": 1.0.2
+ "@walletconnect/types": 2.19.2
+ "@walletconnect/utils": 2.19.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
+ events: 3.3.0
+ transitivePeerDependencies:
+ - "@azure/app-configuration"
+ - "@azure/cosmos"
+ - "@azure/data-tables"
+ - "@azure/identity"
+ - "@azure/keyvault-secrets"
+ - "@azure/storage-blob"
+ - "@capacitor/preferences"
+ - "@deno/kv"
+ - "@netlify/blobs"
+ - "@planetscale/database"
+ - "@react-native-async-storage/async-storage"
+ - "@upstash/redis"
+ - "@vercel/blob"
+ - "@vercel/functions"
+ - "@vercel/kv"
+ - aws4fetch
+ - bufferutil
+ - db0
+ - ioredis
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
+
+ "@walletconnect/sign-client@2.20.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)":
dependencies:
- "@walletconnect/core": 2.19.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ "@walletconnect/core": 2.20.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
"@walletconnect/events": 1.0.1
"@walletconnect/heartbeat": 1.2.2
"@walletconnect/jsonrpc-utils": 1.0.8
"@walletconnect/logger": 2.1.2
"@walletconnect/time": 1.0.2
- "@walletconnect/types": 2.19.2
- "@walletconnect/utils": 2.19.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ "@walletconnect/types": 2.20.0
+ "@walletconnect/utils": 2.20.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
events: 3.3.0
transitivePeerDependencies:
- "@azure/app-configuration"
@@ -16792,6 +17809,7 @@ snapshots:
- "@react-native-async-storage/async-storage"
- "@upstash/redis"
- "@vercel/blob"
+ - "@vercel/functions"
- "@vercel/kv"
- aws4fetch
- bufferutil
@@ -16802,16 +17820,16 @@ snapshots:
- utf-8-validate
- zod
- "@walletconnect/sign-client@2.20.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)":
+ "@walletconnect/sign-client@2.20.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)":
dependencies:
- "@walletconnect/core": 2.20.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ "@walletconnect/core": 2.20.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
"@walletconnect/events": 1.0.1
"@walletconnect/heartbeat": 1.2.2
"@walletconnect/jsonrpc-utils": 1.0.8
"@walletconnect/logger": 2.1.2
"@walletconnect/time": 1.0.2
"@walletconnect/types": 2.20.0
- "@walletconnect/utils": 2.20.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ "@walletconnect/utils": 2.20.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
events: 3.3.0
transitivePeerDependencies:
- "@azure/app-configuration"
@@ -16827,6 +17845,7 @@ snapshots:
- "@react-native-async-storage/async-storage"
- "@upstash/redis"
- "@vercel/blob"
+ - "@vercel/functions"
- "@vercel/kv"
- aws4fetch
- bufferutil
@@ -16863,6 +17882,7 @@ snapshots:
- "@react-native-async-storage/async-storage"
- "@upstash/redis"
- "@vercel/blob"
+ - "@vercel/functions"
- "@vercel/kv"
- aws4fetch
- db0
@@ -16891,13 +17911,54 @@ snapshots:
- "@react-native-async-storage/async-storage"
- "@upstash/redis"
- "@vercel/blob"
+ - "@vercel/functions"
+ - "@vercel/kv"
+ - aws4fetch
+ - db0
+ - ioredis
+ - uploadthing
+
+ "@walletconnect/universal-provider@2.19.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)":
+ dependencies:
+ "@walletconnect/events": 1.0.1
+ "@walletconnect/jsonrpc-http-connection": 1.0.8
+ "@walletconnect/jsonrpc-provider": 1.0.14
+ "@walletconnect/jsonrpc-types": 1.0.4
+ "@walletconnect/jsonrpc-utils": 1.0.8
+ "@walletconnect/keyvaluestorage": 1.1.1
+ "@walletconnect/logger": 2.1.2
+ "@walletconnect/sign-client": 2.19.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ "@walletconnect/types": 2.19.2
+ "@walletconnect/utils": 2.19.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ es-toolkit: 1.33.0
+ events: 3.3.0
+ transitivePeerDependencies:
+ - "@azure/app-configuration"
+ - "@azure/cosmos"
+ - "@azure/data-tables"
+ - "@azure/identity"
+ - "@azure/keyvault-secrets"
+ - "@azure/storage-blob"
+ - "@capacitor/preferences"
+ - "@deno/kv"
+ - "@netlify/blobs"
+ - "@planetscale/database"
+ - "@react-native-async-storage/async-storage"
+ - "@upstash/redis"
+ - "@vercel/blob"
+ - "@vercel/functions"
- "@vercel/kv"
- aws4fetch
+ - bufferutil
- db0
+ - encoding
- ioredis
+ - typescript
- uploadthing
+ - utf-8-validate
+ - zod
- "@walletconnect/universal-provider@2.19.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)":
+ "@walletconnect/universal-provider@2.19.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)":
dependencies:
"@walletconnect/events": 1.0.1
"@walletconnect/jsonrpc-http-connection": 1.0.8
@@ -16906,9 +17967,49 @@ snapshots:
"@walletconnect/jsonrpc-utils": 1.0.8
"@walletconnect/keyvaluestorage": 1.1.1
"@walletconnect/logger": 2.1.2
- "@walletconnect/sign-client": 2.19.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ "@walletconnect/sign-client": 2.19.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
"@walletconnect/types": 2.19.2
- "@walletconnect/utils": 2.19.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ "@walletconnect/utils": 2.19.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
+ es-toolkit: 1.33.0
+ events: 3.3.0
+ transitivePeerDependencies:
+ - "@azure/app-configuration"
+ - "@azure/cosmos"
+ - "@azure/data-tables"
+ - "@azure/identity"
+ - "@azure/keyvault-secrets"
+ - "@azure/storage-blob"
+ - "@capacitor/preferences"
+ - "@deno/kv"
+ - "@netlify/blobs"
+ - "@planetscale/database"
+ - "@react-native-async-storage/async-storage"
+ - "@upstash/redis"
+ - "@vercel/blob"
+ - "@vercel/functions"
+ - "@vercel/kv"
+ - aws4fetch
+ - bufferutil
+ - db0
+ - encoding
+ - ioredis
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
+
+ "@walletconnect/universal-provider@2.20.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)":
+ dependencies:
+ "@walletconnect/events": 1.0.1
+ "@walletconnect/jsonrpc-http-connection": 1.0.8
+ "@walletconnect/jsonrpc-provider": 1.0.14
+ "@walletconnect/jsonrpc-types": 1.0.4
+ "@walletconnect/jsonrpc-utils": 1.0.8
+ "@walletconnect/keyvaluestorage": 1.1.1
+ "@walletconnect/logger": 2.1.2
+ "@walletconnect/sign-client": 2.20.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ "@walletconnect/types": 2.20.0
+ "@walletconnect/utils": 2.20.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
es-toolkit: 1.33.0
events: 3.3.0
transitivePeerDependencies:
@@ -16925,6 +18026,7 @@ snapshots:
- "@react-native-async-storage/async-storage"
- "@upstash/redis"
- "@vercel/blob"
+ - "@vercel/functions"
- "@vercel/kv"
- aws4fetch
- bufferutil
@@ -16936,7 +18038,7 @@ snapshots:
- utf-8-validate
- zod
- "@walletconnect/universal-provider@2.20.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)":
+ "@walletconnect/universal-provider@2.20.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)":
dependencies:
"@walletconnect/events": 1.0.1
"@walletconnect/jsonrpc-http-connection": 1.0.8
@@ -16945,9 +18047,9 @@ snapshots:
"@walletconnect/jsonrpc-utils": 1.0.8
"@walletconnect/keyvaluestorage": 1.1.1
"@walletconnect/logger": 2.1.2
- "@walletconnect/sign-client": 2.20.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ "@walletconnect/sign-client": 2.20.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
"@walletconnect/types": 2.20.0
- "@walletconnect/utils": 2.20.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ "@walletconnect/utils": 2.20.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
es-toolkit: 1.33.0
events: 3.3.0
transitivePeerDependencies:
@@ -16964,6 +18066,7 @@ snapshots:
- "@react-native-async-storage/async-storage"
- "@upstash/redis"
- "@vercel/blob"
+ - "@vercel/functions"
- "@vercel/kv"
- aws4fetch
- bufferutil
@@ -16975,7 +18078,51 @@ snapshots:
- utf-8-validate
- zod
- "@walletconnect/utils@2.19.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)":
+ "@walletconnect/utils@2.19.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)":
+ dependencies:
+ "@noble/ciphers": 1.2.1
+ "@noble/curves": 1.8.1
+ "@noble/hashes": 1.7.1
+ "@walletconnect/jsonrpc-utils": 1.0.8
+ "@walletconnect/keyvaluestorage": 1.1.1
+ "@walletconnect/relay-api": 1.0.11
+ "@walletconnect/relay-auth": 1.1.0
+ "@walletconnect/safe-json": 1.0.2
+ "@walletconnect/time": 1.0.2
+ "@walletconnect/types": 2.19.2
+ "@walletconnect/window-getters": 1.0.1
+ "@walletconnect/window-metadata": 1.0.1
+ bs58: 6.0.0
+ detect-browser: 5.3.0
+ query-string: 7.1.3
+ uint8arrays: 3.1.0
+ viem: 2.23.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ transitivePeerDependencies:
+ - "@azure/app-configuration"
+ - "@azure/cosmos"
+ - "@azure/data-tables"
+ - "@azure/identity"
+ - "@azure/keyvault-secrets"
+ - "@azure/storage-blob"
+ - "@capacitor/preferences"
+ - "@deno/kv"
+ - "@netlify/blobs"
+ - "@planetscale/database"
+ - "@react-native-async-storage/async-storage"
+ - "@upstash/redis"
+ - "@vercel/blob"
+ - "@vercel/functions"
+ - "@vercel/kv"
+ - aws4fetch
+ - bufferutil
+ - db0
+ - ioredis
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
+
+ "@walletconnect/utils@2.19.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)":
dependencies:
"@noble/ciphers": 1.2.1
"@noble/curves": 1.8.1
@@ -16993,7 +18140,51 @@ snapshots:
detect-browser: 5.3.0
query-string: 7.1.3
uint8arrays: 3.1.0
- viem: 2.23.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ viem: 2.23.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
+ transitivePeerDependencies:
+ - "@azure/app-configuration"
+ - "@azure/cosmos"
+ - "@azure/data-tables"
+ - "@azure/identity"
+ - "@azure/keyvault-secrets"
+ - "@azure/storage-blob"
+ - "@capacitor/preferences"
+ - "@deno/kv"
+ - "@netlify/blobs"
+ - "@planetscale/database"
+ - "@react-native-async-storage/async-storage"
+ - "@upstash/redis"
+ - "@vercel/blob"
+ - "@vercel/functions"
+ - "@vercel/kv"
+ - aws4fetch
+ - bufferutil
+ - db0
+ - ioredis
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
+
+ "@walletconnect/utils@2.20.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)":
+ dependencies:
+ "@noble/ciphers": 1.2.1
+ "@noble/curves": 1.8.1
+ "@noble/hashes": 1.7.1
+ "@walletconnect/jsonrpc-utils": 1.0.8
+ "@walletconnect/keyvaluestorage": 1.1.1
+ "@walletconnect/relay-api": 1.0.11
+ "@walletconnect/relay-auth": 1.1.0
+ "@walletconnect/safe-json": 1.0.2
+ "@walletconnect/time": 1.0.2
+ "@walletconnect/types": 2.20.0
+ "@walletconnect/window-getters": 1.0.1
+ "@walletconnect/window-metadata": 1.0.1
+ bs58: 6.0.0
+ detect-browser: 5.3.0
+ query-string: 7.1.3
+ uint8arrays: 3.1.0
+ viem: 2.23.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
transitivePeerDependencies:
- "@azure/app-configuration"
- "@azure/cosmos"
@@ -17008,6 +18199,7 @@ snapshots:
- "@react-native-async-storage/async-storage"
- "@upstash/redis"
- "@vercel/blob"
+ - "@vercel/functions"
- "@vercel/kv"
- aws4fetch
- bufferutil
@@ -17018,7 +18210,7 @@ snapshots:
- utf-8-validate
- zod
- "@walletconnect/utils@2.20.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)":
+ "@walletconnect/utils@2.20.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)":
dependencies:
"@noble/ciphers": 1.2.1
"@noble/curves": 1.8.1
@@ -17036,7 +18228,7 @@ snapshots:
detect-browser: 5.3.0
query-string: 7.1.3
uint8arrays: 3.1.0
- viem: 2.23.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ viem: 2.23.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
transitivePeerDependencies:
- "@azure/app-configuration"
- "@azure/cosmos"
@@ -17051,6 +18243,7 @@ snapshots:
- "@react-native-async-storage/async-storage"
- "@upstash/redis"
- "@vercel/blob"
+ - "@vercel/functions"
- "@vercel/kv"
- aws4fetch
- bufferutil
@@ -17171,43 +18364,57 @@ snapshots:
typescript: 5.7.3
zod: 3.22.4
- abitype@1.0.8(typescript@5.7.3)(zod@3.24.4):
+ abitype@1.0.8(typescript@5.7.3)(zod@3.25.76):
+ optionalDependencies:
+ typescript: 5.7.3
+ zod: 3.25.76
+
+ abitype@1.0.8(typescript@5.7.3)(zod@4.1.12):
optionalDependencies:
typescript: 5.7.3
- zod: 3.24.4
+ zod: 4.1.12
+
+ abitype@1.1.0(typescript@5.7.3)(zod@4.1.12):
+ optionalDependencies:
+ typescript: 5.7.3
+ zod: 4.1.12
+
+ abitype@1.1.2(typescript@5.7.3)(zod@4.1.12):
+ optionalDependencies:
+ typescript: 5.7.3
+ zod: 4.1.12
abort-controller@3.0.0:
dependencies:
event-target-shim: 5.0.1
- accepts@2.0.0:
+ acorn-import-attributes@1.9.5(acorn@8.15.0):
dependencies:
- mime-types: 3.0.1
- negotiator: 1.0.0
+ acorn: 8.15.0
- acorn-import-attributes@1.9.5(acorn@8.14.1):
+ acorn-import-phases@1.0.4(acorn@8.15.0):
dependencies:
- acorn: 8.14.1
+ acorn: 8.15.0
- acorn-jsx@5.3.2(acorn@8.14.1):
+ acorn-jsx@5.3.2(acorn@8.15.0):
dependencies:
- acorn: 8.14.1
+ acorn: 8.15.0
acorn-walk@8.3.4:
dependencies:
- acorn: 8.14.1
+ acorn: 8.15.0
- acorn@8.14.1: {}
+ acorn@8.15.0: {}
aes-js@3.0.0: {}
agent-base@6.0.2:
dependencies:
- debug: 4.4.0(supports-color@5.5.0)
+ debug: 4.4.3(supports-color@5.5.0)
transitivePeerDependencies:
- supports-color
- agent-base@7.1.3: {}
+ agent-base@7.1.4: {}
ajv-draft-04@1.0.0(ajv@8.13.0):
optionalDependencies:
@@ -17250,7 +18457,7 @@ snapshots:
ajv@8.17.1:
dependencies:
fast-deep-equal: 3.1.3
- fast-uri: 3.0.6
+ fast-uri: 3.1.0
json-schema-traverse: 1.0.0
require-from-string: 2.0.2
@@ -17262,7 +18469,7 @@ snapshots:
ansi-escapes@3.2.0: {}
- ansi-escapes@7.0.0:
+ ansi-escapes@7.2.0:
dependencies:
environment: 1.1.0
@@ -17272,7 +18479,7 @@ snapshots:
ansi-regex@5.0.1: {}
- ansi-regex@6.1.0: {}
+ ansi-regex@6.2.2: {}
ansi-styles@3.2.1:
dependencies:
@@ -17284,7 +18491,7 @@ snapshots:
ansi-styles@5.2.0: {}
- ansi-styles@6.2.1: {}
+ ansi-styles@6.2.3: {}
anymatch@3.1.3:
dependencies:
@@ -17299,7 +18506,7 @@ snapshots:
argparse@2.0.1: {}
- aria-hidden@1.2.4:
+ aria-hidden@1.2.6:
dependencies:
tslib: 2.8.1
@@ -17351,14 +18558,14 @@ snapshots:
auto-bind@5.0.1: {}
- autoprefixer@10.4.21(postcss@8.5.3):
+ autoprefixer@10.4.22(postcss@8.5.6):
dependencies:
- browserslist: 4.24.5
- caniuse-lite: 1.0.30001717
- fraction.js: 4.3.7
+ browserslist: 4.28.0
+ caniuse-lite: 1.0.30001756
+ fraction.js: 5.3.4
normalize-range: 0.1.2
picocolors: 1.1.1
- postcss: 8.5.3
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
available-typed-arrays@1.0.7:
@@ -17367,22 +18574,22 @@ snapshots:
aws4@1.13.2: {}
- axios@1.9.0:
+ axios@1.13.2:
dependencies:
- follow-redirects: 1.15.9
- form-data: 4.0.2
+ follow-redirects: 1.15.11
+ form-data: 4.0.5
proxy-from-env: 1.1.0
transitivePeerDependencies:
- debug
- babel-plugin-styled-components@2.1.4(@babel/core@7.27.1)(styled-components@5.3.11(@babel/core@7.27.1)(react-dom@19.1.0(react@19.1.0))(react-is@18.3.1)(react@19.1.0))(supports-color@5.5.0):
+ babel-plugin-styled-components@2.1.4(@babel/core@7.28.5)(styled-components@5.3.11(@babel/core@7.28.5)(react-dom@19.2.0(react@19.2.0))(react-is@18.3.1)(react@19.2.0))(supports-color@5.5.0):
dependencies:
- "@babel/helper-annotate-as-pure": 7.27.1
+ "@babel/helper-annotate-as-pure": 7.27.3
"@babel/helper-module-imports": 7.27.1(supports-color@5.5.0)
- "@babel/plugin-syntax-jsx": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-syntax-jsx": 7.27.1(@babel/core@7.28.5)
lodash: 4.17.21
picomatch: 2.3.1
- styled-components: 5.3.11(@babel/core@7.27.1)(react-dom@19.1.0(react@19.1.0))(react-is@18.3.1)(react@19.1.0)
+ styled-components: 5.3.11(@babel/core@7.28.5)(react-dom@19.2.0(react@19.2.0))(react-is@18.3.1)(react@19.2.0)
transitivePeerDependencies:
- "@babel/core"
- supports-color
@@ -17403,15 +18610,15 @@ snapshots:
mixin-deep: 1.3.2
pascalcase: 0.1.1
+ baseline-browser-mapping@2.8.29: {}
+
bech32@1.1.4: {}
before-after-hook@3.0.2: {}
big.js@6.2.2: {}
- bigint-crypto-utils@3.3.0: {}
-
- bignumber.js@9.3.0: {}
+ bignumber.js@9.3.1: {}
binary-extensions@2.3.0: {}
@@ -17421,23 +18628,9 @@ snapshots:
bn.js@5.2.2: {}
- body-parser@2.2.0:
- dependencies:
- bytes: 3.1.2
- content-type: 1.0.5
- debug: 4.4.0(supports-color@5.5.0)
- http-errors: 2.0.0
- iconv-lite: 0.6.3
- on-finished: 2.4.1
- qs: 6.14.0
- raw-body: 3.0.0
- type-is: 2.0.1
- transitivePeerDependencies:
- - supports-color
-
bottleneck@2.19.5: {}
- bowser@2.11.0: {}
+ bowser@2.12.1: {}
boxen@5.1.2:
dependencies:
@@ -17450,12 +18643,12 @@ snapshots:
widest-line: 3.1.0
wrap-ansi: 7.0.0
- brace-expansion@1.1.11:
+ brace-expansion@1.1.12:
dependencies:
balanced-match: 1.0.2
concat-map: 0.0.1
- brace-expansion@2.0.1:
+ brace-expansion@2.0.2:
dependencies:
balanced-match: 1.0.2
@@ -17484,12 +18677,13 @@ snapshots:
dependencies:
base64-js: 1.5.1
- browserslist@4.24.5:
+ browserslist@4.28.0:
dependencies:
- caniuse-lite: 1.0.30001717
- electron-to-chromium: 1.5.151
- node-releases: 2.0.19
- update-browserslist-db: 1.1.3(browserslist@4.24.5)
+ baseline-browser-mapping: 2.8.29
+ caniuse-lite: 1.0.30001756
+ electron-to-chromium: 1.5.258
+ node-releases: 2.0.27
+ update-browserslist-db: 1.1.4(browserslist@4.28.0)
bs58@6.0.0:
dependencies:
@@ -17515,8 +18709,6 @@ snapshots:
esbuild: 0.21.5
load-tsconfig: 0.2.5
- bytes@3.1.2: {}
-
cac@6.7.14: {}
cache-base@1.0.1:
@@ -17558,20 +18750,20 @@ snapshots:
camelize@1.0.1: {}
- caniuse-lite@1.0.30001717: {}
+ caniuse-lite@1.0.30001756: {}
- cfonts@3.3.0:
+ cfonts@3.3.1:
dependencies:
supports-color: 8.1.1
window-size: 1.1.1
- chai@5.2.0:
+ chai@5.3.3:
dependencies:
assertion-error: 2.0.1
check-error: 2.1.1
deep-eql: 5.0.2
- loupe: 3.1.3
- pathval: 2.0.0
+ loupe: 3.2.1
+ pathval: 2.0.1
chalk@2.4.2:
dependencies:
@@ -17579,17 +18771,12 @@ snapshots:
escape-string-regexp: 1.0.5
supports-color: 5.5.0
- chalk@3.0.0:
- dependencies:
- ansi-styles: 4.3.0
- supports-color: 7.2.0
-
chalk@4.1.2:
dependencies:
ansi-styles: 4.3.0
supports-color: 7.2.0
- chalk@5.4.1: {}
+ chalk@5.6.2: {}
check-error@2.1.1: {}
@@ -17609,8 +18796,6 @@ snapshots:
dependencies:
readdirp: 4.1.2
- chownr@3.0.0: {}
-
chrome-trace-event@1.0.4: {}
ci-info@2.0.0: {}
@@ -17650,13 +18835,18 @@ snapshots:
cli-spinners@2.9.2: {}
- cli-spinners@3.2.0: {}
+ cli-spinners@3.3.0: {}
cli-truncate@4.0.0:
dependencies:
slice-ansi: 5.0.0
string-width: 7.2.0
+ cli-truncate@5.1.1:
+ dependencies:
+ slice-ansi: 7.1.2
+ string-width: 8.1.0
+
cliui@6.0.0:
dependencies:
string-width: 4.2.3
@@ -17726,7 +18916,7 @@ snapshots:
compare-versions@6.1.1: {}
- complex.js@2.4.2: {}
+ complex.js@2.4.3: {}
component-emitter@1.3.1: {}
@@ -17743,7 +18933,7 @@ snapshots:
json-schema-typed: 7.0.3
onetime: 5.1.2
pkg-up: 3.1.0
- semver: 7.7.1
+ semver: 7.7.3
confbox@0.1.8: {}
@@ -17763,59 +18953,42 @@ snapshots:
write-file-atomic: 3.0.3
xdg-basedir: 4.0.0
- connectkit@1.9.0(@babel/core@7.27.1)(@tanstack/react-query@5.75.7(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react-is@18.3.1)(react@19.1.0)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(wagmi@2.15.2(@tanstack/query-core@5.75.7)(@tanstack/react-query@5.75.7(react@19.1.0))(@types/react@19.1.3)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)):
+ connectkit@1.9.1(@babel/core@7.28.5)(@tanstack/react-query@5.90.10(react@19.2.0))(react-dom@19.2.0(react@19.2.0))(react-is@18.3.1)(react@19.2.0)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76))(wagmi@2.15.2(@tanstack/query-core@5.90.10)(@tanstack/react-query@5.90.10(react@19.2.0))(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76))(zod@3.25.76)):
dependencies:
- "@tanstack/react-query": 5.75.7(react@19.1.0)
+ "@tanstack/react-query": 5.90.10(react@19.2.0)
buffer: 6.0.3
detect-browser: 5.3.0
- family: 0.1.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(wagmi@2.15.2(@tanstack/query-core@5.75.7)(@tanstack/react-query@5.75.7(react@19.1.0))(@types/react@19.1.3)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4))
- framer-motion: 6.5.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ family: 0.1.4(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76))(wagmi@2.15.2(@tanstack/query-core@5.90.10)(@tanstack/react-query@5.90.10(react@19.2.0))(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76))(zod@3.25.76))
+ framer-motion: 6.5.1(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
qrcode: 1.5.4
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- react-transition-state: 1.1.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react-use-measure: 2.1.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ react-transition-state: 1.1.5(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ react-use-measure: 2.1.7(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
resize-observer-polyfill: 1.5.1
- styled-components: 5.3.11(@babel/core@7.27.1)(react-dom@19.1.0(react@19.1.0))(react-is@18.3.1)(react@19.1.0)
- viem: 2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
- wagmi: 2.15.2(@tanstack/query-core@5.75.7)(@tanstack/react-query@5.75.7(react@19.1.0))(@types/react@19.1.3)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
+ styled-components: 5.3.11(@babel/core@7.28.5)(react-dom@19.2.0(react@19.2.0))(react-is@18.3.1)(react@19.2.0)
+ viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ wagmi: 2.15.2(@tanstack/query-core@5.90.10)(@tanstack/react-query@5.90.10(react@19.2.0))(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76))(zod@3.25.76)
transitivePeerDependencies:
- "@babel/core"
- react-is
- content-disposition@1.0.0:
- dependencies:
- safe-buffer: 5.2.1
-
- content-type@1.0.5: {}
-
convert-source-map@2.0.0: {}
convert-to-spaces@2.0.1: {}
cookie-es@1.2.2: {}
- cookie-signature@1.2.2: {}
-
- cookie@0.7.2: {}
-
cookie@1.0.2: {}
copy-descriptor@0.1.1: {}
- core-js@3.42.0: {}
-
core-util-is@1.0.3: {}
- cors@2.8.5:
- dependencies:
- object-assign: 4.1.1
- vary: 1.1.2
-
cosmiconfig@8.3.6(typescript@5.7.3):
dependencies:
import-fresh: 3.3.1
- js-yaml: 4.1.0
+ js-yaml: 4.1.1
parse-json: 5.2.0
path-type: 4.0.0
optionalDependencies:
@@ -17861,12 +19034,12 @@ snapshots:
css.escape@1.5.1: {}
- cssstyle@4.3.1:
+ cssstyle@4.6.0:
dependencies:
- "@asamuzakjp/css-color": 3.1.7
+ "@asamuzakjp/css-color": 3.2.0
rrweb-cssom: 0.8.0
- csstype@3.1.3: {}
+ csstype@3.2.3: {}
d3-array@3.2.4:
dependencies:
@@ -17913,7 +19086,7 @@ snapshots:
date-fns@2.30.0:
dependencies:
- "@babel/runtime": 7.27.1
+ "@babel/runtime": 7.28.4
dateformat@4.6.3: {}
@@ -17929,10 +19102,6 @@ snapshots:
dependencies:
ms: 2.0.0
- debug@3.2.7:
- dependencies:
- ms: 2.1.3
-
debug@4.3.4:
dependencies:
ms: 2.1.2
@@ -17941,7 +19110,7 @@ snapshots:
dependencies:
ms: 2.1.3
- debug@4.4.0(supports-color@5.5.0):
+ debug@4.4.3(supports-color@5.5.0):
dependencies:
ms: 2.1.3
optionalDependencies:
@@ -17949,11 +19118,11 @@ snapshots:
decamelize@1.2.0: {}
- decamelize@6.0.0: {}
+ decamelize@6.0.1: {}
decimal.js-light@2.5.1: {}
- decimal.js@10.5.0: {}
+ decimal.js@10.6.0: {}
decode-uri-component@0.2.2: {}
@@ -17992,47 +19161,47 @@ snapshots:
delayed-stream@1.0.0: {}
- depd@2.0.0: {}
-
dequal@2.0.3: {}
- derive-valtio@0.1.0(valtio@1.13.2(@types/react@19.1.3)(react@19.1.0)):
+ derive-valtio@0.1.0(valtio@1.13.2(@types/react@19.2.6)(react@19.2.0)):
dependencies:
- valtio: 1.13.2(@types/react@19.1.3)(react@19.1.0)
+ valtio: 1.13.2(@types/react@19.2.6)(react@19.2.0)
destr@2.0.5: {}
detect-browser@5.3.0: {}
- detect-libc@2.0.4: {}
+ detect-libc@2.1.2: {}
detect-node-es@1.1.0: {}
diff@4.0.2: {}
+ diff@8.0.2: {}
+
dijkstrajs@1.0.3: {}
dir-glob@2.2.2:
dependencies:
path-type: 3.0.0
- discord-api-types@0.38.11: {}
+ discord-api-types@0.38.34: {}
- discord.js@14.19.3(bufferutil@4.0.9)(utf-8-validate@5.0.10):
+ discord.js@14.25.0(bufferutil@4.0.9)(utf-8-validate@5.0.10):
dependencies:
- "@discordjs/builders": 1.11.2
+ "@discordjs/builders": 1.13.0
"@discordjs/collection": 1.5.3
- "@discordjs/formatters": 0.6.1
- "@discordjs/rest": 2.5.0
- "@discordjs/util": 1.1.1
- "@discordjs/ws": 1.2.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ "@discordjs/formatters": 0.6.2
+ "@discordjs/rest": 2.6.0
+ "@discordjs/util": 1.2.0
+ "@discordjs/ws": 1.2.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)
"@sapphire/snowflake": 3.5.3
- discord-api-types: 0.38.11
+ discord-api-types: 0.38.34
fast-deep-equal: 3.1.3
lodash.snakecase: 4.1.1
magic-bytes.js: 1.12.1
tslib: 2.8.1
- undici: 6.21.1
+ undici: 6.21.3
transitivePeerDependencies:
- bufferutil
- utf-8-validate
@@ -18043,8 +19212,8 @@ snapshots:
dom-helpers@5.2.1:
dependencies:
- "@babel/runtime": 7.27.1
- csstype: 3.1.3
+ "@babel/runtime": 7.28.4
+ csstype: 3.2.3
dot-case@3.0.4:
dependencies:
@@ -18059,7 +19228,7 @@ snapshots:
dependencies:
is-obj: 2.0.0
- dotenv@16.5.0: {}
+ dotenv@16.6.1: {}
drizzle-orm@0.39.3(@opentelemetry/api@1.9.0)(@prisma/client@6.3.1(typescript@5.7.3))(@types/pg@8.6.1):
optionalDependencies:
@@ -18075,7 +19244,7 @@ snapshots:
duplexify@4.1.3:
dependencies:
- end-of-stream: 1.4.4
+ end-of-stream: 1.4.5
inherits: 2.0.4
readable-stream: 3.6.2
stream-shift: 1.0.3
@@ -18086,32 +19255,30 @@ snapshots:
dependencies:
safe-buffer: 5.2.1
- eciesjs@0.4.14:
+ eciesjs@0.4.16:
dependencies:
- "@ecies/ciphers": 0.2.3(@noble/ciphers@1.3.0)
+ "@ecies/ciphers": 0.2.5(@noble/ciphers@1.3.0)
"@noble/ciphers": 1.3.0
- "@noble/curves": 1.9.0
+ "@noble/curves": 1.9.7
"@noble/hashes": 1.8.0
eciesjs@0.4.7:
dependencies:
"@noble/ciphers": 0.5.3
- "@noble/curves": 1.9.0
+ "@noble/curves": 1.9.7
"@noble/hashes": 1.8.0
- ee-first@1.1.1: {}
-
- effect@3.13.11:
+ effect@3.13.2:
dependencies:
"@standard-schema/spec": 1.0.0
fast-check: 3.23.2
- effect@3.13.2:
+ effect@3.18.1:
dependencies:
"@standard-schema/spec": 1.0.0
fast-check: 3.23.2
- electron-to-chromium@1.5.151: {}
+ electron-to-chromium@1.5.258: {}
elliptic@6.6.1:
dependencies:
@@ -18123,24 +19290,24 @@ snapshots:
minimalistic-assert: 1.0.1
minimalistic-crypto-utils: 1.0.1
- elysia-rate-limit@4.4.0(elysia@1.1.26(@sinclair/typebox@0.34.33)(openapi-types@12.1.3)(typescript@5.7.3)):
+ elysia-rate-limit@4.4.2(elysia@1.1.26(@sinclair/typebox@0.34.41)(openapi-types@12.1.3)(typescript@5.7.3)):
dependencies:
"@alloc/quick-lru": 5.2.0
debug: 4.3.4
- elysia: 1.1.26(@sinclair/typebox@0.34.33)(openapi-types@12.1.3)(typescript@5.7.3)
+ elysia: 1.1.26(@sinclair/typebox@0.34.41)(openapi-types@12.1.3)(typescript@5.7.3)
transitivePeerDependencies:
- supports-color
- elysia@1.1.26(@sinclair/typebox@0.34.33)(openapi-types@12.1.3)(typescript@5.7.3):
+ elysia@1.1.26(@sinclair/typebox@0.34.41)(openapi-types@12.1.3)(typescript@5.7.3):
dependencies:
- "@sinclair/typebox": 0.34.33
+ "@sinclair/typebox": 0.34.41
cookie: 1.0.2
fast-decode-uri-component: 1.0.1
optionalDependencies:
openapi-types: 12.1.3
typescript: 5.7.3
- emoji-regex@10.4.0: {}
+ emoji-regex@10.6.0: {}
emoji-regex@8.0.0: {}
@@ -18148,9 +19315,7 @@ snapshots:
encode-utf8@1.0.3: {}
- encodeurl@2.0.0: {}
-
- end-of-stream@1.4.4:
+ end-of-stream@1.4.5:
dependencies:
once: 1.4.0
@@ -18168,20 +19333,20 @@ snapshots:
engine.io-parser@5.2.3: {}
- enhanced-resolve@5.18.1:
+ enhanced-resolve@5.18.3:
dependencies:
graceful-fs: 4.2.11
- tapable: 2.2.1
+ tapable: 2.3.0
entities@4.5.0: {}
- entities@6.0.0: {}
+ entities@6.0.1: {}
env-paths@2.2.1: {}
environment@1.1.0: {}
- error-ex@1.3.2:
+ error-ex@1.3.4:
dependencies:
is-arrayish: 0.2.1
@@ -18204,7 +19369,7 @@ snapshots:
es-toolkit@1.33.0: {}
- es-toolkit@1.37.2: {}
+ es-toolkit@1.42.0: {}
esbuild@0.21.5:
optionalDependencies:
@@ -18232,40 +19397,39 @@ snapshots:
"@esbuild/win32-ia32": 0.21.5
"@esbuild/win32-x64": 0.21.5
- esbuild@0.25.4:
+ esbuild@0.25.12:
optionalDependencies:
- "@esbuild/aix-ppc64": 0.25.4
- "@esbuild/android-arm": 0.25.4
- "@esbuild/android-arm64": 0.25.4
- "@esbuild/android-x64": 0.25.4
- "@esbuild/darwin-arm64": 0.25.4
- "@esbuild/darwin-x64": 0.25.4
- "@esbuild/freebsd-arm64": 0.25.4
- "@esbuild/freebsd-x64": 0.25.4
- "@esbuild/linux-arm": 0.25.4
- "@esbuild/linux-arm64": 0.25.4
- "@esbuild/linux-ia32": 0.25.4
- "@esbuild/linux-loong64": 0.25.4
- "@esbuild/linux-mips64el": 0.25.4
- "@esbuild/linux-ppc64": 0.25.4
- "@esbuild/linux-riscv64": 0.25.4
- "@esbuild/linux-s390x": 0.25.4
- "@esbuild/linux-x64": 0.25.4
- "@esbuild/netbsd-arm64": 0.25.4
- "@esbuild/netbsd-x64": 0.25.4
- "@esbuild/openbsd-arm64": 0.25.4
- "@esbuild/openbsd-x64": 0.25.4
- "@esbuild/sunos-x64": 0.25.4
- "@esbuild/win32-arm64": 0.25.4
- "@esbuild/win32-ia32": 0.25.4
- "@esbuild/win32-x64": 0.25.4
+ "@esbuild/aix-ppc64": 0.25.12
+ "@esbuild/android-arm": 0.25.12
+ "@esbuild/android-arm64": 0.25.12
+ "@esbuild/android-x64": 0.25.12
+ "@esbuild/darwin-arm64": 0.25.12
+ "@esbuild/darwin-x64": 0.25.12
+ "@esbuild/freebsd-arm64": 0.25.12
+ "@esbuild/freebsd-x64": 0.25.12
+ "@esbuild/linux-arm": 0.25.12
+ "@esbuild/linux-arm64": 0.25.12
+ "@esbuild/linux-ia32": 0.25.12
+ "@esbuild/linux-loong64": 0.25.12
+ "@esbuild/linux-mips64el": 0.25.12
+ "@esbuild/linux-ppc64": 0.25.12
+ "@esbuild/linux-riscv64": 0.25.12
+ "@esbuild/linux-s390x": 0.25.12
+ "@esbuild/linux-x64": 0.25.12
+ "@esbuild/netbsd-arm64": 0.25.12
+ "@esbuild/netbsd-x64": 0.25.12
+ "@esbuild/openbsd-arm64": 0.25.12
+ "@esbuild/openbsd-x64": 0.25.12
+ "@esbuild/openharmony-arm64": 0.25.12
+ "@esbuild/sunos-x64": 0.25.12
+ "@esbuild/win32-arm64": 0.25.12
+ "@esbuild/win32-ia32": 0.25.12
+ "@esbuild/win32-x64": 0.25.12
escalade@3.2.0: {}
escape-goat@2.1.1: {}
- escape-html@1.0.3: {}
-
escape-latex@1.2.0: {}
escape-string-regexp@1.0.5: {}
@@ -18274,99 +19438,95 @@ snapshots:
escape-string-regexp@4.0.0: {}
- eslint-config-prettier@10.1.5(eslint@9.26.0(jiti@2.4.2)):
+ eslint-config-prettier@10.1.8(eslint@9.39.1(jiti@2.6.1)):
+ dependencies:
+ eslint: 9.39.1(jiti@2.6.1)
+
+ eslint-import-context@0.1.9(unrs-resolver@1.11.1):
dependencies:
- eslint: 9.26.0(jiti@2.4.2)
+ get-tsconfig: 4.13.0
+ stable-hash-x: 0.2.0
+ optionalDependencies:
+ unrs-resolver: 1.11.1
eslint-import-resolver-next@0.4.3:
dependencies:
fast-glob: 3.3.3
- js-yaml: 4.1.0
+ js-yaml: 4.1.1
oxc-resolver: 5.3.0
stable-hash: 0.0.5
- eslint-import-resolver-node@0.3.9:
- dependencies:
- debug: 3.2.7
- is-core-module: 2.16.1
- resolve: 1.22.10
- transitivePeerDependencies:
- - supports-color
-
- eslint-plugin-import-x@4.11.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.7.3):
+ eslint-plugin-import-x@4.16.1(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.7.3))(eslint@9.39.1(jiti@2.6.1)):
dependencies:
- "@typescript-eslint/utils": 8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.7.3)
+ "@typescript-eslint/types": 8.47.0
comment-parser: 1.4.1
- debug: 4.4.0(supports-color@5.5.0)
- eslint: 9.26.0(jiti@2.4.2)
- eslint-import-resolver-node: 0.3.9
- get-tsconfig: 4.10.0
+ debug: 4.4.3(supports-color@5.5.0)
+ eslint: 9.39.1(jiti@2.6.1)
+ eslint-import-context: 0.1.9(unrs-resolver@1.11.1)
is-glob: 4.0.3
- minimatch: 10.0.1
- semver: 7.7.1
- stable-hash: 0.0.5
- tslib: 2.8.1
- unrs-resolver: 1.7.2
+ minimatch: 10.1.1
+ semver: 7.7.3
+ stable-hash-x: 0.2.0
+ unrs-resolver: 1.11.1
+ optionalDependencies:
+ "@typescript-eslint/utils": 8.47.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.7.3)
transitivePeerDependencies:
- supports-color
- - typescript
- eslint-plugin-prettier@5.4.0(@types/eslint@9.6.1)(eslint-config-prettier@10.1.5(eslint@9.26.0(jiti@2.4.2)))(eslint@9.26.0(jiti@2.4.2))(prettier@3.5.0):
+ eslint-plugin-prettier@5.5.4(@types/eslint@9.6.1)(eslint-config-prettier@10.1.8(eslint@9.39.1(jiti@2.6.1)))(eslint@9.39.1(jiti@2.6.1))(prettier@3.5.0):
dependencies:
- eslint: 9.26.0(jiti@2.4.2)
+ eslint: 9.39.1(jiti@2.6.1)
prettier: 3.5.0
prettier-linter-helpers: 1.0.0
- synckit: 0.11.4
+ synckit: 0.11.11
optionalDependencies:
"@types/eslint": 9.6.1
- eslint-config-prettier: 10.1.5(eslint@9.26.0(jiti@2.4.2))
+ eslint-config-prettier: 10.1.8(eslint@9.39.1(jiti@2.6.1))
- eslint-plugin-react-hooks@5.2.0(eslint@9.26.0(jiti@2.4.2)):
+ eslint-plugin-react-hooks@5.2.0(eslint@9.39.1(jiti@2.6.1)):
dependencies:
- eslint: 9.26.0(jiti@2.4.2)
+ eslint: 9.39.1(jiti@2.6.1)
- eslint-plugin-react-refresh@0.4.20(eslint@9.26.0(jiti@2.4.2)):
+ eslint-plugin-react-refresh@0.4.24(eslint@9.39.1(jiti@2.6.1)):
dependencies:
- eslint: 9.26.0(jiti@2.4.2)
+ eslint: 9.39.1(jiti@2.6.1)
eslint-scope@5.1.1:
dependencies:
esrecurse: 4.3.0
estraverse: 4.3.0
- eslint-scope@8.3.0:
+ eslint-scope@8.4.0:
dependencies:
esrecurse: 4.3.0
estraverse: 5.3.0
eslint-visitor-keys@3.4.3: {}
- eslint-visitor-keys@4.2.0: {}
+ eslint-visitor-keys@4.2.1: {}
- eslint@9.26.0(jiti@2.4.2):
+ eslint@9.39.1(jiti@2.6.1):
dependencies:
- "@eslint-community/eslint-utils": 4.7.0(eslint@9.26.0(jiti@2.4.2))
- "@eslint-community/regexpp": 4.12.1
- "@eslint/config-array": 0.20.0
- "@eslint/config-helpers": 0.2.2
- "@eslint/core": 0.13.0
+ "@eslint-community/eslint-utils": 4.9.0(eslint@9.39.1(jiti@2.6.1))
+ "@eslint-community/regexpp": 4.12.2
+ "@eslint/config-array": 0.21.1
+ "@eslint/config-helpers": 0.4.2
+ "@eslint/core": 0.17.0
"@eslint/eslintrc": 3.3.1
- "@eslint/js": 9.26.0
- "@eslint/plugin-kit": 0.2.8
- "@humanfs/node": 0.16.6
+ "@eslint/js": 9.39.1
+ "@eslint/plugin-kit": 0.4.1
+ "@humanfs/node": 0.16.7
"@humanwhocodes/module-importer": 1.0.1
"@humanwhocodes/retry": 0.4.3
- "@modelcontextprotocol/sdk": 1.11.1
- "@types/estree": 1.0.7
- "@types/json-schema": 7.0.15
+ "@types/estree": 1.0.8
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.6
- debug: 4.4.0(supports-color@5.5.0)
+ debug: 4.4.3(supports-color@5.5.0)
escape-string-regexp: 4.0.0
- eslint-scope: 8.3.0
- eslint-visitor-keys: 4.2.0
- espree: 10.3.0
+ eslint-scope: 8.4.0
+ eslint-visitor-keys: 4.2.1
+ espree: 10.4.0
esquery: 1.6.0
esutils: 2.0.3
fast-deep-equal: 3.1.3
@@ -18381,17 +19541,16 @@ snapshots:
minimatch: 3.1.2
natural-compare: 1.4.0
optionator: 0.9.4
- zod: 3.24.4
optionalDependencies:
- jiti: 2.4.2
+ jiti: 2.6.1
transitivePeerDependencies:
- supports-color
- espree@10.3.0:
+ espree@10.4.0:
dependencies:
- acorn: 8.14.1
- acorn-jsx: 5.3.2(acorn@8.14.1)
- eslint-visitor-keys: 4.2.0
+ acorn: 8.15.0
+ acorn-jsx: 5.3.2(acorn@8.15.0)
+ eslint-visitor-keys: 4.2.1
esquery@1.6.0:
dependencies:
@@ -18409,12 +19568,10 @@ snapshots:
estree-walker@3.0.3:
dependencies:
- "@types/estree": 1.0.7
+ "@types/estree": 1.0.8
esutils@2.0.3: {}
- etag@1.8.1: {}
-
eth-block-tracker@7.1.0:
dependencies:
"@metamask/eth-json-rpc-provider": 1.0.1
@@ -18507,12 +19664,6 @@ snapshots:
events@3.3.0: {}
- eventsource-parser@3.0.1: {}
-
- eventsource@3.0.7:
- dependencies:
- eventsource-parser: 3.0.1
-
execa@8.0.1:
dependencies:
cross-spawn: 7.0.6
@@ -18537,45 +19688,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- expect-type@1.2.1: {}
-
- express-rate-limit@7.5.0(express@5.1.0):
- dependencies:
- express: 5.1.0
-
- express@5.1.0:
- dependencies:
- accepts: 2.0.0
- body-parser: 2.2.0
- content-disposition: 1.0.0
- content-type: 1.0.5
- cookie: 0.7.2
- cookie-signature: 1.2.2
- debug: 4.4.0(supports-color@5.5.0)
- encodeurl: 2.0.0
- escape-html: 1.0.3
- etag: 1.8.1
- finalhandler: 2.1.0
- fresh: 2.0.0
- http-errors: 2.0.0
- merge-descriptors: 2.0.0
- mime-types: 3.0.1
- on-finished: 2.4.1
- once: 1.4.0
- parseurl: 1.3.3
- proxy-addr: 2.0.7
- qs: 6.14.0
- range-parser: 1.2.1
- router: 2.2.0
- send: 1.2.0
- serve-static: 2.2.0
- statuses: 2.0.1
- type-is: 2.0.1
- vary: 1.1.2
- transitivePeerDependencies:
- - supports-color
+ expect-type@1.2.2: {}
- exsolve@1.0.5: {}
+ exsolve@1.0.8: {}
extend-shallow@2.0.1:
dependencies:
@@ -18606,12 +19721,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- family@0.1.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(wagmi@2.15.2(@tanstack/query-core@5.75.7)(@tanstack/react-query@5.75.7(react@19.1.0))(@types/react@19.1.3)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)):
+ family@0.1.4(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76))(wagmi@2.15.2(@tanstack/query-core@5.90.10)(@tanstack/react-query@5.90.10(react@19.2.0))(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76))(zod@3.25.76)):
optionalDependencies:
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- viem: 2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
- wagmi: 2.15.2(@tanstack/query-core@5.75.7)(@tanstack/react-query@5.75.7(react@19.1.0))(@types/react@19.1.3)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ wagmi: 2.15.2(@tanstack/query-core@5.90.10)(@tanstack/react-query@5.90.10(react@19.2.0))(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76))(zod@3.25.76)
fast-check@3.23.2:
dependencies:
@@ -18627,7 +19742,7 @@ snapshots:
fast-diff@1.3.0: {}
- fast-equals@5.2.2: {}
+ fast-equals@5.3.3: {}
fast-glob@2.2.7:
dependencies:
@@ -18656,19 +19771,23 @@ snapshots:
fast-safe-stringify@2.1.1: {}
- fast-uri@3.0.6: {}
+ fast-uri@3.1.0: {}
- fast-xml-parser@4.4.1:
+ fast-xml-parser@4.5.3:
dependencies:
strnum: 1.1.2
+ fast-xml-parser@5.2.5:
+ dependencies:
+ strnum: 2.1.1
+
fastq@1.19.1:
dependencies:
reusify: 1.1.0
- fdir@6.4.4(picomatch@4.0.2):
+ fdir@6.5.0(picomatch@4.0.3):
optionalDependencies:
- picomatch: 4.0.2
+ picomatch: 4.0.3
figures@6.1.0:
dependencies:
@@ -18695,17 +19814,6 @@ snapshots:
filter-obj@1.1.0: {}
- finalhandler@2.1.0:
- dependencies:
- debug: 4.4.0(supports-color@5.5.0)
- encodeurl: 2.0.0
- escape-html: 1.0.3
- on-finished: 2.4.1
- parseurl: 1.3.3
- statuses: 2.0.1
- transitivePeerDependencies:
- - supports-color
-
find-up-simple@1.0.1: {}
find-up@3.0.0:
@@ -18729,7 +19837,7 @@ snapshots:
flatted@3.3.3: {}
- follow-redirects@1.15.9: {}
+ follow-redirects@1.15.11: {}
for-each@0.3.5:
dependencies:
@@ -18742,41 +19850,39 @@ snapshots:
cross-spawn: 7.0.6
signal-exit: 4.1.0
- form-data@2.5.3:
+ form-data@2.5.5:
dependencies:
asynckit: 0.4.0
combined-stream: 1.0.8
es-set-tostringtag: 2.1.0
+ hasown: 2.0.2
mime-types: 2.1.35
safe-buffer: 5.2.1
- form-data@4.0.2:
+ form-data@4.0.5:
dependencies:
asynckit: 0.4.0
combined-stream: 1.0.8
es-set-tostringtag: 2.1.0
+ hasown: 2.0.2
mime-types: 2.1.35
forwarded-parse@2.1.2: {}
- forwarded@0.2.0: {}
-
- fraction.js@4.3.7: {}
-
- fraction.js@5.2.2: {}
+ fraction.js@5.3.4: {}
fragment-cache@0.2.1:
dependencies:
map-cache: 0.2.2
- framer-motion@6.5.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ framer-motion@6.5.1(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
dependencies:
"@motionone/dom": 10.12.0
framesync: 6.0.1
hey-listen: 1.0.8
popmotion: 11.0.3
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
style-value-types: 5.0.0
tslib: 2.8.1
optionalDependencies:
@@ -18786,12 +19892,10 @@ snapshots:
dependencies:
tslib: 2.8.1
- fresh@2.0.0: {}
-
- fs-extra@11.3.0:
+ fs-extra@11.3.2:
dependencies:
graceful-fs: 4.2.11
- jsonfile: 6.1.0
+ jsonfile: 6.2.0
universalify: 2.0.1
fs.realpath@1.0.0: {}
@@ -18821,13 +19925,15 @@ snapshots:
- encoding
- supports-color
+ generator-function@2.0.1: {}
+
generic-pool@3.9.0: {}
gensync@1.0.0-beta.2: {}
get-caller-file@2.0.5: {}
- get-east-asian-width@1.3.0: {}
+ get-east-asian-width@1.4.0: {}
get-intrinsic@1.3.0:
dependencies:
@@ -18851,7 +19957,7 @@ snapshots:
get-stream@8.0.1: {}
- get-tsconfig@4.10.0:
+ get-tsconfig@4.13.0:
dependencies:
resolve-pkg-maps: 1.0.0
@@ -18874,14 +19980,14 @@ snapshots:
glob-to-regexp@0.4.1: {}
- glob@11.0.2:
+ glob@11.1.0:
dependencies:
foreground-child: 3.3.1
- jackspeak: 4.1.0
- minimatch: 10.0.1
+ jackspeak: 4.1.1
+ minimatch: 10.1.1
minipass: 7.1.2
package-json-from-dist: 1.0.1
- path-scurry: 2.0.0
+ path-scurry: 2.0.1
glob@7.2.3:
dependencies:
@@ -18904,8 +20010,6 @@ snapshots:
dependencies:
ini: 2.0.0
- globals@11.12.0: {}
-
globals@14.0.0: {}
globals@15.15.0: {}
@@ -18939,12 +20043,12 @@ snapshots:
gopd@1.2.0: {}
- gql.tada@1.8.10(graphql@16.11.0)(typescript@5.7.3):
+ gql.tada@1.9.0(graphql@16.12.0)(typescript@5.7.3):
dependencies:
- "@0no-co/graphql.web": 1.1.2(graphql@16.11.0)
- "@0no-co/graphqlsp": 1.12.16(graphql@16.11.0)(typescript@5.7.3)
- "@gql.tada/cli-utils": 1.6.3(@0no-co/graphqlsp@1.12.16(graphql@16.11.0)(typescript@5.7.3))(graphql@16.11.0)(typescript@5.7.3)
- "@gql.tada/internal": 1.0.8(graphql@16.11.0)(typescript@5.7.3)
+ "@0no-co/graphql.web": 1.2.0(graphql@16.12.0)
+ "@0no-co/graphqlsp": 1.15.1(graphql@16.12.0)(typescript@5.7.3)
+ "@gql.tada/cli-utils": 1.7.2(@0no-co/graphqlsp@1.15.1(graphql@16.12.0)(typescript@5.7.3))(graphql@16.12.0)(typescript@5.7.3)
+ "@gql.tada/internal": 1.0.8(graphql@16.12.0)(typescript@5.7.3)
typescript: 5.7.3
transitivePeerDependencies:
- "@gql.tada/svelte-support"
@@ -18962,12 +20066,12 @@ snapshots:
graphemer@1.4.0: {}
- graphql-request@7.2.0(graphql@16.11.0):
+ graphql-request@7.3.4(graphql@16.12.0):
dependencies:
- "@graphql-typed-document-node/core": 3.2.0(graphql@16.11.0)
- graphql: 16.11.0
+ "@graphql-typed-document-node/core": 3.2.0(graphql@16.12.0)
+ graphql: 16.12.0
- graphql@16.11.0: {}
+ graphql@16.12.0: {}
gtoken@7.1.0:
dependencies:
@@ -18977,14 +20081,14 @@ snapshots:
- encoding
- supports-color
- h3@1.15.3:
+ h3@1.15.4:
dependencies:
cookie-es: 1.2.2
crossws: 0.3.5
defu: 6.1.4
destr: 2.0.5
iron-webcrypto: 1.2.1
- node-mock-http: 1.0.0
+ node-mock-http: 1.0.3
radix3: 1.1.2
ufo: 1.6.1
uncrypto: 0.1.3
@@ -19063,46 +20167,38 @@ snapshots:
html-entities@2.6.0: {}
- http-errors@2.0.0:
- dependencies:
- depd: 2.0.0
- inherits: 2.0.4
- setprototypeof: 1.2.0
- statuses: 2.0.1
- toidentifier: 1.0.1
-
http-proxy-agent@5.0.0:
dependencies:
"@tootallnate/once": 2.0.0
agent-base: 6.0.2
- debug: 4.4.0(supports-color@5.5.0)
+ debug: 4.4.3(supports-color@5.5.0)
transitivePeerDependencies:
- supports-color
http-proxy-agent@7.0.2:
dependencies:
- agent-base: 7.1.3
- debug: 4.4.0(supports-color@5.5.0)
+ agent-base: 7.1.4
+ debug: 4.4.3(supports-color@5.5.0)
transitivePeerDependencies:
- supports-color
https-proxy-agent@5.0.1:
dependencies:
agent-base: 6.0.2
- debug: 4.4.0(supports-color@5.5.0)
+ debug: 4.4.3(supports-color@5.5.0)
transitivePeerDependencies:
- supports-color
https-proxy-agent@7.0.6:
dependencies:
- agent-base: 7.1.3
- debug: 4.4.0(supports-color@5.5.0)
+ agent-base: 7.1.4
+ debug: 4.4.3(supports-color@5.5.0)
transitivePeerDependencies:
- supports-color
human-signals@5.0.0: {}
- humanize-duration@3.32.1: {}
+ humanize-duration@3.33.1: {}
husky@9.1.7: {}
@@ -19118,15 +20214,17 @@ snapshots:
ignore@5.3.2: {}
+ ignore@7.0.5: {}
+
import-fresh@3.3.1:
dependencies:
parent-module: 1.0.1
resolve-from: 4.0.0
- import-in-the-middle@1.14.0:
+ import-in-the-middle@1.15.0:
dependencies:
- acorn: 8.14.1
- acorn-import-attributes: 1.9.5(acorn@8.14.1)
+ acorn: 8.15.0
+ acorn-import-attributes: 1.9.5(acorn@8.15.0)
cjs-module-lexer: 1.4.3
module-details-from-path: 1.0.4
@@ -19137,11 +20235,11 @@ snapshots:
importx@0.5.2:
dependencies:
bundle-require: 5.1.0(esbuild@0.21.5)
- debug: 4.4.0(supports-color@5.5.0)
+ debug: 4.4.3(supports-color@5.5.0)
esbuild: 0.21.5
- jiti: 2.4.2
+ jiti: 2.6.1
pathe: 2.0.3
- tsx: 4.19.4
+ tsx: 4.20.6
transitivePeerDependencies:
- supports-color
@@ -19151,7 +20249,7 @@ snapshots:
indent-string@5.0.0: {}
- index-to-position@1.1.0: {}
+ index-to-position@1.2.0: {}
inflight@1.0.6:
dependencies:
@@ -19164,78 +20262,75 @@ snapshots:
ini@2.0.0: {}
- ink-big-text@2.0.0(ink@5.2.1(@types/react@19.1.3)(bufferutil@4.0.9)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1):
+ ink-big-text@2.0.0(ink@6.5.1(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(utf-8-validate@5.0.10))(react@19.2.0):
dependencies:
- cfonts: 3.3.0
- ink: 5.2.1(@types/react@19.1.3)(bufferutil@4.0.9)(react@18.3.1)(utf-8-validate@5.0.10)
+ cfonts: 3.3.1
+ ink: 6.5.1(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(utf-8-validate@5.0.10)
prop-types: 15.8.1
- react: 18.3.1
+ react: 19.2.0
- ink-gradient@3.0.0(ink@5.2.1(@types/react@19.1.3)(bufferutil@4.0.9)(react@18.3.1)(utf-8-validate@5.0.10)):
+ ink-gradient@3.0.0(ink@6.5.1(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(utf-8-validate@5.0.10)):
dependencies:
"@types/gradient-string": 1.1.6
gradient-string: 2.0.2
- ink: 5.2.1(@types/react@19.1.3)(bufferutil@4.0.9)(react@18.3.1)(utf-8-validate@5.0.10)
+ ink: 6.5.1(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(utf-8-validate@5.0.10)
prop-types: 15.8.1
- strip-ansi: 7.1.0
+ strip-ansi: 7.1.2
- ink-select-input@6.2.0(ink@5.2.1(@types/react@19.1.3)(bufferutil@4.0.9)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1):
+ ink-select-input@6.2.0(ink@6.5.1(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(utf-8-validate@5.0.10))(react@19.2.0):
dependencies:
figures: 6.1.0
- ink: 5.2.1(@types/react@19.1.3)(bufferutil@4.0.9)(react@18.3.1)(utf-8-validate@5.0.10)
- react: 18.3.1
+ ink: 6.5.1(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(utf-8-validate@5.0.10)
+ react: 19.2.0
to-rotated: 1.0.0
- ink-spinner@5.0.0(ink@5.2.1(@types/react@19.1.3)(bufferutil@4.0.9)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1):
+ ink-spinner@5.0.0(ink@6.5.1(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(utf-8-validate@5.0.10))(react@19.2.0):
dependencies:
cli-spinners: 2.9.2
- ink: 5.2.1(@types/react@19.1.3)(bufferutil@4.0.9)(react@18.3.1)(utf-8-validate@5.0.10)
- react: 18.3.1
+ ink: 6.5.1(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(utf-8-validate@5.0.10)
+ react: 19.2.0
- ink-text-input@6.0.0(ink@5.2.1(@types/react@19.1.3)(bufferutil@4.0.9)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1):
+ ink-text-input@6.0.0(ink@6.5.1(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(utf-8-validate@5.0.10))(react@19.2.0):
dependencies:
- chalk: 5.4.1
- ink: 5.2.1(@types/react@19.1.3)(bufferutil@4.0.9)(react@18.3.1)(utf-8-validate@5.0.10)
- react: 18.3.1
+ chalk: 5.6.2
+ ink: 6.5.1(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(utf-8-validate@5.0.10)
+ react: 19.2.0
type-fest: 4.41.0
- ink@5.2.1(@types/react@19.1.3)(bufferutil@4.0.9)(react@18.3.1)(utf-8-validate@5.0.10):
+ ink@6.5.1(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(utf-8-validate@5.0.10):
dependencies:
- "@alcalzone/ansi-tokenize": 0.1.3
- ansi-escapes: 7.0.0
- ansi-styles: 6.2.1
+ "@alcalzone/ansi-tokenize": 0.2.2
+ ansi-escapes: 7.2.0
+ ansi-styles: 6.2.3
auto-bind: 5.0.1
- chalk: 5.4.1
+ chalk: 5.6.2
cli-boxes: 3.0.0
cli-cursor: 4.0.0
- cli-truncate: 4.0.0
+ cli-truncate: 5.1.1
code-excerpt: 4.0.0
- es-toolkit: 1.37.2
+ es-toolkit: 1.42.0
indent-string: 5.0.0
- is-in-ci: 1.0.0
+ is-in-ci: 2.0.0
patch-console: 2.0.0
- react: 18.3.1
- react-reconciler: 0.29.2(react@18.3.1)
- scheduler: 0.23.2
+ react: 19.2.0
+ react-reconciler: 0.33.0(react@19.2.0)
signal-exit: 3.0.7
- slice-ansi: 7.1.0
+ slice-ansi: 7.1.2
stack-utils: 2.0.6
- string-width: 7.2.0
+ string-width: 8.1.0
type-fest: 4.41.0
widest-line: 5.0.0
- wrap-ansi: 9.0.0
- ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ wrap-ansi: 9.0.2
+ ws: 8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)
yoga-layout: 3.2.1
optionalDependencies:
- "@types/react": 19.1.3
+ "@types/react": 19.2.6
transitivePeerDependencies:
- bufferutil
- utf-8-validate
internmap@2.0.3: {}
- ipaddr.js@1.9.1: {}
-
iron-webcrypto@1.2.1: {}
irregular-plurals@3.5.0: {}
@@ -19297,13 +20392,14 @@ snapshots:
is-fullwidth-code-point@4.0.0: {}
- is-fullwidth-code-point@5.0.0:
+ is-fullwidth-code-point@5.1.0:
dependencies:
- get-east-asian-width: 1.3.0
+ get-east-asian-width: 1.4.0
- is-generator-function@1.1.0:
+ is-generator-function@1.1.2:
dependencies:
call-bound: 1.0.4
+ generator-function: 2.0.1
get-proto: 1.0.1
has-tostringtag: 1.0.2
safe-regex-test: 1.1.0
@@ -19316,7 +20412,7 @@ snapshots:
dependencies:
is-extglob: 2.1.1
- is-in-ci@1.0.0: {}
+ is-in-ci@2.0.0: {}
is-installed-globally@0.4.0:
dependencies:
@@ -19341,8 +20437,6 @@ snapshots:
is-potential-custom-element-name@1.0.1: {}
- is-promise@4.0.0: {}
-
is-regex@1.2.1:
dependencies:
call-bound: 1.0.4
@@ -19368,6 +20462,8 @@ snapshots:
isarray@1.0.0: {}
+ isarray@2.0.5: {}
+
isexe@2.0.0: {}
isobject@2.1.0:
@@ -19387,11 +20483,15 @@ snapshots:
dependencies:
ws: 8.18.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
- isows@1.0.6(ws@8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)):
+ isows@1.0.7(ws@8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)):
+ dependencies:
+ ws: 8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+
+ isows@1.0.7(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)):
dependencies:
- ws: 8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ ws: 8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)
- jackspeak@4.1.0:
+ jackspeak@4.1.1:
dependencies:
"@isaacs/cliui": 8.0.2
@@ -19399,25 +20499,25 @@ snapshots:
jest-worker@27.5.1:
dependencies:
- "@types/node": 22.15.17
+ "@types/node": 22.19.1
merge-stream: 2.0.0
supports-color: 8.1.1
- jiti@2.4.2: {}
+ jiti@2.6.1: {}
jju@1.4.0: {}
- jose@6.0.11: {}
+ jose@6.1.2: {}
joycon@3.1.1: {}
- js-sdsl@4.4.2: {}
-
js-sha3@0.8.0: {}
js-tokens@4.0.0: {}
- js-yaml@4.1.0:
+ js-tokens@9.0.1: {}
+
+ js-yaml@4.1.1:
dependencies:
argparse: 2.0.1
@@ -19425,14 +20525,14 @@ snapshots:
jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10):
dependencies:
- cssstyle: 4.3.1
+ cssstyle: 4.6.0
data-urls: 5.0.0
- decimal.js: 10.5.0
+ decimal.js: 10.6.0
html-encoding-sniffer: 4.0.0
http-proxy-agent: 7.0.2
https-proxy-agent: 7.0.6
is-potential-custom-element-name: 1.0.1
- nwsapi: 2.2.20
+ nwsapi: 2.2.22
parse5: 7.3.0
rrweb-cssom: 0.8.0
saxes: 6.0.0
@@ -19443,7 +20543,7 @@ snapshots:
whatwg-encoding: 3.1.1
whatwg-mimetype: 4.0.0
whatwg-url: 14.2.0
- ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ ws: 8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)
xml-name-validator: 5.0.0
transitivePeerDependencies:
- bufferutil
@@ -19454,7 +20554,7 @@ snapshots:
json-bigint@1.0.0:
dependencies:
- bignumber.js: 9.3.0
+ bignumber.js: 9.3.1
json-buffer@3.0.1: {}
@@ -19485,7 +20585,7 @@ snapshots:
jsonc-parser@3.3.1: {}
- jsonfile@6.1.0:
+ jsonfile@6.2.0:
dependencies:
universalify: 2.0.1
optionalDependencies:
@@ -19537,50 +20637,54 @@ snapshots:
prelude-ls: 1.2.1
type-check: 0.4.0
- lightningcss-darwin-arm64@1.29.2:
+ lightningcss-android-arm64@1.30.2:
+ optional: true
+
+ lightningcss-darwin-arm64@1.30.2:
optional: true
- lightningcss-darwin-x64@1.29.2:
+ lightningcss-darwin-x64@1.30.2:
optional: true
- lightningcss-freebsd-x64@1.29.2:
+ lightningcss-freebsd-x64@1.30.2:
optional: true
- lightningcss-linux-arm-gnueabihf@1.29.2:
+ lightningcss-linux-arm-gnueabihf@1.30.2:
optional: true
- lightningcss-linux-arm64-gnu@1.29.2:
+ lightningcss-linux-arm64-gnu@1.30.2:
optional: true
- lightningcss-linux-arm64-musl@1.29.2:
+ lightningcss-linux-arm64-musl@1.30.2:
optional: true
- lightningcss-linux-x64-gnu@1.29.2:
+ lightningcss-linux-x64-gnu@1.30.2:
optional: true
- lightningcss-linux-x64-musl@1.29.2:
+ lightningcss-linux-x64-musl@1.30.2:
optional: true
- lightningcss-win32-arm64-msvc@1.29.2:
+ lightningcss-win32-arm64-msvc@1.30.2:
optional: true
- lightningcss-win32-x64-msvc@1.29.2:
+ lightningcss-win32-x64-msvc@1.30.2:
optional: true
- lightningcss@1.29.2:
+ lightningcss@1.30.2:
dependencies:
- detect-libc: 2.0.4
+ detect-libc: 2.1.2
optionalDependencies:
- lightningcss-darwin-arm64: 1.29.2
- lightningcss-darwin-x64: 1.29.2
- lightningcss-freebsd-x64: 1.29.2
- lightningcss-linux-arm-gnueabihf: 1.29.2
- lightningcss-linux-arm64-gnu: 1.29.2
- lightningcss-linux-arm64-musl: 1.29.2
- lightningcss-linux-x64-gnu: 1.29.2
- lightningcss-linux-x64-musl: 1.29.2
- lightningcss-win32-arm64-msvc: 1.29.2
- lightningcss-win32-x64-msvc: 1.29.2
+ lightningcss-android-arm64: 1.30.2
+ lightningcss-darwin-arm64: 1.30.2
+ lightningcss-darwin-x64: 1.30.2
+ lightningcss-freebsd-x64: 1.30.2
+ lightningcss-linux-arm-gnueabihf: 1.30.2
+ lightningcss-linux-arm64-gnu: 1.30.2
+ lightningcss-linux-arm64-musl: 1.30.2
+ lightningcss-linux-x64-gnu: 1.30.2
+ lightningcss-linux-x64-musl: 1.30.2
+ lightningcss-win32-arm64-msvc: 1.30.2
+ lightningcss-win32-x64-msvc: 1.30.2
lilconfig@3.1.3: {}
@@ -19588,16 +20692,16 @@ snapshots:
lint-staged@15.5.2:
dependencies:
- chalk: 5.4.1
+ chalk: 5.6.2
commander: 13.1.0
- debug: 4.4.0(supports-color@5.5.0)
+ debug: 4.4.3(supports-color@5.5.0)
execa: 8.0.1
lilconfig: 3.1.3
listr2: 8.3.3
micromatch: 4.0.8
pidtree: 0.6.0
string-argv: 0.3.2
- yaml: 2.7.1
+ yaml: 2.8.1
transitivePeerDependencies:
- supports-color
@@ -19608,33 +20712,33 @@ snapshots:
eventemitter3: 5.0.1
log-update: 6.1.0
rfdc: 1.4.1
- wrap-ansi: 9.0.0
+ wrap-ansi: 9.0.2
- lit-element@4.2.0:
+ lit-element@4.2.1:
dependencies:
- "@lit-labs/ssr-dom-shim": 1.3.0
- "@lit/reactive-element": 2.1.0
- lit-html: 3.3.0
+ "@lit-labs/ssr-dom-shim": 1.4.0
+ "@lit/reactive-element": 2.1.1
+ lit-html: 3.3.1
- lit-html@3.3.0:
+ lit-html@3.3.1:
dependencies:
"@types/trusted-types": 2.0.7
lit@3.1.0:
dependencies:
- "@lit/reactive-element": 2.1.0
- lit-element: 4.2.0
- lit-html: 3.3.0
+ "@lit/reactive-element": 2.1.1
+ lit-element: 4.2.1
+ lit-html: 3.3.1
load-tsconfig@0.2.5: {}
- loader-runner@4.3.0: {}
+ loader-runner@4.3.1: {}
- local-pkg@1.1.1:
+ local-pkg@1.1.2:
dependencies:
- mlly: 1.7.4
- pkg-types: 2.1.0
- quansync: 0.2.10
+ mlly: 1.8.0
+ pkg-types: 2.3.0
+ quansync: 0.2.11
locate-path@3.0.0:
dependencies:
@@ -19667,11 +20771,11 @@ snapshots:
log-update@6.1.0:
dependencies:
- ansi-escapes: 7.0.0
+ ansi-escapes: 7.2.0
cli-cursor: 5.0.0
- slice-ansi: 7.1.0
- strip-ansi: 7.1.0
- wrap-ansi: 9.0.0
+ slice-ansi: 7.1.2
+ strip-ansi: 7.1.2
+ wrap-ansi: 9.0.2
long@5.3.2: {}
@@ -19679,7 +20783,7 @@ snapshots:
dependencies:
js-tokens: 4.0.0
- loupe@3.1.3: {}
+ loupe@3.2.1: {}
lower-case@2.0.2:
dependencies:
@@ -19689,7 +20793,9 @@ snapshots:
lru-cache@10.4.3: {}
- lru-cache@11.1.0: {}
+ lru-cache@11.0.2: {}
+
+ lru-cache@11.2.2: {}
lru-cache@5.1.1:
dependencies:
@@ -19699,9 +20805,9 @@ snapshots:
dependencies:
yallist: 4.0.0
- lucide-react@0.475.0(react@19.1.0):
+ lucide-react@0.475.0(react@19.2.0):
dependencies:
- react: 19.1.0
+ react: 19.2.0
lz-string@1.5.0: {}
@@ -19709,9 +20815,9 @@ snapshots:
magic-bytes.js@1.12.1: {}
- magic-string@0.30.17:
+ magic-string@0.30.21:
dependencies:
- "@jridgewell/sourcemap-codec": 1.5.0
+ "@jridgewell/sourcemap-codec": 1.5.5
make-dir@3.1.0:
dependencies:
@@ -19727,24 +20833,20 @@ snapshots:
math-intrinsics@1.1.0: {}
- mathjs@14.5.2:
+ mathjs@14.9.1:
dependencies:
- "@babel/runtime": 7.27.1
- complex.js: 2.4.2
- decimal.js: 10.5.0
+ "@babel/runtime": 7.28.4
+ complex.js: 2.4.3
+ decimal.js: 10.6.0
escape-latex: 1.2.0
- fraction.js: 5.2.2
+ fraction.js: 5.3.4
javascript-natural-sort: 0.7.1
seedrandom: 3.0.5
tiny-emitter: 2.1.0
typed-function: 4.2.1
- media-typer@1.1.0: {}
-
memorystream@0.3.1: {}
- merge-descriptors@2.0.0: {}
-
merge-stream@2.0.0: {}
merge2@1.4.1: {}
@@ -19776,16 +20878,10 @@ snapshots:
mime-db@1.52.0: {}
- mime-db@1.54.0: {}
-
mime-types@2.1.35:
dependencies:
mime-db: 1.52.0
- mime-types@3.0.1:
- dependencies:
- mime-db: 1.54.0
-
mime@3.0.0: {}
mimic-fn@1.2.0: {}
@@ -19804,34 +20900,30 @@ snapshots:
minimalistic-crypto-utils@1.0.1: {}
- minimatch@10.0.1:
+ minimatch@10.0.3:
dependencies:
- brace-expansion: 2.0.1
+ "@isaacs/brace-expansion": 5.0.0
- minimatch@3.0.8:
+ minimatch@10.1.1:
dependencies:
- brace-expansion: 1.1.11
+ "@isaacs/brace-expansion": 5.0.0
minimatch@3.1.2:
dependencies:
- brace-expansion: 1.1.11
+ brace-expansion: 1.1.12
minimatch@5.1.6:
dependencies:
- brace-expansion: 2.0.1
+ brace-expansion: 2.0.2
minimatch@9.0.5:
dependencies:
- brace-expansion: 2.0.1
+ brace-expansion: 2.0.2
minimist@1.2.8: {}
minipass@7.1.2: {}
- minizlib@3.0.2:
- dependencies:
- minipass: 7.1.2
-
mipd@0.0.7(typescript@5.7.3):
optionalDependencies:
typescript: 5.7.3
@@ -19841,11 +20933,9 @@ snapshots:
for-in: 1.0.2
is-extendable: 1.0.1
- mkdirp@3.0.1: {}
-
- mlly@1.7.4:
+ mlly@1.8.0:
dependencies:
- acorn: 8.14.1
+ acorn: 8.15.0
pathe: 2.0.3
pkg-types: 1.3.1
ufo: 1.6.1
@@ -19866,7 +20956,7 @@ snapshots:
nanoid@3.3.11: {}
- nanoid@5.1.5: {}
+ nanoid@5.1.6: {}
nanomatch@1.2.13:
dependencies:
@@ -19884,22 +20974,20 @@ snapshots:
transitivePeerDependencies:
- supports-color
- napi-postinstall@0.2.3: {}
+ napi-postinstall@0.3.4: {}
- native-fetch@4.0.2(undici@6.21.2):
+ native-fetch@4.0.2(undici@6.22.0):
dependencies:
- undici: 6.21.2
+ undici: 6.22.0
natural-compare@1.4.0: {}
- negotiator@1.0.0: {}
-
neo-async@2.6.2: {}
- next-themes@0.4.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ next-themes@0.4.6(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
dependencies:
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
no-case@3.0.4:
dependencies:
@@ -19912,7 +21000,7 @@ snapshots:
dependencies:
clone: 2.1.2
- node-fetch-native@1.6.6: {}
+ node-fetch-native@1.6.7: {}
node-fetch@2.7.0:
dependencies:
@@ -19920,14 +21008,14 @@ snapshots:
node-gyp-build@4.8.4: {}
- node-mock-http@1.0.0: {}
+ node-mock-http@1.0.3: {}
- node-releases@2.0.19: {}
+ node-releases@2.0.27: {}
normalize-package-data@6.0.2:
dependencies:
hosted-git-info: 7.0.2
- semver: 7.7.1
+ semver: 7.7.3
validate-npm-package-license: 3.0.4
normalize-path@3.0.0: {}
@@ -19940,11 +21028,11 @@ snapshots:
number-is-nan@1.0.1: {}
- nwsapi@2.2.20: {}
+ nwsapi@2.2.22: {}
obj-multiplex@1.0.0:
dependencies:
- end-of-stream: 1.4.4
+ end-of-stream: 1.4.5
once: 1.4.0
readable-stream: 2.3.8
@@ -19956,8 +21044,6 @@ snapshots:
define-property: 0.2.5
kind-of: 3.2.2
- object-inspect@1.13.4: {}
-
object-visit@1.0.1:
dependencies:
isobject: 3.0.1
@@ -19966,10 +21052,10 @@ snapshots:
dependencies:
isobject: 3.0.1
- ofetch@1.4.1:
+ ofetch@1.5.1:
dependencies:
destr: 2.0.5
- node-fetch-native: 1.6.6
+ node-fetch-native: 1.6.7
ufo: 1.6.1
ohash@1.1.6: {}
@@ -19978,10 +21064,6 @@ snapshots:
on-exit-leak-free@2.1.2: {}
- on-finished@2.4.1:
- dependencies:
- ee-first: 1.1.1
-
once@1.4.0:
dependencies:
wrappy: 1.0.2
@@ -20024,14 +21106,28 @@ snapshots:
os-tmpdir@1.0.2: {}
- ox@0.6.7(typescript@5.7.3)(zod@3.24.4):
+ ox@0.6.7(typescript@5.7.3)(zod@3.25.76):
dependencies:
- "@adraffy/ens-normalize": 1.11.0
+ "@adraffy/ens-normalize": 1.11.1
"@noble/curves": 1.8.1
- "@noble/hashes": 1.8.0
+ "@noble/hashes": 1.7.1
+ "@scure/bip32": 1.6.2
+ "@scure/bip39": 1.5.4
+ abitype: 1.0.8(typescript@5.7.3)(zod@3.25.76)
+ eventemitter3: 5.0.1
+ optionalDependencies:
+ typescript: 5.7.3
+ transitivePeerDependencies:
+ - zod
+
+ ox@0.6.7(typescript@5.7.3)(zod@4.1.12):
+ dependencies:
+ "@adraffy/ens-normalize": 1.11.1
+ "@noble/curves": 1.8.1
+ "@noble/hashes": 1.7.1
"@scure/bip32": 1.6.2
"@scure/bip39": 1.5.4
- abitype: 1.0.8(typescript@5.7.3)(zod@3.24.4)
+ abitype: 1.0.8(typescript@5.7.3)(zod@4.1.12)
eventemitter3: 5.0.1
optionalDependencies:
typescript: 5.7.3
@@ -20040,9 +21136,9 @@ snapshots:
ox@0.6.9(typescript@5.7.3)(zod@3.22.4):
dependencies:
- "@adraffy/ens-normalize": 1.11.0
+ "@adraffy/ens-normalize": 1.11.1
"@noble/curves": 1.8.2
- "@noble/hashes": 1.8.0
+ "@noble/hashes": 1.7.2
"@scure/bip32": 1.6.2
"@scure/bip39": 1.5.4
abitype: 1.0.8(typescript@5.7.3)(zod@3.22.4)
@@ -20052,14 +21148,43 @@ snapshots:
transitivePeerDependencies:
- zod
- ox@0.6.9(typescript@5.7.3)(zod@3.24.4):
+ ox@0.6.9(typescript@5.7.3)(zod@3.25.76):
dependencies:
- "@adraffy/ens-normalize": 1.11.0
+ "@adraffy/ens-normalize": 1.11.1
"@noble/curves": 1.8.2
- "@noble/hashes": 1.8.0
+ "@noble/hashes": 1.7.2
+ "@scure/bip32": 1.6.2
+ "@scure/bip39": 1.5.4
+ abitype: 1.0.8(typescript@5.7.3)(zod@3.25.76)
+ eventemitter3: 5.0.1
+ optionalDependencies:
+ typescript: 5.7.3
+ transitivePeerDependencies:
+ - zod
+
+ ox@0.6.9(typescript@5.7.3)(zod@4.1.12):
+ dependencies:
+ "@adraffy/ens-normalize": 1.11.1
+ "@noble/curves": 1.8.2
+ "@noble/hashes": 1.7.2
"@scure/bip32": 1.6.2
"@scure/bip39": 1.5.4
- abitype: 1.0.8(typescript@5.7.3)(zod@3.24.4)
+ abitype: 1.0.8(typescript@5.7.3)(zod@4.1.12)
+ eventemitter3: 5.0.1
+ optionalDependencies:
+ typescript: 5.7.3
+ transitivePeerDependencies:
+ - zod
+
+ ox@0.9.6(typescript@5.7.3)(zod@4.1.12):
+ dependencies:
+ "@adraffy/ens-normalize": 1.11.1
+ "@noble/ciphers": 1.3.0
+ "@noble/curves": 1.9.1
+ "@noble/hashes": 1.8.0
+ "@scure/bip32": 1.7.0
+ "@scure/bip39": 1.6.0
+ abitype: 1.1.0(typescript@5.7.3)(zod@4.1.12)
eventemitter3: 5.0.1
optionalDependencies:
typescript: 5.7.3
@@ -20102,7 +21227,7 @@ snapshots:
dependencies:
p-limit: 3.1.0
- p-map@7.0.3: {}
+ p-map@7.0.4: {}
p-try@2.2.0: {}
@@ -20115,35 +21240,33 @@ snapshots:
parse-json@5.2.0:
dependencies:
"@babel/code-frame": 7.27.1
- error-ex: 1.3.2
+ error-ex: 1.3.4
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
parse-json@8.3.0:
dependencies:
"@babel/code-frame": 7.27.1
- index-to-position: 1.1.0
+ index-to-position: 1.2.0
type-fest: 4.41.0
parse5@7.3.0:
dependencies:
- entities: 6.0.0
-
- parseurl@1.3.3: {}
+ entities: 6.0.1
pascalcase@0.1.1: {}
- pastel@3.0.0(ink@5.2.1(@types/react@19.1.3)(bufferutil@4.0.9)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(zod@3.24.4):
+ pastel@3.0.0(ink@6.5.1(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(utf-8-validate@5.0.10))(react@19.2.0)(zod@4.1.12):
dependencies:
- "@inkjs/ui": 2.0.0(ink@5.2.1(@types/react@19.1.3)(bufferutil@4.0.9)(react@18.3.1)(utf-8-validate@5.0.10))
+ "@inkjs/ui": 2.0.0(ink@6.5.1(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(utf-8-validate@5.0.10))
commander: 12.1.0
- decamelize: 6.0.0
- ink: 5.2.1(@types/react@19.1.3)(bufferutil@4.0.9)(react@18.3.1)(utf-8-validate@5.0.10)
+ decamelize: 6.0.1
+ ink: 6.5.1(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(utf-8-validate@5.0.10)
plur: 5.1.0
- react: 18.3.1
+ react: 19.2.0
read-package-up: 11.0.0
- zod: 3.24.4
- zod-validation-error: 3.4.1(zod@3.24.4)
+ zod: 4.1.12
+ zod-validation-error: 3.5.4(zod@4.1.12)
patch-console@2.0.0: {}
@@ -20163,13 +21286,11 @@ snapshots:
path-parse@1.0.7: {}
- path-scurry@2.0.0:
+ path-scurry@2.0.1:
dependencies:
- lru-cache: 11.1.0
+ lru-cache: 11.2.2
minipass: 7.1.2
- path-to-regexp@8.2.0: {}
-
path-type@3.0.0:
dependencies:
pify: 3.0.0
@@ -20180,11 +21301,11 @@ snapshots:
pathe@2.0.3: {}
- pathval@2.0.0: {}
+ pathval@2.0.1: {}
pg-int8@1.0.1: {}
- pg-protocol@1.10.0: {}
+ pg-protocol@1.10.3: {}
pg-types@2.2.0:
dependencies:
@@ -20198,7 +21319,7 @@ snapshots:
picomatch@2.3.1: {}
- picomatch@4.0.2: {}
+ picomatch@4.0.3: {}
pidtree@0.6.0: {}
@@ -20217,7 +21338,7 @@ snapshots:
dependencies:
split2: 4.2.0
- pino-pretty@13.0.0:
+ pino-pretty@13.1.2:
dependencies:
colorette: 2.0.20
dateformat: 4.6.3
@@ -20228,10 +21349,10 @@ snapshots:
minimist: 1.2.8
on-exit-leak-free: 2.1.2
pino-abstract-transport: 2.0.0
- pump: 3.0.2
- secure-json-parse: 2.7.0
+ pump: 3.0.3
+ secure-json-parse: 4.1.0
sonic-boom: 4.2.0
- strip-json-comments: 3.1.1
+ strip-json-comments: 5.0.3
pino-std-serializers@4.0.0: {}
@@ -20251,32 +21372,30 @@ snapshots:
sonic-boom: 2.8.0
thread-stream: 0.15.2
- pino@9.6.0:
+ pino@9.14.0:
dependencies:
+ "@pinojs/redact": 0.4.0
atomic-sleep: 1.0.0
- fast-redact: 3.5.0
on-exit-leak-free: 2.1.2
pino-abstract-transport: 2.0.0
pino-std-serializers: 7.0.0
- process-warning: 4.0.1
+ process-warning: 5.0.0
quick-format-unescaped: 4.0.4
real-require: 0.2.0
safe-stable-stringify: 2.5.0
sonic-boom: 4.2.0
thread-stream: 3.1.0
- pkce-challenge@5.0.0: {}
-
pkg-types@1.3.1:
dependencies:
confbox: 0.1.8
- mlly: 1.7.4
+ mlly: 1.8.0
pathe: 2.0.3
- pkg-types@2.1.0:
+ pkg-types@2.3.0:
dependencies:
confbox: 0.2.2
- exsolve: 1.0.5
+ exsolve: 1.0.8
pathe: 2.0.3
pkg-up@3.1.0:
@@ -20304,7 +21423,7 @@ snapshots:
postcss-value-parser@4.2.0: {}
- postcss@8.5.3:
+ postcss@8.5.6:
dependencies:
nanoid: 3.3.11
picocolors: 1.1.1
@@ -20320,7 +21439,7 @@ snapshots:
dependencies:
xtend: 4.0.2
- preact@10.26.6: {}
+ preact@10.27.2: {}
prelude-ls@1.2.1: {}
@@ -20332,7 +21451,7 @@ snapshots:
dependencies:
fast-diff: 1.3.0
- prettier-plugin-tailwindcss@0.6.11(prettier@3.5.0):
+ prettier-plugin-tailwindcss@0.6.14(prettier@3.5.0):
dependencies:
prettier: 3.5.0
@@ -20350,7 +21469,7 @@ snapshots:
process-warning@1.0.0: {}
- process-warning@4.0.1: {}
+ process-warning@5.0.0: {}
prompts@2.4.2:
dependencies:
@@ -20365,7 +21484,7 @@ snapshots:
proto-list@1.2.4: {}
- protobufjs@7.5.3:
+ protobufjs@7.5.4:
dependencies:
"@protobufjs/aspromise": 1.1.2
"@protobufjs/base64": 1.1.2
@@ -20377,21 +21496,16 @@ snapshots:
"@protobufjs/path": 1.1.2
"@protobufjs/pool": 1.1.0
"@protobufjs/utf8": 1.1.0
- "@types/node": 22.15.17
+ "@types/node": 22.19.1
long: 5.3.2
- proxy-addr@2.0.7:
- dependencies:
- forwarded: 0.2.0
- ipaddr.js: 1.9.1
-
proxy-compare@2.6.0: {}
proxy-from-env@1.1.0: {}
- pump@3.0.2:
+ pump@3.0.3:
dependencies:
- end-of-stream: 1.4.4
+ end-of-stream: 1.4.5
once: 1.4.0
punycode@2.3.1: {}
@@ -20417,11 +21531,7 @@ snapshots:
pngjs: 5.0.0
yargs: 15.4.1
- qs@6.14.0:
- dependencies:
- side-channel: 1.1.0
-
- quansync@0.2.10: {}
+ quansync@0.2.11: {}
query-string@7.1.3:
dependencies:
@@ -20440,15 +21550,6 @@ snapshots:
dependencies:
safe-buffer: 5.2.1
- range-parser@1.2.1: {}
-
- raw-body@3.0.0:
- dependencies:
- bytes: 3.1.2
- http-errors: 2.0.0
- iconv-lite: 0.6.3
- unpipe: 1.0.0
-
rc@1.2.8:
dependencies:
deep-extend: 0.6.0
@@ -20456,10 +21557,10 @@ snapshots:
minimist: 1.2.8
strip-json-comments: 2.0.1
- react-dom@19.1.0(react@19.1.0):
+ react-dom@19.2.0(react@19.2.0):
dependencies:
- react: 19.1.0
- scheduler: 0.26.0
+ react: 19.2.0
+ scheduler: 0.27.0
react-is@16.13.1: {}
@@ -20467,82 +21568,77 @@ snapshots:
react-is@18.3.1: {}
- react-reconciler@0.29.2(react@18.3.1):
+ react-reconciler@0.33.0(react@19.2.0):
dependencies:
- loose-envify: 1.4.0
- react: 18.3.1
- scheduler: 0.23.2
+ react: 19.2.0
+ scheduler: 0.27.0
react-refresh@0.17.0: {}
- react-remove-scroll-bar@2.3.8(@types/react@19.1.3)(react@19.1.0):
+ react-remove-scroll-bar@2.3.8(@types/react@19.2.6)(react@19.2.0):
dependencies:
- react: 19.1.0
- react-style-singleton: 2.2.3(@types/react@19.1.3)(react@19.1.0)
+ react: 19.2.0
+ react-style-singleton: 2.2.3(@types/react@19.2.6)(react@19.2.0)
tslib: 2.8.1
optionalDependencies:
- "@types/react": 19.1.3
+ "@types/react": 19.2.6
- react-remove-scroll@2.6.3(@types/react@19.1.3)(react@19.1.0):
+ react-remove-scroll@2.7.1(@types/react@19.2.6)(react@19.2.0):
dependencies:
- react: 19.1.0
- react-remove-scroll-bar: 2.3.8(@types/react@19.1.3)(react@19.1.0)
- react-style-singleton: 2.2.3(@types/react@19.1.3)(react@19.1.0)
+ react: 19.2.0
+ react-remove-scroll-bar: 2.3.8(@types/react@19.2.6)(react@19.2.0)
+ react-style-singleton: 2.2.3(@types/react@19.2.6)(react@19.2.0)
tslib: 2.8.1
- use-callback-ref: 1.3.3(@types/react@19.1.3)(react@19.1.0)
- use-sidecar: 1.1.3(@types/react@19.1.3)(react@19.1.0)
+ use-callback-ref: 1.3.3(@types/react@19.2.6)(react@19.2.0)
+ use-sidecar: 1.1.3(@types/react@19.2.6)(react@19.2.0)
optionalDependencies:
- "@types/react": 19.1.3
+ "@types/react": 19.2.6
- react-router@7.6.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ react-router@7.9.6(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
dependencies:
cookie: 1.0.2
- react: 19.1.0
- set-cookie-parser: 2.7.1
+ react: 19.2.0
+ set-cookie-parser: 2.7.2
optionalDependencies:
- react-dom: 19.1.0(react@19.1.0)
+ react-dom: 19.2.0(react@19.2.0)
- react-smooth@4.0.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ react-smooth@4.0.4(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
dependencies:
- fast-equals: 5.2.2
+ fast-equals: 5.3.3
prop-types: 15.8.1
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- react-transition-group: 4.4.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ react-transition-group: 4.4.5(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- react-style-singleton@2.2.3(@types/react@19.1.3)(react@19.1.0):
+ react-style-singleton@2.2.3(@types/react@19.2.6)(react@19.2.0):
dependencies:
get-nonce: 1.0.1
- react: 19.1.0
+ react: 19.2.0
tslib: 2.8.1
optionalDependencies:
- "@types/react": 19.1.3
+ "@types/react": 19.2.6
- react-transition-group@4.4.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ react-transition-group@4.4.5(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
dependencies:
- "@babel/runtime": 7.27.1
+ "@babel/runtime": 7.28.4
dom-helpers: 5.2.1
loose-envify: 1.4.0
prop-types: 15.8.1
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
- react-transition-state@1.1.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ react-transition-state@1.1.5(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
dependencies:
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
- react-use-measure@2.1.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ react-use-measure@2.1.7(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
dependencies:
- react: 19.1.0
+ react: 19.2.0
optionalDependencies:
- react-dom: 19.1.0(react@19.1.0)
+ react-dom: 19.2.0(react@19.2.0)
- react@18.3.1:
- dependencies:
- loose-envify: 1.4.0
-
- react@19.1.0: {}
+ react@19.2.0: {}
read-package-up@11.0.0:
dependencies:
@@ -20588,15 +21684,15 @@ snapshots:
dependencies:
decimal.js-light: 2.5.1
- recharts@2.15.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ recharts@2.15.4(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
dependencies:
clsx: 2.1.1
eventemitter3: 4.0.7
lodash: 4.17.21
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
react-is: 18.3.1
- react-smooth: 4.0.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react-smooth: 4.0.4(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
recharts-scale: 0.4.5
tiny-invariant: 1.3.3
victory-vendor: 36.9.2
@@ -20638,9 +21734,9 @@ snapshots:
require-in-the-middle@7.5.2:
dependencies:
- debug: 4.4.0(supports-color@5.5.0)
+ debug: 4.4.3(supports-color@5.5.0)
module-details-from-path: 1.0.4
- resolve: 1.22.10
+ resolve: 1.22.11
transitivePeerDependencies:
- supports-color
@@ -20654,7 +21750,7 @@ snapshots:
resolve-url@0.2.1: {}
- resolve@1.22.10:
+ resolve@1.22.11:
dependencies:
is-core-module: 2.16.1
path-parse: 1.0.7
@@ -20679,7 +21775,7 @@ snapshots:
retry-request@7.0.2:
dependencies:
- "@types/request": 2.48.12
+ "@types/request": 2.48.13
extend: 3.0.2
teeny-request: 9.0.0
transitivePeerDependencies:
@@ -20692,52 +21788,40 @@ snapshots:
rfdc@1.4.1: {}
- rollup@4.40.2:
+ rollup@4.53.3:
dependencies:
- "@types/estree": 1.0.7
+ "@types/estree": 1.0.8
optionalDependencies:
- "@rollup/rollup-android-arm-eabi": 4.40.2
- "@rollup/rollup-android-arm64": 4.40.2
- "@rollup/rollup-darwin-arm64": 4.40.2
- "@rollup/rollup-darwin-x64": 4.40.2
- "@rollup/rollup-freebsd-arm64": 4.40.2
- "@rollup/rollup-freebsd-x64": 4.40.2
- "@rollup/rollup-linux-arm-gnueabihf": 4.40.2
- "@rollup/rollup-linux-arm-musleabihf": 4.40.2
- "@rollup/rollup-linux-arm64-gnu": 4.40.2
- "@rollup/rollup-linux-arm64-musl": 4.40.2
- "@rollup/rollup-linux-loongarch64-gnu": 4.40.2
- "@rollup/rollup-linux-powerpc64le-gnu": 4.40.2
- "@rollup/rollup-linux-riscv64-gnu": 4.40.2
- "@rollup/rollup-linux-riscv64-musl": 4.40.2
- "@rollup/rollup-linux-s390x-gnu": 4.40.2
- "@rollup/rollup-linux-x64-gnu": 4.40.2
- "@rollup/rollup-linux-x64-musl": 4.40.2
- "@rollup/rollup-win32-arm64-msvc": 4.40.2
- "@rollup/rollup-win32-ia32-msvc": 4.40.2
- "@rollup/rollup-win32-x64-msvc": 4.40.2
+ "@rollup/rollup-android-arm-eabi": 4.53.3
+ "@rollup/rollup-android-arm64": 4.53.3
+ "@rollup/rollup-darwin-arm64": 4.53.3
+ "@rollup/rollup-darwin-x64": 4.53.3
+ "@rollup/rollup-freebsd-arm64": 4.53.3
+ "@rollup/rollup-freebsd-x64": 4.53.3
+ "@rollup/rollup-linux-arm-gnueabihf": 4.53.3
+ "@rollup/rollup-linux-arm-musleabihf": 4.53.3
+ "@rollup/rollup-linux-arm64-gnu": 4.53.3
+ "@rollup/rollup-linux-arm64-musl": 4.53.3
+ "@rollup/rollup-linux-loong64-gnu": 4.53.3
+ "@rollup/rollup-linux-ppc64-gnu": 4.53.3
+ "@rollup/rollup-linux-riscv64-gnu": 4.53.3
+ "@rollup/rollup-linux-riscv64-musl": 4.53.3
+ "@rollup/rollup-linux-s390x-gnu": 4.53.3
+ "@rollup/rollup-linux-x64-gnu": 4.53.3
+ "@rollup/rollup-linux-x64-musl": 4.53.3
+ "@rollup/rollup-openharmony-arm64": 4.53.3
+ "@rollup/rollup-win32-arm64-msvc": 4.53.3
+ "@rollup/rollup-win32-ia32-msvc": 4.53.3
+ "@rollup/rollup-win32-x64-gnu": 4.53.3
+ "@rollup/rollup-win32-x64-msvc": 4.53.3
fsevents: 2.3.3
- router@2.2.0:
- dependencies:
- debug: 4.4.0(supports-color@5.5.0)
- depd: 2.0.0
- is-promise: 4.0.0
- parseurl: 1.3.3
- path-to-regexp: 8.2.0
- transitivePeerDependencies:
- - supports-color
-
rrweb-cssom@0.8.0: {}
run-parallel@1.2.0:
dependencies:
queue-microtask: 1.2.3
- rustbn-wasm@0.4.0:
- dependencies:
- "@scure/base": 1.2.5
-
safe-buffer@5.1.2: {}
safe-buffer@5.2.1: {}
@@ -20760,13 +21844,9 @@ snapshots:
dependencies:
xmlchars: 2.2.0
- scheduler@0.23.2:
- dependencies:
- loose-envify: 1.4.0
-
- scheduler@0.26.0: {}
+ scheduler@0.27.0: {}
- schema-utils@4.3.2:
+ schema-utils@4.3.3:
dependencies:
"@types/json-schema": 7.0.15
ajv: 8.17.1
@@ -20775,7 +21855,7 @@ snapshots:
scrypt-js@3.0.1: {}
- secure-json-parse@2.7.0: {}
+ secure-json-parse@4.1.0: {}
seedrandom@3.0.5: {}
@@ -20791,40 +21871,15 @@ snapshots:
dependencies:
lru-cache: 6.0.0
- semver@7.7.1: {}
-
- send@1.2.0:
- dependencies:
- debug: 4.4.0(supports-color@5.5.0)
- encodeurl: 2.0.0
- escape-html: 1.0.3
- etag: 1.8.1
- fresh: 2.0.0
- http-errors: 2.0.0
- mime-types: 3.0.1
- ms: 2.1.3
- on-finished: 2.4.1
- range-parser: 1.2.1
- statuses: 2.0.1
- transitivePeerDependencies:
- - supports-color
+ semver@7.7.3: {}
serialize-javascript@6.0.2:
dependencies:
randombytes: 2.1.0
- serve-static@2.2.0:
- dependencies:
- encodeurl: 2.0.0
- escape-html: 1.0.3
- parseurl: 1.3.3
- send: 1.2.0
- transitivePeerDependencies:
- - supports-color
-
set-blocking@2.0.0: {}
- set-cookie-parser@2.7.1: {}
+ set-cookie-parser@2.7.2: {}
set-function-length@1.2.2:
dependencies:
@@ -20842,12 +21897,11 @@ snapshots:
is-plain-object: 2.0.4
split-string: 3.1.0
- setprototypeof@1.2.0: {}
-
- sha.js@2.4.11:
+ sha.js@2.4.12:
dependencies:
inherits: 2.0.4
safe-buffer: 5.2.1
+ to-buffer: 1.2.2
shallowequal@1.1.0: {}
@@ -20859,34 +21913,6 @@ snapshots:
shimmer@1.2.1: {}
- side-channel-list@1.0.0:
- dependencies:
- es-errors: 1.3.0
- object-inspect: 1.13.4
-
- side-channel-map@1.0.1:
- dependencies:
- call-bound: 1.0.4
- es-errors: 1.3.0
- get-intrinsic: 1.3.0
- object-inspect: 1.13.4
-
- side-channel-weakmap@1.0.2:
- dependencies:
- call-bound: 1.0.4
- es-errors: 1.3.0
- get-intrinsic: 1.3.0
- object-inspect: 1.13.4
- side-channel-map: 1.0.1
-
- side-channel@1.1.0:
- dependencies:
- es-errors: 1.3.0
- object-inspect: 1.13.4
- side-channel-list: 1.0.0
- side-channel-map: 1.0.1
- side-channel-weakmap: 1.0.2
-
siginfo@2.0.0: {}
signal-exit@3.0.7: {}
@@ -20903,13 +21929,13 @@ snapshots:
slice-ansi@5.0.0:
dependencies:
- ansi-styles: 6.2.1
+ ansi-styles: 6.2.3
is-fullwidth-code-point: 4.0.0
- slice-ansi@7.1.0:
+ slice-ansi@7.1.2:
dependencies:
- ansi-styles: 6.2.1
- is-fullwidth-code-point: 5.0.0
+ ansi-styles: 6.2.3
+ is-fullwidth-code-point: 5.1.0
snake-case@3.0.4:
dependencies:
@@ -20957,13 +21983,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- solady@0.1.18: {}
+ solady@0.1.26: {}
solc@0.8.28:
dependencies:
command-exists: 1.2.9
commander: 8.3.0
- follow-redirects: 1.15.9
+ follow-redirects: 1.15.11
js-sha3: 0.8.0
memorystream: 0.3.1
semver: 5.7.2
@@ -20975,7 +22001,7 @@ snapshots:
dependencies:
command-exists: 1.2.9
commander: 8.3.0
- follow-redirects: 1.15.9
+ follow-redirects: 1.15.11
js-sha3: 0.8.0
memorystream: 0.3.1
semver: 5.7.2
@@ -20983,7 +22009,7 @@ snapshots:
transitivePeerDependencies:
- debug
- solidity-ast@0.4.60: {}
+ solidity-ast@0.4.61: {}
sonic-boom@2.8.0:
dependencies:
@@ -20993,10 +22019,10 @@ snapshots:
dependencies:
atomic-sleep: 1.0.0
- sonner@2.0.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ sonner@2.0.7(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
dependencies:
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
source-map-js@1.2.1: {}
@@ -21022,16 +22048,16 @@ snapshots:
spdx-correct@3.2.0:
dependencies:
spdx-expression-parse: 3.0.1
- spdx-license-ids: 3.0.21
+ spdx-license-ids: 3.0.22
spdx-exceptions@2.5.0: {}
spdx-expression-parse@3.0.1:
dependencies:
spdx-exceptions: 2.5.0
- spdx-license-ids: 3.0.21
+ spdx-license-ids: 3.0.22
- spdx-license-ids@3.0.21: {}
+ spdx-license-ids@3.0.22: {}
split-on-first@1.1.0: {}
@@ -21043,6 +22069,8 @@ snapshots:
sprintf-js@1.0.3: {}
+ stable-hash-x@0.2.0: {}
+
stable-hash@0.0.5: {}
stack-utils@2.0.6:
@@ -21056,9 +22084,7 @@ snapshots:
define-property: 0.2.5
object-copy: 0.1.0
- statuses@2.0.1: {}
-
- std-env@3.9.0: {}
+ std-env@3.10.0: {}
stream-events@1.0.5:
dependencies:
@@ -21086,13 +22112,18 @@ snapshots:
dependencies:
eastasianwidth: 0.2.0
emoji-regex: 9.2.2
- strip-ansi: 7.1.0
+ strip-ansi: 7.1.2
string-width@7.2.0:
dependencies:
- emoji-regex: 10.4.0
- get-east-asian-width: 1.3.0
- strip-ansi: 7.1.0
+ emoji-regex: 10.6.0
+ get-east-asian-width: 1.4.0
+ strip-ansi: 7.1.2
+
+ string-width@8.1.0:
+ dependencies:
+ get-east-asian-width: 1.4.0
+ strip-ansi: 7.1.2
string_decoder@1.1.1:
dependencies:
@@ -21114,9 +22145,9 @@ snapshots:
dependencies:
ansi-regex: 5.0.1
- strip-ansi@7.1.0:
+ strip-ansi@7.1.2:
dependencies:
- ansi-regex: 6.1.0
+ ansi-regex: 6.2.2
strip-final-newline@3.0.0: {}
@@ -21128,8 +22159,16 @@ snapshots:
strip-json-comments@3.1.1: {}
+ strip-json-comments@5.0.3: {}
+
+ strip-literal@3.1.0:
+ dependencies:
+ js-tokens: 9.0.1
+
strnum@1.1.2: {}
+ strnum@2.1.1: {}
+
stubs@3.0.0: {}
style-value-types@5.0.0:
@@ -21137,18 +22176,18 @@ snapshots:
hey-listen: 1.0.8
tslib: 2.8.1
- styled-components@5.3.11(@babel/core@7.27.1)(react-dom@19.1.0(react@19.1.0))(react-is@18.3.1)(react@19.1.0):
+ styled-components@5.3.11(@babel/core@7.28.5)(react-dom@19.2.0(react@19.2.0))(react-is@18.3.1)(react@19.2.0):
dependencies:
"@babel/helper-module-imports": 7.27.1(supports-color@5.5.0)
- "@babel/traverse": 7.27.1(supports-color@5.5.0)
- "@emotion/is-prop-valid": 1.3.1
+ "@babel/traverse": 7.28.5(supports-color@5.5.0)
+ "@emotion/is-prop-valid": 1.4.0
"@emotion/stylis": 0.8.5
"@emotion/unitless": 0.7.5
- babel-plugin-styled-components: 2.1.4(@babel/core@7.27.1)(styled-components@5.3.11(@babel/core@7.27.1)(react-dom@19.1.0(react@19.1.0))(react-is@18.3.1)(react@19.1.0))(supports-color@5.5.0)
+ babel-plugin-styled-components: 2.1.4(@babel/core@7.28.5)(styled-components@5.3.11(@babel/core@7.28.5)(react-dom@19.2.0(react@19.2.0))(react-is@18.3.1)(react@19.2.0))(supports-color@5.5.0)
css-to-react-native: 3.2.0
hoist-non-react-statics: 3.3.2
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
react-is: 18.3.1
shallowequal: 1.1.0
supports-color: 5.5.0
@@ -21175,29 +22214,19 @@ snapshots:
symbol-tree@3.2.4: {}
- synckit@0.11.4:
+ synckit@0.11.11:
dependencies:
- "@pkgr/core": 0.2.4
- tslib: 2.8.1
+ "@pkgr/core": 0.2.9
- tailwind-merge@3.3.0: {}
+ tailwind-merge@3.4.0: {}
- tailwindcss-animate@1.0.7(tailwindcss@4.1.6):
+ tailwindcss-animate@1.0.7(tailwindcss@4.1.17):
dependencies:
- tailwindcss: 4.1.6
-
- tailwindcss@4.1.6: {}
+ tailwindcss: 4.1.17
- tapable@2.2.1: {}
+ tailwindcss@4.1.17: {}
- tar@7.4.3:
- dependencies:
- "@isaacs/fs-minipass": 4.0.1
- chownr: 3.0.0
- minipass: 7.1.2
- minizlib: 3.0.2
- mkdirp: 3.0.1
- yallist: 5.0.0
+ tapable@2.3.0: {}
teeny-request@9.0.0:
dependencies:
@@ -21210,67 +22239,67 @@ snapshots:
- encoding
- supports-color
- terser-webpack-plugin@5.3.14(webpack@5.99.8):
+ terser-webpack-plugin@5.3.14(webpack@5.103.0):
dependencies:
- "@jridgewell/trace-mapping": 0.3.25
+ "@jridgewell/trace-mapping": 0.3.31
jest-worker: 27.5.1
- schema-utils: 4.3.2
+ schema-utils: 4.3.3
serialize-javascript: 6.0.2
- terser: 5.39.0
- webpack: 5.99.8
+ terser: 5.44.1
+ webpack: 5.103.0
- terser@5.39.0:
+ terser@5.44.1:
dependencies:
- "@jridgewell/source-map": 0.3.6
- acorn: 8.14.1
+ "@jridgewell/source-map": 0.3.11
+ acorn: 8.15.0
commander: 2.20.3
source-map-support: 0.5.21
- tevm@1.0.0-next.140(@tevm/ts-plugin@1.0.0-next.140(typescript@5.7.3))(@types/debug@4.1.12)(@types/node@22.15.17)(@types/react@19.1.3)(bufferutil@4.0.9)(jiti@2.4.2)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(typescript@5.7.3)(use-sync-external-store@1.5.0(react@19.1.0))(utf-8-validate@5.0.10)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(webpack@5.99.8)(yaml@2.7.1)(zod@3.24.4):
+ tevm@1.0.0-next.140(@tevm/ts-plugin@1.0.0-next.140(typescript@5.7.3))(@types/debug@4.1.12)(@types/node@24.10.1)(@types/react@19.2.6)(bufferutil@4.0.9)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(typescript@5.7.3)(use-sync-external-store@1.6.0(react@19.2.0))(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(webpack@5.103.0)(yaml@2.8.1)(zod@4.1.12):
dependencies:
- "@tevm/actions": 1.0.0-next.143(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))
- "@tevm/address": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/base-bundler": 1.0.0-next.142
- "@tevm/block": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/blockchain": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/bun-plugin": 1.0.0-next.142
+ "@tevm/actions": 1.0.0-next.149(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/address": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/base-bundler": 1.0.0-next.149
+ "@tevm/block": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/blockchain": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/bun-plugin": 1.0.0-next.148
"@tevm/bundler-cache": 1.0.0-next.140
- "@tevm/cli": 1.0.0-next.143(@types/debug@4.1.12)(@types/node@22.15.17)(@types/react@19.1.3)(bufferutil@4.0.9)(jiti@2.4.2)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(typescript@5.7.3)(use-sync-external-store@1.5.0(react@19.1.0))(utf-8-validate@5.0.10)(yaml@2.7.1)
- "@tevm/client-types": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/common": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/compiler": 1.0.0-next.142
- "@tevm/config": 1.0.0-next.142
- "@tevm/contract": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/decorators": 1.0.0-next.143(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/errors": 1.0.0-next.142(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))
- "@tevm/esbuild-plugin": 1.0.0-next.142
- "@tevm/evm": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/http-client": 1.0.0-next.143(@types/debug@4.1.12)(@types/node@22.15.17)(jiti@2.4.2)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(yaml@2.7.1)(zod@3.24.4)
- "@tevm/jsonrpc": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))
- "@tevm/memory-client": 1.0.0-next.143(@types/debug@4.1.12)(@types/node@22.15.17)(jiti@2.4.2)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(yaml@2.7.1)(zod@3.24.4)
- "@tevm/node": 1.0.0-next.143(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/precompiles": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/predeploys": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/receipt-manager": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/rollup-plugin": 1.0.0-next.142
- "@tevm/rspack-plugin": 1.0.0-next.142
- "@tevm/server": 1.0.0-next.143(@types/debug@4.1.12)(@types/node@22.15.17)(jiti@2.4.2)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(yaml@2.7.1)
- "@tevm/solc": 1.0.0-next.142
- "@tevm/state": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/sync-storage-persister": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
+ "@tevm/cli": 1.0.0-next.148(@types/debug@4.1.12)(@types/node@24.10.1)(@types/react@19.2.6)(bufferutil@4.0.9)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(typescript@5.7.3)(use-sync-external-store@1.6.0(react@19.2.0))(utf-8-validate@5.0.10)(yaml@2.8.1)
+ "@tevm/client-types": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/common": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/compiler": 1.0.0-next.148
+ "@tevm/config": 1.0.0-next.148
+ "@tevm/contract": 1.0.0-next.149(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/decorators": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/errors": 1.0.0-next.148(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ "@tevm/esbuild-plugin": 1.0.0-next.148
+ "@tevm/evm": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/http-client": 1.0.0-next.148(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(yaml@2.8.1)(zod@4.1.12)
+ "@tevm/jsonrpc": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ "@tevm/memory-client": 1.0.0-next.148(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(yaml@2.8.1)(zod@4.1.12)
+ "@tevm/node": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/precompiles": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/predeploys": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/receipt-manager": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/rollup-plugin": 1.0.0-next.148
+ "@tevm/rspack-plugin": 1.0.0-next.148
+ "@tevm/server": 1.0.0-next.148(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(yaml@2.8.1)
+ "@tevm/solc": 1.0.0-next.148
+ "@tevm/state": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/sync-storage-persister": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
"@tevm/ts-plugin": 1.0.0-next.140(typescript@5.7.3)
- "@tevm/tx": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/txpool": 1.0.0-next.143(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/utils": 1.0.0-next.142(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/viem": 1.0.0-next.143(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/vite-plugin": 1.0.0-next.142
- "@tevm/vm": 1.0.0-next.143(typescript@5.7.3)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@tevm/webpack-plugin": 1.0.0-next.142(webpack@5.99.8)
+ "@tevm/tx": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/txpool": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/utils": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/viem": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/vite-plugin": 1.0.0-next.148
+ "@tevm/vm": 1.0.0-next.148(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@tevm/webpack-plugin": 1.0.0-next.148(webpack@5.103.0)
commander: 13.1.0
effect: 3.13.2
- glob: 11.0.2
+ glob: 11.1.0
solc: 0.8.30
- viem: 2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
transitivePeerDependencies:
- "@edge-runtime/vm"
- "@types/debug"
@@ -21314,29 +22343,27 @@ snapshots:
tiny-invariant@1.3.3: {}
- tiny-jsonc@1.0.2: {}
-
tinybench@2.9.0: {}
tinycolor2@1.6.0: {}
tinyexec@0.3.2: {}
- tinyglobby@0.2.13:
+ tinyglobby@0.2.15:
dependencies:
- fdir: 6.4.4(picomatch@4.0.2)
- picomatch: 4.0.2
+ fdir: 6.5.0(picomatch@4.0.3)
+ picomatch: 4.0.3
tinygradient@1.1.5:
dependencies:
"@types/tinycolor2": 1.4.6
tinycolor2: 1.6.0
- tinypool@1.0.2: {}
+ tinypool@1.1.1: {}
tinyrainbow@2.0.0: {}
- tinyspy@3.0.2: {}
+ tinyspy@4.0.4: {}
tldts-core@6.1.86: {}
@@ -21348,6 +22375,12 @@ snapshots:
dependencies:
os-tmpdir: 1.0.2
+ to-buffer@1.2.2:
+ dependencies:
+ isarray: 2.0.5
+ safe-buffer: 5.2.1
+ typed-array-buffer: 1.0.3
+
to-object-path@0.3.0:
dependencies:
kind-of: 3.2.2
@@ -21370,8 +22403,6 @@ snapshots:
to-rotated@1.0.0: {}
- toidentifier@1.0.1: {}
-
tough-cookie@5.1.2:
dependencies:
tldts: 6.1.86
@@ -21390,15 +22421,15 @@ snapshots:
ts-mixer@6.0.4: {}
- ts-node@10.9.1(@types/node@22.15.17)(typescript@5.7.3):
+ ts-node@10.9.1(@types/node@22.19.1)(typescript@5.7.3):
dependencies:
"@cspotcode/source-map-support": 0.8.1
- "@tsconfig/node10": 1.0.11
+ "@tsconfig/node10": 1.0.12
"@tsconfig/node12": 1.0.11
"@tsconfig/node14": 1.0.3
"@tsconfig/node16": 1.0.4
- "@types/node": 22.15.17
- acorn: 8.14.1
+ "@types/node": 22.19.1
+ acorn: 8.15.0
acorn-walk: 8.3.4
arg: 4.1.3
create-require: 1.1.1
@@ -21419,10 +22450,10 @@ snapshots:
tslib@2.8.1: {}
- tsx@4.19.4:
+ tsx@4.20.6:
dependencies:
- esbuild: 0.25.4
- get-tsconfig: 4.10.0
+ esbuild: 0.25.12
+ get-tsconfig: 4.13.0
optionalDependencies:
fsevents: 2.3.3
@@ -21434,11 +22465,11 @@ snapshots:
type-fest@4.41.0: {}
- type-is@2.0.1:
+ typed-array-buffer@1.0.3:
dependencies:
- content-type: 1.0.5
- media-typer: 1.1.0
- mime-types: 3.0.1
+ call-bound: 1.0.4
+ es-errors: 1.3.0
+ is-typed-array: 1.1.15
typed-function@4.2.1: {}
@@ -21446,12 +22477,13 @@ snapshots:
dependencies:
is-typedarray: 1.0.0
- typescript-eslint@8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.7.3):
+ typescript-eslint@8.47.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.7.3):
dependencies:
- "@typescript-eslint/eslint-plugin": 8.32.0(@typescript-eslint/parser@8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.26.0(jiti@2.4.2))(typescript@5.7.3)
- "@typescript-eslint/parser": 8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.7.3)
- "@typescript-eslint/utils": 8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.7.3)
- eslint: 9.26.0(jiti@2.4.2)
+ "@typescript-eslint/eslint-plugin": 8.47.0(@typescript-eslint/parser@8.47.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.7.3))(eslint@9.39.1(jiti@2.6.1))(typescript@5.7.3)
+ "@typescript-eslint/parser": 8.47.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.7.3)
+ "@typescript-eslint/typescript-estree": 8.47.0(typescript@5.7.3)
+ "@typescript-eslint/utils": 8.47.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.7.3)
+ eslint: 9.39.1(jiti@2.6.1)
typescript: 5.7.3
transitivePeerDependencies:
- supports-color
@@ -21470,9 +22502,11 @@ snapshots:
undici-types@6.21.0: {}
- undici@6.21.1: {}
+ undici-types@7.16.0: {}
- undici@6.21.2: {}
+ undici@6.21.3: {}
+
+ undici@6.22.0: {}
unicorn-magic@0.1.0: {}
@@ -21489,61 +22523,62 @@ snapshots:
dependencies:
crypto-random-string: 2.0.0
- universal-user-agent@7.0.2: {}
+ universal-user-agent@7.0.3: {}
universalify@2.0.1: {}
- unpipe@1.0.0: {}
-
- unplugin@2.3.2:
+ unplugin@2.3.10:
dependencies:
- acorn: 8.14.1
- picomatch: 4.0.2
+ "@jridgewell/remapping": 2.3.5
+ acorn: 8.15.0
+ picomatch: 4.0.3
webpack-virtual-modules: 0.6.2
- unrs-resolver@1.7.2:
+ unrs-resolver@1.11.1:
dependencies:
- napi-postinstall: 0.2.3
+ napi-postinstall: 0.3.4
optionalDependencies:
- "@unrs/resolver-binding-darwin-arm64": 1.7.2
- "@unrs/resolver-binding-darwin-x64": 1.7.2
- "@unrs/resolver-binding-freebsd-x64": 1.7.2
- "@unrs/resolver-binding-linux-arm-gnueabihf": 1.7.2
- "@unrs/resolver-binding-linux-arm-musleabihf": 1.7.2
- "@unrs/resolver-binding-linux-arm64-gnu": 1.7.2
- "@unrs/resolver-binding-linux-arm64-musl": 1.7.2
- "@unrs/resolver-binding-linux-ppc64-gnu": 1.7.2
- "@unrs/resolver-binding-linux-riscv64-gnu": 1.7.2
- "@unrs/resolver-binding-linux-riscv64-musl": 1.7.2
- "@unrs/resolver-binding-linux-s390x-gnu": 1.7.2
- "@unrs/resolver-binding-linux-x64-gnu": 1.7.2
- "@unrs/resolver-binding-linux-x64-musl": 1.7.2
- "@unrs/resolver-binding-wasm32-wasi": 1.7.2
- "@unrs/resolver-binding-win32-arm64-msvc": 1.7.2
- "@unrs/resolver-binding-win32-ia32-msvc": 1.7.2
- "@unrs/resolver-binding-win32-x64-msvc": 1.7.2
+ "@unrs/resolver-binding-android-arm-eabi": 1.11.1
+ "@unrs/resolver-binding-android-arm64": 1.11.1
+ "@unrs/resolver-binding-darwin-arm64": 1.11.1
+ "@unrs/resolver-binding-darwin-x64": 1.11.1
+ "@unrs/resolver-binding-freebsd-x64": 1.11.1
+ "@unrs/resolver-binding-linux-arm-gnueabihf": 1.11.1
+ "@unrs/resolver-binding-linux-arm-musleabihf": 1.11.1
+ "@unrs/resolver-binding-linux-arm64-gnu": 1.11.1
+ "@unrs/resolver-binding-linux-arm64-musl": 1.11.1
+ "@unrs/resolver-binding-linux-ppc64-gnu": 1.11.1
+ "@unrs/resolver-binding-linux-riscv64-gnu": 1.11.1
+ "@unrs/resolver-binding-linux-riscv64-musl": 1.11.1
+ "@unrs/resolver-binding-linux-s390x-gnu": 1.11.1
+ "@unrs/resolver-binding-linux-x64-gnu": 1.11.1
+ "@unrs/resolver-binding-linux-x64-musl": 1.11.1
+ "@unrs/resolver-binding-wasm32-wasi": 1.11.1
+ "@unrs/resolver-binding-win32-arm64-msvc": 1.11.1
+ "@unrs/resolver-binding-win32-ia32-msvc": 1.11.1
+ "@unrs/resolver-binding-win32-x64-msvc": 1.11.1
unset-value@1.0.0:
dependencies:
has-value: 0.3.1
isobject: 3.0.1
- unstorage@1.16.0(idb-keyval@6.2.2):
+ unstorage@1.17.2(idb-keyval@6.2.2):
dependencies:
anymatch: 3.1.3
chokidar: 4.0.3
destr: 2.0.5
- h3: 1.15.3
+ h3: 1.15.4
lru-cache: 10.4.3
- node-fetch-native: 1.6.6
- ofetch: 1.4.1
+ node-fetch-native: 1.6.7
+ ofetch: 1.5.1
ufo: 1.6.1
optionalDependencies:
idb-keyval: 6.2.2
- update-browserslist-db@1.1.3(browserslist@4.24.5):
+ update-browserslist-db@1.1.4(browserslist@4.28.0):
dependencies:
- browserslist: 4.24.5
+ browserslist: 4.28.0
escalade: 3.2.0
picocolors: 1.1.1
@@ -21562,7 +22597,7 @@ snapshots:
pupa: 2.1.1
registry-auth-token: 5.1.0
registry-url: 5.1.0
- semver: 7.7.1
+ semver: 7.7.3
semver-diff: 3.1.1
xdg-basedir: 4.0.0
transitivePeerDependencies:
@@ -21574,38 +22609,38 @@ snapshots:
urix@0.1.0: {}
- urql@4.2.2(@urql/core@5.1.1(graphql@16.11.0))(react@19.1.0):
+ urql@4.2.2(@urql/core@5.2.0(graphql@16.12.0))(react@19.2.0):
dependencies:
- "@urql/core": 5.1.1(graphql@16.11.0)
- react: 19.1.0
+ "@urql/core": 5.2.0(graphql@16.12.0)
+ react: 19.2.0
wonka: 6.3.5
- use-callback-ref@1.3.3(@types/react@19.1.3)(react@19.1.0):
+ use-callback-ref@1.3.3(@types/react@19.2.6)(react@19.2.0):
dependencies:
- react: 19.1.0
+ react: 19.2.0
tslib: 2.8.1
optionalDependencies:
- "@types/react": 19.1.3
+ "@types/react": 19.2.6
- use-sidecar@1.1.3(@types/react@19.1.3)(react@19.1.0):
+ use-sidecar@1.1.3(@types/react@19.2.6)(react@19.2.0):
dependencies:
detect-node-es: 1.1.0
- react: 19.1.0
+ react: 19.2.0
tslib: 2.8.1
optionalDependencies:
- "@types/react": 19.1.3
+ "@types/react": 19.2.6
- use-sync-external-store@1.2.0(react@19.1.0):
+ use-sync-external-store@1.2.0(react@19.2.0):
dependencies:
- react: 19.1.0
+ react: 19.2.0
- use-sync-external-store@1.4.0(react@19.1.0):
+ use-sync-external-store@1.4.0(react@19.2.0):
dependencies:
- react: 19.1.0
+ react: 19.2.0
- use-sync-external-store@1.5.0(react@19.1.0):
+ use-sync-external-store@1.6.0(react@19.2.0):
dependencies:
- react: 19.1.0
+ react: 19.2.0
use@3.1.1: {}
@@ -21619,7 +22654,7 @@ snapshots:
dependencies:
inherits: 2.0.4
is-arguments: 1.2.0
- is-generator-function: 1.1.0
+ is-generator-function: 1.1.2
is-typed-array: 1.1.15
which-typed-array: 1.1.19
@@ -21636,20 +22671,18 @@ snapshots:
spdx-correct: 3.2.0
spdx-expression-parse: 3.0.1
- valtio@1.13.2(@types/react@19.1.3)(react@19.1.0):
+ valtio@1.13.2(@types/react@19.2.6)(react@19.2.0):
dependencies:
- derive-valtio: 0.1.0(valtio@1.13.2(@types/react@19.1.3)(react@19.1.0))
+ derive-valtio: 0.1.0(valtio@1.13.2(@types/react@19.2.6)(react@19.2.0))
proxy-compare: 2.6.0
- use-sync-external-store: 1.2.0(react@19.1.0)
+ use-sync-external-store: 1.2.0(react@19.2.0)
optionalDependencies:
- "@types/react": 19.1.3
- react: 19.1.0
-
- vary@1.1.2: {}
+ "@types/react": 19.2.6
+ react: 19.2.0
victory-vendor@36.9.2:
dependencies:
- "@types/d3-array": 3.2.1
+ "@types/d3-array": 3.2.2
"@types/d3-ease": 3.0.2
"@types/d3-interpolate": 3.0.4
"@types/d3-scale": 4.0.9
@@ -21664,24 +22697,41 @@ snapshots:
d3-time: 3.1.0
d3-timer: 3.0.1
- viem-deal@2.0.4(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)):
+ viem-deal@2.0.4(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)):
dependencies:
- viem: 2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ viem: 2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
- viem-tracer@1.6.0(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)):
+ viem-tracer@1.8.0(viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)):
dependencies:
colors: 1.4.0
- viem: 2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ viem: 2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
+
+ viem@2.23.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76):
+ dependencies:
+ "@noble/curves": 1.8.1
+ "@noble/hashes": 1.7.1
+ "@scure/bip32": 1.6.2
+ "@scure/bip39": 1.5.4
+ abitype: 1.0.8(typescript@5.7.3)(zod@3.25.76)
+ isows: 1.0.6(ws@8.18.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ ox: 0.6.7(typescript@5.7.3)(zod@3.25.76)
+ ws: 8.18.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ optionalDependencies:
+ typescript: 5.7.3
+ transitivePeerDependencies:
+ - bufferutil
+ - utf-8-validate
+ - zod
- viem@2.23.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4):
+ viem@2.23.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12):
dependencies:
"@noble/curves": 1.8.1
"@noble/hashes": 1.7.1
"@scure/bip32": 1.6.2
"@scure/bip39": 1.5.4
- abitype: 1.0.8(typescript@5.7.3)(zod@3.24.4)
+ abitype: 1.0.8(typescript@5.7.3)(zod@4.1.12)
isows: 1.0.6(ws@8.18.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- ox: 0.6.7(typescript@5.7.3)(zod@3.24.4)
+ ox: 0.6.7(typescript@5.7.3)(zod@4.1.12)
ws: 8.18.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
optionalDependencies:
typescript: 5.7.3
@@ -21690,14 +22740,14 @@ snapshots:
- utf-8-validate
- zod
- viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4):
+ viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4):
dependencies:
"@noble/curves": 1.8.2
"@noble/hashes": 1.7.2
"@scure/bip32": 1.6.2
"@scure/bip39": 1.5.4
abitype: 1.0.8(typescript@5.7.3)(zod@3.22.4)
- isows: 1.0.6(ws@8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ isows: 1.0.7(ws@8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))
ox: 0.6.9(typescript@5.7.3)(zod@3.22.4)
ws: 8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)
optionalDependencies:
@@ -21707,15 +22757,32 @@ snapshots:
- utf-8-validate
- zod
- viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4):
+ viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76):
+ dependencies:
+ "@noble/curves": 1.8.2
+ "@noble/hashes": 1.7.2
+ "@scure/bip32": 1.6.2
+ "@scure/bip39": 1.5.4
+ abitype: 1.0.8(typescript@5.7.3)(zod@3.25.76)
+ isows: 1.0.7(ws@8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ ox: 0.6.9(typescript@5.7.3)(zod@3.25.76)
+ ws: 8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ optionalDependencies:
+ typescript: 5.7.3
+ transitivePeerDependencies:
+ - bufferutil
+ - utf-8-validate
+ - zod
+
+ viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12):
dependencies:
"@noble/curves": 1.8.2
"@noble/hashes": 1.7.2
"@scure/bip32": 1.6.2
"@scure/bip39": 1.5.4
- abitype: 1.0.8(typescript@5.7.3)(zod@3.24.4)
- isows: 1.0.6(ws@8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- ox: 0.6.9(typescript@5.7.3)(zod@3.24.4)
+ abitype: 1.0.8(typescript@5.7.3)(zod@4.1.12)
+ isows: 1.0.7(ws@8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ ox: 0.6.9(typescript@5.7.3)(zod@4.1.12)
ws: 8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)
optionalDependencies:
typescript: 5.7.3
@@ -21724,13 +22791,51 @@ snapshots:
- utf-8-validate
- zod
- vite-node@3.1.3(@types/node@22.15.17)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1):
+ viem@2.39.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12):
+ dependencies:
+ "@noble/curves": 1.9.1
+ "@noble/hashes": 1.8.0
+ "@scure/bip32": 1.7.0
+ "@scure/bip39": 1.6.0
+ abitype: 1.1.0(typescript@5.7.3)(zod@4.1.12)
+ isows: 1.0.7(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ ox: 0.9.6(typescript@5.7.3)(zod@4.1.12)
+ ws: 8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ optionalDependencies:
+ typescript: 5.7.3
+ transitivePeerDependencies:
+ - bufferutil
+ - utf-8-validate
+ - zod
+
+ vite-node@3.2.4(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1):
+ dependencies:
+ cac: 6.7.14
+ debug: 4.4.3(supports-color@5.5.0)
+ es-module-lexer: 1.7.0
+ pathe: 2.0.3
+ vite: 6.4.1(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)
+ transitivePeerDependencies:
+ - "@types/node"
+ - jiti
+ - less
+ - lightningcss
+ - sass
+ - sass-embedded
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ - tsx
+ - yaml
+
+ vite-node@3.2.4(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1):
dependencies:
cac: 6.7.14
- debug: 4.4.0(supports-color@5.5.0)
+ debug: 4.4.3(supports-color@5.5.0)
es-module-lexer: 1.7.0
pathe: 2.0.3
- vite: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
+ vite: 6.4.1(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)
transitivePeerDependencies:
- "@types/node"
- jiti
@@ -21745,92 +22850,165 @@ snapshots:
- tsx
- yaml
- vite-plugin-dts@4.5.3(@types/node@22.15.17)(rollup@4.40.2)(typescript@5.7.3)(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)):
+ vite-plugin-dts@4.5.4(@types/node@24.10.1)(rollup@4.53.3)(typescript@5.7.3)(vite@6.4.1(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)):
dependencies:
- "@microsoft/api-extractor": 7.52.7(@types/node@22.15.17)
- "@rollup/pluginutils": 5.1.4(rollup@4.40.2)
- "@volar/typescript": 2.4.13
+ "@microsoft/api-extractor": 7.55.0(@types/node@24.10.1)
+ "@rollup/pluginutils": 5.3.0(rollup@4.53.3)
+ "@volar/typescript": 2.4.23
"@vue/language-core": 2.2.0(typescript@5.7.3)
compare-versions: 6.1.1
- debug: 4.4.0(supports-color@5.5.0)
+ debug: 4.4.3(supports-color@5.5.0)
kolorist: 1.8.0
- local-pkg: 1.1.1
- magic-string: 0.30.17
+ local-pkg: 1.1.2
+ magic-string: 0.30.21
typescript: 5.7.3
optionalDependencies:
- vite: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
+ vite: 6.4.1(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)
transitivePeerDependencies:
- "@types/node"
- rollup
- supports-color
- vite-plugin-externalize-deps@0.9.0(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)):
+ vite-plugin-externalize-deps@0.9.0(vite@6.4.1(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)):
dependencies:
- vite: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
+ vite: 6.4.1(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)
- vite-plugin-static-copy@2.3.1(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)):
+ vite-plugin-static-copy@2.3.2(vite@6.4.1(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)):
dependencies:
chokidar: 3.6.0
fast-glob: 3.3.3
- fs-extra: 11.3.0
- p-map: 7.0.3
+ fs-extra: 11.3.2
+ p-map: 7.0.4
picocolors: 1.1.1
- vite: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
+ vite: 6.4.1(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)
+
+ vite-plugin-svgr@4.5.0(rollup@4.53.3)(typescript@5.7.3)(vite@6.4.1(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)):
+ dependencies:
+ "@rollup/pluginutils": 5.3.0(rollup@4.53.3)
+ "@svgr/core": 8.1.0(typescript@5.7.3)
+ "@svgr/plugin-jsx": 8.1.0(@svgr/core@8.1.0(typescript@5.7.3))
+ vite: 6.4.1(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)
+ transitivePeerDependencies:
+ - rollup
+ - supports-color
+ - typescript
- vite-plugin-svgr@4.3.0(rollup@4.40.2)(typescript@5.7.3)(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)):
+ vite-plugin-svgr@4.5.0(rollup@4.53.3)(typescript@5.7.3)(vite@6.4.1(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)):
dependencies:
- "@rollup/pluginutils": 5.1.4(rollup@4.40.2)
+ "@rollup/pluginutils": 5.3.0(rollup@4.53.3)
"@svgr/core": 8.1.0(typescript@5.7.3)
"@svgr/plugin-jsx": 8.1.0(@svgr/core@8.1.0(typescript@5.7.3))
- vite: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
+ vite: 6.4.1(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)
transitivePeerDependencies:
- rollup
- supports-color
- typescript
- vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1):
+ vite@6.4.1(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1):
dependencies:
- esbuild: 0.25.4
- fdir: 6.4.4(picomatch@4.0.2)
- picomatch: 4.0.2
- postcss: 8.5.3
- rollup: 4.40.2
- tinyglobby: 0.2.13
+ esbuild: 0.25.12
+ fdir: 6.5.0(picomatch@4.0.3)
+ picomatch: 4.0.3
+ postcss: 8.5.6
+ rollup: 4.53.3
+ tinyglobby: 0.2.15
+ optionalDependencies:
+ "@types/node": 22.19.1
+ fsevents: 2.3.3
+ jiti: 2.6.1
+ lightningcss: 1.30.2
+ terser: 5.44.1
+ tsx: 4.20.6
+ yaml: 2.8.1
+
+ vite@6.4.1(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1):
+ dependencies:
+ esbuild: 0.25.12
+ fdir: 6.5.0(picomatch@4.0.3)
+ picomatch: 4.0.3
+ postcss: 8.5.6
+ rollup: 4.53.3
+ tinyglobby: 0.2.15
optionalDependencies:
- "@types/node": 22.15.17
+ "@types/node": 24.10.1
fsevents: 2.3.3
- jiti: 2.4.2
- lightningcss: 1.29.2
- terser: 5.39.0
- tsx: 4.19.4
- yaml: 2.7.1
-
- vitest@3.1.3(@types/debug@4.1.12)(@types/node@22.15.17)(jiti@2.4.2)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1):
- dependencies:
- "@vitest/expect": 3.1.3
- "@vitest/mocker": 3.1.3(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))
- "@vitest/pretty-format": 3.1.3
- "@vitest/runner": 3.1.3
- "@vitest/snapshot": 3.1.3
- "@vitest/spy": 3.1.3
- "@vitest/utils": 3.1.3
- chai: 5.2.0
- debug: 4.4.0(supports-color@5.5.0)
- expect-type: 1.2.1
- magic-string: 0.30.17
+ jiti: 2.6.1
+ lightningcss: 1.30.2
+ terser: 5.44.1
+ tsx: 4.20.6
+ yaml: 2.8.1
+
+ vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.19.1)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1):
+ dependencies:
+ "@types/chai": 5.2.3
+ "@vitest/expect": 3.2.4
+ "@vitest/mocker": 3.2.4(vite@6.4.1(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1))
+ "@vitest/pretty-format": 3.2.4
+ "@vitest/runner": 3.2.4
+ "@vitest/snapshot": 3.2.4
+ "@vitest/spy": 3.2.4
+ "@vitest/utils": 3.2.4
+ chai: 5.3.3
+ debug: 4.4.3(supports-color@5.5.0)
+ expect-type: 1.2.2
+ magic-string: 0.30.21
+ pathe: 2.0.3
+ picomatch: 4.0.3
+ std-env: 3.10.0
+ tinybench: 2.9.0
+ tinyexec: 0.3.2
+ tinyglobby: 0.2.15
+ tinypool: 1.1.1
+ tinyrainbow: 2.0.0
+ vite: 6.4.1(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)
+ vite-node: 3.2.4(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)
+ why-is-node-running: 2.3.0
+ optionalDependencies:
+ "@types/debug": 4.1.12
+ "@types/node": 22.19.1
+ jsdom: 26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ transitivePeerDependencies:
+ - jiti
+ - less
+ - lightningcss
+ - msw
+ - sass
+ - sass-embedded
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ - tsx
+ - yaml
+
+ vitest@3.2.4(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1):
+ dependencies:
+ "@types/chai": 5.2.3
+ "@vitest/expect": 3.2.4
+ "@vitest/mocker": 3.2.4(vite@6.4.1(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1))
+ "@vitest/pretty-format": 3.2.4
+ "@vitest/runner": 3.2.4
+ "@vitest/snapshot": 3.2.4
+ "@vitest/spy": 3.2.4
+ "@vitest/utils": 3.2.4
+ chai: 5.3.3
+ debug: 4.4.3(supports-color@5.5.0)
+ expect-type: 1.2.2
+ magic-string: 0.30.21
pathe: 2.0.3
- std-env: 3.9.0
+ picomatch: 4.0.3
+ std-env: 3.10.0
tinybench: 2.9.0
tinyexec: 0.3.2
- tinyglobby: 0.2.13
- tinypool: 1.0.2
+ tinyglobby: 0.2.15
+ tinypool: 1.1.1
tinyrainbow: 2.0.0
- vite: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
- vite-node: 3.1.3(@types/node@22.15.17)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
+ vite: 6.4.1(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)
+ vite-node: 3.2.4(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)
why-is-node-running: 2.3.0
optionalDependencies:
"@types/debug": 4.1.12
- "@types/node": 22.15.17
+ "@types/node": 24.10.1
jsdom: 26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
transitivePeerDependencies:
- jiti
@@ -21852,14 +23030,53 @@ snapshots:
dependencies:
xml-name-validator: 5.0.0
- wagmi@2.15.2(@tanstack/query-core@5.75.7)(@tanstack/react-query@5.75.7(react@19.1.0))(@types/react@19.1.3)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4):
+ wagmi@2.15.2(@tanstack/query-core@5.90.10)(@tanstack/react-query@5.90.10(react@19.2.0))(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76))(zod@3.25.76):
+ dependencies:
+ "@tanstack/react-query": 5.90.10(react@19.2.0)
+ "@wagmi/connectors": 5.8.1(@types/react@19.2.6)(@wagmi/core@2.17.1(@tanstack/query-core@5.90.10)(@types/react@19.2.6)(react@19.2.0)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.2.0))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)))(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76))(zod@3.25.76)
+ "@wagmi/core": 2.17.1(@tanstack/query-core@5.90.10)(@types/react@19.2.6)(react@19.2.0)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.2.0))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76))
+ react: 19.2.0
+ use-sync-external-store: 1.4.0(react@19.2.0)
+ viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ optionalDependencies:
+ typescript: 5.7.3
+ transitivePeerDependencies:
+ - "@azure/app-configuration"
+ - "@azure/cosmos"
+ - "@azure/data-tables"
+ - "@azure/identity"
+ - "@azure/keyvault-secrets"
+ - "@azure/storage-blob"
+ - "@capacitor/preferences"
+ - "@deno/kv"
+ - "@netlify/blobs"
+ - "@planetscale/database"
+ - "@react-native-async-storage/async-storage"
+ - "@tanstack/query-core"
+ - "@types/react"
+ - "@upstash/redis"
+ - "@vercel/blob"
+ - "@vercel/functions"
+ - "@vercel/kv"
+ - aws4fetch
+ - bufferutil
+ - db0
+ - encoding
+ - immer
+ - ioredis
+ - supports-color
+ - uploadthing
+ - utf-8-validate
+ - zod
+
+ wagmi@2.15.2(@tanstack/query-core@5.90.10)(@tanstack/react-query@5.90.10(react@19.2.0))(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12):
dependencies:
- "@tanstack/react-query": 5.75.7(react@19.1.0)
- "@wagmi/connectors": 5.8.1(@types/react@19.1.3)(@wagmi/core@2.17.1(@tanstack/query-core@5.75.7)(@types/react@19.1.3)(react@19.1.0)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.1.0))(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)))(bufferutil@4.0.9)(react@19.1.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
- "@wagmi/core": 2.17.1(@tanstack/query-core@5.75.7)(@types/react@19.1.3)(react@19.1.0)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.1.0))(viem@2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4))
- react: 19.1.0
- use-sync-external-store: 1.4.0(react@19.1.0)
- viem: 2.29.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ "@tanstack/react-query": 5.90.10(react@19.2.0)
+ "@wagmi/connectors": 5.8.1(@types/react@19.2.6)(@wagmi/core@2.17.1(@tanstack/query-core@5.90.10)(@types/react@19.2.6)(react@19.2.0)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.2.0))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)))(bufferutil@4.0.9)(react@19.2.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))(zod@4.1.12)
+ "@wagmi/core": 2.17.1(@tanstack/query-core@5.90.10)(@types/react@19.2.6)(react@19.2.0)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.2.0))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12))
+ react: 19.2.0
+ use-sync-external-store: 1.4.0(react@19.2.0)
+ viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.1.12)
optionalDependencies:
typescript: 5.7.3
transitivePeerDependencies:
@@ -21878,6 +23095,7 @@ snapshots:
- "@types/react"
- "@upstash/redis"
- "@vercel/blob"
+ - "@vercel/functions"
- "@vercel/kv"
- aws4fetch
- bufferutil
@@ -21890,7 +23108,7 @@ snapshots:
- utf-8-validate
- zod
- watchpack@2.4.2:
+ watchpack@2.4.4:
dependencies:
glob-to-regexp: 0.4.1
graceful-fs: 4.2.11
@@ -21913,36 +23131,37 @@ snapshots:
webidl-conversions@7.0.0: {}
- webpack-sources@3.2.3: {}
+ webpack-sources@3.3.3: {}
webpack-virtual-modules@0.6.2: {}
- webpack@5.99.8:
+ webpack@5.103.0:
dependencies:
"@types/eslint-scope": 3.7.7
- "@types/estree": 1.0.7
+ "@types/estree": 1.0.8
"@types/json-schema": 7.0.15
"@webassemblyjs/ast": 1.14.1
"@webassemblyjs/wasm-edit": 1.14.1
"@webassemblyjs/wasm-parser": 1.14.1
- acorn: 8.14.1
- browserslist: 4.24.5
+ acorn: 8.15.0
+ acorn-import-phases: 1.0.4(acorn@8.15.0)
+ browserslist: 4.28.0
chrome-trace-event: 1.0.4
- enhanced-resolve: 5.18.1
+ enhanced-resolve: 5.18.3
es-module-lexer: 1.7.0
eslint-scope: 5.1.1
events: 3.3.0
glob-to-regexp: 0.4.1
graceful-fs: 4.2.11
json-parse-even-better-errors: 2.3.1
- loader-runner: 4.3.0
+ loader-runner: 4.3.1
mime-types: 2.1.35
neo-async: 2.6.2
- schema-utils: 4.3.2
- tapable: 2.2.1
- terser-webpack-plugin: 5.3.14(webpack@5.99.8)
- watchpack: 2.4.2
- webpack-sources: 3.2.3
+ schema-utils: 4.3.3
+ tapable: 2.3.0
+ terser-webpack-plugin: 5.3.14(webpack@5.103.0)
+ watchpack: 2.4.4
+ webpack-sources: 3.3.3
transitivePeerDependencies:
- "@swc/core"
- esbuild
@@ -22018,15 +23237,15 @@ snapshots:
wrap-ansi@8.1.0:
dependencies:
- ansi-styles: 6.2.1
+ ansi-styles: 6.2.3
string-width: 5.1.2
- strip-ansi: 7.1.0
+ strip-ansi: 7.1.2
- wrap-ansi@9.0.0:
+ wrap-ansi@9.0.2:
dependencies:
- ansi-styles: 6.2.1
+ ansi-styles: 6.2.3
string-width: 7.2.0
- strip-ansi: 7.1.0
+ strip-ansi: 7.1.2
wrappy@1.0.2: {}
@@ -22057,7 +23276,7 @@ snapshots:
bufferutil: 4.0.9
utf-8-validate: 5.0.10
- ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10):
+ ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10):
optionalDependencies:
bufferutil: 4.0.9
utf-8-validate: 5.0.10
@@ -22080,9 +23299,7 @@ snapshots:
yallist@4.0.0: {}
- yallist@5.0.0: {}
-
- yaml@2.7.1: {}
+ yaml@2.8.1: {}
yargs-parser@18.1.3:
dependencies:
@@ -22123,26 +23340,24 @@ snapshots:
zhead@2.2.4: {}
- zod-to-json-schema@3.24.5(zod@3.24.4):
- dependencies:
- zod: 3.24.4
-
- zod-validation-error@3.4.1(zod@3.24.4):
+ zod-validation-error@3.5.4(zod@4.1.12):
dependencies:
- zod: 3.24.4
+ zod: 4.1.12
zod@3.22.4: {}
- zod@3.24.4: {}
+ zod@3.25.76: {}
+
+ zod@4.1.12: {}
- zustand@5.0.0(@types/react@19.1.3)(react@19.1.0)(use-sync-external-store@1.4.0(react@19.1.0)):
+ zustand@5.0.0(@types/react@19.2.6)(react@19.2.0)(use-sync-external-store@1.4.0(react@19.2.0)):
optionalDependencies:
- "@types/react": 19.1.3
- react: 19.1.0
- use-sync-external-store: 1.4.0(react@19.1.0)
+ "@types/react": 19.2.6
+ react: 19.2.0
+ use-sync-external-store: 1.4.0(react@19.2.0)
- zustand@5.0.4(@types/react@19.1.3)(react@18.3.1)(use-sync-external-store@1.5.0(react@19.1.0)):
+ zustand@5.0.8(@types/react@19.2.6)(react@19.2.0)(use-sync-external-store@1.6.0(react@19.2.0)):
optionalDependencies:
- "@types/react": 19.1.3
- react: 18.3.1
- use-sync-external-store: 1.5.0(react@19.1.0)
+ "@types/react": 19.2.6
+ react: 19.2.0
+ use-sync-external-store: 1.6.0(react@19.2.0)