diff --git a/examples/example-app-router-patterns/.gitignore b/examples/example-app-router-patterns/.gitignore
new file mode 100644
index 000000000..04239e7d0
--- /dev/null
+++ b/examples/example-app-router-patterns/.gitignore
@@ -0,0 +1,4 @@
+/node_modules
+/.next/
+.DS_Store
+tsconfig.tsbuildinfo
diff --git a/examples/example-app-router-patterns/README.md b/examples/example-app-router-patterns/README.md
new file mode 100644
index 000000000..6c3beabe0
--- /dev/null
+++ b/examples/example-app-router-patterns/README.md
@@ -0,0 +1,9 @@
+# example-app-router-patterns
+
+This example demonstrates various use cases and patterns for using `next-intl` with the App Router.
+
+## Deploy your own
+
+By deploying to [Vercel](https://vercel.com), you can check out the example in action. Note that you'll be prompted to create a new GitHub repository as part of this, allowing you to make subsequent changes.
+
+[](https://vercel.com/new/clone?repository-url=https://github.com/amannn/next-intl/tree/main/examples/example-app-router-patterns)
diff --git a/examples/example-app-router-patterns/eslint.config.mjs b/examples/example-app-router-patterns/eslint.config.mjs
new file mode 100644
index 000000000..144292198
--- /dev/null
+++ b/examples/example-app-router-patterns/eslint.config.mjs
@@ -0,0 +1,22 @@
+import {dirname} from 'path';
+import {fileURLToPath} from 'url';
+import {FlatCompat} from '@eslint/eslintrc';
+
+const __filename = fileURLToPath(import.meta.url);
+const __dirname = dirname(__filename);
+
+const compat = new FlatCompat({
+ baseDirectory: __dirname
+});
+
+const eslintConfig = [
+ ...compat.extends('next/core-web-vitals', 'next/typescript'),
+ {
+ rules: {
+ '@typescript-eslint/no-explicit-any': 'off',
+ '@typescript-eslint/ban-ts-comment': 'off'
+ }
+ }
+];
+
+export default eslintConfig;
diff --git a/examples/example-app-router-patterns/next-env.d.ts b/examples/example-app-router-patterns/next-env.d.ts
new file mode 100644
index 000000000..830fb594c
--- /dev/null
+++ b/examples/example-app-router-patterns/next-env.d.ts
@@ -0,0 +1,6 @@
+///
+///
+///
+
+// NOTE: This file should not be edited
+// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
diff --git a/examples/example-app-router-patterns/next.config.mjs b/examples/example-app-router-patterns/next.config.mjs
new file mode 100644
index 000000000..4678774e6
--- /dev/null
+++ b/examples/example-app-router-patterns/next.config.mjs
@@ -0,0 +1,4 @@
+/** @type {import('next').NextConfig} */
+const nextConfig = {};
+
+export default nextConfig;
diff --git a/examples/example-app-router-patterns/package.json b/examples/example-app-router-patterns/package.json
new file mode 100644
index 000000000..f35bd99ba
--- /dev/null
+++ b/examples/example-app-router-patterns/package.json
@@ -0,0 +1,44 @@
+{
+ "name": "example-app-router-patterns",
+ "private": true,
+ "scripts": {
+ "dev": "next dev",
+ "lint": "eslint src && prettier src --check",
+ "build": "next build",
+ "start": "next start"
+ },
+ "dependencies": {
+ "clsx": "^2.1.1",
+ "next": "^15.5.0",
+ "next-intl": "^4.0.0",
+ "react": "^19.0.0",
+ "react-dom": "^19.0.0",
+ "tailwindcss": "^4.1.12"
+ },
+ "devDependencies": {
+ "@eslint/eslintrc": "^3.1.0",
+ "@tailwindcss/postcss": "^4.1.12",
+ "@types/node": "^20.14.5",
+ "@types/react": "^19.0.0",
+ "@types/react-dom": "^19.0.0",
+ "eslint": "9.11.1",
+ "eslint-config-next": "^15.5.0",
+ "postcss": "^8.5.3",
+ "prettier": "^3.3.3",
+ "prettier-plugin-organize-imports": "^4.2.0",
+ "prettier-plugin-tailwindcss": "^0.6.14",
+ "typescript": "^5.5.3"
+ },
+ "prettier": {
+ "singleQuote": true,
+ "bracketSpacing": false,
+ "trailingComma": "none",
+ "plugins": [
+ "prettier-plugin-organize-imports",
+ "prettier-plugin-tailwindcss"
+ ]
+ },
+ "engines": {
+ "node": ">=20.0.0"
+ }
+}
diff --git a/examples/example-app-router-patterns/postcss.config.mjs b/examples/example-app-router-patterns/postcss.config.mjs
new file mode 100644
index 000000000..313840505
--- /dev/null
+++ b/examples/example-app-router-patterns/postcss.config.mjs
@@ -0,0 +1,6 @@
+const config = {
+ plugins: {
+ '@tailwindcss/postcss': {}
+ }
+};
+export default config;
diff --git a/examples/example-app-router-patterns/src/app/design/DesignColorSwatch.tsx b/examples/example-app-router-patterns/src/app/design/DesignColorSwatch.tsx
new file mode 100644
index 000000000..7f6222457
--- /dev/null
+++ b/examples/example-app-router-patterns/src/app/design/DesignColorSwatch.tsx
@@ -0,0 +1,15 @@
+import clsx from 'clsx';
+
+type Props = {
+ className: string;
+ value: string;
+};
+
+export default function DesignColorSwatch({className, value}: Props) {
+ return (
+
+ );
+}
diff --git a/examples/example-app-router-patterns/src/app/design/DesignSection.tsx b/examples/example-app-router-patterns/src/app/design/DesignSection.tsx
new file mode 100644
index 000000000..433cbf251
--- /dev/null
+++ b/examples/example-app-router-patterns/src/app/design/DesignSection.tsx
@@ -0,0 +1,17 @@
+import {ReactNode} from 'react';
+
+type Props = {
+ children: ReactNode;
+ title: string;
+};
+
+export default function DesignSection({children, title}: Props) {
+ return (
+
+
+ {title}
+
+ {children}
+
+ );
+}
diff --git a/examples/example-app-router-patterns/src/app/design/page.tsx b/examples/example-app-router-patterns/src/app/design/page.tsx
new file mode 100644
index 000000000..1fcd139d5
--- /dev/null
+++ b/examples/example-app-router-patterns/src/app/design/page.tsx
@@ -0,0 +1,170 @@
+// Documentation page for the next-intl design system
+
+import DesignColorSwatch from './DesignColorSwatch';
+import DesignSection from './DesignSection';
+
+export default function DesignPage() {
+ return (
+
+
+
+ Design system
+
+
+
+
+
+
+ Blue (primary)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Gray
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Title large
+
+
+ Title normal
+
+
Title description
+
+ Title caption
+
+
+ Title small
+
+
+ Headline
+
+
+ Headline caption
+
+
Body large
+
Body large muted
+
+ Body with{' '}
+
+ a link
+
+
+
Body muted
+
Label
+
+ Label muted
+
+
+ Inline code
+
+
+
+
+
+
+ Title large
+
+
+ Title normal
+
+
Title description
+
+ Title caption
+
+
+ Title small
+
+
Headline
+
+ Headline caption
+
+
Body large
+
Body large muted
+
+ Body with{' '}
+
+ a link
+
+
+
Body muted
+
Label
+
+ Label muted
+
+
+ Inline code
+
+
+
+
+
+
+
+
+
+
+ Title caption
+
+
+ Title normal
+
+
+ Title description
+
+
+
+
+
+
+ Title caption
+
+
+ Title normal
+
+
+ Title description
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/examples/example-app-router-patterns/src/app/favicon.ico b/examples/example-app-router-patterns/src/app/favicon.ico
new file mode 100644
index 000000000..4ddd8fff7
Binary files /dev/null and b/examples/example-app-router-patterns/src/app/favicon.ico differ
diff --git a/examples/example-app-router-patterns/src/app/globals.css b/examples/example-app-router-patterns/src/app/globals.css
new file mode 100644
index 000000000..73bb5b727
--- /dev/null
+++ b/examples/example-app-router-patterns/src/app/globals.css
@@ -0,0 +1,23 @@
+@import 'tailwindcss';
+
+@theme {
+ --color-white: #ffffff;
+
+ --color-gray-50: #f7f7f8;
+ --color-gray-100: #ebebef;
+ --color-gray-200: #d1d1db;
+ --color-gray-300: #a9a9bc;
+ --color-gray-400: #8a8aa3;
+ --color-gray-500: #6c6c89;
+ --color-gray-600: #55556d;
+ --color-gray-700: #3f3f50;
+ --color-gray-800: #282833;
+ --color-gray-900: #121217;
+
+ --color-blue-300: #70d2ff;
+ --color-blue-700: #008fd6;
+
+ --font-mono:
+ Monaco, ui-monospace, SFMono-Regular, Menlo, Consolas, Liberation Mono,
+ Courier New, monospace;
+}
diff --git a/examples/example-app-router-patterns/src/app/layout.tsx b/examples/example-app-router-patterns/src/app/layout.tsx
new file mode 100644
index 000000000..f2c77bbad
--- /dev/null
+++ b/examples/example-app-router-patterns/src/app/layout.tsx
@@ -0,0 +1,16 @@
+import {Inter} from 'next/font/google';
+import './globals.css';
+import {clsx} from 'clsx';
+
+const inter = Inter({
+ subsets: ['latin'],
+ variable: '--font-inter'
+});
+
+export default function RootLayout({children}: LayoutProps<'/'>) {
+ return (
+
+ {children}
+
+ );
+}
diff --git a/examples/example-app-router-patterns/src/app/page.tsx b/examples/example-app-router-patterns/src/app/page.tsx
new file mode 100644
index 000000000..f5638571b
--- /dev/null
+++ b/examples/example-app-router-patterns/src/app/page.tsx
@@ -0,0 +1,5 @@
+import {redirect} from 'next/navigation';
+
+export default function HomePage() {
+ redirect('/design');
+}
diff --git a/examples/example-app-router-patterns/tsconfig.json b/examples/example-app-router-patterns/tsconfig.json
new file mode 100644
index 000000000..1638156ff
--- /dev/null
+++ b/examples/example-app-router-patterns/tsconfig.json
@@ -0,0 +1,30 @@
+{
+ "compilerOptions": {
+ "allowArbitraryExtensions": true,
+ "target": "es5",
+ "lib": ["dom", "dom.iterable", "esnext"],
+ "strict": true,
+ "allowJs": true,
+ "skipLibCheck": true,
+ "noEmit": true,
+ "esModuleInterop": true,
+ "module": "ESNext",
+ "moduleResolution": "Bundler",
+ "resolveJsonModule": true,
+ "isolatedModules": true,
+ "jsx": "preserve",
+ "incremental": true,
+ "plugins": [
+ {
+ "name": "next"
+ }
+ ],
+ "paths": {
+ "@/*": ["./src/*"]
+ },
+ // See https://github.com/amannn/next-intl/pull/1509
+ "declaration": true
+ },
+ "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
+ "exclude": ["node_modules"]
+}
diff --git a/playground/.gitignore b/playground/.gitignore
new file mode 100644
index 000000000..5ef6a5207
--- /dev/null
+++ b/playground/.gitignore
@@ -0,0 +1,41 @@
+# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
+
+# dependencies
+/node_modules
+/.pnp
+.pnp.*
+.yarn/*
+!.yarn/patches
+!.yarn/plugins
+!.yarn/releases
+!.yarn/versions
+
+# testing
+/coverage
+
+# next.js
+/.next/
+/out/
+
+# production
+/build
+
+# misc
+.DS_Store
+*.pem
+
+# debug
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+.pnpm-debug.log*
+
+# env files (can opt-in for committing if needed)
+.env*
+
+# vercel
+.vercel
+
+# typescript
+*.tsbuildinfo
+next-env.d.ts
diff --git a/playground/README.md b/playground/README.md
new file mode 100644
index 000000000..e215bc4cc
--- /dev/null
+++ b/playground/README.md
@@ -0,0 +1,36 @@
+This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app).
+
+## Getting Started
+
+First, run the development server:
+
+```bash
+npm run dev
+# or
+yarn dev
+# or
+pnpm dev
+# or
+bun dev
+```
+
+Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
+
+You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
+
+This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel.
+
+## Learn More
+
+To learn more about Next.js, take a look at the following resources:
+
+- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
+- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
+
+You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome!
+
+## Deploy on Vercel
+
+The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
+
+Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.
diff --git a/playground/components.json b/playground/components.json
new file mode 100644
index 000000000..edcaef267
--- /dev/null
+++ b/playground/components.json
@@ -0,0 +1,22 @@
+{
+ "$schema": "https://ui.shadcn.com/schema.json",
+ "style": "new-york",
+ "rsc": true,
+ "tsx": true,
+ "tailwind": {
+ "config": "",
+ "css": "src/app/globals.css",
+ "baseColor": "neutral",
+ "cssVariables": true,
+ "prefix": ""
+ },
+ "iconLibrary": "lucide",
+ "aliases": {
+ "components": "@/components",
+ "utils": "@/lib/utils",
+ "ui": "@/components/ui",
+ "lib": "@/lib",
+ "hooks": "@/hooks"
+ },
+ "registries": {}
+}
diff --git a/playground/eslint.config.mjs b/playground/eslint.config.mjs
new file mode 100644
index 000000000..719cea2b5
--- /dev/null
+++ b/playground/eslint.config.mjs
@@ -0,0 +1,25 @@
+import { dirname } from "path";
+import { fileURLToPath } from "url";
+import { FlatCompat } from "@eslint/eslintrc";
+
+const __filename = fileURLToPath(import.meta.url);
+const __dirname = dirname(__filename);
+
+const compat = new FlatCompat({
+ baseDirectory: __dirname,
+});
+
+const eslintConfig = [
+ ...compat.extends("next/core-web-vitals", "next/typescript"),
+ {
+ ignores: [
+ "node_modules/**",
+ ".next/**",
+ "out/**",
+ "build/**",
+ "next-env.d.ts",
+ ],
+ },
+];
+
+export default eslintConfig;
diff --git a/playground/next.config.ts b/playground/next.config.ts
new file mode 100644
index 000000000..e9ffa3083
--- /dev/null
+++ b/playground/next.config.ts
@@ -0,0 +1,7 @@
+import type { NextConfig } from "next";
+
+const nextConfig: NextConfig = {
+ /* config options here */
+};
+
+export default nextConfig;
diff --git a/playground/package.json b/playground/package.json
new file mode 100644
index 000000000..d9cbfed95
--- /dev/null
+++ b/playground/package.json
@@ -0,0 +1,36 @@
+{
+ "name": "playground",
+ "version": "0.1.0",
+ "private": true,
+ "scripts": {
+ "dev": "next dev --turbopack",
+ "build": "next build --turbopack",
+ "start": "next start",
+ "lint": "eslint"
+ },
+ "dependencies": {
+ "@radix-ui/react-scroll-area": "^1.2.10",
+ "@radix-ui/react-slot": "^1.2.3",
+ "class-variance-authority": "^0.7.1",
+ "clsx": "^2.1.1",
+ "codehike": "^1.0.7",
+ "lucide-react": "^0.545.0",
+ "next": "15.5.4",
+ "next-themes": "^0.4.6",
+ "react": "19.1.0",
+ "react-dom": "19.1.0",
+ "tailwind-merge": "^3.3.1"
+ },
+ "devDependencies": {
+ "@eslint/eslintrc": "^3",
+ "@tailwindcss/postcss": "^4",
+ "@types/node": "^20",
+ "@types/react": "^19",
+ "@types/react-dom": "^19",
+ "eslint": "^9",
+ "eslint-config-next": "15.5.4",
+ "tailwindcss": "^4",
+ "tw-animate-css": "^1.4.0",
+ "typescript": "^5"
+ }
+}
diff --git a/playground/postcss.config.mjs b/playground/postcss.config.mjs
new file mode 100644
index 000000000..c7bcb4b1e
--- /dev/null
+++ b/playground/postcss.config.mjs
@@ -0,0 +1,5 @@
+const config = {
+ plugins: ["@tailwindcss/postcss"],
+};
+
+export default config;
diff --git a/playground/public/file.svg b/playground/public/file.svg
new file mode 100644
index 000000000..004145cdd
--- /dev/null
+++ b/playground/public/file.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/playground/public/globe.svg b/playground/public/globe.svg
new file mode 100644
index 000000000..567f17b0d
--- /dev/null
+++ b/playground/public/globe.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/playground/public/next.svg b/playground/public/next.svg
new file mode 100644
index 000000000..5174b28c5
--- /dev/null
+++ b/playground/public/next.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/playground/public/vercel.svg b/playground/public/vercel.svg
new file mode 100644
index 000000000..770539603
--- /dev/null
+++ b/playground/public/vercel.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/playground/public/window.svg b/playground/public/window.svg
new file mode 100644
index 000000000..b2b2a44f6
--- /dev/null
+++ b/playground/public/window.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/playground/src/app/_components/client-providers.tsx b/playground/src/app/_components/client-providers.tsx
new file mode 100644
index 000000000..87863386e
--- /dev/null
+++ b/playground/src/app/_components/client-providers.tsx
@@ -0,0 +1,17 @@
+"use client";
+
+import { ThemeProvider } from "next-themes";
+import React from "react";
+
+export const ClientProviders = ({ children }: { children: React.ReactNode }) => {
+ return (
+
+ {children}
+
+ );
+};
diff --git a/playground/src/app/_components/demo-content.tsx b/playground/src/app/_components/demo-content.tsx
new file mode 100644
index 000000000..73acde7e8
--- /dev/null
+++ b/playground/src/app/_components/demo-content.tsx
@@ -0,0 +1,51 @@
+import { ReactNode } from "react";
+
+export function DemoContent({
+ title,
+ children,
+}: {
+ title: string;
+ children: ReactNode;
+}) {
+ return (
+
+
{title}
+
+ {children}
+
+
+ );
+}
+
+export function CodeBlock({
+ children,
+ language = "tsx",
+}: {
+ children: string;
+ language?: string;
+}) {
+ return (
+
+
+ {children}
+
+
+ );
+}
+
+export function Example({
+ title,
+ children,
+}: {
+ title: string;
+ children: ReactNode;
+}) {
+ return (
+
+
{title}
+
+ {children}
+
+
+ );
+}
diff --git a/playground/src/app/_components/github-link.tsx b/playground/src/app/_components/github-link.tsx
new file mode 100644
index 000000000..1f41aad24
--- /dev/null
+++ b/playground/src/app/_components/github-link.tsx
@@ -0,0 +1,24 @@
+"use client";
+
+import { Github } from "lucide-react";
+import Link from "next/link";
+
+export function GitHubLink({
+ path = "playground/src/app",
+}: {
+ path?: string;
+} = {}) {
+ const url = `https://github.com/amannn/next-intl/tree/main/${path}`;
+
+ return (
+
+
+ View on GitHub
+
+ );
+}
diff --git a/playground/src/app/_components/link-status.tsx b/playground/src/app/_components/link-status.tsx
new file mode 100644
index 000000000..439c04e34
--- /dev/null
+++ b/playground/src/app/_components/link-status.tsx
@@ -0,0 +1,10 @@
+'use client';
+
+import { useLinkStatus } from 'next/link';
+
+export function LinkStatus() {
+ const { pending } = useLinkStatus();
+ return pending ? (
+
+ ) : null;
+}
\ No newline at end of file
diff --git a/playground/src/app/_components/playground-boundary.tsx b/playground/src/app/_components/playground-boundary.tsx
new file mode 100644
index 000000000..b9e3fcbcc
--- /dev/null
+++ b/playground/src/app/_components/playground-boundary.tsx
@@ -0,0 +1,36 @@
+import clsx from "clsx";
+import type React from "react";
+
+export const PlaygroundBoundary = ({
+ children,
+ label,
+ className,
+}: {
+ children: React.ReactNode;
+ label?: string | string[];
+ className?: string;
+}) => {
+ return (
+
+ {label && (
+
+ {(typeof label === "string" ? [label] : label).map((text) => (
+
+ {text}
+
+ ))}
+
+ )}
+
+ {children}
+
+ );
+};
diff --git a/playground/src/app/_components/playground-byline.tsx b/playground/src/app/_components/playground-byline.tsx
new file mode 100644
index 000000000..c7383c877
--- /dev/null
+++ b/playground/src/app/_components/playground-byline.tsx
@@ -0,0 +1,37 @@
+import { PlaygroundBoundary } from "./playground-boundary";
+
+
+export default function PlaygroundByline() {
+ return (
+
+
+
+ );
+}
diff --git a/playground/src/app/_components/playground-sidebar.tsx b/playground/src/app/_components/playground-sidebar.tsx
new file mode 100644
index 000000000..e6bca74f3
--- /dev/null
+++ b/playground/src/app/_components/playground-sidebar.tsx
@@ -0,0 +1,120 @@
+"use client";
+
+import clsx from "clsx";
+import { Menu, X } from "lucide-react";
+import Link from "next/link";
+import { usePathname } from "next/navigation";
+import { Suspense, useState } from "react";
+import { ScrollArea } from "@/components/ui/scroll-area";
+import { Button } from "@/components/ui/button";
+import { ThemeToggle } from "./theme-toggle";
+import { LinkStatus } from "./link-status";
+import { Logo } from "../assets/logo";
+import { sections } from "../assets/navigations";
+
+export function PlaygroundSidebar() {
+ const [isOpen, setIsOpen] = useState(false);
+ const pathname = usePathname();
+ const close = () => setIsOpen(false);
+
+ return (
+
+
+
+
+ Playground
+
+
+
+
+ setIsOpen(!isOpen)}
+ >
+
+ Menu
+
+ {isOpen ? (
+
+ ) : (
+
+ )}
+
+
+
+
+
+
+
+ {sections.map((section) => (
+
+
+ {section.title}
+
+
+ {section.items.map((item) => {
+ const isActive = pathname.startsWith(item.slug);
+ return (
+
+ }
+ >
+
+
+ );
+ })}
+
+
+ ))}
+
+
+
+
+ );
+}
+
+function NavItem({
+ item,
+ isActive,
+ close,
+}: {
+ item: { title: string; slug: string };
+ isActive: boolean;
+ close: () => void;
+}) {
+ return (
+
+ {item.title}
+
+
+ );
+}
diff --git a/playground/src/app/_components/theme-toggle.tsx b/playground/src/app/_components/theme-toggle.tsx
new file mode 100644
index 000000000..a9764f7f1
--- /dev/null
+++ b/playground/src/app/_components/theme-toggle.tsx
@@ -0,0 +1,20 @@
+import { Button } from "@/components/ui/button";
+import { Moon, Sun } from "lucide-react";
+import { useTheme } from "next-themes";
+
+export function ThemeToggle() {
+ const { theme, setTheme } = useTheme();
+ const isDark = theme === "dark";
+
+ return (
+ setTheme(isDark ? "light" : "dark")}
+ className="ml-auto bg-transparent hover:bg-transparent focus:ring-0 focus:ring-offset-0"
+ >
+ {isDark ? : }
+ Toggle theme
+
+ );
+}
diff --git a/playground/src/app/assets/logo.tsx b/playground/src/app/assets/logo.tsx
new file mode 100644
index 000000000..167cf1bca
--- /dev/null
+++ b/playground/src/app/assets/logo.tsx
@@ -0,0 +1,70 @@
+
+export function Logo({ className = "w-12 h-12" }: { className?: string }) {
+ return (
+
+
+
+
+
+
+
+
+
+
+ {/* Dark mode version */}
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/playground/src/app/assets/navigations.ts b/playground/src/app/assets/navigations.ts
new file mode 100644
index 000000000..ffbab8068
--- /dev/null
+++ b/playground/src/app/assets/navigations.ts
@@ -0,0 +1,19 @@
+export const sections = [
+ {
+ title: "Translations",
+ items: [
+ {
+ title: "Server components",
+ slug: "/translations/server-components",
+ description:
+ "Use translations in Server Components to fetch and render locale-specific messages.",
+ },
+ {
+ title: "Client components",
+ slug: "/translations/client-components",
+ description:
+ "Implement translations in Client Components for interactive, dynamic content.",
+ },
+ ],
+ },
+];
diff --git a/playground/src/app/favicon.ico b/playground/src/app/favicon.ico
new file mode 100644
index 000000000..718d6fea4
Binary files /dev/null and b/playground/src/app/favicon.ico differ
diff --git a/playground/src/app/globals.css b/playground/src/app/globals.css
new file mode 100644
index 000000000..56c22a039
--- /dev/null
+++ b/playground/src/app/globals.css
@@ -0,0 +1,154 @@
+@import 'tailwindcss';
+@import 'tw-animate-css';
+
+@custom-variant dark (&:is(.dark *));
+@theme inline {
+ /* System base */
+ --color-background: var(--background);
+ --color-foreground: var(--foreground); /* Semantic colors */
+ --color-border: var(--border);
+ --color-input: var(--input);
+ --color-ring: var(--ring);
+ --color-primary: var(--primary);
+ --color-primary-foreground: var(--primary-foreground);
+ --color-secondary: var(--secondary);
+ --color-secondary-foreground: var(--secondary-foreground);
+ --color-accent: var(--accent);
+ --color-accent-foreground: var(--accent-foreground);
+ --color-muted: var(--muted);
+ --color-muted-foreground: var(--muted-foreground);
+ --color-destructive: var(--destructive);
+ --color-destructive-foreground: var(--destructive-foreground);
+ --color-card: var(--card);
+ --color-card-foreground: var(--card-foreground);
+ --color-popover: var(--popover);
+ --color-popover-foreground: var(--popover-foreground); /* Sidebar */
+ --color-sidebar: var(--sidebar);
+ --color-sidebar-foreground: var(--sidebar-foreground);
+ --color-sidebar-primary: var(--sidebar-primary);
+ --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
+ --color-sidebar-accent: var(--sidebar-accent);
+ --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
+ --color-sidebar-border: var(--sidebar-border);
+ --color-sidebar-ring: var(--sidebar-ring); /* Charts */
+ --color-chart-1: var(--chart-1);
+ --color-chart-2: var(--chart-2);
+ --color-chart-3: var(--chart-3);
+ --color-chart-4: var(--chart-4);
+ --color-chart-5: var(--chart-5); /* Gray scale */
+ --color-gray-50: var(--gray-50);
+ --color-gray-100: var(--gray-100);
+ --color-gray-200: var(--gray-200);
+ --color-gray-300: var(--gray-300);
+ --color-gray-400: var(--gray-400);
+ --color-gray-500: var(--gray-500);
+ --color-gray-600: var(--gray-600);
+ --color-gray-700: var(--gray-700);
+ --color-gray-800: var(--gray-800);
+ --color-gray-900: var(--gray-900); /* Blues */
+ --color-blue-300: var(--blue-300);
+ --color-blue-700: var(--blue-700); /* White */
+ --color-white: var(--white); /* Font */
+ --font-mono:
+ Monaco, ui-monospace, SFMono-Regular, Menlo, Consolas, Liberation Mono,
+ Courier New, monospace;
+}
+
+:root {
+ /* Gray scale */
+ --gray-50: oklch(0.984 0.001 264.5);
+ --gray-100: oklch(0.956 0.001 264.5);
+ --gray-200: oklch(0.89 0.002 264.5);
+ --gray-300: oklch(0.78 0.007 264.5);
+ --gray-400: oklch(0.69 0.013 264.5);
+ --gray-500: oklch(0.59 0.016 264.5);
+ --gray-600: oklch(0.51 0.019 264.5);
+ --gray-700: oklch(0.41 0.019 264.5);
+ --gray-800: oklch(0.31 0.018 264.5);
+ --gray-900: oklch(0.19 0.015 264.5); /* Blues */
+ --blue-300: oklch(0.85 0.15 228);
+ --blue-700: oklch(0.56 0.14 228); /* White */
+ --white: oklch(1 0 0); /* Default light theme values */
+ --background: var(--gray-50);
+ --foreground: var(--gray-900);
+ --card: var(--white);
+ --card-foreground: var(--gray-900);
+ --popover: var(--white);
+ --popover-foreground: var(--gray-900);
+ --primary: var(--blue-700);
+ --primary-foreground: var(--white);
+ --secondary: var(--gray-200);
+ --secondary-foreground: var(--gray-900);
+ --muted: var(--gray-200);
+ --muted-foreground: var(--gray-600);
+ --accent: var(--blue-300);
+ --accent-foreground: var(--gray-900);
+ --destructive: oklch(0.62 0.25 25);
+ --destructive-foreground: var(--white);
+ --border: var(--gray-200);
+ --input: var(--gray-200);
+ --ring: var(--blue-700);
+ --chart-1: var(--blue-700);
+ --chart-2: oklch(0.7 0.17 162.48);
+ --chart-3: oklch(0.76 0.19 70.08);
+ --chart-4: oklch(0.63 0.26 303.9);
+ --chart-5: oklch(0.65 0.25 16.4);
+ --sidebar: var(--gray-50);
+ --sidebar-foreground: var(--gray-900);
+ --sidebar-primary: var(--blue-700);
+ --sidebar-primary-foreground: var(--white);
+ --sidebar-accent: var(--gray-200);
+ --sidebar-accent-foreground: var(--gray-900);
+ --sidebar-border: var(--gray-200);
+ --sidebar-ring: var(--blue-700);
+}
+.dark {
+ /* Surfaces */
+ --background: var(--gray-900);
+ --foreground: var(--gray-50);
+ --card: var(--gray-800);
+ --card-foreground: var(--gray-50);
+ --popover: var(--gray-800);
+ --popover-foreground: var(--gray-50); /* Brand */
+ --primary: var(--blue-300);
+ --primary-foreground: var(--gray-900);
+ --secondary: var(--gray-700);
+ --secondary-foreground: var(--gray-50); /* Semantic */
+ --muted: var(--gray-700);
+ --muted-foreground: var(--gray-300);
+ --accent: var(--blue-700);
+ --accent-foreground: var(--gray-50);
+ --destructive: oklch(0.58 0.2 30);
+ --destructive-foreground: var(--gray-50); /* Borders & inputs */
+ --border: var(--gray-700);
+ --input: var(--gray-700);
+ --ring: var(--blue-300); /* Charts (reversed for contrast) */
+ --chart-1: var(--blue-300);
+ --chart-2: oklch(0.7 0.17 162.48);
+ --chart-3: oklch(0.76 0.19 70.08);
+ --chart-4: oklch(0.63 0.26 303.9);
+ --chart-5: oklch(0.65 0.25 16.4); /* Sidebar */
+ --sidebar: var(--gray-900);
+ --sidebar-foreground: var(--gray-50);
+ --sidebar-primary: var(--blue-300);
+ --sidebar-primary-foreground: var(--gray-900);
+ --sidebar-accent: var(--gray-700);
+ --sidebar-accent-foreground: var(--gray-50);
+ --sidebar-border: var(--gray-700);
+ --sidebar-ring: var(--blue-300);
+}
+
+@layer base {
+ * {
+ @apply border-border outline-ring/50;
+ }
+ body {
+ @apply bg-background text-foreground;
+ }
+}
+@layer base {
+ button:not([disabled]),
+ [role='button']:not([disabled]) {
+ cursor: pointer;
+ }
+}
diff --git a/playground/src/app/layout.tsx b/playground/src/app/layout.tsx
new file mode 100644
index 000000000..8366493e0
--- /dev/null
+++ b/playground/src/app/layout.tsx
@@ -0,0 +1,40 @@
+import type { Metadata } from "next";
+import { Geist, Geist_Mono } from "next/font/google";
+import "./globals.css";
+import { PlaygroundSidebar } from "./_components/playground-sidebar";
+import PlaygroundByline from "./_components/playground-byline";
+import { ClientProviders } from "./_components/client-providers";
+
+const geistSans = Geist({
+ variable: "--font-geist-sans",
+ subsets: ["latin"],
+});
+
+const geistMono = Geist_Mono({
+ variable: "--font-geist-mono",
+ subsets: ["latin"],
+});
+
+export const metadata: Metadata = {
+ title: "Create Next App",
+ description: "Generated by create next app",
+};
+
+export default function RootLayout({ children }: { children: React.ReactNode }) {
+ return (
+
+
+
+
+
+
+
+
+ );
+}
+
diff --git a/playground/src/app/page.tsx b/playground/src/app/page.tsx
new file mode 100644
index 000000000..d07f2b626
--- /dev/null
+++ b/playground/src/app/page.tsx
@@ -0,0 +1,49 @@
+import Link from "next/link";
+import { PlaygroundBoundary } from "./_components/playground-boundary";
+import { sections } from "./assets/navigations";
+import { LinkStatus } from "./_components/link-status";
+
+export default function Home() {
+ return (
+
+
+
+ Welcome to the next-intl Playground
+
+
+ Explore translations, formatting, routing, and patterns using Next.js
+ and next-intl.
+
+
+
+ {sections.map((section) => (
+
+
+ {section.title}
+
+
+
+ {section.items.map((item) => (
+
+
+ {item.title}
+
+
+ {item.description && (
+
+ {item.description}
+
+ )}
+
+ ))}
+
+
+ ))}
+
+
+ );
+}
diff --git a/playground/src/app/translations/client-components/README.md b/playground/src/app/translations/client-components/README.md
new file mode 100644
index 000000000..dca8f50d4
--- /dev/null
+++ b/playground/src/app/translations/client-components/README.md
@@ -0,0 +1,31 @@
+# Client Components
+
+Client Components are interactive components that run in the browser. With next-intl, you can use the `useTranslations()` hook to access translations in your Client Components.
+
+## How it works
+
+In Client Components, you can:
+- Use the `useTranslations()` hook to get translated strings
+- Access locale information with `useLocale()`
+- Provide interactivity while maintaining full i18n support
+- Dynamically update content based on user interactions
+
+## Example usage
+
+```tsx
+'use client';
+
+import { useTranslations } from 'next-intl';
+
+export default function ClientComponent() {
+ const t = useTranslations();
+
+ return (
+ console.log(t('button.label'))}>
+ {t('button.label')}
+
+ );
+}
+```
+
+Learn more in the [next-intl documentation](https://next-intl-docs.vercel.app).
diff --git a/playground/src/app/translations/client-components/[locale]/page.tsx b/playground/src/app/translations/client-components/[locale]/page.tsx
new file mode 100644
index 000000000..e69de29bb
diff --git a/playground/src/app/translations/client-components/client-example.tsx b/playground/src/app/translations/client-components/client-example.tsx
new file mode 100644
index 000000000..ca255d7df
--- /dev/null
+++ b/playground/src/app/translations/client-components/client-example.tsx
@@ -0,0 +1,59 @@
+"use client";
+
+import { useState } from "react";
+
+export function ClientExample() {
+ const [count, setCount] = useState(0);
+
+ // This simulates using translations in a client component
+ // In a real scenario with next-intl configured, you would use:
+ // const t = useTranslations();
+
+ const messages: Record = {
+ greeting: "Welcome to Client Components!",
+ description: "This is an interactive example",
+ button: "Click me",
+ count: `You've clicked the button ${count} times`,
+ reset: "Reset",
+ };
+
+ return (
+
+
+
+ {messages.greeting}
+
+
+ {messages.description}
+
+
+
+
+
setCount(count + 1)}
+ className="w-full bg-primary text-primary-foreground px-4 py-2 rounded-lg hover:opacity-90 transition-opacity font-medium"
+ >
+ {messages.button}
+
+
+
+
{messages.count}
+ {count > 0 && (
+
setCount(0)}
+ className="text-xs text-muted-foreground hover:text-foreground transition-colors"
+ >
+ {messages.reset}
+
+ )}
+
+
+
+
+ ℹ️ This component uses React hooks like{" "}
+ useState which only
+ work in Client Components.
+
+
+ );
+}
diff --git a/playground/src/app/translations/client-components/page.tsx b/playground/src/app/translations/client-components/page.tsx
new file mode 100644
index 000000000..c61b46fe3
--- /dev/null
+++ b/playground/src/app/translations/client-components/page.tsx
@@ -0,0 +1,68 @@
+import { DemoContent, Example } from "@/app/_components/demo-content";
+import { GitHubLink } from "@/app/_components/github-link";
+import { PlaygroundBoundary } from "@/app/_components/playground-boundary";
+import { ClientExample } from "./client-example";
+
+export const metadata = {
+ title: "Client Components - Translations",
+ description: "Learn how to use translations in Client Components",
+};
+
+export default function ClientComponentsPage() {
+ return (
+
+
+
+
+
+ Client Components run in the browser and can use interactive
+ features like hooks. With next-intl, you can use the{" "}
+
+ useTranslations()
+ {" "}
+ hook to access translated strings in your interactive components.
+
+
+
+
When to use:
+
+ Components with interactivity (buttons, forms, etc.)
+ Components using React hooks (useState, useEffect, etc.)
+ Event handlers and user interactions
+ Real-time updates and dynamic content
+
+
+
+
+
Usage example:
+
+ {`'use client';\n\nimport { useTranslations } from 'next-intl';\n\nexport default function Button() {\n const t = useTranslations();\n \n return {t('button.label')} ;\n}`}
+
+
+
+
+ Learn more in the{" "}
+
+ next-intl documentation
+
+ .
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/playground/src/app/translations/server-components/README.md b/playground/src/app/translations/server-components/README.md
new file mode 100644
index 000000000..ac29a8581
--- /dev/null
+++ b/playground/src/app/translations/server-components/README.md
@@ -0,0 +1,24 @@
+# Server Components
+
+Server Components are components that render on the server. With next-intl, you can use the `useTranslations()` hook to get translated strings in your Server Components.
+
+## How it works
+
+In Server Components, you can:
+- Import messages from your i18n configuration
+- Use translations directly without client-side hydration
+- Benefit from better performance as rendering happens on the server
+
+## Example usage
+
+```tsx
+import { useTranslations } from 'next-intl';
+
+export default function ServerPage() {
+ const t = useTranslations();
+
+ return {t('welcome.title')} ;
+}
+```
+
+Learn more in the [next-intl documentation](https://next-intl-docs.vercel.app).
diff --git a/playground/src/app/translations/server-components/[locale]/page.tsx b/playground/src/app/translations/server-components/[locale]/page.tsx
new file mode 100644
index 000000000..e69de29bb
diff --git a/playground/src/app/translations/server-components/page.tsx b/playground/src/app/translations/server-components/page.tsx
new file mode 100644
index 000000000..b9982d925
--- /dev/null
+++ b/playground/src/app/translations/server-components/page.tsx
@@ -0,0 +1,68 @@
+import { DemoContent, Example } from "@/app/_components/demo-content";
+import { GitHubLink } from "@/app/_components/github-link";
+import { PlaygroundBoundary } from "@/app/_components/playground-boundary";
+import { ServerExample } from "./server-example";
+
+export const metadata = {
+ title: "Server Components - Translations",
+ description: "Learn how to use translations in Server Components",
+};
+
+export default function ServerComponentsPage() {
+ return (
+
+
+
+
+
+ Server Components are components that render exclusively on the
+ server. With next-intl, you can seamlessly use the{" "}
+
+ useTranslations()
+ {" "}
+ hook to access translated strings.
+
+
+
+
Benefits:
+
+ Messages are only sent to the server, reducing bundle size
+ No client-side hydration overhead
+ Better performance and faster page loads
+ Ideal for static content and page layouts
+
+
+
+
+
Usage example:
+
+ {`import { useTranslations } from 'next-intl';\n\nexport default function Page() {\n const t = useTranslations();\n return {t('welcome.title')} ;\n}`}
+
+
+
+
+ Learn more in the{" "}
+
+ next-intl documentation
+
+ .
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/playground/src/app/translations/server-components/server-example.tsx b/playground/src/app/translations/server-components/server-example.tsx
new file mode 100644
index 000000000..353d64043
--- /dev/null
+++ b/playground/src/app/translations/server-components/server-example.tsx
@@ -0,0 +1,36 @@
+export function ServerExample() {
+ // This simulates using translations in a server component
+ // In a real scenario with next-intl configured, you would use:
+ // const t = useTranslations();
+
+ const exampleMessages = {
+ welcome: "Welcome to next-intl",
+ description: "This page demonstrates translations in Server Components",
+ feature1: "✓ Server-side rendering",
+ feature2: "✓ No client-side hydration needed",
+ feature3: "✓ Better performance",
+ };
+
+ return (
+
+
+
+ {exampleMessages.welcome}
+
+
+ {exampleMessages.description}
+
+
+
+
+ {[exampleMessages.feature1, exampleMessages.feature2, exampleMessages.feature3].map(
+ (feature, idx) => (
+
+ {feature}
+
+ )
+ )}
+
+
+ );
+}
diff --git a/playground/src/components/ui/button.tsx b/playground/src/components/ui/button.tsx
new file mode 100644
index 000000000..21409a066
--- /dev/null
+++ b/playground/src/components/ui/button.tsx
@@ -0,0 +1,60 @@
+import * as React from "react"
+import { Slot } from "@radix-ui/react-slot"
+import { cva, type VariantProps } from "class-variance-authority"
+
+import { cn } from "@/lib/utils"
+
+const buttonVariants = cva(
+ "inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive",
+ {
+ variants: {
+ variant: {
+ default: "bg-primary text-primary-foreground hover:bg-primary/90",
+ destructive:
+ "bg-destructive text-white hover:bg-destructive/90 focus-visible:ring-destructive/20 dark:focus-visible:ring-destructive/40 dark:bg-destructive/60",
+ outline:
+ "border bg-background shadow-xs hover:bg-accent hover:text-accent-foreground dark:bg-input/30 dark:border-input dark:hover:bg-input/50",
+ secondary:
+ "bg-secondary text-secondary-foreground hover:bg-secondary/80",
+ ghost:
+ "hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50",
+ link: "text-primary underline-offset-4 hover:underline",
+ },
+ size: {
+ default: "h-9 px-4 py-2 has-[>svg]:px-3",
+ sm: "h-8 rounded-md gap-1.5 px-3 has-[>svg]:px-2.5",
+ lg: "h-10 rounded-md px-6 has-[>svg]:px-4",
+ icon: "size-9",
+ "icon-sm": "size-8",
+ "icon-lg": "size-10",
+ },
+ },
+ defaultVariants: {
+ variant: "default",
+ size: "default",
+ },
+ }
+)
+
+function Button({
+ className,
+ variant,
+ size,
+ asChild = false,
+ ...props
+}: React.ComponentProps<"button"> &
+ VariantProps & {
+ asChild?: boolean
+ }) {
+ const Comp = asChild ? Slot : "button"
+
+ return (
+
+ )
+}
+
+export { Button, buttonVariants }
diff --git a/playground/src/components/ui/scroll-area.tsx b/playground/src/components/ui/scroll-area.tsx
new file mode 100644
index 000000000..8e4fa13f6
--- /dev/null
+++ b/playground/src/components/ui/scroll-area.tsx
@@ -0,0 +1,58 @@
+"use client"
+
+import * as React from "react"
+import * as ScrollAreaPrimitive from "@radix-ui/react-scroll-area"
+
+import { cn } from "@/lib/utils"
+
+function ScrollArea({
+ className,
+ children,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+
+ {children}
+
+
+
+
+ )
+}
+
+function ScrollBar({
+ className,
+ orientation = "vertical",
+ ...props
+}: React.ComponentProps) {
+ return (
+
+
+
+ )
+}
+
+export { ScrollArea, ScrollBar }
diff --git a/playground/src/lib/utils.ts b/playground/src/lib/utils.ts
new file mode 100644
index 000000000..bd0c391dd
--- /dev/null
+++ b/playground/src/lib/utils.ts
@@ -0,0 +1,6 @@
+import { clsx, type ClassValue } from "clsx"
+import { twMerge } from "tailwind-merge"
+
+export function cn(...inputs: ClassValue[]) {
+ return twMerge(clsx(inputs))
+}
diff --git a/playground/tsconfig.json b/playground/tsconfig.json
new file mode 100644
index 000000000..c1334095f
--- /dev/null
+++ b/playground/tsconfig.json
@@ -0,0 +1,27 @@
+{
+ "compilerOptions": {
+ "target": "ES2017",
+ "lib": ["dom", "dom.iterable", "esnext"],
+ "allowJs": true,
+ "skipLibCheck": true,
+ "strict": true,
+ "noEmit": true,
+ "esModuleInterop": true,
+ "module": "esnext",
+ "moduleResolution": "bundler",
+ "resolveJsonModule": true,
+ "isolatedModules": true,
+ "jsx": "preserve",
+ "incremental": true,
+ "plugins": [
+ {
+ "name": "next"
+ }
+ ],
+ "paths": {
+ "@/*": ["./src/*"]
+ }
+ },
+ "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
+ "exclude": ["node_modules"]
+}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index c1852bd69..d1fdaf2e6 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -60,10 +60,10 @@ importers:
version: 14.2.24(@playwright/test@1.55.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
nextra:
specifier: ^3.3.1
- version: 3.3.1(@types/react@19.2.2)(acorn@8.15.0)(next@14.2.24(@playwright/test@1.55.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.2)
+ version: 3.3.1(@types/react@19.2.2)(acorn@8.14.1)(next@14.2.24(@playwright/test@1.55.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.2)
nextra-theme-docs:
specifier: ^3.3.1
- version: 3.3.1(patch_hash=37qjvtnqoj5dxgzxofrrj6xcdq)(next@14.2.24(@playwright/test@1.55.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(nextra@3.3.1(@types/react@19.2.2)(acorn@8.15.0)(next@14.2.24(@playwright/test@1.55.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.2))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 3.3.1(patch_hash=37qjvtnqoj5dxgzxofrrj6xcdq)(next@14.2.24(@playwright/test@1.55.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(nextra@3.3.1(@types/react@19.2.2)(acorn@8.14.1)(next@14.2.24(@playwright/test@1.55.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.2))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react:
specifier: ^18.3.1
version: 18.3.1
@@ -91,10 +91,10 @@ importers:
version: 10.4.21(postcss@8.5.3)
eslint:
specifier: 9.11.1
- version: 9.11.1(jiti@2.4.2)
+ version: 9.11.1(jiti@2.5.1)
eslint-config-molindo:
specifier: ^8.0.0
- version: 8.0.0(@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint@9.11.1(jiti@2.4.2))(jest@29.7.0(@types/node@20.17.24))(tailwindcss@3.4.17)(typescript@5.8.2)(vitest@3.0.8(@edge-runtime/vm@5.0.0)(@types/debug@4.1.12)(@types/node@20.17.24)(jiti@2.4.2)(jsdom@27.1.0)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0))
+ version: 8.0.0(@typescript-eslint/eslint-plugin@8.46.3(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.11.1(jiti@2.5.1))(jest@29.7.0(@types/node@20.17.24))(tailwindcss@3.4.17)(typescript@5.8.2)(vitest@3.0.8(@edge-runtime/vm@5.0.0)(@types/debug@4.1.12)(@types/node@20.17.24)(jiti@2.5.1)(jsdom@26.0.0)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0))
fast-glob:
specifier: ^3.3.3
version: 3.3.3
@@ -146,7 +146,7 @@ importers:
version: 1.55.0
'@testing-library/react':
specifier: ^16.2.0
- version: 16.2.0(@testing-library/dom@10.4.1)(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ version: 16.2.0(@testing-library/dom@10.4.0)(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
'@types/jest':
specifier: ^29.5.12
version: 29.5.14
@@ -164,10 +164,10 @@ importers:
version: 10.4.21(postcss@8.5.3)
eslint:
specifier: ^9.38.0
- version: 9.38.0(jiti@2.4.2)
+ version: 9.39.1(jiti@2.5.1)
eslint-config-next:
specifier: ^16.0.1
- version: 16.0.1(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)
+ version: 16.0.1(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)
jest:
specifier: ^29.7.0
version: 29.7.0(@types/node@20.17.24)
@@ -207,16 +207,16 @@ importers:
version: 19.2.2
'@types/react-dom':
specifier: ^19.2.0
- version: 19.2.2(@types/react@19.2.2)
+ version: 19.2.1(@types/react@19.2.2)
'@vitejs/plugin-react':
specifier: ^4.3.4
- version: 4.3.4(vite@6.2.1(@types/node@22.13.10)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0))
+ version: 4.3.4(vite@6.2.1(@types/node@22.13.10)(jiti@2.5.1)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0))
eslint:
specifier: ^9.38.0
- version: 9.38.0(jiti@2.4.2)
+ version: 9.39.1(jiti@2.5.1)
eslint-config-next:
specifier: ^16.0.1
- version: 16.0.1(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)
+ version: 16.0.1(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)
prettier:
specifier: ^3.3.3
version: 3.5.3
@@ -225,7 +225,7 @@ importers:
version: 5.8.2
vitest:
specifier: ^3.0.8
- version: 3.0.8(@edge-runtime/vm@5.0.0)(@types/debug@4.1.12)(@types/node@22.13.10)(jiti@2.4.2)(jsdom@27.1.0)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0)
+ version: 3.0.8(@edge-runtime/vm@5.0.0)(@types/debug@4.1.12)(@types/node@22.13.10)(jiti@2.5.1)(jsdom@26.0.0)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0)
examples/example-app-router-migration:
dependencies:
@@ -256,10 +256,10 @@ importers:
version: 19.2.2
eslint:
specifier: ^9.38.0
- version: 9.38.0(jiti@2.4.2)
+ version: 9.39.1(jiti@2.5.1)
eslint-config-next:
specifier: ^16.0.1
- version: 16.0.1(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)
+ version: 16.0.1(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)
prettier:
specifier: ^3.3.3
version: 3.5.3
@@ -302,10 +302,10 @@ importers:
version: 10.4.21(postcss@8.5.3)
eslint:
specifier: ^9.38.0
- version: 9.38.0(jiti@2.4.2)
+ version: 9.39.1(jiti@2.5.1)
eslint-config-next:
specifier: ^16.0.1
- version: 16.0.1(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)
+ version: 16.0.1(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)
postcss:
specifier: ^8.5.3
version: 8.5.3
@@ -323,7 +323,7 @@ importers:
version: 16.0.1(@babel/core@7.26.10)(@playwright/test@1.55.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
next-auth:
specifier: ^4.24.11
- version: 4.24.11(next@16.0.1(@playwright/test@1.55.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ version: 4.24.11(next@16.0.1(@babel/core@7.26.10)(@playwright/test@1.55.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
next-intl:
specifier: ^4.0.0
version: link:../../packages/next-intl
@@ -351,10 +351,10 @@ importers:
version: 19.2.2
eslint:
specifier: ^9.38.0
- version: 9.38.0(jiti@2.4.2)
+ version: 9.39.1(jiti@2.5.1)
eslint-config-next:
specifier: ^16.0.1
- version: 16.0.1(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)
+ version: 16.0.1(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)
prettier:
specifier: ^3.3.3
version: 3.5.3
@@ -362,11 +362,69 @@ importers:
specifier: ^5.5.3
version: 5.8.2
+ examples/example-app-router-patterns:
+ dependencies:
+ clsx:
+ specifier: ^2.1.1
+ version: 2.1.1
+ next:
+ specifier: ^15.5.0
+ version: 15.5.0(@playwright/test@1.55.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ next-intl:
+ specifier: ^4.0.0
+ version: link:../../packages/next-intl
+ react:
+ specifier: ^19.0.0
+ version: 19.0.0
+ react-dom:
+ specifier: ^19.0.0
+ version: 19.0.0(react@19.0.0)
+ tailwindcss:
+ specifier: ^4.1.12
+ version: 4.1.12
+ devDependencies:
+ '@eslint/eslintrc':
+ specifier: ^3.1.0
+ version: 3.3.0
+ '@tailwindcss/postcss':
+ specifier: ^4.1.12
+ version: 4.1.12
+ '@types/node':
+ specifier: ^20.14.5
+ version: 20.17.24
+ '@types/react':
+ specifier: ^19.0.0
+ version: 19.2.2
+ '@types/react-dom':
+ specifier: ^19.0.0
+ version: 19.2.1(@types/react@19.2.2)
+ eslint:
+ specifier: 9.11.1
+ version: 9.11.1(jiti@2.5.1)
+ eslint-config-next:
+ specifier: ^15.5.0
+ version: 15.5.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)
+ postcss:
+ specifier: ^8.5.3
+ version: 8.5.3
+ prettier:
+ specifier: ^3.3.3
+ version: 3.5.3
+ prettier-plugin-organize-imports:
+ specifier: ^4.2.0
+ version: 4.2.0(prettier@3.5.3)(typescript@5.8.2)
+ prettier-plugin-tailwindcss:
+ specifier: ^0.6.14
+ version: 0.6.14(prettier-plugin-organize-imports@4.2.0(prettier@3.5.3)(typescript@5.8.2))(prettier@3.5.3)
+ typescript:
+ specifier: ^5.5.3
+ version: 5.8.2
+
examples/example-app-router-playground:
dependencies:
'@radix-ui/react-dropdown-menu':
specifier: ^2.1.6
- version: 2.1.6(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ version: 2.1.6(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
lodash:
specifier: ^4.17.21
version: 4.17.21
@@ -418,7 +476,7 @@ importers:
version: 8.6.4(@storybook/test@8.6.4(storybook@8.6.4(prettier@3.5.3)))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(storybook@8.6.4(prettier@3.5.3))(typescript@5.8.2)
'@testing-library/react':
specifier: ^16.2.0
- version: 16.2.0(@testing-library/dom@10.4.0)(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ version: 16.2.0(@testing-library/dom@10.4.0)(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
'@types/jest':
specifier: ^29.5.12
version: 29.5.14
@@ -442,10 +500,10 @@ importers:
version: 6.11.0(webpack@5.98.0(esbuild@0.25.1))
eslint:
specifier: ^9.38.0
- version: 9.38.0(jiti@2.4.2)
+ version: 9.39.1(jiti@2.5.1)
eslint-config-next:
specifier: ^16.0.1
- version: 16.0.1(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)
+ version: 16.0.1(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)
jest:
specifier: ^29.7.0
version: 29.7.0(@types/node@20.17.24)
@@ -500,10 +558,10 @@ importers:
version: 19.2.2
eslint:
specifier: ^9.38.0
- version: 9.38.0(jiti@2.4.2)
+ version: 9.39.1(jiti@2.5.1)
eslint-config-next:
specifier: ^16.0.1
- version: 16.0.1(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)
+ version: 16.0.1(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)
prettier:
specifier: ^3.3.3
version: 3.5.3
@@ -518,7 +576,7 @@ importers:
version: 2.2.0(react@19.2.0)
'@radix-ui/react-select':
specifier: ^2.1.6
- version: 2.1.6(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ version: 2.1.6(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
clsx:
specifier: ^2.1.1
version: 2.1.1
@@ -558,16 +616,16 @@ importers:
version: 19.2.2
'@types/react-dom':
specifier: ^19.2.0
- version: 19.2.2(@types/react@19.2.2)
+ version: 19.2.1(@types/react@19.2.2)
autoprefixer:
specifier: ^10.4.19
version: 10.4.21(postcss@8.5.3)
eslint:
specifier: ^9.38.0
- version: 9.38.0(jiti@2.4.2)
+ version: 9.39.1(jiti@2.5.1)
eslint-config-next:
specifier: ^16.0.1
- version: 16.0.1(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)
+ version: 16.0.1(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)
postcss:
specifier: ^8.5.3
version: 8.5.3
@@ -613,10 +671,10 @@ importers:
version: 19.2.2
eslint:
specifier: ^9.38.0
- version: 9.38.0(jiti@2.4.2)
+ version: 9.39.1(jiti@2.5.1)
eslint-config-next:
specifier: ^16.0.1
- version: 16.0.1(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)
+ version: 16.0.1(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)
prettier:
specifier: ^3.3.3
version: 3.5.3
@@ -650,7 +708,7 @@ importers:
version: 3.3.0
'@testing-library/react':
specifier: ^16.2.0
- version: 16.2.0(@testing-library/dom@10.4.1)(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ version: 16.2.0(@testing-library/dom@10.4.0)(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
'@types/accept-language-parser':
specifier: ^1.5.7
version: 1.5.7
@@ -668,10 +726,10 @@ importers:
version: 19.2.2
eslint:
specifier: ^9.38.0
- version: 9.38.0(jiti@2.4.2)
+ version: 9.39.1(jiti@2.5.1)
eslint-config-next:
specifier: ^16.0.1
- version: 16.0.1(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)
+ version: 16.0.1(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)
jest:
specifier: ^29.7.0
version: 29.7.0(@types/node@20.17.24)
@@ -708,7 +766,7 @@ importers:
dependencies:
'@expo/webpack-config':
specifier: ^0.17.2
- version: 0.17.4(encoding@0.1.13)(eslint@9.38.0(jiti@2.4.2))(expo@47.0.14(@babel/core@7.26.10)(encoding@0.1.13))(typescript@5.8.2)
+ version: 0.17.4(encoding@0.1.13)(eslint@9.39.1(jiti@2.5.1))(expo@47.0.14(@babel/core@7.26.10)(encoding@0.1.13))(typescript@5.8.2)
expo:
specifier: ~47.0.12
version: 47.0.14(@babel/core@7.26.10)(encoding@0.1.13)
@@ -764,7 +822,7 @@ importers:
devDependencies:
'@remix-run/dev':
specifier: ^2.9.2
- version: 2.16.0(@remix-run/react@2.16.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.2))(@remix-run/serve@2.16.0(typescript@5.8.2))(@types/node@22.13.10)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(typescript@5.8.2)(vite@6.2.1(@types/node@22.13.10)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0))(yaml@2.7.0)
+ version: 2.16.0(@remix-run/react@2.16.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.2))(@remix-run/serve@2.16.0(typescript@5.8.2))(@types/node@22.13.10)(jiti@2.5.1)(lightningcss@1.30.1)(terser@5.39.0)(typescript@5.8.2)(vite@6.2.1(@types/node@22.13.10)(jiti@2.5.1)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0))(yaml@2.7.0)
'@types/accept-language-parser':
specifier: ^1.5.7
version: 1.5.7
@@ -798,10 +856,10 @@ importers:
version: 19.2.2
'@types/react-dom':
specifier: ^19.2.0
- version: 19.2.2(@types/react@19.2.2)
+ version: 19.2.1(@types/react@19.2.2)
'@vitejs/plugin-react':
specifier: ^4.3.4
- version: 4.3.4(vite@6.2.1(@types/node@22.13.10)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0))
+ version: 4.3.4(vite@6.2.1(@types/node@22.13.10)(jiti@2.5.1)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0))
prettier:
specifier: ^3.3.3
version: 3.5.3
@@ -810,7 +868,7 @@ importers:
version: 5.8.2
vite:
specifier: ^6.2.1
- version: 6.2.1(@types/node@22.13.10)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0)
+ version: 6.2.1(@types/node@22.13.10)(jiti@2.5.1)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0)
packages/next-intl:
dependencies:
@@ -819,7 +877,7 @@ importers:
version: 0.5.10
'@swc/core':
specifier: ^1.13.19
- version: 1.13.19
+ version: 1.15.1
negotiator:
specifier: ^1.0.0
version: 1.0.0
@@ -838,7 +896,7 @@ importers:
version: 11.2.0(size-limit@11.2.0)
'@testing-library/react':
specifier: ^16.2.0
- version: 16.2.0(@testing-library/dom@10.4.1)(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ version: 16.2.0(@testing-library/dom@10.4.0)(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
'@types/negotiator':
specifier: ^0.6.3
version: 0.6.3
@@ -850,19 +908,19 @@ importers:
version: 19.2.2
'@types/react-dom':
specifier: ^19.2.0
- version: 19.2.2(@types/react@19.2.2)
+ version: 19.2.1(@types/react@19.2.2)
'@types/webpack':
specifier: ^5.28.5
- version: 5.28.5(@swc/core@1.13.19)
+ version: 5.28.5(@swc/core@1.15.1)
eslint:
specifier: 9.11.1
- version: 9.11.1(jiti@2.4.2)
+ version: 9.11.1(jiti@2.5.1)
eslint-config-molindo:
specifier: ^8.0.0
- version: 8.0.0(@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(@typescript-eslint/parser@8.46.2(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint@9.11.1(jiti@2.4.2))(jest@29.7.0(@types/node@20.17.24))(tailwindcss@4.0.13)(typescript@5.8.2)(vitest@3.0.8(@edge-runtime/vm@5.0.0)(@types/debug@4.1.12)(@types/node@20.17.24)(jiti@2.4.2)(jsdom@27.1.0)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0))
+ version: 8.0.0(@typescript-eslint/eslint-plugin@8.46.3(@typescript-eslint/parser@8.46.3(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(@typescript-eslint/parser@8.46.3(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.11.1(jiti@2.5.1))(jest@29.7.0(@types/node@20.17.24))(tailwindcss@4.1.12)(typescript@5.8.2)(vitest@3.0.8(@edge-runtime/vm@5.0.0)(@types/debug@4.1.12)(@types/node@20.17.24)(jiti@2.5.1)(jsdom@26.0.0)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0))
eslint-plugin-react-compiler:
specifier: 0.0.0-experimental-8e3b87c-20240822
- version: 0.0.0-experimental-8e3b87c-20240822(eslint@9.11.1(jiti@2.4.2))
+ version: 0.0.0-experimental-8e3b87c-20240822(eslint@9.11.1(jiti@2.5.1))
next:
specifier: ^16.0.1
version: 16.0.1(@babel/core@7.26.10)(@playwright/test@1.55.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
@@ -898,7 +956,7 @@ importers:
version: 5.8.2
vitest:
specifier: ^3.0.8
- version: 3.0.8(@edge-runtime/vm@5.0.0)(@types/debug@4.1.12)(@types/node@20.17.24)(jiti@2.4.2)(jsdom@27.1.0)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0)
+ version: 3.0.8(@edge-runtime/vm@5.0.0)(@types/debug@4.1.12)(@types/node@20.17.24)(jiti@2.5.1)(jsdom@26.0.0)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0)
packages/use-intl:
dependencies:
@@ -920,7 +978,7 @@ importers:
version: 11.2.0(size-limit@11.2.0)
'@testing-library/react':
specifier: ^16.2.0
- version: 16.2.0(@testing-library/dom@10.4.1)(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ version: 16.2.0(@testing-library/dom@10.4.0)(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
'@types/node':
specifier: ^20.14.5
version: 20.17.24
@@ -929,19 +987,19 @@ importers:
version: 19.2.2
'@types/react-dom':
specifier: ^19.2.0
- version: 19.2.2(@types/react@19.2.2)
+ version: 19.2.1(@types/react@19.2.2)
date-fns:
specifier: ^4.1.0
version: 4.1.0
eslint:
specifier: 9.11.1
- version: 9.11.1(jiti@2.4.2)
+ version: 9.11.1(jiti@2.5.1)
eslint-config-molindo:
specifier: ^8.0.0
- version: 8.0.0(@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(@typescript-eslint/parser@8.46.2(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint@9.11.1(jiti@2.4.2))(jest@29.7.0(@types/node@20.17.24))(tailwindcss@4.0.13)(typescript@5.8.2)(vitest@3.0.8(@edge-runtime/vm@5.0.0)(@types/debug@4.1.12)(@types/node@20.17.24)(jiti@2.4.2)(jsdom@27.1.0)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0))
+ version: 8.0.0(@typescript-eslint/eslint-plugin@8.46.3(@typescript-eslint/parser@8.46.3(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(@typescript-eslint/parser@8.46.3(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.11.1(jiti@2.5.1))(jest@29.7.0(@types/node@20.17.24))(tailwindcss@4.1.12)(typescript@5.8.2)(vitest@3.0.8(@edge-runtime/vm@5.0.0)(@types/debug@4.1.12)(@types/node@20.17.24)(jiti@2.5.1)(jsdom@26.0.0)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0))
eslint-plugin-react-compiler:
specifier: 0.0.0-experimental-8e3b87c-20240822
- version: 0.0.0-experimental-8e3b87c-20240822(eslint@9.11.1(jiti@2.4.2))
+ version: 0.0.0-experimental-8e3b87c-20240822(eslint@9.11.1(jiti@2.5.1))
prettier:
specifier: ^3.3.3
version: 3.5.3
@@ -971,7 +1029,74 @@ importers:
version: 5.8.2
vitest:
specifier: ^3.0.8
- version: 3.0.8(@edge-runtime/vm@5.0.0)(@types/debug@4.1.12)(@types/node@20.17.24)(jiti@2.4.2)(jsdom@27.1.0)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0)
+ version: 3.0.8(@edge-runtime/vm@5.0.0)(@types/debug@4.1.12)(@types/node@20.17.24)(jiti@2.5.1)(jsdom@26.0.0)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0)
+
+ playground:
+ dependencies:
+ '@radix-ui/react-scroll-area':
+ specifier: ^1.2.10
+ version: 1.2.10(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-slot':
+ specifier: ^1.2.3
+ version: 1.2.4(@types/react@19.2.2)(react@19.1.0)
+ class-variance-authority:
+ specifier: ^0.7.1
+ version: 0.7.1
+ clsx:
+ specifier: ^2.1.1
+ version: 2.1.1
+ codehike:
+ specifier: ^1.0.7
+ version: 1.0.7
+ lucide-react:
+ specifier: ^0.545.0
+ version: 0.545.0(react@19.1.0)
+ next:
+ specifier: 15.5.4
+ version: 15.5.4(@playwright/test@1.55.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ next-themes:
+ specifier: ^0.4.6
+ version: 0.4.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react:
+ specifier: 19.1.0
+ version: 19.1.0
+ react-dom:
+ specifier: 19.1.0
+ version: 19.1.0(react@19.1.0)
+ tailwind-merge:
+ specifier: ^3.3.1
+ version: 3.3.1
+ devDependencies:
+ '@eslint/eslintrc':
+ specifier: ^3
+ version: 3.3.0
+ '@tailwindcss/postcss':
+ specifier: ^4
+ version: 4.1.12
+ '@types/node':
+ specifier: ^20
+ version: 20.17.24
+ '@types/react':
+ specifier: ^19
+ version: 19.2.2
+ '@types/react-dom':
+ specifier: ^19
+ version: 19.2.1(@types/react@19.2.2)
+ eslint:
+ specifier: ^9
+ version: 9.11.1(jiti@2.5.1)
+ eslint-config-next:
+ specifier: 15.5.4
+ version: 15.5.4(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)
+ tailwindcss:
+ specifier: ^4
+ version: 4.1.12
+ tw-animate-css:
+ specifier: ^1.4.0
+ version: 1.4.0
+ typescript:
+ specifier: ^5
+ version: 5.8.2
tools:
devDependencies:
@@ -1001,10 +1126,10 @@ importers:
version: 0.4.4(rollup@4.35.0)
eslint:
specifier: ^9.38.0
- version: 9.38.0(jiti@2.4.2)
+ version: 9.39.1(jiti@2.5.1)
eslint-config-molindo:
specifier: ^8.0.0
- version: 8.0.0(@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.38.0(jiti@2.4.2))(jest@29.7.0(@types/node@22.13.10))(tailwindcss@4.0.13)(typescript@5.8.2)(vitest@3.0.8(@edge-runtime/vm@5.0.0)(@types/debug@4.1.12)(@types/node@22.13.10)(jiti@2.4.2)(jsdom@27.1.0)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0))
+ version: 8.0.0(@typescript-eslint/eslint-plugin@8.46.3(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.39.1(jiti@2.5.1))(jest@29.7.0(@types/node@22.13.10))(tailwindcss@4.1.12)(typescript@5.8.2)(vitest@3.0.8(@edge-runtime/vm@5.0.0)(@types/debug@4.1.12)(@types/node@22.13.10)(jiti@2.5.1)(jsdom@26.0.0)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0))
execa:
specifier: ^9.5.2
version: 9.5.2
@@ -1029,9 +1154,6 @@ packages:
resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
engines: {node: '>=0.10.0'}
- '@acemir/cssom@0.9.19':
- resolution: {integrity: sha512-Pp2gAQXPZ2o7lt4j0IMwNRXqQ3pagxtDj5wctL5U2Lz4oV0ocDNlkgx4DpxfyKav4S/bePuI+SMqcBSUHLy9kg==}
-
'@adobe/css-tools@4.4.2':
resolution: {integrity: sha512-baYZExFpsdkBNuvGKTKWCwKH57HRZLVtycZS05WTQNVOiXVSeAki3nU35zlRbToeMW8aHlJfyS+1C4BOv27q0A==}
@@ -1133,24 +1255,18 @@ packages:
resolution: {integrity: sha512-Izvir8iIoU+X4SKtDAa5kpb+9cpifclzsbA8x/AZY0k0gIfXYQ1fa1B6Epfe6vNA2YfDX8VtrZFgvnXB6aPEoQ==}
engines: {node: '>=18'}
- '@asamuzakjp/css-color@4.0.5':
- resolution: {integrity: sha512-lMrXidNhPGsDjytDy11Vwlb6OIGrT3CmLg3VWNFyWkLWtijKl7xjvForlh8vuj0SHGjgl4qZEQzUmYTeQA2JFQ==}
-
- '@asamuzakjp/dom-selector@6.7.4':
- resolution: {integrity: sha512-buQDjkm+wDPXd6c13534URWZqbz0RP5PAhXZ+LIoa5LgwInT9HVJvGIJivg75vi8I13CxDGdTnz+aY5YUJlIAA==}
-
- '@asamuzakjp/nwsapi@2.3.9':
- resolution: {integrity: sha512-n8GuYSrI9bF7FFZ/SjhwevlHc8xaVlb/7HmHelnc/PZXBD2ZR49NnN9sMMuDdEGPeeRQ5d0hqlSlEpgCX3Wl0Q==}
+ '@asamuzakjp/css-color@3.1.1':
+ resolution: {integrity: sha512-hpRD68SV2OMcZCsrbdkccTw5FXjNDLo5OuqSHyHZfwweGsDWZwDJ2+gONyNAbazZclobMirACLw0lk8WVxIqxA==}
'@babel/code-frame@7.10.4':
resolution: {integrity: sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==}
- '@babel/code-frame@7.26.2':
- resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
+ '@babel/code-frame@7.25.9':
+ resolution: {integrity: sha512-z88xeGxnzehn2sqZ8UdGQEvYErF1odv2CftxInpSYJt6uHuPe9YjahKZITGs3l5LeI9d2ROG+obuDAoSlqbNfQ==}
engines: {node: '>=6.9.0'}
- '@babel/code-frame@7.27.1':
- resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
+ '@babel/code-frame@7.26.2':
+ resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
engines: {node: '>=6.9.0'}
'@babel/compat-data@7.25.9':
@@ -1177,10 +1293,6 @@ packages:
resolution: {integrity: sha512-rRHT8siFIXQrAYOYqZQVsAr8vJ+cBNqcVAY6m5V8/4QqzaPl+zDBe6cLEPRDuNOUf3ww8RfJVlOyQMoSI+5Ang==}
engines: {node: '>=6.9.0'}
- '@babel/generator@7.28.3':
- resolution: {integrity: sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-annotate-as-pure@7.25.9':
resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==}
engines: {node: '>=6.9.0'}
@@ -1220,8 +1332,12 @@ packages:
resolution: {integrity: sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-globals@7.28.0':
- resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
+ '@babel/helper-function-name@7.24.7':
+ resolution: {integrity: sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-hoist-variables@7.24.7':
+ resolution: {integrity: sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-member-expression-to-functions@7.25.9':
@@ -1282,6 +1398,10 @@ packages:
resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-split-export-declaration@7.24.7':
+ resolution: {integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-string-parser@7.24.7':
resolution: {integrity: sha512-7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg==}
engines: {node: '>=6.9.0'}
@@ -1290,10 +1410,6 @@ packages:
resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-string-parser@7.27.1':
- resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-validator-identifier@7.24.7':
resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==}
engines: {node: '>=6.9.0'}
@@ -1306,10 +1422,6 @@ packages:
resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-identifier@7.27.1':
- resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-validator-option@7.25.9':
resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
engines: {node: '>=6.9.0'}
@@ -1991,28 +2103,36 @@ packages:
resolution: {integrity: sha512-2WJMeRQPHKSPemqk/awGrAiuFfzBmOIPXKizAsVhWH9YJqLZ0H+HS4c8loHGgW6utJ3E/ejXQUsiGaQy2NZ9Fw==}
engines: {node: '>=6.9.0'}
+ '@babel/template@7.25.9':
+ resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==}
+ engines: {node: '>=6.9.0'}
+
'@babel/template@7.26.9':
resolution: {integrity: sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA==}
engines: {node: '>=6.9.0'}
- '@babel/template@7.27.2':
- resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
+ '@babel/traverse@7.24.7':
+ resolution: {integrity: sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/traverse@7.25.9':
+ resolution: {integrity: sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.28.4':
- resolution: {integrity: sha512-YEzuboP2qvQavAcjgQNVgsvHIDv6ZpwXvcvjmyySP2DIMuByS/6ioU5G9pYrWHM6T2YDfc7xga9iNzYOs12CFQ==}
+ '@babel/traverse@7.26.10':
+ resolution: {integrity: sha512-k8NuDrxr0WrPH5Aupqb2LCVURP/S0vBEn5mK6iH+GIYob66U5EtoZvcdudR2jQ4cmTwhEwW1DLB+Yyas9zjF6A==}
engines: {node: '>=6.9.0'}
'@babel/types@7.24.7':
resolution: {integrity: sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.26.10':
- resolution: {integrity: sha512-emqcG3vHrpxUKTrxcblR36dcrcoRDvKmnL/dCL6ZsHaShW80qxCAcNhzQZrpeM765VzEos+xOi4s+r4IXzTwdQ==}
+ '@babel/types@7.25.9':
+ resolution: {integrity: sha512-OwS2CM5KocvQ/k7dFJa8i5bNGJP0hXWfVCfDkqRFP1IreH1JDC7wG6eCYCi0+McbfT8OR/kNqsI0UU0xP9H6PQ==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.28.4':
- resolution: {integrity: sha512-bkFqkLhh3pMBUQQkpVgWDWq/lqzc2678eUyDlTBhRqhCHFguYYGM0Efga7tYk4TogG/3x0EEl66/OQ+WGbWB/Q==}
+ '@babel/types@7.26.10':
+ resolution: {integrity: sha512-emqcG3vHrpxUKTrxcblR36dcrcoRDvKmnL/dCL6ZsHaShW80qxCAcNhzQZrpeM765VzEos+xOi4s+r4IXzTwdQ==}
engines: {node: '>=6.9.0'}
'@bcoe/v8-coverage@0.2.3':
@@ -2039,6 +2159,9 @@ packages:
'@chevrotain/utils@11.0.3':
resolution: {integrity: sha512-YslZMgtJUyuMbZ+aKvfF3x1f5liK4mWNxghFRv7jqRR9C3R3fAOGTTKvxXDa2Y1s9zSbcpuO0cAxDYsc9SrXoQ==}
+ '@code-hike/lighter@1.0.1':
+ resolution: {integrity: sha512-mccvcsk5UTScRrE02oBz1/qzckyhD8YE3VQlQv++2bSVVZgNuCUX8MpokSCi5OmfRAAxbj6kmNiqq1Um8eXPrw==}
+
'@colors/colors@1.5.0':
resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==}
engines: {node: '>=0.1.90'}
@@ -2046,36 +2169,32 @@ packages:
'@corex/deepmerge@4.0.43':
resolution: {integrity: sha512-N8uEMrMPL0cu/bdboEWpQYb/0i2K5Qn8eCsxzOmxSggJbbQte7ljMRoXm917AbntqTGOzdTu+vP3KOOzoC70HQ==}
- '@csstools/color-helpers@5.1.0':
- resolution: {integrity: sha512-S11EXWJyy0Mz5SYvRmY8nJYTFFd1LCNV+7cXyAgQtOOuzb4EsgfqDufL+9esx72/eLhsRdGZwaldu/h+E4t4BA==}
+ '@csstools/color-helpers@5.0.2':
+ resolution: {integrity: sha512-JqWH1vsgdGcw2RR6VliXXdA0/59LttzlU8UlRT/iUUsEeWfYq8I+K0yhihEUTTHLRm1EXvpsCx3083EU15ecsA==}
engines: {node: '>=18'}
- '@csstools/css-calc@2.1.4':
- resolution: {integrity: sha512-3N8oaj+0juUw/1H3YwmDDJXCgTB1gKU6Hc/bB502u9zR0q2vd786XJH9QfrKIEgFlZmhZiq6epXl4rHqhzsIgQ==}
+ '@csstools/css-calc@2.1.2':
+ resolution: {integrity: sha512-TklMyb3uBB28b5uQdxjReG4L80NxAqgrECqLZFQbyLekwwlcDDS8r3f07DKqeo8C4926Br0gf/ZDe17Zv4wIuw==}
engines: {node: '>=18'}
peerDependencies:
- '@csstools/css-parser-algorithms': ^3.0.5
- '@csstools/css-tokenizer': ^3.0.4
+ '@csstools/css-parser-algorithms': ^3.0.4
+ '@csstools/css-tokenizer': ^3.0.3
- '@csstools/css-color-parser@3.1.0':
- resolution: {integrity: sha512-nbtKwh3a6xNVIp/VRuXV64yTKnb1IjTAEEh3irzS+HkKjAOYLTGNb9pmVNntZ8iVBHcWDA2Dof0QtPgFI1BaTA==}
+ '@csstools/css-color-parser@3.0.8':
+ resolution: {integrity: sha512-pdwotQjCCnRPuNi06jFuP68cykU1f3ZWExLe/8MQ1LOs8Xq+fTkYgd+2V8mWUWMrOn9iS2HftPVaMZDaXzGbhQ==}
engines: {node: '>=18'}
peerDependencies:
- '@csstools/css-parser-algorithms': ^3.0.5
- '@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':
- resolution: {integrity: sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ==}
+ '@csstools/css-parser-algorithms@3.0.4':
+ resolution: {integrity: sha512-Up7rBoV77rv29d3uKHUIVubz1BTcgyUK72IvCQAbfbMv584xHcGKCKbWh7i8hPrRJ7qU4Y8IO3IY9m+iTB7P3A==}
engines: {node: '>=18'}
peerDependencies:
- '@csstools/css-tokenizer': ^3.0.4
+ '@csstools/css-tokenizer': ^3.0.3
- '@csstools/css-syntax-patches-for-csstree@1.0.15':
- resolution: {integrity: sha512-q0p6zkVq2lJnmzZVPR33doA51G7YOja+FBvRdp5ISIthL0MtFCgYHHhR563z9WFGxcOn0WfjSkPDJ5Qig3H3Sw==}
- engines: {node: '>=18'}
-
- '@csstools/css-tokenizer@3.0.4':
- resolution: {integrity: sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw==}
+ '@csstools/css-tokenizer@3.0.3':
+ resolution: {integrity: sha512-UJnjoFsmxfKUdNYdWgOB0mWUypuLvAfQPH1+pyvRJs6euowbFkFC6P13w1l8mJyi3vxYMxc9kld5jZEGRQs6bw==}
engines: {node: '>=18'}
'@discoveryjs/json-ext@0.5.7':
@@ -2113,8 +2232,11 @@ packages:
'@emnapi/runtime@1.3.1':
resolution: {integrity: sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==}
- '@emnapi/runtime@1.6.0':
- resolution: {integrity: sha512-obtUmAHTMjll499P+D9A3axeJFlhdjOWdKUNs/U6QIGT7V5RjcUW1xToAzjvmgTSQhDbYn/NwfTRoJcQ2rNBxA==}
+ '@emnapi/runtime@1.4.5':
+ resolution: {integrity: sha512-++LApOtY0pEEz1zrd9vy1/zXVaVJJ/EbAF3u0fXIzPJEDtnITsBGbbK0EkM72amhl/R5b+5xx0Y/QhcVOpuulg==}
+
+ '@emnapi/runtime@1.7.0':
+ resolution: {integrity: sha512-oAYoQnCYaQZKVS53Fq23ceWMRxq5EhQsE0x0RdQ55jT7wagMu5k+fS39v1fiSLrtrLQlXwVINenqhLMtTrV/1Q==}
'@emotion/hash@0.9.0':
resolution: {integrity: sha512-14FtKiHhy2QoPIzdTcvh//8OyBlknNs2nXRwIhG904opCby3l+9Xaf/wuPvICBF0rc1ZCNBd3nKe9cd2mecVkQ==}
@@ -2563,16 +2685,16 @@ packages:
resolution: {integrity: sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/config-helpers@0.4.1':
- resolution: {integrity: sha512-csZAzkNhsgwb0I/UAV6/RGFTbiakPCf0ZrGmrIxQpYvGZ00PhTkSnyKNolphgIvmnJeGw6rcGVEXfTzUnFuEvw==}
+ '@eslint/config-helpers@0.4.2':
+ resolution: {integrity: sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/core@0.12.0':
resolution: {integrity: sha512-cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/core@0.16.0':
- resolution: {integrity: sha512-nmC8/totwobIiFcGkDza3GIKfAw1+hLiYVrh3I1nIomQ8PEr5cxg34jnkmGawul/ep52wGRAcyeDCNtWKSOj4Q==}
+ '@eslint/core@0.17.0':
+ resolution: {integrity: sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/core@0.6.0':
@@ -2595,8 +2717,8 @@ packages:
resolution: {integrity: sha512-eohesHH8WFRUprDNyEREgqP6beG6htMeUYeCpkEgBCieCMme5r9zFWjzAJp//9S+Kub4rqE+jXe9Cp1a7IYIIA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/js@9.38.0':
- resolution: {integrity: sha512-UZ1VpFvXf9J06YG9xQBdnzU+kthors6KjhMAl6f4gH4usHyh31rUf2DLGInT8RFYIReYXNSydgPY0V2LuWgl7A==}
+ '@eslint/js@9.39.1':
+ resolution: {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':
@@ -2611,8 +2733,8 @@ packages:
resolution: {integrity: sha512-JubJ5B2pJ4k4yGxaNLdbjrnk9d/iDz6/q8wOilpIowd6PJPgaxCuHBnBszq7Ce2TyMrywm5r4PnKm6V3iiZF+g==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/plugin-kit@0.4.0':
- resolution: {integrity: sha512-sB5uyeq+dwCWyPi31B2gQlVlo+j5brPlWx4yZBrEaRo/nhdDE8Xke1gsGgtiBdaBTxuTkceLVuVt/pclrasb0A==}
+ '@eslint/plugin-kit@0.4.1':
+ resolution: {integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@expo/bunyan@4.0.0':
@@ -2834,8 +2956,14 @@ packages:
cpu: [arm64]
os: [darwin]
- '@img/sharp-darwin-arm64@0.34.4':
- resolution: {integrity: sha512-sitdlPzDVyvmINUdJle3TNHl+AG9QcwiAMsXmccqsCOMZNIdW2/7S26w0LyU8euiLVzFBL3dXPwVCq/ODnf2vA==}
+ '@img/sharp-darwin-arm64@0.34.3':
+ resolution: {integrity: sha512-ryFMfvxxpQRsgZJqBd4wsttYQbCxsJksrv9Lw/v798JcQ8+w84mBWuXwl+TT0WJ/WrYOLaYpwQXi3sA9nTIaIg==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@img/sharp-darwin-arm64@0.34.5':
+ resolution: {integrity: sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [arm64]
os: [darwin]
@@ -2846,8 +2974,14 @@ packages:
cpu: [x64]
os: [darwin]
- '@img/sharp-darwin-x64@0.34.4':
- resolution: {integrity: sha512-rZheupWIoa3+SOdF/IcUe1ah4ZDpKBGWcsPX6MT0lYniH9micvIU7HQkYTfrx5Xi8u+YqwLtxC/3vl8TQN6rMg==}
+ '@img/sharp-darwin-x64@0.34.3':
+ resolution: {integrity: sha512-yHpJYynROAj12TA6qil58hmPmAwxKKC7reUqtGLzsOHfP7/rniNGTL8tjWX6L3CTV4+5P4ypcS7Pp+7OB+8ihA==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [x64]
+ os: [darwin]
+
+ '@img/sharp-darwin-x64@0.34.5':
+ resolution: {integrity: sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [x64]
os: [darwin]
@@ -2857,8 +2991,13 @@ packages:
cpu: [arm64]
os: [darwin]
- '@img/sharp-libvips-darwin-arm64@1.2.3':
- resolution: {integrity: sha512-QzWAKo7kpHxbuHqUC28DZ9pIKpSi2ts2OJnoIGI26+HMgq92ZZ4vk8iJd4XsxN+tYfNJxzH6W62X5eTcsBymHw==}
+ '@img/sharp-libvips-darwin-arm64@1.2.0':
+ resolution: {integrity: sha512-sBZmpwmxqwlqG9ueWFXtockhsxefaV6O84BMOrhtg/YqbTaRdqDE7hxraVE3y6gVM4eExmfzW4a8el9ArLeEiQ==}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@img/sharp-libvips-darwin-arm64@1.2.4':
+ resolution: {integrity: sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==}
cpu: [arm64]
os: [darwin]
@@ -2867,8 +3006,13 @@ packages:
cpu: [x64]
os: [darwin]
- '@img/sharp-libvips-darwin-x64@1.2.3':
- resolution: {integrity: sha512-Ju+g2xn1E2AKO6YBhxjj+ACcsPQRHT0bhpglxcEf+3uyPY+/gL8veniKoo96335ZaPo03bdDXMv0t+BBFAbmRA==}
+ '@img/sharp-libvips-darwin-x64@1.2.0':
+ resolution: {integrity: sha512-M64XVuL94OgiNHa5/m2YvEQI5q2cl9d/wk0qFTDVXcYzi43lxuiFTftMR1tOnFQovVXNZJ5TURSDK2pNe9Yzqg==}
+ cpu: [x64]
+ os: [darwin]
+
+ '@img/sharp-libvips-darwin-x64@1.2.4':
+ resolution: {integrity: sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==}
cpu: [x64]
os: [darwin]
@@ -2877,8 +3021,13 @@ packages:
cpu: [arm64]
os: [linux]
- '@img/sharp-libvips-linux-arm64@1.2.3':
- resolution: {integrity: sha512-I4RxkXU90cpufazhGPyVujYwfIm9Nk1QDEmiIsaPwdnm013F7RIceaCc87kAH+oUB1ezqEvC6ga4m7MSlqsJvQ==}
+ '@img/sharp-libvips-linux-arm64@1.2.0':
+ resolution: {integrity: sha512-RXwd0CgG+uPRX5YYrkzKyalt2OJYRiJQ8ED/fi1tq9WQW2jsQIn0tqrlR5l5dr/rjqq6AHAxURhj2DVjyQWSOA==}
+ cpu: [arm64]
+ os: [linux]
+
+ '@img/sharp-libvips-linux-arm64@1.2.4':
+ resolution: {integrity: sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==}
cpu: [arm64]
os: [linux]
@@ -2887,23 +3036,43 @@ packages:
cpu: [arm]
os: [linux]
- '@img/sharp-libvips-linux-arm@1.2.3':
- resolution: {integrity: sha512-x1uE93lyP6wEwGvgAIV0gP6zmaL/a0tGzJs/BIDDG0zeBhMnuUPm7ptxGhUbcGs4okDJrk4nxgrmxpib9g6HpA==}
+ '@img/sharp-libvips-linux-arm@1.2.0':
+ resolution: {integrity: sha512-mWd2uWvDtL/nvIzThLq3fr2nnGfyr/XMXlq8ZJ9WMR6PXijHlC3ksp0IpuhK6bougvQrchUAfzRLnbsen0Cqvw==}
cpu: [arm]
os: [linux]
- '@img/sharp-libvips-linux-ppc64@1.2.3':
- resolution: {integrity: sha512-Y2T7IsQvJLMCBM+pmPbM3bKT/yYJvVtLJGfCs4Sp95SjvnFIjynbjzsa7dY1fRJX45FTSfDksbTp6AGWudiyCg==}
+ '@img/sharp-libvips-linux-arm@1.2.4':
+ resolution: {integrity: sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==}
+ cpu: [arm]
+ os: [linux]
+
+ '@img/sharp-libvips-linux-ppc64@1.2.0':
+ resolution: {integrity: sha512-Xod/7KaDDHkYu2phxxfeEPXfVXFKx70EAFZ0qyUdOjCcxbjqyJOEUpDe6RIyaunGxT34Anf9ue/wuWOqBW2WcQ==}
+ cpu: [ppc64]
+ os: [linux]
+
+ '@img/sharp-libvips-linux-ppc64@1.2.4':
+ resolution: {integrity: sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==}
cpu: [ppc64]
os: [linux]
+ '@img/sharp-libvips-linux-riscv64@1.2.4':
+ resolution: {integrity: sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==}
+ cpu: [riscv64]
+ os: [linux]
+
'@img/sharp-libvips-linux-s390x@1.0.4':
resolution: {integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==}
cpu: [s390x]
os: [linux]
- '@img/sharp-libvips-linux-s390x@1.2.3':
- resolution: {integrity: sha512-RgWrs/gVU7f+K7P+KeHFaBAJlNkD1nIZuVXdQv6S+fNA6syCcoboNjsV2Pou7zNlVdNQoQUpQTk8SWDHUA3y/w==}
+ '@img/sharp-libvips-linux-s390x@1.2.0':
+ resolution: {integrity: sha512-eMKfzDxLGT8mnmPJTNMcjfO33fLiTDsrMlUVcp6b96ETbnJmd4uvZxVJSKPQfS+odwfVaGifhsB07J1LynFehw==}
+ cpu: [s390x]
+ os: [linux]
+
+ '@img/sharp-libvips-linux-s390x@1.2.4':
+ resolution: {integrity: sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==}
cpu: [s390x]
os: [linux]
@@ -2912,8 +3081,13 @@ packages:
cpu: [x64]
os: [linux]
- '@img/sharp-libvips-linux-x64@1.2.3':
- resolution: {integrity: sha512-3JU7LmR85K6bBiRzSUc/Ff9JBVIFVvq6bomKE0e63UXGeRw2HPVEjoJke1Yx+iU4rL7/7kUjES4dZ/81Qjhyxg==}
+ '@img/sharp-libvips-linux-x64@1.2.0':
+ resolution: {integrity: sha512-ZW3FPWIc7K1sH9E3nxIGB3y3dZkpJlMnkk7z5tu1nSkBoCgw2nSRTFHI5pB/3CQaJM0pdzMF3paf9ckKMSE9Tg==}
+ cpu: [x64]
+ os: [linux]
+
+ '@img/sharp-libvips-linux-x64@1.2.4':
+ resolution: {integrity: sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==}
cpu: [x64]
os: [linux]
@@ -2922,8 +3096,13 @@ packages:
cpu: [arm64]
os: [linux]
- '@img/sharp-libvips-linuxmusl-arm64@1.2.3':
- resolution: {integrity: sha512-F9q83RZ8yaCwENw1GieztSfj5msz7GGykG/BA+MOUefvER69K/ubgFHNeSyUu64amHIYKGDs4sRCMzXVj8sEyw==}
+ '@img/sharp-libvips-linuxmusl-arm64@1.2.0':
+ resolution: {integrity: sha512-UG+LqQJbf5VJ8NWJ5Z3tdIe/HXjuIdo4JeVNADXBFuG7z9zjoegpzzGIyV5zQKi4zaJjnAd2+g2nna8TZvuW9Q==}
+ cpu: [arm64]
+ os: [linux]
+
+ '@img/sharp-libvips-linuxmusl-arm64@1.2.4':
+ resolution: {integrity: sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==}
cpu: [arm64]
os: [linux]
@@ -2932,8 +3111,13 @@ packages:
cpu: [x64]
os: [linux]
- '@img/sharp-libvips-linuxmusl-x64@1.2.3':
- resolution: {integrity: sha512-U5PUY5jbc45ANM6tSJpsgqmBF/VsL6LnxJmIf11kB7J5DctHgqm0SkuXzVWtIY90GnJxKnC/JT251TDnk1fu/g==}
+ '@img/sharp-libvips-linuxmusl-x64@1.2.0':
+ resolution: {integrity: sha512-SRYOLR7CXPgNze8akZwjoGBoN1ThNZoqpOgfnOxmWsklTGVfJiGJoC/Lod7aNMGA1jSsKWM1+HRX43OP6p9+6Q==}
+ cpu: [x64]
+ os: [linux]
+
+ '@img/sharp-libvips-linuxmusl-x64@1.2.4':
+ resolution: {integrity: sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==}
cpu: [x64]
os: [linux]
@@ -2943,8 +3127,14 @@ packages:
cpu: [arm64]
os: [linux]
- '@img/sharp-linux-arm64@0.34.4':
- resolution: {integrity: sha512-YXU1F/mN/Wu786tl72CyJjP/Ngl8mGHN1hST4BGl+hiW5jhCnV2uRVTNOcaYPs73NeT/H8Upm3y9582JVuZHrQ==}
+ '@img/sharp-linux-arm64@0.34.3':
+ resolution: {integrity: sha512-QdrKe3EvQrqwkDrtuTIjI0bu6YEJHTgEeqdzI3uWJOH6G1O8Nl1iEeVYRGdj1h5I21CqxSvQp1Yv7xeU3ZewbA==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [arm64]
+ os: [linux]
+
+ '@img/sharp-linux-arm64@0.34.5':
+ resolution: {integrity: sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [arm64]
os: [linux]
@@ -2955,26 +3145,50 @@ packages:
cpu: [arm]
os: [linux]
- '@img/sharp-linux-arm@0.34.4':
- resolution: {integrity: sha512-Xyam4mlqM0KkTHYVSuc6wXRmM7LGN0P12li03jAnZ3EJWZqj83+hi8Y9UxZUbxsgsK1qOEwg7O0Bc0LjqQVtxA==}
+ '@img/sharp-linux-arm@0.34.3':
+ resolution: {integrity: sha512-oBK9l+h6KBN0i3dC8rYntLiVfW8D8wH+NPNT3O/WBHeW0OQWCjfWksLUaPidsrDKpJgXp3G3/hkmhptAW0I3+A==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [arm]
os: [linux]
- '@img/sharp-linux-ppc64@0.34.4':
- resolution: {integrity: sha512-F4PDtF4Cy8L8hXA2p3TO6s4aDt93v+LKmpcYFLAVdkkD3hSxZzee0rh6/+94FpAynsuMpLX5h+LRsSG3rIciUQ==}
+ '@img/sharp-linux-arm@0.34.5':
+ resolution: {integrity: sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [arm]
+ os: [linux]
+
+ '@img/sharp-linux-ppc64@0.34.3':
+ resolution: {integrity: sha512-GLtbLQMCNC5nxuImPR2+RgrviwKwVql28FWZIW1zWruy6zLgA5/x2ZXk3mxj58X/tszVF69KK0Is83V8YgWhLA==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [ppc64]
+ os: [linux]
+
+ '@img/sharp-linux-ppc64@0.34.5':
+ resolution: {integrity: sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [ppc64]
os: [linux]
+ '@img/sharp-linux-riscv64@0.34.5':
+ resolution: {integrity: sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [riscv64]
+ os: [linux]
+
'@img/sharp-linux-s390x@0.33.5':
resolution: {integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [s390x]
os: [linux]
- '@img/sharp-linux-s390x@0.34.4':
- resolution: {integrity: sha512-qVrZKE9Bsnzy+myf7lFKvng6bQzhNUAYcVORq2P7bDlvmF6u2sCmK2KyEQEBdYk+u3T01pVsPrkj943T1aJAsw==}
+ '@img/sharp-linux-s390x@0.34.3':
+ resolution: {integrity: sha512-3gahT+A6c4cdc2edhsLHmIOXMb17ltffJlxR0aC2VPZfwKoTGZec6u5GrFgdR7ciJSsHT27BD3TIuGcuRT0KmQ==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [s390x]
+ os: [linux]
+
+ '@img/sharp-linux-s390x@0.34.5':
+ resolution: {integrity: sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [s390x]
os: [linux]
@@ -2985,8 +3199,14 @@ packages:
cpu: [x64]
os: [linux]
- '@img/sharp-linux-x64@0.34.4':
- resolution: {integrity: sha512-ZfGtcp2xS51iG79c6Vhw9CWqQC8l2Ot8dygxoDoIQPTat/Ov3qAa8qpxSrtAEAJW+UjTXc4yxCjNfxm4h6Xm2A==}
+ '@img/sharp-linux-x64@0.34.3':
+ resolution: {integrity: sha512-8kYso8d806ypnSq3/Ly0QEw90V5ZoHh10yH0HnrzOCr6DKAPI6QVHvwleqMkVQ0m+fc7EH8ah0BB0QPuWY6zJQ==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [x64]
+ os: [linux]
+
+ '@img/sharp-linux-x64@0.34.5':
+ resolution: {integrity: sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [x64]
os: [linux]
@@ -2997,8 +3217,14 @@ packages:
cpu: [arm64]
os: [linux]
- '@img/sharp-linuxmusl-arm64@0.34.4':
- resolution: {integrity: sha512-8hDVvW9eu4yHWnjaOOR8kHVrew1iIX+MUgwxSuH2XyYeNRtLUe4VNioSqbNkB7ZYQJj9rUTT4PyRscyk2PXFKA==}
+ '@img/sharp-linuxmusl-arm64@0.34.3':
+ resolution: {integrity: sha512-vAjbHDlr4izEiXM1OTggpCcPg9tn4YriK5vAjowJsHwdBIdx0fYRsURkxLG2RLm9gyBq66gwtWI8Gx0/ov+JKQ==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [arm64]
+ os: [linux]
+
+ '@img/sharp-linuxmusl-arm64@0.34.5':
+ resolution: {integrity: sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [arm64]
os: [linux]
@@ -3009,8 +3235,14 @@ packages:
cpu: [x64]
os: [linux]
- '@img/sharp-linuxmusl-x64@0.34.4':
- resolution: {integrity: sha512-lU0aA5L8QTlfKjpDCEFOZsTYGn3AEiO6db8W5aQDxj0nQkVrZWmN3ZP9sYKWJdtq3PWPhUNlqehWyXpYDcI9Sg==}
+ '@img/sharp-linuxmusl-x64@0.34.3':
+ resolution: {integrity: sha512-gCWUn9547K5bwvOn9l5XGAEjVTTRji4aPTqLzGXHvIr6bIDZKNTA34seMPgM0WmSf+RYBH411VavCejp3PkOeQ==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [x64]
+ os: [linux]
+
+ '@img/sharp-linuxmusl-x64@0.34.5':
+ resolution: {integrity: sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [x64]
os: [linux]
@@ -3020,13 +3252,24 @@ packages:
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [wasm32]
- '@img/sharp-wasm32@0.34.4':
- resolution: {integrity: sha512-33QL6ZO/qpRyG7woB/HUALz28WnTMI2W1jgX3Nu2bypqLIKx/QKMILLJzJjI+SIbvXdG9fUnmrxR7vbi1sTBeA==}
+ '@img/sharp-wasm32@0.34.3':
+ resolution: {integrity: sha512-+CyRcpagHMGteySaWos8IbnXcHgfDn7pO2fiC2slJxvNq9gDipYBN42/RagzctVRKgxATmfqOSulgZv5e1RdMg==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [wasm32]
- '@img/sharp-win32-arm64@0.34.4':
- resolution: {integrity: sha512-2Q250do/5WXTwxW3zjsEuMSv5sUU4Tq9VThWKlU2EYLm4MB7ZeMwF+SFJutldYODXF6jzc6YEOC+VfX0SZQPqA==}
+ '@img/sharp-wasm32@0.34.5':
+ resolution: {integrity: sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [wasm32]
+
+ '@img/sharp-win32-arm64@0.34.3':
+ resolution: {integrity: sha512-MjnHPnbqMXNC2UgeLJtX4XqoVHHlZNd+nPt1kRPmj63wURegwBhZlApELdtxM2OIZDRv/DFtLcNhVbd1z8GYXQ==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [arm64]
+ os: [win32]
+
+ '@img/sharp-win32-arm64@0.34.5':
+ resolution: {integrity: sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [arm64]
os: [win32]
@@ -3037,8 +3280,14 @@ packages:
cpu: [ia32]
os: [win32]
- '@img/sharp-win32-ia32@0.34.4':
- resolution: {integrity: sha512-3ZeLue5V82dT92CNL6rsal6I2weKw1cYu+rGKm8fOCCtJTR2gYeUfY3FqUnIJsMUPIH68oS5jmZ0NiJ508YpEw==}
+ '@img/sharp-win32-ia32@0.34.3':
+ resolution: {integrity: sha512-xuCdhH44WxuXgOM714hn4amodJMZl3OEvf0GVTm0BEyMeA2to+8HEdRPShH0SLYptJY1uBw+SCFP9WVQi1Q/cw==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [ia32]
+ os: [win32]
+
+ '@img/sharp-win32-ia32@0.34.5':
+ resolution: {integrity: sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [ia32]
os: [win32]
@@ -3049,8 +3298,14 @@ packages:
cpu: [x64]
os: [win32]
- '@img/sharp-win32-x64@0.34.4':
- resolution: {integrity: sha512-xIyj4wpYs8J18sVN3mSQjwrw7fKUqRw+Z5rnHNCy5fYTxigBz81u5mOMPmFumwjcn8+ld1ppptMBCLic1nz6ig==}
+ '@img/sharp-win32-x64@0.34.3':
+ resolution: {integrity: sha512-OWwz05d++TxzLEv4VnsTz5CmZ6mI6S05sfQGEMrNrQcOEERbX46332IvE7pO/EUiw7jUrrS40z/M7kPyjfl04g==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [x64]
+ os: [win32]
+
+ '@img/sharp-win32-x64@0.34.5':
+ resolution: {integrity: sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [x64]
os: [win32]
@@ -3087,6 +3342,10 @@ packages:
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
engines: {node: '>=12'}
+ '@isaacs/fs-minipass@4.0.1':
+ resolution: {integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==}
+ engines: {node: '>=18.0.0'}
+
'@isaacs/string-locale-compare@1.1.0':
resolution: {integrity: sha512-SQ7Kzhh9+D+ZW9MA0zkYv3VXhIDNx+LzM6EJ+/65I3QY+enU6Itte7E5XX7EWrqLW2FN4n06GWzBnPoC3th2aQ==}
@@ -3176,9 +3435,6 @@ packages:
resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- '@jridgewell/gen-mapping@0.3.13':
- resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
-
'@jridgewell/gen-mapping@0.3.5':
resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
engines: {node: '>=6.0.0'}
@@ -3187,6 +3443,9 @@ packages:
resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==}
engines: {node: '>=6.0.0'}
+ '@jridgewell/remapping@2.3.5':
+ resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
+
'@jridgewell/resolve-uri@3.1.2':
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
engines: {node: '>=6.0.0'}
@@ -3207,9 +3466,6 @@ packages:
'@jridgewell/trace-mapping@0.3.25':
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
- '@jridgewell/trace-mapping@0.3.31':
- resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
-
'@jsonjoy.com/base64@1.1.2':
resolution: {integrity: sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA==}
engines: {node: '>=10.0'}
@@ -3412,9 +3668,21 @@ packages:
'@next/env@14.2.24':
resolution: {integrity: sha512-LAm0Is2KHTNT6IT16lxT+suD0u+VVfYNQqM+EJTKuFRRuY2z+zj01kueWXPCxbMBDt0B5vONYzabHGUNbZYAhA==}
+ '@next/env@15.5.0':
+ resolution: {integrity: sha512-sDaprBAfzCQiOgo2pO+LhnV0Wt2wBgartjrr+dpcTORYVnnXD0gwhHhiiyIih9hQbq+JnbqH4odgcFWhqCGidw==}
+
+ '@next/env@15.5.4':
+ resolution: {integrity: sha512-27SQhYp5QryzIT5uO8hq99C69eLQ7qkzkDPsk3N+GuS2XgOgoYEeOav7Pf8Tn4drECOVDsDg8oj+/DVy8qQL2A==}
+
'@next/env@16.0.1':
resolution: {integrity: sha512-LFvlK0TG2L3fEOX77OC35KowL8D7DlFF45C0OvKMC4hy8c/md1RC4UMNDlUGJqfCoCS2VWrZ4dSE6OjaX5+8mw==}
+ '@next/eslint-plugin-next@15.5.0':
+ resolution: {integrity: sha512-+k83U/fST66eQBjTltX2T9qUYd43ntAe+NZ5qeZVTQyTiFiHvTLtkpLKug4AnZAtuI/lwz5tl/4QDJymjVkybg==}
+
+ '@next/eslint-plugin-next@15.5.4':
+ resolution: {integrity: sha512-SR1vhXNNg16T4zffhJ4TS7Xn7eq4NfKfcOsRwea7RIAHrjRpI9ALYbamqIJqkAhowLlERffiwk0FMvTLNdnVtw==}
+
'@next/eslint-plugin-next@16.0.1':
resolution: {integrity: sha512-g4Cqmv/gyFEXNeVB2HkqDlYKfy+YrlM2k8AVIO/YQVEPfhVruH1VA99uT1zELLnPLIeOnx8IZ6Ddso0asfTIdw==}
@@ -3453,6 +3721,18 @@ packages:
cpu: [arm64]
os: [darwin]
+ '@next/swc-darwin-arm64@15.5.0':
+ resolution: {integrity: sha512-v7Jj9iqC6enxIRBIScD/o0lH7QKvSxq2LM8UTyqJi+S2w2QzhMYjven4vgu/RzgsdtdbpkyCxBTzHl/gN5rTRg==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@next/swc-darwin-arm64@15.5.4':
+ resolution: {integrity: sha512-nopqz+Ov6uvorej8ndRX6HlxCYWCO3AHLfKK2TYvxoSB2scETOcfm/HSS3piPqc3A+MUgyHoqE6je4wnkjfrOA==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [darwin]
+
'@next/swc-darwin-arm64@16.0.1':
resolution: {integrity: sha512-R0YxRp6/4W7yG1nKbfu41bp3d96a0EalonQXiMe+1H9GTHfKxGNCGFNWUho18avRBPsO8T3RmdWuzmfurlQPbg==}
engines: {node: '>= 10'}
@@ -3471,6 +3751,18 @@ packages:
cpu: [x64]
os: [darwin]
+ '@next/swc-darwin-x64@15.5.0':
+ resolution: {integrity: sha512-s2Nk6ec+pmYmAb/utawuURy7uvyYKDk+TRE5aqLRsdnj3AhwC9IKUBmhfnLmY/+P+DnwqpeXEFIKe9tlG0p6CA==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [darwin]
+
+ '@next/swc-darwin-x64@15.5.4':
+ resolution: {integrity: sha512-QOTCFq8b09ghfjRJKfb68kU9k2K+2wsC4A67psOiMn849K9ZXgCSRQr0oVHfmKnoqCbEmQWG1f2h1T2vtJJ9mA==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [darwin]
+
'@next/swc-darwin-x64@16.0.1':
resolution: {integrity: sha512-kETZBocRux3xITiZtOtVoVvXyQLB7VBxN7L6EPqgI5paZiUlnsgYv4q8diTNYeHmF9EiehydOBo20lTttCbHAg==}
engines: {node: '>= 10'}
@@ -3501,6 +3793,18 @@ packages:
cpu: [arm64]
os: [linux]
+ '@next/swc-linux-arm64-gnu@15.5.0':
+ resolution: {integrity: sha512-mGlPJMZReU4yP5fSHjOxiTYvZmwPSWn/eF/dcg21pwfmiUCKS1amFvf1F1RkLHPIMPfocxLViNWFvkvDB14Isg==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@next/swc-linux-arm64-gnu@15.5.4':
+ resolution: {integrity: sha512-eRD5zkts6jS3VfE/J0Kt1VxdFqTnMc3QgO5lFE5GKN3KDI/uUpSyK3CjQHmfEkYR4wCOl0R0XrsjpxfWEA++XA==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [linux]
+
'@next/swc-linux-arm64-gnu@16.0.1':
resolution: {integrity: sha512-hWg3BtsxQuSKhfe0LunJoqxjO4NEpBmKkE+P2Sroos7yB//OOX3jD5ISP2wv8QdUwtRehMdwYz6VB50mY6hqAg==}
engines: {node: '>= 10'}
@@ -3519,6 +3823,18 @@ packages:
cpu: [arm64]
os: [linux]
+ '@next/swc-linux-arm64-musl@15.5.0':
+ resolution: {integrity: sha512-biWqIOE17OW/6S34t1X8K/3vb1+svp5ji5QQT/IKR+VfM3B7GvlCwmz5XtlEan2ukOUf9tj2vJJBffaGH4fGRw==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@next/swc-linux-arm64-musl@15.5.4':
+ resolution: {integrity: sha512-TOK7iTxmXFc45UrtKqWdZ1shfxuL4tnVAOuuJK4S88rX3oyVV4ZkLjtMT85wQkfBrOOvU55aLty+MV8xmcJR8A==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [linux]
+
'@next/swc-linux-arm64-musl@16.0.1':
resolution: {integrity: sha512-UPnOvYg+fjAhP3b1iQStcYPWeBFRLrugEyK/lDKGk7kLNua8t5/DvDbAEFotfV1YfcOY6bru76qN9qnjLoyHCQ==}
engines: {node: '>= 10'}
@@ -3537,6 +3853,18 @@ packages:
cpu: [x64]
os: [linux]
+ '@next/swc-linux-x64-gnu@15.5.0':
+ resolution: {integrity: sha512-zPisT+obYypM/l6EZ0yRkK3LEuoZqHaSoYKj+5jiD9ESHwdr6QhnabnNxYkdy34uCigNlWIaCbjFmQ8FY5AlxA==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [linux]
+
+ '@next/swc-linux-x64-gnu@15.5.4':
+ resolution: {integrity: sha512-7HKolaj+481FSW/5lL0BcTkA4Ueam9SPYWyN/ib/WGAFZf0DGAN8frNpNZYFHtM4ZstrHZS3LY3vrwlIQfsiMA==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [linux]
+
'@next/swc-linux-x64-gnu@16.0.1':
resolution: {integrity: sha512-Et81SdWkcRqAJziIgFtsFyJizHoWne4fzJkvjd6V4wEkWTB4MX6J0uByUb0peiJQ4WeAt6GGmMszE5KrXK6WKg==}
engines: {node: '>= 10'}
@@ -3555,6 +3883,18 @@ packages:
cpu: [x64]
os: [linux]
+ '@next/swc-linux-x64-musl@15.5.0':
+ resolution: {integrity: sha512-+t3+7GoU9IYmk+N+FHKBNFdahaReoAktdOpXHFIPOU1ixxtdge26NgQEEkJkCw2dHT9UwwK5zw4mAsURw4E8jA==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [linux]
+
+ '@next/swc-linux-x64-musl@15.5.4':
+ resolution: {integrity: sha512-nlQQ6nfgN0nCO/KuyEUwwOdwQIGjOs4WNMjEUtpIQJPR2NUfmGpW2wkJln1d4nJ7oUzd1g4GivH5GoEPBgfsdw==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [linux]
+
'@next/swc-linux-x64-musl@16.0.1':
resolution: {integrity: sha512-qBbgYEBRrC1egcG03FZaVfVxrJm8wBl7vr8UFKplnxNRprctdP26xEv9nJ07Ggq4y1adwa0nz2mz83CELY7N6Q==}
engines: {node: '>= 10'}
@@ -3573,6 +3913,18 @@ packages:
cpu: [arm64]
os: [win32]
+ '@next/swc-win32-arm64-msvc@15.5.0':
+ resolution: {integrity: sha512-d8MrXKh0A+c9DLiy1BUFwtg3Hu90Lucj3k6iKTUdPOv42Ve2UiIG8HYi3UAb8kFVluXxEfdpCoPPCSODk5fDcw==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [win32]
+
+ '@next/swc-win32-arm64-msvc@15.5.4':
+ resolution: {integrity: sha512-PcR2bN7FlM32XM6eumklmyWLLbu2vs+D7nJX8OAIoWy69Kef8mfiN4e8TUv2KohprwifdpFKPzIP1njuCjD0YA==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [win32]
+
'@next/swc-win32-arm64-msvc@16.0.1':
resolution: {integrity: sha512-cPuBjYP6I699/RdbHJonb3BiRNEDm5CKEBuJ6SD8k3oLam2fDRMKAvmrli4QMDgT2ixyRJ0+DTkiODbIQhRkeQ==}
engines: {node: '>= 10'}
@@ -3603,6 +3955,18 @@ packages:
cpu: [x64]
os: [win32]
+ '@next/swc-win32-x64-msvc@15.5.0':
+ resolution: {integrity: sha512-Fe1tGHxOWEyQjmygWkkXSwhFcTJuimrNu52JEuwItrKJVV4iRjbWp9I7zZjwqtiNnQmxoEvoisn8wueFLrNpvQ==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [win32]
+
+ '@next/swc-win32-x64-msvc@15.5.4':
+ resolution: {integrity: sha512-1ur2tSHZj8Px/KMAthmuI9FMp/YFusMMGoRNJaRZMOlSkgvLjzosSdQI0cJAKogdHl3qXUQKL9MGaYvKwA7DXg==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [win32]
+
'@next/swc-win32-x64-msvc@16.0.1':
resolution: {integrity: sha512-XeEUJsE4JYtfrXe/LaJn3z1pD19fK0Q6Er8Qoufi+HqvdO4LEPyCxLUt4rxA+4RfYo6S9gMlmzCMU2F+AatFqQ==}
engines: {node: '>= 10'}
@@ -3802,9 +4166,15 @@ packages:
'@radix-ui/number@1.1.0':
resolution: {integrity: sha512-V3gRzhVNU1ldS5XhAPTom1fOIo4ccrjjJgmE+LI2h/WaFpHmx0MQApT+KZHnx8abG6Avtfcz4WoEciMnpFT3HQ==}
+ '@radix-ui/number@1.1.1':
+ resolution: {integrity: sha512-MkKCwxlXTgz6CFoJx3pCwn07GKp36+aZyu/u2Ln2VrA5DcdyCZkASEDBTd8x5whTQQL5CiYf4prXKLcgQdv29g==}
+
'@radix-ui/primitive@1.1.1':
resolution: {integrity: sha512-SJ31y+Q/zAyShtXJc8x83i9TYdbAfHZ++tUZnvjJJqFjzsdUnKsxPL6IEtBlxKkU7yzer//GQtZSV4GbldL3YA==}
+ '@radix-ui/primitive@1.1.3':
+ resolution: {integrity: sha512-JTF99U/6XIjCBo0wqkU5sK10glYe27MRRsfwoiq5zzOEZLHU3A3KCMa5X/azekYRCJ0HlwI0crAXS/5dEHTzDg==}
+
'@radix-ui/react-arrow@1.1.2':
resolution: {integrity: sha512-G+KcpzXHq24iH0uGG/pF8LyzpFJYGD4RfLjCIBfGdSLXvjLHST31RUiRVrupIBMvIppMgSzQ6l66iAxl03tdlg==}
peerDependencies:
@@ -3840,6 +4210,15 @@ packages:
'@types/react':
optional: true
+ '@radix-ui/react-compose-refs@1.1.2':
+ resolution: {integrity: sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@radix-ui/react-context@1.1.1':
resolution: {integrity: sha512-UASk9zi+crv9WteK/NU4PLvOoL3OuE6BWVKNF6hPRBtYBDXQ2u5iu3O59zUlJiTVvkyuycnqrztsHVJwcK9K+Q==}
peerDependencies:
@@ -3849,6 +4228,15 @@ packages:
'@types/react':
optional: true
+ '@radix-ui/react-context@1.1.2':
+ resolution: {integrity: sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@radix-ui/react-direction@1.1.0':
resolution: {integrity: sha512-BUuBvgThEiAXh2DWu93XsT+a3aWrGqolGlqqw5VU1kG7p/ZH2cuDlM1sRLNnY3QcBS69UIz2mcKhMxDsdewhjg==}
peerDependencies:
@@ -3858,6 +4246,15 @@ packages:
'@types/react':
optional: true
+ '@radix-ui/react-direction@1.1.1':
+ resolution: {integrity: sha512-1UEWRX6jnOA2y4H5WczZ44gOOjTEmlqv1uNW4GAJEO5+bauCBhv8snY65Iw5/VOS/ghKN9gr2KjnLKxrsvoMVw==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@radix-ui/react-dismissable-layer@1.1.5':
resolution: {integrity: sha512-E4TywXY6UsXNRhFrECa5HAvE5/4BFcGyfTyK36gP+pAW1ed7UTK4vKwdr53gAJYwqbfCWC6ATvJa3J3R/9+Qrg==}
peerDependencies:
@@ -3967,6 +4364,19 @@ packages:
'@types/react-dom':
optional: true
+ '@radix-ui/react-presence@1.1.5':
+ resolution: {integrity: sha512-/jfEwNDdQVBCNvjkGit4h6pMOzq8bHkopq458dPt2lMjx+eBQUohZNG9A7DtO/O5ukSbxuaNGXMjHicgwy6rQQ==}
+ 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-primitive@2.0.2':
resolution: {integrity: sha512-Ec/0d38EIuvDF+GZjcMU/Ze6MxntVJYO/fRlCPhCaVUyPY9WTalHJw54tp9sXeJo3tlShWpy41vQRgLRGOuz+w==}
peerDependencies:
@@ -3980,6 +4390,19 @@ packages:
'@types/react-dom':
optional: true
+ '@radix-ui/react-primitive@2.1.3':
+ resolution: {integrity: sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==}
+ 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-roving-focus@1.1.2':
resolution: {integrity: sha512-zgMQWkNO169GtGqRvYrzb0Zf8NhMHS2DuEB/TiEmVnpr5OqPU3i8lfbxaAmC2J/KYuIQxyoQQ6DxepyXp61/xw==}
peerDependencies:
@@ -3993,6 +4416,19 @@ packages:
'@types/react-dom':
optional: true
+ '@radix-ui/react-scroll-area@1.2.10':
+ resolution: {integrity: sha512-tAXIa1g3sM5CGpVT0uIbUx/U3Gs5N8T52IICuCtObaos1S8fzsrPXG5WObkQN3S6NVl6wKgPhAIiBGbWnvc97A==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
'@radix-ui/react-select@2.1.6':
resolution: {integrity: sha512-T6ajELxRvTuAMWH0YmRJ1qez+x4/7Nq7QIx7zJ0VK3qaEWdnWpNbEDnmWldG1zBDwqrLy5aLMUWcoGirVj5kMg==}
peerDependencies:
@@ -4015,6 +4451,24 @@ packages:
'@types/react':
optional: true
+ '@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-Jl+bCv8HxKnlTLVrcDE8zTMJ09R9/ukw4qBs/oZClOfoQk/cOTbDn+NceXfV7j09YPVQUryJPHurafcSg6EVKA==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@radix-ui/react-use-callback-ref@1.1.0':
resolution: {integrity: sha512-CasTfvsy+frcFkbXtSJ2Zu9JHpN8TYKxkgJGWbjiZhFivxaeW7rMeZt7QELGVLaYVfFMsKHjb7Ak0nMEe+2Vfw==}
peerDependencies:
@@ -4024,6 +4478,15 @@ packages:
'@types/react':
optional: true
+ '@radix-ui/react-use-callback-ref@1.1.1':
+ resolution: {integrity: sha512-FkBMwD+qbGQeMu1cOHnuGB6x4yzPjho8ap5WtbEJ26umhgqVXbhekKUQO+hZEL1vU92a3wHwdp0HAcqAUF5iDg==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@radix-ui/react-use-controllable-state@1.1.0':
resolution: {integrity: sha512-MtfMVJiSr2NjzS0Aa90NPTnvTSg6C/JLCV7ma0W6+OMV78vd8OyRpID+Ng9LxzsPbLeuBnWBA1Nq30AtBIDChw==}
peerDependencies:
@@ -4051,6 +4514,15 @@ packages:
'@types/react':
optional: true
+ '@radix-ui/react-use-layout-effect@1.1.1':
+ resolution: {integrity: sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@radix-ui/react-use-previous@1.1.0':
resolution: {integrity: sha512-Z/e78qg2YFnnXcW88A4JmTtm4ADckLno6F7OXotmkQfeuCVaKuYzqAATPhVzl3delXE7CxIV8shofPn3jPc5Og==}
peerDependencies:
@@ -4421,6 +4893,9 @@ packages:
'@rtsao/scc@1.1.0':
resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==}
+ '@rushstack/eslint-patch@1.10.5':
+ resolution: {integrity: sha512-kkKUDVlII2DQiKy7UstOR1ErJP8kUKAQ4oa+SQtM0K+lPdmmjj0YnnxBgtTVYH7mUKtbsxeFC9y0AmK7Yb78/A==}
+
'@schummar/icu-type-parser@1.21.5':
resolution: {integrity: sha512-bXHSaW5jRTmke9Vd0h5P7BtWZG9Znqb8gSDxZnxaGSJnGwPLDPfS+3g0BKzeWqzgZPsIVZkM7m2tbo18cm5HBw==}
@@ -4636,68 +5111,68 @@ packages:
peerDependencies:
storybook: ^8.2.0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0
- '@swc/core-darwin-arm64@1.13.19':
- resolution: {integrity: sha512-NxDyte9tCJSJ8+R62WDtqwg8eI57lubD52sHyGOfezpJBOPr36bUSGGLyO3Vod9zTGlOu2CpkuzA/2iVw92u1g==}
+ '@swc/core-darwin-arm64@1.15.1':
+ resolution: {integrity: sha512-vEPrVxegWIjKEz+1VCVuKRY89jhokhSmQ/YXBWLnmLj9cI08G61RTZJvdsIcjYUjjTu7NgZlYVK+b2y0fbh11g==}
engines: {node: '>=10'}
cpu: [arm64]
os: [darwin]
- '@swc/core-darwin-x64@1.13.19':
- resolution: {integrity: sha512-+w5DYrJndSygFFRDcuPYmx5BljD6oYnAohZ15K1L6SfORHp/BTSIbgSFRKPoyhjuIkDiq3W0um8RoMTOBAcQjQ==}
+ '@swc/core-darwin-x64@1.15.1':
+ resolution: {integrity: sha512-z9QguKxE3aldvwKHHDg5OlKehasbJBF1lacn5CnN6SlrHbdwokXHFA3nIoO3Bh1Tw7bCgFtdIR4jKlTTn3kBZA==}
engines: {node: '>=10'}
cpu: [x64]
os: [darwin]
- '@swc/core-linux-arm-gnueabihf@1.13.19':
- resolution: {integrity: sha512-7LlfgpdwwYq2q7himNkAAFo4q6jysMLFNoBH6GRP7WL29NcSsl5mPMJjmYZymK+sYq/9MTVieDTQvChzYDsapw==}
+ '@swc/core-linux-arm-gnueabihf@1.15.1':
+ resolution: {integrity: sha512-yS2FHA8E4YeiPG9YeYk/6mKiCWuXR5RdYlCmtlGzKcjWbI4GXUVe7+p9C0M6myRt3zdj3M1knmJxk52MQA9EZQ==}
engines: {node: '>=10'}
cpu: [arm]
os: [linux]
- '@swc/core-linux-arm64-gnu@1.13.19':
- resolution: {integrity: sha512-ml3I6Lm2marAQ3UC/TS9t/yILBh/eDSVHAdPpikp652xouWAVW1znUeV6bBSxe1sSZIenv+p55ubKAWq/u84sQ==}
+ '@swc/core-linux-arm64-gnu@1.15.1':
+ resolution: {integrity: sha512-IFrjDu7+5Y61jLsUqBVXlXutDoPBX10eEeNTjW6C1yzm+cSTE7ayiKXMIFri4gEZ4VpXS6MUgkwjxtDpIXTh+w==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
- '@swc/core-linux-arm64-musl@1.13.19':
- resolution: {integrity: sha512-M/otFc3/rWWkbF6VgbOXVzUKVoE7MFcphTaStxJp4bwb7oP5slYlxMZN51Dk/OTOfvCDo9pTAFDKNyixbkXMDQ==}
+ '@swc/core-linux-arm64-musl@1.15.1':
+ resolution: {integrity: sha512-fKzP9mRQGbhc5QhJPIsqKNNX/jyWrZgBxmo3Nz1SPaepfCUc7RFmtcJQI5q8xAun3XabXjh90wqcY/OVyg2+Kg==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
- '@swc/core-linux-x64-gnu@1.13.19':
- resolution: {integrity: sha512-NoMUKaOJEdouU4tKF88ggdDHFiRRING+gYLxDqnTfm+sUXaizB5OGBRzvSVDYSXQb1SuUuChnXFPFzwTWbt3ZQ==}
+ '@swc/core-linux-x64-gnu@1.15.1':
+ resolution: {integrity: sha512-ZLjMi138uTJxb+1wzo4cB8mIbJbAsSLWRNeHc1g1pMvkERPWOGlem+LEYkkzaFzCNv1J8aKcL653Vtw8INHQeg==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
- '@swc/core-linux-x64-musl@1.13.19':
- resolution: {integrity: sha512-r6krlZwyu8SBaw24QuS1lau2I9q8M+eJV6ITz0rpb6P1Bx0elf9ii5Bhh8ddmIqXXH8kOGSjC/dwcdHbZqAhgw==}
+ '@swc/core-linux-x64-musl@1.15.1':
+ resolution: {integrity: sha512-jvSI1IdsIYey5kOITzyajjofXOOySVitmLxb45OPUjoNojql4sDojvlW5zoHXXFePdA6qAX4Y6KbzAOV3T3ctA==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
- '@swc/core-win32-arm64-msvc@1.13.19':
- resolution: {integrity: sha512-awcZSIuxyVn0Dw28VjMvgk1qiDJ6CeQwHkZNUjg2UxVlq23zE01NMMp+zkoGFypmLG9gaGmJSzuoqvk/WCQ5tw==}
+ '@swc/core-win32-arm64-msvc@1.15.1':
+ resolution: {integrity: sha512-X/FcDtNrDdY9r4FcXHt9QxUqC/2FbQdvZobCKHlHe8vTSKhUHOilWl5EBtkFVfsEs4D5/yAri9e3bJbwyBhhBw==}
engines: {node: '>=10'}
cpu: [arm64]
os: [win32]
- '@swc/core-win32-ia32-msvc@1.13.19':
- resolution: {integrity: sha512-H5d+KO7ISoLNgYvTbOcCQjJZNM3R7yaYlrMAF13lUr6GSiOUX+92xtM31B+HvzAWI7HtvVe74d29aC1b1TpXFA==}
+ '@swc/core-win32-ia32-msvc@1.15.1':
+ resolution: {integrity: sha512-vfheiWBux8PpC87oy1cshcqzgH7alWYpnVq5jWe7xuVkjqjGGDbBUKuS84eJCdsWcVaB5EXIWLKt+11W3/BOwA==}
engines: {node: '>=10'}
cpu: [ia32]
os: [win32]
- '@swc/core-win32-x64-msvc@1.13.19':
- resolution: {integrity: sha512-qNoyCpXvv2O3JqXKanRIeoMn03Fho/As+N4Fhe7u0FsYh4VYqGQah4DGDzEP/yjl4Gx1IElhqLGDhCCGMwWaDw==}
+ '@swc/core-win32-x64-msvc@1.15.1':
+ resolution: {integrity: sha512-n3Ppn0LSov/IdlANq+8kxHqENuJRX5XtwQqPgQsgwKIcFq22u17NKfDs9vL5PwRsEHY6Xd67pnOqQX0h4AvbuQ==}
engines: {node: '>=10'}
cpu: [x64]
os: [win32]
- '@swc/core@1.13.19':
- resolution: {integrity: sha512-V1r4wFdjaZIUIZZrV2Mb/prEeu03xvSm6oatPxsvnXKF9lNh5Jtk9QvUdiVfD9rrvi7bXrAVhg9Wpbmv/2Fl1g==}
+ '@swc/core@1.15.1':
+ resolution: {integrity: sha512-s9GN3M2jA32k+StvuS9uGe4ztf5KVGBdlJMMC6LR6Ah23Lq/CWKVcC3WeQi8qaAcLd+DiddoNCNMUWymLv+wWQ==}
engines: {node: '>=10'}
peerDependencies:
'@swc/helpers': '>=0.5.17'
@@ -4720,6 +5195,94 @@ packages:
'@swc/types@0.1.25':
resolution: {integrity: sha512-iAoY/qRhNH8a/hBvm3zKj9qQ4oc2+3w1unPJa2XvTK3XjeLXtzcCingVPw/9e5mn1+0yPqxcBGp9Jf0pkfMb1g==}
+ '@tailwindcss/node@4.1.12':
+ resolution: {integrity: sha512-3hm9brwvQkZFe++SBt+oLjo4OLDtkvlE8q2WalaD/7QWaeM7KEJbAiY/LJZUaCs7Xa8aUu4xy3uoyX4q54UVdQ==}
+
+ '@tailwindcss/oxide-android-arm64@4.1.12':
+ resolution: {integrity: sha512-oNY5pq+1gc4T6QVTsZKwZaGpBb2N1H1fsc1GD4o7yinFySqIuRZ2E4NvGasWc6PhYJwGK2+5YT1f9Tp80zUQZQ==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [android]
+
+ '@tailwindcss/oxide-darwin-arm64@4.1.12':
+ resolution: {integrity: sha512-cq1qmq2HEtDV9HvZlTtrj671mCdGB93bVY6J29mwCyaMYCP/JaUBXxrQQQm7Qn33AXXASPUb2HFZlWiiHWFytw==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@tailwindcss/oxide-darwin-x64@4.1.12':
+ resolution: {integrity: sha512-6UCsIeFUcBfpangqlXay9Ffty9XhFH1QuUFn0WV83W8lGdX8cD5/+2ONLluALJD5+yJ7k8mVtwy3zMZmzEfbLg==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [darwin]
+
+ '@tailwindcss/oxide-freebsd-x64@4.1.12':
+ resolution: {integrity: sha512-JOH/f7j6+nYXIrHobRYCtoArJdMJh5zy5lr0FV0Qu47MID/vqJAY3r/OElPzx1C/wdT1uS7cPq+xdYYelny1ww==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.12':
+ resolution: {integrity: sha512-v4Ghvi9AU1SYgGr3/j38PD8PEe6bRfTnNSUE3YCMIRrrNigCFtHZ2TCm8142X8fcSqHBZBceDx+JlFJEfNg5zQ==}
+ engines: {node: '>= 10'}
+ cpu: [arm]
+ os: [linux]
+
+ '@tailwindcss/oxide-linux-arm64-gnu@4.1.12':
+ resolution: {integrity: sha512-YP5s1LmetL9UsvVAKusHSyPlzSRqYyRB0f+Kl/xcYQSPLEw/BvGfxzbH+ihUciePDjiXwHh+p+qbSP3SlJw+6g==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@tailwindcss/oxide-linux-arm64-musl@4.1.12':
+ resolution: {integrity: sha512-V8pAM3s8gsrXcCv6kCHSuwyb/gPsd863iT+v1PGXC4fSL/OJqsKhfK//v8P+w9ThKIoqNbEnsZqNy+WDnwQqCA==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@tailwindcss/oxide-linux-x64-gnu@4.1.12':
+ resolution: {integrity: sha512-xYfqYLjvm2UQ3TZggTGrwxjYaLB62b1Wiysw/YE3Yqbh86sOMoTn0feF98PonP7LtjsWOWcXEbGqDL7zv0uW8Q==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [linux]
+
+ '@tailwindcss/oxide-linux-x64-musl@4.1.12':
+ resolution: {integrity: sha512-ha0pHPamN+fWZY7GCzz5rKunlv9L5R8kdh+YNvP5awe3LtuXb5nRi/H27GeL2U+TdhDOptU7T6Is7mdwh5Ar3A==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [linux]
+
+ '@tailwindcss/oxide-wasm32-wasi@4.1.12':
+ resolution: {integrity: sha512-4tSyu3dW+ktzdEpuk6g49KdEangu3eCYoqPhWNsZgUhyegEda3M9rG0/j1GV/JjVVsj+lG7jWAyrTlLzd/WEBg==}
+ engines: {node: '>=14.0.0'}
+ cpu: [wasm32]
+ bundledDependencies:
+ - '@napi-rs/wasm-runtime'
+ - '@emnapi/core'
+ - '@emnapi/runtime'
+ - '@tybys/wasm-util'
+ - '@emnapi/wasi-threads'
+ - tslib
+
+ '@tailwindcss/oxide-win32-arm64-msvc@4.1.12':
+ resolution: {integrity: sha512-iGLyD/cVP724+FGtMWslhcFyg4xyYyM+5F4hGvKA7eifPkXHRAUDFaimu53fpNg9X8dfP75pXx/zFt/jlNF+lg==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [win32]
+
+ '@tailwindcss/oxide-win32-x64-msvc@4.1.12':
+ resolution: {integrity: sha512-NKIh5rzw6CpEodv/++r0hGLlfgT/gFN+5WNdZtvh6wpU2BpGNgdjvj6H2oFc8nCM839QM1YOhjpgbAONUb4IxA==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [win32]
+
+ '@tailwindcss/oxide@4.1.12':
+ resolution: {integrity: sha512-gM5EoKHW/ukmlEtphNwaGx45fGoEmP10v51t9unv55voWh6WrOL19hfuIdo2FjxIaZzw776/BUQg7Pck++cIVw==}
+ engines: {node: '>= 10'}
+
+ '@tailwindcss/postcss@4.1.12':
+ resolution: {integrity: sha512-5PpLYhCAwf9SJEeIsSmCDLgyVfdBhdBpzX1OJ87anT9IVR0Z9pjM0FNixCAUAHGnMBGB8K99SwAheXrT0Kh6QQ==}
+
'@tanstack/react-virtual@3.13.2':
resolution: {integrity: sha512-LceSUgABBKF6HSsHK2ZqHzQ37IKV/jlaWbHm+NyTa3/WNb/JZVcThDuTainf+PixltOOcFCYXwxbLpOX9sCx+g==}
peerDependencies:
@@ -4733,10 +5296,6 @@ packages:
resolution: {integrity: sha512-pemlzrSESWbdAloYml3bAJMEfNh1Z7EduzqPKprCH5S341frlpYnUEW0H72dLxa6IsYr+mPno20GiSm+h9dEdQ==}
engines: {node: '>=18'}
- '@testing-library/dom@10.4.1':
- resolution: {integrity: sha512-o4PXJQidqJl82ckFaXUeoAW+XysPLauYI43Abki5hABd853iMhitooc6znOnczgbTYmEP6U6/y1ZyKAIsvMKGg==}
- engines: {node: '>=18'}
-
'@testing-library/jest-dom@6.5.0':
resolution: {integrity: sha512-xGGHpBXYSHUUr6XsKBfs85TWlYKpTc37cSBBVrXcib2MkHLboWlkClhWF37JKlDb9KEq3dHs+f2xR7XJEWGBxA==}
engines: {node: '>=14', npm: '>=6', yarn: '>=1'}
@@ -4800,8 +5359,8 @@ packages:
'@types/babel__template@7.4.4':
resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
- '@types/babel__traverse@7.28.0':
- resolution: {integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==}
+ '@types/babel__traverse@7.20.6':
+ resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==}
'@types/body-parser@1.19.5':
resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==}
@@ -4929,9 +5488,6 @@ packages:
'@types/estree@1.0.6':
resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
- '@types/estree@1.0.8':
- resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
-
'@types/express-serve-static-core@4.19.6':
resolution: {integrity: sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==}
@@ -5054,8 +5610,8 @@ packages:
peerDependencies:
'@types/react': ^18.0.0
- '@types/react-dom@19.2.2':
- resolution: {integrity: sha512-9KQPoO6mZCi7jcIStSnlOWn2nEF3mNmyr3rIAsGnAbQKYbRLyqmeSc39EVgtxXVia+LMT8j3knZLAZAh+xLmrw==}
+ '@types/react-dom@19.2.1':
+ resolution: {integrity: sha512-/EEvYBdT3BflCWvTMO7YkYBHVE9Ci6XdqZciZANQgKpaiDRGOLIlRo91jbTNRQjgPFWVaRxcYc0luVNFitz57A==}
peerDependencies:
'@types/react': ^19.2.0
@@ -5140,11 +5696,19 @@ packages:
'@types/yargs@17.0.32':
resolution: {integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==}
- '@typescript-eslint/eslint-plugin@8.46.2':
- resolution: {integrity: sha512-ZGBMToy857/NIPaaCucIUQgqueOiq7HeAKkhlvqVV4lm089zUFW6ikRySx2v+cAhKeUCPuWVHeimyk6Dw1iY3w==}
+ '@typescript-eslint/eslint-plugin@8.26.1':
+ resolution: {integrity: sha512-2X3mwqsj9Bd3Ciz508ZUtoQQYpOhU/kWoUqIf49H8Z0+Vbh6UF/y0OEYp0Q0axOGzaBGs7QxRwq0knSQ8khQNA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '>=4.8.4 <5.9.0'
+
+ '@typescript-eslint/eslint-plugin@8.46.3':
+ resolution: {integrity: sha512-sbaQ27XBUopBkRiuY/P9sWGOWUW4rl8fDoHIUmLpZd8uldsTyB4/Zg6bWTegPoTLnKj9Hqgn3QD6cjPNB32Odw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- '@typescript-eslint/parser': ^8.46.2
+ '@typescript-eslint/parser': ^8.46.3
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <6.0.0'
@@ -5159,8 +5723,15 @@ packages:
typescript:
optional: true
- '@typescript-eslint/parser@8.46.2':
- resolution: {integrity: sha512-BnOroVl1SgrPLywqxyqdJ4l3S2MsKVLDVxZvjI1Eoe8ev2r3kGDo+PcMihNmDE+6/KjkTubSJnmqGZZjQSBq/g==}
+ '@typescript-eslint/parser@8.26.1':
+ resolution: {integrity: sha512-w6HZUV4NWxqd8BdeFf81t07d7/YV9s7TCWrQQbG5uhuvGUAW+fq1usZ1Hmz9UPNLniFnD8GLSsDpjP0hm1S4lQ==}
+ 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-eslint/parser@8.46.3':
+ resolution: {integrity: sha512-6m1I5RmHBGTnUGS113G04DMu3CpSdxCAU/UvtjNWL4Nuf3MW9tQhiJqRlHzChIkhy6kZSAQmc+I1bcGjE3yNKg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
@@ -5176,28 +5747,39 @@ packages:
typescript:
optional: true
- '@typescript-eslint/project-service@8.46.2':
- resolution: {integrity: sha512-PULOLZ9iqwI7hXcmL4fVfIsBi6AN9YxRc0frbvmg8f+4hQAjQ5GYNKK0DIArNo+rOKmR/iBYwkpBmnIwin4wBg==}
+ '@typescript-eslint/project-service@8.46.3':
+ resolution: {integrity: sha512-Fz8yFXsp2wDFeUElO88S9n4w1I4CWDTXDqDr9gYvZgUpwXQqmZBr9+NTTql5R3J7+hrJZPdpiWaB9VNhAKYLuQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/scope-manager@8.46.2':
- resolution: {integrity: sha512-LF4b/NmGvdWEHD2H4MsHD8ny6JpiVNDzrSZr3CsckEgCbAGZbYM4Cqxvi9L+WqDMT+51Ozy7lt2M+d0JLEuBqA==}
+ '@typescript-eslint/scope-manager@8.26.1':
+ resolution: {integrity: sha512-6EIvbE5cNER8sqBu6V7+KeMZIC1664d2Yjt+B9EWUXrsyWpxx4lEZrmvxgSKRC6gX+efDL/UY9OpPZ267io3mg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@typescript-eslint/scope-manager@8.46.3':
+ resolution: {integrity: sha512-FCi7Y1zgrmxp3DfWfr+3m9ansUUFoy8dkEdeQSgA9gbm8DaHYvZCdkFRQrtKiedFf3Ha6VmoqoAaP68+i+22kg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@typescript-eslint/scope-manager@8.9.0':
resolution: {integrity: sha512-bZu9bUud9ym1cabmOYH9S6TnbWRzpklVmwqICeOulTCZ9ue2/pczWzQvt/cGj2r2o1RdKoZbuEMalJJSYw3pHQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/tsconfig-utils@8.46.2':
- resolution: {integrity: sha512-a7QH6fw4S57+F5y2FIxxSDyi5M4UfGF+Jl1bCGd7+L4KsaUY80GsiF/t0UoRFDHAguKlBaACWJRmdrc6Xfkkag==}
+ '@typescript-eslint/tsconfig-utils@8.46.3':
+ resolution: {integrity: sha512-GLupljMniHNIROP0zE7nCcybptolcH8QZfXOpCfhQDAdwJ/ZTlcaBOYebSOZotpti/3HrHSw7D3PZm75gYFsOA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/type-utils@8.46.2':
- resolution: {integrity: sha512-HbPM4LbaAAt/DjxXaG9yiS9brOOz6fabal4uvUmaUYe6l3K1phQDMQKBRUrr06BQkxkvIZVVHttqiybM9nJsLA==}
+ '@typescript-eslint/type-utils@8.26.1':
+ resolution: {integrity: sha512-Kcj/TagJLwoY/5w9JGEFV0dclQdyqw9+VMndxOJKtoFSjfZhLXhYjzsQEeyza03rwHx2vFEGvrJWJBXKleRvZg==}
+ 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-eslint/type-utils@8.46.3':
+ resolution: {integrity: sha512-ZPCADbr+qfz3aiTTYNNkCbUt+cjNwI/5McyANNrFBpVxPt7GqpEYz5ZfdwuFyGUnJ9FdDXbGODUu6iRCI6XRXw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
@@ -5212,16 +5794,26 @@ packages:
typescript:
optional: true
- '@typescript-eslint/types@8.46.2':
- resolution: {integrity: sha512-lNCWCbq7rpg7qDsQrd3D6NyWYu+gkTENkG5IKYhUIcxSb59SQC/hEQ+MrG4sTgBVghTonNWq42bA/d4yYumldQ==}
+ '@typescript-eslint/types@8.26.1':
+ resolution: {integrity: sha512-n4THUQW27VmQMx+3P+B0Yptl7ydfceUj4ON/AQILAASwgYdZ/2dhfymRMh5egRUrvK5lSmaOm77Ry+lmXPOgBQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@typescript-eslint/types@8.46.3':
+ resolution: {integrity: sha512-G7Ok9WN/ggW7e/tOf8TQYMaxgID3Iujn231hfi0Pc7ZheztIJVpO44ekY00b7akqc6nZcvregk0Jpah3kep6hA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@typescript-eslint/types@8.9.0':
resolution: {integrity: sha512-SjgkvdYyt1FAPhU9c6FiYCXrldwYYlIQLkuc+LfAhCna6ggp96ACncdtlbn8FmnG72tUkXclrDExOpEYf1nfJQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/typescript-estree@8.46.2':
- resolution: {integrity: sha512-f7rW7LJ2b7Uh2EiQ+7sza6RDZnajbNbemn54Ob6fRwQbgcIn+GWfyuHDHRYgRoZu1P4AayVScrRW+YfbTvPQoQ==}
+ '@typescript-eslint/typescript-estree@8.26.1':
+ resolution: {integrity: sha512-yUwPpUHDgdrv1QJ7YQal3cMVBGWfnuCdKbXw1yyjArax3353rEJP1ZA+4F8nOlQ3RfS2hUN/wze3nlY+ZOhvoA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '>=4.8.4 <5.9.0'
+
+ '@typescript-eslint/typescript-estree@8.46.3':
+ resolution: {integrity: sha512-f/NvtRjOm80BtNM5OQtlaBdM5BRFUv7gf381j9wygDNL+qOYSNOgtQ/DCndiYi80iIOv76QqaTmp4fa9hwI0OA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <6.0.0'
@@ -5235,8 +5827,15 @@ packages:
typescript:
optional: true
- '@typescript-eslint/utils@8.46.2':
- resolution: {integrity: sha512-sExxzucx0Tud5tE0XqR0lT0psBQvEpnpiul9XbGUB1QwpWJJAps1O/Z7hJxLGiZLBKMCutjTzDgmd1muEhBnVg==}
+ '@typescript-eslint/utils@8.26.1':
+ resolution: {integrity: sha512-V4Urxa/XtSUroUrnI7q6yUTD3hDtfJ2jzVfeT3VK0ciizfK2q/zGC0iDh1lFMUZR8cImRrep6/q0xd/1ZGPQpg==}
+ 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-eslint/utils@8.46.3':
+ resolution: {integrity: sha512-VXw7qmdkucEx9WkmR3ld/u6VhRyKeiF1uxWwCy/iuNfokjJ7VhsgLSOTjsol8BunSw190zABzpwdNsze2Kpo4g==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
@@ -5248,8 +5847,12 @@ packages:
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- '@typescript-eslint/visitor-keys@8.46.2':
- resolution: {integrity: sha512-tUFMXI4gxzzMXt4xpGJEsBsTox0XbNQ1y94EwlD/CuZwFcQP79xfQqMhau9HsRc/J0cAPA/HZt1dZPtGn9V/7w==}
+ '@typescript-eslint/visitor-keys@8.26.1':
+ resolution: {integrity: sha512-AjOC3zfnxd6S4Eiy3jwktJPclqhFHNyd8L6Gycf9WUPoKZpgM5PjkxY1X7uSy61xVpiJDhhk7XT2NVsN3ALTWg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@typescript-eslint/visitor-keys@8.46.3':
+ resolution: {integrity: sha512-uk574k8IU0rOF/AjniX8qbLSGURJVUCeM5e4MIMKBFFi8weeiLrG1fyQejyLXQpRZbU/1BuQasleV/RfHC3hHg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@typescript-eslint/visitor-keys@8.9.0':
@@ -5553,17 +6156,15 @@ packages:
acorn-globals@7.0.1:
resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==}
- 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==}
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
+ acorn-walk@8.3.3:
+ resolution: {integrity: sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==}
+ engines: {node: '>=0.4.0'}
+
acorn-walk@8.3.4:
resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==}
engines: {node: '>=0.4.0'}
@@ -5573,8 +6174,13 @@ packages:
engines: {node: '>=0.4.0'}
hasBin: true
- acorn@8.13.0:
- resolution: {integrity: sha512-8zSiw54Oxrdym50NlZ9sUusyO1Z1ZchgRLWRaK6c86XJFClyCgFKetdowBg5bKxyp/u+CDBJG4Mpp0m3HLZl9w==}
+ acorn@8.12.0:
+ resolution: {integrity: sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==}
+ engines: {node: '>=0.4.0'}
+ hasBin: true
+
+ acorn@8.14.0:
+ resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
engines: {node: '>=0.4.0'}
hasBin: true
@@ -5699,6 +6305,9 @@ packages:
resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==}
engines: {node: '>=12'}
+ ansi-sequence-parser@1.1.1:
+ resolution: {integrity: sha512-vJXt3yiaUL4UU546s3rPXlsry/RnM730G1+HkpKE012AN0sx1eOrxSu95oKDIonskeLTijMgqWZ3uDEe3NFvyg==}
+
ansi-styles@3.2.1:
resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
engines: {node: '>=4'}
@@ -6040,10 +6649,6 @@ packages:
resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==}
engines: {node: '>=0.10.0'}
- baseline-browser-mapping@2.8.10:
- resolution: {integrity: sha512-uLfgBi+7IBNay8ECBO2mVMGZAc1VgZWEChxm4lv+TobGdG82LnXMjuNGo/BSSZZL4UmkWhxEHP2f5ziLNwGWMA==}
- hasBin: true
-
basic-auth@2.0.1:
resolution: {integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==}
engines: {node: '>= 0.8'}
@@ -6063,9 +6668,6 @@ packages:
peerDependencies:
react: '>=16.8'
- bidi-js@1.0.3:
- resolution: {integrity: sha512-RKshQI1R3YQ+n9YJz2QQ147P66ELpa1FQEg20Dk8oW9t2KgLbpDLLp9aGZ7y8WHSshDknG0bknqGw5/tyCs5tw==}
-
big-integer@1.6.52:
resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==}
engines: {node: '>=0.6'}
@@ -6186,11 +6788,6 @@ packages:
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
- browserslist@4.26.2:
- resolution: {integrity: sha512-ECFzp6uFOSB+dcZ5BK/IBaGWssbSYBHvuMeMt3MMFyhI0Z8SqGgEkBLARgpRH3hutIgPVsALcMwbDrJqPxQ65A==}
- engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
- hasBin: true
-
bser@2.1.1:
resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==}
@@ -6283,6 +6880,9 @@ packages:
resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
engines: {node: '>= 0.4'}
+ call-bind@1.0.2:
+ resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
+
call-bind@1.0.7:
resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==}
engines: {node: '>= 0.4'}
@@ -6332,9 +6932,6 @@ packages:
caniuse-lite@1.0.30001704:
resolution: {integrity: sha512-+L2IgBbV6gXB4ETf0keSvLr7JUrRVbIaB/lrQ1+z8mRcQiisG5k+lG6O4n6Y5q6f5EuNfaYXKgymucphlEXQew==}
- caniuse-lite@1.0.30001751:
- resolution: {integrity: sha512-A0QJhug0Ly64Ii3eIqHu5X51ebln3k4yTUkY1j8drqpWHVreg/VLijN48cZ1bYPiqOQuqpkIKnzr/Ul8V+p6Cw==}
-
case-sensitive-paths-webpack-plugin@2.4.0:
resolution: {integrity: sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==}
engines: {node: '>=4'}
@@ -6416,6 +7013,10 @@ packages:
resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
engines: {node: '>=10'}
+ 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==}
engines: {node: '>=6.0'}
@@ -6448,6 +7049,9 @@ packages:
resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==}
engines: {node: '>=0.10.0'}
+ class-variance-authority@0.7.1:
+ resolution: {integrity: sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==}
+
clean-css@4.2.4:
resolution: {integrity: sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==}
engines: {node: '>= 4.0'}
@@ -6547,6 +7151,9 @@ packages:
resolution: {integrity: sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==}
engines: {node: '>= 4.0'}
+ codehike@1.0.7:
+ resolution: {integrity: sha512-m4YOQv1l06qoGBLCgXRNT45MKAudXjir9v+WTs7Xb0gfze6LN3ZiUp08+WRA1N/QGT1SHbzvck8txvPq+C2EPg==}
+
collapse-white-space@2.1.0:
resolution: {integrity: sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw==}
@@ -6921,10 +7528,6 @@ packages:
resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==}
engines: {node: '>=8.0.0'}
- css-tree@3.1.0:
- resolution: {integrity: sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==}
- engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
-
css-what@3.4.2:
resolution: {integrity: sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==}
engines: {node: '>= 6'}
@@ -6983,9 +7586,9 @@ packages:
resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==}
engines: {node: '>=8'}
- cssstyle@5.3.2:
- resolution: {integrity: sha512-zDMqXh8Vs1CdRYZQ2M633m/SFgcjlu8RB8b/1h82i+6vpArF507NSYIWJHGlJaTWoS+imcnctmEz43txhbVkOw==}
- engines: {node: '>=20'}
+ cssstyle@4.3.0:
+ resolution: {integrity: sha512-6r0NiY0xizYqfBvWp1G7WXJ06/bZyrk7Dc6PHql82C/pKGUTKu4yAX4Y8JPamb1ob9nBKuxWzCGTRuGwU3yxJQ==}
+ engines: {node: '>=18'}
csstype@3.1.3:
resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
@@ -7171,9 +7774,9 @@ packages:
resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==}
engines: {node: '>=12'}
- data-urls@6.0.0:
- resolution: {integrity: sha512-BnBS08aLUM+DKamupXs3w2tJJoqU+AkaE/+6vQxi/G/DPmIZFJJp9Dkb1kM03AZx8ADehDUZgsNxju3mPXZYIA==}
- engines: {node: '>=20'}
+ data-urls@5.0.0:
+ resolution: {integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==}
+ engines: {node: '>=18'}
data-view-buffer@1.0.1:
resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==}
@@ -7246,12 +7849,12 @@ packages:
resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
engines: {node: '>=0.10.0'}
+ decimal.js@10.4.3:
+ resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==}
+
decimal.js@10.5.0:
resolution: {integrity: sha512-8vDa8Qxvr/+d94hSh5P3IJwI5t8/c0KsMp+g8bNw9cY2icONa5aPfvKeieW1WlG0WQYwwhJ7mjui2xtiePQSXw==}
- decimal.js@10.6.0:
- resolution: {integrity: sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==}
-
decode-named-character-reference@1.1.0:
resolution: {integrity: sha512-Wy+JTSbFThEOXQIR2L6mxJvEs+veIzpmqD7ynWxMXGpnk3smkHQOp6forLdHsKpAMW9iJpaBBIxz285t1n1C3w==}
@@ -7392,6 +7995,10 @@ packages:
resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==}
engines: {node: '>=8'}
+ detect-libc@2.0.4:
+ resolution: {integrity: sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==}
+ engines: {node: '>=8'}
+
detect-libc@2.1.2:
resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
engines: {node: '>=8'}
@@ -7541,9 +8148,6 @@ packages:
electron-to-chromium@1.5.116:
resolution: {integrity: sha512-mufxTCJzLBQVvSdZzX1s5YAuXsN1M4tTyYxOOL1TcSKtIzQ9rjIrm7yFK80rN5dwGTePgdoABDSHpuVtRQh0Zw==}
- electron-to-chromium@1.5.228:
- resolution: {integrity: sha512-nxkiyuqAn4MJ1QbobwqJILiDtu/jk14hEAWaMiJmNPh1Z+jqoFlBFZjdXwLWGeVSeu9hGLg6+2G9yJaW8rBIFA==}
-
elliptic@6.5.4:
resolution: {integrity: sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==}
@@ -7597,10 +8201,18 @@ packages:
resolution: {integrity: sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==}
engines: {node: '>=6.9.0'}
+ enhanced-resolve@5.17.1:
+ resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==}
+ engines: {node: '>=10.13.0'}
+
enhanced-resolve@5.18.1:
resolution: {integrity: sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==}
engines: {node: '>=10.13.0'}
+ enhanced-resolve@5.18.3:
+ resolution: {integrity: sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==}
+ engines: {node: '>=10.13.0'}
+
entities@2.2.0:
resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
@@ -7608,10 +8220,6 @@ packages:
resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
engines: {node: '>=0.12'}
- entities@6.0.1:
- resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==}
- engines: {node: '>=0.12'}
-
env-editor@0.4.2:
resolution: {integrity: sha512-ObFo8v4rQJAE59M69QzwloxPZtd33TpYEIjtKD1rrFDcM1Gd7IkDxEBU+HriziN6HSHQnBJi8Dmy+JWkav5HKA==}
engines: {node: '>=8'}
@@ -7653,6 +8261,10 @@ packages:
resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==}
engines: {node: '>= 0.4'}
+ es-abstract@1.23.9:
+ resolution: {integrity: sha512-py07lI0wjxAC/DcfK1S6G7iANonniZwTISvdPzk9hzeH0IZIshbuuFxLIU96OyF89Yb9hiqWn8M/bY83KY5vzA==}
+ engines: {node: '>= 0.4'}
+
es-abstract@1.24.0:
resolution: {integrity: sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==}
engines: {node: '>= 0.4'}
@@ -7781,6 +8393,24 @@ packages:
peerDependencies:
eslint: ^9.0.0
+ eslint-config-next@15.5.0:
+ resolution: {integrity: sha512-Yl4hlOdBqstAuHnlBfx2RimBzWQwysM2SJNu5EzYVa2qS2ItPs7lgxL0sJJDudEx5ZZHfWPZ/6U8+FtDFWs7/w==}
+ peerDependencies:
+ eslint: ^7.23.0 || ^8.0.0 || ^9.0.0
+ typescript: '>=3.3.1'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ eslint-config-next@15.5.4:
+ resolution: {integrity: sha512-BzgVVuT3kfJes8i2GHenC1SRJ+W3BTML11lAOYFOOPzrk2xp66jBOAGEFRw+3LkYCln5UzvFsLhojrshb5Zfaw==}
+ peerDependencies:
+ eslint: ^7.23.0 || ^8.0.0 || ^9.0.0
+ typescript: '>=3.3.1'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
eslint-config-next@16.0.1:
resolution: {integrity: sha512-wNuHw5gNOxwLUvpg0cu6IL0crrVC9hAwdS/7UwleNkwyaMiWIOAwf8yzXVqBBzL3c9A7jVRngJxjoSpPP1aEhg==}
peerDependencies:
@@ -7982,8 +8612,8 @@ packages:
jiti:
optional: true
- eslint@9.38.0:
- resolution: {integrity: sha512-t5aPOpmtJcZcz5UJyY2GbvpDlsK5E8JqRqoKtfiKE3cNh437KIqfJr3A3AKf5k64NPx6d0G3dno6XDY05PqPtw==}
+ eslint@9.39.1:
+ resolution: {integrity: sha512-BhHmn2yNOFA9H9JmmIVKJmd288g9hrVRDkdoIgRCRuSySRUHH7r/DI6aAXW9T1WwUuY3DFgrcaqB+deURBLR5g==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
hasBin: true
peerDependencies:
@@ -7996,10 +8626,6 @@ packages:
resolution: {integrity: sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==}
engines: {node: '>=6'}
- espree@10.2.0:
- resolution: {integrity: sha512-upbkBJbckcCNBDBDXEbuhjbP68n+scUd3k/U2EkyM9nw+I/jPiL4cLF/Al06CF96wRltFda16sxDFrxsI1v0/g==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
-
espree@10.3.0:
resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -8474,6 +9100,10 @@ packages:
resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==}
engines: {node: '>= 6'}
+ form-data@4.0.2:
+ resolution: {integrity: sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==}
+ engines: {node: '>= 6'}
+
format@0.2.2:
resolution: {integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==}
engines: {node: '>=0.4.x'}
@@ -8898,6 +9528,10 @@ packages:
hash.js@1.1.7:
resolution: {integrity: sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==}
+ hasown@2.0.0:
+ resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==}
+ engines: {node: '>= 0.4'}
+
hasown@2.0.2:
resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
engines: {node: '>= 0.4'}
@@ -9336,10 +9970,6 @@ packages:
is-alphanumerical@2.0.1:
resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==}
- is-arguments@1.1.1:
- resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
- engines: {node: '>= 0.4'}
-
is-arguments@1.2.0:
resolution: {integrity: sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==}
engines: {node: '>= 0.4'}
@@ -9540,9 +10170,6 @@ packages:
is-lambda@1.0.1:
resolution: {integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==}
- is-map@2.0.2:
- resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==}
-
is-map@2.0.3:
resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==}
engines: {node: '>= 0.4'}
@@ -9674,6 +10301,10 @@ packages:
resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==}
engines: {node: '>= 0.4'}
+ is-symbol@1.0.4:
+ resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
+ engines: {node: '>= 0.4'}
+
is-symbol@1.1.1:
resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==}
engines: {node: '>= 0.4'}
@@ -9702,9 +10333,6 @@ packages:
resolution: {integrity: sha512-+kwPrVDu9Ms03L90Qaml+79+6DZHqHyRoANI6IsZJ/g8frhnfchDOBCa0RbQ6/kdHt5CS5OeIEyrYznNuVN+8A==}
engines: {node: '>=0.10.0'}
- is-weakmap@2.0.1:
- resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==}
-
is-weakmap@2.0.2:
resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
engines: {node: '>= 0.4'}
@@ -9716,9 +10344,6 @@ packages:
resolution: {integrity: sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==}
engines: {node: '>= 0.4'}
- is-weakset@2.0.2:
- resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==}
-
is-weakset@2.0.4:
resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==}
engines: {node: '>= 0.4'}
@@ -9982,6 +10607,10 @@ packages:
resolution: {integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==}
hasBin: true
+ jiti@2.5.1:
+ resolution: {integrity: sha512-twQoecYPiVA5K/h6SxtORw/Bs3ar+mLUtoPSc7iMXzQzK8d7eJ/R09wmTwAjiamETn1cXYPGfNnu7DMoHgu12w==}
+ hasBin: true
+
joi@17.13.3:
resolution: {integrity: sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==}
@@ -10030,9 +10659,9 @@ packages:
canvas:
optional: true
- jsdom@27.1.0:
- resolution: {integrity: sha512-Pcfm3eZ+eO4JdZCXthW9tCDT3nF4K+9dmeZ+5X39n+Kqz0DDIABRP5CAEOHRFZk8RGuC2efksTJxrjp8EXCunQ==}
- engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
+ jsdom@26.0.0:
+ resolution: {integrity: sha512-BZYDGVAIriBWTpIxYzrXjv3E/4u8+/pSG5bQdIYCbNCGOvsPkDQfTVLAIXAf9ETdCpduCVTkDe2NNZ8NIwUVzw==}
+ engines: {node: '>=18'}
peerDependencies:
canvas: ^3.0.0
peerDependenciesMeta:
@@ -10203,68 +10832,68 @@ packages:
resolution: {integrity: sha512-26zzwoBNAvX9AWOPiqqF6FG4HrSCPsHFkQm7nT+xU1ggAujL/eae81RnCv4CJ2In9q9fh10B88sYSzKCUh/Ghg==}
engines: {node: ^16.14.0 || >=18.0.0}
- lightningcss-darwin-arm64@1.29.2:
- resolution: {integrity: sha512-cK/eMabSViKn/PG8U/a7aCorpeKLMlK0bQeNHmdb7qUnBkNPnL+oV5DjJUo0kqWsJUapZsM4jCfYItbqBDvlcA==}
+ lightningcss-darwin-arm64@1.30.1:
+ resolution: {integrity: sha512-c8JK7hyE65X1MHMN+Viq9n11RRC7hgin3HhYKhrMyaXflk5GVplZ60IxyoVtzILeKr+xAJwg6zK6sjTBJ0FKYQ==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [darwin]
- lightningcss-darwin-x64@1.29.2:
- resolution: {integrity: sha512-j5qYxamyQw4kDXX5hnnCKMf3mLlHvG44f24Qyi2965/Ycz829MYqjrVg2H8BidybHBp9kom4D7DR5VqCKDXS0w==}
+ lightningcss-darwin-x64@1.30.1:
+ resolution: {integrity: sha512-k1EvjakfumAQoTfcXUcHQZhSpLlkAuEkdMBsI/ivWw9hL+7FtilQc0Cy3hrx0AAQrVtQAbMI7YjCgYgvn37PzA==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [darwin]
- lightningcss-freebsd-x64@1.29.2:
- resolution: {integrity: sha512-wDk7M2tM78Ii8ek9YjnY8MjV5f5JN2qNVO+/0BAGZRvXKtQrBC4/cn4ssQIpKIPP44YXw6gFdpUF+Ps+RGsCwg==}
+ lightningcss-freebsd-x64@1.30.1:
+ resolution: {integrity: sha512-kmW6UGCGg2PcyUE59K5r0kWfKPAVy4SltVeut+umLCFoJ53RdCUWxcRDzO1eTaxf/7Q2H7LTquFHPL5R+Gjyig==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [freebsd]
- lightningcss-linux-arm-gnueabihf@1.29.2:
- resolution: {integrity: sha512-IRUrOrAF2Z+KExdExe3Rz7NSTuuJ2HvCGlMKoquK5pjvo2JY4Rybr+NrKnq0U0hZnx5AnGsuFHjGnNT14w26sg==}
+ lightningcss-linux-arm-gnueabihf@1.30.1:
+ resolution: {integrity: sha512-MjxUShl1v8pit+6D/zSPq9S9dQ2NPFSQwGvxBCYaBYLPlCWuPh9/t1MRS8iUaR8i+a6w7aps+B4N0S1TYP/R+Q==}
engines: {node: '>= 12.0.0'}
cpu: [arm]
os: [linux]
- lightningcss-linux-arm64-gnu@1.29.2:
- resolution: {integrity: sha512-KKCpOlmhdjvUTX/mBuaKemp0oeDIBBLFiU5Fnqxh1/DZ4JPZi4evEH7TKoSBFOSOV3J7iEmmBaw/8dpiUvRKlQ==}
+ lightningcss-linux-arm64-gnu@1.30.1:
+ resolution: {integrity: sha512-gB72maP8rmrKsnKYy8XUuXi/4OctJiuQjcuqWNlJQ6jZiWqtPvqFziskH3hnajfvKB27ynbVCucKSm2rkQp4Bw==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [linux]
- lightningcss-linux-arm64-musl@1.29.2:
- resolution: {integrity: sha512-Q64eM1bPlOOUgxFmoPUefqzY1yV3ctFPE6d/Vt7WzLW4rKTv7MyYNky+FWxRpLkNASTnKQUaiMJ87zNODIrrKQ==}
+ lightningcss-linux-arm64-musl@1.30.1:
+ resolution: {integrity: sha512-jmUQVx4331m6LIX+0wUhBbmMX7TCfjF5FoOH6SD1CttzuYlGNVpA7QnrmLxrsub43ClTINfGSYyHe2HWeLl5CQ==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [linux]
- lightningcss-linux-x64-gnu@1.29.2:
- resolution: {integrity: sha512-0v6idDCPG6epLXtBH/RPkHvYx74CVziHo6TMYga8O2EiQApnUPZsbR9nFNrg2cgBzk1AYqEd95TlrsL7nYABQg==}
+ lightningcss-linux-x64-gnu@1.30.1:
+ resolution: {integrity: sha512-piWx3z4wN8J8z3+O5kO74+yr6ze/dKmPnI7vLqfSqI8bccaTGY5xiSGVIJBDd5K5BHlvVLpUB3S2YCfelyJ1bw==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [linux]
- lightningcss-linux-x64-musl@1.29.2:
- resolution: {integrity: sha512-rMpz2yawkgGT8RULc5S4WiZopVMOFWjiItBT7aSfDX4NQav6M44rhn5hjtkKzB+wMTRlLLqxkeYEtQ3dd9696w==}
+ lightningcss-linux-x64-musl@1.30.1:
+ resolution: {integrity: sha512-rRomAK7eIkL+tHY0YPxbc5Dra2gXlI63HL+v1Pdi1a3sC+tJTcFrHX+E86sulgAXeI7rSzDYhPSeHHjqFhqfeQ==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [linux]
- lightningcss-win32-arm64-msvc@1.29.2:
- resolution: {integrity: sha512-nL7zRW6evGQqYVu/bKGK+zShyz8OVzsCotFgc7judbt6wnB2KbiKKJwBE4SGoDBQ1O94RjW4asrCjQL4i8Fhbw==}
+ lightningcss-win32-arm64-msvc@1.30.1:
+ resolution: {integrity: sha512-mSL4rqPi4iXq5YVqzSsJgMVFENoa4nGTT/GjO2c0Yl9OuQfPsIfncvLrEW6RbbB24WtZ3xP/2CCmI3tNkNV4oA==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [win32]
- lightningcss-win32-x64-msvc@1.29.2:
- resolution: {integrity: sha512-EdIUW3B2vLuHmv7urfzMI/h2fmlnOQBk1xlsDxkN1tCWKjNFjfLhGxYk8C8mzpSfr+A6jFFIi8fU6LbQGsRWjA==}
+ lightningcss-win32-x64-msvc@1.30.1:
+ resolution: {integrity: sha512-PVqXh48wh4T53F/1CCu8PIPCxLzWyCnn/9T5W1Jpmdy5h9Cwd+0YQS6/LwhHXSafuc61/xg9Lv5OrCby6a++jg==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [win32]
- lightningcss@1.29.2:
- resolution: {integrity: sha512-6b6gd/RUXKaw5keVdSEtqFVdzWnU5jMxTUjA2bVcMNPLwSQ08Sv/UodBVtETLCn7k4S1Ibxwh7k68IwLZPgKaA==}
+ lightningcss@1.30.1:
+ resolution: {integrity: sha512-xi6IyHML+c9+Q3W0S4fCQJOym42pyurFiJUHEcEyHS0CeKzia4yZDEsLlqOFykxOdHpNy0NmvVO31vcSqAxJCg==}
engines: {node: '>= 12.0.0'}
lilconfig@3.1.2:
@@ -10390,10 +11019,6 @@ packages:
lru-cache@10.4.3:
resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
- lru-cache@11.2.2:
- resolution: {integrity: sha512-F9ODfyqML2coTIsQpSkRHnLSZMtkU8Q+mSfcaIyKwy58u+8k5nvAYeiNhsyMARvzNcXJ9QfWVrcPsC9e9rAxtg==}
- engines: {node: 20 || >=22}
-
lru-cache@5.1.1:
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
@@ -10405,6 +11030,11 @@ packages:
resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==}
engines: {node: '>=12'}
+ lucide-react@0.545.0:
+ resolution: {integrity: sha512-7r1/yUuflQDSt4f1bpn5ZAocyIxcTyVyBBChSVtBKn5M+392cPmI5YJMWOJKk/HUWGm5wg83chlAZtCcGbEZtw==}
+ peerDependencies:
+ react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0
+
lz-string@1.5.0:
resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==}
hasBin: true
@@ -10593,9 +11223,6 @@ packages:
mdn-data@2.0.4:
resolution: {integrity: sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==}
- mdn-data@2.12.2:
- resolution: {integrity: sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==}
-
media-query-parser@2.0.2:
resolution: {integrity: sha512-1N4qp+jE0pL5Xv4uEcwVUhIkwdUO3S/9gML90nqKA7v7FcOS5vUtatfzok9S9U1EJU8dHWlcv95WLnKmmxZI9w==}
@@ -10675,11 +11302,13 @@ packages:
metro-react-native-babel-preset@0.72.3:
resolution: {integrity: sha512-uJx9y/1NIqoYTp6ZW1osJ7U5ZrXGAJbOQ/Qzl05BdGYvN1S7Qmbzid6xOirgK0EIT0pJKEEh1s8qbassYZe4cw==}
+ deprecated: Use @react-native/babel-preset instead
peerDependencies:
'@babel/core': '*'
metro-react-native-babel-preset@0.72.4:
resolution: {integrity: sha512-YGCVaYe1H5fOFktdDdL9IwAyiXjPh1t2eZZFp3KFJak6fxKpN+q5PPhe1kzMa77dbCAqgImv43zkfGa6i27eyA==}
+ deprecated: Use @react-native/babel-preset instead
peerDependencies:
'@babel/core': '*'
@@ -11085,6 +11714,10 @@ packages:
resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
engines: {node: '>= 8'}
+ minizlib@3.0.2:
+ resolution: {integrity: sha512-oG62iEk+CYt5Xj2YqI5Xi9xWUeZhDI8jjQmC5oThVH5JGCTgIjr7ciJDzC7MBzYd//WvR1OTmP5Q38Q8ShQtVA==}
+ engines: {node: '>= 18'}
+
mississippi@3.0.0:
resolution: {integrity: sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==}
engines: {node: '>=4.0.0'}
@@ -11108,6 +11741,11 @@ packages:
engines: {node: '>=10'}
hasBin: true
+ mkdirp@3.0.1:
+ resolution: {integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==}
+ engines: {node: '>=10'}
+ hasBin: true
+
mlly@1.7.1:
resolution: {integrity: sha512-rrVRZRELyQzrIUAVMHxP97kv+G786pHmOKzuFII8zDYahFBS7qnHh2AlYSl1GAHhaMPCz6/oHjVMcfFYgFYHgA==}
@@ -11280,6 +11918,48 @@ packages:
sass:
optional: true
+ next@15.5.0:
+ resolution: {integrity: sha512-N1lp9Hatw3a9XLt0307lGB4uTKsXDhyOKQo7uYMzX4i0nF/c27grcGXkLdb7VcT8QPYLBa8ouIyEoUQJ2OyeNQ==}
+ engines: {node: ^18.18.0 || ^19.8.0 || >= 20.0.0}
+ hasBin: true
+ peerDependencies:
+ '@opentelemetry/api': ^1.1.0
+ '@playwright/test': ^1.51.1
+ babel-plugin-react-compiler: '*'
+ react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0
+ react-dom: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0
+ sass: ^1.3.0
+ peerDependenciesMeta:
+ '@opentelemetry/api':
+ optional: true
+ '@playwright/test':
+ optional: true
+ babel-plugin-react-compiler:
+ optional: true
+ sass:
+ optional: true
+
+ next@15.5.4:
+ resolution: {integrity: sha512-xH4Yjhb82sFYQfY3vbkJfgSDgXvBB6a8xPs9i35k6oZJRoQRihZH+4s9Yo2qsWpzBmZ3lPXaJ2KPXLfkvW4LnA==}
+ engines: {node: ^18.18.0 || ^19.8.0 || >= 20.0.0}
+ hasBin: true
+ peerDependencies:
+ '@opentelemetry/api': ^1.1.0
+ '@playwright/test': ^1.51.1
+ babel-plugin-react-compiler: '*'
+ react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0
+ react-dom: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0
+ sass: ^1.3.0
+ peerDependenciesMeta:
+ '@opentelemetry/api':
+ optional: true
+ '@playwright/test':
+ optional: true
+ babel-plugin-react-compiler:
+ optional: true
+ sass:
+ optional: true
+
next@16.0.1:
resolution: {integrity: sha512-e9RLSssZwd35p7/vOa+hoDFggUZIUbZhIUSLZuETCwrCVvxOs87NamoUzT+vbcNAL8Ld9GobBnWOA6SbV/arOw==}
engines: {node: '>=20.9.0'}
@@ -11340,6 +12020,7 @@ packages:
node-domexception@1.0.0:
resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==}
engines: {node: '>=10.5.0'}
+ deprecated: Use your platform's native DOMException instead
node-emoji@2.2.0:
resolution: {integrity: sha512-Z3lTE9pLaJF47NyMhd4ww1yFTAP8YhYI8SleJiHzM46Fgpm5cnNzSl9XfzFNqbaz+VlJrIj3fXQ4DeN1Rjm6cw==}
@@ -11401,9 +12082,6 @@ packages:
node-releases@2.0.19:
resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
- node-releases@2.0.21:
- resolution: {integrity: sha512-5b0pgg78U3hwXkCM8Z9b2FJdPZlr9Psr9V2gQPESdGHqbntyFJKFW4r5TeWGFzafGY3hzs1JC62VEQMbl1JFkw==}
-
node-stream-zip@1.15.0:
resolution: {integrity: sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw==}
engines: {node: '>=0.12.0'}
@@ -11527,6 +12205,9 @@ packages:
nwsapi@2.2.10:
resolution: {integrity: sha512-QK0sRs7MKv0tKe1+5uZIQk/C8XGza4DAnztJG8iD+TpJIORARrCxczA738awHrZoHeTjSSoHqao2teO0dC/gFQ==}
+ nwsapi@2.2.18:
+ resolution: {integrity: sha512-p1TRH/edngVEHVbwqWnxUViEmq5znDvyB+Sik5cmuLpGOIfDf/39zLiq3swPF8Vakqn+gvNiOQAZu8djYlQILA==}
+
oauth@0.9.15:
resolution: {integrity: sha512-a5ERWK1kh38ExDEfoO6qUHJb32rd7aYmPHuyCu3Fta/cnICvYmgd2uhuKXvPD+PXB+gCEYYEaQdIRAjCOwAKNA==}
@@ -11553,10 +12234,6 @@ packages:
resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==}
engines: {node: '>= 0.4'}
- object-is@1.1.5:
- resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==}
- engines: {node: '>= 0.4'}
-
object-is@1.1.6:
resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==}
engines: {node: '>= 0.4'}
@@ -11883,12 +12560,12 @@ packages:
parse5@6.0.1:
resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==}
+ parse5@7.1.2:
+ resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==}
+
parse5@7.2.1:
resolution: {integrity: sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==}
- parse5@8.0.0:
- resolution: {integrity: sha512-9m4m5GSgXjL4AjumKzq1Fgfp3Z8rsvjRNbnkVwfu2ImRqE5D0LnY2QfDen18FSY9C573YU5XxSapdHZTZ2WolA==}
-
parseurl@1.3.3:
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
engines: {node: '>= 0.8'}
@@ -12377,6 +13054,77 @@ packages:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
+ prettier-plugin-organize-imports@4.2.0:
+ resolution: {integrity: sha512-Zdy27UhlmyvATZi67BTnLcKTo8fm6Oik59Sz6H64PgZJVs6NJpPD1mT240mmJn62c98/QaL+r3kx9Q3gRpDajg==}
+ peerDependencies:
+ prettier: '>=2.0'
+ typescript: '>=2.9'
+ vue-tsc: ^2.1.0 || 3
+ peerDependenciesMeta:
+ vue-tsc:
+ optional: true
+
+ prettier-plugin-tailwindcss@0.6.14:
+ resolution: {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': '*'
+ '@zackad/prettier-plugin-twig': '*'
+ prettier: ^3.0
+ prettier-plugin-astro: '*'
+ prettier-plugin-css-order: '*'
+ prettier-plugin-import-sort: '*'
+ prettier-plugin-jsdoc: '*'
+ prettier-plugin-marko: '*'
+ prettier-plugin-multiline-arrays: '*'
+ prettier-plugin-organize-attributes: '*'
+ prettier-plugin-organize-imports: '*'
+ prettier-plugin-sort-imports: '*'
+ prettier-plugin-style-order: '*'
+ prettier-plugin-svelte: '*'
+ 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':
+ optional: true
+ '@trivago/prettier-plugin-sort-imports':
+ optional: true
+ '@zackad/prettier-plugin-twig':
+ optional: true
+ prettier-plugin-astro:
+ optional: true
+ prettier-plugin-css-order:
+ optional: true
+ prettier-plugin-import-sort:
+ optional: true
+ prettier-plugin-jsdoc:
+ optional: true
+ prettier-plugin-marko:
+ optional: true
+ prettier-plugin-multiline-arrays:
+ optional: true
+ prettier-plugin-organize-attributes:
+ optional: true
+ prettier-plugin-organize-imports:
+ optional: true
+ prettier-plugin-sort-imports:
+ optional: true
+ prettier-plugin-style-order:
+ optional: true
+ prettier-plugin-svelte:
+ optional: true
+
prettier@2.8.8:
resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==}
engines: {node: '>=10.13.0'}
@@ -12617,6 +13365,16 @@ packages:
peerDependencies:
react: ^18.3.1
+ react-dom@19.0.0:
+ resolution: {integrity: sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==}
+ peerDependencies:
+ react: ^19.0.0
+
+ react-dom@19.1.0:
+ resolution: {integrity: sha512-Xs1hdnE+DyKgeHJeJznQmYMIBG3TKIHJJT95Q58nHLSrElKlGQqDTR2HQ9fx5CN/Gk6Vh/kupBTDLU11/nDk/g==}
+ peerDependencies:
+ react: ^19.1.0
+
react-dom@19.2.0:
resolution: {integrity: sha512-UlbRu4cAiGaIewkPyiRGJk0imDN2T3JjieT6spoL2UeSf5od4n5LB/mQ4ejmxhCFT1tYe8IvaFulzynWovsEFQ==}
peerDependencies:
@@ -12733,6 +13491,14 @@ packages:
resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
engines: {node: '>=0.10.0'}
+ react@19.0.0:
+ resolution: {integrity: sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==}
+ engines: {node: '>=0.10.0'}
+
+ react@19.1.0:
+ resolution: {integrity: sha512-FS+XFBNvn3GTAWq26joslQgWNoFu08F4kl0J4CgdNKADkdSGXQyTCnKteIAJy96Br6YbpEU1LSzV5dYtjMkMDg==}
+ engines: {node: '>=0.10.0'}
+
react@19.2.0:
resolution: {integrity: sha512-tmbWg6W31tQLeB5cdIBOicJDJRR2KzXsV7uSK9iNfLWQ5bIZfxuPEHp7M8wiHyHnn0DD1i7w3Zmin0FtkrwoCQ==}
engines: {node: '>=0.10.0'}
@@ -12829,10 +13595,6 @@ packages:
resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==}
engines: {node: '>= 0.4'}
- reflect.getprototypeof@1.0.6:
- resolution: {integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==}
- engines: {node: '>= 0.4'}
-
regenerate-unicode-properties@10.2.0:
resolution: {integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==}
engines: {node: '>=4'}
@@ -13157,6 +13919,9 @@ packages:
roughjs@4.6.6:
resolution: {integrity: sha512-ZUz/69+SYpFN/g/lUlo2FXcIjRkSu3nDarreVdGGndHEBJ6cXPdKguS8JGxwj5HA5xIbVKSmLgr5b3AWxtRfvQ==}
+ rrweb-cssom@0.8.0:
+ resolution: {integrity: sha512-guoltQEx+9aMf2gDZ0s62EcV8lsXR+0w8915TC3ITdn2YueuNjdAYh/levpU9nFaoChh9RUS5ZdQMrKfVEN9tw==}
+
run-applescript@7.0.0:
resolution: {integrity: sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==}
engines: {node: '>=18'}
@@ -13249,6 +14014,12 @@ packages:
scheduler@0.23.2:
resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==}
+ scheduler@0.25.0:
+ resolution: {integrity: sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==}
+
+ scheduler@0.26.0:
+ resolution: {integrity: sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA==}
+
scheduler@0.27.0:
resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==}
@@ -13268,10 +14039,6 @@ packages:
resolution: {integrity: sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==}
engines: {node: '>= 10.13.0'}
- schema-utils@4.3.2:
- resolution: {integrity: sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==}
- engines: {node: '>= 10.13.0'}
-
scroll-into-view-if-needed@3.1.0:
resolution: {integrity: sha512-49oNpRjWRvnU8NyGVmUaYG4jtTkNonFZI86MmGRDqBphEK2EXT9gdEUoQPZhuBM8yWHxCWbobltqYO5M4XrUvQ==}
@@ -13325,6 +14092,11 @@ packages:
engines: {node: '>=10'}
hasBin: true
+ semver@7.7.3:
+ resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==}
+ engines: {node: '>=10'}
+ hasBin: true
+
send@0.18.0:
resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
engines: {node: '>= 0.8.0'}
@@ -13398,8 +14170,12 @@ packages:
resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
- sharp@0.34.4:
- resolution: {integrity: sha512-FUH39xp3SBPnxWvd5iib1X8XY7J0K0X7d93sie9CJg2PO8/7gmg89Nve6OjItK53/MlAushNNxteBYfM6DEuoA==}
+ sharp@0.34.3:
+ resolution: {integrity: sha512-eX2IQ6nFohW4DbvHIOLRB3MHFpYqaqvXd3Tp5e/T/dSH83fxaNJQRvDMhASmkNTsNTVF2/OOopzRCt7xokgPfg==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+
+ sharp@0.34.5:
+ resolution: {integrity: sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
shebang-command@1.2.0:
@@ -13440,10 +14216,6 @@ packages:
resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==}
engines: {node: '>= 0.4'}
- side-channel@1.0.6:
- resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==}
- engines: {node: '>= 0.4'}
-
side-channel@1.1.0:
resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==}
engines: {node: '>= 0.4'}
@@ -13664,6 +14436,10 @@ packages:
std-env@3.8.1:
resolution: {integrity: sha512-vj5lIj3Mwf9D79hBkltk5qmkFI+biIKWS2IBxEyEU3AX1tUf7AoL8nSazCOiiqQsGKIq01SClsKEzweu34uwvA==}
+ stop-iteration-iterator@1.0.0:
+ resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==}
+ engines: {node: '>= 0.4'}
+
stop-iteration-iterator@1.1.0:
resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==}
engines: {node: '>= 0.4'}
@@ -13977,13 +14753,16 @@ packages:
tabbable@6.2.0:
resolution: {integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==}
+ tailwind-merge@3.3.1:
+ resolution: {integrity: sha512-gBXpgUm/3rp1lMZZrM/w7D8GKqshif0zAymAhbCyIt8KMe+0v9DQ7cdYLR4FHH/cKpdTXb+A/tKKU3eolfsI+g==}
+
tailwindcss@3.4.17:
resolution: {integrity: sha512-w33E2aCvSDP0tW9RZuNXadXlkHXqFzSkQew/aIa2i/Sj8fThxwovwlXHSPXTbAHwEIhBFXAedUhP2tueAKP8Og==}
engines: {node: '>=14.0.0'}
hasBin: true
- tailwindcss@4.0.13:
- resolution: {integrity: sha512-gbvFrB0fOsTv/OugXWi2PtflJ4S6/ctu6Mmn3bCftmLY/6xRsQVEJPgIIpABwpZ52DpONkCA3bEj5b54MHxF2Q==}
+ tailwindcss@4.1.12:
+ resolution: {integrity: sha512-DzFtxOi+7NsFf7DBtI3BJsynR+0Yp6etH+nRPTbpWnS2pZBaSksv/JGctNwSWzbFjp0vxSqknaUylseZqMDGrA==}
tapable@1.1.3:
resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==}
@@ -13993,10 +14772,6 @@ packages:
resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
engines: {node: '>=6'}
- tapable@2.2.3:
- resolution: {integrity: sha512-ZL6DDuAlRlLGghwcfmSn9sK3Hr6ArtyudlSAiCqQ6IfE+b+HHbydbYDIG15IfS5do+7XQQBdBiubF/cV2dnDzg==}
- engines: {node: '>=6'}
-
tar-fs@2.1.1:
resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==}
@@ -14008,6 +14783,10 @@ packages:
resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==}
engines: {node: '>=10'}
+ tar@7.4.3:
+ resolution: {integrity: sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==}
+ engines: {node: '>=18'}
+
temp-dir@1.0.0:
resolution: {integrity: sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==}
engines: {node: '>=4'}
@@ -14159,11 +14938,11 @@ packages:
resolution: {integrity: sha512-xRnPkJx9nvE5MF6LkB5e8QJjE2FW8269wTu/LQdf7zZqBgPly0QJPf/CWAo7srj5so4yXfoLEdCFgurlpi47zg==}
hasBin: true
- tldts-core@7.0.17:
- resolution: {integrity: sha512-DieYoGrP78PWKsrXr8MZwtQ7GLCUeLxihtjC1jZsW1DnvSMdKPitJSe8OSYDM2u5H6g3kWJZpePqkp43TfLh0g==}
+ tldts-core@6.1.84:
+ resolution: {integrity: sha512-NaQa1W76W2aCGjXybvnMYzGSM4x8fvG2AN/pla7qxcg0ZHbooOPhA8kctmOZUDfZyhDL27OGNbwAeig8P4p1vg==}
- tldts@7.0.17:
- resolution: {integrity: sha512-Y1KQBgDd/NUc+LfOtKS6mNsC9CCaH+m2P1RoIZy7RAPo3C3/t8X45+zgut31cRZtZ3xKPjfn3TkGTrctC2TQIQ==}
+ tldts@6.1.84:
+ resolution: {integrity: sha512-aRGIbCIF3teodtUFAYSdQONVmDRy21REM3o6JnqWn5ZkQBJJ4gHxhw6OfwQ+WkSAi3ASamrS4N4nyazWx6uTYg==}
hasBin: true
tmp@0.0.33:
@@ -14211,8 +14990,8 @@ packages:
resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==}
engines: {node: '>=6'}
- tough-cookie@6.0.0:
- resolution: {integrity: sha512-kXuRi1mtaKMrsLUxz3sQYvVl37B0Ns6MzfrtV5DvJceE9bPyspOqk9xxv7XbZWcfLWbFmm997vl83qUWVJA64w==}
+ tough-cookie@5.1.2:
+ resolution: {integrity: sha512-FVDYdxtnj0G6Qm/DhNPSb8Ju59ULcup3tuJxkFb5K8Bv2pUXILbf0xZWU8PX8Ov19OXljbUyveOFwRMwkXzO+A==}
engines: {node: '>=16'}
tr46@0.0.3:
@@ -14222,9 +15001,9 @@ packages:
resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==}
engines: {node: '>=12'}
- tr46@6.0.0:
- resolution: {integrity: sha512-bLVMLPtstlZ4iMQHpFHTR7GAGj2jxi8Dg0s2h2MafAE4uSWF98FC/3MomU51iQAMf8/qDUbKWf5GxuvvVcXEhw==}
- engines: {node: '>=20'}
+ tr46@5.0.0:
+ resolution: {integrity: sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==}
+ engines: {node: '>=18'}
traverse@0.6.11:
resolution: {integrity: sha512-vxXDZg8/+p3gblxB6BhhG5yWVn1kGRlaL8O78UDXc3wRnPizB5g83dcvWV1jpDMIPnjZjOFuxlMmE82XJ4407w==}
@@ -14255,6 +15034,12 @@ packages:
peerDependencies:
typescript: '>=4.2.0'
+ ts-api-utils@2.0.1:
+ resolution: {integrity: sha512-dnlgjFSVetynI8nzgJ+qF62efpglpWRk8isUEWZGWlJYySCTD6aKvbUDu+zbPeDakk3bg5H4XpitHukgfL1m9w==}
+ engines: {node: '>=18.12'}
+ peerDependencies:
+ typescript: '>=4.8.4'
+
ts-api-utils@2.1.0:
resolution: {integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==}
engines: {node: '>=18.12'}
@@ -14341,6 +15126,9 @@ packages:
resolution: {integrity: sha512-N9FDOVaY3yz0YCOhYIgOGYad7+m2ptvinXygw27WPLQvcZDl3+0Sa77KGVlLSiuPDChOUEnTKE9VJwLSi9BPGQ==}
hasBin: true
+ tw-animate-css@1.4.0:
+ resolution: {integrity: sha512-7bziOlRqH0hJx80h/3mbicLW7o8qLsH5+RaLR2t+OHM3D0JlWGODQKQ4cxbK7WlvmUxpcj6Kgu6EKqjrGFe3QQ==}
+
twoslash-protocol@0.2.12:
resolution: {integrity: sha512-5qZLXVYfZ9ABdjqbvPc4RWMr7PrpPaaDSeaYY55vl/w1j6H6kzsWK/urAEIXlzYlyrFmyz1UbwIt+AA0ck+wbg==}
@@ -14440,8 +15228,8 @@ packages:
typedarray@0.0.6:
resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==}
- typescript-eslint@8.46.2:
- resolution: {integrity: sha512-vbw8bOmiuYNdzzV3lsiWv6sRwjyuKJMQqWulBOU7M0RrxedXledX8G8kBbQeiOYDnTfiXz0Y4081E1QMNB6iQg==}
+ typescript-eslint@8.46.3:
+ resolution: {integrity: sha512-bAfgMavTuGo+8n6/QQDVQz4tZ4f7Soqg53RbrlZQEoAltYop/XR4RAts/I0BrO3TTClTSTFJ0wYbla+P8cEWJA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
@@ -15010,10 +15798,6 @@ packages:
resolution: {integrity: sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==}
engines: {node: '>=10.13.0'}
- watchpack@2.4.4:
- resolution: {integrity: sha512-c5EGNOiyxxV5qmTtAB7rbiXxi1ooX1pQKMLX/MIabJjRA0SJBQOjKF+KSVfHkr9U1cADPon0mRiVe/riyaiDUA==}
- engines: {node: '>=10.13.0'}
-
wbuf@1.7.3:
resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==}
@@ -15037,10 +15821,6 @@ packages:
resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==}
engines: {node: '>=12'}
- webidl-conversions@8.0.0:
- resolution: {integrity: sha512-n4W4YFyz5JzOfQeA8oN7dUYpR+MBP3PIUsn2jLjWXwK5ASUzt0Jc/A5sAUZoCYFJRGF0FBKJ+1JjN43rNdsQzA==}
- engines: {node: '>=20'}
-
webpack-bundle-analyzer@4.10.1:
resolution: {integrity: sha512-s3P7pgexgT/HTUSYgxJyn28A+99mmLq4HsJepMPzu0R8ImJc52QNqaFYW1Z2z2uIb1/J3eYgaAWVpaC+v/1aAQ==}
engines: {node: '>= 10.13.0'}
@@ -15114,10 +15894,6 @@ packages:
resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}
engines: {node: '>=10.13.0'}
- webpack-sources@3.3.3:
- resolution: {integrity: sha512-yd1RBzSGanHkitROoPFd6qsrxt+oFhg/129YzheDGqeustzX0vTZJZsSsQjVQC4yzBQ56K55XU8gaNCtIzOnTg==}
- engines: {node: '>=10.13.0'}
-
webpack-virtual-modules@0.6.2:
resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
@@ -15134,16 +15910,6 @@ packages:
webpack-command:
optional: true
- webpack@5.102.0:
- resolution: {integrity: sha512-hUtqAR3ZLVEYDEABdBioQCIqSoguHbFn1K7WlPPWSuXmx0031BD73PSE35jKyftdSh4YLDoQNgK4pqBt5Q82MA==}
- engines: {node: '>=10.13.0'}
- hasBin: true
- peerDependencies:
- webpack-cli: '*'
- peerDependenciesMeta:
- webpack-cli:
- optional: true
-
webpack@5.98.0:
resolution: {integrity: sha512-UFynvx+gM44Gv9qFgj0acCQK2VE1CtdfwFdimkapco3hlPCJ/zeq73n2yVKimVbtm+TnApIugGhLJnkU6gjYXA==}
engines: {node: '>=10.13.0'}
@@ -15189,9 +15955,9 @@ packages:
resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==}
engines: {node: '>=12'}
- whatwg-url@15.1.0:
- resolution: {integrity: sha512-2ytDk0kiEj/yu90JOAp44PVPUkO9+jVhyf+SybKlRHSDlvOOZhdPIrr7xTH64l4WixO2cP+wQIcgujkGBPPz6g==}
- engines: {node: '>=20'}
+ whatwg-url@14.1.1:
+ resolution: {integrity: sha512-mDGf9diDad/giZ/Sm9Xi2YcyzaFpbdLpJPr+E9fSkyQ7KpQD4SdFcugkRQYzhmfI4KeV4Qpnn2sKPdo+kmsgRQ==}
+ engines: {node: '>=18'}
whatwg-url@5.0.0:
resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
@@ -15203,17 +15969,10 @@ packages:
resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==}
engines: {node: '>= 0.4'}
- which-builtin-type@1.1.3:
- resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==}
- engines: {node: '>= 0.4'}
-
which-builtin-type@1.2.1:
resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==}
engines: {node: '>= 0.4'}
- which-collection@1.0.1:
- resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==}
-
which-collection@1.0.2:
resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==}
engines: {node: '>= 0.4'}
@@ -15339,8 +16098,8 @@ packages:
utf-8-validate:
optional: true
- ws@8.18.1:
- resolution: {integrity: sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w==}
+ ws@8.17.1:
+ resolution: {integrity: sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==}
engines: {node: '>=10.0.0'}
peerDependencies:
bufferutil: ^4.0.1
@@ -15351,8 +16110,8 @@ packages:
utf-8-validate:
optional: true
- ws@8.18.3:
- resolution: {integrity: sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==}
+ ws@8.18.1:
+ resolution: {integrity: sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w==}
engines: {node: '>=10.0.0'}
peerDependencies:
bufferutil: ^4.0.1
@@ -15415,6 +16174,10 @@ packages:
yallist@4.0.0:
resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
+ yallist@5.0.0:
+ resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==}
+ engines: {node: '>=18'}
+
yaml@1.10.2:
resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
engines: {node: '>= 6'}
@@ -15504,9 +16267,6 @@ snapshots:
'@aashutoshrathi/word-wrap@1.2.6': {}
- '@acemir/cssom@0.9.19':
- optional: true
-
'@adobe/css-tools@4.4.2': {}
'@algolia/autocomplete-core@1.17.9(@algolia/client-search@5.21.0)(algoliasearch@5.21.0)(search-insights@2.17.3)':
@@ -15651,40 +16411,27 @@ snapshots:
typescript: 5.6.1-rc
validate-npm-package-name: 5.0.1
- '@asamuzakjp/css-color@4.0.5':
- dependencies:
- '@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: 11.2.2
- optional: true
-
- '@asamuzakjp/dom-selector@6.7.4':
+ '@asamuzakjp/css-color@3.1.1':
dependencies:
- '@asamuzakjp/nwsapi': 2.3.9
- bidi-js: 1.0.3
- css-tree: 3.1.0
- is-potential-custom-element-name: 1.0.1
- lru-cache: 11.2.2
- optional: true
-
- '@asamuzakjp/nwsapi@2.3.9':
+ '@csstools/css-calc': 2.1.2(@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.8(@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
+ lru-cache: 10.4.3
optional: true
'@babel/code-frame@7.10.4':
dependencies:
'@babel/highlight': 7.25.9
- '@babel/code-frame@7.26.2':
+ '@babel/code-frame@7.25.9':
dependencies:
- '@babel/helper-validator-identifier': 7.25.9
- js-tokens: 4.0.0
+ '@babel/highlight': 7.25.9
picocolors: 1.1.1
- '@babel/code-frame@7.27.1':
+ '@babel/code-frame@7.26.2':
dependencies:
- '@babel/helper-validator-identifier': 7.27.1
+ '@babel/helper-validator-identifier': 7.25.9
js-tokens: 4.0.0
picocolors: 1.1.1
@@ -15702,7 +16449,7 @@ snapshots:
'@babel/helpers': 7.26.10
'@babel/parser': 7.21.9
'@babel/template': 7.26.9
- '@babel/traverse': 7.28.4
+ '@babel/traverse': 7.26.10
'@babel/types': 7.26.10
convert-source-map: 2.0.0
debug: 4.4.0(supports-color@6.1.0)
@@ -15714,14 +16461,14 @@ snapshots:
'@babel/core@7.9.0':
dependencies:
- '@babel/code-frame': 7.27.1
+ '@babel/code-frame': 7.26.2
'@babel/generator': 7.26.10
'@babel/helper-module-transforms': 7.26.0(@babel/core@7.9.0)
'@babel/helpers': 7.26.10
'@babel/parser': 7.21.9
'@babel/template': 7.26.9
- '@babel/traverse': 7.28.4
- '@babel/types': 7.28.4
+ '@babel/traverse': 7.26.10
+ '@babel/types': 7.26.10
convert-source-map: 1.9.0
debug: 4.4.0(supports-color@6.1.0)
gensync: 1.0.0-beta.2
@@ -15735,7 +16482,7 @@ snapshots:
'@babel/generator@7.24.7':
dependencies:
- '@babel/types': 7.28.4
+ '@babel/types': 7.24.7
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
jsesc: 2.5.2
@@ -15743,22 +16490,14 @@ snapshots:
'@babel/generator@7.26.10':
dependencies:
'@babel/parser': 7.21.9
- '@babel/types': 7.28.4
+ '@babel/types': 7.26.10
'@jridgewell/gen-mapping': 0.3.8
'@jridgewell/trace-mapping': 0.3.25
jsesc: 3.1.0
- '@babel/generator@7.28.3':
- dependencies:
- '@babel/parser': 7.21.9
- '@babel/types': 7.28.4
- '@jridgewell/gen-mapping': 0.3.13
- '@jridgewell/trace-mapping': 0.3.31
- jsesc: 3.1.0
-
'@babel/helper-annotate-as-pure@7.25.9':
dependencies:
- '@babel/types': 7.28.4
+ '@babel/types': 7.26.10
'@babel/helper-compilation-targets@7.25.9':
dependencies:
@@ -15784,7 +16523,7 @@ snapshots:
'@babel/helper-optimise-call-expression': 7.25.9
'@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.10)
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/traverse': 7.28.4
+ '@babel/traverse': 7.26.10
semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -15797,7 +16536,7 @@ snapshots:
'@babel/helper-optimise-call-expression': 7.25.9
'@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.10)
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/traverse': 7.28.4
+ '@babel/traverse': 7.26.10
semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -15822,21 +16561,28 @@ snapshots:
'@babel/helper-environment-visitor@7.24.7':
dependencies:
- '@babel/types': 7.28.4
+ '@babel/types': 7.24.7
+
+ '@babel/helper-function-name@7.24.7':
+ dependencies:
+ '@babel/template': 7.26.9
+ '@babel/types': 7.24.7
- '@babel/helper-globals@7.28.0': {}
+ '@babel/helper-hoist-variables@7.24.7':
+ dependencies:
+ '@babel/types': 7.24.7
'@babel/helper-member-expression-to-functions@7.25.9':
dependencies:
- '@babel/traverse': 7.28.4
- '@babel/types': 7.28.4
+ '@babel/traverse': 7.26.10
+ '@babel/types': 7.26.10
transitivePeerDependencies:
- supports-color
'@babel/helper-module-imports@7.25.9':
dependencies:
- '@babel/traverse': 7.28.4
- '@babel/types': 7.28.4
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.25.9
transitivePeerDependencies:
- supports-color
@@ -15845,8 +16591,8 @@ snapshots:
'@babel/core': 7.26.10
'@babel/helper-module-imports': 7.25.9
'@babel/helper-simple-access': 7.25.9
- '@babel/helper-validator-identifier': 7.27.1
- '@babel/traverse': 7.28.4
+ '@babel/helper-validator-identifier': 7.25.9
+ '@babel/traverse': 7.26.10
transitivePeerDependencies:
- supports-color
@@ -15855,7 +16601,7 @@ snapshots:
'@babel/core': 7.26.10
'@babel/helper-module-imports': 7.25.9
'@babel/helper-validator-identifier': 7.25.9
- '@babel/traverse': 7.28.4
+ '@babel/traverse': 7.26.10
transitivePeerDependencies:
- supports-color
@@ -15864,13 +16610,13 @@ snapshots:
'@babel/core': 7.9.0
'@babel/helper-module-imports': 7.25.9
'@babel/helper-validator-identifier': 7.25.9
- '@babel/traverse': 7.28.4
+ '@babel/traverse': 7.26.10
transitivePeerDependencies:
- supports-color
'@babel/helper-optimise-call-expression@7.25.9':
dependencies:
- '@babel/types': 7.28.4
+ '@babel/types': 7.26.10
'@babel/helper-plugin-utils@7.25.9': {}
@@ -15881,7 +16627,7 @@ snapshots:
'@babel/core': 7.26.10
'@babel/helper-annotate-as-pure': 7.25.9
'@babel/helper-wrap-function': 7.25.9
- '@babel/traverse': 7.28.4
+ '@babel/traverse': 7.26.10
transitivePeerDependencies:
- supports-color
@@ -15890,7 +16636,7 @@ snapshots:
'@babel/core': 7.26.10
'@babel/helper-member-expression-to-functions': 7.25.9
'@babel/helper-optimise-call-expression': 7.25.9
- '@babel/traverse': 7.28.4
+ '@babel/traverse': 7.26.10
transitivePeerDependencies:
- supports-color
@@ -15899,69 +16645,69 @@ snapshots:
'@babel/core': 7.26.10
'@babel/helper-member-expression-to-functions': 7.25.9
'@babel/helper-optimise-call-expression': 7.25.9
- '@babel/traverse': 7.28.4
+ '@babel/traverse': 7.26.10
transitivePeerDependencies:
- supports-color
'@babel/helper-simple-access@7.25.9':
dependencies:
- '@babel/traverse': 7.28.4
- '@babel/types': 7.28.4
+ '@babel/traverse': 7.26.10
+ '@babel/types': 7.26.10
transitivePeerDependencies:
- supports-color
'@babel/helper-skip-transparent-expression-wrappers@7.25.9':
dependencies:
- '@babel/traverse': 7.28.4
- '@babel/types': 7.28.4
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.10
transitivePeerDependencies:
- supports-color
+ '@babel/helper-split-export-declaration@7.24.7':
+ dependencies:
+ '@babel/types': 7.24.7
+
'@babel/helper-string-parser@7.24.7': {}
'@babel/helper-string-parser@7.25.9': {}
- '@babel/helper-string-parser@7.27.1': {}
-
'@babel/helper-validator-identifier@7.24.7': {}
'@babel/helper-validator-identifier@7.25.7': {}
'@babel/helper-validator-identifier@7.25.9': {}
- '@babel/helper-validator-identifier@7.27.1': {}
-
'@babel/helper-validator-option@7.25.9': {}
'@babel/helper-wrap-function@7.25.9':
dependencies:
- '@babel/template': 7.26.9
- '@babel/traverse': 7.28.4
- '@babel/types': 7.28.4
+ '@babel/template': 7.25.9
+ '@babel/traverse': 7.26.10
+ '@babel/types': 7.26.10
transitivePeerDependencies:
- supports-color
'@babel/helpers@7.26.10':
dependencies:
'@babel/template': 7.26.9
- '@babel/types': 7.28.4
+ '@babel/types': 7.26.10
'@babel/highlight@7.25.9':
dependencies:
- '@babel/helper-validator-identifier': 7.27.1
+ '@babel/helper-validator-identifier': 7.25.9
chalk: 2.4.2
js-tokens: 4.0.0
picocolors: 1.1.1
'@babel/parser@7.21.9':
dependencies:
- '@babel/types': 7.28.4
+ '@babel/types': 7.25.9
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.26.5
- '@babel/traverse': 7.28.4
+ '@babel/traverse': 7.26.10
transitivePeerDependencies:
- supports-color
@@ -15988,7 +16734,7 @@ snapshots:
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.26.5
- '@babel/traverse': 7.28.4
+ '@babel/traverse': 7.26.10
transitivePeerDependencies:
- supports-color
@@ -16207,7 +16953,7 @@ snapshots:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.26.5
'@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.10)
- '@babel/traverse': 7.28.4
+ '@babel/traverse': 7.26.10
transitivePeerDependencies:
- supports-color
@@ -16253,7 +16999,7 @@ snapshots:
'@babel/helper-compilation-targets': 7.26.5
'@babel/helper-plugin-utils': 7.26.5
'@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.10)
- '@babel/traverse': 7.28.4
+ '@babel/traverse': 7.26.10
globals: 11.12.0
transitivePeerDependencies:
- supports-color
@@ -16320,7 +17066,7 @@ snapshots:
'@babel/core': 7.26.10
'@babel/helper-compilation-targets': 7.26.5
'@babel/helper-plugin-utils': 7.26.5
- '@babel/traverse': 7.28.4
+ '@babel/traverse': 7.26.10
transitivePeerDependencies:
- supports-color
@@ -16375,7 +17121,7 @@ snapshots:
'@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10)
'@babel/helper-plugin-utils': 7.26.5
'@babel/helper-validator-identifier': 7.25.9
- '@babel/traverse': 7.28.4
+ '@babel/traverse': 7.26.10
transitivePeerDependencies:
- supports-color
@@ -16478,12 +17224,12 @@ snapshots:
'@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.26.10)':
dependencies:
@@ -16492,7 +17238,7 @@ snapshots:
'@babel/helper-module-imports': 7.25.9
'@babel/helper-plugin-utils': 7.26.5
'@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.10)
- '@babel/types': 7.28.4
+ '@babel/types': 7.25.9
transitivePeerDependencies:
- supports-color
@@ -16690,7 +17436,7 @@ snapshots:
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.26.5
- '@babel/types': 7.28.4
+ '@babel/types': 7.26.10
esutils: 2.0.3
'@babel/preset-react@7.26.3(@babel/core@7.26.10)':
@@ -16748,27 +17494,54 @@ snapshots:
dependencies:
regenerator-runtime: 0.14.1
+ '@babel/template@7.25.9':
+ dependencies:
+ '@babel/code-frame': 7.26.2
+ '@babel/parser': 7.21.9
+ '@babel/types': 7.25.9
+
'@babel/template@7.26.9':
dependencies:
- '@babel/code-frame': 7.27.1
+ '@babel/code-frame': 7.26.2
+ '@babel/parser': 7.21.9
+ '@babel/types': 7.26.10
+
+ '@babel/traverse@7.24.7':
+ dependencies:
+ '@babel/code-frame': 7.25.9
+ '@babel/generator': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-function-name': 7.24.7
+ '@babel/helper-hoist-variables': 7.24.7
+ '@babel/helper-split-export-declaration': 7.24.7
'@babel/parser': 7.21.9
- '@babel/types': 7.28.4
+ '@babel/types': 7.24.7
+ debug: 4.4.0(supports-color@6.1.0)
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
- '@babel/template@7.27.2':
+ '@babel/traverse@7.25.9':
dependencies:
- '@babel/code-frame': 7.27.1
+ '@babel/code-frame': 7.26.2
+ '@babel/generator': 7.26.10
'@babel/parser': 7.21.9
- '@babel/types': 7.28.4
+ '@babel/template': 7.25.9
+ '@babel/types': 7.25.9
+ debug: 4.4.0(supports-color@6.1.0)
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
- '@babel/traverse@7.28.4':
+ '@babel/traverse@7.26.10':
dependencies:
- '@babel/code-frame': 7.27.1
- '@babel/generator': 7.28.3
- '@babel/helper-globals': 7.28.0
+ '@babel/code-frame': 7.26.2
+ '@babel/generator': 7.26.10
'@babel/parser': 7.21.9
- '@babel/template': 7.27.2
- '@babel/types': 7.28.4
+ '@babel/template': 7.26.9
+ '@babel/types': 7.26.10
debug: 4.4.0(supports-color@6.1.0)
+ globals: 11.12.0
transitivePeerDependencies:
- supports-color
@@ -16778,15 +17551,15 @@ snapshots:
'@babel/helper-validator-identifier': 7.24.7
to-fast-properties: 2.0.0
- '@babel/types@7.26.10':
+ '@babel/types@7.25.9':
dependencies:
'@babel/helper-string-parser': 7.25.9
'@babel/helper-validator-identifier': 7.25.9
- '@babel/types@7.28.4':
+ '@babel/types@7.26.10':
dependencies:
- '@babel/helper-string-parser': 7.27.1
- '@babel/helper-validator-identifier': 7.27.1
+ '@babel/helper-string-parser': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
'@bcoe/v8-coverage@0.2.3': {}
@@ -16811,37 +17584,38 @@ snapshots:
'@chevrotain/utils@11.0.3': {}
+ '@code-hike/lighter@1.0.1':
+ dependencies:
+ ansi-sequence-parser: 1.1.1
+
'@colors/colors@1.5.0':
optional: true
'@corex/deepmerge@4.0.43': {}
- '@csstools/color-helpers@5.1.0':
+ '@csstools/color-helpers@5.0.2':
optional: true
- '@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-calc@2.1.2(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)':
dependencies:
- '@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-tokenizer': 3.0.3
optional: true
- '@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-color-parser@3.0.8(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)':
dependencies:
- '@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/color-helpers': 5.0.2
+ '@csstools/css-calc': 2.1.2(@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
optional: true
- '@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4)':
+ '@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3)':
dependencies:
- '@csstools/css-tokenizer': 3.0.4
+ '@csstools/css-tokenizer': 3.0.3
optional: true
- '@csstools/css-syntax-patches-for-csstree@1.0.15':
- optional: true
-
- '@csstools/css-tokenizer@3.0.4':
+ '@csstools/css-tokenizer@3.0.3':
optional: true
'@discoveryjs/json-ext@0.5.7': {}
@@ -16873,7 +17647,12 @@ snapshots:
tslib: 2.8.1
optional: true
- '@emnapi/runtime@1.6.0':
+ '@emnapi/runtime@1.4.5':
+ dependencies:
+ tslib: 2.8.1
+ optional: true
+
+ '@emnapi/runtime@1.7.0':
dependencies:
tslib: 2.8.1
optional: true
@@ -17087,30 +17866,30 @@ snapshots:
'@esbuild/win32-x64@0.25.1':
optional: true
- '@eslint-community/eslint-utils@4.4.0(eslint@9.11.1(jiti@2.4.2))':
+ '@eslint-community/eslint-utils@4.4.0(eslint@9.11.1(jiti@2.5.1))':
dependencies:
- eslint: 9.11.1(jiti@2.4.2)
+ eslint: 9.11.1(jiti@2.5.1)
eslint-visitor-keys: 3.4.3
- '@eslint-community/eslint-utils@4.4.0(eslint@9.38.0(jiti@2.4.2))':
+ '@eslint-community/eslint-utils@4.4.0(eslint@9.39.1(jiti@2.5.1))':
dependencies:
- eslint: 9.38.0(jiti@2.4.2)
+ eslint: 9.39.1(jiti@2.5.1)
eslint-visitor-keys: 3.4.3
- '@eslint-community/eslint-utils@4.5.0(eslint@9.11.1(jiti@2.4.2))':
+ '@eslint-community/eslint-utils@4.5.0(eslint@9.11.1(jiti@2.5.1))':
dependencies:
- eslint: 9.11.1(jiti@2.4.2)
+ eslint: 9.11.1(jiti@2.5.1)
eslint-visitor-keys: 3.4.3
- '@eslint-community/eslint-utils@4.9.0(eslint@9.11.1(jiti@2.4.2))':
+ '@eslint-community/eslint-utils@4.9.0(eslint@9.11.1(jiti@2.5.1))':
dependencies:
- eslint: 9.11.1(jiti@2.4.2)
+ eslint: 9.11.1(jiti@2.5.1)
eslint-visitor-keys: 3.4.3
optional: true
- '@eslint-community/eslint-utils@4.9.0(eslint@9.38.0(jiti@2.4.2))':
+ '@eslint-community/eslint-utils@4.9.0(eslint@9.39.1(jiti@2.5.1))':
dependencies:
- eslint: 9.38.0(jiti@2.4.2)
+ eslint: 9.39.1(jiti@2.5.1)
eslint-visitor-keys: 3.4.3
'@eslint-community/regexpp@4.12.1': {}
@@ -17131,15 +17910,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@eslint/config-helpers@0.4.1':
+ '@eslint/config-helpers@0.4.2':
dependencies:
- '@eslint/core': 0.16.0
+ '@eslint/core': 0.17.0
'@eslint/core@0.12.0':
dependencies:
'@types/json-schema': 7.0.15
- '@eslint/core@0.16.0':
+ '@eslint/core@0.17.0':
dependencies:
'@types/json-schema': 7.0.15
@@ -17149,10 +17928,10 @@ snapshots:
dependencies:
ajv: 6.12.6
debug: 4.4.0(supports-color@6.1.0)
- espree: 10.2.0
+ espree: 10.3.0
globals: 14.0.0
ignore: 5.3.2
- import-fresh: 3.3.0
+ import-fresh: 3.3.1
js-yaml: 4.1.0
minimatch: 3.1.2
strip-json-comments: 3.1.1
@@ -17177,7 +17956,7 @@ snapshots:
'@eslint/js@9.12.0': {}
- '@eslint/js@9.38.0': {}
+ '@eslint/js@9.39.1': {}
'@eslint/object-schema@2.1.6': {}
@@ -17188,9 +17967,9 @@ snapshots:
'@eslint/core': 0.12.0
levn: 0.4.1
- '@eslint/plugin-kit@0.4.0':
+ '@eslint/plugin-kit@0.4.1':
dependencies:
- '@eslint/core': 0.16.0
+ '@eslint/core': 0.17.0
levn: 0.4.1
'@expo/bunyan@4.0.0':
@@ -17482,7 +18261,7 @@ snapshots:
'@expo/vector-icons@13.0.0': {}
- '@expo/webpack-config@0.17.4(encoding@0.1.13)(eslint@9.38.0(jiti@2.4.2))(expo@47.0.14(@babel/core@7.26.10)(encoding@0.1.13))(typescript@5.8.2)':
+ '@expo/webpack-config@0.17.4(encoding@0.1.13)(eslint@9.39.1(jiti@2.5.1))(expo@47.0.14(@babel/core@7.26.10)(encoding@0.1.13))(typescript@5.8.2)':
dependencies:
'@babel/core': 7.9.0
babel-loader: 8.1.0(@babel/core@7.9.0)(webpack@4.43.0)
@@ -17504,7 +18283,7 @@ snapshots:
optimize-css-assets-webpack-plugin: 5.0.8(webpack@4.43.0)
pnp-webpack-plugin: 1.7.0(typescript@5.8.2)
postcss-safe-parser: 4.0.2
- react-dev-utils: 11.0.4(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)(webpack@4.43.0)
+ react-dev-utils: 11.0.4(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)(webpack@4.43.0)
schema-utils: 3.3.0
semver: 7.3.2
style-loader: 1.2.1(webpack@4.43.0)
@@ -17696,9 +18475,14 @@ snapshots:
'@img/sharp-libvips-darwin-arm64': 1.0.4
optional: true
- '@img/sharp-darwin-arm64@0.34.4':
+ '@img/sharp-darwin-arm64@0.34.3':
+ optionalDependencies:
+ '@img/sharp-libvips-darwin-arm64': 1.2.0
+ optional: true
+
+ '@img/sharp-darwin-arm64@0.34.5':
optionalDependencies:
- '@img/sharp-libvips-darwin-arm64': 1.2.3
+ '@img/sharp-libvips-darwin-arm64': 1.2.4
optional: true
'@img/sharp-darwin-x64@0.33.5':
@@ -17706,60 +18490,95 @@ snapshots:
'@img/sharp-libvips-darwin-x64': 1.0.4
optional: true
- '@img/sharp-darwin-x64@0.34.4':
+ '@img/sharp-darwin-x64@0.34.3':
+ optionalDependencies:
+ '@img/sharp-libvips-darwin-x64': 1.2.0
+ optional: true
+
+ '@img/sharp-darwin-x64@0.34.5':
optionalDependencies:
- '@img/sharp-libvips-darwin-x64': 1.2.3
+ '@img/sharp-libvips-darwin-x64': 1.2.4
optional: true
'@img/sharp-libvips-darwin-arm64@1.0.4':
optional: true
- '@img/sharp-libvips-darwin-arm64@1.2.3':
+ '@img/sharp-libvips-darwin-arm64@1.2.0':
+ optional: true
+
+ '@img/sharp-libvips-darwin-arm64@1.2.4':
optional: true
'@img/sharp-libvips-darwin-x64@1.0.4':
optional: true
- '@img/sharp-libvips-darwin-x64@1.2.3':
+ '@img/sharp-libvips-darwin-x64@1.2.0':
+ optional: true
+
+ '@img/sharp-libvips-darwin-x64@1.2.4':
optional: true
'@img/sharp-libvips-linux-arm64@1.0.4':
optional: true
- '@img/sharp-libvips-linux-arm64@1.2.3':
+ '@img/sharp-libvips-linux-arm64@1.2.0':
+ optional: true
+
+ '@img/sharp-libvips-linux-arm64@1.2.4':
optional: true
'@img/sharp-libvips-linux-arm@1.0.5':
optional: true
- '@img/sharp-libvips-linux-arm@1.2.3':
+ '@img/sharp-libvips-linux-arm@1.2.0':
+ optional: true
+
+ '@img/sharp-libvips-linux-arm@1.2.4':
optional: true
- '@img/sharp-libvips-linux-ppc64@1.2.3':
+ '@img/sharp-libvips-linux-ppc64@1.2.0':
+ optional: true
+
+ '@img/sharp-libvips-linux-ppc64@1.2.4':
+ optional: true
+
+ '@img/sharp-libvips-linux-riscv64@1.2.4':
optional: true
'@img/sharp-libvips-linux-s390x@1.0.4':
optional: true
- '@img/sharp-libvips-linux-s390x@1.2.3':
+ '@img/sharp-libvips-linux-s390x@1.2.0':
+ optional: true
+
+ '@img/sharp-libvips-linux-s390x@1.2.4':
optional: true
'@img/sharp-libvips-linux-x64@1.0.4':
optional: true
- '@img/sharp-libvips-linux-x64@1.2.3':
+ '@img/sharp-libvips-linux-x64@1.2.0':
+ optional: true
+
+ '@img/sharp-libvips-linux-x64@1.2.4':
optional: true
'@img/sharp-libvips-linuxmusl-arm64@1.0.4':
optional: true
- '@img/sharp-libvips-linuxmusl-arm64@1.2.3':
+ '@img/sharp-libvips-linuxmusl-arm64@1.2.0':
+ optional: true
+
+ '@img/sharp-libvips-linuxmusl-arm64@1.2.4':
optional: true
'@img/sharp-libvips-linuxmusl-x64@1.0.4':
optional: true
- '@img/sharp-libvips-linuxmusl-x64@1.2.3':
+ '@img/sharp-libvips-linuxmusl-x64@1.2.0':
+ optional: true
+
+ '@img/sharp-libvips-linuxmusl-x64@1.2.4':
optional: true
'@img/sharp-linux-arm64@0.33.5':
@@ -17767,9 +18586,14 @@ snapshots:
'@img/sharp-libvips-linux-arm64': 1.0.4
optional: true
- '@img/sharp-linux-arm64@0.34.4':
+ '@img/sharp-linux-arm64@0.34.3':
optionalDependencies:
- '@img/sharp-libvips-linux-arm64': 1.2.3
+ '@img/sharp-libvips-linux-arm64': 1.2.0
+ optional: true
+
+ '@img/sharp-linux-arm64@0.34.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-arm64': 1.2.4
optional: true
'@img/sharp-linux-arm@0.33.5':
@@ -17777,14 +18601,29 @@ snapshots:
'@img/sharp-libvips-linux-arm': 1.0.5
optional: true
- '@img/sharp-linux-arm@0.34.4':
+ '@img/sharp-linux-arm@0.34.3':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-arm': 1.2.0
+ optional: true
+
+ '@img/sharp-linux-arm@0.34.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-arm': 1.2.4
+ optional: true
+
+ '@img/sharp-linux-ppc64@0.34.3':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-ppc64': 1.2.0
+ optional: true
+
+ '@img/sharp-linux-ppc64@0.34.5':
optionalDependencies:
- '@img/sharp-libvips-linux-arm': 1.2.3
+ '@img/sharp-libvips-linux-ppc64': 1.2.4
optional: true
- '@img/sharp-linux-ppc64@0.34.4':
+ '@img/sharp-linux-riscv64@0.34.5':
optionalDependencies:
- '@img/sharp-libvips-linux-ppc64': 1.2.3
+ '@img/sharp-libvips-linux-riscv64': 1.2.4
optional: true
'@img/sharp-linux-s390x@0.33.5':
@@ -17792,9 +18631,14 @@ snapshots:
'@img/sharp-libvips-linux-s390x': 1.0.4
optional: true
- '@img/sharp-linux-s390x@0.34.4':
+ '@img/sharp-linux-s390x@0.34.3':
optionalDependencies:
- '@img/sharp-libvips-linux-s390x': 1.2.3
+ '@img/sharp-libvips-linux-s390x': 1.2.0
+ optional: true
+
+ '@img/sharp-linux-s390x@0.34.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-s390x': 1.2.4
optional: true
'@img/sharp-linux-x64@0.33.5':
@@ -17802,9 +18646,14 @@ snapshots:
'@img/sharp-libvips-linux-x64': 1.0.4
optional: true
- '@img/sharp-linux-x64@0.34.4':
+ '@img/sharp-linux-x64@0.34.3':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-x64': 1.2.0
+ optional: true
+
+ '@img/sharp-linux-x64@0.34.5':
optionalDependencies:
- '@img/sharp-libvips-linux-x64': 1.2.3
+ '@img/sharp-libvips-linux-x64': 1.2.4
optional: true
'@img/sharp-linuxmusl-arm64@0.33.5':
@@ -17812,9 +18661,14 @@ snapshots:
'@img/sharp-libvips-linuxmusl-arm64': 1.0.4
optional: true
- '@img/sharp-linuxmusl-arm64@0.34.4':
+ '@img/sharp-linuxmusl-arm64@0.34.3':
+ optionalDependencies:
+ '@img/sharp-libvips-linuxmusl-arm64': 1.2.0
+ optional: true
+
+ '@img/sharp-linuxmusl-arm64@0.34.5':
optionalDependencies:
- '@img/sharp-libvips-linuxmusl-arm64': 1.2.3
+ '@img/sharp-libvips-linuxmusl-arm64': 1.2.4
optional: true
'@img/sharp-linuxmusl-x64@0.33.5':
@@ -17822,9 +18676,14 @@ snapshots:
'@img/sharp-libvips-linuxmusl-x64': 1.0.4
optional: true
- '@img/sharp-linuxmusl-x64@0.34.4':
+ '@img/sharp-linuxmusl-x64@0.34.3':
+ optionalDependencies:
+ '@img/sharp-libvips-linuxmusl-x64': 1.2.0
+ optional: true
+
+ '@img/sharp-linuxmusl-x64@0.34.5':
optionalDependencies:
- '@img/sharp-libvips-linuxmusl-x64': 1.2.3
+ '@img/sharp-libvips-linuxmusl-x64': 1.2.4
optional: true
'@img/sharp-wasm32@0.33.5':
@@ -17832,24 +18691,38 @@ snapshots:
'@emnapi/runtime': 1.3.1
optional: true
- '@img/sharp-wasm32@0.34.4':
+ '@img/sharp-wasm32@0.34.3':
dependencies:
- '@emnapi/runtime': 1.6.0
+ '@emnapi/runtime': 1.4.5
optional: true
- '@img/sharp-win32-arm64@0.34.4':
+ '@img/sharp-wasm32@0.34.5':
+ dependencies:
+ '@emnapi/runtime': 1.7.0
+ optional: true
+
+ '@img/sharp-win32-arm64@0.34.3':
+ optional: true
+
+ '@img/sharp-win32-arm64@0.34.5':
optional: true
'@img/sharp-win32-ia32@0.33.5':
optional: true
- '@img/sharp-win32-ia32@0.34.4':
+ '@img/sharp-win32-ia32@0.34.3':
+ optional: true
+
+ '@img/sharp-win32-ia32@0.34.5':
optional: true
'@img/sharp-win32-x64@0.33.5':
optional: true
- '@img/sharp-win32-x64@0.34.4':
+ '@img/sharp-win32-x64@0.34.3':
+ optional: true
+
+ '@img/sharp-win32-x64@0.34.5':
optional: true
'@inquirer/core@9.2.1':
@@ -17905,6 +18778,10 @@ snapshots:
wrap-ansi: 8.1.0
wrap-ansi-cjs: wrap-ansi@7.0.0
+ '@isaacs/fs-minipass@4.0.1':
+ dependencies:
+ minipass: 7.1.2
+
'@isaacs/string-locale-compare@1.1.0': {}
'@istanbuljs/load-nyc-config@1.1.0':
@@ -18008,7 +18885,7 @@ snapshots:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@jridgewell/trace-mapping': 0.3.31
+ '@jridgewell/trace-mapping': 0.3.25
'@types/node': 20.17.24
chalk: 4.1.2
collect-v8-coverage: 1.0.2
@@ -18036,7 +18913,7 @@ snapshots:
'@jest/source-map@29.6.3':
dependencies:
- '@jridgewell/trace-mapping': 0.3.31
+ '@jridgewell/trace-mapping': 0.3.25
callsites: 3.1.0
graceful-fs: 4.2.11
@@ -18058,7 +18935,7 @@ snapshots:
dependencies:
'@babel/core': 7.26.10
'@jest/types': 29.6.3
- '@jridgewell/trace-mapping': 0.3.31
+ '@jridgewell/trace-mapping': 0.3.25
babel-plugin-istanbul: 6.1.1
chalk: 4.1.2
convert-source-map: 2.0.0
@@ -18099,22 +18976,22 @@ snapshots:
'@types/yargs': 17.0.32
chalk: 4.1.2
- '@jridgewell/gen-mapping@0.3.13':
- dependencies:
- '@jridgewell/sourcemap-codec': 1.5.0
- '@jridgewell/trace-mapping': 0.3.31
-
'@jridgewell/gen-mapping@0.3.5':
dependencies:
'@jridgewell/set-array': 1.2.1
'@jridgewell/sourcemap-codec': 1.4.15
- '@jridgewell/trace-mapping': 0.3.31
+ '@jridgewell/trace-mapping': 0.3.25
'@jridgewell/gen-mapping@0.3.8':
dependencies:
'@jridgewell/set-array': 1.2.1
'@jridgewell/sourcemap-codec': 1.5.0
- '@jridgewell/trace-mapping': 0.3.31
+ '@jridgewell/trace-mapping': 0.3.25
+
+ '@jridgewell/remapping@2.3.5':
+ dependencies:
+ '@jridgewell/gen-mapping': 0.3.8
+ '@jridgewell/trace-mapping': 0.3.25
'@jridgewell/resolve-uri@3.1.2': {}
@@ -18123,18 +19000,13 @@ snapshots:
'@jridgewell/source-map@0.3.6':
dependencies:
'@jridgewell/gen-mapping': 0.3.8
- '@jridgewell/trace-mapping': 0.3.31
+ '@jridgewell/trace-mapping': 0.3.25
'@jridgewell/sourcemap-codec@1.4.15': {}
'@jridgewell/sourcemap-codec@1.5.0': {}
'@jridgewell/trace-mapping@0.3.25':
- dependencies:
- '@jridgewell/resolve-uri': 3.1.2
- '@jridgewell/sourcemap-codec': 1.4.15
-
- '@jridgewell/trace-mapping@0.3.31':
dependencies:
'@jridgewell/resolve-uri': 3.1.2
'@jridgewell/sourcemap-codec': 1.5.0
@@ -18400,7 +19272,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@mdx-js/mdx@3.1.0(acorn@8.15.0)':
+ '@mdx-js/mdx@3.1.0(acorn@8.14.1)':
dependencies:
'@types/estree': 1.0.6
'@types/estree-jsx': 1.0.5
@@ -18414,7 +19286,7 @@ snapshots:
hast-util-to-jsx-runtime: 2.3.2
markdown-extensions: 2.0.0
recma-build-jsx: 1.0.0
- recma-jsx: 1.0.0(acorn@8.15.0)
+ recma-jsx: 1.0.0(acorn@8.14.1)
recma-stringify: 1.0.0
rehype-recma: 1.0.0
remark-mdx: 3.1.0
@@ -18518,8 +19390,20 @@ snapshots:
'@next/env@14.2.24': {}
+ '@next/env@15.5.0': {}
+
+ '@next/env@15.5.4': {}
+
'@next/env@16.0.1': {}
+ '@next/eslint-plugin-next@15.5.0':
+ dependencies:
+ fast-glob: 3.3.1
+
+ '@next/eslint-plugin-next@15.5.4':
+ dependencies:
+ fast-glob: 3.3.1
+
'@next/eslint-plugin-next@16.0.1':
dependencies:
fast-glob: 3.3.1
@@ -18543,6 +19427,12 @@ snapshots:
'@next/swc-darwin-arm64@14.2.24':
optional: true
+ '@next/swc-darwin-arm64@15.5.0':
+ optional: true
+
+ '@next/swc-darwin-arm64@15.5.4':
+ optional: true
+
'@next/swc-darwin-arm64@16.0.1':
optional: true
@@ -18552,6 +19442,12 @@ snapshots:
'@next/swc-darwin-x64@14.2.24':
optional: true
+ '@next/swc-darwin-x64@15.5.0':
+ optional: true
+
+ '@next/swc-darwin-x64@15.5.4':
+ optional: true
+
'@next/swc-darwin-x64@16.0.1':
optional: true
@@ -18567,6 +19463,12 @@ snapshots:
'@next/swc-linux-arm64-gnu@14.2.24':
optional: true
+ '@next/swc-linux-arm64-gnu@15.5.0':
+ optional: true
+
+ '@next/swc-linux-arm64-gnu@15.5.4':
+ optional: true
+
'@next/swc-linux-arm64-gnu@16.0.1':
optional: true
@@ -18576,6 +19478,12 @@ snapshots:
'@next/swc-linux-arm64-musl@14.2.24':
optional: true
+ '@next/swc-linux-arm64-musl@15.5.0':
+ optional: true
+
+ '@next/swc-linux-arm64-musl@15.5.4':
+ optional: true
+
'@next/swc-linux-arm64-musl@16.0.1':
optional: true
@@ -18585,6 +19493,12 @@ snapshots:
'@next/swc-linux-x64-gnu@14.2.24':
optional: true
+ '@next/swc-linux-x64-gnu@15.5.0':
+ optional: true
+
+ '@next/swc-linux-x64-gnu@15.5.4':
+ optional: true
+
'@next/swc-linux-x64-gnu@16.0.1':
optional: true
@@ -18594,6 +19508,12 @@ snapshots:
'@next/swc-linux-x64-musl@14.2.24':
optional: true
+ '@next/swc-linux-x64-musl@15.5.0':
+ optional: true
+
+ '@next/swc-linux-x64-musl@15.5.4':
+ optional: true
+
'@next/swc-linux-x64-musl@16.0.1':
optional: true
@@ -18603,6 +19523,12 @@ snapshots:
'@next/swc-win32-arm64-msvc@14.2.24':
optional: true
+ '@next/swc-win32-arm64-msvc@15.5.0':
+ optional: true
+
+ '@next/swc-win32-arm64-msvc@15.5.4':
+ optional: true
+
'@next/swc-win32-arm64-msvc@16.0.1':
optional: true
@@ -18618,6 +19544,12 @@ snapshots:
'@next/swc-win32-x64-msvc@14.2.24':
optional: true
+ '@next/swc-win32-x64-msvc@15.5.0':
+ optional: true
+
+ '@next/swc-win32-x64-msvc@15.5.4':
+ optional: true
+
'@next/swc-win32-x64-msvc@16.0.1':
optional: true
@@ -18899,28 +19831,32 @@ snapshots:
'@radix-ui/number@1.1.0': {}
+ '@radix-ui/number@1.1.1': {}
+
'@radix-ui/primitive@1.1.1': {}
- '@radix-ui/react-arrow@1.1.2(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
+ '@radix-ui/primitive@1.1.3': {}
+
+ '@radix-ui/react-arrow@1.1.2(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
dependencies:
- '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(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.2
- '@types/react-dom': 19.2.2(@types/react@19.2.2)
+ '@types/react-dom': 19.2.1(@types/react@19.2.2)
- '@radix-ui/react-collection@1.1.2(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
+ '@radix-ui/react-collection@1.1.2(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
dependencies:
'@radix-ui/react-compose-refs': 1.1.1(@types/react@19.2.2)(react@19.2.0)
'@radix-ui/react-context': 1.1.1(@types/react@19.2.2)(react@19.2.0)
- '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
'@radix-ui/react-slot': 1.1.2(@types/react@19.2.2)(react@19.2.0)
react: 19.2.0
react-dom: 19.2.0(react@19.2.0)
optionalDependencies:
'@types/react': 19.2.2
- '@types/react-dom': 19.2.2(@types/react@19.2.2)
+ '@types/react-dom': 19.2.1(@types/react@19.2.2)
'@radix-ui/react-compose-refs@1.1.1(@types/react@19.2.2)(react@19.2.0)':
dependencies:
@@ -18928,45 +19864,63 @@ snapshots:
optionalDependencies:
'@types/react': 19.2.2
+ '@radix-ui/react-compose-refs@1.1.2(@types/react@19.2.2)(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+ optionalDependencies:
+ '@types/react': 19.2.2
+
'@radix-ui/react-context@1.1.1(@types/react@19.2.2)(react@19.2.0)':
dependencies:
react: 19.2.0
optionalDependencies:
'@types/react': 19.2.2
+ '@radix-ui/react-context@1.1.2(@types/react@19.2.2)(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+ optionalDependencies:
+ '@types/react': 19.2.2
+
'@radix-ui/react-direction@1.1.0(@types/react@19.2.2)(react@19.2.0)':
dependencies:
react: 19.2.0
optionalDependencies:
'@types/react': 19.2.2
- '@radix-ui/react-dismissable-layer@1.1.5(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
+ '@radix-ui/react-direction@1.1.1(@types/react@19.2.2)(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+ optionalDependencies:
+ '@types/react': 19.2.2
+
+ '@radix-ui/react-dismissable-layer@1.1.5(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
dependencies:
'@radix-ui/primitive': 1.1.1
'@radix-ui/react-compose-refs': 1.1.1(@types/react@19.2.2)(react@19.2.0)
- '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
'@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.2.2)(react@19.2.0)
'@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@19.2.2)(react@19.2.0)
react: 19.2.0
react-dom: 19.2.0(react@19.2.0)
optionalDependencies:
'@types/react': 19.2.2
- '@types/react-dom': 19.2.2(@types/react@19.2.2)
+ '@types/react-dom': 19.2.1(@types/react@19.2.2)
- '@radix-ui/react-dropdown-menu@2.1.6(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
+ '@radix-ui/react-dropdown-menu@2.1.6(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
dependencies:
'@radix-ui/primitive': 1.1.1
'@radix-ui/react-compose-refs': 1.1.1(@types/react@19.2.2)(react@19.2.0)
'@radix-ui/react-context': 1.1.1(@types/react@19.2.2)(react@19.2.0)
'@radix-ui/react-id': 1.1.0(@types/react@19.2.2)(react@19.2.0)
- '@radix-ui/react-menu': 2.1.6(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@radix-ui/react-menu': 2.1.6(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
'@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.2.2)(react@19.2.0)
react: 19.2.0
react-dom: 19.2.0(react@19.2.0)
optionalDependencies:
'@types/react': 19.2.2
- '@types/react-dom': 19.2.2(@types/react@19.2.2)
+ '@types/react-dom': 19.2.1(@types/react@19.2.2)
'@radix-ui/react-focus-guards@1.1.1(@types/react@19.2.2)(react@19.2.0)':
dependencies:
@@ -18974,16 +19928,16 @@ snapshots:
optionalDependencies:
'@types/react': 19.2.2
- '@radix-ui/react-focus-scope@1.1.2(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
+ '@radix-ui/react-focus-scope@1.1.2(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
dependencies:
'@radix-ui/react-compose-refs': 1.1.1(@types/react@19.2.2)(react@19.2.0)
- '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
'@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.2.2)(react@19.2.0)
react: 19.2.0
react-dom: 19.2.0(react@19.2.0)
optionalDependencies:
'@types/react': 19.2.2
- '@types/react-dom': 19.2.2(@types/react@19.2.2)
+ '@types/react-dom': 19.2.1(@types/react@19.2.2)
'@radix-ui/react-id@1.1.0(@types/react@19.2.2)(react@19.2.0)':
dependencies:
@@ -18992,22 +19946,22 @@ snapshots:
optionalDependencies:
'@types/react': 19.2.2
- '@radix-ui/react-menu@2.1.6(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
+ '@radix-ui/react-menu@2.1.6(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
dependencies:
'@radix-ui/primitive': 1.1.1
- '@radix-ui/react-collection': 1.1.2(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@radix-ui/react-collection': 1.1.2(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
'@radix-ui/react-compose-refs': 1.1.1(@types/react@19.2.2)(react@19.2.0)
'@radix-ui/react-context': 1.1.1(@types/react@19.2.2)(react@19.2.0)
'@radix-ui/react-direction': 1.1.0(@types/react@19.2.2)(react@19.2.0)
- '@radix-ui/react-dismissable-layer': 1.1.5(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@radix-ui/react-dismissable-layer': 1.1.5(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
'@radix-ui/react-focus-guards': 1.1.1(@types/react@19.2.2)(react@19.2.0)
- '@radix-ui/react-focus-scope': 1.1.2(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@radix-ui/react-focus-scope': 1.1.2(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
'@radix-ui/react-id': 1.1.0(@types/react@19.2.2)(react@19.2.0)
- '@radix-ui/react-popper': 1.2.2(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-portal': 1.1.4(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-roving-focus': 1.1.2(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@radix-ui/react-popper': 1.2.2(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@radix-ui/react-portal': 1.1.4(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@radix-ui/react-roving-focus': 1.1.2(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
'@radix-ui/react-slot': 1.1.2(@types/react@19.2.2)(react@19.2.0)
'@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.2.2)(react@19.2.0)
aria-hidden: 1.2.4
@@ -19016,15 +19970,15 @@ snapshots:
react-remove-scroll: 2.6.3(@types/react@19.2.2)(react@19.2.0)
optionalDependencies:
'@types/react': 19.2.2
- '@types/react-dom': 19.2.2(@types/react@19.2.2)
+ '@types/react-dom': 19.2.1(@types/react@19.2.2)
- '@radix-ui/react-popper@1.2.2(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
+ '@radix-ui/react-popper@1.2.2(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
dependencies:
'@floating-ui/react-dom': 2.1.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-arrow': 1.1.2(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@radix-ui/react-arrow': 1.1.2(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
'@radix-ui/react-compose-refs': 1.1.1(@types/react@19.2.2)(react@19.2.0)
'@radix-ui/react-context': 1.1.1(@types/react@19.2.2)(react@19.2.0)
- '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
'@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.2.2)(react@19.2.0)
'@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.2.2)(react@19.2.0)
'@radix-ui/react-use-rect': 1.1.0(@types/react@19.2.2)(react@19.2.0)
@@ -19034,19 +19988,19 @@ snapshots:
react-dom: 19.2.0(react@19.2.0)
optionalDependencies:
'@types/react': 19.2.2
- '@types/react-dom': 19.2.2(@types/react@19.2.2)
+ '@types/react-dom': 19.2.1(@types/react@19.2.2)
- '@radix-ui/react-portal@1.1.4(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
+ '@radix-ui/react-portal@1.1.4(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
dependencies:
- '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
'@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.2.2)(react@19.2.0)
react: 19.2.0
react-dom: 19.2.0(react@19.2.0)
optionalDependencies:
'@types/react': 19.2.2
- '@types/react-dom': 19.2.2(@types/react@19.2.2)
+ '@types/react-dom': 19.2.1(@types/react@19.2.2)
- '@radix-ui/react-presence@1.1.2(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
+ '@radix-ui/react-presence@1.1.2(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
dependencies:
'@radix-ui/react-compose-refs': 1.1.1(@types/react@19.2.2)(react@19.2.0)
'@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.2.2)(react@19.2.0)
@@ -19054,62 +20008,98 @@ snapshots:
react-dom: 19.2.0(react@19.2.0)
optionalDependencies:
'@types/react': 19.2.2
- '@types/react-dom': 19.2.2(@types/react@19.2.2)
+ '@types/react-dom': 19.2.1(@types/react@19.2.2)
+
+ '@radix-ui/react-presence@1.1.5(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.2)(react@19.1.0)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.2)(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ optionalDependencies:
+ '@types/react': 19.2.2
+ '@types/react-dom': 19.2.1(@types/react@19.2.2)
- '@radix-ui/react-primitive@2.0.2(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
+ '@radix-ui/react-primitive@2.0.2(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
dependencies:
'@radix-ui/react-slot': 1.1.2(@types/react@19.2.2)(react@19.2.0)
react: 19.2.0
react-dom: 19.2.0(react@19.2.0)
optionalDependencies:
'@types/react': 19.2.2
- '@types/react-dom': 19.2.2(@types/react@19.2.2)
+ '@types/react-dom': 19.2.1(@types/react@19.2.2)
+
+ '@radix-ui/react-primitive@2.1.3(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.2.2)(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ optionalDependencies:
+ '@types/react': 19.2.2
+ '@types/react-dom': 19.2.1(@types/react@19.2.2)
- '@radix-ui/react-roving-focus@1.1.2(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
+ '@radix-ui/react-roving-focus@1.1.2(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
dependencies:
'@radix-ui/primitive': 1.1.1
- '@radix-ui/react-collection': 1.1.2(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@radix-ui/react-collection': 1.1.2(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
'@radix-ui/react-compose-refs': 1.1.1(@types/react@19.2.2)(react@19.2.0)
'@radix-ui/react-context': 1.1.1(@types/react@19.2.2)(react@19.2.0)
'@radix-ui/react-direction': 1.1.0(@types/react@19.2.2)(react@19.2.0)
'@radix-ui/react-id': 1.1.0(@types/react@19.2.2)(react@19.2.0)
- '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
'@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.2.2)(react@19.2.0)
'@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.2.2)(react@19.2.0)
react: 19.2.0
react-dom: 19.2.0(react@19.2.0)
optionalDependencies:
'@types/react': 19.2.2
- '@types/react-dom': 19.2.2(@types/react@19.2.2)
+ '@types/react-dom': 19.2.1(@types/react@19.2.2)
+
+ '@radix-ui/react-scroll-area@1.2.10(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/number': 1.1.1
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.2)(react@19.1.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.2)(react@19.1.0)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.2.2)(react@19.1.0)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(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.1(@types/react@19.2.2))(@types/react@19.2.2)(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.2.2)(react@19.1.0)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.2)(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ optionalDependencies:
+ '@types/react': 19.2.2
+ '@types/react-dom': 19.2.1(@types/react@19.2.2)
- '@radix-ui/react-select@2.1.6(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
+ '@radix-ui/react-select@2.1.6(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
dependencies:
'@radix-ui/number': 1.1.0
'@radix-ui/primitive': 1.1.1
- '@radix-ui/react-collection': 1.1.2(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@radix-ui/react-collection': 1.1.2(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
'@radix-ui/react-compose-refs': 1.1.1(@types/react@19.2.2)(react@19.2.0)
'@radix-ui/react-context': 1.1.1(@types/react@19.2.2)(react@19.2.0)
'@radix-ui/react-direction': 1.1.0(@types/react@19.2.2)(react@19.2.0)
- '@radix-ui/react-dismissable-layer': 1.1.5(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@radix-ui/react-dismissable-layer': 1.1.5(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
'@radix-ui/react-focus-guards': 1.1.1(@types/react@19.2.2)(react@19.2.0)
- '@radix-ui/react-focus-scope': 1.1.2(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@radix-ui/react-focus-scope': 1.1.2(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
'@radix-ui/react-id': 1.1.0(@types/react@19.2.2)(react@19.2.0)
- '@radix-ui/react-popper': 1.2.2(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-portal': 1.1.4(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@radix-ui/react-popper': 1.2.2(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@radix-ui/react-portal': 1.1.4(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
'@radix-ui/react-slot': 1.1.2(@types/react@19.2.2)(react@19.2.0)
'@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.2.2)(react@19.2.0)
'@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.2.2)(react@19.2.0)
'@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.2.2)(react@19.2.0)
'@radix-ui/react-use-previous': 1.1.0(@types/react@19.2.2)(react@19.2.0)
- '@radix-ui/react-visually-hidden': 1.1.2(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@radix-ui/react-visually-hidden': 1.1.2(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
aria-hidden: 1.2.4
react: 19.2.0
react-dom: 19.2.0(react@19.2.0)
react-remove-scroll: 2.6.3(@types/react@19.2.2)(react@19.2.0)
optionalDependencies:
'@types/react': 19.2.2
- '@types/react-dom': 19.2.2(@types/react@19.2.2)
+ '@types/react-dom': 19.2.1(@types/react@19.2.2)
'@radix-ui/react-slot@1.1.2(@types/react@19.2.2)(react@19.2.0)':
dependencies:
@@ -19118,12 +20108,32 @@ snapshots:
optionalDependencies:
'@types/react': 19.2.2
+ '@radix-ui/react-slot@1.2.3(@types/react@19.2.2)(react@19.1.0)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.2)(react@19.1.0)
+ react: 19.1.0
+ optionalDependencies:
+ '@types/react': 19.2.2
+
+ '@radix-ui/react-slot@1.2.4(@types/react@19.2.2)(react@19.1.0)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.2)(react@19.1.0)
+ react: 19.1.0
+ optionalDependencies:
+ '@types/react': 19.2.2
+
'@radix-ui/react-use-callback-ref@1.1.0(@types/react@19.2.2)(react@19.2.0)':
dependencies:
react: 19.2.0
optionalDependencies:
'@types/react': 19.2.2
+ '@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.2.2)(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+ optionalDependencies:
+ '@types/react': 19.2.2
+
'@radix-ui/react-use-controllable-state@1.1.0(@types/react@19.2.2)(react@19.2.0)':
dependencies:
'@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.2.2)(react@19.2.0)
@@ -19144,6 +20154,12 @@ snapshots:
optionalDependencies:
'@types/react': 19.2.2
+ '@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.2.2)(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+ optionalDependencies:
+ '@types/react': 19.2.2
+
'@radix-ui/react-use-previous@1.1.0(@types/react@19.2.2)(react@19.2.0)':
dependencies:
react: 19.2.0
@@ -19164,14 +20180,14 @@ snapshots:
optionalDependencies:
'@types/react': 19.2.2
- '@radix-ui/react-visually-hidden@1.1.2(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
+ '@radix-ui/react-visually-hidden@1.1.2(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
dependencies:
- '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(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.2
- '@types/react-dom': 19.2.2(@types/react@19.2.2)
+ '@types/react-dom': 19.2.1(@types/react@19.2.2)
'@radix-ui/rect@1.1.0': {}
@@ -19390,7 +20406,7 @@ snapshots:
dependencies:
react: 18.3.1
- '@remix-run/dev@2.16.0(@remix-run/react@2.16.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.2))(@remix-run/serve@2.16.0(typescript@5.8.2))(@types/node@22.13.10)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(typescript@5.8.2)(vite@6.2.1(@types/node@22.13.10)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0))(yaml@2.7.0)':
+ '@remix-run/dev@2.16.0(@remix-run/react@2.16.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.2))(@remix-run/serve@2.16.0(typescript@5.8.2))(@types/node@22.13.10)(jiti@2.5.1)(lightningcss@1.30.1)(terser@5.39.0)(typescript@5.8.2)(vite@6.2.1(@types/node@22.13.10)(jiti@2.5.1)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0))(yaml@2.7.0)':
dependencies:
'@babel/core': 7.26.10
'@babel/generator': 7.24.7
@@ -19398,7 +20414,7 @@ snapshots:
'@babel/plugin-syntax-decorators': 7.24.7(@babel/core@7.26.10)
'@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.26.10)
'@babel/preset-typescript': 7.25.9(@babel/core@7.26.10)
- '@babel/traverse': 7.28.4
+ '@babel/traverse': 7.24.7
'@babel/types': 7.24.7
'@mdx-js/mdx': 2.3.0
'@npmcli/package-json': 4.0.1
@@ -19407,7 +20423,7 @@ snapshots:
'@remix-run/router': 1.23.0
'@remix-run/server-runtime': 2.16.0(typescript@5.8.2)
'@types/mdx': 2.0.13
- '@vanilla-extract/integration': 6.2.1(@types/node@22.13.10)(lightningcss@1.29.2)(terser@5.39.0)
+ '@vanilla-extract/integration': 6.2.1(@types/node@22.13.10)(lightningcss@1.30.1)(terser@5.39.0)
arg: 5.0.2
cacache: 17.1.4
chalk: 4.1.2
@@ -19447,12 +20463,12 @@ snapshots:
tar-fs: 2.1.1
tsconfig-paths: 4.2.0
valibot: 0.41.0(typescript@5.8.2)
- vite-node: 3.0.0-beta.2(@types/node@22.13.10)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0)
+ vite-node: 3.0.0-beta.2(@types/node@22.13.10)(jiti@2.5.1)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0)
ws: 7.5.10
optionalDependencies:
'@remix-run/serve': 2.16.0(typescript@5.8.2)
typescript: 5.8.2
- vite: 6.2.1(@types/node@22.13.10)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0)
+ vite: 6.2.1(@types/node@22.13.10)(jiti@2.5.1)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0)
transitivePeerDependencies:
- '@types/node'
- bluebird
@@ -19669,6 +20685,8 @@ snapshots:
'@rtsao/scc@1.1.0': {}
+ '@rushstack/eslint-patch@1.10.5': {}
+
'@schummar/icu-type-parser@1.21.5': {}
'@sec-ant/readable-stream@0.4.1': {}
@@ -20017,51 +21035,51 @@ snapshots:
dependencies:
storybook: 8.6.4(prettier@3.5.3)
- '@swc/core-darwin-arm64@1.13.19':
+ '@swc/core-darwin-arm64@1.15.1':
optional: true
- '@swc/core-darwin-x64@1.13.19':
+ '@swc/core-darwin-x64@1.15.1':
optional: true
- '@swc/core-linux-arm-gnueabihf@1.13.19':
+ '@swc/core-linux-arm-gnueabihf@1.15.1':
optional: true
- '@swc/core-linux-arm64-gnu@1.13.19':
+ '@swc/core-linux-arm64-gnu@1.15.1':
optional: true
- '@swc/core-linux-arm64-musl@1.13.19':
+ '@swc/core-linux-arm64-musl@1.15.1':
optional: true
- '@swc/core-linux-x64-gnu@1.13.19':
+ '@swc/core-linux-x64-gnu@1.15.1':
optional: true
- '@swc/core-linux-x64-musl@1.13.19':
+ '@swc/core-linux-x64-musl@1.15.1':
optional: true
- '@swc/core-win32-arm64-msvc@1.13.19':
+ '@swc/core-win32-arm64-msvc@1.15.1':
optional: true
- '@swc/core-win32-ia32-msvc@1.13.19':
+ '@swc/core-win32-ia32-msvc@1.15.1':
optional: true
- '@swc/core-win32-x64-msvc@1.13.19':
+ '@swc/core-win32-x64-msvc@1.15.1':
optional: true
- '@swc/core@1.13.19':
+ '@swc/core@1.15.1':
dependencies:
'@swc/counter': 0.1.3
'@swc/types': 0.1.25
optionalDependencies:
- '@swc/core-darwin-arm64': 1.13.19
- '@swc/core-darwin-x64': 1.13.19
- '@swc/core-linux-arm-gnueabihf': 1.13.19
- '@swc/core-linux-arm64-gnu': 1.13.19
- '@swc/core-linux-arm64-musl': 1.13.19
- '@swc/core-linux-x64-gnu': 1.13.19
- '@swc/core-linux-x64-musl': 1.13.19
- '@swc/core-win32-arm64-msvc': 1.13.19
- '@swc/core-win32-ia32-msvc': 1.13.19
- '@swc/core-win32-x64-msvc': 1.13.19
+ '@swc/core-darwin-arm64': 1.15.1
+ '@swc/core-darwin-x64': 1.15.1
+ '@swc/core-linux-arm-gnueabihf': 1.15.1
+ '@swc/core-linux-arm64-gnu': 1.15.1
+ '@swc/core-linux-arm64-musl': 1.15.1
+ '@swc/core-linux-x64-gnu': 1.15.1
+ '@swc/core-linux-x64-musl': 1.15.1
+ '@swc/core-win32-arm64-msvc': 1.15.1
+ '@swc/core-win32-ia32-msvc': 1.15.1
+ '@swc/core-win32-x64-msvc': 1.15.1
'@swc/counter@0.1.3': {}
@@ -20082,6 +21100,78 @@ snapshots:
dependencies:
'@swc/counter': 0.1.3
+ '@tailwindcss/node@4.1.12':
+ dependencies:
+ '@jridgewell/remapping': 2.3.5
+ enhanced-resolve: 5.18.3
+ jiti: 2.5.1
+ lightningcss: 1.30.1
+ magic-string: 0.30.17
+ source-map-js: 1.2.1
+ tailwindcss: 4.1.12
+
+ '@tailwindcss/oxide-android-arm64@4.1.12':
+ optional: true
+
+ '@tailwindcss/oxide-darwin-arm64@4.1.12':
+ optional: true
+
+ '@tailwindcss/oxide-darwin-x64@4.1.12':
+ optional: true
+
+ '@tailwindcss/oxide-freebsd-x64@4.1.12':
+ optional: true
+
+ '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.12':
+ optional: true
+
+ '@tailwindcss/oxide-linux-arm64-gnu@4.1.12':
+ optional: true
+
+ '@tailwindcss/oxide-linux-arm64-musl@4.1.12':
+ optional: true
+
+ '@tailwindcss/oxide-linux-x64-gnu@4.1.12':
+ optional: true
+
+ '@tailwindcss/oxide-linux-x64-musl@4.1.12':
+ optional: true
+
+ '@tailwindcss/oxide-wasm32-wasi@4.1.12':
+ optional: true
+
+ '@tailwindcss/oxide-win32-arm64-msvc@4.1.12':
+ optional: true
+
+ '@tailwindcss/oxide-win32-x64-msvc@4.1.12':
+ optional: true
+
+ '@tailwindcss/oxide@4.1.12':
+ dependencies:
+ detect-libc: 2.0.4
+ tar: 7.4.3
+ optionalDependencies:
+ '@tailwindcss/oxide-android-arm64': 4.1.12
+ '@tailwindcss/oxide-darwin-arm64': 4.1.12
+ '@tailwindcss/oxide-darwin-x64': 4.1.12
+ '@tailwindcss/oxide-freebsd-x64': 4.1.12
+ '@tailwindcss/oxide-linux-arm-gnueabihf': 4.1.12
+ '@tailwindcss/oxide-linux-arm64-gnu': 4.1.12
+ '@tailwindcss/oxide-linux-arm64-musl': 4.1.12
+ '@tailwindcss/oxide-linux-x64-gnu': 4.1.12
+ '@tailwindcss/oxide-linux-x64-musl': 4.1.12
+ '@tailwindcss/oxide-wasm32-wasi': 4.1.12
+ '@tailwindcss/oxide-win32-arm64-msvc': 4.1.12
+ '@tailwindcss/oxide-win32-x64-msvc': 4.1.12
+
+ '@tailwindcss/postcss@4.1.12':
+ dependencies:
+ '@alloc/quick-lru': 5.2.0
+ '@tailwindcss/node': 4.1.12
+ '@tailwindcss/oxide': 4.1.12
+ postcss: 8.5.3
+ tailwindcss: 4.1.12
+
'@tanstack/react-virtual@3.13.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@tanstack/virtual-core': 3.13.2
@@ -20092,7 +21182,7 @@ snapshots:
'@testing-library/dom@10.4.0':
dependencies:
- '@babel/code-frame': 7.27.1
+ '@babel/code-frame': 7.26.2
'@babel/runtime': 7.26.10
'@types/aria-query': 5.0.4
aria-query: 5.3.0
@@ -20101,17 +21191,6 @@ snapshots:
lz-string: 1.5.0
pretty-format: 27.5.1
- '@testing-library/dom@10.4.1':
- dependencies:
- '@babel/code-frame': 7.27.1
- '@babel/runtime': 7.26.10
- '@types/aria-query': 5.0.4
- aria-query: 5.3.0
- 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.5.0':
dependencies:
'@adobe/css-tools': 4.4.2
@@ -20122,7 +21201,7 @@ snapshots:
lodash: 4.17.21
redent: 3.0.0
- '@testing-library/react@16.2.0(@testing-library/dom@10.4.0)(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
+ '@testing-library/react@16.2.0(@testing-library/dom@10.4.0)(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
dependencies:
'@babel/runtime': 7.25.9
'@testing-library/dom': 10.4.0
@@ -20130,17 +21209,7 @@ snapshots:
react-dom: 19.2.0(react@19.2.0)
optionalDependencies:
'@types/react': 19.2.2
- '@types/react-dom': 19.2.2(@types/react@19.2.2)
-
- '@testing-library/react@16.2.0(@testing-library/dom@10.4.1)(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@babel/runtime': 7.25.9
- '@testing-library/dom': 10.4.1
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- optionalDependencies:
- '@types/react': 19.2.2
- '@types/react-dom': 19.2.2(@types/react@19.2.2)
+ '@types/react-dom': 19.2.1(@types/react@19.2.2)
'@testing-library/user-event@14.5.2(@testing-library/dom@10.4.0)':
dependencies:
@@ -20172,30 +21241,30 @@ snapshots:
'@types/acorn@4.0.6':
dependencies:
- '@types/estree': 1.0.8
+ '@types/estree': 1.0.6
'@types/aria-query@5.0.4': {}
'@types/babel__core@7.20.5':
dependencies:
'@babel/parser': 7.21.9
- '@babel/types': 7.28.4
+ '@babel/types': 7.26.10
'@types/babel__generator': 7.6.8
'@types/babel__template': 7.4.4
- '@types/babel__traverse': 7.28.0
+ '@types/babel__traverse': 7.20.6
'@types/babel__generator@7.6.8':
dependencies:
- '@babel/types': 7.28.4
+ '@babel/types': 7.26.10
'@types/babel__template@7.4.4':
dependencies:
'@babel/parser': 7.21.9
- '@babel/types': 7.28.4
+ '@babel/types': 7.26.10
- '@types/babel__traverse@7.28.0':
+ '@types/babel__traverse@7.20.6':
dependencies:
- '@babel/types': 7.28.4
+ '@babel/types': 7.26.10
'@types/body-parser@1.19.5':
dependencies:
@@ -20347,11 +21416,11 @@ snapshots:
'@types/eslint-scope@3.7.7':
dependencies:
'@types/eslint': 9.6.1
- '@types/estree': 1.0.8
+ '@types/estree': 1.0.6
'@types/eslint@9.6.1':
dependencies:
- '@types/estree': 1.0.8
+ '@types/estree': 1.0.6
'@types/json-schema': 7.0.15
'@types/estree-jsx@1.0.5':
@@ -20360,8 +21429,6 @@ snapshots:
'@types/estree@1.0.6': {}
- '@types/estree@1.0.8': {}
-
'@types/express-serve-static-core@4.19.6':
dependencies:
'@types/node': 20.17.24
@@ -20436,7 +21503,7 @@ snapshots:
dependencies:
'@types/node': 20.17.24
'@types/tough-cookie': 4.0.5
- parse5: 7.2.1
+ parse5: 7.1.2
'@types/json-schema@7.0.15': {}
@@ -20504,7 +21571,7 @@ snapshots:
dependencies:
'@types/react': 18.3.18
- '@types/react-dom@19.2.2(@types/react@19.2.2)':
+ '@types/react-dom@19.2.1(@types/react@19.2.2)':
dependencies:
'@types/react': 19.2.2
@@ -20583,11 +21650,11 @@ snapshots:
anymatch: 3.1.3
source-map: 0.6.1
- '@types/webpack@5.28.5(@swc/core@1.13.19)':
+ '@types/webpack@5.28.5(@swc/core@1.15.1)':
dependencies:
'@types/node': 20.17.24
- tapable: 2.2.3
- webpack: 5.102.0(@swc/core@1.13.19)
+ tapable: 2.2.1
+ webpack: 5.98.0(@swc/core@1.15.1)
transitivePeerDependencies:
- '@swc/core'
- esbuild
@@ -20597,8 +21664,8 @@ snapshots:
'@types/webpack@5.28.5(esbuild@0.25.1)':
dependencies:
'@types/node': 20.17.24
- tapable: 2.2.3
- webpack: 5.102.0(esbuild@0.25.1)
+ tapable: 2.2.1
+ webpack: 5.98.0(esbuild@0.25.1)
transitivePeerDependencies:
- '@swc/core'
- esbuild
@@ -20627,15 +21694,32 @@ snapshots:
dependencies:
'@types/yargs-parser': 21.0.3
- '@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2)':
+ '@typescript-eslint/eslint-plugin@8.26.1(@typescript-eslint/parser@8.26.1(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)':
+ dependencies:
+ '@eslint-community/regexpp': 4.12.1
+ '@typescript-eslint/parser': 8.26.1(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)
+ '@typescript-eslint/scope-manager': 8.26.1
+ '@typescript-eslint/type-utils': 8.26.1(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)
+ '@typescript-eslint/utils': 8.26.1(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)
+ '@typescript-eslint/visitor-keys': 8.26.1
+ eslint: 9.11.1(jiti@2.5.1)
+ graphemer: 1.4.0
+ ignore: 5.3.2
+ natural-compare: 1.4.0
+ ts-api-utils: 2.0.1(typescript@5.8.2)
+ typescript: 5.8.2
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/eslint-plugin@8.46.3(@typescript-eslint/parser@8.46.3(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)':
dependencies:
'@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 8.46.2(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2)
- '@typescript-eslint/scope-manager': 8.46.2
- '@typescript-eslint/type-utils': 8.46.2(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2)
- '@typescript-eslint/utils': 8.46.2(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2)
- '@typescript-eslint/visitor-keys': 8.46.2
- eslint: 9.11.1(jiti@2.4.2)
+ '@typescript-eslint/parser': 8.46.3(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)
+ '@typescript-eslint/scope-manager': 8.46.3
+ '@typescript-eslint/type-utils': 8.46.3(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)
+ '@typescript-eslint/utils': 8.46.3(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)
+ '@typescript-eslint/visitor-keys': 8.46.3
+ eslint: 9.11.1(jiti@2.5.1)
graphemer: 1.4.0
ignore: 7.0.3
natural-compare: 1.4.0
@@ -20645,15 +21729,15 @@ snapshots:
- supports-color
optional: true
- '@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)':
+ '@typescript-eslint/eslint-plugin@8.46.3(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)':
dependencies:
'@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)
- '@typescript-eslint/scope-manager': 8.46.2
- '@typescript-eslint/type-utils': 8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)
- '@typescript-eslint/utils': 8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)
- '@typescript-eslint/visitor-keys': 8.46.2
- eslint: 9.38.0(jiti@2.4.2)
+ '@typescript-eslint/parser': 8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)
+ '@typescript-eslint/scope-manager': 8.46.3
+ '@typescript-eslint/type-utils': 8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)
+ '@typescript-eslint/utils': 8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)
+ '@typescript-eslint/visitor-keys': 8.46.3
+ eslint: 9.39.1(jiti@2.5.1)
graphemer: 1.4.0
ignore: 7.0.3
natural-compare: 1.4.0
@@ -20662,15 +21746,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2)':
+ '@typescript-eslint/eslint-plugin@8.46.3(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)':
dependencies:
'@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2)
- '@typescript-eslint/scope-manager': 8.46.2
- '@typescript-eslint/type-utils': 8.46.2(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2)
- '@typescript-eslint/utils': 8.46.2(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2)
- '@typescript-eslint/visitor-keys': 8.46.2
- eslint: 9.11.1(jiti@2.4.2)
+ '@typescript-eslint/parser': 8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)
+ '@typescript-eslint/scope-manager': 8.46.3
+ '@typescript-eslint/type-utils': 8.46.3(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)
+ '@typescript-eslint/utils': 8.46.3(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)
+ '@typescript-eslint/visitor-keys': 8.46.3
+ eslint: 9.11.1(jiti@2.5.1)
graphemer: 1.4.0
ignore: 7.0.3
natural-compare: 1.4.0
@@ -20680,15 +21764,15 @@ snapshots:
- supports-color
optional: true
- '@typescript-eslint/eslint-plugin@8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2)':
+ '@typescript-eslint/eslint-plugin@8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)':
dependencies:
'@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2)
+ '@typescript-eslint/parser': 8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)
'@typescript-eslint/scope-manager': 8.9.0
- '@typescript-eslint/type-utils': 8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2)
- '@typescript-eslint/utils': 8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2)
+ '@typescript-eslint/type-utils': 8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)
+ '@typescript-eslint/utils': 8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)
'@typescript-eslint/visitor-keys': 8.9.0
- eslint: 9.11.1(jiti@2.4.2)
+ eslint: 9.11.1(jiti@2.5.1)
graphemer: 1.4.0
ignore: 5.3.2
natural-compare: 1.4.0
@@ -20698,15 +21782,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/eslint-plugin@8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)':
+ '@typescript-eslint/eslint-plugin@8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)':
dependencies:
'@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 8.9.0(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)
+ '@typescript-eslint/parser': 8.9.0(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)
'@typescript-eslint/scope-manager': 8.9.0
- '@typescript-eslint/type-utils': 8.9.0(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)
- '@typescript-eslint/utils': 8.9.0(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)
+ '@typescript-eslint/type-utils': 8.9.0(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)
+ '@typescript-eslint/utils': 8.9.0(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)
'@typescript-eslint/visitor-keys': 8.9.0
- eslint: 9.38.0(jiti@2.4.2)
+ eslint: 9.39.1(jiti@2.5.1)
graphemer: 1.4.0
ignore: 5.3.2
natural-compare: 1.4.0
@@ -20716,109 +21800,137 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.46.2(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2)':
+ '@typescript-eslint/parser@8.26.1(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)':
+ dependencies:
+ '@typescript-eslint/scope-manager': 8.26.1
+ '@typescript-eslint/types': 8.26.1
+ '@typescript-eslint/typescript-estree': 8.26.1(typescript@5.8.2)
+ '@typescript-eslint/visitor-keys': 8.26.1
+ debug: 4.4.0(supports-color@6.1.0)
+ eslint: 9.11.1(jiti@2.5.1)
+ typescript: 5.8.2
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/parser@8.46.3(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)':
dependencies:
- '@typescript-eslint/scope-manager': 8.46.2
- '@typescript-eslint/types': 8.46.2
- '@typescript-eslint/typescript-estree': 8.46.2(typescript@5.8.2)
- '@typescript-eslint/visitor-keys': 8.46.2
+ '@typescript-eslint/scope-manager': 8.46.3
+ '@typescript-eslint/types': 8.46.3
+ '@typescript-eslint/typescript-estree': 8.46.3(typescript@5.8.2)
+ '@typescript-eslint/visitor-keys': 8.46.3
debug: 4.4.0(supports-color@6.1.0)
- eslint: 9.11.1(jiti@2.4.2)
+ eslint: 9.11.1(jiti@2.5.1)
typescript: 5.8.2
transitivePeerDependencies:
- supports-color
optional: true
- '@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)':
+ '@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)':
dependencies:
- '@typescript-eslint/scope-manager': 8.46.2
- '@typescript-eslint/types': 8.46.2
- '@typescript-eslint/typescript-estree': 8.46.2(typescript@5.8.2)
- '@typescript-eslint/visitor-keys': 8.46.2
+ '@typescript-eslint/scope-manager': 8.46.3
+ '@typescript-eslint/types': 8.46.3
+ '@typescript-eslint/typescript-estree': 8.46.3(typescript@5.8.2)
+ '@typescript-eslint/visitor-keys': 8.46.3
debug: 4.4.0(supports-color@6.1.0)
- eslint: 9.38.0(jiti@2.4.2)
+ eslint: 9.39.1(jiti@2.5.1)
typescript: 5.8.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2)':
+ '@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)':
dependencies:
'@typescript-eslint/scope-manager': 8.9.0
'@typescript-eslint/types': 8.9.0
'@typescript-eslint/typescript-estree': 8.9.0(typescript@5.8.2)
'@typescript-eslint/visitor-keys': 8.9.0
debug: 4.4.0(supports-color@6.1.0)
- eslint: 9.11.1(jiti@2.4.2)
+ eslint: 9.11.1(jiti@2.5.1)
optionalDependencies:
typescript: 5.8.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.9.0(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)':
+ '@typescript-eslint/parser@8.9.0(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)':
dependencies:
'@typescript-eslint/scope-manager': 8.9.0
'@typescript-eslint/types': 8.9.0
'@typescript-eslint/typescript-estree': 8.9.0(typescript@5.8.2)
'@typescript-eslint/visitor-keys': 8.9.0
debug: 4.4.0(supports-color@6.1.0)
- eslint: 9.38.0(jiti@2.4.2)
+ eslint: 9.39.1(jiti@2.5.1)
optionalDependencies:
typescript: 5.8.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/project-service@8.46.2(typescript@5.8.2)':
+ '@typescript-eslint/project-service@8.46.3(typescript@5.8.2)':
dependencies:
- '@typescript-eslint/tsconfig-utils': 8.46.2(typescript@5.8.2)
- '@typescript-eslint/types': 8.46.2
+ '@typescript-eslint/tsconfig-utils': 8.46.3(typescript@5.8.2)
+ '@typescript-eslint/types': 8.46.3
debug: 4.4.0(supports-color@6.1.0)
typescript: 5.8.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/scope-manager@8.46.2':
+ '@typescript-eslint/scope-manager@8.26.1':
dependencies:
- '@typescript-eslint/types': 8.46.2
- '@typescript-eslint/visitor-keys': 8.46.2
+ '@typescript-eslint/types': 8.26.1
+ '@typescript-eslint/visitor-keys': 8.26.1
+
+ '@typescript-eslint/scope-manager@8.46.3':
+ dependencies:
+ '@typescript-eslint/types': 8.46.3
+ '@typescript-eslint/visitor-keys': 8.46.3
'@typescript-eslint/scope-manager@8.9.0':
dependencies:
'@typescript-eslint/types': 8.9.0
'@typescript-eslint/visitor-keys': 8.9.0
- '@typescript-eslint/tsconfig-utils@8.46.2(typescript@5.8.2)':
+ '@typescript-eslint/tsconfig-utils@8.46.3(typescript@5.8.2)':
+ dependencies:
+ typescript: 5.8.2
+
+ '@typescript-eslint/type-utils@8.26.1(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)':
dependencies:
+ '@typescript-eslint/typescript-estree': 8.26.1(typescript@5.8.2)
+ '@typescript-eslint/utils': 8.26.1(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)
+ debug: 4.4.0(supports-color@6.1.0)
+ eslint: 9.11.1(jiti@2.5.1)
+ ts-api-utils: 2.0.1(typescript@5.8.2)
typescript: 5.8.2
+ transitivePeerDependencies:
+ - supports-color
- '@typescript-eslint/type-utils@8.46.2(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2)':
+ '@typescript-eslint/type-utils@8.46.3(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)':
dependencies:
- '@typescript-eslint/types': 8.46.2
- '@typescript-eslint/typescript-estree': 8.46.2(typescript@5.8.2)
- '@typescript-eslint/utils': 8.46.2(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2)
+ '@typescript-eslint/types': 8.46.3
+ '@typescript-eslint/typescript-estree': 8.46.3(typescript@5.8.2)
+ '@typescript-eslint/utils': 8.46.3(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)
debug: 4.4.0(supports-color@6.1.0)
- eslint: 9.11.1(jiti@2.4.2)
+ eslint: 9.11.1(jiti@2.5.1)
ts-api-utils: 2.1.0(typescript@5.8.2)
typescript: 5.8.2
transitivePeerDependencies:
- supports-color
optional: true
- '@typescript-eslint/type-utils@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)':
+ '@typescript-eslint/type-utils@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)':
dependencies:
- '@typescript-eslint/types': 8.46.2
- '@typescript-eslint/typescript-estree': 8.46.2(typescript@5.8.2)
- '@typescript-eslint/utils': 8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)
+ '@typescript-eslint/types': 8.46.3
+ '@typescript-eslint/typescript-estree': 8.46.3(typescript@5.8.2)
+ '@typescript-eslint/utils': 8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)
debug: 4.4.0(supports-color@6.1.0)
- eslint: 9.38.0(jiti@2.4.2)
+ eslint: 9.39.1(jiti@2.5.1)
ts-api-utils: 2.1.0(typescript@5.8.2)
typescript: 5.8.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/type-utils@8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2)':
+ '@typescript-eslint/type-utils@8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)':
dependencies:
'@typescript-eslint/typescript-estree': 8.9.0(typescript@5.8.2)
- '@typescript-eslint/utils': 8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2)
+ '@typescript-eslint/utils': 8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)
debug: 4.4.0(supports-color@6.1.0)
ts-api-utils: 1.3.0(typescript@5.8.2)
optionalDependencies:
@@ -20827,10 +21939,10 @@ snapshots:
- eslint
- supports-color
- '@typescript-eslint/type-utils@8.9.0(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)':
+ '@typescript-eslint/type-utils@8.9.0(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)':
dependencies:
'@typescript-eslint/typescript-estree': 8.9.0(typescript@5.8.2)
- '@typescript-eslint/utils': 8.9.0(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)
+ '@typescript-eslint/utils': 8.9.0(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)
debug: 4.4.0(supports-color@6.1.0)
ts-api-utils: 1.3.0(typescript@5.8.2)
optionalDependencies:
@@ -20839,16 +21951,32 @@ snapshots:
- eslint
- supports-color
- '@typescript-eslint/types@8.46.2': {}
+ '@typescript-eslint/types@8.26.1': {}
+
+ '@typescript-eslint/types@8.46.3': {}
'@typescript-eslint/types@8.9.0': {}
- '@typescript-eslint/typescript-estree@8.46.2(typescript@5.8.2)':
+ '@typescript-eslint/typescript-estree@8.26.1(typescript@5.8.2)':
dependencies:
- '@typescript-eslint/project-service': 8.46.2(typescript@5.8.2)
- '@typescript-eslint/tsconfig-utils': 8.46.2(typescript@5.8.2)
- '@typescript-eslint/types': 8.46.2
- '@typescript-eslint/visitor-keys': 8.46.2
+ '@typescript-eslint/types': 8.26.1
+ '@typescript-eslint/visitor-keys': 8.26.1
+ debug: 4.4.0(supports-color@6.1.0)
+ fast-glob: 3.3.3
+ is-glob: 4.0.3
+ minimatch: 9.0.5
+ semver: 7.7.2
+ ts-api-utils: 2.0.1(typescript@5.8.2)
+ typescript: 5.8.2
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/typescript-estree@8.46.3(typescript@5.8.2)':
+ dependencies:
+ '@typescript-eslint/project-service': 8.46.3(typescript@5.8.2)
+ '@typescript-eslint/tsconfig-utils': 8.46.3(typescript@5.8.2)
+ '@typescript-eslint/types': 8.46.3
+ '@typescript-eslint/visitor-keys': 8.46.3
debug: 4.4.0(supports-color@6.1.0)
fast-glob: 3.3.3
is-glob: 4.0.3
@@ -20867,61 +21995,77 @@ snapshots:
fast-glob: 3.3.3
is-glob: 4.0.3
minimatch: 9.0.5
- semver: 7.7.2
+ semver: 7.7.1
ts-api-utils: 1.3.0(typescript@5.8.2)
optionalDependencies:
typescript: 5.8.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.46.2(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2)':
+ '@typescript-eslint/utils@8.26.1(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)':
dependencies:
- '@eslint-community/eslint-utils': 4.9.0(eslint@9.11.1(jiti@2.4.2))
- '@typescript-eslint/scope-manager': 8.46.2
- '@typescript-eslint/types': 8.46.2
- '@typescript-eslint/typescript-estree': 8.46.2(typescript@5.8.2)
- eslint: 9.11.1(jiti@2.4.2)
+ '@eslint-community/eslint-utils': 4.5.0(eslint@9.11.1(jiti@2.5.1))
+ '@typescript-eslint/scope-manager': 8.26.1
+ '@typescript-eslint/types': 8.26.1
+ '@typescript-eslint/typescript-estree': 8.26.1(typescript@5.8.2)
+ eslint: 9.11.1(jiti@2.5.1)
+ typescript: 5.8.2
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/utils@8.46.3(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)':
+ dependencies:
+ '@eslint-community/eslint-utils': 4.9.0(eslint@9.11.1(jiti@2.5.1))
+ '@typescript-eslint/scope-manager': 8.46.3
+ '@typescript-eslint/types': 8.46.3
+ '@typescript-eslint/typescript-estree': 8.46.3(typescript@5.8.2)
+ eslint: 9.11.1(jiti@2.5.1)
typescript: 5.8.2
transitivePeerDependencies:
- supports-color
optional: true
- '@typescript-eslint/utils@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)':
+ '@typescript-eslint/utils@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)':
dependencies:
- '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.4.2))
- '@typescript-eslint/scope-manager': 8.46.2
- '@typescript-eslint/types': 8.46.2
- '@typescript-eslint/typescript-estree': 8.46.2(typescript@5.8.2)
- eslint: 9.38.0(jiti@2.4.2)
+ '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@2.5.1))
+ '@typescript-eslint/scope-manager': 8.46.3
+ '@typescript-eslint/types': 8.46.3
+ '@typescript-eslint/typescript-estree': 8.46.3(typescript@5.8.2)
+ eslint: 9.39.1(jiti@2.5.1)
typescript: 5.8.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2)':
+ '@typescript-eslint/utils@8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@2.4.2))
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@2.5.1))
'@typescript-eslint/scope-manager': 8.9.0
'@typescript-eslint/types': 8.9.0
'@typescript-eslint/typescript-estree': 8.9.0(typescript@5.8.2)
- eslint: 9.11.1(jiti@2.4.2)
+ eslint: 9.11.1(jiti@2.5.1)
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/utils@8.9.0(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)':
+ '@typescript-eslint/utils@8.9.0(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.38.0(jiti@2.4.2))
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.39.1(jiti@2.5.1))
'@typescript-eslint/scope-manager': 8.9.0
'@typescript-eslint/types': 8.9.0
'@typescript-eslint/typescript-estree': 8.9.0(typescript@5.8.2)
- eslint: 9.38.0(jiti@2.4.2)
+ eslint: 9.39.1(jiti@2.5.1)
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/visitor-keys@8.46.2':
+ '@typescript-eslint/visitor-keys@8.26.1':
+ dependencies:
+ '@typescript-eslint/types': 8.26.1
+ eslint-visitor-keys: 4.2.0
+
+ '@typescript-eslint/visitor-keys@8.46.3':
dependencies:
- '@typescript-eslint/types': 8.46.2
+ '@typescript-eslint/types': 8.46.3
eslint-visitor-keys: 4.2.1
'@typescript-eslint/visitor-keys@8.9.0':
@@ -20977,7 +22121,7 @@ snapshots:
media-query-parser: 2.0.2
outdent: 0.8.0
- '@vanilla-extract/integration@6.2.1(@types/node@22.13.10)(lightningcss@1.29.2)(terser@5.39.0)':
+ '@vanilla-extract/integration@6.2.1(@types/node@22.13.10)(lightningcss@1.30.1)(terser@5.39.0)':
dependencies:
'@babel/core': 7.26.10
'@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.26.10)
@@ -20990,8 +22134,8 @@ snapshots:
lodash: 4.17.21
mlly: 1.7.1
outdent: 0.8.0
- vite: 4.5.9(@types/node@22.13.10)(lightningcss@1.29.2)(terser@5.39.0)
- vite-node: 0.28.5(@types/node@22.13.10)(lightningcss@1.29.2)(terser@5.39.0)
+ vite: 4.5.9(@types/node@22.13.10)(lightningcss@1.30.1)(terser@5.39.0)
+ vite-node: 0.28.5(@types/node@22.13.10)(lightningcss@1.30.1)(terser@5.39.0)
transitivePeerDependencies:
- '@types/node'
- less
@@ -21015,32 +22159,32 @@ snapshots:
next: 14.2.24(@playwright/test@1.55.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
- '@vitejs/plugin-react@4.3.4(vite@6.2.1(@types/node@22.13.10)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0))':
+ '@vitejs/plugin-react@4.3.4(vite@6.2.1(@types/node@22.13.10)(jiti@2.5.1)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0))':
dependencies:
'@babel/core': 7.26.10
'@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.10)
'@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.10)
'@types/babel__core': 7.20.5
react-refresh: 0.14.2
- vite: 6.2.1(@types/node@22.13.10)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0)
+ vite: 6.2.1(@types/node@22.13.10)(jiti@2.5.1)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0)
transitivePeerDependencies:
- supports-color
- '@vitest/eslint-plugin@1.1.7(@typescript-eslint/utils@8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2)(vitest@3.0.8(@edge-runtime/vm@5.0.0)(@types/debug@4.1.12)(@types/node@20.17.24)(jiti@2.4.2)(jsdom@27.1.0)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0))':
+ '@vitest/eslint-plugin@1.1.7(@typescript-eslint/utils@8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)(vitest@3.0.8(@edge-runtime/vm@5.0.0)(@types/debug@4.1.12)(@types/node@20.17.24)(jiti@2.5.1)(jsdom@26.0.0)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0))':
dependencies:
- '@typescript-eslint/utils': 8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2)
- eslint: 9.11.1(jiti@2.4.2)
+ '@typescript-eslint/utils': 8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)
+ eslint: 9.11.1(jiti@2.5.1)
optionalDependencies:
typescript: 5.8.2
- vitest: 3.0.8(@edge-runtime/vm@5.0.0)(@types/debug@4.1.12)(@types/node@20.17.24)(jiti@2.4.2)(jsdom@27.1.0)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0)
+ vitest: 3.0.8(@edge-runtime/vm@5.0.0)(@types/debug@4.1.12)(@types/node@20.17.24)(jiti@2.5.1)(jsdom@26.0.0)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0)
- '@vitest/eslint-plugin@1.1.7(@typescript-eslint/utils@8.9.0(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)(vitest@3.0.8(@edge-runtime/vm@5.0.0)(@types/debug@4.1.12)(@types/node@22.13.10)(jiti@2.4.2)(jsdom@27.1.0)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0))':
+ '@vitest/eslint-plugin@1.1.7(@typescript-eslint/utils@8.9.0(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)(vitest@3.0.8(@edge-runtime/vm@5.0.0)(@types/debug@4.1.12)(@types/node@22.13.10)(jiti@2.5.1)(jsdom@26.0.0)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0))':
dependencies:
- '@typescript-eslint/utils': 8.9.0(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)
- eslint: 9.38.0(jiti@2.4.2)
+ '@typescript-eslint/utils': 8.9.0(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)
+ eslint: 9.39.1(jiti@2.5.1)
optionalDependencies:
typescript: 5.8.2
- vitest: 3.0.8(@edge-runtime/vm@5.0.0)(@types/debug@4.1.12)(@types/node@22.13.10)(jiti@2.4.2)(jsdom@27.1.0)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0)
+ vitest: 3.0.8(@edge-runtime/vm@5.0.0)(@types/debug@4.1.12)(@types/node@22.13.10)(jiti@2.5.1)(jsdom@26.0.0)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0)
'@vitest/expect@2.0.5':
dependencies:
@@ -21056,21 +22200,21 @@ snapshots:
chai: 5.2.0
tinyrainbow: 2.0.0
- '@vitest/mocker@3.0.8(vite@6.2.1(@types/node@20.17.24)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0))':
+ '@vitest/mocker@3.0.8(vite@6.2.1(@types/node@20.17.24)(jiti@2.5.1)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0))':
dependencies:
'@vitest/spy': 3.0.8
estree-walker: 3.0.3
magic-string: 0.30.17
optionalDependencies:
- vite: 6.2.1(@types/node@20.17.24)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0)
+ vite: 6.2.1(@types/node@20.17.24)(jiti@2.5.1)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0)
- '@vitest/mocker@3.0.8(vite@6.2.1(@types/node@22.13.10)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0))':
+ '@vitest/mocker@3.0.8(vite@6.2.1(@types/node@22.13.10)(jiti@2.5.1)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0))':
dependencies:
'@vitest/spy': 3.0.8
estree-walker: 3.0.3
magic-string: 0.30.17
optionalDependencies:
- vite: 6.2.1(@types/node@22.13.10)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0)
+ vite: 6.2.1(@types/node@22.13.10)(jiti@2.5.1)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0)
'@vitest/pretty-format@2.0.5':
dependencies:
@@ -21326,16 +22470,8 @@ snapshots:
acorn-globals@7.0.1:
dependencies:
- acorn: 8.15.0
- acorn-walk: 8.3.4
-
- acorn-import-phases@1.0.4(acorn@8.15.0):
- dependencies:
- acorn: 8.15.0
-
- acorn-jsx@5.3.2(acorn@8.13.0):
- dependencies:
- acorn: 8.13.0
+ acorn: 8.14.1
+ acorn-walk: 8.3.3
acorn-jsx@5.3.2(acorn@8.14.1):
dependencies:
@@ -21345,13 +22481,19 @@ snapshots:
dependencies:
acorn: 8.15.0
+ acorn-walk@8.3.3:
+ dependencies:
+ acorn: 8.14.1
+
acorn-walk@8.3.4:
dependencies:
- acorn: 8.15.0
+ acorn: 8.14.1
acorn@6.4.2: {}
- acorn@8.13.0: {}
+ acorn@8.12.0: {}
+
+ acorn@8.14.0: {}
acorn@8.14.1: {}
@@ -21462,6 +22604,8 @@ snapshots:
ansi-regex@6.1.0: {}
+ ansi-sequence-parser@1.1.1: {}
+
ansi-styles@3.2.1:
dependencies:
color-convert: 1.9.3
@@ -21528,8 +22672,8 @@ snapshots:
array-buffer-byte-length@1.0.1:
dependencies:
- call-bind: 1.0.8
- is-array-buffer: 3.0.5
+ call-bind: 1.0.7
+ is-array-buffer: 3.0.4
array-buffer-byte-length@1.0.2:
dependencies:
@@ -21544,12 +22688,12 @@ snapshots:
array-includes@3.1.8:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.23.3
- es-object-atoms: 1.0.0
- get-intrinsic: 1.2.4
- is-string: 1.0.7
+ es-abstract: 1.23.9
+ es-object-atoms: 1.1.1
+ get-intrinsic: 1.3.0
+ is-string: 1.1.1
array-includes@3.1.9:
dependencies:
@@ -21576,20 +22720,20 @@ snapshots:
array.prototype.findlast@1.2.5:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.23.9
es-errors: 1.3.0
- es-object-atoms: 1.0.0
+ es-object-atoms: 1.1.1
es-shim-unscopables: 1.0.2
array.prototype.findlastindex@1.2.5:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.23.9
es-errors: 1.3.0
- es-object-atoms: 1.0.0
+ es-object-atoms: 1.1.1
es-shim-unscopables: 1.0.2
array.prototype.findlastindex@1.2.6:
@@ -21597,74 +22741,74 @@ snapshots:
call-bind: 1.0.8
call-bound: 1.0.4
define-properties: 1.2.1
- es-abstract: 1.24.0
+ es-abstract: 1.23.9
es-errors: 1.3.0
es-object-atoms: 1.1.1
es-shim-unscopables: 1.1.0
array.prototype.flat@1.3.2:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.23.9
es-shim-unscopables: 1.0.2
array.prototype.flat@1.3.3:
dependencies:
call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.24.0
- es-shim-unscopables: 1.1.0
+ es-abstract: 1.23.9
+ es-shim-unscopables: 1.0.2
array.prototype.flatmap@1.3.2:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.23.9
es-shim-unscopables: 1.0.2
array.prototype.flatmap@1.3.3:
dependencies:
call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.24.0
- es-shim-unscopables: 1.1.0
+ es-abstract: 1.23.9
+ es-shim-unscopables: 1.0.2
array.prototype.reduce@1.0.7:
dependencies:
call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.24.0
+ es-abstract: 1.23.3
es-array-method-boxes-properly: 1.0.0
es-errors: 1.3.0
es-object-atoms: 1.1.1
- is-string: 1.1.1
+ is-string: 1.0.7
array.prototype.tosorted@1.1.4:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.23.9
es-errors: 1.3.0
es-shim-unscopables: 1.0.2
arraybuffer.prototype.slice@1.0.3:
dependencies:
- array-buffer-byte-length: 1.0.2
- call-bind: 1.0.8
+ array-buffer-byte-length: 1.0.1
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.24.0
+ es-abstract: 1.23.3
es-errors: 1.3.0
- get-intrinsic: 1.3.0
- is-array-buffer: 3.0.5
- is-shared-array-buffer: 1.0.4
+ get-intrinsic: 1.2.4
+ is-array-buffer: 3.0.4
+ is-shared-array-buffer: 1.0.3
arraybuffer.prototype.slice@1.0.4:
dependencies:
array-buffer-byte-length: 1.0.2
call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.24.0
+ es-abstract: 1.23.9
es-errors: 1.3.0
get-intrinsic: 1.3.0
is-array-buffer: 3.0.5
@@ -21792,9 +22936,9 @@ snapshots:
babel-plugin-jest-hoist@29.6.3:
dependencies:
'@babel/template': 7.26.9
- '@babel/types': 7.28.4
+ '@babel/types': 7.26.10
'@types/babel__core': 7.20.5
- '@types/babel__traverse': 7.28.0
+ '@types/babel__traverse': 7.20.6
babel-plugin-module-resolver@4.1.0:
dependencies:
@@ -21935,8 +23079,6 @@ snapshots:
mixin-deep: 1.3.2
pascalcase: 0.1.1
- baseline-browser-mapping@2.8.10: {}
-
basic-auth@2.0.1:
dependencies:
safe-buffer: 5.1.2
@@ -21954,11 +23096,6 @@ snapshots:
mathjax-full: 3.2.2
react: 18.3.1
- bidi-js@1.0.3:
- dependencies:
- require-from-string: 2.0.2
- optional: true
-
big-integer@1.6.52: {}
big.js@5.2.2: {}
@@ -22129,7 +23266,7 @@ snapshots:
browserslist@4.14.2:
dependencies:
- caniuse-lite: 1.0.30001751
+ caniuse-lite: 1.0.30001704
electron-to-chromium: 1.5.116
escalade: 3.2.0
node-releases: 1.1.77
@@ -22141,14 +23278,6 @@ snapshots:
node-releases: 2.0.19
update-browserslist-db: 1.1.3(browserslist@4.24.4)
- browserslist@4.26.2:
- dependencies:
- baseline-browser-mapping: 2.8.10
- caniuse-lite: 1.0.30001751
- electron-to-chromium: 1.5.228
- node-releases: 2.0.21
- update-browserslist-db: 1.1.3(browserslist@4.26.2)
-
bser@2.1.1:
dependencies:
node-int64: 0.4.0
@@ -22295,6 +23424,11 @@ snapshots:
es-errors: 1.3.0
function-bind: 1.1.2
+ call-bind@1.0.2:
+ dependencies:
+ function-bind: 1.1.2
+ get-intrinsic: 1.3.0
+
call-bind@1.0.7:
dependencies:
es-define-property: 1.0.0
@@ -22340,15 +23474,13 @@ snapshots:
caniuse-api@3.0.0:
dependencies:
- browserslist: 4.26.2
- caniuse-lite: 1.0.30001751
+ browserslist: 4.24.4
+ caniuse-lite: 1.0.30001704
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
caniuse-lite@1.0.30001704: {}
- caniuse-lite@1.0.30001751: {}
-
case-sensitive-paths-webpack-plugin@2.4.0: {}
ccount@2.0.1: {}
@@ -22452,6 +23584,8 @@ snapshots:
chownr@2.0.0: {}
+ chownr@3.0.0: {}
+
chrome-trace-event@1.0.4: {}
ci-info@2.0.0: {}
@@ -22478,6 +23612,10 @@ snapshots:
isobject: 3.0.1
static-extend: 0.1.2
+ class-variance-authority@0.7.1:
+ dependencies:
+ clsx: 2.1.1
+
clean-css@4.2.4:
dependencies:
source-map: 0.6.1
@@ -22581,6 +23719,16 @@ snapshots:
chalk: 2.4.2
q: 1.5.1
+ codehike@1.0.7:
+ dependencies:
+ '@code-hike/lighter': 1.0.1
+ diff: 5.1.0
+ estree-util-visit: 2.0.0
+ mdast-util-mdx-jsx: 3.1.3
+ unist-util-visit: 5.0.0
+ transitivePeerDependencies:
+ - supports-color
+
collapse-white-space@2.1.0: {}
collect-v8-coverage@1.0.2: {}
@@ -23046,12 +24194,6 @@ snapshots:
mdn-data: 2.0.14
source-map: 0.6.1
- css-tree@3.1.0:
- dependencies:
- mdn-data: 2.12.2
- source-map-js: 1.2.1
- optional: true
-
css-what@3.4.2: {}
css-what@5.1.0: {}
@@ -23124,11 +24266,10 @@ snapshots:
dependencies:
cssom: 0.3.8
- cssstyle@5.3.2:
+ cssstyle@4.3.0:
dependencies:
- '@asamuzakjp/css-color': 4.0.5
- '@csstools/css-syntax-patches-for-csstree': 1.0.15
- css-tree: 3.1.0
+ '@asamuzakjp/css-color': 3.1.1
+ rrweb-cssom: 0.8.0
optional: true
csstype@3.1.3: {}
@@ -23335,17 +24476,17 @@ snapshots:
whatwg-mimetype: 3.0.0
whatwg-url: 11.0.0
- data-urls@6.0.0:
+ data-urls@5.0.0:
dependencies:
whatwg-mimetype: 4.0.0
- whatwg-url: 15.1.0
+ whatwg-url: 14.1.1
optional: true
data-view-buffer@1.0.1:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
es-errors: 1.3.0
- is-data-view: 1.0.2
+ is-data-view: 1.0.1
data-view-buffer@1.0.2:
dependencies:
@@ -23355,9 +24496,9 @@ snapshots:
data-view-byte-length@1.0.1:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
es-errors: 1.3.0
- is-data-view: 1.0.2
+ is-data-view: 1.0.1
data-view-byte-length@1.0.2:
dependencies:
@@ -23367,9 +24508,9 @@ snapshots:
data-view-byte-offset@1.0.0:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
es-errors: 1.3.0
- is-data-view: 1.0.2
+ is-data-view: 1.0.1
data-view-byte-offset@1.0.1:
dependencies:
@@ -23407,10 +24548,9 @@ snapshots:
decamelize@1.2.0: {}
- decimal.js@10.5.0: {}
+ decimal.js@10.4.3: {}
- decimal.js@10.6.0:
- optional: true
+ decimal.js@10.5.0: {}
decode-named-character-reference@1.1.0:
dependencies:
@@ -23435,24 +24575,24 @@ snapshots:
deep-equal@2.2.3:
dependencies:
- array-buffer-byte-length: 1.0.1
+ array-buffer-byte-length: 1.0.2
call-bind: 1.0.8
es-get-iterator: 1.1.3
- get-intrinsic: 1.2.4
- is-arguments: 1.1.1
- is-array-buffer: 3.0.4
- is-date-object: 1.0.5
- is-regex: 1.1.4
- is-shared-array-buffer: 1.0.3
+ get-intrinsic: 1.3.0
+ is-arguments: 1.2.0
+ is-array-buffer: 3.0.5
+ is-date-object: 1.1.0
+ is-regex: 1.2.1
+ is-shared-array-buffer: 1.0.4
isarray: 2.0.5
- object-is: 1.1.5
+ object-is: 1.1.6
object-keys: 1.1.1
- object.assign: 4.1.5
- regexp.prototype.flags: 1.5.2
+ object.assign: 4.1.7
+ regexp.prototype.flags: 1.5.4
side-channel: 1.1.0
- which-boxed-primitive: 1.0.2
- which-collection: 1.0.1
- which-typed-array: 1.1.15
+ which-boxed-primitive: 1.1.1
+ which-collection: 1.0.2
+ which-typed-array: 1.1.18
deep-extend@0.6.0: {}
@@ -23560,6 +24700,8 @@ snapshots:
detect-libc@2.0.3: {}
+ detect-libc@2.0.4: {}
+
detect-libc@2.1.2:
optional: true
@@ -23710,8 +24852,6 @@ snapshots:
electron-to-chromium@1.5.116: {}
- electron-to-chromium@1.5.228: {}
-
elliptic@6.5.4:
dependencies:
bn.js: 4.12.0
@@ -23773,18 +24913,25 @@ snapshots:
memory-fs: 0.5.0
tapable: 1.1.3
+ enhanced-resolve@5.17.1:
+ dependencies:
+ graceful-fs: 4.2.11
+ tapable: 2.2.1
+
enhanced-resolve@5.18.1:
dependencies:
graceful-fs: 4.2.11
- tapable: 2.2.3
+ tapable: 2.2.1
+
+ enhanced-resolve@5.18.3:
+ dependencies:
+ graceful-fs: 4.2.11
+ tapable: 2.2.1
entities@2.2.0: {}
entities@4.5.0: {}
- entities@6.0.1:
- optional: true
-
env-editor@0.4.2: {}
env-paths@2.2.1: {}
@@ -23819,13 +24966,13 @@ snapshots:
array-buffer-byte-length: 1.0.1
arraybuffer.prototype.slice: 1.0.3
available-typed-arrays: 1.0.7
- call-bind: 1.0.8
+ call-bind: 1.0.7
data-view-buffer: 1.0.1
data-view-byte-length: 1.0.1
data-view-byte-offset: 1.0.0
es-define-property: 1.0.0
es-errors: 1.3.0
- es-object-atoms: 1.1.1
+ es-object-atoms: 1.0.0
es-set-tostringtag: 2.0.3
es-to-primitive: 1.2.1
function.prototype.name: 1.1.6
@@ -23854,7 +25001,7 @@ snapshots:
safe-array-concat: 1.1.2
safe-regex-test: 1.0.3
string.prototype.trim: 1.2.9
- string.prototype.trimend: 1.0.9
+ string.prototype.trimend: 1.0.8
string.prototype.trimstart: 1.0.8
typed-array-buffer: 1.0.2
typed-array-byte-length: 1.0.1
@@ -23863,6 +25010,60 @@ snapshots:
unbox-primitive: 1.0.2
which-typed-array: 1.1.15
+ es-abstract@1.23.9:
+ dependencies:
+ array-buffer-byte-length: 1.0.2
+ arraybuffer.prototype.slice: 1.0.4
+ available-typed-arrays: 1.0.7
+ call-bind: 1.0.8
+ call-bound: 1.0.4
+ data-view-buffer: 1.0.2
+ data-view-byte-length: 1.0.2
+ data-view-byte-offset: 1.0.1
+ es-define-property: 1.0.1
+ es-errors: 1.3.0
+ es-object-atoms: 1.1.1
+ es-set-tostringtag: 2.1.0
+ es-to-primitive: 1.3.0
+ function.prototype.name: 1.1.8
+ get-intrinsic: 1.3.0
+ get-proto: 1.0.1
+ get-symbol-description: 1.1.0
+ globalthis: 1.0.4
+ gopd: 1.2.0
+ has-property-descriptors: 1.0.2
+ has-proto: 1.2.0
+ has-symbols: 1.1.0
+ hasown: 2.0.2
+ internal-slot: 1.1.0
+ is-array-buffer: 3.0.5
+ is-callable: 1.2.7
+ is-data-view: 1.0.2
+ is-regex: 1.2.1
+ is-shared-array-buffer: 1.0.4
+ is-string: 1.1.1
+ is-typed-array: 1.1.15
+ is-weakref: 1.1.1
+ math-intrinsics: 1.1.0
+ object-inspect: 1.13.4
+ object-keys: 1.1.1
+ object.assign: 4.1.7
+ own-keys: 1.0.1
+ regexp.prototype.flags: 1.5.4
+ safe-array-concat: 1.1.3
+ safe-push-apply: 1.0.0
+ safe-regex-test: 1.1.0
+ set-proto: 1.0.0
+ string.prototype.trim: 1.2.10
+ string.prototype.trimend: 1.0.9
+ string.prototype.trimstart: 1.0.8
+ typed-array-buffer: 1.0.3
+ typed-array-byte-length: 1.0.3
+ typed-array-byte-offset: 1.0.4
+ typed-array-length: 1.0.7
+ unbox-primitive: 1.1.0
+ which-typed-array: 1.1.18
+
es-abstract@1.24.0:
dependencies:
array-buffer-byte-length: 1.0.2
@@ -23924,7 +25125,7 @@ snapshots:
es-define-property@1.0.0:
dependencies:
- get-intrinsic: 1.3.0
+ get-intrinsic: 1.2.4
es-define-property@1.0.1: {}
@@ -23935,29 +25136,29 @@ snapshots:
call-bind: 1.0.8
get-intrinsic: 1.3.0
has-symbols: 1.1.0
- is-arguments: 1.1.1
- is-map: 2.0.2
+ is-arguments: 1.2.0
+ is-map: 2.0.3
is-set: 2.0.3
is-string: 1.1.1
isarray: 2.0.5
- stop-iteration-iterator: 1.1.0
+ stop-iteration-iterator: 1.0.0
es-iterator-helpers@1.0.19:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.23.9
es-errors: 1.3.0
- es-set-tostringtag: 2.0.3
+ es-set-tostringtag: 2.1.0
function-bind: 1.1.2
- get-intrinsic: 1.2.4
+ get-intrinsic: 1.3.0
globalthis: 1.0.4
has-property-descriptors: 1.0.2
- has-proto: 1.0.3
- has-symbols: 1.0.3
- internal-slot: 1.0.7
+ has-proto: 1.2.0
+ has-symbols: 1.1.0
+ internal-slot: 1.1.0
iterator.prototype: 1.1.2
- safe-array-concat: 1.1.2
+ safe-array-concat: 1.1.3
es-module-lexer@1.5.3: {}
@@ -23995,13 +25196,13 @@ snapshots:
es-to-primitive@1.2.1:
dependencies:
is-callable: 1.2.7
- is-date-object: 1.1.0
- is-symbol: 1.1.1
+ is-date-object: 1.0.5
+ is-symbol: 1.0.4
es-to-primitive@1.3.0:
dependencies:
is-callable: 1.2.7
- is-date-object: 1.0.5
+ is-date-object: 1.1.0
is-symbol: 1.1.1
esast-util-from-estree@2.0.0:
@@ -24014,7 +25215,7 @@ snapshots:
esast-util-from-js@2.0.1:
dependencies:
'@types/estree-jsx': 1.0.5
- acorn: 8.15.0
+ acorn: 8.14.1
esast-util-from-estree: 2.0.0
vfile-message: 4.0.2
@@ -24130,25 +25331,25 @@ snapshots:
optionalDependencies:
source-map: 0.6.1
- eslint-config-molindo@8.0.0(@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(@typescript-eslint/parser@8.46.2(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint@9.11.1(jiti@2.4.2))(jest@29.7.0(@types/node@20.17.24))(tailwindcss@4.0.13)(typescript@5.8.2)(vitest@3.0.8(@edge-runtime/vm@5.0.0)(@types/debug@4.1.12)(@types/node@20.17.24)(jiti@2.4.2)(jsdom@27.1.0)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0)):
+ eslint-config-molindo@8.0.0(@typescript-eslint/eslint-plugin@8.46.3(@typescript-eslint/parser@8.46.3(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(@typescript-eslint/parser@8.46.3(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.11.1(jiti@2.5.1))(jest@29.7.0(@types/node@20.17.24))(tailwindcss@4.1.12)(typescript@5.8.2)(vitest@3.0.8(@edge-runtime/vm@5.0.0)(@types/debug@4.1.12)(@types/node@20.17.24)(jiti@2.5.1)(jsdom@26.0.0)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0)):
dependencies:
'@eslint/js': 9.12.0
- '@typescript-eslint/utils': 8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2)
- '@vitest/eslint-plugin': 1.1.7(@typescript-eslint/utils@8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2)(vitest@3.0.8(@edge-runtime/vm@5.0.0)(@types/debug@4.1.12)(@types/node@20.17.24)(jiti@2.4.2)(jsdom@27.1.0)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0))
+ '@typescript-eslint/utils': 8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)
+ '@vitest/eslint-plugin': 1.1.7(@typescript-eslint/utils@8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)(vitest@3.0.8(@edge-runtime/vm@5.0.0)(@types/debug@4.1.12)(@types/node@20.17.24)(jiti@2.5.1)(jsdom@26.0.0)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0))
confusing-browser-globals: 1.0.11
- eslint: 9.11.1(jiti@2.4.2)
- eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.46.2(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint-plugin-import@2.31.0)(eslint@9.11.1(jiti@2.4.2))
- eslint-plugin-css-modules: 2.11.0(eslint@9.11.1(jiti@2.4.2))
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.46.2(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.11.1(jiti@2.4.2))
- eslint-plugin-jest: 28.8.3(@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint@9.11.1(jiti@2.4.2))(jest@29.7.0(@types/node@20.17.24))(typescript@5.8.2)
- eslint-plugin-jsx-a11y: 6.10.0(eslint@9.11.1(jiti@2.4.2))
- eslint-plugin-react: 7.37.1(eslint@9.11.1(jiti@2.4.2))
- eslint-plugin-react-hooks: 5.0.0(eslint@9.11.1(jiti@2.4.2))
- eslint-plugin-sort-destructure-keys: 2.0.0(eslint@9.11.1(jiti@2.4.2))
- eslint-plugin-tailwindcss: 3.13.0(tailwindcss@4.0.13)
- eslint-plugin-unicorn: 56.0.0(eslint@9.11.1(jiti@2.4.2))
- eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint@9.11.1(jiti@2.4.2))
- typescript-eslint: 8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2)
+ eslint: 9.11.1(jiti@2.5.1)
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.46.3(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint-plugin-import@2.31.0)(eslint@9.11.1(jiti@2.5.1))
+ eslint-plugin-css-modules: 2.11.0(eslint@9.11.1(jiti@2.5.1))
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.46.3(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.11.1(jiti@2.5.1))
+ eslint-plugin-jest: 28.8.3(@typescript-eslint/eslint-plugin@8.46.3(@typescript-eslint/parser@8.46.3(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.11.1(jiti@2.5.1))(jest@29.7.0(@types/node@20.17.24))(typescript@5.8.2)
+ eslint-plugin-jsx-a11y: 6.10.0(eslint@9.11.1(jiti@2.5.1))
+ eslint-plugin-react: 7.37.1(eslint@9.11.1(jiti@2.5.1))
+ eslint-plugin-react-hooks: 5.0.0(eslint@9.11.1(jiti@2.5.1))
+ eslint-plugin-sort-destructure-keys: 2.0.0(eslint@9.11.1(jiti@2.5.1))
+ eslint-plugin-tailwindcss: 3.13.0(tailwindcss@4.1.12)
+ eslint-plugin-unicorn: 56.0.0(eslint@9.11.1(jiti@2.5.1))
+ eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.46.3(@typescript-eslint/parser@8.46.3(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.11.1(jiti@2.5.1))
+ typescript-eslint: 8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)
transitivePeerDependencies:
- '@typescript-eslint/eslint-plugin'
- '@typescript-eslint/parser'
@@ -24161,25 +25362,25 @@ snapshots:
- typescript
- vitest
- eslint-config-molindo@8.0.0(@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.38.0(jiti@2.4.2))(jest@29.7.0(@types/node@22.13.10))(tailwindcss@4.0.13)(typescript@5.8.2)(vitest@3.0.8(@edge-runtime/vm@5.0.0)(@types/debug@4.1.12)(@types/node@22.13.10)(jiti@2.4.2)(jsdom@27.1.0)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0)):
+ eslint-config-molindo@8.0.0(@typescript-eslint/eslint-plugin@8.46.3(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.39.1(jiti@2.5.1))(jest@29.7.0(@types/node@22.13.10))(tailwindcss@4.1.12)(typescript@5.8.2)(vitest@3.0.8(@edge-runtime/vm@5.0.0)(@types/debug@4.1.12)(@types/node@22.13.10)(jiti@2.5.1)(jsdom@26.0.0)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0)):
dependencies:
'@eslint/js': 9.12.0
- '@typescript-eslint/utils': 8.9.0(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)
- '@vitest/eslint-plugin': 1.1.7(@typescript-eslint/utils@8.9.0(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)(vitest@3.0.8(@edge-runtime/vm@5.0.0)(@types/debug@4.1.12)(@types/node@22.13.10)(jiti@2.4.2)(jsdom@27.1.0)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0))
+ '@typescript-eslint/utils': 8.9.0(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)
+ '@vitest/eslint-plugin': 1.1.7(@typescript-eslint/utils@8.9.0(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)(vitest@3.0.8(@edge-runtime/vm@5.0.0)(@types/debug@4.1.12)(@types/node@22.13.10)(jiti@2.5.1)(jsdom@26.0.0)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0))
confusing-browser-globals: 1.0.11
- eslint: 9.38.0(jiti@2.4.2)
- eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint-plugin-import@2.31.0)(eslint@9.38.0(jiti@2.4.2))
- eslint-plugin-css-modules: 2.11.0(eslint@9.38.0(jiti@2.4.2))
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.38.0(jiti@2.4.2))
- eslint-plugin-jest: 28.8.3(@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.38.0(jiti@2.4.2))(jest@29.7.0(@types/node@22.13.10))(typescript@5.8.2)
- eslint-plugin-jsx-a11y: 6.10.0(eslint@9.38.0(jiti@2.4.2))
- eslint-plugin-react: 7.37.1(eslint@9.38.0(jiti@2.4.2))
- eslint-plugin-react-hooks: 5.0.0(eslint@9.38.0(jiti@2.4.2))
- eslint-plugin-sort-destructure-keys: 2.0.0(eslint@9.38.0(jiti@2.4.2))
- eslint-plugin-tailwindcss: 3.13.0(tailwindcss@4.0.13)
- eslint-plugin-unicorn: 56.0.0(eslint@9.38.0(jiti@2.4.2))
- eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.38.0(jiti@2.4.2))
- typescript-eslint: 8.9.0(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)
+ eslint: 9.39.1(jiti@2.5.1)
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint-plugin-import@2.31.0)(eslint@9.39.1(jiti@2.5.1))
+ eslint-plugin-css-modules: 2.11.0(eslint@9.39.1(jiti@2.5.1))
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.39.1(jiti@2.5.1))
+ eslint-plugin-jest: 28.8.3(@typescript-eslint/eslint-plugin@8.46.3(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.39.1(jiti@2.5.1))(jest@29.7.0(@types/node@22.13.10))(typescript@5.8.2)
+ eslint-plugin-jsx-a11y: 6.10.0(eslint@9.39.1(jiti@2.5.1))
+ eslint-plugin-react: 7.37.1(eslint@9.39.1(jiti@2.5.1))
+ eslint-plugin-react-hooks: 5.0.0(eslint@9.39.1(jiti@2.5.1))
+ eslint-plugin-sort-destructure-keys: 2.0.0(eslint@9.39.1(jiti@2.5.1))
+ eslint-plugin-tailwindcss: 3.13.0(tailwindcss@4.1.12)
+ eslint-plugin-unicorn: 56.0.0(eslint@9.39.1(jiti@2.5.1))
+ eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.46.3(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.39.1(jiti@2.5.1))
+ typescript-eslint: 8.9.0(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)
transitivePeerDependencies:
- '@typescript-eslint/eslint-plugin'
- '@typescript-eslint/parser'
@@ -24192,25 +25393,25 @@ snapshots:
- typescript
- vitest
- eslint-config-molindo@8.0.0(@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint@9.11.1(jiti@2.4.2))(jest@29.7.0(@types/node@20.17.24))(tailwindcss@3.4.17)(typescript@5.8.2)(vitest@3.0.8(@edge-runtime/vm@5.0.0)(@types/debug@4.1.12)(@types/node@20.17.24)(jiti@2.4.2)(jsdom@27.1.0)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0)):
+ eslint-config-molindo@8.0.0(@typescript-eslint/eslint-plugin@8.46.3(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.11.1(jiti@2.5.1))(jest@29.7.0(@types/node@20.17.24))(tailwindcss@3.4.17)(typescript@5.8.2)(vitest@3.0.8(@edge-runtime/vm@5.0.0)(@types/debug@4.1.12)(@types/node@20.17.24)(jiti@2.5.1)(jsdom@26.0.0)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0)):
dependencies:
'@eslint/js': 9.12.0
- '@typescript-eslint/utils': 8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2)
- '@vitest/eslint-plugin': 1.1.7(@typescript-eslint/utils@8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2)(vitest@3.0.8(@edge-runtime/vm@5.0.0)(@types/debug@4.1.12)(@types/node@20.17.24)(jiti@2.4.2)(jsdom@27.1.0)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0))
+ '@typescript-eslint/utils': 8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)
+ '@vitest/eslint-plugin': 1.1.7(@typescript-eslint/utils@8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)(vitest@3.0.8(@edge-runtime/vm@5.0.0)(@types/debug@4.1.12)(@types/node@20.17.24)(jiti@2.5.1)(jsdom@26.0.0)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0))
confusing-browser-globals: 1.0.11
- eslint: 9.11.1(jiti@2.4.2)
- eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint-plugin-import@2.31.0)(eslint@9.11.1(jiti@2.4.2))
- eslint-plugin-css-modules: 2.11.0(eslint@9.11.1(jiti@2.4.2))
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.11.1(jiti@2.4.2))
- eslint-plugin-jest: 28.8.3(@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint@9.11.1(jiti@2.4.2))(jest@29.7.0(@types/node@20.17.24))(typescript@5.8.2)
- eslint-plugin-jsx-a11y: 6.10.0(eslint@9.11.1(jiti@2.4.2))
- eslint-plugin-react: 7.37.1(eslint@9.11.1(jiti@2.4.2))
- eslint-plugin-react-hooks: 5.0.0(eslint@9.11.1(jiti@2.4.2))
- eslint-plugin-sort-destructure-keys: 2.0.0(eslint@9.11.1(jiti@2.4.2))
+ eslint: 9.11.1(jiti@2.5.1)
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint-plugin-import@2.31.0)(eslint@9.11.1(jiti@2.5.1))
+ eslint-plugin-css-modules: 2.11.0(eslint@9.11.1(jiti@2.5.1))
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.11.1(jiti@2.5.1))
+ eslint-plugin-jest: 28.8.3(@typescript-eslint/eslint-plugin@8.46.3(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.11.1(jiti@2.5.1))(jest@29.7.0(@types/node@20.17.24))(typescript@5.8.2)
+ eslint-plugin-jsx-a11y: 6.10.0(eslint@9.11.1(jiti@2.5.1))
+ eslint-plugin-react: 7.37.1(eslint@9.11.1(jiti@2.5.1))
+ eslint-plugin-react-hooks: 5.0.0(eslint@9.11.1(jiti@2.5.1))
+ eslint-plugin-sort-destructure-keys: 2.0.0(eslint@9.11.1(jiti@2.5.1))
eslint-plugin-tailwindcss: 3.13.0(tailwindcss@3.4.17)
- eslint-plugin-unicorn: 56.0.0(eslint@9.11.1(jiti@2.4.2))
- eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint@9.11.1(jiti@2.4.2))
- typescript-eslint: 8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2)
+ eslint-plugin-unicorn: 56.0.0(eslint@9.11.1(jiti@2.5.1))
+ eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.46.3(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.11.1(jiti@2.5.1))
+ typescript-eslint: 8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)
transitivePeerDependencies:
- '@typescript-eslint/eslint-plugin'
- '@typescript-eslint/parser'
@@ -24223,18 +25424,58 @@ snapshots:
- typescript
- vitest
- eslint-config-next@16.0.1(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2):
+ eslint-config-next@15.5.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2):
+ dependencies:
+ '@next/eslint-plugin-next': 15.5.0
+ '@rushstack/eslint-patch': 1.10.5
+ '@typescript-eslint/eslint-plugin': 8.26.1(@typescript-eslint/parser@8.26.1(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)
+ '@typescript-eslint/parser': 8.26.1(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)
+ eslint: 9.11.1(jiti@2.5.1)
+ eslint-import-resolver-node: 0.3.9
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.26.1(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@9.11.1(jiti@2.5.1))
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.26.1(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.11.1(jiti@2.5.1))
+ eslint-plugin-jsx-a11y: 6.10.0(eslint@9.11.1(jiti@2.5.1))
+ eslint-plugin-react: 7.37.1(eslint@9.11.1(jiti@2.5.1))
+ eslint-plugin-react-hooks: 5.0.0(eslint@9.11.1(jiti@2.5.1))
+ optionalDependencies:
+ typescript: 5.8.2
+ transitivePeerDependencies:
+ - eslint-import-resolver-webpack
+ - eslint-plugin-import-x
+ - supports-color
+
+ eslint-config-next@15.5.4(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2):
+ dependencies:
+ '@next/eslint-plugin-next': 15.5.4
+ '@rushstack/eslint-patch': 1.10.5
+ '@typescript-eslint/eslint-plugin': 8.26.1(@typescript-eslint/parser@8.26.1(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)
+ '@typescript-eslint/parser': 8.26.1(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)
+ eslint: 9.11.1(jiti@2.5.1)
+ eslint-import-resolver-node: 0.3.9
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.26.1(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@9.11.1(jiti@2.5.1))
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.26.1(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.11.1(jiti@2.5.1))
+ eslint-plugin-jsx-a11y: 6.10.0(eslint@9.11.1(jiti@2.5.1))
+ eslint-plugin-react: 7.37.1(eslint@9.11.1(jiti@2.5.1))
+ eslint-plugin-react-hooks: 5.0.0(eslint@9.11.1(jiti@2.5.1))
+ optionalDependencies:
+ typescript: 5.8.2
+ transitivePeerDependencies:
+ - eslint-import-resolver-webpack
+ - eslint-plugin-import-x
+ - supports-color
+
+ eslint-config-next@16.0.1(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2):
dependencies:
'@next/eslint-plugin-next': 16.0.1
- eslint: 9.38.0(jiti@2.4.2)
+ eslint: 9.39.1(jiti@2.5.1)
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.38.0(jiti@2.4.2)))(eslint@9.38.0(jiti@2.4.2))
- eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.38.0(jiti@2.4.2))
- eslint-plugin-jsx-a11y: 6.10.0(eslint@9.38.0(jiti@2.4.2))
- eslint-plugin-react: 7.37.1(eslint@9.38.0(jiti@2.4.2))
- eslint-plugin-react-hooks: 7.0.1(eslint@9.38.0(jiti@2.4.2))
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.39.1(jiti@2.5.1)))(eslint@9.39.1(jiti@2.5.1))
+ eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.39.1(jiti@2.5.1)))(eslint@9.39.1(jiti@2.5.1)))(eslint@9.39.1(jiti@2.5.1))
+ eslint-plugin-jsx-a11y: 6.10.0(eslint@9.39.1(jiti@2.5.1))
+ eslint-plugin-react: 7.37.1(eslint@9.39.1(jiti@2.5.1))
+ eslint-plugin-react-hooks: 7.0.1(eslint@9.39.1(jiti@2.5.1))
globals: 16.4.0
- typescript-eslint: 8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)
+ typescript-eslint: 8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)
optionalDependencies:
typescript: 5.8.2
transitivePeerDependencies:
@@ -24243,18 +25484,18 @@ snapshots:
- eslint-plugin-import-x
- supports-color
- eslint-config-next@16.0.1(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2):
+ eslint-config-next@16.0.1(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2):
dependencies:
'@next/eslint-plugin-next': 16.0.1
- eslint: 9.38.0(jiti@2.4.2)
+ eslint: 9.39.1(jiti@2.5.1)
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.3(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0)(eslint@9.38.0(jiti@2.4.2))
- eslint-plugin-import: 2.32.0(eslint-import-resolver-typescript@3.6.3)(eslint@9.38.0(jiti@2.4.2))
- eslint-plugin-jsx-a11y: 6.10.0(eslint@9.38.0(jiti@2.4.2))
- eslint-plugin-react: 7.37.1(eslint@9.38.0(jiti@2.4.2))
- eslint-plugin-react-hooks: 7.0.1(eslint@9.38.0(jiti@2.4.2))
+ eslint-import-resolver-typescript: 3.6.3(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0)(eslint@9.39.1(jiti@2.5.1))
+ eslint-plugin-import: 2.32.0(eslint-import-resolver-typescript@3.6.3)(eslint@9.39.1(jiti@2.5.1))
+ eslint-plugin-jsx-a11y: 6.10.0(eslint@9.39.1(jiti@2.5.1))
+ eslint-plugin-react: 7.37.1(eslint@9.39.1(jiti@2.5.1))
+ eslint-plugin-react-hooks: 7.0.1(eslint@9.39.1(jiti@2.5.1))
globals: 16.4.0
- typescript-eslint: 8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)
+ typescript-eslint: 8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)
optionalDependencies:
typescript: 5.8.2
transitivePeerDependencies:
@@ -24271,189 +25512,219 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.46.2(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint-plugin-import@2.31.0)(eslint@9.11.1(jiti@2.4.2)):
+ eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.26.1(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@9.11.1(jiti@2.5.1)):
dependencies:
'@nolyfill/is-core-module': 1.0.39
debug: 4.3.7
- enhanced-resolve: 5.18.1
- eslint: 9.11.1(jiti@2.4.2)
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.46.2(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.46.2(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint-plugin-import@2.31.0)(eslint@9.11.1(jiti@2.4.2)))(eslint@9.11.1(jiti@2.4.2))
+ enhanced-resolve: 5.17.1
+ eslint: 9.11.1(jiti@2.5.1)
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.26.1(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.26.1(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@9.11.1(jiti@2.5.1)))(eslint@9.11.1(jiti@2.5.1))
fast-glob: 3.3.3
get-tsconfig: 4.7.5
is-bun-module: 1.2.1
is-glob: 4.0.3
optionalDependencies:
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.46.2(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.11.1(jiti@2.4.2))
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.26.1(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.11.1(jiti@2.5.1))
transitivePeerDependencies:
- '@typescript-eslint/parser'
- eslint-import-resolver-node
- eslint-import-resolver-webpack
- supports-color
- eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.38.0(jiti@2.4.2)))(eslint@9.38.0(jiti@2.4.2)):
+ eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.46.3(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint-plugin-import@2.31.0)(eslint@9.11.1(jiti@2.5.1)):
dependencies:
'@nolyfill/is-core-module': 1.0.39
debug: 4.3.7
- enhanced-resolve: 5.18.1
- eslint: 9.38.0(jiti@2.4.2)
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.38.0(jiti@2.4.2)))(eslint@9.38.0(jiti@2.4.2)))(eslint@9.38.0(jiti@2.4.2))
+ enhanced-resolve: 5.17.1
+ eslint: 9.11.1(jiti@2.5.1)
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.46.3(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.46.3(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint-plugin-import@2.31.0)(eslint@9.11.1(jiti@2.5.1)))(eslint@9.11.1(jiti@2.5.1))
fast-glob: 3.3.3
get-tsconfig: 4.7.5
is-bun-module: 1.2.1
is-glob: 4.0.3
optionalDependencies:
- eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.38.0(jiti@2.4.2))
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.46.3(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.11.1(jiti@2.5.1))
transitivePeerDependencies:
- '@typescript-eslint/parser'
- eslint-import-resolver-node
- eslint-import-resolver-webpack
- supports-color
- eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint-plugin-import@2.31.0)(eslint@9.38.0(jiti@2.4.2)):
+ eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.39.1(jiti@2.5.1)))(eslint@9.39.1(jiti@2.5.1)):
dependencies:
'@nolyfill/is-core-module': 1.0.39
debug: 4.3.7
- enhanced-resolve: 5.18.1
- eslint: 9.38.0(jiti@2.4.2)
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint-plugin-import@2.31.0)(eslint@9.38.0(jiti@2.4.2)))(eslint@9.38.0(jiti@2.4.2))
+ enhanced-resolve: 5.17.1
+ eslint: 9.39.1(jiti@2.5.1)
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.39.1(jiti@2.5.1)))(eslint@9.39.1(jiti@2.5.1)))(eslint@9.39.1(jiti@2.5.1))
fast-glob: 3.3.3
get-tsconfig: 4.7.5
is-bun-module: 1.2.1
is-glob: 4.0.3
optionalDependencies:
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.38.0(jiti@2.4.2))
+ eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.39.1(jiti@2.5.1)))(eslint@9.39.1(jiti@2.5.1)))(eslint@9.39.1(jiti@2.5.1))
transitivePeerDependencies:
- '@typescript-eslint/parser'
- eslint-import-resolver-node
- eslint-import-resolver-webpack
- supports-color
- eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint-plugin-import@2.31.0)(eslint@9.11.1(jiti@2.4.2)):
+ eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint-plugin-import@2.31.0)(eslint@9.39.1(jiti@2.5.1)):
dependencies:
'@nolyfill/is-core-module': 1.0.39
debug: 4.3.7
- enhanced-resolve: 5.18.1
- eslint: 9.11.1(jiti@2.4.2)
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint-plugin-import@2.31.0)(eslint@9.11.1(jiti@2.4.2)))(eslint@9.11.1(jiti@2.4.2))
+ enhanced-resolve: 5.17.1
+ eslint: 9.39.1(jiti@2.5.1)
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint-plugin-import@2.31.0)(eslint@9.39.1(jiti@2.5.1)))(eslint@9.39.1(jiti@2.5.1))
fast-glob: 3.3.3
get-tsconfig: 4.7.5
is-bun-module: 1.2.1
is-glob: 4.0.3
optionalDependencies:
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.11.1(jiti@2.4.2))
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.39.1(jiti@2.5.1))
transitivePeerDependencies:
- '@typescript-eslint/parser'
- eslint-import-resolver-node
- eslint-import-resolver-webpack
- supports-color
- eslint-import-resolver-typescript@3.6.3(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0)(eslint@9.38.0(jiti@2.4.2)):
+ eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint-plugin-import@2.31.0)(eslint@9.11.1(jiti@2.5.1)):
dependencies:
'@nolyfill/is-core-module': 1.0.39
debug: 4.3.7
- enhanced-resolve: 5.18.1
- eslint: 9.38.0(jiti@2.4.2)
- eslint-module-utils: 2.12.0(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0)(eslint@9.38.0(jiti@2.4.2)))(eslint@9.38.0(jiti@2.4.2))
+ enhanced-resolve: 5.17.1
+ eslint: 9.11.1(jiti@2.5.1)
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint-plugin-import@2.31.0)(eslint@9.11.1(jiti@2.5.1)))(eslint@9.11.1(jiti@2.5.1))
+ fast-glob: 3.3.3
+ get-tsconfig: 4.7.5
+ is-bun-module: 1.2.1
+ is-glob: 4.0.3
+ optionalDependencies:
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.11.1(jiti@2.5.1))
+ transitivePeerDependencies:
+ - '@typescript-eslint/parser'
+ - eslint-import-resolver-node
+ - eslint-import-resolver-webpack
+ - supports-color
+
+ eslint-import-resolver-typescript@3.6.3(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0)(eslint@9.39.1(jiti@2.5.1)):
+ dependencies:
+ '@nolyfill/is-core-module': 1.0.39
+ debug: 4.3.7
+ enhanced-resolve: 5.17.1
+ eslint: 9.39.1(jiti@2.5.1)
+ eslint-module-utils: 2.12.0(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0)(eslint@9.39.1(jiti@2.5.1)))(eslint@9.39.1(jiti@2.5.1))
fast-glob: 3.3.3
get-tsconfig: 4.7.5
is-bun-module: 1.2.1
is-glob: 4.0.3
optionalDependencies:
- eslint-plugin-import: 2.32.0(eslint-import-resolver-typescript@3.6.3)(eslint@9.38.0(jiti@2.4.2))
+ eslint-plugin-import: 2.32.0(eslint-import-resolver-typescript@3.6.3)(eslint@9.39.1(jiti@2.5.1))
transitivePeerDependencies:
- '@typescript-eslint/parser'
- eslint-import-resolver-node
- eslint-import-resolver-webpack
- supports-color
- eslint-module-utils@2.12.0(@typescript-eslint/parser@8.46.2(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.46.2(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint-plugin-import@2.31.0)(eslint@9.11.1(jiti@2.4.2)))(eslint@9.11.1(jiti@2.4.2)):
+ eslint-module-utils@2.12.0(@typescript-eslint/parser@8.26.1(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.26.1(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@9.11.1(jiti@2.5.1)))(eslint@9.11.1(jiti@2.5.1)):
dependencies:
debug: 3.2.7(supports-color@6.1.0)
optionalDependencies:
- '@typescript-eslint/parser': 8.46.2(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2)
- eslint: 9.11.1(jiti@2.4.2)
+ '@typescript-eslint/parser': 8.26.1(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)
+ eslint: 9.11.1(jiti@2.5.1)
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.46.2(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint-plugin-import@2.31.0)(eslint@9.11.1(jiti@2.4.2))
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.26.1(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@9.11.1(jiti@2.5.1))
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.12.0(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.38.0(jiti@2.4.2)))(eslint@9.38.0(jiti@2.4.2)))(eslint@9.38.0(jiti@2.4.2)):
+ eslint-module-utils@2.12.0(@typescript-eslint/parser@8.46.3(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.46.3(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint-plugin-import@2.31.0)(eslint@9.11.1(jiti@2.5.1)))(eslint@9.11.1(jiti@2.5.1)):
dependencies:
debug: 3.2.7(supports-color@6.1.0)
optionalDependencies:
- '@typescript-eslint/parser': 8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)
- eslint: 9.38.0(jiti@2.4.2)
+ '@typescript-eslint/parser': 8.46.3(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)
+ eslint: 9.11.1(jiti@2.5.1)
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.38.0(jiti@2.4.2)))(eslint@9.38.0(jiti@2.4.2))
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.46.3(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint-plugin-import@2.31.0)(eslint@9.11.1(jiti@2.5.1))
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.12.0(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint-plugin-import@2.31.0)(eslint@9.38.0(jiti@2.4.2)))(eslint@9.38.0(jiti@2.4.2)):
+ eslint-module-utils@2.12.0(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.39.1(jiti@2.5.1)))(eslint@9.39.1(jiti@2.5.1)))(eslint@9.39.1(jiti@2.5.1)):
dependencies:
debug: 3.2.7(supports-color@6.1.0)
optionalDependencies:
- '@typescript-eslint/parser': 8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)
- eslint: 9.38.0(jiti@2.4.2)
+ '@typescript-eslint/parser': 8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)
+ eslint: 9.39.1(jiti@2.5.1)
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint-plugin-import@2.31.0)(eslint@9.38.0(jiti@2.4.2))
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.39.1(jiti@2.5.1)))(eslint@9.39.1(jiti@2.5.1))
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.12.0(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint-plugin-import@2.31.0)(eslint@9.11.1(jiti@2.4.2)))(eslint@9.11.1(jiti@2.4.2)):
+ eslint-module-utils@2.12.0(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint-plugin-import@2.31.0)(eslint@9.39.1(jiti@2.5.1)))(eslint@9.39.1(jiti@2.5.1)):
dependencies:
debug: 3.2.7(supports-color@6.1.0)
optionalDependencies:
- '@typescript-eslint/parser': 8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2)
- eslint: 9.11.1(jiti@2.4.2)
+ '@typescript-eslint/parser': 8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)
+ eslint: 9.39.1(jiti@2.5.1)
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint-plugin-import@2.31.0)(eslint@9.11.1(jiti@2.4.2))
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint-plugin-import@2.31.0)(eslint@9.39.1(jiti@2.5.1))
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.12.0(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0)(eslint@9.38.0(jiti@2.4.2)))(eslint@9.38.0(jiti@2.4.2)):
+ eslint-module-utils@2.12.0(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint-plugin-import@2.31.0)(eslint@9.11.1(jiti@2.5.1)))(eslint@9.11.1(jiti@2.5.1)):
dependencies:
debug: 3.2.7(supports-color@6.1.0)
optionalDependencies:
- eslint: 9.38.0(jiti@2.4.2)
+ '@typescript-eslint/parser': 8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)
+ eslint: 9.11.1(jiti@2.5.1)
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.3(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0)(eslint@9.38.0(jiti@2.4.2))
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint-plugin-import@2.31.0)(eslint@9.11.1(jiti@2.5.1))
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.12.1(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.38.0(jiti@2.4.2)))(eslint@9.38.0(jiti@2.4.2)))(eslint@9.38.0(jiti@2.4.2)):
+ eslint-module-utils@2.12.0(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0)(eslint@9.39.1(jiti@2.5.1)))(eslint@9.39.1(jiti@2.5.1)):
dependencies:
debug: 3.2.7(supports-color@6.1.0)
optionalDependencies:
- '@typescript-eslint/parser': 8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)
- eslint: 9.38.0(jiti@2.4.2)
+ eslint: 9.39.1(jiti@2.5.1)
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.38.0(jiti@2.4.2)))(eslint@9.38.0(jiti@2.4.2))
+ eslint-import-resolver-typescript: 3.6.3(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0)(eslint@9.39.1(jiti@2.5.1))
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.12.1(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0)(eslint@9.38.0(jiti@2.4.2)))(eslint@9.38.0(jiti@2.4.2)):
+ eslint-module-utils@2.12.1(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.39.1(jiti@2.5.1)))(eslint@9.39.1(jiti@2.5.1)))(eslint@9.39.1(jiti@2.5.1)):
dependencies:
debug: 3.2.7(supports-color@6.1.0)
optionalDependencies:
- eslint: 9.38.0(jiti@2.4.2)
+ '@typescript-eslint/parser': 8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)
+ eslint: 9.39.1(jiti@2.5.1)
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.3(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0)(eslint@9.38.0(jiti@2.4.2))
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.39.1(jiti@2.5.1)))(eslint@9.39.1(jiti@2.5.1))
transitivePeerDependencies:
- supports-color
- eslint-plugin-css-modules@2.11.0(eslint@9.11.1(jiti@2.4.2)):
+ eslint-module-utils@2.12.1(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0)(eslint@9.39.1(jiti@2.5.1)))(eslint@9.39.1(jiti@2.5.1)):
dependencies:
- eslint: 9.11.1(jiti@2.4.2)
+ debug: 3.2.7(supports-color@6.1.0)
+ optionalDependencies:
+ eslint: 9.39.1(jiti@2.5.1)
+ eslint-import-resolver-node: 0.3.9
+ eslint-import-resolver-typescript: 3.6.3(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0)(eslint@9.39.1(jiti@2.5.1))
+ transitivePeerDependencies:
+ - supports-color
+
+ eslint-plugin-css-modules@2.11.0(eslint@9.11.1(jiti@2.5.1)):
+ dependencies:
+ eslint: 9.11.1(jiti@2.5.1)
gonzales-pe: 4.3.0
lodash: 4.17.21
- eslint-plugin-css-modules@2.11.0(eslint@9.38.0(jiti@2.4.2)):
+ eslint-plugin-css-modules@2.11.0(eslint@9.39.1(jiti@2.5.1)):
dependencies:
- eslint: 9.38.0(jiti@2.4.2)
+ eslint: 9.39.1(jiti@2.5.1)
gonzales-pe: 4.3.0
lodash: 4.17.21
- eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.46.2(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.11.1(jiti@2.4.2)):
+ eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.26.1(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.11.1(jiti@2.5.1)):
dependencies:
'@rtsao/scc': 1.1.0
array-includes: 3.1.8
@@ -24462,9 +25733,9 @@ snapshots:
array.prototype.flatmap: 1.3.2
debug: 3.2.7(supports-color@6.1.0)
doctrine: 2.1.0
- eslint: 9.11.1(jiti@2.4.2)
+ eslint: 9.11.1(jiti@2.5.1)
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.46.2(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.46.2(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint-plugin-import@2.31.0)(eslint@9.11.1(jiti@2.4.2)))(eslint@9.11.1(jiti@2.4.2))
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.26.1(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.26.1(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@9.11.1(jiti@2.5.1)))(eslint@9.11.1(jiti@2.5.1))
hasown: 2.0.2
is-core-module: 2.15.1
is-glob: 4.0.3
@@ -24476,13 +25747,13 @@ snapshots:
string.prototype.trimend: 1.0.8
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 8.46.2(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2)
+ '@typescript-eslint/parser': 8.26.1(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.38.0(jiti@2.4.2)):
+ eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.46.3(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.11.1(jiti@2.5.1)):
dependencies:
'@rtsao/scc': 1.1.0
array-includes: 3.1.8
@@ -24491,9 +25762,9 @@ snapshots:
array.prototype.flatmap: 1.3.2
debug: 3.2.7(supports-color@6.1.0)
doctrine: 2.1.0
- eslint: 9.38.0(jiti@2.4.2)
+ eslint: 9.11.1(jiti@2.5.1)
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint-plugin-import@2.31.0)(eslint@9.38.0(jiti@2.4.2)))(eslint@9.38.0(jiti@2.4.2))
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.46.3(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.46.3(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint-plugin-import@2.31.0)(eslint@9.11.1(jiti@2.5.1)))(eslint@9.11.1(jiti@2.5.1))
hasown: 2.0.2
is-core-module: 2.15.1
is-glob: 4.0.3
@@ -24505,13 +25776,13 @@ snapshots:
string.prototype.trimend: 1.0.8
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)
+ '@typescript-eslint/parser': 8.46.3(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.11.1(jiti@2.4.2)):
+ eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.39.1(jiti@2.5.1)):
dependencies:
'@rtsao/scc': 1.1.0
array-includes: 3.1.8
@@ -24520,9 +25791,9 @@ snapshots:
array.prototype.flatmap: 1.3.2
debug: 3.2.7(supports-color@6.1.0)
doctrine: 2.1.0
- eslint: 9.11.1(jiti@2.4.2)
+ eslint: 9.39.1(jiti@2.5.1)
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint-plugin-import@2.31.0)(eslint@9.11.1(jiti@2.4.2)))(eslint@9.11.1(jiti@2.4.2))
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint-plugin-import@2.31.0)(eslint@9.39.1(jiti@2.5.1)))(eslint@9.39.1(jiti@2.5.1))
hasown: 2.0.2
is-core-module: 2.15.1
is-glob: 4.0.3
@@ -24534,13 +25805,42 @@ snapshots:
string.prototype.trimend: 1.0.8
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2)
+ '@typescript-eslint/parser': 8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.38.0(jiti@2.4.2)):
+ eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.11.1(jiti@2.5.1)):
+ dependencies:
+ '@rtsao/scc': 1.1.0
+ array-includes: 3.1.8
+ array.prototype.findlastindex: 1.2.5
+ array.prototype.flat: 1.3.2
+ array.prototype.flatmap: 1.3.2
+ debug: 3.2.7(supports-color@6.1.0)
+ doctrine: 2.1.0
+ eslint: 9.11.1(jiti@2.5.1)
+ eslint-import-resolver-node: 0.3.9
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint-plugin-import@2.31.0)(eslint@9.11.1(jiti@2.5.1)))(eslint@9.11.1(jiti@2.5.1))
+ hasown: 2.0.2
+ is-core-module: 2.15.1
+ is-glob: 4.0.3
+ minimatch: 3.1.2
+ object.fromentries: 2.0.8
+ object.groupby: 1.0.3
+ object.values: 1.2.0
+ semver: 6.3.1
+ string.prototype.trimend: 1.0.8
+ tsconfig-paths: 3.15.0
+ optionalDependencies:
+ '@typescript-eslint/parser': 8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)
+ transitivePeerDependencies:
+ - eslint-import-resolver-typescript
+ - eslint-import-resolver-webpack
+ - supports-color
+
+ eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.39.1(jiti@2.5.1)))(eslint@9.39.1(jiti@2.5.1)))(eslint@9.39.1(jiti@2.5.1)):
dependencies:
'@rtsao/scc': 1.1.0
array-includes: 3.1.9
@@ -24549,9 +25849,9 @@ snapshots:
array.prototype.flatmap: 1.3.3
debug: 3.2.7(supports-color@6.1.0)
doctrine: 2.1.0
- eslint: 9.38.0(jiti@2.4.2)
+ eslint: 9.39.1(jiti@2.5.1)
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.38.0(jiti@2.4.2)))(eslint@9.38.0(jiti@2.4.2)))(eslint@9.38.0(jiti@2.4.2))
+ eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.39.1(jiti@2.5.1)))(eslint@9.39.1(jiti@2.5.1)))(eslint@9.39.1(jiti@2.5.1))
hasown: 2.0.2
is-core-module: 2.16.1
is-glob: 4.0.3
@@ -24563,13 +25863,13 @@ snapshots:
string.prototype.trimend: 1.0.9
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)
+ '@typescript-eslint/parser': 8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-import@2.32.0(eslint-import-resolver-typescript@3.6.3)(eslint@9.38.0(jiti@2.4.2)):
+ eslint-plugin-import@2.32.0(eslint-import-resolver-typescript@3.6.3)(eslint@9.39.1(jiti@2.5.1)):
dependencies:
'@rtsao/scc': 1.1.0
array-includes: 3.1.9
@@ -24578,9 +25878,9 @@ snapshots:
array.prototype.flatmap: 1.3.3
debug: 3.2.7(supports-color@6.1.0)
doctrine: 2.1.0
- eslint: 9.38.0(jiti@2.4.2)
+ eslint: 9.39.1(jiti@2.5.1)
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.1(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0)(eslint@9.38.0(jiti@2.4.2)))(eslint@9.38.0(jiti@2.4.2))
+ eslint-module-utils: 2.12.1(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0)(eslint@9.39.1(jiti@2.5.1)))(eslint@9.39.1(jiti@2.5.1))
hasown: 2.0.2
is-core-module: 2.16.1
is-glob: 4.0.3
@@ -24596,40 +25896,40 @@ snapshots:
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-jest@28.8.3(@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint@9.11.1(jiti@2.4.2))(jest@29.7.0(@types/node@20.17.24))(typescript@5.8.2):
+ eslint-plugin-jest@28.8.3(@typescript-eslint/eslint-plugin@8.46.3(@typescript-eslint/parser@8.46.3(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.11.1(jiti@2.5.1))(jest@29.7.0(@types/node@20.17.24))(typescript@5.8.2):
dependencies:
- '@typescript-eslint/utils': 8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2)
- eslint: 9.11.1(jiti@2.4.2)
+ '@typescript-eslint/utils': 8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)
+ eslint: 9.11.1(jiti@2.5.1)
optionalDependencies:
- '@typescript-eslint/eslint-plugin': 8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2)
+ '@typescript-eslint/eslint-plugin': 8.46.3(@typescript-eslint/parser@8.46.3(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)
jest: 29.7.0(@types/node@20.17.24)
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-jest@28.8.3(@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.38.0(jiti@2.4.2))(jest@29.7.0(@types/node@22.13.10))(typescript@5.8.2):
+ eslint-plugin-jest@28.8.3(@typescript-eslint/eslint-plugin@8.46.3(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.39.1(jiti@2.5.1))(jest@29.7.0(@types/node@22.13.10))(typescript@5.8.2):
dependencies:
- '@typescript-eslint/utils': 8.9.0(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)
- eslint: 9.38.0(jiti@2.4.2)
+ '@typescript-eslint/utils': 8.9.0(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)
+ eslint: 9.39.1(jiti@2.5.1)
optionalDependencies:
- '@typescript-eslint/eslint-plugin': 8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)
+ '@typescript-eslint/eslint-plugin': 8.46.3(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)
jest: 29.7.0(@types/node@22.13.10)
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-jest@28.8.3(@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint@9.11.1(jiti@2.4.2))(jest@29.7.0(@types/node@20.17.24))(typescript@5.8.2):
+ eslint-plugin-jest@28.8.3(@typescript-eslint/eslint-plugin@8.46.3(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.11.1(jiti@2.5.1))(jest@29.7.0(@types/node@20.17.24))(typescript@5.8.2):
dependencies:
- '@typescript-eslint/utils': 8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2)
- eslint: 9.11.1(jiti@2.4.2)
+ '@typescript-eslint/utils': 8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)
+ eslint: 9.11.1(jiti@2.5.1)
optionalDependencies:
- '@typescript-eslint/eslint-plugin': 8.46.2(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2)
+ '@typescript-eslint/eslint-plugin': 8.46.3(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)
jest: 29.7.0(@types/node@20.17.24)
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-jsx-a11y@6.10.0(eslint@9.11.1(jiti@2.4.2)):
+ eslint-plugin-jsx-a11y@6.10.0(eslint@9.11.1(jiti@2.5.1)):
dependencies:
aria-query: 5.1.3
array-includes: 3.1.8
@@ -24640,7 +25940,7 @@ snapshots:
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
es-iterator-helpers: 1.0.19
- eslint: 9.11.1(jiti@2.4.2)
+ eslint: 9.11.1(jiti@2.5.1)
hasown: 2.0.2
jsx-ast-utils: 3.3.5
language-tags: 1.0.9
@@ -24649,7 +25949,7 @@ snapshots:
safe-regex-test: 1.0.3
string.prototype.includes: 2.0.1
- eslint-plugin-jsx-a11y@6.10.0(eslint@9.38.0(jiti@2.4.2)):
+ eslint-plugin-jsx-a11y@6.10.0(eslint@9.39.1(jiti@2.5.1)):
dependencies:
aria-query: 5.1.3
array-includes: 3.1.8
@@ -24660,7 +25960,7 @@ snapshots:
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
es-iterator-helpers: 1.0.19
- eslint: 9.38.0(jiti@2.4.2)
+ eslint: 9.39.1(jiti@2.5.1)
hasown: 2.0.2
jsx-ast-utils: 3.3.5
language-tags: 1.0.9
@@ -24669,38 +25969,38 @@ snapshots:
safe-regex-test: 1.0.3
string.prototype.includes: 2.0.1
- eslint-plugin-react-compiler@0.0.0-experimental-8e3b87c-20240822(eslint@9.11.1(jiti@2.4.2)):
+ eslint-plugin-react-compiler@0.0.0-experimental-8e3b87c-20240822(eslint@9.11.1(jiti@2.5.1)):
dependencies:
'@babel/core': 7.26.10
'@babel/parser': 7.21.9
'@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.26.10)
- eslint: 9.11.1(jiti@2.4.2)
+ eslint: 9.11.1(jiti@2.5.1)
hermes-parser: 0.20.1
zod: 3.24.2
zod-validation-error: 3.4.0(zod@3.24.2)
transitivePeerDependencies:
- supports-color
- eslint-plugin-react-hooks@5.0.0(eslint@9.11.1(jiti@2.4.2)):
+ eslint-plugin-react-hooks@5.0.0(eslint@9.11.1(jiti@2.5.1)):
dependencies:
- eslint: 9.11.1(jiti@2.4.2)
+ eslint: 9.11.1(jiti@2.5.1)
- eslint-plugin-react-hooks@5.0.0(eslint@9.38.0(jiti@2.4.2)):
+ eslint-plugin-react-hooks@5.0.0(eslint@9.39.1(jiti@2.5.1)):
dependencies:
- eslint: 9.38.0(jiti@2.4.2)
+ eslint: 9.39.1(jiti@2.5.1)
- eslint-plugin-react-hooks@7.0.1(eslint@9.38.0(jiti@2.4.2)):
+ eslint-plugin-react-hooks@7.0.1(eslint@9.39.1(jiti@2.5.1)):
dependencies:
'@babel/core': 7.26.10
'@babel/parser': 7.21.9
- eslint: 9.38.0(jiti@2.4.2)
+ eslint: 9.39.1(jiti@2.5.1)
hermes-parser: 0.25.1
zod: 3.25.76
zod-validation-error: 4.0.2(zod@3.25.76)
transitivePeerDependencies:
- supports-color
- eslint-plugin-react@7.37.1(eslint@9.11.1(jiti@2.4.2)):
+ eslint-plugin-react@7.37.1(eslint@9.11.1(jiti@2.5.1)):
dependencies:
array-includes: 3.1.8
array.prototype.findlast: 1.2.5
@@ -24708,7 +26008,7 @@ snapshots:
array.prototype.tosorted: 1.1.4
doctrine: 2.1.0
es-iterator-helpers: 1.0.19
- eslint: 9.11.1(jiti@2.4.2)
+ eslint: 9.11.1(jiti@2.5.1)
estraverse: 5.3.0
hasown: 2.0.2
jsx-ast-utils: 3.3.5
@@ -24722,7 +26022,7 @@ snapshots:
string.prototype.matchall: 4.0.11
string.prototype.repeat: 1.0.0
- eslint-plugin-react@7.37.1(eslint@9.38.0(jiti@2.4.2)):
+ eslint-plugin-react@7.37.1(eslint@9.39.1(jiti@2.5.1)):
dependencies:
array-includes: 3.1.8
array.prototype.findlast: 1.2.5
@@ -24730,7 +26030,7 @@ snapshots:
array.prototype.tosorted: 1.1.4
doctrine: 2.1.0
es-iterator-helpers: 1.0.19
- eslint: 9.38.0(jiti@2.4.2)
+ eslint: 9.39.1(jiti@2.5.1)
estraverse: 5.3.0
hasown: 2.0.2
jsx-ast-utils: 3.3.5
@@ -24744,14 +26044,14 @@ snapshots:
string.prototype.matchall: 4.0.11
string.prototype.repeat: 1.0.0
- eslint-plugin-sort-destructure-keys@2.0.0(eslint@9.11.1(jiti@2.4.2)):
+ eslint-plugin-sort-destructure-keys@2.0.0(eslint@9.11.1(jiti@2.5.1)):
dependencies:
- eslint: 9.11.1(jiti@2.4.2)
+ eslint: 9.11.1(jiti@2.5.1)
natural-compare-lite: 1.4.0
- eslint-plugin-sort-destructure-keys@2.0.0(eslint@9.38.0(jiti@2.4.2)):
+ eslint-plugin-sort-destructure-keys@2.0.0(eslint@9.39.1(jiti@2.5.1)):
dependencies:
- eslint: 9.38.0(jiti@2.4.2)
+ eslint: 9.39.1(jiti@2.5.1)
natural-compare-lite: 1.4.0
eslint-plugin-tailwindcss@3.13.0(tailwindcss@3.4.17):
@@ -24760,20 +26060,20 @@ snapshots:
postcss: 8.5.3
tailwindcss: 3.4.17
- eslint-plugin-tailwindcss@3.13.0(tailwindcss@4.0.13):
+ eslint-plugin-tailwindcss@3.13.0(tailwindcss@4.1.12):
dependencies:
fast-glob: 3.3.3
postcss: 8.5.3
- tailwindcss: 4.0.13
+ tailwindcss: 4.1.12
- eslint-plugin-unicorn@56.0.0(eslint@9.11.1(jiti@2.4.2)):
+ eslint-plugin-unicorn@56.0.0(eslint@9.11.1(jiti@2.5.1)):
dependencies:
'@babel/helper-validator-identifier': 7.25.7
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@2.4.2))
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@2.5.1))
ci-info: 4.0.0
clean-regexp: 1.0.0
core-js-compat: 3.38.1
- eslint: 9.11.1(jiti@2.4.2)
+ eslint: 9.11.1(jiti@2.5.1)
esquery: 1.6.0
globals: 15.15.0
indent-string: 4.0.0
@@ -24786,14 +26086,14 @@ snapshots:
semver: 7.6.3
strip-indent: 3.0.0
- eslint-plugin-unicorn@56.0.0(eslint@9.38.0(jiti@2.4.2)):
+ eslint-plugin-unicorn@56.0.0(eslint@9.39.1(jiti@2.5.1)):
dependencies:
'@babel/helper-validator-identifier': 7.25.7
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.38.0(jiti@2.4.2))
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.39.1(jiti@2.5.1))
ci-info: 4.0.0
clean-regexp: 1.0.0
core-js-compat: 3.38.1
- eslint: 9.38.0(jiti@2.4.2)
+ eslint: 9.39.1(jiti@2.5.1)
esquery: 1.6.0
globals: 15.15.0
indent-string: 4.0.0
@@ -24806,23 +26106,23 @@ snapshots:
semver: 7.6.3
strip-indent: 3.0.0
- eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint@9.11.1(jiti@2.4.2)):
+ eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.46.3(@typescript-eslint/parser@8.46.3(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.11.1(jiti@2.5.1)):
dependencies:
- eslint: 9.11.1(jiti@2.4.2)
+ eslint: 9.11.1(jiti@2.5.1)
optionalDependencies:
- '@typescript-eslint/eslint-plugin': 8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2)
+ '@typescript-eslint/eslint-plugin': 8.46.3(@typescript-eslint/parser@8.46.3(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)
- eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.38.0(jiti@2.4.2)):
+ eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.46.3(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.39.1(jiti@2.5.1)):
dependencies:
- eslint: 9.38.0(jiti@2.4.2)
+ eslint: 9.39.1(jiti@2.5.1)
optionalDependencies:
- '@typescript-eslint/eslint-plugin': 8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)
+ '@typescript-eslint/eslint-plugin': 8.46.3(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)
- eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint@9.11.1(jiti@2.4.2)):
+ eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.46.3(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.11.1(jiti@2.5.1)):
dependencies:
- eslint: 9.11.1(jiti@2.4.2)
+ eslint: 9.11.1(jiti@2.5.1)
optionalDependencies:
- '@typescript-eslint/eslint-plugin': 8.46.2(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2)
+ '@typescript-eslint/eslint-plugin': 8.46.3(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)
eslint-scope@4.0.3:
dependencies:
@@ -24850,9 +26150,9 @@ snapshots:
eslint-visitor-keys@4.2.1: {}
- eslint@9.11.1(jiti@2.4.2):
+ eslint@9.11.1(jiti@2.5.1):
dependencies:
- '@eslint-community/eslint-utils': 4.5.0(eslint@9.11.1(jiti@2.4.2))
+ '@eslint-community/eslint-utils': 4.5.0(eslint@9.11.1(jiti@2.5.1))
'@eslint-community/regexpp': 4.12.1
'@eslint/config-array': 0.18.0
'@eslint/core': 0.6.0
@@ -24890,24 +26190,24 @@ snapshots:
strip-ansi: 6.0.1
text-table: 0.2.0
optionalDependencies:
- jiti: 2.4.2
+ jiti: 2.5.1
transitivePeerDependencies:
- supports-color
- eslint@9.38.0(jiti@2.4.2):
+ eslint@9.39.1(jiti@2.5.1):
dependencies:
- '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.4.2))
+ '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@2.5.1))
'@eslint-community/regexpp': 4.12.1
'@eslint/config-array': 0.21.1
- '@eslint/config-helpers': 0.4.1
- '@eslint/core': 0.16.0
+ '@eslint/config-helpers': 0.4.2
+ '@eslint/core': 0.17.0
'@eslint/eslintrc': 3.3.1
- '@eslint/js': 9.38.0
- '@eslint/plugin-kit': 0.4.0
+ '@eslint/js': 9.39.1
+ '@eslint/plugin-kit': 0.4.1
'@humanfs/node': 0.16.6
'@humanwhocodes/module-importer': 1.0.1
'@humanwhocodes/retry': 0.4.2
- '@types/estree': 1.0.8
+ '@types/estree': 1.0.6
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.6
@@ -24931,18 +26231,12 @@ snapshots:
natural-compare: 1.4.0
optionator: 0.9.3
optionalDependencies:
- jiti: 2.4.2
+ jiti: 2.5.1
transitivePeerDependencies:
- supports-color
esm@3.2.25: {}
- espree@10.2.0:
- dependencies:
- acorn: 8.13.0
- acorn-jsx: 5.3.2(acorn@8.13.0)
- eslint-visitor-keys: 4.2.0
-
espree@10.3.0:
dependencies:
acorn: 8.14.1
@@ -24971,11 +26265,11 @@ snapshots:
estree-util-attach-comments@2.1.1:
dependencies:
- '@types/estree': 1.0.8
+ '@types/estree': 1.0.6
estree-util-attach-comments@3.0.0:
dependencies:
- '@types/estree': 1.0.8
+ '@types/estree': 1.0.6
estree-util-build-jsx@2.2.2:
dependencies:
@@ -25077,7 +26371,7 @@ snapshots:
execa@5.1.1:
dependencies:
- cross-spawn: 7.0.3
+ cross-spawn: 7.0.6
get-stream: 6.0.1
human-signals: 2.1.0
is-stream: 2.0.1
@@ -25577,9 +26871,9 @@ snapshots:
cross-spawn: 7.0.6
signal-exit: 4.1.0
- fork-ts-checker-webpack-plugin@4.1.6(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)(webpack@4.43.0):
+ fork-ts-checker-webpack-plugin@4.1.6(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)(webpack@4.43.0):
dependencies:
- '@babel/code-frame': 7.27.1
+ '@babel/code-frame': 7.26.2
chalk: 2.4.2
micromatch: 3.1.10(supports-color@6.1.0)
minimatch: 3.1.2
@@ -25589,13 +26883,13 @@ snapshots:
webpack: 4.43.0
worker-rpc: 0.1.1
optionalDependencies:
- eslint: 9.38.0(jiti@2.4.2)
+ eslint: 9.39.1(jiti@2.5.1)
transitivePeerDependencies:
- supports-color
fork-ts-checker-webpack-plugin@8.0.0(typescript@5.8.2)(webpack@5.98.0(esbuild@0.25.1)):
dependencies:
- '@babel/code-frame': 7.27.1
+ '@babel/code-frame': 7.26.2
chalk: 4.1.2
chokidar: 3.6.0
cosmiconfig: 7.1.0
@@ -25605,8 +26899,8 @@ snapshots:
minimatch: 3.1.2
node-abort-controller: 3.1.1
schema-utils: 3.3.0
- semver: 7.7.2
- tapable: 2.2.3
+ semver: 7.7.1
+ tapable: 2.2.1
typescript: 5.8.2
webpack: 5.98.0(esbuild@0.25.1)
@@ -25623,6 +26917,14 @@ snapshots:
combined-stream: 1.0.8
mime-types: 2.1.35
+ form-data@4.0.2:
+ dependencies:
+ asynckit: 0.4.0
+ combined-stream: 1.0.8
+ es-set-tostringtag: 2.1.0
+ mime-types: 2.1.35
+ optional: true
+
format@0.2.2: {}
formdata-polyfill@4.0.10:
@@ -25727,9 +27029,9 @@ snapshots:
function.prototype.name@1.1.6:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.24.0
+ es-abstract: 1.23.3
functions-have-names: 1.2.3
function.prototype.name@1.1.8:
@@ -25802,9 +27104,9 @@ snapshots:
get-symbol-description@1.0.2:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
es-errors: 1.3.0
- get-intrinsic: 1.3.0
+ get-intrinsic: 1.2.4
get-symbol-description@1.1.0:
dependencies:
@@ -25933,7 +27235,7 @@ snapshots:
globalthis@1.0.4:
dependencies:
define-properties: 1.2.1
- gopd: 1.0.1
+ gopd: 1.2.0
globby@11.0.1:
dependencies:
@@ -26037,7 +27339,7 @@ snapshots:
has-property-descriptors@1.0.2:
dependencies:
- es-define-property: 1.0.0
+ es-define-property: 1.0.1
has-proto@1.0.1: {}
@@ -26098,6 +27400,10 @@ snapshots:
inherits: 2.0.4
minimalistic-assert: 1.0.1
+ hasown@2.0.0:
+ dependencies:
+ function-bind: 1.1.2
+
hasown@2.0.2:
dependencies:
function-bind: 1.1.2
@@ -26161,7 +27467,7 @@ snapshots:
hast-util-to-estree@2.3.3:
dependencies:
- '@types/estree': 1.0.8
+ '@types/estree': 1.0.6
'@types/estree-jsx': 1.0.5
'@types/hast': 2.3.10
'@types/unist': 2.0.11
@@ -26393,7 +27699,7 @@ snapshots:
html-minifier-terser: 6.1.0
lodash: 4.17.21
pretty-error: 4.0.0
- tapable: 2.2.3
+ tapable: 2.2.1
optionalDependencies:
webpack: 5.98.0(esbuild@0.25.1)
@@ -26677,11 +27983,6 @@ snapshots:
is-alphabetical: 2.0.1
is-decimal: 2.0.1
- is-arguments@1.1.1:
- dependencies:
- call-bind: 1.0.8
- has-tostringtag: 1.0.2
-
is-arguments@1.2.0:
dependencies:
call-bound: 1.0.4
@@ -26689,8 +27990,8 @@ snapshots:
is-array-buffer@3.0.4:
dependencies:
- call-bind: 1.0.8
- get-intrinsic: 1.3.0
+ call-bind: 1.0.7
+ get-intrinsic: 1.2.4
is-array-buffer@3.0.5:
dependencies:
@@ -26742,7 +28043,7 @@ snapshots:
is-bun-module@1.2.1:
dependencies:
- semver: 7.7.1
+ semver: 7.7.2
is-callable@1.2.7: {}
@@ -26761,7 +28062,7 @@ snapshots:
is-core-module@2.13.1:
dependencies:
- hasown: 2.0.2
+ hasown: 2.0.0
is-core-module@2.15.1:
dependencies:
@@ -26777,7 +28078,7 @@ snapshots:
is-data-view@1.0.1:
dependencies:
- is-typed-array: 1.1.15
+ is-typed-array: 1.1.13
is-data-view@1.0.2:
dependencies:
@@ -26787,7 +28088,7 @@ snapshots:
is-date-object@1.0.5:
dependencies:
- has-tostringtag: 1.0.2
+ has-tostringtag: 1.0.0
is-date-object@1.1.0:
dependencies:
@@ -26869,8 +28170,6 @@ snapshots:
is-lambda@1.0.1: {}
- is-map@2.0.2: {}
-
is-map@2.0.3: {}
is-module@1.0.0: {}
@@ -26928,11 +28227,11 @@ snapshots:
is-reference@3.0.2:
dependencies:
- '@types/estree': 1.0.8
+ '@types/estree': 1.0.6
is-regex@1.1.4:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.2
has-tostringtag: 1.0.0
is-regex@1.2.1:
@@ -26950,7 +28249,7 @@ snapshots:
is-shared-array-buffer@1.0.3:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
is-shared-array-buffer@1.0.4:
dependencies:
@@ -26977,6 +28276,10 @@ snapshots:
call-bound: 1.0.4
has-tostringtag: 1.0.2
+ is-symbol@1.0.4:
+ dependencies:
+ has-symbols: 1.1.0
+
is-symbol@1.1.1:
dependencies:
call-bound: 1.0.4
@@ -26989,7 +28292,7 @@ snapshots:
is-typed-array@1.1.13:
dependencies:
- which-typed-array: 1.1.19
+ which-typed-array: 1.1.15
is-typed-array@1.1.15:
dependencies:
@@ -27003,23 +28306,16 @@ snapshots:
dependencies:
is-invalid-path: 0.1.0
- is-weakmap@2.0.1: {}
-
is-weakmap@2.0.2: {}
is-weakref@1.0.2:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.2
is-weakref@1.1.1:
dependencies:
call-bound: 1.0.4
- is-weakset@2.0.2:
- dependencies:
- call-bind: 1.0.8
- get-intrinsic: 1.3.0
-
is-weakset@2.0.4:
dependencies:
call-bound: 1.0.4
@@ -27101,9 +28397,9 @@ snapshots:
iterator.prototype@1.1.2:
dependencies:
define-properties: 1.2.1
- get-intrinsic: 1.2.4
- has-symbols: 1.0.3
- reflect.getprototypeof: 1.0.6
+ get-intrinsic: 1.3.0
+ has-symbols: 1.1.0
+ reflect.getprototypeof: 1.0.10
set-function-name: 2.0.2
jackspeak@3.4.0:
@@ -27329,7 +28625,7 @@ snapshots:
jest-message-util@29.7.0:
dependencies:
- '@babel/code-frame': 7.27.1
+ '@babel/code-frame': 7.26.2
'@jest/types': 29.6.3
'@types/stack-utils': 2.0.3
chalk: 4.1.2
@@ -27436,7 +28732,7 @@ snapshots:
'@babel/generator': 7.26.10
'@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.10)
'@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.10)
- '@babel/types': 7.28.4
+ '@babel/types': 7.26.10
'@jest/expect-utils': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
@@ -27451,7 +28747,7 @@ snapshots:
jest-util: 29.7.0
natural-compare: 1.4.0
pretty-format: 29.7.0
- semver: 7.7.2
+ semver: 7.7.1
transitivePeerDependencies:
- supports-color
@@ -27552,6 +28848,8 @@ snapshots:
jiti@2.4.2: {}
+ jiti@2.5.1: {}
+
joi@17.13.3:
dependencies:
'@hapi/hoek': 9.3.0
@@ -27611,12 +28909,12 @@ snapshots:
jsdom@20.0.3:
dependencies:
abab: 2.0.6
- acorn: 8.14.1
+ acorn: 8.12.0
acorn-globals: 7.0.1
cssom: 0.5.0
cssstyle: 2.3.0
data-urls: 3.0.2
- decimal.js: 10.5.0
+ decimal.js: 10.4.3
domexception: 4.0.0
escodegen: 2.1.0
form-data: 4.0.0
@@ -27625,7 +28923,7 @@ snapshots:
https-proxy-agent: 5.0.1
is-potential-custom-element-name: 1.0.1
nwsapi: 2.2.10
- parse5: 7.2.1
+ parse5: 7.1.2
saxes: 6.0.0
symbol-tree: 3.2.4
tough-cookie: 4.1.4
@@ -27634,34 +28932,35 @@ snapshots:
whatwg-encoding: 2.0.0
whatwg-mimetype: 3.0.0
whatwg-url: 11.0.0
- ws: 8.18.1
+ ws: 8.17.1
xml-name-validator: 4.0.0
transitivePeerDependencies:
- bufferutil
- supports-color
- utf-8-validate
- jsdom@27.1.0:
+ jsdom@26.0.0:
dependencies:
- '@acemir/cssom': 0.9.19
- '@asamuzakjp/dom-selector': 6.7.4
- cssstyle: 5.3.2
- data-urls: 6.0.0
- decimal.js: 10.6.0
+ cssstyle: 4.3.0
+ data-urls: 5.0.0
+ decimal.js: 10.5.0
+ form-data: 4.0.2
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
- parse5: 8.0.0
+ nwsapi: 2.2.18
+ parse5: 7.2.1
+ rrweb-cssom: 0.8.0
saxes: 6.0.0
symbol-tree: 3.2.4
- tough-cookie: 6.0.0
+ tough-cookie: 5.1.2
w3c-xmlserializer: 5.0.0
- webidl-conversions: 8.0.0
+ webidl-conversions: 7.0.0
whatwg-encoding: 3.1.1
whatwg-mimetype: 4.0.0
- whatwg-url: 15.1.0
- ws: 8.18.3
+ whatwg-url: 14.1.1
+ ws: 8.18.1
xml-name-validator: 5.0.0
transitivePeerDependencies:
- bufferutil
@@ -27734,7 +29033,7 @@ snapshots:
dependencies:
array-includes: 3.1.8
array.prototype.flat: 1.3.2
- object.assign: 4.1.5
+ object.assign: 4.1.7
object.values: 1.2.0
just-diff-apply@5.5.0: {}
@@ -27829,51 +29128,50 @@ snapshots:
transitivePeerDependencies:
- supports-color
- lightningcss-darwin-arm64@1.29.2:
+ lightningcss-darwin-arm64@1.30.1:
optional: true
- lightningcss-darwin-x64@1.29.2:
+ lightningcss-darwin-x64@1.30.1:
optional: true
- lightningcss-freebsd-x64@1.29.2:
+ lightningcss-freebsd-x64@1.30.1:
optional: true
- lightningcss-linux-arm-gnueabihf@1.29.2:
+ lightningcss-linux-arm-gnueabihf@1.30.1:
optional: true
- lightningcss-linux-arm64-gnu@1.29.2:
+ lightningcss-linux-arm64-gnu@1.30.1:
optional: true
- lightningcss-linux-arm64-musl@1.29.2:
+ lightningcss-linux-arm64-musl@1.30.1:
optional: true
- lightningcss-linux-x64-gnu@1.29.2:
+ lightningcss-linux-x64-gnu@1.30.1:
optional: true
- lightningcss-linux-x64-musl@1.29.2:
+ lightningcss-linux-x64-musl@1.30.1:
optional: true
- lightningcss-win32-arm64-msvc@1.29.2:
+ lightningcss-win32-arm64-msvc@1.30.1:
optional: true
- lightningcss-win32-x64-msvc@1.29.2:
+ lightningcss-win32-x64-msvc@1.30.1:
optional: true
- lightningcss@1.29.2:
+ lightningcss@1.30.1:
dependencies:
- detect-libc: 2.1.2
+ detect-libc: 2.0.4
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
- optional: true
+ lightningcss-darwin-arm64: 1.30.1
+ lightningcss-darwin-x64: 1.30.1
+ lightningcss-freebsd-x64: 1.30.1
+ lightningcss-linux-arm-gnueabihf: 1.30.1
+ lightningcss-linux-arm64-gnu: 1.30.1
+ lightningcss-linux-arm64-musl: 1.30.1
+ lightningcss-linux-x64-gnu: 1.30.1
+ lightningcss-linux-x64-musl: 1.30.1
+ lightningcss-win32-arm64-msvc: 1.30.1
+ lightningcss-win32-x64-msvc: 1.30.1
lilconfig@3.1.2: {}
@@ -27984,9 +29282,6 @@ snapshots:
lru-cache@10.4.3: {}
- lru-cache@11.2.2:
- optional: true
-
lru-cache@5.1.1:
dependencies:
yallist: 3.1.1
@@ -27997,6 +29292,10 @@ snapshots:
lru-cache@7.18.3: {}
+ lucide-react@0.545.0(react@19.1.0):
+ dependencies:
+ react: 19.1.0
+
lz-string@1.5.0: {}
magic-string@0.30.10:
@@ -28283,7 +29582,7 @@ snapshots:
ccount: 2.0.1
devlop: 1.1.0
mdast-util-from-markdown: 2.0.2
- mdast-util-to-markdown: 2.1.0
+ mdast-util-to-markdown: 2.1.2
parse-entities: 4.0.1
stringify-entities: 4.0.4
unist-util-stringify-position: 4.0.0
@@ -28411,9 +29710,6 @@ snapshots:
mdn-data@2.0.4: {}
- mdn-data@2.12.2:
- optional: true
-
media-query-parser@2.0.2:
dependencies:
'@babel/runtime': 7.26.10
@@ -28663,8 +29959,8 @@ snapshots:
metro-source-map@0.72.4:
dependencies:
- '@babel/traverse': 7.28.4
- '@babel/types': 7.28.4
+ '@babel/traverse': 7.26.10
+ '@babel/types': 7.26.10
invariant: 2.2.4
metro-symbolicate: 0.72.4
nullthrows: 1.1.1
@@ -28690,7 +29986,7 @@ snapshots:
'@babel/core': 7.26.10
'@babel/generator': 7.26.10
'@babel/template': 7.26.9
- '@babel/traverse': 7.28.4
+ '@babel/traverse': 7.26.10
nullthrows: 1.1.1
transitivePeerDependencies:
- supports-color
@@ -28700,7 +29996,7 @@ snapshots:
'@babel/core': 7.26.10
'@babel/generator': 7.26.10
'@babel/parser': 7.21.9
- '@babel/types': 7.28.4
+ '@babel/types': 7.26.10
babel-preset-fbjs: 3.4.0(@babel/core@7.26.10)
metro: 0.72.4(encoding@0.1.13)
metro-babel-transformer: 0.72.4
@@ -28718,13 +30014,13 @@ snapshots:
metro@0.72.4(encoding@0.1.13):
dependencies:
- '@babel/code-frame': 7.27.1
+ '@babel/code-frame': 7.26.2
'@babel/core': 7.26.10
'@babel/generator': 7.26.10
'@babel/parser': 7.21.9
'@babel/template': 7.26.9
- '@babel/traverse': 7.28.4
- '@babel/types': 7.28.4
+ '@babel/traverse': 7.26.10
+ '@babel/types': 7.26.10
absolute-path: 0.0.0
accepts: 1.3.8
async: 3.2.6
@@ -28920,7 +30216,7 @@ snapshots:
micromark-extension-mdx-expression@1.0.8:
dependencies:
- '@types/estree': 1.0.8
+ '@types/estree': 1.0.6
micromark-factory-mdx-expression: 1.0.9
micromark-factory-space: 1.1.0
micromark-util-character: 1.2.0
@@ -28931,7 +30227,7 @@ snapshots:
micromark-extension-mdx-expression@3.0.0:
dependencies:
- '@types/estree': 1.0.8
+ '@types/estree': 1.0.6
devlop: 1.1.0
micromark-factory-mdx-expression: 2.0.2
micromark-factory-space: 2.0.1
@@ -28943,7 +30239,7 @@ snapshots:
micromark-extension-mdx-jsx@1.0.5:
dependencies:
'@types/acorn': 4.0.6
- '@types/estree': 1.0.8
+ '@types/estree': 1.0.6
estree-util-is-identifier-name: 2.1.0
micromark-factory-mdx-expression: 1.0.9
micromark-factory-space: 1.1.0
@@ -28956,7 +30252,7 @@ snapshots:
micromark-extension-mdx-jsx@3.0.1:
dependencies:
'@types/acorn': 4.0.6
- '@types/estree': 1.0.8
+ '@types/estree': 1.0.6
devlop: 1.1.0
estree-util-is-identifier-name: 3.0.0
micromark-factory-mdx-expression: 2.0.2
@@ -28977,7 +30273,7 @@ snapshots:
micromark-extension-mdxjs-esm@1.0.5:
dependencies:
- '@types/estree': 1.0.8
+ '@types/estree': 1.0.6
micromark-core-commonmark: 1.1.0
micromark-util-character: 1.2.0
micromark-util-events-to-acorn: 1.2.3
@@ -28989,7 +30285,7 @@ snapshots:
micromark-extension-mdxjs-esm@3.0.0:
dependencies:
- '@types/estree': 1.0.8
+ '@types/estree': 1.0.6
devlop: 1.1.0
micromark-core-commonmark: 2.0.3
micromark-util-character: 2.1.1
@@ -29001,8 +30297,8 @@ snapshots:
micromark-extension-mdxjs@1.0.1:
dependencies:
- acorn: 8.15.0
- acorn-jsx: 5.3.2(acorn@8.15.0)
+ acorn: 8.14.1
+ acorn-jsx: 5.3.2(acorn@8.14.1)
micromark-extension-mdx-expression: 1.0.8
micromark-extension-mdx-jsx: 1.0.5
micromark-extension-mdx-md: 1.0.1
@@ -29012,8 +30308,8 @@ snapshots:
micromark-extension-mdxjs@3.0.0:
dependencies:
- acorn: 8.15.0
- acorn-jsx: 5.3.2(acorn@8.15.0)
+ acorn: 8.14.1
+ acorn-jsx: 5.3.2(acorn@8.14.1)
micromark-extension-mdx-expression: 3.0.0
micromark-extension-mdx-jsx: 3.0.1
micromark-extension-mdx-md: 2.0.0
@@ -29062,7 +30358,7 @@ snapshots:
micromark-factory-mdx-expression@1.0.9:
dependencies:
- '@types/estree': 1.0.8
+ '@types/estree': 1.0.6
micromark-util-character: 1.2.0
micromark-util-events-to-acorn: 1.2.3
micromark-util-symbol: 1.1.0
@@ -29073,7 +30369,7 @@ snapshots:
micromark-factory-mdx-expression@2.0.2:
dependencies:
- '@types/estree': 1.0.8
+ '@types/estree': 1.0.6
devlop: 1.1.0
micromark-factory-space: 2.0.1
micromark-util-character: 2.1.1
@@ -29229,7 +30525,7 @@ snapshots:
micromark-util-events-to-acorn@1.2.3:
dependencies:
'@types/acorn': 4.0.6
- '@types/estree': 1.0.8
+ '@types/estree': 1.0.6
'@types/unist': 2.0.11
estree-util-visit: 1.2.1
micromark-util-symbol: 1.1.0
@@ -29240,7 +30536,7 @@ snapshots:
micromark-util-events-to-acorn@2.0.2:
dependencies:
'@types/acorn': 4.0.6
- '@types/estree': 1.0.8
+ '@types/estree': 1.0.6
'@types/unist': 3.0.3
devlop: 1.1.0
estree-util-visit: 2.0.0
@@ -29482,6 +30778,10 @@ snapshots:
minipass: 3.3.6
yallist: 4.0.0
+ minizlib@3.0.2:
+ dependencies:
+ minipass: 7.1.2
+
mississippi@3.0.0:
dependencies:
concat-stream: 1.6.2
@@ -29510,16 +30810,18 @@ snapshots:
mkdirp@1.0.4: {}
+ mkdirp@3.0.1: {}
+
mlly@1.7.1:
dependencies:
- acorn: 8.15.0
+ acorn: 8.14.1
pathe: 1.1.2
pkg-types: 1.1.1
ufo: 1.5.3
mlly@1.7.4:
dependencies:
- acorn: 8.15.0
+ acorn: 8.14.1
pathe: 2.0.3
pkg-types: 1.3.1
ufo: 1.5.4
@@ -29629,7 +30931,7 @@ snapshots:
dependencies:
type-fest: 2.19.0
- next-auth@4.24.11(next@16.0.1(@playwright/test@1.55.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
+ next-auth@4.24.11(next@16.0.1(@babel/core@7.26.10)(@playwright/test@1.55.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
dependencies:
'@babel/runtime': 7.24.7
'@panva/hkdf': 1.2.0
@@ -29657,6 +30959,11 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ next-themes@0.4.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ dependencies:
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+
next-validate-link@1.5.1:
dependencies:
fast-glob: 3.3.3
@@ -29722,11 +31029,59 @@ snapshots:
- '@babel/core'
- babel-plugin-macros
+ next@15.5.0(@playwright/test@1.55.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
+ dependencies:
+ '@next/env': 15.5.0
+ '@swc/helpers': 0.5.15
+ caniuse-lite: 1.0.30001704
+ postcss: 8.4.31
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ styled-jsx: 5.1.6(react@19.0.0)
+ optionalDependencies:
+ '@next/swc-darwin-arm64': 15.5.0
+ '@next/swc-darwin-x64': 15.5.0
+ '@next/swc-linux-arm64-gnu': 15.5.0
+ '@next/swc-linux-arm64-musl': 15.5.0
+ '@next/swc-linux-x64-gnu': 15.5.0
+ '@next/swc-linux-x64-musl': 15.5.0
+ '@next/swc-win32-arm64-msvc': 15.5.0
+ '@next/swc-win32-x64-msvc': 15.5.0
+ '@playwright/test': 1.55.0
+ sharp: 0.34.3
+ transitivePeerDependencies:
+ - '@babel/core'
+ - babel-plugin-macros
+
+ next@15.5.4(@playwright/test@1.55.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ dependencies:
+ '@next/env': 15.5.4
+ '@swc/helpers': 0.5.15
+ caniuse-lite: 1.0.30001704
+ postcss: 8.4.31
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ styled-jsx: 5.1.6(react@19.1.0)
+ optionalDependencies:
+ '@next/swc-darwin-arm64': 15.5.4
+ '@next/swc-darwin-x64': 15.5.4
+ '@next/swc-linux-arm64-gnu': 15.5.4
+ '@next/swc-linux-arm64-musl': 15.5.4
+ '@next/swc-linux-x64-gnu': 15.5.4
+ '@next/swc-linux-x64-musl': 15.5.4
+ '@next/swc-win32-arm64-msvc': 15.5.4
+ '@next/swc-win32-x64-msvc': 15.5.4
+ '@playwright/test': 1.55.0
+ sharp: 0.34.3
+ transitivePeerDependencies:
+ - '@babel/core'
+ - babel-plugin-macros
+
next@16.0.1(@babel/core@7.26.10)(@playwright/test@1.55.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
dependencies:
'@next/env': 16.0.1
'@swc/helpers': 0.5.15
- caniuse-lite: 1.0.30001751
+ caniuse-lite: 1.0.30001704
postcss: 8.4.31
react: 19.2.0
react-dom: 19.2.0(react@19.2.0)
@@ -29741,12 +31096,12 @@ snapshots:
'@next/swc-win32-arm64-msvc': 16.0.1
'@next/swc-win32-x64-msvc': 16.0.1
'@playwright/test': 1.55.0
- sharp: 0.34.4
+ sharp: 0.34.5
transitivePeerDependencies:
- '@babel/core'
- babel-plugin-macros
- nextra-theme-docs@3.3.1(patch_hash=37qjvtnqoj5dxgzxofrrj6xcdq)(next@14.2.24(@playwright/test@1.55.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(nextra@3.3.1(@types/react@19.2.2)(acorn@8.15.0)(next@14.2.24(@playwright/test@1.55.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.2))(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ nextra-theme-docs@3.3.1(patch_hash=37qjvtnqoj5dxgzxofrrj6xcdq)(next@14.2.24(@playwright/test@1.55.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(nextra@3.3.1(@types/react@19.2.2)(acorn@8.14.1)(next@14.2.24(@playwright/test@1.55.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.2))(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
'@headlessui/react': 2.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
clsx: 2.1.1
@@ -29754,17 +31109,17 @@ snapshots:
flexsearch: 0.7.43
next: 14.2.24(@playwright/test@1.55.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
next-themes: 0.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- nextra: 3.3.1(@types/react@19.2.2)(acorn@8.15.0)(next@14.2.24(@playwright/test@1.55.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.2)
+ nextra: 3.3.1(@types/react@19.2.2)(acorn@8.14.1)(next@14.2.24(@playwright/test@1.55.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.2)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
scroll-into-view-if-needed: 3.1.0
zod: 3.24.2
- nextra@3.3.1(@types/react@19.2.2)(acorn@8.15.0)(next@14.2.24(@playwright/test@1.55.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.2):
+ nextra@3.3.1(@types/react@19.2.2)(acorn@8.14.1)(next@14.2.24(@playwright/test@1.55.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.2):
dependencies:
'@formatjs/intl-localematcher': 0.5.10
'@headlessui/react': 2.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@mdx-js/mdx': 3.1.0(acorn@8.15.0)
+ '@mdx-js/mdx': 3.1.0(acorn@8.14.1)
'@mdx-js/react': 3.1.0(@types/react@19.2.2)(react@18.3.1)
'@napi-rs/simple-git': 0.1.19
'@shikijs/twoslash': 1.29.2(typescript@5.8.2)
@@ -29940,8 +31295,6 @@ snapshots:
node-releases@2.0.19: {}
- node-releases@2.0.21: {}
-
node-stream-zip@1.15.0: {}
nopt@7.2.1:
@@ -30086,6 +31439,9 @@ snapshots:
nwsapi@2.2.10: {}
+ nwsapi@2.2.18:
+ optional: true
+
oauth@0.9.15: {}
ob1@0.72.4: {}
@@ -30104,11 +31460,6 @@ snapshots:
object-inspect@1.13.4: {}
- object-is@1.1.5:
- dependencies:
- call-bind: 1.0.8
- define-properties: 1.2.1
-
object-is@1.1.6:
dependencies:
call-bind: 1.0.8
@@ -30122,7 +31473,7 @@ snapshots:
object.assign@4.1.5:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
has-symbols: 1.0.3
object-keys: 1.1.1
@@ -30138,32 +31489,32 @@ snapshots:
object.entries@1.1.8:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
define-properties: 1.2.1
- es-object-atoms: 1.0.0
+ es-object-atoms: 1.1.1
object.fromentries@2.0.8:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.23.3
- es-object-atoms: 1.0.0
+ es-abstract: 1.23.9
+ es-object-atoms: 1.1.1
object.getownpropertydescriptors@2.1.8:
dependencies:
array.prototype.reduce: 1.0.7
call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.24.0
+ es-abstract: 1.23.3
es-object-atoms: 1.1.1
gopd: 1.2.0
safe-array-concat: 1.1.2
object.groupby@1.0.3:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.23.9
object.pick@1.3.0:
dependencies:
@@ -30171,9 +31522,9 @@ snapshots:
object.values@1.2.0:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
define-properties: 1.2.1
- es-object-atoms: 1.0.0
+ es-object-atoms: 1.1.1
object.values@1.2.1:
dependencies:
@@ -30468,14 +31819,14 @@ snapshots:
parse-json@5.2.0:
dependencies:
- '@babel/code-frame': 7.27.1
+ '@babel/code-frame': 7.26.2
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
parse-json@7.1.1:
dependencies:
- '@babel/code-frame': 7.27.1
+ '@babel/code-frame': 7.26.2
error-ex: 1.3.2
json-parse-even-better-errors: 3.0.2
lines-and-columns: 2.0.4
@@ -30483,7 +31834,7 @@ snapshots:
parse-json@8.1.0:
dependencies:
- '@babel/code-frame': 7.27.1
+ '@babel/code-frame': 7.26.2
index-to-position: 0.1.2
type-fest: 4.37.0
@@ -30524,14 +31875,13 @@ snapshots:
parse5@6.0.1: {}
- parse5@7.2.1:
+ parse5@7.1.2:
dependencies:
entities: 4.5.0
- parse5@8.0.0:
+ parse5@7.2.1:
dependencies:
- entities: 6.0.1
- optional: true
+ entities: 4.5.0
parseurl@1.3.3: {}
@@ -30610,7 +31960,7 @@ snapshots:
periscopic@3.1.0:
dependencies:
- '@types/estree': 1.0.8
+ '@types/estree': 1.0.6
estree-walker: 3.0.3
is-reference: 3.0.2
@@ -30725,7 +32075,7 @@ snapshots:
postcss-colormin@4.0.3:
dependencies:
- browserslist: 4.26.2
+ browserslist: 4.24.4
color: 3.2.1
has: 1.0.4
postcss: 7.0.39
@@ -30795,7 +32145,7 @@ snapshots:
postcss-merge-rules@4.0.3:
dependencies:
- browserslist: 4.26.2
+ browserslist: 4.24.4
caniuse-api: 3.0.0
cssnano-util-same-parent: 4.0.1
postcss: 7.0.39
@@ -30817,7 +32167,7 @@ snapshots:
postcss-minify-params@4.0.2:
dependencies:
alphanum-sort: 1.0.2
- browserslist: 4.26.2
+ browserslist: 4.24.4
cssnano-util-get-arguments: 4.0.0
postcss: 7.0.39
postcss-value-parser: 3.3.1
@@ -30943,7 +32293,7 @@ snapshots:
postcss-normalize-unicode@4.0.1:
dependencies:
- browserslist: 4.26.2
+ browserslist: 4.24.4
postcss: 7.0.39
postcss-value-parser: 3.3.1
@@ -30967,7 +32317,7 @@ snapshots:
postcss-reduce-initial@4.0.3:
dependencies:
- browserslist: 4.26.2
+ browserslist: 4.24.4
caniuse-api: 3.0.0
has: 1.0.4
postcss: 7.0.39
@@ -31052,6 +32402,17 @@ snapshots:
prelude-ls@1.2.1: {}
+ prettier-plugin-organize-imports@4.2.0(prettier@3.5.3)(typescript@5.8.2):
+ dependencies:
+ prettier: 3.5.3
+ typescript: 5.8.2
+
+ prettier-plugin-tailwindcss@0.6.14(prettier-plugin-organize-imports@4.2.0(prettier@3.5.3)(typescript@5.8.2))(prettier@3.5.3):
+ dependencies:
+ prettier: 3.5.3
+ optionalDependencies:
+ prettier-plugin-organize-imports: 4.2.0(prettier@3.5.3)(typescript@5.8.2)
+
prettier@2.8.8: {}
prettier@3.5.3: {}
@@ -31250,7 +32611,7 @@ snapshots:
minimist: 1.2.8
strip-json-comments: 2.0.1
- react-dev-utils@11.0.4(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)(webpack@4.43.0):
+ react-dev-utils@11.0.4(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)(webpack@4.43.0):
dependencies:
'@babel/code-frame': 7.10.4
address: 1.1.2
@@ -31261,7 +32622,7 @@ snapshots:
escape-string-regexp: 2.0.0
filesize: 6.1.0
find-up: 4.1.0
- fork-ts-checker-webpack-plugin: 4.1.6(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)(webpack@4.43.0)
+ fork-ts-checker-webpack-plugin: 4.1.6(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)(webpack@4.43.0)
global-modules: 2.0.0
globby: 11.0.1
gzip-size: 5.1.1
@@ -31299,10 +32660,10 @@ snapshots:
react-docgen@7.1.1:
dependencies:
'@babel/core': 7.26.10
- '@babel/traverse': 7.28.4
- '@babel/types': 7.28.4
+ '@babel/traverse': 7.26.10
+ '@babel/types': 7.26.10
'@types/babel__core': 7.20.5
- '@types/babel__traverse': 7.28.0
+ '@types/babel__traverse': 7.20.6
'@types/doctrine': 0.0.9
'@types/resolve': 1.20.6
doctrine: 3.0.0
@@ -31330,6 +32691,16 @@ snapshots:
react: 18.3.1
scheduler: 0.23.2
+ react-dom@19.0.0(react@19.0.0):
+ dependencies:
+ react: 19.0.0
+ scheduler: 0.25.0
+
+ react-dom@19.1.0(react@19.1.0):
+ dependencies:
+ react: 19.1.0
+ scheduler: 0.26.0
+
react-dom@19.2.0(react@19.2.0):
dependencies:
react: 19.2.0
@@ -31487,6 +32858,10 @@ snapshots:
dependencies:
loose-envify: 1.4.0
+ react@19.0.0: {}
+
+ react@19.1.0: {}
+
react@19.2.0: {}
read-cache@1.0.0:
@@ -31597,9 +32972,9 @@ snapshots:
estree-util-build-jsx: 3.0.1
vfile: 6.0.3
- recma-jsx@1.0.0(acorn@8.15.0):
+ recma-jsx@1.0.0(acorn@8.14.1):
dependencies:
- acorn-jsx: 5.3.2(acorn@8.15.0)
+ acorn-jsx: 5.3.2(acorn@8.14.1)
estree-util-to-js: 2.0.0
recma-parse: 1.0.0
recma-stringify: 1.0.0
@@ -31609,7 +32984,7 @@ snapshots:
recma-parse@1.0.0:
dependencies:
- '@types/estree': 1.0.8
+ '@types/estree': 1.0.6
esast-util-from-js: 2.0.1
unified: 11.0.5
vfile: 6.0.3
@@ -31634,23 +33009,13 @@ snapshots:
dependencies:
call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.24.0
+ es-abstract: 1.23.9
es-errors: 1.3.0
es-object-atoms: 1.1.1
get-intrinsic: 1.3.0
get-proto: 1.0.1
which-builtin-type: 1.2.1
- reflect.getprototypeof@1.0.6:
- dependencies:
- call-bind: 1.0.8
- define-properties: 1.2.1
- es-abstract: 1.24.0
- es-errors: 1.3.0
- get-intrinsic: 1.3.0
- globalthis: 1.0.4
- which-builtin-type: 1.1.3
-
regenerate-unicode-properties@10.2.0:
dependencies:
regenerate: 1.4.2
@@ -31687,7 +33052,7 @@ snapshots:
regexp.prototype.flags@1.5.2:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
es-errors: 1.3.0
set-function-name: 2.0.2
@@ -31980,7 +33345,7 @@ snapshots:
resolve@2.0.0-next.5:
dependencies:
- is-core-module: 2.15.1
+ is-core-module: 2.16.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
@@ -32100,6 +33465,9 @@ snapshots:
points-on-curve: 0.2.0
points-on-path: 0.2.1
+ rrweb-cssom@0.8.0:
+ optional: true
+
run-applescript@7.0.0:
optional: true
@@ -32119,7 +33487,7 @@ snapshots:
safe-array-concat@1.1.2:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
get-intrinsic: 1.2.4
has-symbols: 1.0.3
isarray: 2.0.5
@@ -32189,6 +33557,10 @@ snapshots:
dependencies:
loose-envify: 1.4.0
+ scheduler@0.25.0: {}
+
+ scheduler@0.26.0: {}
+
scheduler@0.27.0: {}
schema-utils@1.0.0:
@@ -32216,13 +33588,6 @@ snapshots:
ajv-formats: 2.1.1(ajv@8.17.1)
ajv-keywords: 5.1.0(ajv@8.17.1)
- schema-utils@4.3.2:
- dependencies:
- '@types/json-schema': 7.0.15
- ajv: 8.17.1
- ajv-formats: 2.1.1(ajv@8.17.1)
- ajv-keywords: 5.1.0(ajv@8.17.1)
-
scroll-into-view-if-needed@3.1.0:
dependencies:
compute-scroll-into-view: 3.1.0
@@ -32260,6 +33625,9 @@ snapshots:
semver@7.7.2: {}
+ semver@7.7.3:
+ optional: true
+
send@0.18.0:
dependencies:
debug: 2.6.9(supports-color@6.1.0)
@@ -32405,34 +33773,66 @@ snapshots:
'@img/sharp-win32-ia32': 0.33.5
'@img/sharp-win32-x64': 0.33.5
- sharp@0.34.4:
+ sharp@0.34.3:
+ dependencies:
+ color: 4.2.3
+ detect-libc: 2.0.4
+ semver: 7.7.2
+ optionalDependencies:
+ '@img/sharp-darwin-arm64': 0.34.3
+ '@img/sharp-darwin-x64': 0.34.3
+ '@img/sharp-libvips-darwin-arm64': 1.2.0
+ '@img/sharp-libvips-darwin-x64': 1.2.0
+ '@img/sharp-libvips-linux-arm': 1.2.0
+ '@img/sharp-libvips-linux-arm64': 1.2.0
+ '@img/sharp-libvips-linux-ppc64': 1.2.0
+ '@img/sharp-libvips-linux-s390x': 1.2.0
+ '@img/sharp-libvips-linux-x64': 1.2.0
+ '@img/sharp-libvips-linuxmusl-arm64': 1.2.0
+ '@img/sharp-libvips-linuxmusl-x64': 1.2.0
+ '@img/sharp-linux-arm': 0.34.3
+ '@img/sharp-linux-arm64': 0.34.3
+ '@img/sharp-linux-ppc64': 0.34.3
+ '@img/sharp-linux-s390x': 0.34.3
+ '@img/sharp-linux-x64': 0.34.3
+ '@img/sharp-linuxmusl-arm64': 0.34.3
+ '@img/sharp-linuxmusl-x64': 0.34.3
+ '@img/sharp-wasm32': 0.34.3
+ '@img/sharp-win32-arm64': 0.34.3
+ '@img/sharp-win32-ia32': 0.34.3
+ '@img/sharp-win32-x64': 0.34.3
+ optional: true
+
+ sharp@0.34.5:
dependencies:
'@img/colour': 1.0.0
detect-libc: 2.1.2
- semver: 7.7.2
+ semver: 7.7.3
optionalDependencies:
- '@img/sharp-darwin-arm64': 0.34.4
- '@img/sharp-darwin-x64': 0.34.4
- '@img/sharp-libvips-darwin-arm64': 1.2.3
- '@img/sharp-libvips-darwin-x64': 1.2.3
- '@img/sharp-libvips-linux-arm': 1.2.3
- '@img/sharp-libvips-linux-arm64': 1.2.3
- '@img/sharp-libvips-linux-ppc64': 1.2.3
- '@img/sharp-libvips-linux-s390x': 1.2.3
- '@img/sharp-libvips-linux-x64': 1.2.3
- '@img/sharp-libvips-linuxmusl-arm64': 1.2.3
- '@img/sharp-libvips-linuxmusl-x64': 1.2.3
- '@img/sharp-linux-arm': 0.34.4
- '@img/sharp-linux-arm64': 0.34.4
- '@img/sharp-linux-ppc64': 0.34.4
- '@img/sharp-linux-s390x': 0.34.4
- '@img/sharp-linux-x64': 0.34.4
- '@img/sharp-linuxmusl-arm64': 0.34.4
- '@img/sharp-linuxmusl-x64': 0.34.4
- '@img/sharp-wasm32': 0.34.4
- '@img/sharp-win32-arm64': 0.34.4
- '@img/sharp-win32-ia32': 0.34.4
- '@img/sharp-win32-x64': 0.34.4
+ '@img/sharp-darwin-arm64': 0.34.5
+ '@img/sharp-darwin-x64': 0.34.5
+ '@img/sharp-libvips-darwin-arm64': 1.2.4
+ '@img/sharp-libvips-darwin-x64': 1.2.4
+ '@img/sharp-libvips-linux-arm': 1.2.4
+ '@img/sharp-libvips-linux-arm64': 1.2.4
+ '@img/sharp-libvips-linux-ppc64': 1.2.4
+ '@img/sharp-libvips-linux-riscv64': 1.2.4
+ '@img/sharp-libvips-linux-s390x': 1.2.4
+ '@img/sharp-libvips-linux-x64': 1.2.4
+ '@img/sharp-libvips-linuxmusl-arm64': 1.2.4
+ '@img/sharp-libvips-linuxmusl-x64': 1.2.4
+ '@img/sharp-linux-arm': 0.34.5
+ '@img/sharp-linux-arm64': 0.34.5
+ '@img/sharp-linux-ppc64': 0.34.5
+ '@img/sharp-linux-riscv64': 0.34.5
+ '@img/sharp-linux-s390x': 0.34.5
+ '@img/sharp-linux-x64': 0.34.5
+ '@img/sharp-linuxmusl-arm64': 0.34.5
+ '@img/sharp-linuxmusl-x64': 0.34.5
+ '@img/sharp-wasm32': 0.34.5
+ '@img/sharp-win32-arm64': 0.34.5
+ '@img/sharp-win32-ia32': 0.34.5
+ '@img/sharp-win32-x64': 0.34.5
optional: true
shebang-command@1.2.0:
@@ -32482,13 +33882,6 @@ snapshots:
object-inspect: 1.13.4
side-channel-map: 1.0.1
- side-channel@1.0.6:
- dependencies:
- call-bind: 1.0.8
- es-errors: 1.3.0
- get-intrinsic: 1.2.4
- object-inspect: 1.13.4
-
side-channel@1.1.0:
dependencies:
es-errors: 1.3.0
@@ -32761,6 +34154,10 @@ snapshots:
std-env@3.8.1: {}
+ stop-iteration-iterator@1.0.0:
+ dependencies:
+ internal-slot: 1.1.0
+
stop-iteration-iterator@1.1.0:
dependencies:
es-errors: 1.3.0
@@ -32854,29 +34251,29 @@ snapshots:
string.prototype.includes@2.0.1:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.23.9
string.prototype.matchall@4.0.11:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.23.9
es-errors: 1.3.0
- es-object-atoms: 1.0.0
- get-intrinsic: 1.2.4
- gopd: 1.0.1
- has-symbols: 1.0.3
- internal-slot: 1.0.7
- regexp.prototype.flags: 1.5.2
+ es-object-atoms: 1.1.1
+ get-intrinsic: 1.3.0
+ gopd: 1.2.0
+ has-symbols: 1.1.0
+ internal-slot: 1.1.0
+ regexp.prototype.flags: 1.5.4
set-function-name: 2.0.2
- side-channel: 1.0.6
+ side-channel: 1.1.0
string.prototype.repeat@1.0.0:
dependencies:
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.23.9
string.prototype.trim@1.2.10:
dependencies:
@@ -32884,16 +34281,16 @@ snapshots:
call-bound: 1.0.4
define-data-property: 1.1.4
define-properties: 1.2.1
- es-abstract: 1.24.0
+ es-abstract: 1.23.9
es-object-atoms: 1.1.1
has-property-descriptors: 1.0.2
string.prototype.trim@1.2.9:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.24.0
- es-object-atoms: 1.1.1
+ es-abstract: 1.23.3
+ es-object-atoms: 1.0.0
string.prototype.trimend@1.0.8:
dependencies:
@@ -33015,9 +34412,19 @@ snapshots:
optionalDependencies:
'@babel/core': 7.26.10
+ styled-jsx@5.1.6(react@19.0.0):
+ dependencies:
+ client-only: 0.0.1
+ react: 19.0.0
+
+ styled-jsx@5.1.6(react@19.1.0):
+ dependencies:
+ client-only: 0.0.1
+ react: 19.1.0
+
stylehacks@4.0.3:
dependencies:
- browserslist: 4.26.2
+ browserslist: 4.24.4
postcss: 7.0.39
postcss-selector-parser: 3.1.2
@@ -33077,7 +34484,7 @@ snapshots:
csso: 4.2.0
js-yaml: 3.14.1
mkdirp: 0.5.6
- object.values: 1.2.1
+ object.values: 1.2.0
sax: 1.2.4
stable: 0.1.8
unquote: 1.1.1
@@ -33095,6 +34502,8 @@ snapshots:
tabbable@6.2.0: {}
+ tailwind-merge@3.3.1: {}
+
tailwindcss@3.4.17:
dependencies:
'@alloc/quick-lru': 5.2.0
@@ -33122,14 +34531,12 @@ snapshots:
transitivePeerDependencies:
- ts-node
- tailwindcss@4.0.13: {}
+ tailwindcss@4.1.12: {}
tapable@1.1.3: {}
tapable@2.2.1: {}
- tapable@2.2.3: {}
-
tar-fs@2.1.1:
dependencies:
chownr: 1.1.4
@@ -33154,6 +34561,15 @@ snapshots:
mkdirp: 1.0.4
yallist: 4.0.0
+ 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
+
temp-dir@1.0.0: {}
temp-dir@2.0.0: {}
@@ -33216,34 +34632,22 @@ snapshots:
transitivePeerDependencies:
- bluebird
- terser-webpack-plugin@5.3.14(@swc/core@1.13.19)(webpack@5.102.0(@swc/core@1.13.19)):
- dependencies:
- '@jridgewell/trace-mapping': 0.3.31
- jest-worker: 27.5.1
- schema-utils: 4.3.2
- serialize-javascript: 6.0.2
- terser: 5.39.0
- webpack: 5.102.0(@swc/core@1.13.19)
- optionalDependencies:
- '@swc/core': 1.13.19
-
- terser-webpack-plugin@5.3.14(esbuild@0.25.1)(webpack@5.102.0(esbuild@0.25.1)):
+ terser-webpack-plugin@5.3.14(@swc/core@1.15.1)(webpack@5.98.0(@swc/core@1.15.1)):
dependencies:
- '@jridgewell/trace-mapping': 0.3.31
+ '@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
- schema-utils: 4.3.2
+ schema-utils: 4.3.0
serialize-javascript: 6.0.2
terser: 5.39.0
- webpack: 5.102.0(esbuild@0.25.1)
+ webpack: 5.98.0(@swc/core@1.15.1)
optionalDependencies:
- esbuild: 0.25.1
- optional: true
+ '@swc/core': 1.15.1
terser-webpack-plugin@5.3.14(esbuild@0.25.1)(webpack@5.98.0(esbuild@0.25.1)):
dependencies:
- '@jridgewell/trace-mapping': 0.3.31
+ '@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
- schema-utils: 4.3.2
+ schema-utils: 4.3.0
serialize-javascript: 6.0.2
terser: 5.39.0
webpack: 5.98.0(esbuild@0.25.1)
@@ -33252,7 +34656,7 @@ snapshots:
terser@4.8.1:
dependencies:
- acorn: 8.15.0
+ acorn: 8.14.1
commander: 2.20.3
source-map: 0.6.1
source-map-support: 0.5.21
@@ -33260,14 +34664,14 @@ snapshots:
terser@5.36.0:
dependencies:
'@jridgewell/source-map': 0.3.6
- acorn: 8.14.1
+ acorn: 8.14.0
commander: 2.20.3
source-map-support: 0.5.21
terser@5.39.0:
dependencies:
'@jridgewell/source-map': 0.3.6
- acorn: 8.15.0
+ acorn: 8.14.1
commander: 2.20.3
source-map-support: 0.5.21
@@ -33336,12 +34740,12 @@ snapshots:
chalk: 5.4.1
clipboardy: 4.0.0
- tldts-core@7.0.17:
+ tldts-core@6.1.84:
optional: true
- tldts@7.0.17:
+ tldts@6.1.84:
dependencies:
- tldts-core: 7.0.17
+ tldts-core: 6.1.84
optional: true
tmp@0.0.33:
@@ -33387,9 +34791,9 @@ snapshots:
universalify: 0.2.0
url-parse: 1.5.10
- tough-cookie@6.0.0:
+ tough-cookie@5.1.2:
dependencies:
- tldts: 7.0.17
+ tldts: 6.1.84
optional: true
tr46@0.0.3: {}
@@ -33398,7 +34802,7 @@ snapshots:
dependencies:
punycode: 2.3.1
- tr46@6.0.0:
+ tr46@5.0.0:
dependencies:
punycode: 2.3.1
optional: true
@@ -33407,7 +34811,7 @@ snapshots:
dependencies:
gopd: 1.2.0
typedarray.prototype.slice: 1.0.5
- which-typed-array: 1.1.19
+ which-typed-array: 1.1.18
tree-dump@1.0.2(tslib@2.8.1):
dependencies:
@@ -33426,6 +34830,10 @@ snapshots:
dependencies:
typescript: 5.8.2
+ ts-api-utils@2.0.1(typescript@5.8.2):
+ dependencies:
+ typescript: 5.8.2
+
ts-api-utils@2.1.0(typescript@5.8.2):
dependencies:
typescript: 5.8.2
@@ -33503,6 +34911,8 @@ snapshots:
turbo-windows-64: 2.4.4
turbo-windows-arm64: 2.4.4
+ tw-animate-css@1.4.0: {}
+
twoslash-protocol@0.2.12: {}
twoslash@0.2.12(typescript@5.8.2):
@@ -33546,9 +34956,9 @@ snapshots:
typed-array-buffer@1.0.2:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
es-errors: 1.3.0
- is-typed-array: 1.1.15
+ is-typed-array: 1.1.13
typed-array-buffer@1.0.3:
dependencies:
@@ -33558,16 +34968,16 @@ snapshots:
typed-array-byte-length@1.0.1:
dependencies:
- call-bind: 1.0.8
- for-each: 0.3.5
- gopd: 1.2.0
- has-proto: 1.2.0
- is-typed-array: 1.1.15
+ call-bind: 1.0.7
+ for-each: 0.3.3
+ gopd: 1.0.1
+ has-proto: 1.0.3
+ is-typed-array: 1.1.13
typed-array-byte-length@1.0.3:
dependencies:
call-bind: 1.0.8
- for-each: 0.3.5
+ for-each: 0.3.3
gopd: 1.2.0
has-proto: 1.2.0
is-typed-array: 1.1.15
@@ -33575,17 +34985,17 @@ snapshots:
typed-array-byte-offset@1.0.2:
dependencies:
available-typed-arrays: 1.0.7
- call-bind: 1.0.8
- for-each: 0.3.5
- gopd: 1.2.0
- has-proto: 1.2.0
- is-typed-array: 1.1.15
+ call-bind: 1.0.7
+ for-each: 0.3.3
+ gopd: 1.0.1
+ has-proto: 1.0.3
+ is-typed-array: 1.1.13
typed-array-byte-offset@1.0.4:
dependencies:
available-typed-arrays: 1.0.7
call-bind: 1.0.8
- for-each: 0.3.5
+ for-each: 0.3.3
gopd: 1.2.0
has-proto: 1.2.0
is-typed-array: 1.1.15
@@ -33593,27 +35003,27 @@ snapshots:
typed-array-length@1.0.6:
dependencies:
- call-bind: 1.0.8
- for-each: 0.3.5
- gopd: 1.2.0
- has-proto: 1.2.0
- is-typed-array: 1.1.15
+ call-bind: 1.0.7
+ for-each: 0.3.3
+ gopd: 1.0.1
+ has-proto: 1.0.3
+ is-typed-array: 1.1.13
possible-typed-array-names: 1.0.0
typed-array-length@1.0.7:
dependencies:
call-bind: 1.0.8
- for-each: 0.3.5
+ for-each: 0.3.3
gopd: 1.2.0
is-typed-array: 1.1.15
possible-typed-array-names: 1.0.0
- reflect.getprototypeof: 1.0.6
+ reflect.getprototypeof: 1.0.10
typedarray.prototype.slice@1.0.5:
dependencies:
call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.24.0
+ es-abstract: 1.23.9
es-errors: 1.3.0
get-proto: 1.0.1
math-intrinsics: 1.1.0
@@ -33622,33 +35032,33 @@ snapshots:
typedarray@0.0.6: {}
- typescript-eslint@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2):
+ typescript-eslint@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2):
dependencies:
- '@typescript-eslint/eslint-plugin': 8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)
- '@typescript-eslint/parser': 8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)
- '@typescript-eslint/typescript-estree': 8.46.2(typescript@5.8.2)
- '@typescript-eslint/utils': 8.46.2(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)
- eslint: 9.38.0(jiti@2.4.2)
+ '@typescript-eslint/eslint-plugin': 8.46.3(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)
+ '@typescript-eslint/parser': 8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)
+ '@typescript-eslint/typescript-estree': 8.46.3(typescript@5.8.2)
+ '@typescript-eslint/utils': 8.46.3(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)
+ eslint: 9.39.1(jiti@2.5.1)
typescript: 5.8.2
transitivePeerDependencies:
- supports-color
- typescript-eslint@8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2):
+ typescript-eslint@8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2):
dependencies:
- '@typescript-eslint/eslint-plugin': 8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2))(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2)
- '@typescript-eslint/parser': 8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2)
- '@typescript-eslint/utils': 8.9.0(eslint@9.11.1(jiti@2.4.2))(typescript@5.8.2)
+ '@typescript-eslint/eslint-plugin': 8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)
+ '@typescript-eslint/parser': 8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)
+ '@typescript-eslint/utils': 8.9.0(eslint@9.11.1(jiti@2.5.1))(typescript@5.8.2)
optionalDependencies:
typescript: 5.8.2
transitivePeerDependencies:
- eslint
- supports-color
- typescript-eslint@8.9.0(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2):
+ typescript-eslint@8.9.0(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2):
dependencies:
- '@typescript-eslint/eslint-plugin': 8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)
- '@typescript-eslint/parser': 8.9.0(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)
- '@typescript-eslint/utils': 8.9.0(eslint@9.38.0(jiti@2.4.2))(typescript@5.8.2)
+ '@typescript-eslint/eslint-plugin': 8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2))(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)
+ '@typescript-eslint/parser': 8.9.0(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)
+ '@typescript-eslint/utils': 8.9.0(eslint@9.39.1(jiti@2.5.1))(typescript@5.8.2)
optionalDependencies:
typescript: 5.8.2
transitivePeerDependencies:
@@ -33675,10 +35085,10 @@ snapshots:
unbox-primitive@1.0.2:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.2
has-bigints: 1.0.2
- has-symbols: 1.1.0
- which-boxed-primitive: 1.1.1
+ has-symbols: 1.0.3
+ which-boxed-primitive: 1.0.2
unbox-primitive@1.1.0:
dependencies:
@@ -33891,12 +35301,6 @@ snapshots:
escalade: 3.2.0
picocolors: 1.1.1
- update-browserslist-db@1.1.3(browserslist@4.26.2):
- dependencies:
- browserslist: 4.26.2
- escalade: 3.2.0
- picocolors: 1.1.1
-
update-check@1.5.3:
dependencies:
registry-auth-token: 3.3.2
@@ -33980,7 +35384,7 @@ snapshots:
util.promisify@1.0.1:
dependencies:
define-properties: 1.2.1
- es-abstract: 1.24.0
+ es-abstract: 1.23.3
has-symbols: 1.1.0
object.getownpropertydescriptors: 2.1.8
@@ -34023,7 +35427,7 @@ snapshots:
v8-to-istanbul@9.2.0:
dependencies:
- '@jridgewell/trace-mapping': 0.3.31
+ '@jridgewell/trace-mapping': 0.3.25
'@types/istanbul-lib-coverage': 2.0.6
convert-source-map: 2.0.0
@@ -34075,7 +35479,7 @@ snapshots:
'@types/unist': 3.0.3
vfile-message: 4.0.2
- vite-node@0.28.5(@types/node@22.13.10)(lightningcss@1.29.2)(terser@5.39.0):
+ vite-node@0.28.5(@types/node@22.13.10)(lightningcss@1.30.1)(terser@5.39.0):
dependencies:
cac: 6.7.14
debug: 4.4.0(supports-color@6.1.0)
@@ -34084,7 +35488,7 @@ snapshots:
picocolors: 1.1.1
source-map: 0.6.1
source-map-support: 0.5.21
- vite: 4.5.9(@types/node@22.13.10)(lightningcss@1.29.2)(terser@5.39.0)
+ vite: 4.5.9(@types/node@22.13.10)(lightningcss@1.30.1)(terser@5.39.0)
transitivePeerDependencies:
- '@types/node'
- less
@@ -34095,13 +35499,13 @@ snapshots:
- supports-color
- terser
- vite-node@3.0.0-beta.2(@types/node@22.13.10)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0):
+ vite-node@3.0.0-beta.2(@types/node@22.13.10)(jiti@2.5.1)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0):
dependencies:
cac: 6.7.14
debug: 4.4.0(supports-color@6.1.0)
es-module-lexer: 1.6.0
pathe: 1.1.2
- vite: 6.2.1(@types/node@22.13.10)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0)
+ vite: 6.2.1(@types/node@22.13.10)(jiti@2.5.1)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0)
transitivePeerDependencies:
- '@types/node'
- jiti
@@ -34116,13 +35520,13 @@ snapshots:
- tsx
- yaml
- vite-node@3.0.8(@types/node@20.17.24)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0):
+ vite-node@3.0.8(@types/node@20.17.24)(jiti@2.5.1)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0):
dependencies:
cac: 6.7.14
debug: 4.4.0(supports-color@6.1.0)
es-module-lexer: 1.6.0
pathe: 2.0.3
- vite: 6.2.1(@types/node@20.17.24)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0)
+ vite: 6.2.1(@types/node@20.17.24)(jiti@2.5.1)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0)
transitivePeerDependencies:
- '@types/node'
- jiti
@@ -34137,13 +35541,13 @@ snapshots:
- tsx
- yaml
- vite-node@3.0.8(@types/node@22.13.10)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0):
+ vite-node@3.0.8(@types/node@22.13.10)(jiti@2.5.1)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0):
dependencies:
cac: 6.7.14
debug: 4.4.0(supports-color@6.1.0)
es-module-lexer: 1.6.0
pathe: 2.0.3
- vite: 6.2.1(@types/node@22.13.10)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0)
+ vite: 6.2.1(@types/node@22.13.10)(jiti@2.5.1)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0)
transitivePeerDependencies:
- '@types/node'
- jiti
@@ -34158,7 +35562,7 @@ snapshots:
- tsx
- yaml
- vite@4.5.9(@types/node@22.13.10)(lightningcss@1.29.2)(terser@5.39.0):
+ vite@4.5.9(@types/node@22.13.10)(lightningcss@1.30.1)(terser@5.39.0):
dependencies:
esbuild: 0.18.20
postcss: 8.5.3
@@ -34166,10 +35570,10 @@ snapshots:
optionalDependencies:
'@types/node': 22.13.10
fsevents: 2.3.3
- lightningcss: 1.29.2
+ lightningcss: 1.30.1
terser: 5.39.0
- vite@6.2.1(@types/node@20.17.24)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0):
+ vite@6.2.1(@types/node@20.17.24)(jiti@2.5.1)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0):
dependencies:
esbuild: 0.25.1
postcss: 8.5.3
@@ -34177,12 +35581,12 @@ snapshots:
optionalDependencies:
'@types/node': 20.17.24
fsevents: 2.3.3
- jiti: 2.4.2
- lightningcss: 1.29.2
+ jiti: 2.5.1
+ lightningcss: 1.30.1
terser: 5.39.0
yaml: 2.7.0
- vite@6.2.1(@types/node@22.13.10)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0):
+ vite@6.2.1(@types/node@22.13.10)(jiti@2.5.1)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0):
dependencies:
esbuild: 0.25.1
postcss: 8.5.3
@@ -34190,15 +35594,15 @@ snapshots:
optionalDependencies:
'@types/node': 22.13.10
fsevents: 2.3.3
- jiti: 2.4.2
- lightningcss: 1.29.2
+ jiti: 2.5.1
+ lightningcss: 1.30.1
terser: 5.39.0
yaml: 2.7.0
- vitest@3.0.8(@edge-runtime/vm@5.0.0)(@types/debug@4.1.12)(@types/node@20.17.24)(jiti@2.4.2)(jsdom@27.1.0)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0):
+ vitest@3.0.8(@edge-runtime/vm@5.0.0)(@types/debug@4.1.12)(@types/node@20.17.24)(jiti@2.5.1)(jsdom@26.0.0)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0):
dependencies:
'@vitest/expect': 3.0.8
- '@vitest/mocker': 3.0.8(vite@6.2.1(@types/node@20.17.24)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0))
+ '@vitest/mocker': 3.0.8(vite@6.2.1(@types/node@20.17.24)(jiti@2.5.1)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0))
'@vitest/pretty-format': 3.0.8
'@vitest/runner': 3.0.8
'@vitest/snapshot': 3.0.8
@@ -34214,14 +35618,14 @@ snapshots:
tinyexec: 0.3.2
tinypool: 1.0.2
tinyrainbow: 2.0.0
- vite: 6.2.1(@types/node@20.17.24)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0)
- vite-node: 3.0.8(@types/node@20.17.24)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0)
+ vite: 6.2.1(@types/node@20.17.24)(jiti@2.5.1)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0)
+ vite-node: 3.0.8(@types/node@20.17.24)(jiti@2.5.1)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0)
why-is-node-running: 2.3.0
optionalDependencies:
'@edge-runtime/vm': 5.0.0
'@types/debug': 4.1.12
'@types/node': 20.17.24
- jsdom: 27.1.0
+ jsdom: 26.0.0
transitivePeerDependencies:
- jiti
- less
@@ -34236,10 +35640,10 @@ snapshots:
- tsx
- yaml
- vitest@3.0.8(@edge-runtime/vm@5.0.0)(@types/debug@4.1.12)(@types/node@22.13.10)(jiti@2.4.2)(jsdom@27.1.0)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0):
+ vitest@3.0.8(@edge-runtime/vm@5.0.0)(@types/debug@4.1.12)(@types/node@22.13.10)(jiti@2.5.1)(jsdom@26.0.0)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0):
dependencies:
'@vitest/expect': 3.0.8
- '@vitest/mocker': 3.0.8(vite@6.2.1(@types/node@22.13.10)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0))
+ '@vitest/mocker': 3.0.8(vite@6.2.1(@types/node@22.13.10)(jiti@2.5.1)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0))
'@vitest/pretty-format': 3.0.8
'@vitest/runner': 3.0.8
'@vitest/snapshot': 3.0.8
@@ -34255,14 +35659,14 @@ snapshots:
tinyexec: 0.3.2
tinypool: 1.0.2
tinyrainbow: 2.0.0
- vite: 6.2.1(@types/node@22.13.10)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0)
- vite-node: 3.0.8(@types/node@22.13.10)(jiti@2.4.2)(lightningcss@1.29.2)(terser@5.39.0)(yaml@2.7.0)
+ vite: 6.2.1(@types/node@22.13.10)(jiti@2.5.1)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0)
+ vite-node: 3.0.8(@types/node@22.13.10)(jiti@2.5.1)(lightningcss@1.30.1)(terser@5.39.0)(yaml@2.7.0)
why-is-node-running: 2.3.0
optionalDependencies:
'@edge-runtime/vm': 5.0.0
'@types/debug': 4.1.12
'@types/node': 22.13.10
- jsdom: 27.1.0
+ jsdom: 26.0.0
transitivePeerDependencies:
- jiti
- less
@@ -34335,11 +35739,6 @@ snapshots:
glob-to-regexp: 0.4.1
graceful-fs: 4.2.11
- watchpack@2.4.4:
- dependencies:
- glob-to-regexp: 0.4.1
- graceful-fs: 4.2.11
-
wbuf@1.7.3:
dependencies:
minimalistic-assert: 1.0.1
@@ -34362,13 +35761,10 @@ snapshots:
webidl-conversions@7.0.0: {}
- webidl-conversions@8.0.0:
- optional: true
-
webpack-bundle-analyzer@4.10.1:
dependencies:
'@discoveryjs/json-ext': 0.5.7
- acorn: 8.15.0
+ acorn: 8.14.1
acorn-walk: 8.3.4
commander: 7.2.0
debounce: 1.2.1
@@ -34410,7 +35806,7 @@ snapshots:
mime-types: 2.1.35
on-finished: 2.4.1
range-parser: 1.2.1
- schema-utils: 4.3.2
+ schema-utils: 4.3.0
optionalDependencies:
webpack: 5.98.0(esbuild@0.25.1)
optional: true
@@ -34477,13 +35873,13 @@ snapshots:
launch-editor: 2.10.0
open: 10.1.0
p-retry: 6.2.1
- schema-utils: 4.3.2
+ schema-utils: 4.3.0
selfsigned: 2.4.1
serve-index: 1.9.1(supports-color@6.1.0)
sockjs: 0.3.24
spdy: 4.0.2(supports-color@6.1.0)
webpack-dev-middleware: 7.4.2(webpack@5.98.0(esbuild@0.25.1))
- ws: 8.18.3
+ ws: 8.18.1
optionalDependencies:
webpack: 5.98.0(esbuild@0.25.1)
transitivePeerDependencies:
@@ -34519,8 +35915,6 @@ snapshots:
webpack-sources@3.2.3: {}
- webpack-sources@3.3.3: {}
-
webpack-virtual-modules@0.6.2: {}
webpack@4.43.0:
@@ -34551,49 +35945,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
- webpack@5.102.0(@swc/core@1.13.19):
- dependencies:
- '@types/eslint-scope': 3.7.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.15.0
- acorn-import-phases: 1.0.4(acorn@8.15.0)
- browserslist: 4.26.2
- chrome-trace-event: 1.0.4
- enhanced-resolve: 5.18.1
- es-module-lexer: 1.6.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
- mime-types: 2.1.35
- neo-async: 2.6.2
- schema-utils: 4.3.2
- tapable: 2.2.3
- terser-webpack-plugin: 5.3.14(@swc/core@1.13.19)(webpack@5.102.0(@swc/core@1.13.19))
- watchpack: 2.4.4
- webpack-sources: 3.3.3
- transitivePeerDependencies:
- - '@swc/core'
- - esbuild
- - uglify-js
-
- webpack@5.102.0(esbuild@0.25.1):
+ webpack@5.98.0(@swc/core@1.15.1):
dependencies:
'@types/eslint-scope': 3.7.7
- '@types/estree': 1.0.8
- '@types/json-schema': 7.0.15
+ '@types/estree': 1.0.6
'@webassemblyjs/ast': 1.14.1
'@webassemblyjs/wasm-edit': 1.14.1
'@webassemblyjs/wasm-parser': 1.14.1
- acorn: 8.15.0
- acorn-import-phases: 1.0.4(acorn@8.15.0)
- browserslist: 4.26.2
+ acorn: 8.14.1
+ browserslist: 4.24.4
chrome-trace-event: 1.0.4
enhanced-resolve: 5.18.1
es-module-lexer: 1.6.0
@@ -34605,25 +35965,24 @@ snapshots:
loader-runner: 4.3.0
mime-types: 2.1.35
neo-async: 2.6.2
- schema-utils: 4.3.2
- tapable: 2.2.3
- terser-webpack-plugin: 5.3.14(esbuild@0.25.1)(webpack@5.102.0(esbuild@0.25.1))
- watchpack: 2.4.4
- webpack-sources: 3.3.3
+ schema-utils: 4.3.0
+ tapable: 2.2.1
+ terser-webpack-plugin: 5.3.14(@swc/core@1.15.1)(webpack@5.98.0(@swc/core@1.15.1))
+ watchpack: 2.4.2
+ webpack-sources: 3.2.3
transitivePeerDependencies:
- '@swc/core'
- esbuild
- uglify-js
- optional: true
webpack@5.98.0(esbuild@0.25.1):
dependencies:
'@types/eslint-scope': 3.7.7
- '@types/estree': 1.0.8
+ '@types/estree': 1.0.6
'@webassemblyjs/ast': 1.14.1
'@webassemblyjs/wasm-edit': 1.14.1
'@webassemblyjs/wasm-parser': 1.14.1
- acorn: 8.15.0
+ acorn: 8.14.1
browserslist: 4.24.4
chrome-trace-event: 1.0.4
enhanced-resolve: 5.18.1
@@ -34637,7 +35996,7 @@ snapshots:
mime-types: 2.1.35
neo-async: 2.6.2
schema-utils: 4.3.0
- tapable: 2.2.3
+ tapable: 2.2.1
terser-webpack-plugin: 5.3.14(esbuild@0.25.1)(webpack@5.98.0(esbuild@0.25.1))
watchpack: 2.4.2
webpack-sources: 3.2.3
@@ -34679,10 +36038,10 @@ snapshots:
tr46: 3.0.0
webidl-conversions: 7.0.0
- whatwg-url@15.1.0:
+ whatwg-url@14.1.1:
dependencies:
- tr46: 6.0.0
- webidl-conversions: 8.0.0
+ tr46: 5.0.0
+ webidl-conversions: 7.0.0
optional: true
whatwg-url@5.0.0:
@@ -34695,8 +36054,8 @@ snapshots:
is-bigint: 1.0.4
is-boolean-object: 1.1.2
is-number-object: 1.0.7
- is-string: 1.1.1
- is-symbol: 1.1.1
+ is-string: 1.0.7
+ is-symbol: 1.0.4
which-boxed-primitive@1.1.1:
dependencies:
@@ -34706,43 +36065,21 @@ snapshots:
is-string: 1.1.1
is-symbol: 1.1.1
- which-builtin-type@1.1.3:
- dependencies:
- function.prototype.name: 1.1.8
- has-tostringtag: 1.0.2
- is-async-function: 2.0.0
- is-date-object: 1.1.0
- is-finalizationregistry: 1.1.1
- is-generator-function: 1.1.0
- is-regex: 1.2.1
- is-weakref: 1.1.1
- isarray: 2.0.5
- which-boxed-primitive: 1.1.1
- which-collection: 1.0.2
- which-typed-array: 1.1.19
-
which-builtin-type@1.2.1:
dependencies:
call-bound: 1.0.4
- function.prototype.name: 1.1.6
+ function.prototype.name: 1.1.8
has-tostringtag: 1.0.2
is-async-function: 2.0.0
is-date-object: 1.1.0
is-finalizationregistry: 1.1.1
is-generator-function: 1.1.0
is-regex: 1.2.1
- is-weakref: 1.0.2
+ is-weakref: 1.1.1
isarray: 2.0.5
which-boxed-primitive: 1.1.1
which-collection: 1.0.2
- which-typed-array: 1.1.19
-
- which-collection@1.0.1:
- dependencies:
- is-map: 2.0.2
- is-set: 2.0.3
- is-weakmap: 2.0.1
- is-weakset: 2.0.2
+ which-typed-array: 1.1.18
which-collection@1.0.2:
dependencies:
@@ -34756,7 +36093,7 @@ snapshots:
which-typed-array@1.1.15:
dependencies:
available-typed-arrays: 1.0.7
- call-bind: 1.0.8
+ call-bind: 1.0.7
for-each: 0.3.3
gopd: 1.2.0
has-tostringtag: 1.0.2
@@ -34884,10 +36221,9 @@ snapshots:
ws@7.5.10: {}
- ws@8.18.1: {}
+ ws@8.17.1: {}
- ws@8.18.3:
- optional: true
+ ws@8.18.1: {}
xcode@3.0.1:
dependencies:
@@ -34924,6 +36260,8 @@ snapshots:
yallist@4.0.0: {}
+ yallist@5.0.0: {}
+
yaml@1.10.2: {}
yaml@2.4.5: {}
diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml
index 10da0f192..fd2a127f1 100644
--- a/pnpm-workspace.yaml
+++ b/pnpm-workspace.yaml
@@ -3,3 +3,4 @@ packages:
- 'examples/*'
- 'docs'
- 'tools'
+ - 'playground'
\ No newline at end of file