diff --git a/.gitignore b/.gitignore
index 4d9ac051..dc11a8f5 100644
--- a/.gitignore
+++ b/.gitignore
@@ -12,6 +12,7 @@
# next.js
**/.next/
**/out/
+**/.vinext/
# production
**/build
diff --git a/apps/admin/VINEXT_MIGRATION_REPORT.md b/apps/admin/VINEXT_MIGRATION_REPORT.md
new file mode 100644
index 00000000..45f484a1
--- /dev/null
+++ b/apps/admin/VINEXT_MIGRATION_REPORT.md
@@ -0,0 +1,56 @@
+# Vinext Migration Report
+
+## 변경 요약
+
+- `apps/admin`의 TanStack Start 라우팅 구조를 Vinext 호환 App Router 구조로 변경했다.
+- `src/routes` 기반 라우트를 `src/app`으로 이동하고, 라우트 파일에 있던 UI는 feature 컴포넌트로 분리했다.
+- TanStack Router navigation 의존을 일반 anchor 및 브라우저 이동 흐름으로 교체했다.
+- Vinext `dev`, `build`, `start` script를 적용하고 Vite 설정을 Vinext 플러그인 중심으로 정리했다.
+- TanStack Start, TanStack Router, route tree, Nitro 기반 진입점을 제거했다.
+
+## 라우트 매핑
+
+| Before | After |
+| --- | --- |
+| `src/routes/__root.tsx` | `src/app/layout.tsx`, `src/app/providers.tsx` |
+| `src/routes/index.tsx` | `src/app/page.tsx` |
+| `src/routes/login.tsx` | `src/app/login/page.tsx` |
+| `src/routes/auth/login.tsx` | `src/app/auth/login/page.tsx`, `src/components/features/auth/AdminLoginPage.tsx` |
+| `src/routes/scores/index.tsx` | `src/app/scores/page.tsx`, `src/components/features/scores/ScoresPageContent.tsx` |
+| `src/routes/bruno/index.tsx` | `src/app/bruno/page.tsx`, `src/components/features/bruno/BrunoApiPageContent.tsx` |
+| `src/routes/chat-socket/index.tsx` | `src/app/chat-socket/page.tsx`, `src/components/features/chat-socket/ChatSocketPageContent.tsx` |
+
+## 유지한 것
+
+- 기존 UI 컴포넌트와 admin 페이지 화면 구성
+- `components/features`, `components/layout`, `lib`, `types` 중심의 기존 코드 배치
+- TanStack Query 기반 서버 상태 관리
+- localStorage 기반 admin session 저장소
+- login, scores, bruno, chat-socket 사용자 플로우
+
+## 제거한 것
+
+- `RouterProvider`
+- `src/routeTree.gen.ts`
+- `src/router.tsx`
+- `src/routes/**`
+- `createFileRoute`, `createRootRoute`
+- TanStack Start Vite plugin, Nitro entry
+- `@tanstack/react-router`, `@tanstack/react-start`, TanStack Router Devtools 의존성
+
+## 주의할 점
+
+- Vinext는 Next.js 호환 API를 Vite 기반으로 재구현한 도구이므로, Next.js와 완전히 동일한 내부 동작을 전제하지 않는다.
+- Vinext build 결과에서 route classification이 `Unknown`으로 표시된다. 현재 Vinext의 정적 분석 한계 안내이며 빌드는 성공한다.
+- 현재 로컬 Node가 `v23.10.0`이라 repo 요구사항 `22.x` 경고가 출력된다.
+- `@tailwindcss/vite`는 현재 Vite 8 peer range를 공식 포함하지 않아 peer warning이 출력된다. 빌드와 라우트 QA는 통과했다.
+- `/`, `/auth/login`, `/scores` 등 API 클라이언트를 import하는 라우트는 `VITE_API_SERVER_URL`이 없으면 기존 로직에 의해 500이 난다. QA는 `.env.example` 기준 예시 값을 주입해 진행했다.
+
+## 검증 결과
+
+- dev: `VITE_API_SERVER_URL=https://api.example.com VITE_S3_BASE_URL=https://s3.example.com pnpm --filter @solid-connect/admin dev` 성공
+- build: `pnpm --filter @solid-connect/admin build` 성공
+- lint: `pnpm --filter @solid-connect/admin lint:check` 성공
+- typecheck: `pnpm --filter @solid-connect/admin typecheck` 성공
+- compatibility: `pnpm --filter @solid-connect/admin exec vinext check` 100% compatible
+- 주요 페이지 수동 QA: `/`, `/login`, `/auth/login`, `/scores`, `/bruno`, `/chat-socket` 모두 HTTP 200 확인
diff --git a/apps/admin/package.json b/apps/admin/package.json
index 3e44553d..def11e5b 100644
--- a/apps/admin/package.json
+++ b/apps/admin/package.json
@@ -3,9 +3,9 @@
"private": true,
"type": "module",
"scripts": {
- "dev": "vite dev --port 4000",
- "build": "vite build",
- "preview": "vite preview",
+ "dev": "vinext dev -p 4000",
+ "build": "vinext build",
+ "start": "vinext start -p 4000",
"test": "vitest run",
"format": "biome format --write .",
"format:check": "biome format .",
@@ -22,40 +22,34 @@
"@radix-ui/react-tabs": "^1.1.13",
"@stomp/stompjs": "^7.1.1",
"@tailwindcss/vite": "^4.0.6",
- "@tanstack/react-devtools": "^0.7.0",
"@tanstack/react-query": "^5.84.1",
- "@tanstack/react-router": "^1.132.0",
- "@tanstack/react-router-devtools": "^1.132.0",
- "@tanstack/react-router-ssr-query": "^1.132.0",
- "@tanstack/react-start": "^1.132.0",
- "@tanstack/router-plugin": "^1.132.0",
"axios": "^1.6.7",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"lucide-react": "^0.561.0",
- "nitro": "npm:nitro-nightly@latest",
- "react": "^19.2.0",
- "react-dom": "^19.2.0",
+ "react": "^19.2.6",
+ "react-dom": "^19.2.6",
"sockjs-client": "^1.6.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.0.2",
- "tailwindcss": "^4.0.6",
- "vite-tsconfig-paths": "^6.0.2"
+ "tailwindcss": "^4.0.6"
},
"devDependencies": {
"@biomejs/biome": "2.2.4",
- "@tanstack/devtools-vite": "^0.3.11",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.2.0",
"@types/node": "^22.10.2",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@types/sockjs-client": "^1.5.4",
- "@vitejs/plugin-react": "^5.0.4",
+ "@vitejs/plugin-react": "^6.0.2",
+ "@vitejs/plugin-rsc": "^0.5.26",
"jsdom": "^27.0.0",
+ "react-server-dom-webpack": "^19.2.6",
"typescript": "^5.7.2",
- "vite": "^7.1.7",
+ "vinext": "^0.0.51",
+ "vite": "^8.0.14",
"vitest": "^3.0.5",
"web-vitals": "^5.1.0"
}
diff --git a/apps/admin/src/app/auth/login/page.tsx b/apps/admin/src/app/auth/login/page.tsx
new file mode 100644
index 00000000..3488dc0e
--- /dev/null
+++ b/apps/admin/src/app/auth/login/page.tsx
@@ -0,0 +1,46 @@
+"use client";
+
+import { useEffect, useState } from "react";
+import { AdminLoginPage } from "@/components/features/auth/AdminLoginPage";
+import { ensureSessionToken } from "@/lib/auth/session";
+
+export default function AuthLoginPage() {
+ const [canRenderLogin, setCanRenderLogin] = useState(false);
+
+ useEffect(() => {
+ let isMounted = true;
+
+ const redirectIfAuthenticated = async () => {
+ try {
+ const token = await ensureSessionToken();
+ if (!isMounted) return;
+
+ if (token) {
+ window.location.replace("/scores");
+ return;
+ }
+ } catch {
+ // 세션 확인 실패 시에도 로그인 화면은 열어둔다.
+ }
+
+ if (!isMounted) return;
+ setCanRenderLogin(true);
+ };
+
+ void redirectIfAuthenticated();
+
+ return () => {
+ isMounted = false;
+ };
+ }, []);
+
+ if (!canRenderLogin) {
+ return (
+
+ 관리자 세션을 확인하는 중...
+
+ );
+ }
+
+ return window.location.assign("/scores")} />;
+}
diff --git a/apps/admin/src/app/bruno/page.tsx b/apps/admin/src/app/bruno/page.tsx
new file mode 100644
index 00000000..7d2f22ba
--- /dev/null
+++ b/apps/admin/src/app/bruno/page.tsx
@@ -0,0 +1,10 @@
+import { RequireAdminSession } from "@/components/features/auth/RequireAdminSession";
+import { BrunoApiPageContent } from "@/components/features/bruno/BrunoApiPageContent";
+
+export default function BrunoPage() {
+ return (
+
+
+
+ );
+}
diff --git a/apps/admin/src/app/chat-socket/page.tsx b/apps/admin/src/app/chat-socket/page.tsx
new file mode 100644
index 00000000..7688d944
--- /dev/null
+++ b/apps/admin/src/app/chat-socket/page.tsx
@@ -0,0 +1,10 @@
+import { RequireAdminSession } from "@/components/features/auth/RequireAdminSession";
+import { ChatSocketPageContent } from "@/components/features/chat-socket/ChatSocketPageContent";
+
+export default function ChatSocketPage() {
+ return (
+
+
+
+ );
+}
diff --git a/apps/admin/src/app/layout.tsx b/apps/admin/src/app/layout.tsx
new file mode 100644
index 00000000..95d655da
--- /dev/null
+++ b/apps/admin/src/app/layout.tsx
@@ -0,0 +1,18 @@
+import type { ReactNode } from "react";
+import "../styles.css";
+import { Providers } from "./providers";
+
+export const metadata = {
+ title: "Solid Connection Admin",
+ viewport: "width=device-width, initial-scale=1",
+};
+
+export default function RootLayout({ children }: { children: ReactNode }) {
+ return (
+
+
+ {children}
+
+
+ );
+}
diff --git a/apps/admin/src/app/login/page.tsx b/apps/admin/src/app/login/page.tsx
new file mode 100644
index 00000000..ec86cc56
--- /dev/null
+++ b/apps/admin/src/app/login/page.tsx
@@ -0,0 +1,15 @@
+"use client";
+
+import { useEffect } from "react";
+
+export default function LoginRedirectPage() {
+ useEffect(() => {
+ window.location.replace("/auth/login");
+ }, []);
+
+ return (
+
+ 로그인 페이지로 이동하는 중...
+
+ );
+}
diff --git a/apps/admin/src/app/mentor-applications/page.tsx b/apps/admin/src/app/mentor-applications/page.tsx
new file mode 100644
index 00000000..93183c88
--- /dev/null
+++ b/apps/admin/src/app/mentor-applications/page.tsx
@@ -0,0 +1,10 @@
+import { RequireAdminSession } from "@/components/features/auth/RequireAdminSession";
+import { MentorApplicationsPageContent } from "@/components/features/mentor-applications/MentorApplicationsPageContent";
+
+export default function MentorApplicationsPage() {
+ return (
+
+
+
+ );
+}
diff --git a/apps/admin/src/app/page.tsx b/apps/admin/src/app/page.tsx
new file mode 100644
index 00000000..f3c787ef
--- /dev/null
+++ b/apps/admin/src/app/page.tsx
@@ -0,0 +1,25 @@
+"use client";
+
+import { useEffect } from "react";
+import { ensureSessionToken } from "@/lib/auth/session";
+
+export default function HomePage() {
+ useEffect(() => {
+ const redirectBySession = async () => {
+ try {
+ const token = await ensureSessionToken();
+ window.location.replace(token ? "/scores" : "/auth/login");
+ } catch {
+ window.location.replace("/auth/login");
+ }
+ };
+
+ void redirectBySession();
+ }, []);
+
+ return (
+
+ 관리자 페이지로 이동하는 중...
+
+ );
+}
diff --git a/apps/admin/src/app/providers.tsx b/apps/admin/src/app/providers.tsx
new file mode 100644
index 00000000..0a903cdb
--- /dev/null
+++ b/apps/admin/src/app/providers.tsx
@@ -0,0 +1,18 @@
+"use client";
+
+import type { ReactNode } from "react";
+import { Toaster } from "sonner";
+import { QueryProvider } from "@/components/providers/QueryProvider";
+
+interface ProvidersProps {
+ children: ReactNode;
+}
+
+export function Providers({ children }: ProvidersProps) {
+ return (
+
+ {children}
+
+
+ );
+}
diff --git a/apps/admin/src/app/scores/page.tsx b/apps/admin/src/app/scores/page.tsx
new file mode 100644
index 00000000..d7e40c86
--- /dev/null
+++ b/apps/admin/src/app/scores/page.tsx
@@ -0,0 +1,10 @@
+import { RequireAdminSession } from "@/components/features/auth/RequireAdminSession";
+import { ScoresPageContent } from "@/components/features/scores/ScoresPageContent";
+
+export default function ScoresPage() {
+ return (
+
+
+
+ );
+}
diff --git a/apps/admin/src/routes/auth/login.tsx b/apps/admin/src/components/features/auth/AdminLoginPage.tsx
similarity index 90%
rename from apps/admin/src/routes/auth/login.tsx
rename to apps/admin/src/components/features/auth/AdminLoginPage.tsx
index c714565e..9bca8997 100644
--- a/apps/admin/src/routes/auth/login.tsx
+++ b/apps/admin/src/components/features/auth/AdminLoginPage.tsx
@@ -1,5 +1,6 @@
+"use client";
+
import { useMutation } from "@tanstack/react-query";
-import { createFileRoute, useNavigate } from "@tanstack/react-router";
import { type FormEvent, useId, useState } from "react";
import { toast } from "sonner";
import { Button } from "@/components/ui/button";
@@ -7,18 +8,13 @@ import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/com
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
import { adminSignInApi } from "@/lib/api/auth";
-import { redirectIfAuthenticated } from "@/lib/auth/session";
import { saveAccessToken } from "@/lib/utils/localStorage";
-export const Route = createFileRoute("/auth/login")({
- beforeLoad: async () => {
- await redirectIfAuthenticated();
- },
- component: LoginPage,
-});
+interface AdminLoginPageProps {
+ onLoginSuccess: () => void;
+}
-function LoginPage() {
- const navigate = useNavigate();
+export function AdminLoginPage({ onLoginSuccess }: AdminLoginPageProps) {
const emailInputId = useId();
const passwordInputId = useId();
const [email, setEmail] = useState("");
@@ -44,7 +40,7 @@ function LoginPage() {
description: "관리자 페이지로 이동합니다.",
});
- navigate({ to: "/scores" });
+ onLoginSuccess();
} catch (err: unknown) {
const error = err as { response?: { data?: { message?: string } } };
toast.error("로그인 실패", {
diff --git a/apps/admin/src/components/features/auth/RequireAdminSession.tsx b/apps/admin/src/components/features/auth/RequireAdminSession.tsx
new file mode 100644
index 00000000..4a8d96dd
--- /dev/null
+++ b/apps/admin/src/components/features/auth/RequireAdminSession.tsx
@@ -0,0 +1,49 @@
+"use client";
+
+import { type ReactNode, useEffect, useState } from "react";
+import { ensureSessionToken } from "@/lib/auth/session";
+
+interface RequireAdminSessionProps {
+ children: ReactNode;
+}
+
+export function RequireAdminSession({ children }: RequireAdminSessionProps) {
+ const [isAuthorized, setIsAuthorized] = useState(false);
+
+ useEffect(() => {
+ let isMounted = true;
+
+ const checkSession = async () => {
+ try {
+ const token = await ensureSessionToken();
+ if (!isMounted) return;
+
+ if (!token) {
+ window.location.replace("/auth/login");
+ return;
+ }
+
+ setIsAuthorized(true);
+ } catch {
+ if (!isMounted) return;
+ window.location.replace("/auth/login");
+ }
+ };
+
+ void checkSession();
+
+ return () => {
+ isMounted = false;
+ };
+ }, []);
+
+ if (!isAuthorized) {
+ return (
+
+ 관리자 세션을 확인하는 중...
+
+ );
+ }
+
+ return children;
+}
diff --git a/apps/admin/src/routes/bruno/index.tsx b/apps/admin/src/components/features/bruno/BrunoApiPageContent.tsx
similarity index 97%
rename from apps/admin/src/routes/bruno/index.tsx
rename to apps/admin/src/components/features/bruno/BrunoApiPageContent.tsx
index b43faa1e..fd1785e8 100644
--- a/apps/admin/src/routes/bruno/index.tsx
+++ b/apps/admin/src/components/features/bruno/BrunoApiPageContent.tsx
@@ -1,4 +1,5 @@
-import { createFileRoute } from "@tanstack/react-router";
+"use client";
+
import { Copy, Play, RotateCcw } from "lucide-react";
import { useMemo, useState } from "react";
import { toast } from "sonner";
@@ -10,7 +11,6 @@ import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@
import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs";
import { Textarea } from "@/components/ui/textarea";
import { axiosInstance } from "@/lib/api/client";
-import { requireAdminSession } from "@/lib/auth/session";
import { cn } from "@/lib/utils";
type DefinitionMethod = "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | "HEAD" | "OPTIONS";
@@ -38,7 +38,7 @@ interface RequestResult {
body: unknown;
}
-const definitionModules = import.meta.glob("../../../../../packages/api-schema/src/apis/*/apiDefinitions.ts", {
+const definitionModules = import.meta.glob("../../../../../../packages/api-schema/src/apis/*/apiDefinitions.ts", {
eager: true,
}) as Record>;
@@ -170,14 +170,7 @@ const splitPathAndInlineQuery = (pathWithInlineQuery: string) => {
const METHOD_FILTERS: MethodFilter[] = ["ALL", "GET", "POST", "PUT", "PATCH", "DELETE", "HEAD", "OPTIONS"];
-export const Route = createFileRoute("/bruno/")({
- beforeLoad: async () => {
- await requireAdminSession();
- },
- component: BrunoApiPage,
-});
-
-function BrunoApiPage() {
+export function BrunoApiPageContent() {
const [search, setSearch] = useState("");
const [methodFilter, setMethodFilter] = useState("ALL");
const [selectedKey, setSelectedKey] = useState(
diff --git a/apps/admin/src/routes/chat-socket/index.tsx b/apps/admin/src/components/features/chat-socket/ChatSocketPageContent.tsx
similarity index 98%
rename from apps/admin/src/routes/chat-socket/index.tsx
rename to apps/admin/src/components/features/chat-socket/ChatSocketPageContent.tsx
index fd92c6b6..17dad519 100644
--- a/apps/admin/src/routes/chat-socket/index.tsx
+++ b/apps/admin/src/components/features/chat-socket/ChatSocketPageContent.tsx
@@ -1,5 +1,6 @@
+"use client";
+
import { Client, type IMessage, type StompHeaders, type StompSubscription } from "@stomp/stompjs";
-import { createFileRoute } from "@tanstack/react-router";
import { Link2, Plug, PlugZap, RefreshCw, Send } from "lucide-react";
import { useCallback, useEffect, useMemo, useRef, useState } from "react";
import SockJS from "sockjs-client";
@@ -9,7 +10,6 @@ import { Button } from "@/components/ui/button";
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
import { Input } from "@/components/ui/input";
import { Textarea } from "@/components/ui/textarea";
-import { requireAdminSession } from "@/lib/auth/session";
import { loadAccessToken } from "@/lib/utils/localStorage";
type ConnectionState = "DISCONNECTED" | "CONNECTING" | "CONNECTED" | "ERROR";
@@ -87,14 +87,7 @@ const maskQueryToken = (value: string) => {
return `${"*".repeat(value.length - 4)}${value.slice(-4)}`;
};
-export const Route = createFileRoute("/chat-socket/")({
- beforeLoad: async () => {
- await requireAdminSession();
- },
- component: ChatSocketPage,
-});
-
-function ChatSocketPage() {
+export function ChatSocketPageContent() {
const clientRef = useRef(null);
const subscriptionRef = useRef(null);
diff --git a/apps/admin/src/components/features/mentor-applications/MentorApplicationsPageContent.tsx b/apps/admin/src/components/features/mentor-applications/MentorApplicationsPageContent.tsx
new file mode 100644
index 00000000..58155fb5
--- /dev/null
+++ b/apps/admin/src/components/features/mentor-applications/MentorApplicationsPageContent.tsx
@@ -0,0 +1,644 @@
+"use client";
+
+import { keepPreviousData, useMutation, useQuery, useQueryClient } from "@tanstack/react-query";
+import { format } from "date-fns";
+import { ChevronDown, ChevronUp } from "lucide-react";
+import { Fragment, useEffect, useState } from "react";
+import { toast } from "sonner";
+import { AdminLayout } from "@/components/layout/AdminLayout";
+import { Button } from "@/components/ui/button";
+import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@/components/ui/table";
+import { adminApi } from "@/lib/api/admin";
+import { normalizeImageUrlToUploadCdn } from "@/lib/utils/cdnUrl";
+import type {
+ AdminSiteUserResponse,
+ AdminUniversityResponse,
+ MentorApplicationCoreResponse,
+ MentorApplicationHistoryResponse,
+ MentorApplicationListItem,
+ MentorApplicationStatus,
+} from "@/types/mentorApplications";
+
+const PAGE_SIZE = 10;
+const STATUS_OPTIONS: { value: MentorApplicationStatus; label: string }[] = [
+ { value: "PENDING", label: "대기중" },
+ { value: "APPROVED", label: "승인됨" },
+ { value: "REJECTED", label: "거절됨" },
+];
+
+const statusStyles: Record = {
+ PENDING: "bg-primary-100 text-primary",
+ APPROVED: "bg-[#E9F7EC] text-[#15A861]",
+ REJECTED: "bg-[#FFD9D9] text-[#E22A2D]",
+};
+
+const statusLabels: Record = {
+ PENDING: "대기중",
+ APPROVED: "승인됨",
+ REJECTED: "거절됨",
+};
+
+const toOptionalString = (value: string | number | null | undefined) => {
+ if (value === null || value === undefined) return undefined;
+ const normalized = String(value).trim();
+ return normalized.length > 0 ? normalized : undefined;
+};
+
+const pickString = (...values: (string | number | null | undefined)[]) => {
+ for (const value of values) {
+ const normalized = toOptionalString(value);
+ if (normalized) return normalized;
+ }
+
+ return undefined;
+};
+
+const toDisplayText = (value: string | number | null | undefined) => toOptionalString(value) ?? "-";
+
+const normalizeUploadUrl = (value: string | number | null | undefined) => {
+ const url = toOptionalString(value);
+ if (!url) return "";
+
+ if (url.startsWith("/") && !url.startsWith("//")) {
+ return normalizeImageUrlToUploadCdn(url.replace(/^\/+/, ""));
+ }
+
+ return normalizeImageUrlToUploadCdn(url);
+};
+
+const isMentorApplicationStatus = (value: unknown): value is MentorApplicationStatus => {
+ if (typeof value !== "string") return false;
+ return STATUS_OPTIONS.some((option) => option.value === value.toUpperCase());
+};
+
+const normalizeStatus = (value: unknown): MentorApplicationStatus | null => {
+ if (!isMentorApplicationStatus(value)) return null;
+ return value.toUpperCase() as MentorApplicationStatus;
+};
+
+const getApplicationCore = (application: MentorApplicationListItem): MentorApplicationCoreResponse =>
+ application.mentorApplicationResponse ?? application.mentorApplication ?? application;
+
+const getSiteUser = (application: MentorApplicationListItem): AdminSiteUserResponse | undefined =>
+ application.siteUserResponse ?? application.siteUser ?? application.user ?? undefined;
+
+const getUniversity = (application: MentorApplicationListItem): AdminUniversityResponse | undefined =>
+ application.universityResponse ?? application.university ?? undefined;
+
+const getApplicationId = (application: MentorApplicationListItem) => {
+ const core = getApplicationCore(application);
+ return pickString(core.id, core.mentorApplicationId, application.id, application.mentorApplicationId);
+};
+
+const getSiteUserId = (application: MentorApplicationListItem) => {
+ const core = getApplicationCore(application);
+ const user = getSiteUser(application);
+ return pickString(user?.id, user?.siteUserId, core.siteUserId, application.siteUserId);
+};
+
+const getNickname = (application: MentorApplicationListItem) => {
+ const user = getSiteUser(application);
+ return pickString(user?.nickname, user?.name, user?.email) ?? "-";
+};
+
+const getProfileImageUrl = (application: MentorApplicationListItem) => {
+ const user = getSiteUser(application);
+ return normalizeUploadUrl(user?.profileImageUrl);
+};
+
+const getApplicationStatus = (application: MentorApplicationListItem) => {
+ const core = getApplicationCore(application);
+ return normalizeStatus(core.mentorApplicationStatus) ?? normalizeStatus(core.status);
+};
+
+const getCountry = (application: MentorApplicationListItem) => {
+ const core = getApplicationCore(application);
+ const university = getUniversity(application);
+ return pickString(core.countryName, core.country, university?.countryName, university?.country);
+};
+
+const getUniversityName = (application: MentorApplicationListItem) => {
+ const core = getApplicationCore(application);
+ const university = getUniversity(application);
+ return pickString(core.universityName, university?.koreanName, university?.name, core.universityId, university?.id);
+};
+
+const getTerm = (application: MentorApplicationListItem) => {
+ const core = getApplicationCore(application);
+ return pickString(core.term);
+};
+
+const getRejectedReason = (application: MentorApplicationListItem) => {
+ const core = getApplicationCore(application);
+ return pickString(core.rejectedReason);
+};
+
+const getCreatedAt = (application: MentorApplicationListItem) => {
+ const core = getApplicationCore(application);
+ return pickString(core.createdAt, application.createdAt);
+};
+
+const getVerificationFileUrl = (application: MentorApplicationListItem) => {
+ const core = getApplicationCore(application);
+ const file = core.verificationFile;
+
+ if (typeof file === "string") {
+ return normalizeUploadUrl(file);
+ }
+
+ return normalizeUploadUrl(
+ pickString(
+ file?.url,
+ file?.fileUrl,
+ file?.path,
+ core.verificationFileUrl,
+ core.verificationFilePath,
+ core.fileUrl,
+ core.proofFileUrl,
+ application.verificationFileUrl,
+ application.fileUrl,
+ application.proofFileUrl,
+ ),
+ );
+};
+
+const formatDateTime = (value: string | number | null | undefined) => {
+ const normalized = toOptionalString(value);
+ if (!normalized) return "-";
+
+ const date = new Date(normalized);
+ if (Number.isNaN(date.getTime())) return normalized;
+
+ return format(date, "yyyy-MM-dd HH:mm");
+};
+
+const getHistoryItems = (data: MentorApplicationHistoryResponse | undefined) => {
+ if (!data) return [];
+ return Array.isArray(data) ? data : (data.content ?? []);
+};
+
+function MentorApplicationStatusBadge({ status }: { status: MentorApplicationStatus | null }) {
+ if (!status) {
+ return -;
+ }
+
+ return (
+
+ {statusLabels[status]}
+
+ );
+}
+
+function MentorApplicationHistoryRow({ colSpan, siteUserId }: { colSpan: number; siteUserId: string }) {
+ const { data, isError, isLoading } = useQuery({
+ queryKey: ["mentorApplications", "history", siteUserId],
+ queryFn: () => adminApi.getMentorApplicationHistoryList(siteUserId),
+ });
+
+ const historyItems = getHistoryItems(data);
+
+ return (
+
+
+
+
신청 이력
+ {isLoading ? (
+
+ ) : isError ? (
+
신청 이력을 불러오지 못했습니다.
+ ) : historyItems.length === 0 ? (
+
신청 이력이 없습니다.
+ ) : (
+
+
+
+
+ | ID |
+ 상태 |
+ 국가/대학/학기 |
+ 신청일 |
+ 거절 사유 |
+
+
+
+ {historyItems.map((historyItem, index) => {
+ const historyId = getApplicationId(historyItem);
+ const historyStatus = getApplicationStatus(historyItem);
+
+ return (
+
+ | {toDisplayText(historyId)} |
+
+
+ |
+
+ {toDisplayText(getCountry(historyItem))} / {toDisplayText(getUniversityName(historyItem))} /{" "}
+ {toDisplayText(getTerm(historyItem))}
+ |
+ {formatDateTime(getCreatedAt(historyItem))} |
+ {toDisplayText(getRejectedReason(historyItem))} |
+
+ );
+ })}
+
+
+
+ )}
+
+
+
+ );
+}
+
+export function MentorApplicationsPageContent() {
+ const queryClient = useQueryClient();
+ const [statusFilter, setStatusFilter] = useState("PENDING");
+ const [nickname, setNickname] = useState("");
+ const [createdAt, setCreatedAt] = useState("");
+ const [page, setPage] = useState(1);
+ const [expandedSiteUserId, setExpandedSiteUserId] = useState(null);
+ const [rejectingApplicationId, setRejectingApplicationId] = useState(null);
+ const [rejectReason, setRejectReason] = useState("");
+
+ const normalizedNickname = nickname.trim();
+
+ const { data, isError, isFetching, isLoading } = useQuery({
+ queryKey: ["mentorApplications", "list", statusFilter, normalizedNickname, createdAt, page],
+ queryFn: () =>
+ adminApi.getMentorApplicationList({
+ page,
+ size: PAGE_SIZE,
+ mentorApplicationStatus: statusFilter,
+ nickname: normalizedNickname || undefined,
+ createdAt: createdAt || undefined,
+ }),
+ placeholderData: keepPreviousData,
+ });
+
+ useEffect(() => {
+ if (isError) {
+ toast.error("멘토 승격 요청 목록을 불러오지 못했습니다.");
+ }
+ }, [isError]);
+
+ const applications = data?.content ?? [];
+ const totalPages = Math.max(1, data?.totalPages ?? 1);
+ const totalElements = data?.totalElements;
+
+ const approveMutation = useMutation({
+ mutationFn: (mentorApplicationId: string) => adminApi.postApproveMentorApplication(mentorApplicationId),
+ onSuccess: async () => {
+ await queryClient.invalidateQueries({ queryKey: ["mentorApplications"] });
+ toast.success("멘토 승격 요청을 승인했습니다.");
+ },
+ onError: () => {
+ toast.error("멘토 승격 요청 승인에 실패했습니다.");
+ },
+ });
+
+ const rejectMutation = useMutation({
+ mutationFn: ({ mentorApplicationId, rejectedReason }: { mentorApplicationId: string; rejectedReason: string }) =>
+ adminApi.postRejectMentorApplication(mentorApplicationId, rejectedReason),
+ onSuccess: async () => {
+ await queryClient.invalidateQueries({ queryKey: ["mentorApplications"] });
+ setRejectingApplicationId(null);
+ setRejectReason("");
+ toast.success("멘토 승격 요청을 반려했습니다.");
+ },
+ onError: () => {
+ toast.error("멘토 승격 요청 반려에 실패했습니다.");
+ },
+ });
+
+ const handlePageChange = (newPage: number) => {
+ if (newPage < 1 || newPage > totalPages) return;
+ setPage(newPage);
+ };
+
+ const handleFilterStatus = (nextStatus: MentorApplicationStatus) => {
+ setStatusFilter(nextStatus);
+ setPage(1);
+ };
+
+ const handleNicknameChange = (nextNickname: string) => {
+ setNickname(nextNickname);
+ setPage(1);
+ };
+
+ const handleCreatedAtChange = (nextCreatedAt: string) => {
+ setCreatedAt(nextCreatedAt);
+ setPage(1);
+ };
+
+ const handleApprove = async (application: MentorApplicationListItem) => {
+ const applicationId = getApplicationId(application);
+ if (!applicationId) {
+ toast.error("신청 ID를 확인할 수 없습니다.");
+ return;
+ }
+
+ await approveMutation.mutateAsync(applicationId);
+ };
+
+ const handleStartReject = (application: MentorApplicationListItem) => {
+ const applicationId = getApplicationId(application);
+ if (!applicationId) {
+ toast.error("신청 ID를 확인할 수 없습니다.");
+ return;
+ }
+
+ setRejectingApplicationId(applicationId);
+ setRejectReason("");
+ };
+
+ const handleCancelReject = () => {
+ setRejectingApplicationId(null);
+ setRejectReason("");
+ };
+
+ const handleReject = async (mentorApplicationId: string) => {
+ const normalizedReason = rejectReason.trim();
+ if (!normalizedReason) {
+ toast.error("거절 사유를 입력해주세요.");
+ return;
+ }
+
+ await rejectMutation.mutateAsync({ mentorApplicationId, rejectedReason: normalizedReason });
+ };
+
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 총 {typeof totalElements === "number" ? totalElements.toLocaleString() : "-"}건
+
+
+ {page} / {totalPages} 페이지
+
+
+
+
+ {isFetching && !isLoading ? (
+
최신 데이터를 불러오는 중...
+ ) : null}
+
+
+
+
+
+ 신청 ID
+ 사용자
+ 상태
+ 국가/대학/학기
+ 신청일
+ 거절 사유
+ 증빙 파일
+ 이력
+ 작업
+
+
+
+ {isLoading ? (
+
+
+
+
+
+ ) : isError ? (
+
+
+ 멘토 승격 요청을 불러오지 못했습니다.
+
+
+ ) : applications.length === 0 ? (
+
+
+ 멘토 승격 요청이 없습니다.
+
+
+ ) : (
+ applications.map((application, index) => {
+ const applicationId = getApplicationId(application);
+ const siteUserId = getSiteUserId(application);
+ const status = getApplicationStatus(application);
+ const fileUrl = getVerificationFileUrl(application);
+ const profileImageUrl = getProfileImageUrl(application);
+ const isRejecting = Boolean(applicationId && rejectingApplicationId === applicationId);
+ const isExpanded = Boolean(siteUserId && expandedSiteUserId === siteUserId);
+ const isActionPending = approveMutation.isPending || rejectMutation.isPending;
+
+ return (
+
+
+ {toDisplayText(applicationId)}
+
+
+ {profileImageUrl ? (
+

+ ) : (
+
+ {getNickname(application).slice(0, 1)}
+
+ )}
+
+
{getNickname(application)}
+
ID {toDisplayText(siteUserId)}
+
+
+
+
+
+
+
+
+
{toDisplayText(getUniversityName(application))}
+
+ {toDisplayText(getCountry(application))} / {toDisplayText(getTerm(application))}
+
+
+
+ {formatDateTime(getCreatedAt(application))}
+ {toDisplayText(getRejectedReason(application))}
+
+ {fileUrl ? (
+
+ 파일 보기
+
+ ) : (
+ -
+ )}
+
+
+
+
+
+ {status === "PENDING" && applicationId ? (
+ isRejecting ? (
+
+ setRejectReason(event.target.value)}
+ placeholder="거절 사유"
+ className="h-8 flex-1 rounded-md border border-k-200 bg-k-0 px-2 typo-regular-4 text-k-700 outline-none placeholder:text-k-400 focus-visible:border-primary"
+ />
+
+
+
+ ) : (
+
+
+
+
+ )
+ ) : (
+ -
+ )}
+
+
+
+ {isExpanded && siteUserId ? (
+
+ ) : null}
+
+ );
+ })
+ )}
+
+
+
+
+
+
+ {Array.from({ length: totalPages }, (_, idx) => (
+
+ ))}
+
+
+
+
+ );
+}
diff --git a/apps/admin/src/routes/scores/index.tsx b/apps/admin/src/components/features/scores/ScoresPageContent.tsx
similarity index 81%
rename from apps/admin/src/routes/scores/index.tsx
rename to apps/admin/src/components/features/scores/ScoresPageContent.tsx
index db69cac0..9923c397 100644
--- a/apps/admin/src/routes/scores/index.tsx
+++ b/apps/admin/src/components/features/scores/ScoresPageContent.tsx
@@ -1,20 +1,13 @@
-import { createFileRoute } from "@tanstack/react-router";
+"use client";
+
import { useId, useState } from "react";
-import { GpaScoreTable } from "@/components/features/scores/GpaScoreTable";
-import { LanguageScoreTable } from "@/components/features/scores/LanguageScoreTable";
import { AdminLayout } from "@/components/layout/AdminLayout";
import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs";
-import { requireAdminSession } from "@/lib/auth/session";
import type { VerifyStatus } from "@/types/scores";
+import { GpaScoreTable } from "./GpaScoreTable";
+import { LanguageScoreTable } from "./LanguageScoreTable";
-export const Route = createFileRoute("/scores/")({
- beforeLoad: async () => {
- await requireAdminSession();
- },
- component: ScoresPage,
-});
-
-function ScoresPage() {
+export function ScoresPageContent() {
const [verifyFilter, setVerifyFilter] = useState("PENDING");
const verifyFilterId = useId();
diff --git a/apps/admin/src/components/layout/AdminLayout.tsx b/apps/admin/src/components/layout/AdminLayout.tsx
index 4b027072..fa09dadf 100644
--- a/apps/admin/src/components/layout/AdminLayout.tsx
+++ b/apps/admin/src/components/layout/AdminLayout.tsx
@@ -1,4 +1,3 @@
-import { useNavigate } from "@tanstack/react-router";
import { LogOut } from "lucide-react";
import { toast } from "sonner";
import { clearSession } from "@/lib/auth/session";
@@ -12,12 +11,10 @@ interface AdminLayoutProps {
}
export function AdminLayout({ children, activeMenu, title, description }: AdminLayoutProps) {
- const navigate = useNavigate();
-
const handleLogout = () => {
clearSession();
toast.success("로그아웃되었습니다.");
- void navigate({ to: "/auth/login" });
+ window.location.assign("/auth/login");
};
return (
diff --git a/apps/admin/src/components/layout/AdminSidebar.tsx b/apps/admin/src/components/layout/AdminSidebar.tsx
index aeab9a3a..c6bab38b 100644
--- a/apps/admin/src/components/layout/AdminSidebar.tsx
+++ b/apps/admin/src/components/layout/AdminSidebar.tsx
@@ -1,11 +1,11 @@
-import { Link } from "@tanstack/react-router";
-import { FileText, FlaskConical, MessageSquare } from "lucide-react";
+import { FileText, FlaskConical, MessageSquare, UserCheck } from "lucide-react";
import { cn } from "@/lib/utils";
-export type ActiveAdminMenu = "scores" | "bruno" | "chatSocket";
+export type ActiveAdminMenu = "scores" | "mentorApplications" | "bruno" | "chatSocket";
const sideMenus = [
{ key: "scores", label: "성적 관리", icon: FileText, to: "/scores" as const },
+ { key: "mentorApplications", label: "멘토 승격 요청", icon: UserCheck, to: "/mentor-applications" as const },
{ key: "bruno", label: "Bruno API", icon: FlaskConical, to: "/bruno" as const },
{ key: "chatSocket", label: "채팅 소켓", icon: MessageSquare, to: "/chat-socket" as const },
] as const;
@@ -36,10 +36,10 @@ export function AdminSidebar({ activeMenu }: AdminSidebarProps) {
);
return (
-
+
{menu.label}
-
+
);
})}
diff --git a/apps/admin/src/lib/api/admin.ts b/apps/admin/src/lib/api/admin.ts
index ac05268e..a8373dba 100644
--- a/apps/admin/src/lib/api/admin.ts
+++ b/apps/admin/src/lib/api/admin.ts
@@ -1,9 +1,14 @@
import { axiosInstance } from "@/lib/api/client";
+import type {
+ MentorApplicationHistoryResponse,
+ MentorApplicationPageResponse,
+ MentorApplicationStatus,
+} from "@/types/mentorApplications";
export interface MentorApplicationListParams {
page?: number;
size?: number;
- mentorApplicationStatus?: string;
+ mentorApplicationStatus?: MentorApplicationStatus;
nickname?: string;
createdAt?: string;
}
@@ -21,25 +26,29 @@ export interface CountryPayload {
export const adminApi = {
getMentorApplicationList: (params: MentorApplicationListParams) =>
- axiosInstance.get("/admin/mentor-applications", { params }).then((res) => res.data),
+ axiosInstance.get("/admin/mentor-applications", { params }).then((res) => res.data),
getCountMentorApplicationByStatus: () =>
- axiosInstance.get("/admin/mentor-applications/count").then((res) => res.data),
+ axiosInstance
+ .get>>("/admin/mentor-applications/count")
+ .then((res) => res.data),
getMentorApplicationHistoryList: (siteUserId: string | number) =>
- axiosInstance.get(`/admin/mentor-applications/${siteUserId}/history`).then((res) => res.data),
+ axiosInstance
+ .get(`/admin/mentor-applications/${siteUserId}/history`)
+ .then((res) => res.data),
postApproveMentorApplication: (mentorApplicationId: string | number) =>
- axiosInstance.post(`/admin/mentor-applications/${mentorApplicationId}/approve`, {}).then((res) => res.data),
+ axiosInstance.post(`/admin/mentor-applications/${mentorApplicationId}/approve`, {}).then((res) => res.data),
postRejectMentorApplication: (mentorApplicationId: string | number, rejectedReason: string) =>
axiosInstance
- .post(`/admin/mentor-applications/${mentorApplicationId}/reject`, { rejectedReason })
+ .post(`/admin/mentor-applications/${mentorApplicationId}/reject`, { rejectedReason })
.then((res) => res.data),
postMappingMentorapplicationUniversity: (mentorApplicationId: string | number, universityId: number) =>
axiosInstance
- .post(`/admin/mentor-applications/${mentorApplicationId}/assign-university`, { universityId })
+ .post(`/admin/mentor-applications/${mentorApplicationId}/assign-university`, { universityId })
.then((res) => res.data),
get권역조회: () => axiosInstance.get("/admin/regions").then((res) => res.data),
diff --git a/apps/admin/src/lib/auth/session.ts b/apps/admin/src/lib/auth/session.ts
index 93c50c43..528ee996 100644
--- a/apps/admin/src/lib/auth/session.ts
+++ b/apps/admin/src/lib/auth/session.ts
@@ -1,4 +1,3 @@
-import { redirect } from "@tanstack/react-router";
import { reissueAccessTokenApi } from "@/lib/api/auth";
import { isTokenExpired } from "@/lib/utils/jwtUtils";
import { loadAccessToken, removeAccessToken, saveAccessToken } from "@/lib/utils/localStorage";
@@ -59,19 +58,3 @@ export const ensureSessionToken = async (): Promise => {
return reissueAccessTokenIfPossible();
};
-
-export const requireAdminSession = async (): Promise => {
- const token = await ensureSessionToken();
- if (!token) {
- throw redirect({ to: "/auth/login" });
- }
-
- return token;
-};
-
-export const redirectIfAuthenticated = async () => {
- const token = await ensureSessionToken();
- if (token) {
- throw redirect({ to: "/scores" });
- }
-};
diff --git a/apps/admin/src/routeTree.gen.ts b/apps/admin/src/routeTree.gen.ts
deleted file mode 100644
index 2d7390e8..00000000
--- a/apps/admin/src/routeTree.gen.ts
+++ /dev/null
@@ -1,171 +0,0 @@
-/* eslint-disable */
-
-// @ts-nocheck
-
-// noinspection JSUnusedGlobalSymbols
-
-// This file was automatically generated by TanStack Router.
-// You should NOT make any changes in this file as it will be overwritten.
-// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.
-
-import { Route as rootRouteImport } from './routes/__root'
-import { Route as LoginRouteImport } from './routes/login'
-import { Route as IndexRouteImport } from './routes/index'
-import { Route as ScoresIndexRouteImport } from './routes/scores/index'
-import { Route as ChatSocketIndexRouteImport } from './routes/chat-socket/index'
-import { Route as BrunoIndexRouteImport } from './routes/bruno/index'
-import { Route as AuthLoginRouteImport } from './routes/auth/login'
-
-const LoginRoute = LoginRouteImport.update({
- id: '/login',
- path: '/login',
- getParentRoute: () => rootRouteImport,
-} as any)
-const IndexRoute = IndexRouteImport.update({
- id: '/',
- path: '/',
- getParentRoute: () => rootRouteImport,
-} as any)
-const ScoresIndexRoute = ScoresIndexRouteImport.update({
- id: '/scores/',
- path: '/scores/',
- getParentRoute: () => rootRouteImport,
-} as any)
-const ChatSocketIndexRoute = ChatSocketIndexRouteImport.update({
- id: '/chat-socket/',
- path: '/chat-socket/',
- getParentRoute: () => rootRouteImport,
-} as any)
-const BrunoIndexRoute = BrunoIndexRouteImport.update({
- id: '/bruno/',
- path: '/bruno/',
- getParentRoute: () => rootRouteImport,
-} as any)
-const AuthLoginRoute = AuthLoginRouteImport.update({
- id: '/auth/login',
- path: '/auth/login',
- getParentRoute: () => rootRouteImport,
-} as any)
-
-export interface FileRoutesByFullPath {
- '/': typeof IndexRoute
- '/login': typeof LoginRoute
- '/auth/login': typeof AuthLoginRoute
- '/bruno/': typeof BrunoIndexRoute
- '/chat-socket/': typeof ChatSocketIndexRoute
- '/scores/': typeof ScoresIndexRoute
-}
-export interface FileRoutesByTo {
- '/': typeof IndexRoute
- '/login': typeof LoginRoute
- '/auth/login': typeof AuthLoginRoute
- '/bruno': typeof BrunoIndexRoute
- '/chat-socket': typeof ChatSocketIndexRoute
- '/scores': typeof ScoresIndexRoute
-}
-export interface FileRoutesById {
- __root__: typeof rootRouteImport
- '/': typeof IndexRoute
- '/login': typeof LoginRoute
- '/auth/login': typeof AuthLoginRoute
- '/bruno/': typeof BrunoIndexRoute
- '/chat-socket/': typeof ChatSocketIndexRoute
- '/scores/': typeof ScoresIndexRoute
-}
-export interface FileRouteTypes {
- fileRoutesByFullPath: FileRoutesByFullPath
- fullPaths:
- | '/'
- | '/login'
- | '/auth/login'
- | '/bruno/'
- | '/chat-socket/'
- | '/scores/'
- fileRoutesByTo: FileRoutesByTo
- to: '/' | '/login' | '/auth/login' | '/bruno' | '/chat-socket' | '/scores'
- id:
- | '__root__'
- | '/'
- | '/login'
- | '/auth/login'
- | '/bruno/'
- | '/chat-socket/'
- | '/scores/'
- fileRoutesById: FileRoutesById
-}
-export interface RootRouteChildren {
- IndexRoute: typeof IndexRoute
- LoginRoute: typeof LoginRoute
- AuthLoginRoute: typeof AuthLoginRoute
- BrunoIndexRoute: typeof BrunoIndexRoute
- ChatSocketIndexRoute: typeof ChatSocketIndexRoute
- ScoresIndexRoute: typeof ScoresIndexRoute
-}
-
-declare module '@tanstack/react-router' {
- interface FileRoutesByPath {
- '/login': {
- id: '/login'
- path: '/login'
- fullPath: '/login'
- preLoaderRoute: typeof LoginRouteImport
- parentRoute: typeof rootRouteImport
- }
- '/': {
- id: '/'
- path: '/'
- fullPath: '/'
- preLoaderRoute: typeof IndexRouteImport
- parentRoute: typeof rootRouteImport
- }
- '/scores/': {
- id: '/scores/'
- path: '/scores'
- fullPath: '/scores/'
- preLoaderRoute: typeof ScoresIndexRouteImport
- parentRoute: typeof rootRouteImport
- }
- '/chat-socket/': {
- id: '/chat-socket/'
- path: '/chat-socket'
- fullPath: '/chat-socket/'
- preLoaderRoute: typeof ChatSocketIndexRouteImport
- parentRoute: typeof rootRouteImport
- }
- '/bruno/': {
- id: '/bruno/'
- path: '/bruno'
- fullPath: '/bruno/'
- preLoaderRoute: typeof BrunoIndexRouteImport
- parentRoute: typeof rootRouteImport
- }
- '/auth/login': {
- id: '/auth/login'
- path: '/auth/login'
- fullPath: '/auth/login'
- preLoaderRoute: typeof AuthLoginRouteImport
- parentRoute: typeof rootRouteImport
- }
- }
-}
-
-const rootRouteChildren: RootRouteChildren = {
- IndexRoute: IndexRoute,
- LoginRoute: LoginRoute,
- AuthLoginRoute: AuthLoginRoute,
- BrunoIndexRoute: BrunoIndexRoute,
- ChatSocketIndexRoute: ChatSocketIndexRoute,
- ScoresIndexRoute: ScoresIndexRoute,
-}
-export const routeTree = rootRouteImport
- ._addFileChildren(rootRouteChildren)
- ._addFileTypes()
-
-import type { getRouter } from './router.tsx'
-import type { createStart } from '@tanstack/react-start'
-declare module '@tanstack/react-start' {
- interface Register {
- ssr: true
- router: Awaited>
- }
-}
diff --git a/apps/admin/src/router.tsx b/apps/admin/src/router.tsx
deleted file mode 100644
index 765dbe78..00000000
--- a/apps/admin/src/router.tsx
+++ /dev/null
@@ -1,17 +0,0 @@
-import { createRouter } from "@tanstack/react-router";
-
-// Import the generated route tree
-import { routeTree } from "./routeTree.gen";
-
-// Create a new router instance
-export const getRouter = () => {
- const router = createRouter({
- routeTree,
- context: {},
-
- scrollRestoration: true,
- defaultPreloadStaleTime: 0,
- });
-
- return router;
-};
diff --git a/apps/admin/src/routes/__root.tsx b/apps/admin/src/routes/__root.tsx
deleted file mode 100644
index 9a4b8a72..00000000
--- a/apps/admin/src/routes/__root.tsx
+++ /dev/null
@@ -1,58 +0,0 @@
-import { TanStackDevtools } from "@tanstack/react-devtools";
-import { createRootRoute, HeadContent, Scripts } from "@tanstack/react-router";
-import { TanStackRouterDevtoolsPanel } from "@tanstack/react-router-devtools";
-import { Toaster } from "sonner";
-import { QueryProvider } from "@/components/providers/QueryProvider";
-
-import appCss from "../styles.css?url";
-
-export const Route = createRootRoute({
- head: () => ({
- meta: [
- {
- charSet: "utf-8",
- },
- {
- name: "viewport",
- content: "width=device-width, initial-scale=1",
- },
- {
- title: "Solid Connection Admin",
- },
- ],
- links: [
- {
- rel: "stylesheet",
- href: appCss,
- },
- ],
- }),
-
- shellComponent: RootDocument,
-});
-
-function RootDocument({ children }: { children: React.ReactNode }) {
- return (
-
-
-
-
-
- {children}
-
- ,
- },
- ]}
- />
-
-
-
- );
-}
diff --git a/apps/admin/src/routes/index.tsx b/apps/admin/src/routes/index.tsx
deleted file mode 100644
index a3b60572..00000000
--- a/apps/admin/src/routes/index.tsx
+++ /dev/null
@@ -1,9 +0,0 @@
-import { createFileRoute, redirect } from "@tanstack/react-router";
-import { ensureSessionToken } from "@/lib/auth/session";
-
-export const Route = createFileRoute("/")({
- beforeLoad: async () => {
- const token = await ensureSessionToken();
- throw redirect({ to: token ? "/scores" : "/auth/login" });
- },
-});
diff --git a/apps/admin/src/routes/login.tsx b/apps/admin/src/routes/login.tsx
deleted file mode 100644
index 92b693e4..00000000
--- a/apps/admin/src/routes/login.tsx
+++ /dev/null
@@ -1,7 +0,0 @@
-import { createFileRoute, redirect } from "@tanstack/react-router";
-
-export const Route = createFileRoute("/login")({
- beforeLoad: () => {
- throw redirect({ to: "/auth/login" });
- },
-});
diff --git a/apps/admin/src/types/mentorApplications.ts b/apps/admin/src/types/mentorApplications.ts
new file mode 100644
index 00000000..9b7f7410
--- /dev/null
+++ b/apps/admin/src/types/mentorApplications.ts
@@ -0,0 +1,69 @@
+export type MentorApplicationStatus = "PENDING" | "APPROVED" | "REJECTED";
+
+export interface AdminSiteUserResponse {
+ id?: number | string;
+ siteUserId?: number | string;
+ nickname?: string | null;
+ name?: string | null;
+ email?: string | null;
+ profileImageUrl?: string | null;
+}
+
+export interface AdminUniversityResponse {
+ id?: number | string;
+ universityId?: number | string;
+ koreanName?: string | null;
+ name?: string | null;
+ country?: string | null;
+ countryName?: string | null;
+}
+
+export interface MentorApplicationFileResponse {
+ url?: string | null;
+ fileUrl?: string | null;
+ path?: string | null;
+ originalFileName?: string | null;
+}
+
+export interface MentorApplicationCoreResponse {
+ id?: number | string;
+ mentorApplicationId?: number | string;
+ siteUserId?: number | string;
+ mentorApplicationStatus?: MentorApplicationStatus | null;
+ status?: MentorApplicationStatus | null;
+ preparationStatus?: string | null;
+ universitySelectType?: string | null;
+ country?: string | null;
+ countryName?: string | null;
+ universityId?: number | string | null;
+ universityName?: string | null;
+ term?: string | null;
+ verificationFile?: string | MentorApplicationFileResponse | null;
+ verificationFileUrl?: string | null;
+ verificationFilePath?: string | null;
+ fileUrl?: string | null;
+ proofFileUrl?: string | null;
+ rejectedReason?: string | null;
+ createdAt?: string | null;
+ updatedAt?: string | null;
+}
+
+export interface MentorApplicationListItem extends MentorApplicationCoreResponse {
+ mentorApplicationResponse?: MentorApplicationCoreResponse | null;
+ mentorApplication?: MentorApplicationCoreResponse | null;
+ siteUserResponse?: AdminSiteUserResponse | null;
+ siteUser?: AdminSiteUserResponse | null;
+ user?: AdminSiteUserResponse | null;
+ universityResponse?: AdminUniversityResponse | null;
+ university?: AdminUniversityResponse | null;
+}
+
+export interface MentorApplicationPageResponse {
+ content?: MentorApplicationListItem[];
+ pageNumber?: number;
+ pageSize?: number;
+ totalElements?: number;
+ totalPages?: number;
+}
+
+export type MentorApplicationHistoryResponse = MentorApplicationListItem[] | MentorApplicationPageResponse;
diff --git a/apps/admin/vite.config.ts b/apps/admin/vite.config.ts
index cea5bc04..c14921e1 100644
--- a/apps/admin/vite.config.ts
+++ b/apps/admin/vite.config.ts
@@ -1,29 +1,16 @@
import { fileURLToPath, URL } from "node:url";
import tailwindcss from "@tailwindcss/vite";
-import { devtools } from "@tanstack/devtools-vite";
-import { tanstackStart } from "@tanstack/react-start/plugin/vite";
-import viteReact from "@vitejs/plugin-react";
-import { nitro } from "nitro/vite";
+import vinext from "vinext";
import { defineConfig } from "vite";
-import viteTsConfigPaths from "vite-tsconfig-paths";
const config = defineConfig({
resolve: {
alias: {
"@": fileURLToPath(new URL("./src", import.meta.url)),
},
+ tsconfigPaths: true,
},
- plugins: [
- devtools(),
- nitro(),
- // this is the plugin that enables path aliases
- viteTsConfigPaths({
- projects: ["./tsconfig.json"],
- }),
- tailwindcss(),
- tanstackStart(),
- viteReact(),
- ],
+ plugins: [vinext(), tailwindcss()],
});
export default config;
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 09a7fc75..75c3edd6 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -31,40 +31,22 @@ importers:
dependencies:
'@radix-ui/react-label':
specifier: ^2.1.2
- version: 2.1.8(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ version: 2.1.8(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
'@radix-ui/react-slot':
specifier: ^1.2.4
- version: 1.2.4(@types/react@19.2.10)(react@19.2.4)
+ version: 1.2.4(@types/react@19.2.10)(react@19.2.6)
'@radix-ui/react-tabs':
specifier: ^1.1.13
- version: 1.1.13(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ version: 1.1.13(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
'@stomp/stompjs':
specifier: ^7.1.1
version: 7.2.1
'@tailwindcss/vite':
specifier: ^4.0.6
- version: 4.1.18(vite@7.3.1(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))
- '@tanstack/react-devtools':
- specifier: ^0.7.0
- version: 0.7.11(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(csstype@3.2.3)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(solid-js@1.9.11)
+ version: 4.1.18(vite@8.0.14(@types/node@22.19.7)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))
'@tanstack/react-query':
specifier: ^5.84.1
- version: 5.90.19(react@19.2.4)
- '@tanstack/react-router':
- specifier: ^1.132.0
- version: 1.158.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@tanstack/react-router-devtools':
- specifier: ^1.132.0
- version: 1.158.0(@tanstack/react-router@1.158.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@tanstack/router-core@1.158.0)(csstype@3.2.3)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@tanstack/react-router-ssr-query':
- specifier: ^1.132.0
- version: 1.158.0(@tanstack/query-core@5.90.19)(@tanstack/react-query@5.90.19(react@19.2.4))(@tanstack/react-router@1.158.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@tanstack/router-core@1.158.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@tanstack/react-start':
- specifier: ^1.132.0
- version: 1.158.0(crossws@0.4.4(srvx@0.10.1))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(vite@7.3.1(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(webpack@5.104.1)
- '@tanstack/router-plugin':
- specifier: ^1.132.0
- version: 1.158.0(@tanstack/react-router@1.158.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(vite@7.3.1(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(webpack@5.104.1)
+ version: 5.90.19(react@19.2.6)
axios:
specifier: ^1.6.7
version: 1.13.2
@@ -79,44 +61,35 @@ importers:
version: 4.1.0
lucide-react:
specifier: ^0.561.0
- version: 0.561.0(react@19.2.4)
- nitro:
- specifier: npm:nitro-nightly@latest
- version: nitro-nightly@3.0.1-20260202-124820-1954b824(chokidar@3.6.0)(lru-cache@11.2.5)(rollup@4.55.1)(vite@7.3.1(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))
+ version: 0.561.0(react@19.2.6)
react:
- specifier: ^19.2.0
- version: 19.2.4
+ specifier: ^19.2.6
+ version: 19.2.6
react-dom:
- specifier: ^19.2.0
- version: 19.2.4(react@19.2.4)
+ specifier: ^19.2.6
+ version: 19.2.6(react@19.2.6)
sockjs-client:
specifier: ^1.6.1
version: 1.6.1
sonner:
specifier: ^2.0.7
- version: 2.0.7(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ version: 2.0.7(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
tailwind-merge:
specifier: ^3.0.2
version: 3.4.0
tailwindcss:
specifier: ^4.0.6
version: 4.1.18
- vite-tsconfig-paths:
- specifier: ^6.0.2
- version: 6.0.5(typescript@5.9.3)(vite@7.3.1(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))
devDependencies:
'@biomejs/biome':
specifier: 2.2.4
version: 2.2.4
- '@tanstack/devtools-vite':
- specifier: ^0.3.11
- version: 0.3.12(vite@7.3.1(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))
'@testing-library/dom':
specifier: ^10.4.0
version: 10.4.1
'@testing-library/react':
specifier: ^16.2.0
- version: 16.3.2(@testing-library/dom@10.4.1)(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ version: 16.3.2(@testing-library/dom@10.4.1)(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
'@types/node':
specifier: ^22.10.2
version: 22.19.7
@@ -130,20 +103,29 @@ importers:
specifier: ^1.5.4
version: 1.5.4
'@vitejs/plugin-react':
- specifier: ^5.0.4
- version: 5.1.3(vite@7.3.1(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))
+ specifier: ^6.0.2
+ version: 6.0.2(vite@8.0.14(@types/node@22.19.7)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))
+ '@vitejs/plugin-rsc':
+ specifier: ^0.5.26
+ version: 0.5.26(react-dom@19.2.6(react@19.2.6))(react-server-dom-webpack@19.2.6(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(webpack@5.104.1(esbuild@0.27.2)))(react@19.2.6)(vite@8.0.14(@types/node@22.19.7)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))
jsdom:
specifier: ^27.0.0
version: 27.4.0
+ react-server-dom-webpack:
+ specifier: ^19.2.6
+ version: 19.2.6(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(webpack@5.104.1(esbuild@0.27.2))
typescript:
specifier: ^5.7.2
version: 5.9.3
+ vinext:
+ specifier: ^0.0.51
+ version: 0.0.51(@vitejs/plugin-react@6.0.2(vite@8.0.14(@types/node@22.19.7)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)))(@vitejs/plugin-rsc@0.5.26(react-dom@19.2.6(react@19.2.6))(react-server-dom-webpack@19.2.6(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(webpack@5.104.1(esbuild@0.27.2)))(react@19.2.6)(vite@8.0.14(@types/node@22.19.7)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)))(next@14.2.35(@opentelemetry/api@1.9.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(react-dom@19.2.6(react@19.2.6))(react-server-dom-webpack@19.2.6(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(webpack@5.104.1(esbuild@0.27.2)))(react@19.2.6)(typescript@5.9.3)(vite@8.0.14(@types/node@22.19.7)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))
vite:
- specifier: ^7.1.7
- version: 7.3.1(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)
+ specifier: ^8.0.14
+ version: 8.0.14(@types/node@22.19.7)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)
vitest:
specifier: ^3.0.5
- version: 3.2.4(@types/node@22.19.7)(jiti@2.6.1)(jsdom@27.4.0)(lightningcss@1.30.2)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)
+ version: 3.2.4(@types/node@22.19.7)(jiti@2.6.1)(jsdom@27.4.0)(lightningcss@1.32.0)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)
web-vitals:
specifier: ^5.1.0
version: 5.1.0
@@ -335,18 +317,10 @@ packages:
'@asamuzakjp/nwsapi@2.3.9':
resolution: {integrity: sha512-n8GuYSrI9bF7FFZ/SjhwevlHc8xaVlb/7HmHelnc/PZXBD2ZR49NnN9sMMuDdEGPeeRQ5d0hqlSlEpgCX3Wl0Q==}
- '@babel/code-frame@7.27.1':
- resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
- engines: {node: '>=6.9.0'}
-
'@babel/code-frame@7.28.6':
resolution: {integrity: sha512-JYgintcMjRiCvS8mMECzaEn+m3PfoQiyqukOMCCVQtoJGYJw8j/8LBJEiqkHLkfwCcs74E3pbAUFNg7d9VNJ+Q==}
engines: {node: '>=6.9.0'}
- '@babel/code-frame@7.29.0':
- resolution: {integrity: sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==}
- engines: {node: '>=6.9.0'}
-
'@babel/compat-data@7.28.6':
resolution: {integrity: sha512-2lfu57JtzctfIrcGMz992hyLlByuzgIk58+hhGCxjKZ3rWI82NnVLjXcaTqkI2NvlcvOskZaiZ5kjUALo3Lpxg==}
engines: {node: '>=6.9.0'}
@@ -355,18 +329,10 @@ packages:
resolution: {integrity: sha512-H3mcG6ZDLTlYfaSNi0iOKkigqMFvkTKlGUYlD8GW7nNOYRrevuA46iTypPyv+06V3fEmvvazfntkBU34L0azAw==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.29.0':
- resolution: {integrity: sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==}
- engines: {node: '>=6.9.0'}
-
'@babel/generator@7.28.6':
resolution: {integrity: sha512-lOoVRwADj8hjf7al89tvQ2a1lf53Z+7tiXMgpZJL3maQPDxh0DgLMN62B2MKUOFcoodBHLMbDM6WAbKgNy5Suw==}
engines: {node: '>=6.9.0'}
- '@babel/generator@7.29.0':
- resolution: {integrity: sha512-vSH118/wwM/pLR38g/Sgk05sNtro6TlTJKuiMXDaZqPUfjTFcudpCOt00IhOfj+1BFAX+UFAlzCU+6WXr3GLFQ==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-annotate-as-pure@7.27.3':
resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==}
engines: {node: '>=6.9.0'}
@@ -459,11 +425,6 @@ packages:
engines: {node: '>=6.0.0'}
hasBin: true
- '@babel/parser@7.29.0':
- resolution: {integrity: sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==}
- engines: {node: '>=6.0.0'}
- hasBin: true
-
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.28.5':
resolution: {integrity: sha512-87GDMS3tsmMSi/3bWOte1UblL+YUTFMV8SZPZ2eSEL17s74Cw/l63rR6NmGVKMYW2GYi85nE+/d6Hw5N0bEk2Q==}
engines: {node: '>=6.9.0'}
@@ -782,18 +743,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx-self@7.27.1':
- resolution: {integrity: sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-react-jsx-source@7.27.1':
- resolution: {integrity: sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-react-jsx@7.28.6':
resolution: {integrity: sha512-61bxqhiRfAACulXSLd/GxqmAedUSrRZIu/cbaT18T1CetkTmtDN15it7i80ru4DVqRK1WMxQhXs+Lf9kajm5Ow==}
engines: {node: '>=6.9.0'}
@@ -919,18 +868,10 @@ packages:
resolution: {integrity: sha512-fgWX62k02qtjqdSNTAGxmKYY/7FSL9WAS1o2Hu5+I5m9T0yxZzr4cnrfXQ/MX0rIifthCSs6FKTlzYbJcPtMNg==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.29.0':
- resolution: {integrity: sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==}
- engines: {node: '>=6.9.0'}
-
'@babel/types@7.28.6':
resolution: {integrity: sha512-0ZrskXVEHSWIqZM/sQZ4EV3jZJXRkio/WCxaqKZP1g//CEWEPSfeZFcms4XeKBCHU0ZKnIkdJeU/kF+eRp5lBg==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.29.0':
- resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==}
- engines: {node: '>=6.9.0'}
-
'@biomejs/biome@2.2.4':
resolution: {integrity: sha512-TBHU5bUy/Ok6m8c0y3pZiuO/BZoY/OcGxoLlrfQof5s8ISVwbVBdFINPQZyFfKwil8XibYWb7JMwnT8wT4WVPg==}
engines: {node: '>=14.21.3'}
@@ -1141,14 +1082,14 @@ packages:
resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==}
engines: {node: '>=10.0.0'}
- '@emnapi/core@1.8.1':
- resolution: {integrity: sha512-AvT9QFpxK0Zd8J0jopedNm+w/2fIzvtPKPjqyw9jwvBaReTTqPBk9Hixaz7KbjimP+QNz605/XnjFcDAL2pqBg==}
+ '@emnapi/core@1.10.0':
+ resolution: {integrity: sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==}
- '@emnapi/runtime@1.8.1':
- resolution: {integrity: sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg==}
+ '@emnapi/runtime@1.10.0':
+ resolution: {integrity: sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==}
- '@emnapi/wasi-threads@1.1.0':
- resolution: {integrity: sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==}
+ '@emnapi/wasi-threads@1.2.1':
+ resolution: {integrity: sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==}
'@esbuild/aix-ppc64@0.27.2':
resolution: {integrity: sha512-GZMB+a0mOMZs4MpDbj8RJp4cw+w1WV5NYD6xzgvzUJ5Ek2jerwfO2eADyI6ExDSUED+1X8aMbegahsJi+8mgpw==}
@@ -1436,8 +1377,11 @@ packages:
'@js-sdsl/ordered-map@4.4.2':
resolution: {integrity: sha512-iUKgm52T8HOE/makSxjqoWhe95ZJA1/G1sYsGev2JDKUSS14KAgg1LHb+Ba+IPow0xflbnSkOsZcO08C7w1gYw==}
- '@napi-rs/wasm-runtime@1.1.1':
- resolution: {integrity: sha512-p64ah1M1ld8xjWv3qbvFwHiFVWrq1yFvV4f7w+mzaqiR4IlSgkqhcRdHwsGgomwzBH51sRY4NEowLxnaBjcW/A==}
+ '@napi-rs/wasm-runtime@1.1.4':
+ resolution: {integrity: sha512-3NQNNgA1YSlJb/kMH1ildASP9HW7/7kYnRI2szWJaofaS1hWmbGI4H+d3+22aGzXXN9IJ+n+GiFVcGipJP18ow==}
+ peerDependencies:
+ '@emnapi/core': ^1.7.1
+ '@emnapi/runtime': ^1.7.1
'@next/bundle-analyzer@16.1.6':
resolution: {integrity: sha512-ee2kagdTaeEWPlotgdTOqFHYcD3e2m2bbE3I9Rq2i6ABYi5OgopmtEUe8NM23viaYxLV2tDH/2nd5+qKoEr6cw==}
@@ -1517,22 +1461,6 @@ packages:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
- '@oozcitak/dom@2.0.2':
- resolution: {integrity: sha512-GjpKhkSYC3Mj4+lfwEyI1dqnsKTgwGy48ytZEhm4A/xnH/8z9M3ZVXKr/YGQi3uCLs1AEBS+x5T2JPiueEDW8w==}
- engines: {node: '>=20.0'}
-
- '@oozcitak/infra@2.0.2':
- resolution: {integrity: sha512-2g+E7hoE2dgCz/APPOEK5s3rMhJvNxSMBrP+U+j1OWsIbtSpWxxlUjq1lU8RIsFJNYv7NMlnVsCuHcUzJW+8vA==}
- engines: {node: '>=20.0'}
-
- '@oozcitak/url@3.0.0':
- resolution: {integrity: sha512-ZKfET8Ak1wsLAiLWNfFkZc/BraDccuTJKR6svTYc7sVjbR+Iu0vtXdiDMY4o6jaFl5TW2TlS7jbLl4VovtAJWQ==}
- engines: {node: '>=20.0'}
-
- '@oozcitak/util@10.0.0':
- resolution: {integrity: sha512-hAX0pT/73190NLqBPPWSdBVGtbY6VOhWYK3qqHqtXQ1gK7kS2yz4+ivsN07hpJ6I3aeMtKP6J6npsEKOAzuTLA==}
- engines: {node: '>=20.0'}
-
'@opentelemetry/api-logs@0.208.0':
resolution: {integrity: sha512-CjruKY9V6NMssL/T1kAFgzosF1v9o6oeN+aX5JB/C/xPNtmgIJqcXHG7fA82Ou1zCpWGl4lROQUKwUNE1pMCyg==}
engines: {node: '>=8.0.0'}
@@ -1723,243 +1651,8 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.1.0
- '@oxc-minify/binding-android-arm-eabi@0.112.0':
- resolution: {integrity: sha512-m7TGBR2hjsBJIN9UJ909KBoKsuogo6CuLsHKvUIBXdjI0JVHP8g4ZHeB+BJpGn5LJdeSGDfz9MWiuXrZDRzunw==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [arm]
- os: [android]
-
- '@oxc-minify/binding-android-arm64@0.112.0':
- resolution: {integrity: sha512-RvxOOkzvP5NeeoraBtgNJSBqO+XzlS7DooxST/drAXCfO52GsmxVB1N7QmifrsTYtH8GC2z3DTFjZQ1w/AJOWg==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [arm64]
- os: [android]
-
- '@oxc-minify/binding-darwin-arm64@0.112.0':
- resolution: {integrity: sha512-hDslO3uVHza3kB9zkcsi25JzN65Gj5ZYty0OvylS11Mhg9ydCYxAzfQ/tISHW/YmV1NRUJX8+GGqM1cKmrHaTA==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [arm64]
- os: [darwin]
-
- '@oxc-minify/binding-darwin-x64@0.112.0':
- resolution: {integrity: sha512-mWA2Y5bUyNoGM+gSGGHesgtQ3LDWgpRe4zDGkBDovxNIiDLBXqu/7QcuS+G918w8oG9VYm1q1iinILer/2pD1Q==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [x64]
- os: [darwin]
-
- '@oxc-minify/binding-freebsd-x64@0.112.0':
- resolution: {integrity: sha512-T7fsegxcy82xS0jWPXkz/BMhrkb3D7YOCiV0R9pDksjaov+iIFoNEWAoBsaC5NtpdzkX+bmffwDpu336EIfEeg==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [x64]
- os: [freebsd]
-
- '@oxc-minify/binding-linux-arm-gnueabihf@0.112.0':
- resolution: {integrity: sha512-yePavbIilAcpVYc8vRsDCn3xJxHMXDZIiamyH9fuLosAHNELcLib4/JR4fhDk4NmHVagQH3kRhsnm5Q9cm3pAw==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [arm]
- os: [linux]
-
- '@oxc-minify/binding-linux-arm-musleabihf@0.112.0':
- resolution: {integrity: sha512-lmPWLXtW6FspERhy97iP0hwbmLtL66xI29QQ9GpHmTiE4k+zv/FaefuV/Qw+LuHnmFSYzUNrLcxh4ulOZTIP2g==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [arm]
- os: [linux]
-
- '@oxc-minify/binding-linux-arm64-gnu@0.112.0':
- resolution: {integrity: sha512-gySS5XqU5MKs/oCjsTlVm8zb8lqcNKHEANsaRmhW2qvGKJoeGwFb6Fbq6TLCZMRuk143mLbncbverBCa1c3dog==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [arm64]
- os: [linux]
-
- '@oxc-minify/binding-linux-arm64-musl@0.112.0':
- resolution: {integrity: sha512-IRFMZX589lr3rjG0jc8N261/7wqFq2Vl0OMrJWeFls5BF8HiB+fRYuf0Zy2CyRH6NCY2vbdDdp+QCAavQGVsGw==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [arm64]
- os: [linux]
-
- '@oxc-minify/binding-linux-ppc64-gnu@0.112.0':
- resolution: {integrity: sha512-V/69XqIW9hCUceDpcZh79oDg+F4ptEgIfKRENzYs41LRbSoJ7sNjjcW4zifqyviTvzcnXLgK4uoTyoymmNZBMQ==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [ppc64]
- os: [linux]
-
- '@oxc-minify/binding-linux-riscv64-gnu@0.112.0':
- resolution: {integrity: sha512-zghvexySyGXGNW+MutjZN7UGTyOQl56RWMlPe1gb+knBm/+0hf9qjk7Q6ofm2tSte+vQolPfQttifGl0dP9uvQ==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [riscv64]
- os: [linux]
-
- '@oxc-minify/binding-linux-riscv64-musl@0.112.0':
- resolution: {integrity: sha512-E4a8VUFDJPb2mPcc7J4NQQPi1ssHKF7/g4r6KD2+SBVERIaEEd3cGNqR7SG3g82/BLGV2UDoQe/WvZCkt5M/bQ==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [riscv64]
- os: [linux]
-
- '@oxc-minify/binding-linux-s390x-gnu@0.112.0':
- resolution: {integrity: sha512-2Hx87sK3y6jBV364Mvv0zyxiITIuy26Ixenv6pK7e+4an3HgNdhAj8nk3aLoLTTSvLik5/MaGhcZGEu9tYV1aA==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [s390x]
- os: [linux]
-
- '@oxc-minify/binding-linux-x64-gnu@0.112.0':
- resolution: {integrity: sha512-2MSCnEPLk9ddSouMhJo78Xy2/JbYC80OYzWdR4yWTGSULsgH3d1VXg73DSwFL8vU7Ad9oK10DioBY2ww7sQTEg==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [x64]
- os: [linux]
-
- '@oxc-minify/binding-linux-x64-musl@0.112.0':
- resolution: {integrity: sha512-HAPfmQKlkVi97/zRonVE9t/kKUG3ni+mOuU1Euw+3s37KwUuOJjmcwXdclVgXKBlTkCGO0FajPwW5dAJeIXCCw==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [x64]
- os: [linux]
-
- '@oxc-minify/binding-openharmony-arm64@0.112.0':
- resolution: {integrity: sha512-bLnMojcPadYzMNpB6IAqMiTOag4etc0zbs8On73JsotO1W5c5/j/ncplpSokpEpNasKRUpHVRXpmq0KRXprNhw==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [arm64]
- os: [openharmony]
-
- '@oxc-minify/binding-wasm32-wasi@0.112.0':
- resolution: {integrity: sha512-tv7PmHYq/8QBlqMaDjsy51GF5KQkG17Yc/PsgB5OVndU34kwbQuebBIic7UfK9ygzidI8moYq3ztnu3za/rqHw==}
- engines: {node: '>=14.0.0'}
- cpu: [wasm32]
-
- '@oxc-minify/binding-win32-arm64-msvc@0.112.0':
- resolution: {integrity: sha512-d+jes2jwRkcBSpcaZC6cL8GBi56Br6uAorn9dfquhWLczWL+hHSvvVrRgT1i5/6dkf5UWx2zdoEsAMiJ11w78A==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [arm64]
- os: [win32]
-
- '@oxc-minify/binding-win32-ia32-msvc@0.112.0':
- resolution: {integrity: sha512-TV1C3qDwj7//jNIi5tnNRhReSUgtaRQKi5KobDE6zVAc5gjeuBA8G2qizS9ziXlf/I0dlelrGmGMMDJmH9ekWg==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [ia32]
- os: [win32]
-
- '@oxc-minify/binding-win32-x64-msvc@0.112.0':
- resolution: {integrity: sha512-LML2Gld6VY8/+7a3VH4k1qngsBXvTkXgbmYgSYwaElqtiQiYaAcXfi0XKOUGe3k3GbBK4juAGixC31CrdFHAQw==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [x64]
- os: [win32]
-
- '@oxc-transform/binding-android-arm-eabi@0.112.0':
- resolution: {integrity: sha512-r4LuBaPnOAi0eUOBNi880Fm2tO2omH7N1FRrL6+nyz/AjQ+QPPLtoyZJva0O+sKi1buyN/7IzM5p9m+5ANSDbg==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [arm]
- os: [android]
-
- '@oxc-transform/binding-android-arm64@0.112.0':
- resolution: {integrity: sha512-ve46vQcQrY8eGe8990VSlS9gkD+AogJqbtfOkeua+5sQGQTDgeIRRxOm7ktCo19uZc2bEBwXRJITgosd+NRVmQ==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [arm64]
- os: [android]
-
- '@oxc-transform/binding-darwin-arm64@0.112.0':
- resolution: {integrity: sha512-ddbmLU3Tr+i7MOynfwAXxUXud3SjJKlv7XNjaq08qiI8Av/QvhXVGc2bMhXkWQSMSBUeTDoiughKjK+Zsb6y/A==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [arm64]
- os: [darwin]
-
- '@oxc-transform/binding-darwin-x64@0.112.0':
- resolution: {integrity: sha512-TKvmNw96jQZPqYb4pRrzLFDailNB3YS14KNn+x2hwRbqc6CqY96S9PYwyOpVpYdxfoRjYO9WgX9SoS+62a1DPA==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [x64]
- os: [darwin]
-
- '@oxc-transform/binding-freebsd-x64@0.112.0':
- resolution: {integrity: sha512-YPMkSCDaelO8HHYRMYjm+Q+IfkfIbdtQzwPuasItYkq8UUkNeHNPheNh2JkvQa3c+io3E9ePOgHQ2yihpk7o/Q==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [x64]
- os: [freebsd]
-
- '@oxc-transform/binding-linux-arm-gnueabihf@0.112.0':
- resolution: {integrity: sha512-nA7kzQGNEpuTRknst/IJ3l8hqmDmEda3aun6jkXgp7gKxESjuHeaNH04mKISxvJ7fIacvP2g/wtTSnm4u5jL8Q==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [arm]
- os: [linux]
-
- '@oxc-transform/binding-linux-arm-musleabihf@0.112.0':
- resolution: {integrity: sha512-w8GuLmckKlGc3YujaZKhtbFxziCcosvM2l9GnQjCb/yENWLGDiyQOy0BTAgPGdJwpYTiOeJblEXSuXYvlE1Ong==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [arm]
- os: [linux]
-
- '@oxc-transform/binding-linux-arm64-gnu@0.112.0':
- resolution: {integrity: sha512-9LwwGnJ8+WT0rXcrI8M0RJtDNt91eMqcDPPEvJxhRFHIMcHTy5D5xT+fOl3Us0yMqKo3HUWkbfUYqAp4GoZ3Jw==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [arm64]
- os: [linux]
-
- '@oxc-transform/binding-linux-arm64-musl@0.112.0':
- resolution: {integrity: sha512-Lg6VOuSd3oXv7J0eGywgqh/086h+qQzIBOD+47pYKMTTJcbDe+f3h/RgGoMKJE5HhiwT5sH1aGEJfIfaYUiVSw==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [arm64]
- os: [linux]
-
- '@oxc-transform/binding-linux-ppc64-gnu@0.112.0':
- resolution: {integrity: sha512-PXzmj82o1moA4IGphYImTRgc2youTi4VRfyFX3CHwLjxPcQ5JtcsgbDt4QUdOzXZ+zC07s5jf2ZzhRapEOlj2w==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [ppc64]
- os: [linux]
-
- '@oxc-transform/binding-linux-riscv64-gnu@0.112.0':
- resolution: {integrity: sha512-vhJsMsVH/6xwa3bt1LGts33FXUkGjaEGDwsRyp4lIfOjSfQVWMtCmWMFNaA0dW9FVWdD2Gt2fSFBSZ+azDxlpg==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [riscv64]
- os: [linux]
-
- '@oxc-transform/binding-linux-riscv64-musl@0.112.0':
- resolution: {integrity: sha512-cXWFb7z+2IjFUEcXtRwluq9oEG5qnyFCjiu3SWrgYNcWwPdHusv3I/7K5/CTbbi4StoZ5txbi7/iSfDHNyWuRw==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [riscv64]
- os: [linux]
-
- '@oxc-transform/binding-linux-s390x-gnu@0.112.0':
- resolution: {integrity: sha512-eEFu4SRqJTJ20/88KRWmp+jpHKAw0Y1DsnSgpEeXyBIIcsOaLIUMU/TfYWUmqRbvbMV9rmOmI3kp5xWYUq6kSQ==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [s390x]
- os: [linux]
-
- '@oxc-transform/binding-linux-x64-gnu@0.112.0':
- resolution: {integrity: sha512-ST1MDT+TlOyZ1c5btrGinRSUW2Jf4Pa+0gdKwsyjDSOC3dxy2ZNkN3mosTf4ywc3J+mxfYKqtjs7zSwHz03ILA==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [x64]
- os: [linux]
-
- '@oxc-transform/binding-linux-x64-musl@0.112.0':
- resolution: {integrity: sha512-ISQoA3pD4cyTGpf9sXXeerH6pL2L6EIpdy6oAy2ttkswyVFDyQNVOVIGIdLZDgbpmqGljxZnWqt/J/N68pQaig==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [x64]
- os: [linux]
-
- '@oxc-transform/binding-openharmony-arm64@0.112.0':
- resolution: {integrity: sha512-UOGVrGIv7yLJovyEXEyUTADuLq98vd/cbMHFLJweRXD+11I8Tn4jASi4WzdsN8C3BVYGRHrXH2NlSBmhz33a4g==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [arm64]
- os: [openharmony]
-
- '@oxc-transform/binding-wasm32-wasi@0.112.0':
- resolution: {integrity: sha512-XIX7Gpq9koAvzBVHDlVFHM79r5uOVK6kTEsdsN4qaajpjkgtv4tdsAOKIYK6l7fUbsbE6xS+6w1+yRFrDeC1kg==}
- engines: {node: '>=14.0.0'}
- cpu: [wasm32]
-
- '@oxc-transform/binding-win32-arm64-msvc@0.112.0':
- resolution: {integrity: sha512-EgXef9kOne9BNsbYBbuRqxk2hteT0xsAGcx/VbtCBMJYNj8fANFhT271DUSOgfa4DAgrQQmsyt/Kr1aV9mpU9w==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [arm64]
- os: [win32]
-
- '@oxc-transform/binding-win32-ia32-msvc@0.112.0':
- resolution: {integrity: sha512-6QaB0qjNaou2YR+blncHdw7j0e26IOwOIjLbhVGDeuf9+4rjJeiqRXJ2hOtCcS4zblnao/MjdgQuZ3fM0nl+Kw==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [ia32]
- os: [win32]
-
- '@oxc-transform/binding-win32-x64-msvc@0.112.0':
- resolution: {integrity: sha512-FRKYlY959QeqRPx9kXs0HjU2xuXPT1cdF+vvA200D9uAX/KLcC34MwRqUKTYml4kCc2Vf/P2pBR9cQuBm3zECQ==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [x64]
- os: [win32]
+ '@oxc-project/types@0.132.0':
+ resolution: {integrity: sha512-FESMOxil5Se014ui/Eq8fT5uHJo6nIRwH0PfJrZJXs6Gek3ZVFOrpUv3YIZT20m+extU98Hg1Ym72U58rlsxUQ==}
'@pkgjs/parseargs@0.11.0':
resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
@@ -2376,11 +2069,104 @@ packages:
'@react-google-maps/marker-clusterer@2.20.0':
resolution: {integrity: sha512-tieX9Va5w1yP88vMgfH1pHTacDQ9TgDTjox3tLlisKDXRQWdjw+QeVVghhf5XqqIxXHgPdcGwBvKY6UP+SIvLw==}
- '@rolldown/pluginutils@1.0.0-beta.40':
- resolution: {integrity: sha512-s3GeJKSQOwBlzdUrj4ISjJj5SfSh+aqn0wjOar4Bx95iV1ETI7F6S/5hLcfAxZ9kXDcyrAkxPlqmd1ZITttf+w==}
+ '@resvg/resvg-wasm@2.4.0':
+ resolution: {integrity: sha512-C7c51Nn4yTxXFKvgh2txJFNweaVcfUPQxwEUFw4aWsCmfiBDJsTSwviIF8EcwjQ6k8bPyMWCl1vw4BdxE569Cg==}
+ engines: {node: '>= 10'}
+
+ '@rolldown/binding-android-arm64@1.0.2':
+ resolution: {integrity: sha512-ZS4D1JPGn/MYQN/SYDWftIE/nVsM8j/AFOYEzAoOE2O3NktQOZru+/vYXGbR/qtdLdIfGCP0lcoJiYVzsEz+iQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [android]
+
+ '@rolldown/binding-darwin-arm64@1.0.2':
+ resolution: {integrity: sha512-vdFA9+C/rekyGce7WqHs/xoT0ioZEWaOFyZLIV1mEeNFaFDUQrPIo8Vs2GvJ6eetb3rzDUtUBgzto3ExpXJB3w==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@rolldown/binding-darwin-x64@1.0.2':
+ resolution: {integrity: sha512-BewSOwTHazv77DTYiAZXSqqKZ4KP/KonFisDMVU7PImxoWfB2aepnPhd2E4SWz3zDzYgDNbs6jBmTdgNnF02GA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [darwin]
+
+ '@rolldown/binding-freebsd-x64@1.0.2':
+ resolution: {integrity: sha512-m41o7M0YWtUdqk61Tb+jnKb2rN++iRdIASlExkUoKfIAH30DOHCB8fVLzSUpbWHHU8esmEioY62PxzexE8MBuA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@rolldown/binding-linux-arm-gnueabihf@1.0.2':
+ resolution: {integrity: sha512-jcojB9H7W/jS29pMKWAK1N+fU99vXodHDTatS3b3y/XSOCiHo0kkA74pL3jJmkoQtYpOCxDvaKs1fo2Ij/1X5w==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm]
+ os: [linux]
+
+ '@rolldown/binding-linux-arm64-gnu@1.0.2':
+ resolution: {integrity: sha512-1jn6qDU5iiOgFgygDzKUuKP0maTi0/f1+sBLgvij/76C77Nm3ts6ufz9Bjg5q5dduxiUIxtq86JIoBvo1xQ4Ig==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [linux]
+
+ '@rolldown/binding-linux-arm64-musl@1.0.2':
+ resolution: {integrity: sha512-QVLO/czFMdoMFSqlX3bcswcJNm/23r+qoa/jgtmFc/qEp6/jXmIkDjF/XIo8dPfGaiwy1xfQn8o77L79GeXFgw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [linux]
+
+ '@rolldown/binding-linux-ppc64-gnu@1.0.2':
+ resolution: {integrity: sha512-hgO5Abm0w5UL6FEa2iFnZqo2KlK7TQ5QhV5x09hujBf7t5KzHQ1VmfPuTpqRy/rNlSxua3eWH374xxiVrP+lcA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [ppc64]
+ os: [linux]
+
+ '@rolldown/binding-linux-s390x-gnu@1.0.2':
+ resolution: {integrity: sha512-fy8rXxuYEu602abC8MUNaPjYLIFzReOaEIEMKMUa0rFEUxNpVXhs15KSSQ4qlqSaM7B6rcj9rDZgADh/IGDzLQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [s390x]
+ os: [linux]
+
+ '@rolldown/binding-linux-x64-gnu@1.0.2':
+ resolution: {integrity: sha512-0+bOkiQ779+r1WpoHOWHqncvyySci0vKph+myNDYb+im6meJAzHQXay6oEgnkHuUGouM1LKTZwqKpBow6Kj7CQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [linux]
+
+ '@rolldown/binding-linux-x64-musl@1.0.2':
+ resolution: {integrity: sha512-mjSkrzZK5Qsl0a9d1JgILOiuZOSDTVdKENcSXBoqbzSrspLR/4/IRVDo5wd2GgZjNss/viBFJdeq+j7qH2nypw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [linux]
+
+ '@rolldown/binding-openharmony-arm64@1.0.2':
+ resolution: {integrity: sha512-1v5vHasdfQAZoEHakBV72LIFAC9JjnymsiKxp+GEr/ma3+NJCPSaYK+qavInOovJkgwFrs7GccX2d6IgDA3Z5w==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [openharmony]
+
+ '@rolldown/binding-wasm32-wasi@1.0.2':
+ resolution: {integrity: sha512-mb1VobWn6NheziTk5/WEaR6AKVbrwT5sOi6C7zk3gy/pD1qtJfU1j4PgTo2NJnOtbL9Dl3Aeei8w9jJ7qC2jZQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [wasm32]
+
+ '@rolldown/binding-win32-arm64-msvc@1.0.2':
+ resolution: {integrity: sha512-SqKonF56vA/L2yHwHYcEp2P34URpOZ7d1fS635cTkpDnUtEGdUbhI6NzsPdqeSWvAAeGDrxjWjNmibDIdFf9/A==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [win32]
+
+ '@rolldown/binding-win32-x64-msvc@1.0.2':
+ resolution: {integrity: sha512-v7qRI7gXLRINcOGXt+7YmAZ6iFuyZVMIoXAxhd8oP+DR9dLfL9GfNIx7PLMxmhZdvq8waUJBQiWN9EKNy+TRBQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [win32]
- '@rolldown/pluginutils@1.0.0-rc.2':
- resolution: {integrity: sha512-izyXV/v+cHiRfozX62W9htOAvwMo4/bXKDrQ+vom1L1qRuexPock/7VZDAhnpHCLNejd3NJ6hiab+tO0D44Rgw==}
+ '@rolldown/pluginutils@1.0.0-rc.18':
+ resolution: {integrity: sha512-CUY5Mnhe64xQBGZEEXQ5WyZwsc1JU3vAZLIxtrsBt3LO6UOb+C8GunVKqe9sT8NeWb4lqSaoJtp2xo6GxT1MNw==}
+
+ '@rolldown/pluginutils@1.0.1':
+ resolution: {integrity: sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==}
'@rollup/plugin-commonjs@28.0.1':
resolution: {integrity: sha512-+tNWdlWKbpB3WgBN7ijjYkq9X5uhjmcvyjEght4NmH5fAU++zfQzAJ6wumLS+dNcvwEZhKx2Z+skY8m7v0wGSA==}
@@ -2657,38 +2443,13 @@ packages:
peerDependencies:
webpack: '>=4.40.0'
- '@solid-primitives/event-listener@2.4.3':
- resolution: {integrity: sha512-h4VqkYFv6Gf+L7SQj+Y6puigL/5DIi7x5q07VZET7AWcS+9/G3WfIE9WheniHWJs51OEkRB43w6lDys5YeFceg==}
- peerDependencies:
- solid-js: ^1.6.12
+ '@shuding/opentype.js@1.4.0-beta.0':
+ resolution: {integrity: sha512-3NgmNyH3l/Hv6EvsWJbsvpcpUba6R8IREQ83nH83cyakCw7uM1arZKNfHwv1Wz6jgqrF/j4x5ELvR6PnK9nTcA==}
+ engines: {node: '>= 8.0.0'}
+ hasBin: true
- '@solid-primitives/keyboard@1.3.3':
- resolution: {integrity: sha512-9dQHTTgLBqyAI7aavtO+HnpTVJgWQA1ghBSrmLtMu1SMxLPDuLfuNr+Tk5udb4AL4Ojg7h9JrKOGEEDqsJXWJA==}
- peerDependencies:
- solid-js: ^1.6.12
-
- '@solid-primitives/resize-observer@2.1.3':
- resolution: {integrity: sha512-zBLje5E06TgOg93S7rGPldmhDnouNGhvfZVKOp+oG2XU8snA+GoCSSCz1M+jpNAg5Ek2EakU5UVQqL152WmdXQ==}
- peerDependencies:
- solid-js: ^1.6.12
-
- '@solid-primitives/rootless@1.5.2':
- resolution: {integrity: sha512-9HULb0QAzL2r47CCad0M+NKFtQ+LrGGNHZfteX/ThdGvKIg2o2GYhBooZubTCd/RTu2l2+Nw4s+dEfiDGvdrrQ==}
- peerDependencies:
- solid-js: ^1.6.12
-
- '@solid-primitives/static-store@0.1.2':
- resolution: {integrity: sha512-ReK+5O38lJ7fT+L6mUFvUr6igFwHBESZF+2Ug842s7fvlVeBdIVEdTCErygff6w7uR6+jrr7J8jQo+cYrEq4Iw==}
- peerDependencies:
- solid-js: ^1.6.12
-
- '@solid-primitives/utils@6.3.2':
- resolution: {integrity: sha512-hZ/M/qr25QOCcwDPOHtGjxTD8w2mNyVAYvcfgwzBHq2RwNqHNdDNsMZYap20+ruRwW4A3Cdkczyoz0TSxLCAPQ==}
- peerDependencies:
- solid-js: ^1.6.12
-
- '@standard-schema/utils@0.3.0':
- resolution: {integrity: sha512-e7Mew686owMaPJVNNLs55PUvgz371nKgwsc4vxE49zsODpJEnxgxRo2y/OKrqueavXgZNMDVj3DdHFlaSAeU8g==}
+ '@standard-schema/utils@0.3.0':
+ resolution: {integrity: sha512-e7Mew686owMaPJVNNLs55PUvgz371nKgwsc4vxE49zsODpJEnxgxRo2y/OKrqueavXgZNMDVj3DdHFlaSAeU8g==}
'@stomp/stompjs@7.2.1':
resolution: {integrity: sha512-DLd/WeicnHS5SsWWSk3x6/pcivqchNaEvg9UEGVqAcfYEBVmS9D6980ckXjTtfpXLjdLDsd96M7IuX4w7nzq5g==}
@@ -2867,63 +2628,12 @@ packages:
peerDependencies:
vite: ^5.2.0 || ^6 || ^7
- '@tanstack/devtools-client@0.0.3':
- resolution: {integrity: sha512-kl0r6N5iIL3t9gGDRAv55VRM3UIyMKVH83esRGq7xBjYsRLe/BeCIN2HqrlJkObUXQMKhy7i8ejuGOn+bDqDBw==}
- engines: {node: '>=18'}
-
- '@tanstack/devtools-client@0.0.5':
- resolution: {integrity: sha512-hsNDE3iu4frt9cC2ppn1mNRnLKo2uc1/1hXAyY9z4UYb+o40M2clFAhiFoo4HngjfGJDV3x18KVVIq7W4Un+zA==}
- engines: {node: '>=18'}
-
- '@tanstack/devtools-event-bus@0.3.3':
- resolution: {integrity: sha512-lWl88uLAz7ZhwNdLH6A3tBOSEuBCrvnY9Fzr5JPdzJRFdM5ZFdyNWz1Bf5l/F3GU57VodrN0KCFi9OA26H5Kpg==}
- engines: {node: '>=18'}
-
- '@tanstack/devtools-event-client@0.3.5':
- resolution: {integrity: sha512-RL1f5ZlfZMpghrCIdzl6mLOFLTuhqmPNblZgBaeKfdtk5rfbjykurv+VfYydOFXj0vxVIoA2d/zT7xfD7Ph8fw==}
- engines: {node: '>=18'}
-
- '@tanstack/devtools-event-client@0.4.0':
- resolution: {integrity: sha512-RPfGuk2bDZgcu9bAJodvO2lnZeHuz4/71HjZ0bGb/SPg8+lyTA+RLSKQvo7fSmPSi8/vcH3aKQ8EM9ywf1olaw==}
- engines: {node: '>=18'}
-
- '@tanstack/devtools-ui@0.4.4':
- resolution: {integrity: sha512-5xHXFyX3nom0UaNfiOM92o6ziaHjGo3mcSGe2HD5Xs8dWRZNpdZ0Smd0B9ddEhy0oB+gXyMzZgUJb9DmrZV0Mg==}
- engines: {node: '>=18'}
- peerDependencies:
- solid-js: '>=1.9.7'
-
- '@tanstack/devtools-vite@0.3.12':
- resolution: {integrity: sha512-fGJgu4xUhKmGk+a+/aHD8l5HKVk6+ObA+6D3YC3xCXbai/YmaGhztqcZf1tKUqjZyYyQLHsjqmKzvJgVpQP1jw==}
- engines: {node: '>=18'}
- peerDependencies:
- vite: ^6.0.0 || ^7.0.0
-
- '@tanstack/devtools@0.7.0':
- resolution: {integrity: sha512-AlAoCqJhWLg9GBEaoV1g/j+X/WA1aJSWOsekxeuZpYeS2hdVuKAjj04KQLUMJhtLfNl2s2E+TCj7ZRtWyY3U4w==}
- engines: {node: '>=18'}
- peerDependencies:
- solid-js: '>=1.9.7'
-
- '@tanstack/history@1.154.14':
- resolution: {integrity: sha512-xyIfof8eHBuub1CkBnbKNKQXeRZC4dClhmzePHVOEel4G7lk/dW+TQ16da7CFdeNLv6u6Owf5VoBQxoo6DFTSA==}
- engines: {node: '>=12'}
-
'@tanstack/query-core@5.90.19':
resolution: {integrity: sha512-GLW5sjPVIvH491VV1ufddnfldyVB+teCnpPIvweEfkpRx7CfUmUGhoh9cdcUKBh/KwVxk22aNEDxeTsvmyB/WA==}
'@tanstack/query-devtools@5.92.0':
resolution: {integrity: sha512-N8D27KH1vEpVacvZgJL27xC6yPFUy0Zkezn5gnB3L3gRCxlDeSuiya7fKge8Y91uMTnC8aSxBQhcK6ocY7alpQ==}
- '@tanstack/react-devtools@0.7.11':
- resolution: {integrity: sha512-a2Lmz8x+JoDrsU6f7uKRcyyY+k8mA/n5mb9h7XJ3Fz/y3+sPV9t7vAW1s5lyNkQyyDt6V1Oim99faLthoJSxMw==}
- engines: {node: '>=18'}
- peerDependencies:
- '@types/react': '>=16.8'
- '@types/react-dom': '>=16.8'
- react: '>=16.8'
- react-dom: '>=16.8'
-
'@tanstack/react-query-devtools@5.91.2':
resolution: {integrity: sha512-ZJ1503ay5fFeEYFUdo7LMNFzZryi6B0Cacrgr2h1JRkvikK1khgIq6Nq2EcblqEdIlgB/r7XDW8f8DQ89RuUgg==}
peerDependencies:
@@ -2935,151 +2645,15 @@ packages:
peerDependencies:
react: ^18 || ^19
- '@tanstack/react-router-devtools@1.158.0':
- resolution: {integrity: sha512-uhciBlsPW67xbDCFyc2RQS00OergfNXYxendGUO2HGy4uTr79aQSCb4l6v+sdlPwUTlzwkAtM6e1illIexF15Q==}
- engines: {node: '>=12'}
- peerDependencies:
- '@tanstack/react-router': ^1.158.0
- '@tanstack/router-core': ^1.158.0
- react: '>=18.0.0 || >=19.0.0'
- react-dom: '>=18.0.0 || >=19.0.0'
- peerDependenciesMeta:
- '@tanstack/router-core':
- optional: true
-
- '@tanstack/react-router-ssr-query@1.158.0':
- resolution: {integrity: sha512-9krJIPtGQVec7edA710xT4UJimSvIh0gFvJLd4jCIKfPV0Lc00fjmcBlpYKSK33BsefztG6HXVc2nR8nX+8Teg==}
- engines: {node: '>=12'}
- peerDependencies:
- '@tanstack/query-core': '>=5.90.0'
- '@tanstack/react-query': '>=5.90.0'
- '@tanstack/react-router': '>=1.127.0'
- react: '>=18.0.0 || >=19.0.0'
- react-dom: '>=18.0.0 || >=19.0.0'
-
- '@tanstack/react-router@1.158.0':
- resolution: {integrity: sha512-kvTaO6zjq9WWPyo1wwSZx95AjJ9KOvu23cOMgKeDdDQWKF3Z9q3fwhToKMKJoC11T2Vuivz+o/anrxCcOvdRzw==}
- engines: {node: '>=12'}
- peerDependencies:
- react: '>=18.0.0 || >=19.0.0'
- react-dom: '>=18.0.0 || >=19.0.0'
-
- '@tanstack/react-start-client@1.158.0':
- resolution: {integrity: sha512-oxo9+nFzsdiOkMFPs3HuVXola34FD2/kDfzO8wMu+KSsCwSRRhXpS7DGq/myw6AtjqiiFkNHeZqvvrlcH523Aw==}
- engines: {node: '>=22.12.0'}
- peerDependencies:
- react: '>=18.0.0 || >=19.0.0'
- react-dom: '>=18.0.0 || >=19.0.0'
-
- '@tanstack/react-start-server@1.158.0':
- resolution: {integrity: sha512-J1v8mckJIf2DHOg38XMq7X7CCOqiyLCPqKQDP8GXJ2WgjpBk6l+lemBmyhF1+76LxYWHfsQYwAg5W3cJ8+QqrQ==}
- engines: {node: '>=22.12.0'}
- peerDependencies:
- react: '>=18.0.0 || >=19.0.0'
- react-dom: '>=18.0.0 || >=19.0.0'
-
- '@tanstack/react-start@1.158.0':
- resolution: {integrity: sha512-CwfX2XGDVSwim24LWwM24ZxyposE+5Psj2e2PW4YN+AGgfdwm0+1xk9DEmDQp/Vke2OIdhnIXD/IDe7zTGpzcg==}
- engines: {node: '>=22.12.0'}
- peerDependencies:
- react: '>=18.0.0 || >=19.0.0'
- react-dom: '>=18.0.0 || >=19.0.0'
- vite: '>=7.0.0'
-
- '@tanstack/react-store@0.8.0':
- resolution: {integrity: sha512-1vG9beLIuB7q69skxK9r5xiLN3ztzIPfSQSs0GfeqWGO2tGIyInZx0x1COhpx97RKaONSoAb8C3dxacWksm1ow==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
-
'@tanstack/react-virtual@3.13.18':
resolution: {integrity: sha512-dZkhyfahpvlaV0rIKnvQiVoWPyURppl6w4m9IwMDpuIjcJ1sD9YGWrt0wISvgU7ewACXx2Ct46WPgI6qAD4v6A==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
- '@tanstack/router-core@1.158.0':
- resolution: {integrity: sha512-dRMcWY0UB/6OZqSCx/7iUvom0ol18rHSQladygVT8mlth7uxYx3n5BNse8C03efIE8y1Bx+VDOBAKpAZ9BgKog==}
- engines: {node: '>=12'}
-
- '@tanstack/router-devtools-core@1.158.0':
- resolution: {integrity: sha512-8FUKfjh8Xz9T9O5yYaiVE0Va5aCMncQyVPKb7yy5M/buDnx9Kh0bPjw/eUZJWftOyxW6/WeR605yjOdx/PnqNw==}
- engines: {node: '>=12'}
- peerDependencies:
- '@tanstack/router-core': ^1.158.0
- csstype: ^3.0.10
- peerDependenciesMeta:
- csstype:
- optional: true
-
- '@tanstack/router-generator@1.158.0':
- resolution: {integrity: sha512-hVkXQSN/fMD9q3Zn3wNa4PV0Y9VNwQB2bLaecA5i4vc43GX75vmgyiKoMr44BJheUssfVoL/po9a/7sv+N6lKA==}
- engines: {node: '>=12'}
-
- '@tanstack/router-plugin@1.158.0':
- resolution: {integrity: sha512-FxTOo/icU373jlOu9nlzR0B1vqc47tKZLw3HwOQwCBL4P4EihOBz+L7dcGyKR8bRBL0rCRWvHQTSHNMOr+fGYQ==}
- engines: {node: '>=12'}
- peerDependencies:
- '@rsbuild/core': '>=1.0.2'
- '@tanstack/react-router': ^1.158.0
- vite: '>=5.0.0 || >=6.0.0 || >=7.0.0'
- vite-plugin-solid: ^2.11.10
- webpack: '>=5.92.0'
- peerDependenciesMeta:
- '@rsbuild/core':
- optional: true
- '@tanstack/react-router':
- optional: true
- vite:
- optional: true
- vite-plugin-solid:
- optional: true
- webpack:
- optional: true
-
- '@tanstack/router-ssr-query-core@1.158.0':
- resolution: {integrity: sha512-OFtFCYmuVEDo1XcPlcj4HLYZXnmLiX8akJU/4qgE3wjFL8laZCOR6yll9z1Sid8nCaztcD8AKjqzFh0KOGX2Hg==}
- engines: {node: '>=12'}
- peerDependencies:
- '@tanstack/query-core': '>=5.90.0'
- '@tanstack/router-core': '>=1.127.0'
-
- '@tanstack/router-utils@1.158.0':
- resolution: {integrity: sha512-qZ76eaLKU6Ae9iI/mc5zizBX149DXXZkBVVO3/QRIll79uKLJZHQlMKR++2ba7JsciBWz1pgpIBcCJPE9S0LVg==}
- engines: {node: '>=12'}
-
- '@tanstack/start-client-core@1.158.0':
- resolution: {integrity: sha512-nGuzFEuC+yEMd7inPP185K+tcPlHk8rcg8x/t2dAhytM+r4PxyRkvXrHoKMbQKGYR2CArml96UNEKXWxsAtmow==}
- engines: {node: '>=22.12.0'}
-
- '@tanstack/start-fn-stubs@1.154.7':
- resolution: {integrity: sha512-D69B78L6pcFN5X5PHaydv7CScQcKLzJeEYqs7jpuyyqGQHSUIZUjS955j+Sir8cHhuDIovCe2LmsYHeZfWf3dQ==}
- engines: {node: '>=22.12.0'}
-
- '@tanstack/start-plugin-core@1.158.0':
- resolution: {integrity: sha512-KiG4ofL1I3A2p3BJ7qhyfugyKh5KMOIURvftmVc33IWLQaSYvCzCHoyaWfvcHIELbkyFpMwd4EauZH3I80BE8A==}
- engines: {node: '>=22.12.0'}
- peerDependencies:
- vite: '>=7.0.0'
-
- '@tanstack/start-server-core@1.158.0':
- resolution: {integrity: sha512-C5Hgxl79fV8e0sGsFB4akFhmU3zO0FpriyBof7pSKROCEOt8hXq2QstYhb3QVR9KdzKAPR+JHg3BbEOBNUVn7Q==}
- engines: {node: '>=22.12.0'}
-
- '@tanstack/start-storage-context@1.158.0':
- resolution: {integrity: sha512-9wkbgZoMlVIFJGmCrSWeOF9sPveVOw8LwSk1YwKj4tQOXurxdOBoQMvkYy+sxcGkhK6CmGGJqsedKVHK3EZQng==}
- engines: {node: '>=22.12.0'}
-
- '@tanstack/store@0.8.0':
- resolution: {integrity: sha512-Om+BO0YfMZe//X2z0uLF2j+75nQga6TpTJgLJQBiq85aOyZNIhkCgleNcud2KQg4k4v9Y9l+Uhru3qWMPGTOzQ==}
-
'@tanstack/virtual-core@3.13.18':
resolution: {integrity: sha512-Mx86Hqu1k39icq2Zusq+Ey2J6dDWTjDvEv43PJtRCoEYTLyfaPnxIQ6iy7YAOK0NV/qOEmZQ/uCufrppZxTgcg==}
- '@tanstack/virtual-file-routes@1.154.7':
- resolution: {integrity: sha512-cHHDnewHozgjpI+MIVp9tcib6lYEQK5MyUr0ChHpHFGBl8Xei55rohFK0I0ve/GKoHeioaK42Smd8OixPp6CTg==}
- engines: {node: '>=12'}
-
'@testing-library/dom@10.4.1':
resolution: {integrity: sha512-o4PXJQidqJl82ckFaXUeoAW+XysPLauYI43Abki5hABd853iMhitooc6znOnczgbTYmEP6U6/y1ZyKAIsvMKGg==}
engines: {node: '>=18'}
@@ -3113,18 +2687,6 @@ packages:
'@types/aria-query@5.0.4':
resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==}
- '@types/babel__core@7.20.5':
- resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
-
- '@types/babel__generator@7.27.0':
- resolution: {integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==}
-
- '@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/caseless@0.12.5':
resolution: {integrity: sha512-hWtVTC2q7hc7xZ/RLbxapMvDMgUnDvKvMOpKal4DrMyfGBUfB1oKaZlIRr6mJL+If3bAP6sV/QneGzF6tJjZDg==}
@@ -3199,6 +2761,23 @@ packages:
'@types/tough-cookie@4.0.5':
resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==}
+ '@unpic/core@1.0.3':
+ resolution: {integrity: sha512-aum9YNVUGso7MjGLD0Rp/08kywCGLqZ03/q6VQBFFakDBOXWEc8D4kPGcZ8v5wEnGRex3lE+++bOuucBp3KJ/w==}
+
+ '@unpic/react@1.0.2':
+ resolution: {integrity: sha512-5RmRfELwTF8w+4zjtQGqjpvX+RU2VLvis3xDCS1O2uWk0PZN2cvatL+3/KAR3mshAuRrkFGTX1XwyAezSXaoCA==}
+ peerDependencies:
+ next: ^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
+ react: ^17.0.0 || ^18.0.0 || ^19.0.0
+ react-dom: ^17.0.0 || ^18.0.0 || ^19.0.0
+ peerDependenciesMeta:
+ next:
+ optional: true
+
+ '@vercel/og@0.8.6':
+ resolution: {integrity: sha512-hBcWIOppZV14bi+eAmCZj8Elj8hVSUZJTpf1lgGBhVD85pervzQ1poM/qYfFUlPraYSZYP+ASg6To5BwYmUSGQ==}
+ engines: {node: '>=16'}
+
'@vercel/speed-insights@1.3.1':
resolution: {integrity: sha512-PbEr7FrMkUrGYvlcLHGkXdCkxnylCWePx7lPxxq36DNdfo9mcUjLOmqOyPDHAOgnfqgGGdmE3XI9L/4+5fr+vQ==}
peerDependencies:
@@ -3222,11 +2801,29 @@ packages:
vue-router:
optional: true
- '@vitejs/plugin-react@5.1.3':
- resolution: {integrity: sha512-NVUnA6gQCl8jfoYqKqQU5Clv0aPw14KkZYCsX6T9Lfu9slI0LOU10OTwFHS/WmptsMMpshNd/1tuWsHQ2Uk+cg==}
+ '@vitejs/plugin-react@6.0.2':
+ resolution: {integrity: sha512-DlSMqo4WhThw4vB8Mpn0Woe9J+Jfq1geJ61AKW0QEgLzGMNwtIMdxbDUzLxcun8W7NbJO0e2Jg/Nxm3cCSVzzg==}
engines: {node: ^20.19.0 || >=22.12.0}
peerDependencies:
- vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
+ '@rolldown/plugin-babel': ^0.1.7 || ^0.2.0
+ babel-plugin-react-compiler: ^1.0.0
+ vite: ^8.0.0
+ peerDependenciesMeta:
+ '@rolldown/plugin-babel':
+ optional: true
+ babel-plugin-react-compiler:
+ optional: true
+
+ '@vitejs/plugin-rsc@0.5.26':
+ resolution: {integrity: sha512-T8W8ODEutblw9qXQB512LDPyv1tAbJRD/Gf0QEGsAoydl4nxEtIrghnhoI9oLY9R+7aw+cLk1ZEltxWHWf4aHw==}
+ peerDependencies:
+ react: '*'
+ react-dom: '*'
+ react-server-dom-webpack: '*'
+ vite: '*'
+ peerDependenciesMeta:
+ react-server-dom-webpack:
+ optional: true
'@vitest/expect@3.2.4':
resolution: {integrity: sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig==}
@@ -3327,6 +2924,10 @@ packages:
peerDependencies:
acorn: ^8.14.0
+ acorn-loose@8.5.2:
+ resolution: {integrity: sha512-PPvV6g8UGMGgjrMu+n/f9E/tCSkNQ2Y97eFvuVdJfG11+xdIeDcLyNdC8SHcrHbRqkfwLASdplyR6B6sKM1U4A==}
+ engines: {node: '>=0.4.0'}
+
acorn-walk@8.3.4:
resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==}
engines: {node: '>=0.4.0'}
@@ -3380,10 +2981,6 @@ packages:
resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==}
engines: {node: '>=12'}
- ansis@4.2.0:
- resolution: {integrity: sha512-HqZ5rWlFjGiV0tDm3UxxgNRqsOTniqoKZu0pIAfh7TZQMGuZK+hH0drySty0si0QXj1ieop4+SkSfPZBPPkHig==}
- engines: {node: '>=14'}
-
any-promise@1.3.0:
resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
@@ -3415,10 +3012,6 @@ packages:
resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==}
engines: {node: '>=12'}
- ast-types@0.16.1:
- resolution: {integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==}
- engines: {node: '>=4'}
-
async-retry@1.3.3:
resolution: {integrity: sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==}
@@ -3435,9 +3028,6 @@ packages:
axios@1.13.2:
resolution: {integrity: sha512-VPk9ebNqPcy5lRGuSlKx752IlDatOjT9paPlm8A7yOuW2Fbvp4X3JznJtT4f0GzGLLiWE9W8onz51SqLYwzGaA==}
- babel-dead-code-elimination@1.0.12:
- resolution: {integrity: sha512-GERT7L2TiYcYDtYk1IpD+ASAYXjKbLTDPhBtYj7X1NuRMDTMtAx9kyBenub1Ev41lo91OHCKdmP+egTDmfQ7Ig==}
-
babel-plugin-polyfill-corejs2@0.4.14:
resolution: {integrity: sha512-Co2Y9wX854ts6U8gAAPXfn0GmAyctHuK8n0Yhfjd6t30g7yvKjspvvOo9yG+z52PZRgFErt7Ka2pYnXCjLKEpg==}
peerDependencies:
@@ -3456,6 +3046,10 @@ packages:
balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
+ base64-js@0.0.8:
+ resolution: {integrity: sha512-3XSA2cR/h/73EzlXXdU6YNycmYI7+kicTxks4eJg2g39biHR84slg2+des+p7iHYhbRg/udIS4TD53WabcOUkw==}
+ engines: {node: '>= 0.4'}
+
base64-js@1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
@@ -3518,6 +3112,9 @@ packages:
resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
engines: {node: '>=10'}
+ camelize@1.0.1:
+ resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==}
+
caniuse-lite@1.0.30001764:
resolution: {integrity: sha512-9JGuzl2M+vPL+pz70gtMF9sHdMFbY9FJaQBi186cHKH3pSzDvzoUJUPV6fqiKIMyXbud9ZLg4F3Yza1vJ1+93g==}
@@ -3537,13 +3134,6 @@ packages:
resolution: {integrity: sha512-PAJdDJusoxnwm1VwW07VWwUN1sl7smmC3OKggvndJFadxxDRyFJBX/ggnu/KE4kQAB7a3Dp8f/YXC1FlUprWmA==}
engines: {node: '>= 16'}
- cheerio-select@2.1.0:
- resolution: {integrity: sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==}
-
- cheerio@1.2.0:
- resolution: {integrity: sha512-WDrybc/gKFpTYQutKIK6UvfcuxijIZfMfXaYm8NMsPQxSYvf+13fXUJ4rztGGbJcBQ/GF55gvrZ0Bc0bj/mqvg==}
- engines: {node: '>=20.18.1'}
-
chokidar@3.6.0:
resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
engines: {node: '>= 8.10.0'}
@@ -3601,10 +3191,6 @@ packages:
compare-func@2.0.0:
resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==}
- consola@3.4.2:
- resolution: {integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==}
- engines: {node: ^14.18.0 || >=16.10.0}
-
conventional-changelog-angular@7.0.0:
resolution: {integrity: sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==}
engines: {node: '>=16'}
@@ -3621,9 +3207,6 @@ packages:
convert-source-map@2.0.0:
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
- cookie-es@2.0.0:
- resolution: {integrity: sha512-RAj4E421UYRgqokKUmotqAwuplYw15qtdXfY+hGzgCJ/MBjCVZcSoHK/kH9kocfjRjcDME7IiDWR/1WX1TM2Pg==}
-
core-js-compat@3.47.0:
resolution: {integrity: sha512-IGfuznZ/n7Kp9+nypamBhvwdwLsW6KC8IOaURw2doAK5e98AG3acVLdh0woOnEqCfUtS+Vu882JE4k/DAm3ItQ==}
@@ -3660,17 +3243,26 @@ packages:
resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
engines: {node: '>= 8'}
- crossws@0.4.4:
- resolution: {integrity: sha512-w6c4OdpRNnudVmcgr7brb/+/HmYjMQvYToO/oTrprTwxRUiom3LYWU1PMWuD006okbUWpII1Ea9/+kwpUfmyRg==}
- peerDependencies:
- srvx: '>=0.7.1'
- peerDependenciesMeta:
- srvx:
- optional: true
+ css-background-parser@0.1.0:
+ resolution: {integrity: sha512-2EZLisiZQ+7m4wwur/qiYJRniHX4K5Tc9w93MT3AS0WS1u5kaZ4FKXlOTBhOjc+CgEgPiGY+fX1yWD8UwpEqUA==}
+
+ css-box-shadow@1.0.0-3:
+ resolution: {integrity: sha512-9jaqR6e7Ohds+aWwmhe6wILJ99xYQbfmK9QQB9CcMjDbTxPZjwEmUQpU91OG05Xgm8BahT5fW+svbsQGjS/zPg==}
+
+ css-color-keywords@1.0.0:
+ resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==}
+ engines: {node: '>=4'}
+
+ css-gradient-parser@0.0.16:
+ resolution: {integrity: sha512-3O5QdqgFRUbXvK1x5INf1YkBz1UKSWqrd63vWsum8MNHDBYD5urm3QtxZbKU259OrEXNM26lP/MPY3d1IGkBgA==}
+ engines: {node: '>=16'}
css-select@5.2.2:
resolution: {integrity: sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==}
+ css-to-react-native@3.2.0:
+ resolution: {integrity: sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==}
+
css-tree@2.2.1:
resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==}
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'}
@@ -3718,29 +3310,6 @@ packages:
date-fns@4.1.0:
resolution: {integrity: sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg==}
- db0@0.3.4:
- resolution: {integrity: sha512-RiXXi4WaNzPTHEOu8UPQKMooIbqOEyqA1t7Z6MsdxSCeb8iUC9ko3LcmsLmeUt2SM5bctfArZKkRQggKZz7JNw==}
- peerDependencies:
- '@electric-sql/pglite': '*'
- '@libsql/client': '*'
- better-sqlite3: '*'
- drizzle-orm: '*'
- mysql2: '*'
- sqlite3: '*'
- peerDependenciesMeta:
- '@electric-sql/pglite':
- optional: true
- '@libsql/client':
- optional: true
- better-sqlite3:
- optional: true
- drizzle-orm:
- optional: true
- mysql2:
- optional: true
- sqlite3:
- optional: true
-
debounce@1.2.1:
resolution: {integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==}
@@ -3790,10 +3359,6 @@ packages:
didyoumean@1.2.2:
resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
- diff@8.0.3:
- resolution: {integrity: sha512-qejHi7bcSD4hQAZE0tNAawRK1ZtafHDmMTMkrrIGgSLl7hTnQHmKCeB45xAcbfTqK2zowkM3j3bHt/4b/ARbYQ==}
- engines: {node: '>=0.3.1'}
-
dlv@1.1.3:
resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
@@ -3843,15 +3408,16 @@ packages:
electron-to-chromium@1.5.267:
resolution: {integrity: sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==}
+ emoji-regex-xs@2.0.1:
+ resolution: {integrity: sha512-1QFuh8l7LqUcKe24LsPUNzjrzJQ7pgRwp1QMcZ5MX6mFplk2zQ08NVCM84++1cveaUUYtcCYHmeFEuNg16sU4g==}
+ engines: {node: '>=10.0.0'}
+
emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
emoji-regex@9.2.2:
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
- encoding-sniffer@0.2.1:
- resolution: {integrity: sha512-5gvq20T6vfpekVtqrYQsSCFZ1wEg5+wW0/QaZMWkFr6BqD3NfKs0rLCx4rrVlSWJeZb5NBJgVLswK/w2MWU+Gw==}
-
end-of-stream@1.4.5:
resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==}
@@ -3867,10 +3433,6 @@ packages:
resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==}
engines: {node: '>=0.12'}
- entities@7.0.1:
- resolution: {integrity: sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==}
- engines: {node: '>=0.12'}
-
env-paths@2.2.1:
resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==}
engines: {node: '>=6'}
@@ -3889,8 +3451,8 @@ packages:
es-module-lexer@1.7.0:
resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==}
- es-module-lexer@2.0.0:
- resolution: {integrity: sha512-5POEcUuZybH7IdmGsD8wlf0AI55wMecM9rVBTI/qEAy2c1kTOm3DjFYjrBdI2K3BaJjJYfYFeRtM0t9ssnRuxw==}
+ es-module-lexer@2.1.0:
+ resolution: {integrity: sha512-n27zTYMjYu1aj4MjCWzSP7G9r75utsaoc8m61weK+W8JMBGGQybd43GstCXZ3WNmSFtGT9wi59qQTW6mhTR5LQ==}
es-object-atoms@1.1.1:
resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
@@ -3909,6 +3471,9 @@ packages:
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
engines: {node: '>=6'}
+ escape-html@1.0.3:
+ resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
+
escape-string-regexp@4.0.0:
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
engines: {node: '>=10'}
@@ -3917,11 +3482,6 @@ packages:
resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
engines: {node: '>=8.0.0'}
- esprima@4.0.1:
- resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
- engines: {node: '>=4'}
- hasBin: true
-
esrecurse@4.3.0:
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
engines: {node: '>=4.0'}
@@ -3960,9 +3520,6 @@ packages:
resolution: {integrity: sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==}
engines: {node: '>=12.0.0'}
- exsolve@1.0.8:
- resolution: {integrity: sha512-LmDxfWXwcTArk8fUEnOfSZpHOJ6zOMUJKOtFLFqJLoKJetuQG874Uc7/Kki7zFLzYybmZhp1M7+98pfMqeX8yA==}
-
extend@3.0.2:
resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
@@ -4007,6 +3564,9 @@ packages:
resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==}
engines: {node: ^12.20 || >= 14.13}
+ fflate@0.7.4:
+ resolution: {integrity: sha512-5u2V/CDW15QM1XbbgS+0DfPxVB+jUKhWEKuuFuHncbk3tEEqzmoXL+2KyOFuKGqOnmdIy0/davWF1CkuwtibCw==}
+
fill-range@7.1.1:
resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
engines: {node: '>=8'}
@@ -4107,6 +3667,7 @@ packages:
git-raw-commits@4.0.0:
resolution: {integrity: sha512-ICsMM1Wk8xSGMowkOmPrzo2Fgmfo4bMHLNX6ytHjajRJUqvHOw/TFapQ+QG75c3X/tTDDhOSRPGC52dDbNM8FQ==}
engines: {node: '>=16'}
+ deprecated: This package is no longer maintained. For the JavaScript API, please use @conventional-changelog/git-client instead.
hasBin: true
glob-parent@5.1.2:
@@ -4172,15 +3733,6 @@ packages:
resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==}
engines: {node: '>=10'}
- h3@2.0.1-rc.11:
- resolution: {integrity: sha512-2myzjCqy32c1As9TjZW9fNZXtLqNedjFSrdFy2AjFBQQ3LzrnGoDdFDYfC0tV2e4vcyfJ2Sfo/F6NQhO2Ly/Mw==}
- engines: {node: '>=20.11.1'}
- peerDependencies:
- crossws: ^0.4.1
- peerDependenciesMeta:
- crossws:
- optional: true
-
has-flag@4.0.0:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
engines: {node: '>=8'}
@@ -4197,6 +3749,10 @@ packages:
resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
engines: {node: '>= 0.4'}
+ hex-rgb@4.3.0:
+ resolution: {integrity: sha512-Ox1pJVrDCyGHMG9CFg1tmrRUMRPRsAWYc/PinY0XzJU4K7y7vjNoLKIQ7BR5UJMCxNN8EM1MNDmHWA/B3aZUuw==}
+ engines: {node: '>=6'}
+
html-encoding-sniffer@6.0.0:
resolution: {integrity: sha512-CV9TW3Y3f8/wT0BRFc1/KAVQ3TUHiXmaAb6VW9vtiMFf7SLoMd1PdAc4W3KFOFETBJUb90KatHqlsZMWV+R9Gg==}
engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
@@ -4207,9 +3763,6 @@ packages:
html-escaper@2.0.2:
resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==}
- htmlparser2@10.1.0:
- resolution: {integrity: sha512-VTZkM9GWRAtEpveh7MSF6SjjrpNVNNVJfFup7xTY3UpFtm67foy9HDVXneLtFVt4pMz5kZtgNcvCniNFb1hlEQ==}
-
htmlparser2@8.0.2:
resolution: {integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==}
@@ -4237,9 +3790,10 @@ packages:
engines: {node: '>=18'}
hasBin: true
- iconv-lite@0.6.3:
- resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
- engines: {node: '>=0.10.0'}
+ image-size@2.0.2:
+ resolution: {integrity: sha512-IRqXKlaXwgSMAMtpNzZa1ZAe8m+Sa1770Dhk8VkSsP9LS+iHD62Zd8FQKs8fbPiagBE7BzoFX23cxFnwshpV6w==}
+ engines: {node: '>=16.x'}
+ hasBin: true
import-fresh@3.3.1:
resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
@@ -4261,6 +3815,10 @@ packages:
invariant@2.2.4:
resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
+ ipaddr.js@2.4.0:
+ resolution: {integrity: sha512-9VGk3HGanVE6JoZXHiCpnGy5X0jYDnN4EA4lntFPj+1vIWlFhIylq2CrrCOJH9EAhc5CYhq18F2Av2tgoAPsYQ==}
+ engines: {node: '>= 10'}
+
is-arrayish@0.2.1:
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
@@ -4310,10 +3868,6 @@ packages:
resolution: {integrity: sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw==}
engines: {node: '>=8'}
- isbot@5.1.34:
- resolution: {integrity: sha512-aCMIBSKd/XPRYdiCQTLC8QHH4YT8B3JUADu+7COgYIZPvkeoMcUHMRjZLM9/7V8fCj+l7FSREc1lOPNjzogo/A==}
- engines: {node: '>=18'}
-
isexe@2.0.0:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
@@ -4394,79 +3948,146 @@ packages:
kdbush@4.0.2:
resolution: {integrity: sha512-WbCVYJ27Sz8zi9Q7Q0xHC+05iwkm3Znipc2XTlrnJbsHMYktW4hPhXUE8Ys1engBrvffoSCqbil1JQAa7clRpA==}
- launch-editor@2.12.0:
- resolution: {integrity: sha512-giOHXoOtifjdHqUamwKq6c49GzBdLjvxrd2D+Q4V6uOHopJv7p9VJxikDsQ/CBXZbEITgUqSVHXLTG3VhPP1Dg==}
-
lightningcss-android-arm64@1.30.2:
resolution: {integrity: sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [android]
+ lightningcss-android-arm64@1.32.0:
+ resolution: {integrity: sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [android]
+
lightningcss-darwin-arm64@1.30.2:
resolution: {integrity: sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [darwin]
+ lightningcss-darwin-arm64@1.32.0:
+ resolution: {integrity: sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [darwin]
+
lightningcss-darwin-x64@1.30.2:
resolution: {integrity: sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [darwin]
+ lightningcss-darwin-x64@1.32.0:
+ resolution: {integrity: sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [darwin]
+
lightningcss-freebsd-x64@1.30.2:
resolution: {integrity: sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [freebsd]
+ lightningcss-freebsd-x64@1.32.0:
+ resolution: {integrity: sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [freebsd]
+
lightningcss-linux-arm-gnueabihf@1.30.2:
resolution: {integrity: sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==}
engines: {node: '>= 12.0.0'}
cpu: [arm]
os: [linux]
+ lightningcss-linux-arm-gnueabihf@1.32.0:
+ resolution: {integrity: sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm]
+ os: [linux]
+
lightningcss-linux-arm64-gnu@1.30.2:
resolution: {integrity: sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [linux]
+ lightningcss-linux-arm64-gnu@1.32.0:
+ resolution: {integrity: sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [linux]
+
lightningcss-linux-arm64-musl@1.30.2:
resolution: {integrity: sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [linux]
+ lightningcss-linux-arm64-musl@1.32.0:
+ resolution: {integrity: sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [linux]
+
lightningcss-linux-x64-gnu@1.30.2:
resolution: {integrity: sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [linux]
+ lightningcss-linux-x64-gnu@1.32.0:
+ resolution: {integrity: sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [linux]
+
lightningcss-linux-x64-musl@1.30.2:
resolution: {integrity: sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [linux]
+ lightningcss-linux-x64-musl@1.32.0:
+ resolution: {integrity: sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [linux]
+
lightningcss-win32-arm64-msvc@1.30.2:
resolution: {integrity: sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [win32]
+ lightningcss-win32-arm64-msvc@1.32.0:
+ resolution: {integrity: sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [win32]
+
lightningcss-win32-x64-msvc@1.30.2:
resolution: {integrity: sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [win32]
+ lightningcss-win32-x64-msvc@1.32.0:
+ resolution: {integrity: sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [win32]
+
lightningcss@1.30.2:
resolution: {integrity: sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==}
engines: {node: '>= 12.0.0'}
+ lightningcss@1.32.0:
+ resolution: {integrity: sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==}
+ engines: {node: '>= 12.0.0'}
+
lilconfig@3.1.3:
resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==}
engines: {node: '>=14'}
@@ -4474,6 +4095,9 @@ packages:
limiter@1.1.5:
resolution: {integrity: sha512-FWWMIEOxz3GwUI4Ts/IvgVy6LPvoMPgjMdQ185nN6psJyBJ4yOpzqm695/h5umdLJg2vW3GR5iG11MAkR2AzJA==}
+ linebreak@1.1.0:
+ resolution: {integrity: sha512-MHp03UImeVhB7XZtjd0E4n6+3xr5Dq/9xI/5FptGk5FrbDR3zagPa2DS6U8ks/3HjbKWG9Q1M2ufOzxV2qLYSQ==}
+
lines-and-columns@1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
@@ -4670,6 +4294,11 @@ packages:
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
+ nanoid@3.3.12:
+ resolution: {integrity: sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==}
+ engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
+ hasBin: true
+
neo-async@2.6.2:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
@@ -4696,28 +4325,6 @@ packages:
sass:
optional: true
- nf3@0.3.7:
- resolution: {integrity: sha512-wL73kyZbBoeTWlvQWQ0gQDZnqp+aNlUN5YIqsc3fv5V/06LAlwrwt+G7TpugFLJIai0AhrmnKJ2kgW0xprj+yQ==}
-
- nitro-nightly@3.0.1-20260202-124820-1954b824:
- resolution: {integrity: sha512-0opA9HR5zNlpWmozd4gOh9mhVk6c+FJhbKg2nrMs+IK56WYDsaLGDSNYjg1Z0cvqMCCbZrafCHQBzhlFDxoytw==}
- engines: {node: ^20.19.0 || >=22.12.0}
- hasBin: true
- peerDependencies:
- rolldown: '>=1.0.0-rc.2'
- rollup: ^4.57.0
- vite: ^7 || ^8 || >=8.0.0-0
- xml2js: ^0.6.2
- peerDependenciesMeta:
- rolldown:
- optional: true
- rollup:
- optional: true
- vite:
- optional: true
- xml2js:
- optional: true
-
no-case@3.0.4:
resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
@@ -4761,12 +4368,6 @@ packages:
resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
engines: {node: '>= 6'}
- ofetch@2.0.0-alpha.3:
- resolution: {integrity: sha512-zpYTCs2byOuft65vI3z43Dd6iSdFbOZZLb9/d21aCpx2rGastVU9dOCv0lu4ykc1Ur1anAYjDi3SUvR0vq50JA==}
-
- ohash@2.0.11:
- resolution: {integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==}
-
once@1.4.0:
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
@@ -4774,14 +4375,6 @@ packages:
resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==}
hasBin: true
- oxc-minify@0.112.0:
- resolution: {integrity: sha512-rkVSeeIRSt+RYI9uX6xonBpLUpvZyegxIg0UL87ev7YAfUqp7IIZlRjkgQN5Us1lyXD//TOo0Dcuuro/TYOWoQ==}
- engines: {node: ^20.19.0 || >=22.12.0}
-
- oxc-transform@0.112.0:
- resolution: {integrity: sha512-cIRRvZgrHfsAHrkt8LWdAX4+Do8R0MzQSfeo9yzErzHeYiuyNiP4PCTPbOy/wBXL4MYzt3ebrBa5jt3akQkKAg==}
- engines: {node: ^20.19.0 || >=22.12.0}
-
p-limit@3.1.0:
resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
engines: {node: '>=10'}
@@ -4801,23 +4394,20 @@ packages:
package-json-from-dist@1.0.1:
resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
+ pako@0.2.9:
+ resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==}
+
parent-module@1.0.1:
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
engines: {node: '>=6'}
+ parse-css-color@0.2.1:
+ resolution: {integrity: sha512-bwS/GGIFV3b6KS4uwpzCFj4w297Yl3uqnSgIPsoQkx7GMLROXfMnWvxfNkL0oh8HVhZA4hvJoEoEIqonfJ3BWg==}
+
parse-json@5.2.0:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'}
- parse5-htmlparser2-tree-adapter@7.1.0:
- resolution: {integrity: sha512-ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g==}
-
- parse5-parser-stream@7.1.2:
- resolution: {integrity: sha512-JyeQc9iwFLn5TbvvqACIF/VXG6abODeB3Fwmv/TGdLk2LfbWkaySGY72at4+Ty7EkPZj854u4CrICqNk2qIbow==}
-
- parse5@7.3.0:
- resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==}
-
parse5@8.0.0:
resolution: {integrity: sha512-9m4m5GSgXjL4AjumKzq1Fgfp3Z8rsvjRNbnkVwfu2ImRqE5D0LnY2QfDen18FSY9C573YU5XxSapdHZTZ2WolA==}
@@ -4877,6 +4467,10 @@ packages:
resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
engines: {node: '>=12'}
+ picomatch@4.0.4:
+ resolution: {integrity: sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==}
+ engines: {node: '>=12'}
+
pify@2.3.0:
resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
engines: {node: '>=0.10.0'}
@@ -4935,6 +4529,10 @@ packages:
resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
engines: {node: ^10 || ^12 || >=14}
+ postcss@8.5.15:
+ resolution: {integrity: sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==}
+ engines: {node: ^10 || ^12 || >=14}
+
postcss@8.5.6:
resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
engines: {node: ^10 || ^12 || >=14}
@@ -4955,11 +4553,6 @@ packages:
resolution: {integrity: sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==}
engines: {node: '>=0.10.0'}
- prettier@3.8.1:
- resolution: {integrity: sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg==}
- engines: {node: '>=14'}
- hasBin: true
-
pretty-format@27.5.1:
resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
@@ -4997,10 +4590,10 @@ packages:
peerDependencies:
react: ^18.3.1
- react-dom@19.2.4:
- resolution: {integrity: sha512-AXJdLo8kgMbimY95O2aKQqsz2iWi9jMgKJhRBAxECE4IFxfcazB2LmzloIoibJI3C12IlY20+KFaLv+71bUJeQ==}
+ react-dom@19.2.6:
+ resolution: {integrity: sha512-0prMI+hvBbPjsWnxDLxlCGyM8PN6UuWjEUCYmZhO67xIV9Xasa/r/vDnq+Xyq4Lo27g8QSbO5YzARu0D1Sps3g==}
peerDependencies:
- react: ^19.2.4
+ react: ^19.2.6
react-hook-form@7.71.1:
resolution: {integrity: sha512-9SUJKCGKo8HUSsCO+y0CtqkqI5nNuaDqTxyqPsZPqIwudpj4rCrAz/jZV+jn57bx5gtZKOh3neQu94DXMc+w5w==}
@@ -5018,10 +4611,6 @@ packages:
react-is@17.0.2:
resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==}
- react-refresh@0.18.0:
- resolution: {integrity: sha512-QgT5//D3jfjJb6Gsjxv0Slpj23ip+HtOpnNgnb2S5zU3CB26G/IDPGoy4RJB42wzFE46DRsstbW6tKHoKbhAxw==}
- engines: {node: '>=0.10.0'}
-
react-remove-scroll-bar@2.3.8:
resolution: {integrity: sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==}
engines: {node: '>=10'}
@@ -5042,6 +4631,14 @@ packages:
'@types/react':
optional: true
+ react-server-dom-webpack@19.2.6:
+ resolution: {integrity: sha512-762YXjBPc6hw2V16k4x1sdnw0mxghcSPzoiOhefGYjiTguJLCImGBUz6EjznPIfqKhWgLtpaQMlBhp66N8dKrw==}
+ engines: {node: '>=0.10.0'}
+ peerDependencies:
+ react: ^19.2.6
+ react-dom: ^19.2.6
+ webpack: ^5.59.0
+
react-style-singleton@2.2.3:
resolution: {integrity: sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==}
engines: {node: '>=10'}
@@ -5060,6 +4657,10 @@ packages:
resolution: {integrity: sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==}
engines: {node: '>=0.10.0'}
+ react@19.2.6:
+ resolution: {integrity: sha512-sfWGGfavi0xr8Pg0sVsyHMAOziVYKgPLNrS7ig+ivMNb3wbCBw3KxtflsGBAwD3gYQlE/AEZsTLgToRrSCjb0Q==}
+ engines: {node: '>=0.10.0'}
+
read-cache@1.0.0:
resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
@@ -5071,10 +4672,6 @@ packages:
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
engines: {node: '>=8.10.0'}
- recast@0.23.11:
- resolution: {integrity: sha512-YTUo+Flmw4ZXiWfQKGcwwc11KnoRAYgzAE2E7mXKCjSviTKShtxBsN6YUUBB2gtaBzKzeKunxhUwNHQuRryhWA==}
- engines: {node: '>= 4'}
-
regenerate-unicode-properties@10.2.2:
resolution: {integrity: sha512-m03P+zhBeQd1RGnYxrGyDAPpWX/epKirLrp8e3qevZdVkKtnCrjjWczIbYc8+xd6vcTStVlqfycTx1KR4LOr0g==}
engines: {node: '>=4'}
@@ -5136,22 +4733,25 @@ packages:
resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
+ rolldown@1.0.2:
+ resolution: {integrity: sha512-oZx5zVDtVB44AW3eaifgDml1gWRDZGvjcfdxonE4swNPG98PrrXjaO/KrnUjzlMnztCCRVlUueA1kCXhARGk6g==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ hasBin: true
+
rollup@4.55.1:
resolution: {integrity: sha512-wDv/Ht1BNHB4upNbK74s9usvl7hObDnvVzknxqY/E/O3X6rW1U1rV1aENEfJ54eFZDTNo7zv1f5N4edCluH7+A==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
- rou3@0.7.12:
- resolution: {integrity: sha512-iFE4hLDuloSWcD7mjdCDhx2bKcIsYbtOTpfH5MHHLSKMOUyjqQXTeZVa289uuwEGEKFoE/BAPbhaU4B774nceg==}
-
run-parallel@1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
safe-buffer@5.2.1:
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
- safer-buffer@2.1.2:
- resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
+ satori@0.16.0:
+ resolution: {integrity: sha512-ZvHN3ygzZ8FuxjSNB+mKBiF/NIoqHzlBGbD0MJiT+MvSsFOvotnWOhdTjxKzhHRT2wPC1QbhLzx2q/Y83VhfYQ==}
+ engines: {node: '>=16'}
saxes@6.0.0:
resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}
@@ -5179,16 +4779,6 @@ packages:
serialize-javascript@6.0.2:
resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
- seroval-plugins@1.5.0:
- resolution: {integrity: sha512-EAHqADIQondwRZIdeW2I636zgsODzoBDwb3PT/+7TLDWyw1Dy/Xv7iGUIEXXav7usHDE9HVhOU61irI3EnyyHA==}
- engines: {node: '>=10'}
- peerDependencies:
- seroval: ^1.0
-
- seroval@1.5.0:
- resolution: {integrity: sha512-OE4cvmJ1uSPrKorFIH9/w/Qwuvi/IMcGbv5RKgcJ/zjA/IohDLU6SVaxFN9FwajbP7nsX0dQqMDes1whk3y+yw==}
- engines: {node: '>=10'}
-
shebang-command@2.0.0:
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
engines: {node: '>=8'}
@@ -5197,10 +4787,6 @@ packages:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
- shell-quote@1.8.3:
- resolution: {integrity: sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==}
- engines: {node: '>= 0.4'}
-
siginfo@2.0.0:
resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==}
@@ -5219,9 +4805,6 @@ packages:
resolution: {integrity: sha512-2g0tjOR+fRs0amxENLi/q5TiJTqY+WXFOzb5UwXndlK6TO3U/mirZznpx6w34HVMoc3g7cY24yC/ZMIYnDlfkw==}
engines: {node: '>=12'}
- solid-js@1.9.11:
- resolution: {integrity: sha512-WEJtcc5mkh/BnHA6Yrg4whlF8g6QwpmXXRg4P2ztPmcKeHHlH4+djYecBLhSpecZY2RRECXYUwIc/C2r3yzQ4Q==}
-
sonner@2.0.7:
resolution: {integrity: sha512-W6ZN4p58k8aDKA4XPcx2hpIQXBRAgyiWVkYhT7CvK6D3iAu7xjvVyhQHg2/iaKJZ1XVJ4r7XuwGL+WGEK37i9w==}
peerDependencies:
@@ -5239,16 +4822,12 @@ packages:
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
engines: {node: '>=0.10.0'}
- source-map@0.7.6:
- resolution: {integrity: sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==}
- engines: {node: '>= 12'}
-
split2@4.2.0:
resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==}
engines: {node: '>= 10.x'}
- srvx@0.10.1:
- resolution: {integrity: sha512-A//xtfak4eESMWWydSRFUVvCTQbSwivnGCEf8YGPe2eHU0+Z6znfUTCPF0a7oV3sObSOcrXHlL6Bs9vVctfXdg==}
+ srvx@0.11.15:
+ resolution: {integrity: sha512-iXsux0UcOjdvs0LCMa2Ws3WwcDUozA3JN3BquNXkaFPP7TpRqgunKdEgoZ/uwb1J6xaYHfxtz9Twlh6yzwM6Tg==}
engines: {node: '>=20.16.0'}
hasBin: true
@@ -5280,6 +4859,9 @@ packages:
resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
engines: {node: '>=12'}
+ string.prototype.codepointat@0.2.1:
+ resolution: {integrity: sha512-2cBVCj6I4IOvEnjgO/hWqXjqBGsY+zwPmHl12Srk9IXSZ56Jwwmy+66XO5Iut/oQVR7t5ihYdLB0GMa4alEUcg==}
+
string_decoder@1.3.0:
resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
@@ -5406,11 +4988,8 @@ packages:
through@2.3.8:
resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
- tiny-invariant@1.3.3:
- resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
-
- tiny-warning@1.0.3:
- resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==}
+ tiny-inflate@1.0.3:
+ resolution: {integrity: sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==}
tinybench@2.9.0:
resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==}
@@ -5426,6 +5005,10 @@ packages:
resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
engines: {node: '>=12.0.0'}
+ tinyglobby@0.2.16:
+ resolution: {integrity: sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==}
+ engines: {node: '>=12.0.0'}
+
tinypool@1.1.1:
resolution: {integrity: sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==}
engines: {node: ^18.0.0 || >=20.0.0}
@@ -5505,6 +5088,9 @@ packages:
cpu: [arm64]
os: [linux]
+ turbo-stream@3.2.0:
+ resolution: {integrity: sha512-EK+bZ9UVrVh7JLslVFOV0GEMsociOqVOvEMTAd4ixMyffN5YNIEdLZWXUx5PJqDbTxSIBWw04HS9gCY4frYQDQ==}
+
turbo-windows-64@2.7.5:
resolution: {integrity: sha512-rupskv/mkIUgQXzX/wUiK00mKMorQcK8yzhGFha/D5lm05FEnLx8dsip6rWzMcVpvh+4GUMA56PgtnOgpel2AA==}
cpu: [x64]
@@ -5528,19 +5114,9 @@ packages:
engines: {node: '>=14.17'}
hasBin: true
- ufo@1.6.3:
- resolution: {integrity: sha512-yDJTmhydvl5lJzBmy/hyOAA0d+aqCBuwl818haVdYCRrWV84o7YyeVm4QlVHStqNrrJSTb6jKuFAVqAFsr+K3Q==}
-
undici-types@6.21.0:
resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==}
- undici@7.20.0:
- resolution: {integrity: sha512-MJZrkjyd7DeC+uPZh+5/YaMDxFiiEEaDgbUSVMXayofAkDWF1088CDo+2RPg7B1BuS1qf1vgNE7xqwPxE0DuSQ==}
- engines: {node: '>=20.18.1'}
-
- unenv@2.0.0-rc.24:
- resolution: {integrity: sha512-i7qRCmY42zmCwnYlh9H2SvLEypEFGye5iRmEMKjcGi7zk9UquigRjFtTLz0TYqr0ZGLZhaMHl/foy1bZR+Cwlw==}
-
unicode-canonical-property-names-ecmascript@2.0.1:
resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==}
engines: {node: '>=4'}
@@ -5557,91 +5133,19 @@ packages:
resolution: {integrity: sha512-hpbDzxUY9BFwX+UeBnxv3Sh1q7HFxj48DTmXchNgRa46lO8uj3/1iEn3MiNUYTg1g9ctIqXCCERn8gYZhHC5lQ==}
engines: {node: '>=4'}
+ unicode-trie@2.0.0:
+ resolution: {integrity: sha512-x7bc76x0bm4prf1VLg79uhAzKw8DVboClSN5VxJuQ+LKDOVEW9CdH+VY7SP+vX7xCYQqzzgQpFqz15zeLvAtZQ==}
+
unicorn-magic@0.1.0:
resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==}
engines: {node: '>=18'}
+ unpic@4.2.2:
+ resolution: {integrity: sha512-z6T2ScMgRV2y2H8MwwhY5xHZWXhUx/YxtOCGJwfURSl7ypVy4HpLIMWoIZKnnxQa/RKzM0kg8hUh0paIrpLfvw==}
+
unplugin@1.0.1:
resolution: {integrity: sha512-aqrHaVBWW1JVKBHmGo33T5TxeL0qWzfvjWokObHA9bYmN7eNDkwOxmLjhioHl9878qDFMAaT51XNroRyuz7WxA==}
- unplugin@2.3.11:
- resolution: {integrity: sha512-5uKD0nqiYVzlmCRs01Fhs2BdkEgBS3SAVP6ndrBsuK42iC2+JHyxM05Rm9G8+5mkmRtzMZGY8Ct5+mliZxU/Ww==}
- engines: {node: '>=18.12.0'}
-
- unstorage@2.0.0-alpha.5:
- resolution: {integrity: sha512-Sj8btci21Twnd6M+N+MHhjg3fVn6lAPElPmvFTe0Y/wR0WImErUdA1PzlAaUavHylJ7uDiFwlZDQKm0elG4b7g==}
- peerDependencies:
- '@azure/app-configuration': ^1.9.0
- '@azure/cosmos': ^4.7.0
- '@azure/data-tables': ^13.3.1
- '@azure/identity': ^4.13.0
- '@azure/keyvault-secrets': ^4.10.0
- '@azure/storage-blob': ^12.29.1
- '@capacitor/preferences': ^6.0.3 || ^7.0.0
- '@deno/kv': '>=0.12.0'
- '@netlify/blobs': ^6.5.0 || ^7.0.0 || ^8.1.0 || ^9.0.0 || ^10.0.0
- '@planetscale/database': ^1.19.0
- '@upstash/redis': ^1.35.6
- '@vercel/blob': '>=0.27.3'
- '@vercel/functions': ^2.2.12 || ^3.0.0
- '@vercel/kv': ^1.0.1
- aws4fetch: ^1.0.20
- chokidar: ^4 || ^5
- db0: '>=0.3.4'
- idb-keyval: ^6.2.2
- ioredis: ^5.8.2
- lru-cache: ^11.2.2
- mongodb: ^6 || ^7
- ofetch: '*'
- uploadthing: ^7.7.4
- peerDependenciesMeta:
- '@azure/app-configuration':
- optional: true
- '@azure/cosmos':
- optional: true
- '@azure/data-tables':
- optional: true
- '@azure/identity':
- optional: true
- '@azure/keyvault-secrets':
- optional: true
- '@azure/storage-blob':
- optional: true
- '@capacitor/preferences':
- optional: true
- '@deno/kv':
- optional: true
- '@netlify/blobs':
- optional: true
- '@planetscale/database':
- optional: true
- '@upstash/redis':
- optional: true
- '@vercel/blob':
- optional: true
- '@vercel/functions':
- optional: true
- '@vercel/kv':
- optional: true
- aws4fetch:
- optional: true
- chokidar:
- optional: true
- db0:
- optional: true
- idb-keyval:
- optional: true
- ioredis:
- optional: true
- lru-cache:
- optional: true
- mongodb:
- optional: true
- ofetch:
- optional: true
- uploadthing:
- optional: true
-
update-browserslist-db@1.2.3:
resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==}
hasBin: true
@@ -5691,13 +5195,39 @@ packages:
resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==}
hasBin: true
+ vinext@0.0.51:
+ resolution: {integrity: sha512-wNqX3B9Y0QYsMB+WskvI63mB4V+Lpqne5RFM6kL2BCXst2P91O+V+3RdGynpYEn+2xVNmzken2ipmNgfHUbC+A==}
+ engines: {node: '>=22'}
+ hasBin: true
+ peerDependencies:
+ '@mdx-js/rollup': ^3.0.0
+ '@vitejs/plugin-react': ^5.1.4 || ^6.0.0
+ '@vitejs/plugin-rsc': ^0.5.26
+ react: ^19.2.6
+ react-dom: ^19.2.6
+ react-server-dom-webpack: ^19.2.6
+ vite: ^7.0.0 || ^8.0.0
+ peerDependenciesMeta:
+ '@mdx-js/rollup':
+ optional: true
+ '@vitejs/plugin-rsc':
+ optional: true
+ react-server-dom-webpack:
+ optional: true
+
vite-node@3.2.4:
resolution: {integrity: sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
- vite-tsconfig-paths@6.0.5:
- resolution: {integrity: sha512-f/WvY6ekHykUF1rWJUAbCU7iS/5QYDIugwpqJA+ttwKbxSbzNlqlE8vZSrsnxNQciUW+z6lvhlXMaEyZn9MSig==}
+ vite-plugin-commonjs@0.10.4:
+ resolution: {integrity: sha512-eWQuvQKCcx0QYB5e5xfxBNjQKyrjEWZIR9UOkOV6JAgxVhtbZvCOF+FNC2ZijBJ3U3Px04ZMMyyMyFBVWIJ5+g==}
+
+ vite-plugin-dynamic-import@1.6.0:
+ resolution: {integrity: sha512-TM0sz70wfzTIo9YCxVFwS8OA9lNREsh+0vMHGSkWDTZ7bgd1Yjs5RV8EgB634l/91IsXJReg0xtmuQqP0mf+rg==}
+
+ vite-tsconfig-paths@6.1.1:
+ resolution: {integrity: sha512-2cihq7zliibCCZ8P9cKJrQBkfgdvcFkOOc3Y02o3GWUDLgqjWsZudaoiuOwO/gzTzy17cS5F7ZPo4bsnS4DGkg==}
peerDependencies:
vite: '*'
@@ -5741,10 +5271,53 @@ packages:
yaml:
optional: true
- vitefu@1.1.1:
- resolution: {integrity: sha512-B/Fegf3i8zh0yFbpzZ21amWzHmuNlLlmJT6n7bu5e+pCHUKQIfXSYokrqOBGEMMe9UG2sostKQF9mml/vYaWJQ==}
+ vite@8.0.14:
+ resolution: {integrity: sha512-s4BJJ+5y1pYL6Otw51FHhVJQhPnuRinKig64g/1+EUNaJsd3gCKdD31IPFvswUgW9/60QT9oFHbZHbQK5imcxw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': ^20.19.0 || >=22.12.0
+ '@vitejs/devtools': ^0.1.18
+ esbuild: ^0.27.0 || ^0.28.0
+ jiti: '>=1.21.0'
+ less: ^4.0.0
+ sass: ^1.70.0
+ sass-embedded: ^1.70.0
+ stylus: '>=0.54.8'
+ sugarss: ^5.0.0
+ terser: ^5.16.0
+ tsx: ^4.8.1
+ yaml: ^2.4.2
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ '@vitejs/devtools':
+ optional: true
+ esbuild:
+ optional: true
+ jiti:
+ optional: true
+ less:
+ optional: true
+ sass:
+ optional: true
+ sass-embedded:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+ tsx:
+ optional: true
+ yaml:
+ optional: true
+
+ vitefu@1.1.3:
+ resolution: {integrity: sha512-ub4okH7Z5KLjb6hDyjqrGXqWtWvoYdU3IGm/NorpgHncKoLTCfRIbvlhBm7r0YstIaQRYlp4yEbFqDcKSzXSSg==}
peerDependencies:
- vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0-beta.0
+ vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0
peerDependenciesMeta:
vite:
optional: true
@@ -5789,6 +5362,9 @@ packages:
resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==}
engines: {node: '>= 8'}
+ web-vitals@4.2.4:
+ resolution: {integrity: sha512-r4DIlprAGwJ7YM11VZp4R884m0Vmgr6EAKe3P+kO0PPj3Unqyvv59rczf6UiGcb9Z8QxZVcqKNwv/g0WNdWwsw==}
+
web-vitals@5.1.0:
resolution: {integrity: sha512-ArI3kx5jI0atlTtmV0fWU3fjpLmq/nD3Zr1iFFlJLaqa5wLBkUSzINwBPySCX/8jRyjlmy1Volw1kz1g9XE4Jg==}
@@ -5811,9 +5387,6 @@ packages:
webpack-virtual-modules@0.5.0:
resolution: {integrity: sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==}
- webpack-virtual-modules@0.6.2:
- resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
-
webpack@5.104.1:
resolution: {integrity: sha512-Qphch25abbMNtekmEGJmeRUhLDbe+QfiWTiqpKYkpCOWY64v9eyl+KRRLmqOFA2AvKPpc9DC6+u2n76tQLBoaA==}
engines: {node: '>=10.13.0'}
@@ -5832,11 +5405,6 @@ packages:
resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==}
engines: {node: '>=0.8.0'}
- whatwg-encoding@3.1.1:
- resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==}
- engines: {node: '>=18'}
- deprecated: Use @exodus/bytes instead for a more spec-conformant and faster implementation
-
whatwg-mimetype@4.0.0:
resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==}
engines: {node: '>=18'}
@@ -5901,10 +5469,6 @@ packages:
resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==}
engines: {node: '>=18'}
- xmlbuilder2@4.0.3:
- resolution: {integrity: sha512-bx8Q1STctnNaaDymWnkfQLKofs0mGNN7rLLapJlGuV3VlvegD7Ls4ggMjE3aUSWItCCzU0PEv45lI87iSigiCA==}
- engines: {node: '>=20.0'}
-
xmlchars@2.2.0:
resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==}
@@ -5943,8 +5507,8 @@ packages:
resolution: {integrity: sha512-4LCcse/U2MHZ63HAJVE+v71o7yOdIe4cZ70Wpf8D/IyjDKYQLV5GD46B+hSTjJsvV5PztjvHoU580EftxjDZFQ==}
engines: {node: '>=12.20'}
- zod@3.25.76:
- resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==}
+ yoga-layout@3.2.1:
+ resolution: {integrity: sha512-0LPOt3AxKqMdFBZA3HBAt/t/8vIKq7VaQYbuA8WxCgung+p9TVyKRYdpvCb80HcdTN2NkbIKbhNwKUfm3tQywQ==}
zod@4.3.5:
resolution: {integrity: sha512-k7Nwx6vuWx1IJ9Bjuf4Zt1PEllcwe7cls3VNzm4CQ1/hgtFUK2bRNG3rvnpPUhFjmqJKAKtjV576KnUkHocg/g==}
@@ -6001,24 +5565,12 @@ snapshots:
'@asamuzakjp/nwsapi@2.3.9': {}
- '@babel/code-frame@7.27.1':
- dependencies:
- '@babel/helper-validator-identifier': 7.28.5
- js-tokens: 4.0.0
- picocolors: 1.1.1
-
'@babel/code-frame@7.28.6':
dependencies:
'@babel/helper-validator-identifier': 7.28.5
js-tokens: 4.0.0
picocolors: 1.1.1
- '@babel/code-frame@7.29.0':
- dependencies:
- '@babel/helper-validator-identifier': 7.28.5
- js-tokens: 4.0.0
- picocolors: 1.1.1
-
'@babel/compat-data@7.28.6': {}
'@babel/core@7.28.6':
@@ -6041,26 +5593,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/core@7.29.0':
- dependencies:
- '@babel/code-frame': 7.29.0
- '@babel/generator': 7.29.0
- '@babel/helper-compilation-targets': 7.28.6
- '@babel/helper-module-transforms': 7.28.6(@babel/core@7.29.0)
- '@babel/helpers': 7.28.6
- '@babel/parser': 7.29.0
- '@babel/template': 7.28.6
- '@babel/traverse': 7.29.0
- '@babel/types': 7.29.0
- '@jridgewell/remapping': 2.3.5
- convert-source-map: 2.0.0
- debug: 4.4.3
- gensync: 1.0.0-beta.2
- json5: 2.2.3
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
'@babel/generator@7.28.6':
dependencies:
'@babel/parser': 7.28.6
@@ -6069,14 +5601,6 @@ snapshots:
'@jridgewell/trace-mapping': 0.3.31
jsesc: 3.1.0
- '@babel/generator@7.29.0':
- dependencies:
- '@babel/parser': 7.29.0
- '@babel/types': 7.29.0
- '@jridgewell/gen-mapping': 0.3.13
- '@jridgewell/trace-mapping': 0.3.31
- jsesc: 3.1.0
-
'@babel/helper-annotate-as-pure@7.27.3':
dependencies:
'@babel/types': 7.28.6
@@ -6145,15 +5669,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.28.6(@babel/core@7.29.0)':
- dependencies:
- '@babel/core': 7.29.0
- '@babel/helper-module-imports': 7.28.6
- '@babel/helper-validator-identifier': 7.28.5
- '@babel/traverse': 7.28.6
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-optimise-call-expression@7.27.1':
dependencies:
'@babel/types': 7.28.6
@@ -6208,10 +5723,6 @@ snapshots:
dependencies:
'@babel/types': 7.28.6
- '@babel/parser@7.29.0':
- dependencies:
- '@babel/types': 7.29.0
-
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.28.5(@babel/core@7.28.6)':
dependencies:
'@babel/core': 7.28.6
@@ -6560,16 +6071,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.29.0)':
- dependencies:
- '@babel/core': 7.29.0
- '@babel/helper-plugin-utils': 7.28.6
-
- '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.29.0)':
- dependencies:
- '@babel/core': 7.29.0
- '@babel/helper-plugin-utils': 7.28.6
-
'@babel/plugin-transform-react-jsx@7.28.6(@babel/core@7.28.6)':
dependencies:
'@babel/core': 7.28.6
@@ -6791,28 +6292,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/traverse@7.29.0':
- dependencies:
- '@babel/code-frame': 7.29.0
- '@babel/generator': 7.29.0
- '@babel/helper-globals': 7.28.0
- '@babel/parser': 7.29.0
- '@babel/template': 7.28.6
- '@babel/types': 7.29.0
- debug: 4.4.3
- transitivePeerDependencies:
- - supports-color
-
'@babel/types@7.28.6':
dependencies:
'@babel/helper-string-parser': 7.27.1
'@babel/helper-validator-identifier': 7.28.5
- '@babel/types@7.29.0':
- dependencies:
- '@babel/helper-string-parser': 7.27.1
- '@babel/helper-validator-identifier': 7.28.5
-
'@biomejs/biome@2.2.4':
optionalDependencies:
'@biomejs/cli-darwin-arm64': 2.2.4
@@ -7017,18 +6501,18 @@ snapshots:
'@discoveryjs/json-ext@0.5.7': {}
- '@emnapi/core@1.8.1':
+ '@emnapi/core@1.10.0':
dependencies:
- '@emnapi/wasi-threads': 1.1.0
+ '@emnapi/wasi-threads': 1.2.1
tslib: 2.8.1
optional: true
- '@emnapi/runtime@1.8.1':
+ '@emnapi/runtime@1.10.0':
dependencies:
tslib: 2.8.1
optional: true
- '@emnapi/wasi-threads@1.1.0':
+ '@emnapi/wasi-threads@1.2.1':
dependencies:
tslib: 2.8.1
optional: true
@@ -7291,10 +6775,10 @@ snapshots:
'@js-sdsl/ordered-map@4.4.2':
optional: true
- '@napi-rs/wasm-runtime@1.1.1':
+ '@napi-rs/wasm-runtime@1.1.4(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)':
dependencies:
- '@emnapi/core': 1.8.1
- '@emnapi/runtime': 1.8.1
+ '@emnapi/core': 1.10.0
+ '@emnapi/runtime': 1.10.0
'@tybys/wasm-util': 0.10.1
optional: true
@@ -7352,23 +6836,6 @@ snapshots:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.20.1
- '@oozcitak/dom@2.0.2':
- dependencies:
- '@oozcitak/infra': 2.0.2
- '@oozcitak/url': 3.0.0
- '@oozcitak/util': 10.0.0
-
- '@oozcitak/infra@2.0.2':
- dependencies:
- '@oozcitak/util': 10.0.0
-
- '@oozcitak/url@3.0.0':
- dependencies:
- '@oozcitak/infra': 2.0.2
- '@oozcitak/util': 10.0.0
-
- '@oozcitak/util@10.0.0': {}
-
'@opentelemetry/api-logs@0.208.0':
dependencies:
'@opentelemetry/api': 1.9.0
@@ -7605,129 +7072,7 @@ snapshots:
'@opentelemetry/api': 1.9.0
'@opentelemetry/core': 2.4.0(@opentelemetry/api@1.9.0)
- '@oxc-minify/binding-android-arm-eabi@0.112.0':
- optional: true
-
- '@oxc-minify/binding-android-arm64@0.112.0':
- optional: true
-
- '@oxc-minify/binding-darwin-arm64@0.112.0':
- optional: true
-
- '@oxc-minify/binding-darwin-x64@0.112.0':
- optional: true
-
- '@oxc-minify/binding-freebsd-x64@0.112.0':
- optional: true
-
- '@oxc-minify/binding-linux-arm-gnueabihf@0.112.0':
- optional: true
-
- '@oxc-minify/binding-linux-arm-musleabihf@0.112.0':
- optional: true
-
- '@oxc-minify/binding-linux-arm64-gnu@0.112.0':
- optional: true
-
- '@oxc-minify/binding-linux-arm64-musl@0.112.0':
- optional: true
-
- '@oxc-minify/binding-linux-ppc64-gnu@0.112.0':
- optional: true
-
- '@oxc-minify/binding-linux-riscv64-gnu@0.112.0':
- optional: true
-
- '@oxc-minify/binding-linux-riscv64-musl@0.112.0':
- optional: true
-
- '@oxc-minify/binding-linux-s390x-gnu@0.112.0':
- optional: true
-
- '@oxc-minify/binding-linux-x64-gnu@0.112.0':
- optional: true
-
- '@oxc-minify/binding-linux-x64-musl@0.112.0':
- optional: true
-
- '@oxc-minify/binding-openharmony-arm64@0.112.0':
- optional: true
-
- '@oxc-minify/binding-wasm32-wasi@0.112.0':
- dependencies:
- '@napi-rs/wasm-runtime': 1.1.1
- optional: true
-
- '@oxc-minify/binding-win32-arm64-msvc@0.112.0':
- optional: true
-
- '@oxc-minify/binding-win32-ia32-msvc@0.112.0':
- optional: true
-
- '@oxc-minify/binding-win32-x64-msvc@0.112.0':
- optional: true
-
- '@oxc-transform/binding-android-arm-eabi@0.112.0':
- optional: true
-
- '@oxc-transform/binding-android-arm64@0.112.0':
- optional: true
-
- '@oxc-transform/binding-darwin-arm64@0.112.0':
- optional: true
-
- '@oxc-transform/binding-darwin-x64@0.112.0':
- optional: true
-
- '@oxc-transform/binding-freebsd-x64@0.112.0':
- optional: true
-
- '@oxc-transform/binding-linux-arm-gnueabihf@0.112.0':
- optional: true
-
- '@oxc-transform/binding-linux-arm-musleabihf@0.112.0':
- optional: true
-
- '@oxc-transform/binding-linux-arm64-gnu@0.112.0':
- optional: true
-
- '@oxc-transform/binding-linux-arm64-musl@0.112.0':
- optional: true
-
- '@oxc-transform/binding-linux-ppc64-gnu@0.112.0':
- optional: true
-
- '@oxc-transform/binding-linux-riscv64-gnu@0.112.0':
- optional: true
-
- '@oxc-transform/binding-linux-riscv64-musl@0.112.0':
- optional: true
-
- '@oxc-transform/binding-linux-s390x-gnu@0.112.0':
- optional: true
-
- '@oxc-transform/binding-linux-x64-gnu@0.112.0':
- optional: true
-
- '@oxc-transform/binding-linux-x64-musl@0.112.0':
- optional: true
-
- '@oxc-transform/binding-openharmony-arm64@0.112.0':
- optional: true
-
- '@oxc-transform/binding-wasm32-wasi@0.112.0':
- dependencies:
- '@napi-rs/wasm-runtime': 1.1.1
- optional: true
-
- '@oxc-transform/binding-win32-arm64-msvc@0.112.0':
- optional: true
-
- '@oxc-transform/binding-win32-ia32-msvc@0.112.0':
- optional: true
-
- '@oxc-transform/binding-win32-x64-msvc@0.112.0':
- optional: true
+ '@oxc-project/types@0.132.0': {}
'@pkgjs/parseargs@0.11.0':
optional: true
@@ -7815,14 +7160,14 @@ snapshots:
'@types/react': 19.2.10
'@types/react-dom': 19.2.3(@types/react@19.2.10)
- '@radix-ui/react-collection@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@radix-ui/react-collection@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@19.2.4)
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.10)(react@19.2.4)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@radix-ui/react-slot': 1.2.3(@types/react@19.2.10)(react@19.2.4)
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@19.2.6)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.10)(react@19.2.6)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.2.10)(react@19.2.6)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
optionalDependencies:
'@types/react': 19.2.10
'@types/react-dom': 19.2.3(@types/react@19.2.10)
@@ -7833,9 +7178,9 @@ snapshots:
optionalDependencies:
'@types/react': 19.2.10
- '@radix-ui/react-compose-refs@1.1.2(@types/react@19.2.10)(react@19.2.4)':
+ '@radix-ui/react-compose-refs@1.1.2(@types/react@19.2.10)(react@19.2.6)':
dependencies:
- react: 19.2.4
+ react: 19.2.6
optionalDependencies:
'@types/react': 19.2.10
@@ -7845,9 +7190,9 @@ snapshots:
optionalDependencies:
'@types/react': 19.2.10
- '@radix-ui/react-context@1.1.2(@types/react@19.2.10)(react@19.2.4)':
+ '@radix-ui/react-context@1.1.2(@types/react@19.2.10)(react@19.2.6)':
dependencies:
- react: 19.2.4
+ react: 19.2.6
optionalDependencies:
'@types/react': 19.2.10
@@ -7863,9 +7208,9 @@ snapshots:
optionalDependencies:
'@types/react': 19.2.10
- '@radix-ui/react-direction@1.1.1(@types/react@19.2.10)(react@19.2.4)':
+ '@radix-ui/react-direction@1.1.1(@types/react@19.2.10)(react@19.2.6)':
dependencies:
- react: 19.2.4
+ react: 19.2.6
optionalDependencies:
'@types/react': 19.2.10
@@ -7906,10 +7251,10 @@ snapshots:
optionalDependencies:
'@types/react': 19.2.10
- '@radix-ui/react-id@1.1.1(@types/react@19.2.10)(react@19.2.4)':
+ '@radix-ui/react-id@1.1.1(@types/react@19.2.10)(react@19.2.6)':
dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.10)(react@19.2.4)
- react: 19.2.4
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.10)(react@19.2.6)
+ react: 19.2.6
optionalDependencies:
'@types/react': 19.2.10
@@ -7922,11 +7267,11 @@ snapshots:
'@types/react': 19.2.10
'@types/react-dom': 19.2.3(@types/react@19.2.10)
- '@radix-ui/react-label@2.1.8(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@radix-ui/react-label@2.1.8(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@radix-ui/react-primitive': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ '@radix-ui/react-primitive': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
optionalDependencies:
'@types/react': 19.2.10
'@types/react-dom': 19.2.3(@types/react@19.2.10)
@@ -7969,12 +7314,12 @@ snapshots:
'@types/react': 19.2.10
'@types/react-dom': 19.2.3(@types/react@19.2.10)
- '@radix-ui/react-presence@1.1.5(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@radix-ui/react-presence@1.1.5(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@19.2.4)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.10)(react@19.2.4)
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@19.2.6)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.10)(react@19.2.6)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
optionalDependencies:
'@types/react': 19.2.10
'@types/react-dom': 19.2.3(@types/react@19.2.10)
@@ -7988,11 +7333,11 @@ snapshots:
'@types/react': 19.2.10
'@types/react-dom': 19.2.3(@types/react@19.2.10)
- '@radix-ui/react-primitive@2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@radix-ui/react-primitive@2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@radix-ui/react-slot': 1.2.3(@types/react@19.2.10)(react@19.2.4)
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.2.10)(react@19.2.6)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
optionalDependencies:
'@types/react': 19.2.10
'@types/react-dom': 19.2.3(@types/react@19.2.10)
@@ -8006,11 +7351,11 @@ snapshots:
'@types/react': 19.2.10
'@types/react-dom': 19.2.3(@types/react@19.2.10)
- '@radix-ui/react-primitive@2.1.4(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@radix-ui/react-primitive@2.1.4(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@radix-ui/react-slot': 1.2.4(@types/react@19.2.10)(react@19.2.4)
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ '@radix-ui/react-slot': 1.2.4(@types/react@19.2.10)(react@19.2.6)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
optionalDependencies:
'@types/react': 19.2.10
'@types/react-dom': 19.2.3(@types/react@19.2.10)
@@ -8025,19 +7370,19 @@ snapshots:
'@types/react': 19.2.10
'@types/react-dom': 19.2.3(@types/react@19.2.10)
- '@radix-ui/react-roving-focus@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@radix-ui/react-roving-focus@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
'@radix-ui/primitive': 1.1.3
- '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@19.2.4)
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.10)(react@19.2.4)
- '@radix-ui/react-direction': 1.1.1(@types/react@19.2.10)(react@19.2.4)
- '@radix-ui/react-id': 1.1.1(@types/react@19.2.10)(react@19.2.4)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.10)(react@19.2.4)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.10)(react@19.2.4)
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@19.2.6)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.10)(react@19.2.6)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.2.10)(react@19.2.6)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.2.10)(react@19.2.6)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.10)(react@19.2.6)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.10)(react@19.2.6)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
optionalDependencies:
'@types/react': 19.2.10
'@types/react-dom': 19.2.3(@types/react@19.2.10)
@@ -8078,10 +7423,10 @@ snapshots:
optionalDependencies:
'@types/react': 19.2.10
- '@radix-ui/react-slot@1.2.3(@types/react@19.2.10)(react@19.2.4)':
+ '@radix-ui/react-slot@1.2.3(@types/react@19.2.10)(react@19.2.6)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@19.2.4)
- react: 19.2.4
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@19.2.6)
+ react: 19.2.6
optionalDependencies:
'@types/react': 19.2.10
@@ -8092,25 +7437,25 @@ snapshots:
optionalDependencies:
'@types/react': 19.2.10
- '@radix-ui/react-slot@1.2.4(@types/react@19.2.10)(react@19.2.4)':
+ '@radix-ui/react-slot@1.2.4(@types/react@19.2.10)(react@19.2.6)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@19.2.4)
- react: 19.2.4
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@19.2.6)
+ react: 19.2.6
optionalDependencies:
'@types/react': 19.2.10
- '@radix-ui/react-tabs@1.1.13(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@radix-ui/react-tabs@1.1.13(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
'@radix-ui/primitive': 1.1.3
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.10)(react@19.2.4)
- '@radix-ui/react-direction': 1.1.1(@types/react@19.2.10)(react@19.2.4)
- '@radix-ui/react-id': 1.1.1(@types/react@19.2.10)(react@19.2.4)
- '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.10)(react@19.2.4)
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.10)(react@19.2.6)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.2.10)(react@19.2.6)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.2.10)(react@19.2.6)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.10)(react@19.2.6)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
optionalDependencies:
'@types/react': 19.2.10
'@types/react-dom': 19.2.3(@types/react@19.2.10)
@@ -8121,9 +7466,9 @@ snapshots:
optionalDependencies:
'@types/react': 19.2.10
- '@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.2.10)(react@19.2.4)':
+ '@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.2.10)(react@19.2.6)':
dependencies:
- react: 19.2.4
+ react: 19.2.6
optionalDependencies:
'@types/react': 19.2.10
@@ -8135,11 +7480,11 @@ snapshots:
optionalDependencies:
'@types/react': 19.2.10
- '@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.2.10)(react@19.2.4)':
+ '@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.2.10)(react@19.2.6)':
dependencies:
- '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.2.10)(react@19.2.4)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.10)(react@19.2.4)
- react: 19.2.4
+ '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.2.10)(react@19.2.6)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.10)(react@19.2.6)
+ react: 19.2.6
optionalDependencies:
'@types/react': 19.2.10
@@ -8150,10 +7495,10 @@ snapshots:
optionalDependencies:
'@types/react': 19.2.10
- '@radix-ui/react-use-effect-event@0.0.2(@types/react@19.2.10)(react@19.2.4)':
+ '@radix-ui/react-use-effect-event@0.0.2(@types/react@19.2.10)(react@19.2.6)':
dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.10)(react@19.2.4)
- react: 19.2.4
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.10)(react@19.2.6)
+ react: 19.2.6
optionalDependencies:
'@types/react': 19.2.10
@@ -8170,9 +7515,9 @@ snapshots:
optionalDependencies:
'@types/react': 19.2.10
- '@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.2.10)(react@19.2.4)':
+ '@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.2.10)(react@19.2.6)':
dependencies:
- react: 19.2.4
+ react: 19.2.6
optionalDependencies:
'@types/react': 19.2.10
@@ -8222,9 +7567,60 @@ snapshots:
'@react-google-maps/marker-clusterer@2.20.0': {}
- '@rolldown/pluginutils@1.0.0-beta.40': {}
+ '@resvg/resvg-wasm@2.4.0': {}
+
+ '@rolldown/binding-android-arm64@1.0.2':
+ optional: true
+
+ '@rolldown/binding-darwin-arm64@1.0.2':
+ optional: true
+
+ '@rolldown/binding-darwin-x64@1.0.2':
+ optional: true
- '@rolldown/pluginutils@1.0.0-rc.2': {}
+ '@rolldown/binding-freebsd-x64@1.0.2':
+ optional: true
+
+ '@rolldown/binding-linux-arm-gnueabihf@1.0.2':
+ optional: true
+
+ '@rolldown/binding-linux-arm64-gnu@1.0.2':
+ optional: true
+
+ '@rolldown/binding-linux-arm64-musl@1.0.2':
+ optional: true
+
+ '@rolldown/binding-linux-ppc64-gnu@1.0.2':
+ optional: true
+
+ '@rolldown/binding-linux-s390x-gnu@1.0.2':
+ optional: true
+
+ '@rolldown/binding-linux-x64-gnu@1.0.2':
+ optional: true
+
+ '@rolldown/binding-linux-x64-musl@1.0.2':
+ optional: true
+
+ '@rolldown/binding-openharmony-arm64@1.0.2':
+ optional: true
+
+ '@rolldown/binding-wasm32-wasi@1.0.2':
+ dependencies:
+ '@emnapi/core': 1.10.0
+ '@emnapi/runtime': 1.10.0
+ '@napi-rs/wasm-runtime': 1.1.4(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)
+ optional: true
+
+ '@rolldown/binding-win32-arm64-msvc@1.0.2':
+ optional: true
+
+ '@rolldown/binding-win32-x64-msvc@1.0.2':
+ optional: true
+
+ '@rolldown/pluginutils@1.0.0-rc.18': {}
+
+ '@rolldown/pluginutils@1.0.1': {}
'@rollup/plugin-commonjs@28.0.1(rollup@4.55.1)':
dependencies:
@@ -8521,39 +7917,10 @@ snapshots:
- encoding
- supports-color
- '@solid-primitives/event-listener@2.4.3(solid-js@1.9.11)':
- dependencies:
- '@solid-primitives/utils': 6.3.2(solid-js@1.9.11)
- solid-js: 1.9.11
-
- '@solid-primitives/keyboard@1.3.3(solid-js@1.9.11)':
- dependencies:
- '@solid-primitives/event-listener': 2.4.3(solid-js@1.9.11)
- '@solid-primitives/rootless': 1.5.2(solid-js@1.9.11)
- '@solid-primitives/utils': 6.3.2(solid-js@1.9.11)
- solid-js: 1.9.11
-
- '@solid-primitives/resize-observer@2.1.3(solid-js@1.9.11)':
- dependencies:
- '@solid-primitives/event-listener': 2.4.3(solid-js@1.9.11)
- '@solid-primitives/rootless': 1.5.2(solid-js@1.9.11)
- '@solid-primitives/static-store': 0.1.2(solid-js@1.9.11)
- '@solid-primitives/utils': 6.3.2(solid-js@1.9.11)
- solid-js: 1.9.11
-
- '@solid-primitives/rootless@1.5.2(solid-js@1.9.11)':
+ '@shuding/opentype.js@1.4.0-beta.0':
dependencies:
- '@solid-primitives/utils': 6.3.2(solid-js@1.9.11)
- solid-js: 1.9.11
-
- '@solid-primitives/static-store@0.1.2(solid-js@1.9.11)':
- dependencies:
- '@solid-primitives/utils': 6.3.2(solid-js@1.9.11)
- solid-js: 1.9.11
-
- '@solid-primitives/utils@6.3.2(solid-js@1.9.11)':
- dependencies:
- solid-js: 1.9.11
+ fflate: 0.7.4
+ string.prototype.codepointat: 0.2.1
'@standard-schema/utils@0.3.0': {}
@@ -8720,93 +8087,17 @@ snapshots:
'@tailwindcss/oxide-win32-arm64-msvc': 4.1.18
'@tailwindcss/oxide-win32-x64-msvc': 4.1.18
- '@tailwindcss/vite@4.1.18(vite@7.3.1(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))':
+ '@tailwindcss/vite@4.1.18(vite@8.0.14(@types/node@22.19.7)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))':
dependencies:
'@tailwindcss/node': 4.1.18
'@tailwindcss/oxide': 4.1.18
tailwindcss: 4.1.18
- vite: 7.3.1(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)
-
- '@tanstack/devtools-client@0.0.3':
- dependencies:
- '@tanstack/devtools-event-client': 0.3.5
-
- '@tanstack/devtools-client@0.0.5':
- dependencies:
- '@tanstack/devtools-event-client': 0.4.0
-
- '@tanstack/devtools-event-bus@0.3.3':
- dependencies:
- ws: 8.19.0
- transitivePeerDependencies:
- - bufferutil
- - utf-8-validate
-
- '@tanstack/devtools-event-client@0.3.5': {}
-
- '@tanstack/devtools-event-client@0.4.0': {}
-
- '@tanstack/devtools-ui@0.4.4(csstype@3.2.3)(solid-js@1.9.11)':
- dependencies:
- clsx: 2.1.1
- goober: 2.1.18(csstype@3.2.3)
- solid-js: 1.9.11
- transitivePeerDependencies:
- - csstype
-
- '@tanstack/devtools-vite@0.3.12(vite@7.3.1(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))':
- dependencies:
- '@babel/core': 7.28.6
- '@babel/generator': 7.28.6
- '@babel/parser': 7.28.6
- '@babel/traverse': 7.28.6
- '@babel/types': 7.28.6
- '@tanstack/devtools-client': 0.0.5
- '@tanstack/devtools-event-bus': 0.3.3
- chalk: 5.6.2
- launch-editor: 2.12.0
- picomatch: 4.0.3
- vite: 7.3.1(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)
- transitivePeerDependencies:
- - bufferutil
- - supports-color
- - utf-8-validate
-
- '@tanstack/devtools@0.7.0(csstype@3.2.3)(solid-js@1.9.11)':
- dependencies:
- '@solid-primitives/event-listener': 2.4.3(solid-js@1.9.11)
- '@solid-primitives/keyboard': 1.3.3(solid-js@1.9.11)
- '@solid-primitives/resize-observer': 2.1.3(solid-js@1.9.11)
- '@tanstack/devtools-client': 0.0.3
- '@tanstack/devtools-event-bus': 0.3.3
- '@tanstack/devtools-ui': 0.4.4(csstype@3.2.3)(solid-js@1.9.11)
- clsx: 2.1.1
- goober: 2.1.18(csstype@3.2.3)
- solid-js: 1.9.11
- transitivePeerDependencies:
- - bufferutil
- - csstype
- - utf-8-validate
-
- '@tanstack/history@1.154.14': {}
+ vite: 8.0.14(@types/node@22.19.7)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)
'@tanstack/query-core@5.90.19': {}
'@tanstack/query-devtools@5.92.0': {}
- '@tanstack/react-devtools@0.7.11(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(csstype@3.2.3)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(solid-js@1.9.11)':
- dependencies:
- '@tanstack/devtools': 0.7.0(csstype@3.2.3)(solid-js@1.9.11)
- '@types/react': 19.2.10
- '@types/react-dom': 19.2.3(@types/react@19.2.10)
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
- transitivePeerDependencies:
- - bufferutil
- - csstype
- - solid-js
- - utf-8-validate
-
'@tanstack/react-query-devtools@5.91.2(@tanstack/react-query@5.90.19(react@18.3.1))(react@18.3.1)':
dependencies:
'@tanstack/query-devtools': 5.92.0
@@ -8818,92 +8109,10 @@ snapshots:
'@tanstack/query-core': 5.90.19
react: 18.3.1
- '@tanstack/react-query@5.90.19(react@19.2.4)':
+ '@tanstack/react-query@5.90.19(react@19.2.6)':
dependencies:
'@tanstack/query-core': 5.90.19
- react: 19.2.4
-
- '@tanstack/react-router-devtools@1.158.0(@tanstack/react-router@1.158.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@tanstack/router-core@1.158.0)(csstype@3.2.3)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
- dependencies:
- '@tanstack/react-router': 1.158.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@tanstack/router-devtools-core': 1.158.0(@tanstack/router-core@1.158.0)(csstype@3.2.3)
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
- optionalDependencies:
- '@tanstack/router-core': 1.158.0
- transitivePeerDependencies:
- - csstype
-
- '@tanstack/react-router-ssr-query@1.158.0(@tanstack/query-core@5.90.19)(@tanstack/react-query@5.90.19(react@19.2.4))(@tanstack/react-router@1.158.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@tanstack/router-core@1.158.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
- dependencies:
- '@tanstack/query-core': 5.90.19
- '@tanstack/react-query': 5.90.19(react@19.2.4)
- '@tanstack/react-router': 1.158.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@tanstack/router-ssr-query-core': 1.158.0(@tanstack/query-core@5.90.19)(@tanstack/router-core@1.158.0)
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
- transitivePeerDependencies:
- - '@tanstack/router-core'
-
- '@tanstack/react-router@1.158.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
- dependencies:
- '@tanstack/history': 1.154.14
- '@tanstack/react-store': 0.8.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@tanstack/router-core': 1.158.0
- isbot: 5.1.34
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
- tiny-invariant: 1.3.3
- tiny-warning: 1.0.3
-
- '@tanstack/react-start-client@1.158.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
- dependencies:
- '@tanstack/react-router': 1.158.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@tanstack/router-core': 1.158.0
- '@tanstack/start-client-core': 1.158.0
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
- tiny-invariant: 1.3.3
- tiny-warning: 1.0.3
-
- '@tanstack/react-start-server@1.158.0(crossws@0.4.4(srvx@0.10.1))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
- dependencies:
- '@tanstack/history': 1.154.14
- '@tanstack/react-router': 1.158.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@tanstack/router-core': 1.158.0
- '@tanstack/start-client-core': 1.158.0
- '@tanstack/start-server-core': 1.158.0(crossws@0.4.4(srvx@0.10.1))
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
- transitivePeerDependencies:
- - crossws
-
- '@tanstack/react-start@1.158.0(crossws@0.4.4(srvx@0.10.1))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(vite@7.3.1(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(webpack@5.104.1)':
- dependencies:
- '@tanstack/react-router': 1.158.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@tanstack/react-start-client': 1.158.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@tanstack/react-start-server': 1.158.0(crossws@0.4.4(srvx@0.10.1))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@tanstack/router-utils': 1.158.0
- '@tanstack/start-client-core': 1.158.0
- '@tanstack/start-plugin-core': 1.158.0(@tanstack/react-router@1.158.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(crossws@0.4.4(srvx@0.10.1))(vite@7.3.1(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(webpack@5.104.1)
- '@tanstack/start-server-core': 1.158.0(crossws@0.4.4(srvx@0.10.1))
- pathe: 2.0.3
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
- vite: 7.3.1(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)
- transitivePeerDependencies:
- - '@rsbuild/core'
- - crossws
- - supports-color
- - vite-plugin-solid
- - webpack
-
- '@tanstack/react-store@0.8.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
- dependencies:
- '@tanstack/store': 0.8.0
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
- use-sync-external-store: 1.6.0(react@19.2.4)
+ react: 19.2.6
'@tanstack/react-virtual@3.13.18(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
@@ -8911,142 +8120,8 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@tanstack/router-core@1.158.0':
- dependencies:
- '@tanstack/history': 1.154.14
- '@tanstack/store': 0.8.0
- cookie-es: 2.0.0
- seroval: 1.5.0
- seroval-plugins: 1.5.0(seroval@1.5.0)
- tiny-invariant: 1.3.3
- tiny-warning: 1.0.3
-
- '@tanstack/router-devtools-core@1.158.0(@tanstack/router-core@1.158.0)(csstype@3.2.3)':
- dependencies:
- '@tanstack/router-core': 1.158.0
- clsx: 2.1.1
- goober: 2.1.18(csstype@3.2.3)
- tiny-invariant: 1.3.3
- optionalDependencies:
- csstype: 3.2.3
-
- '@tanstack/router-generator@1.158.0':
- dependencies:
- '@tanstack/router-core': 1.158.0
- '@tanstack/router-utils': 1.158.0
- '@tanstack/virtual-file-routes': 1.154.7
- prettier: 3.8.1
- recast: 0.23.11
- source-map: 0.7.6
- tsx: 4.21.0
- zod: 3.25.76
- transitivePeerDependencies:
- - supports-color
-
- '@tanstack/router-plugin@1.158.0(@tanstack/react-router@1.158.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(vite@7.3.1(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(webpack@5.104.1)':
- dependencies:
- '@babel/core': 7.28.6
- '@babel/plugin-syntax-jsx': 7.28.6(@babel/core@7.28.6)
- '@babel/plugin-syntax-typescript': 7.28.6(@babel/core@7.28.6)
- '@babel/template': 7.28.6
- '@babel/traverse': 7.28.6
- '@babel/types': 7.28.6
- '@tanstack/router-core': 1.158.0
- '@tanstack/router-generator': 1.158.0
- '@tanstack/router-utils': 1.158.0
- '@tanstack/virtual-file-routes': 1.154.7
- chokidar: 3.6.0
- unplugin: 2.3.11
- zod: 3.25.76
- optionalDependencies:
- '@tanstack/react-router': 1.158.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- vite: 7.3.1(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)
- webpack: 5.104.1
- transitivePeerDependencies:
- - supports-color
-
- '@tanstack/router-ssr-query-core@1.158.0(@tanstack/query-core@5.90.19)(@tanstack/router-core@1.158.0)':
- dependencies:
- '@tanstack/query-core': 5.90.19
- '@tanstack/router-core': 1.158.0
-
- '@tanstack/router-utils@1.158.0':
- dependencies:
- '@babel/core': 7.28.6
- '@babel/generator': 7.28.6
- '@babel/parser': 7.28.6
- '@babel/types': 7.28.6
- ansis: 4.2.0
- babel-dead-code-elimination: 1.0.12
- diff: 8.0.3
- pathe: 2.0.3
- tinyglobby: 0.2.15
- transitivePeerDependencies:
- - supports-color
-
- '@tanstack/start-client-core@1.158.0':
- dependencies:
- '@tanstack/router-core': 1.158.0
- '@tanstack/start-fn-stubs': 1.154.7
- '@tanstack/start-storage-context': 1.158.0
- seroval: 1.5.0
- tiny-invariant: 1.3.3
- tiny-warning: 1.0.3
-
- '@tanstack/start-fn-stubs@1.154.7': {}
-
- '@tanstack/start-plugin-core@1.158.0(@tanstack/react-router@1.158.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(crossws@0.4.4(srvx@0.10.1))(vite@7.3.1(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(webpack@5.104.1)':
- dependencies:
- '@babel/code-frame': 7.27.1
- '@babel/core': 7.28.6
- '@babel/types': 7.28.6
- '@rolldown/pluginutils': 1.0.0-beta.40
- '@tanstack/router-core': 1.158.0
- '@tanstack/router-generator': 1.158.0
- '@tanstack/router-plugin': 1.158.0(@tanstack/react-router@1.158.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(vite@7.3.1(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(webpack@5.104.1)
- '@tanstack/router-utils': 1.158.0
- '@tanstack/start-client-core': 1.158.0
- '@tanstack/start-server-core': 1.158.0(crossws@0.4.4(srvx@0.10.1))
- cheerio: 1.2.0
- exsolve: 1.0.8
- pathe: 2.0.3
- srvx: 0.10.1
- tinyglobby: 0.2.15
- ufo: 1.6.3
- vite: 7.3.1(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)
- vitefu: 1.1.1(vite@7.3.1(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))
- xmlbuilder2: 4.0.3
- zod: 3.25.76
- transitivePeerDependencies:
- - '@rsbuild/core'
- - '@tanstack/react-router'
- - crossws
- - supports-color
- - vite-plugin-solid
- - webpack
-
- '@tanstack/start-server-core@1.158.0(crossws@0.4.4(srvx@0.10.1))':
- dependencies:
- '@tanstack/history': 1.154.14
- '@tanstack/router-core': 1.158.0
- '@tanstack/start-client-core': 1.158.0
- '@tanstack/start-storage-context': 1.158.0
- h3-v2: h3@2.0.1-rc.11(crossws@0.4.4(srvx@0.10.1))
- seroval: 1.5.0
- tiny-invariant: 1.3.3
- transitivePeerDependencies:
- - crossws
-
- '@tanstack/start-storage-context@1.158.0':
- dependencies:
- '@tanstack/router-core': 1.158.0
-
- '@tanstack/store@0.8.0': {}
-
'@tanstack/virtual-core@3.13.18': {}
- '@tanstack/virtual-file-routes@1.154.7': {}
-
'@testing-library/dom@10.4.1':
dependencies:
'@babel/code-frame': 7.28.6
@@ -9058,12 +8133,12 @@ snapshots:
picocolors: 1.1.1
pretty-format: 27.5.1
- '@testing-library/react@16.3.2(@testing-library/dom@10.4.1)(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@testing-library/react@16.3.2(@testing-library/dom@10.4.1)(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
'@babel/runtime': 7.28.6
'@testing-library/dom': 10.4.1
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
optionalDependencies:
'@types/react': 19.2.10
'@types/react-dom': 19.2.3(@types/react@19.2.10)
@@ -9080,27 +8155,6 @@ snapshots:
'@types/aria-query@5.0.4': {}
- '@types/babel__core@7.20.5':
- dependencies:
- '@babel/parser': 7.28.6
- '@babel/types': 7.28.6
- '@types/babel__generator': 7.27.0
- '@types/babel__template': 7.4.4
- '@types/babel__traverse': 7.28.0
-
- '@types/babel__generator@7.27.0':
- dependencies:
- '@babel/types': 7.28.6
-
- '@types/babel__template@7.4.4':
- dependencies:
- '@babel/parser': 7.28.6
- '@babel/types': 7.28.6
-
- '@types/babel__traverse@7.28.0':
- dependencies:
- '@babel/types': 7.28.6
-
'@types/caseless@0.12.5':
optional: true
@@ -9192,22 +8246,48 @@ snapshots:
'@types/tough-cookie@4.0.5':
optional: true
+ '@unpic/core@1.0.3':
+ dependencies:
+ unpic: 4.2.2
+
+ '@unpic/react@1.0.2(next@14.2.35(@opentelemetry/api@1.9.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
+ dependencies:
+ '@unpic/core': 1.0.3
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
+ optionalDependencies:
+ next: 14.2.35(@opentelemetry/api@1.9.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+
+ '@vercel/og@0.8.6':
+ dependencies:
+ '@resvg/resvg-wasm': 2.4.0
+ satori: 0.16.0
+
'@vercel/speed-insights@1.3.1(next@14.2.35(@babel/core@7.28.6)(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)':
optionalDependencies:
next: 14.2.35(@babel/core@7.28.6)(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
- '@vitejs/plugin-react@5.1.3(vite@7.3.1(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))':
+ '@vitejs/plugin-react@6.0.2(vite@8.0.14(@types/node@22.19.7)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))':
dependencies:
- '@babel/core': 7.29.0
- '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.29.0)
- '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.29.0)
- '@rolldown/pluginutils': 1.0.0-rc.2
- '@types/babel__core': 7.20.5
- react-refresh: 0.18.0
- vite: 7.3.1(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)
- transitivePeerDependencies:
- - supports-color
+ '@rolldown/pluginutils': 1.0.1
+ vite: 8.0.14(@types/node@22.19.7)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)
+
+ '@vitejs/plugin-rsc@0.5.26(react-dom@19.2.6(react@19.2.6))(react-server-dom-webpack@19.2.6(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(webpack@5.104.1(esbuild@0.27.2)))(react@19.2.6)(vite@8.0.14(@types/node@22.19.7)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))':
+ dependencies:
+ '@rolldown/pluginutils': 1.0.0-rc.18
+ es-module-lexer: 2.1.0
+ estree-walker: 3.0.3
+ magic-string: 0.30.21
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
+ srvx: 0.11.15
+ strip-literal: 3.1.0
+ turbo-stream: 3.2.0
+ vite: 8.0.14(@types/node@22.19.7)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)
+ vitefu: 1.1.3(vite@8.0.14(@types/node@22.19.7)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))
+ optionalDependencies:
+ react-server-dom-webpack: 19.2.6(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(webpack@5.104.1(esbuild@0.27.2))
'@vitest/expect@3.2.4':
dependencies:
@@ -9217,13 +8297,13 @@ snapshots:
chai: 5.3.3
tinyrainbow: 2.0.0
- '@vitest/mocker@3.2.4(vite@7.3.1(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))':
+ '@vitest/mocker@3.2.4(vite@7.3.1(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))':
dependencies:
'@vitest/spy': 3.2.4
estree-walker: 3.0.3
magic-string: 0.30.21
optionalDependencies:
- vite: 7.3.1(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)
+ vite: 7.3.1(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)
'@vitest/pretty-format@3.2.4':
dependencies:
@@ -9349,6 +8429,10 @@ snapshots:
dependencies:
acorn: 8.15.0
+ acorn-loose@8.5.2:
+ dependencies:
+ acorn: 8.15.0
+
acorn-walk@8.3.4:
dependencies:
acorn: 8.15.0
@@ -9391,8 +8475,6 @@ snapshots:
ansi-styles@6.2.3: {}
- ansis@4.2.0: {}
-
any-promise@1.3.0: {}
anymatch@3.1.3:
@@ -9419,10 +8501,6 @@ snapshots:
assertion-error@2.0.1: {}
- ast-types@0.16.1:
- dependencies:
- tslib: 2.8.1
-
async-retry@1.3.3:
dependencies:
retry: 0.13.1
@@ -9445,16 +8523,7 @@ snapshots:
form-data: 4.0.5
proxy-from-env: 1.1.0
transitivePeerDependencies:
- - debug
-
- babel-dead-code-elimination@1.0.12:
- dependencies:
- '@babel/core': 7.28.6
- '@babel/parser': 7.28.6
- '@babel/traverse': 7.28.6
- '@babel/types': 7.28.6
- transitivePeerDependencies:
- - supports-color
+ - debug
babel-plugin-polyfill-corejs2@0.4.14(@babel/core@7.28.6):
dependencies:
@@ -9482,6 +8551,8 @@ snapshots:
balanced-match@1.0.2: {}
+ base64-js@0.0.8: {}
+
base64-js@1.5.1: {}
baseline-browser-mapping@2.9.15: {}
@@ -9533,6 +8604,8 @@ snapshots:
camelcase@6.3.0: {}
+ camelize@1.0.1: {}
+
caniuse-lite@1.0.30001764: {}
chai@5.3.3:
@@ -9552,29 +8625,6 @@ snapshots:
check-error@2.1.3: {}
- cheerio-select@2.1.0:
- dependencies:
- boolbase: 1.0.0
- css-select: 5.2.2
- css-what: 6.2.2
- domelementtype: 2.3.0
- domhandler: 5.0.3
- domutils: 3.2.2
-
- cheerio@1.2.0:
- dependencies:
- cheerio-select: 2.1.0
- dom-serializer: 2.0.0
- domhandler: 5.0.3
- domutils: 3.2.2
- encoding-sniffer: 0.2.1
- htmlparser2: 10.1.0
- parse5: 7.3.0
- parse5-htmlparser2-tree-adapter: 7.1.0
- parse5-parser-stream: 7.1.2
- undici: 7.20.0
- whatwg-mimetype: 4.0.0
-
chokidar@3.6.0:
dependencies:
anymatch: 3.1.3
@@ -9630,8 +8680,6 @@ snapshots:
array-ify: 1.0.0
dot-prop: 5.3.0
- consola@3.4.2: {}
-
conventional-changelog-angular@7.0.0:
dependencies:
compare-func: 2.0.0
@@ -9649,8 +8697,6 @@ snapshots:
convert-source-map@2.0.0: {}
- cookie-es@2.0.0: {}
-
core-js-compat@3.47.0:
dependencies:
browserslist: 4.28.1
@@ -9696,9 +8742,13 @@ snapshots:
shebang-command: 2.0.0
which: 2.0.2
- crossws@0.4.4(srvx@0.10.1):
- optionalDependencies:
- srvx: 0.10.1
+ css-background-parser@0.1.0: {}
+
+ css-box-shadow@1.0.0-3: {}
+
+ css-color-keywords@1.0.0: {}
+
+ css-gradient-parser@0.0.16: {}
css-select@5.2.2:
dependencies:
@@ -9708,6 +8758,12 @@ snapshots:
domutils: 3.2.2
nth-check: 2.1.1
+ css-to-react-native@3.2.0:
+ dependencies:
+ camelize: 1.0.1
+ css-color-keywords: 1.0.0
+ postcss-value-parser: 4.2.0
+
css-tree@2.2.1:
dependencies:
mdn-data: 2.0.28
@@ -9751,8 +8807,6 @@ snapshots:
date-fns@4.1.0: {}
- db0@0.3.4: {}
-
debounce@1.2.1: {}
debug@3.2.7:
@@ -9779,8 +8833,6 @@ snapshots:
didyoumean@1.2.2: {}
- diff@8.0.3: {}
-
dlv@1.1.3: {}
dom-accessibility-api@0.5.16: {}
@@ -9838,15 +8890,12 @@ snapshots:
electron-to-chromium@1.5.267: {}
+ emoji-regex-xs@2.0.1: {}
+
emoji-regex@8.0.0: {}
emoji-regex@9.2.2: {}
- encoding-sniffer@0.2.1:
- dependencies:
- iconv-lite: 0.6.3
- whatwg-encoding: 3.1.1
-
end-of-stream@1.4.5:
dependencies:
once: 1.4.0
@@ -9861,8 +8910,6 @@ snapshots:
entities@6.0.1: {}
- entities@7.0.1: {}
-
env-paths@2.2.1: {}
error-ex@1.3.4:
@@ -9875,7 +8922,7 @@ snapshots:
es-module-lexer@1.7.0: {}
- es-module-lexer@2.0.0: {}
+ es-module-lexer@2.1.0: {}
es-object-atoms@1.1.1:
dependencies:
@@ -9919,6 +8966,8 @@ snapshots:
escalade@3.2.0: {}
+ escape-html@1.0.3: {}
+
escape-string-regexp@4.0.0: {}
eslint-scope@5.1.1:
@@ -9926,8 +8975,6 @@ snapshots:
esrecurse: 4.3.0
estraverse: 4.3.0
- esprima@4.0.1: {}
-
esrecurse@4.3.0:
dependencies:
estraverse: 5.3.0
@@ -9953,8 +9000,6 @@ snapshots:
expect-type@1.3.0: {}
- exsolve@1.0.8: {}
-
extend@3.0.2: {}
farmhash-modern@1.1.0: {}
@@ -9995,11 +9040,17 @@ snapshots:
optionalDependencies:
picomatch: 4.0.3
+ fdir@6.5.0(picomatch@4.0.4):
+ optionalDependencies:
+ picomatch: 4.0.4
+
fetch-blob@3.2.0:
dependencies:
node-domexception: 1.0.0
web-streams-polyfill: 3.3.3
+ fflate@0.7.4: {}
+
fill-range@7.1.1:
dependencies:
to-regex-range: 5.0.1
@@ -10140,6 +9191,7 @@ snapshots:
get-tsconfig@4.13.1:
dependencies:
resolve-pkg-maps: 1.0.0
+ optional: true
git-raw-commits@4.0.0:
dependencies:
@@ -10241,13 +9293,6 @@ snapshots:
dependencies:
duplexer: 0.1.2
- h3@2.0.1-rc.11(crossws@0.4.4(srvx@0.10.1)):
- dependencies:
- rou3: 0.7.12
- srvx: 0.10.1
- optionalDependencies:
- crossws: 0.4.4(srvx@0.10.1)
-
has-flag@4.0.0: {}
has-symbols@1.1.0: {}
@@ -10260,6 +9305,8 @@ snapshots:
dependencies:
function-bind: 1.1.2
+ hex-rgb@4.3.0: {}
+
html-encoding-sniffer@6.0.0:
dependencies:
'@exodus/bytes': 1.11.0
@@ -10271,13 +9318,6 @@ snapshots:
html-escaper@2.0.2: {}
- htmlparser2@10.1.0:
- dependencies:
- domelementtype: 2.3.0
- domhandler: 5.0.3
- domutils: 3.2.2
- entities: 7.0.1
-
htmlparser2@8.0.2:
dependencies:
domelementtype: 2.3.0
@@ -10319,9 +9359,7 @@ snapshots:
husky@9.1.7: {}
- iconv-lite@0.6.3:
- dependencies:
- safer-buffer: 2.1.2
+ image-size@2.0.2: {}
import-fresh@3.3.1:
dependencies:
@@ -10345,6 +9383,8 @@ snapshots:
dependencies:
loose-envify: 1.4.0
+ ipaddr.js@2.4.0: {}
+
is-arrayish@0.2.1: {}
is-binary-path@2.1.0:
@@ -10382,8 +9422,6 @@ snapshots:
dependencies:
text-extensions: 2.4.0
- isbot@5.1.34: {}
-
isexe@2.0.0: {}
jackspeak@3.4.3:
@@ -10490,44 +9528,72 @@ snapshots:
kdbush@4.0.2: {}
- launch-editor@2.12.0:
- dependencies:
- picocolors: 1.1.1
- shell-quote: 1.8.3
-
lightningcss-android-arm64@1.30.2:
optional: true
+ lightningcss-android-arm64@1.32.0:
+ optional: true
+
lightningcss-darwin-arm64@1.30.2:
optional: true
+ lightningcss-darwin-arm64@1.32.0:
+ optional: true
+
lightningcss-darwin-x64@1.30.2:
optional: true
+ lightningcss-darwin-x64@1.32.0:
+ optional: true
+
lightningcss-freebsd-x64@1.30.2:
optional: true
+ lightningcss-freebsd-x64@1.32.0:
+ optional: true
+
lightningcss-linux-arm-gnueabihf@1.30.2:
optional: true
+ lightningcss-linux-arm-gnueabihf@1.32.0:
+ optional: true
+
lightningcss-linux-arm64-gnu@1.30.2:
optional: true
+ lightningcss-linux-arm64-gnu@1.32.0:
+ optional: true
+
lightningcss-linux-arm64-musl@1.30.2:
optional: true
+ lightningcss-linux-arm64-musl@1.32.0:
+ optional: true
+
lightningcss-linux-x64-gnu@1.30.2:
optional: true
+ lightningcss-linux-x64-gnu@1.32.0:
+ optional: true
+
lightningcss-linux-x64-musl@1.30.2:
optional: true
+ lightningcss-linux-x64-musl@1.32.0:
+ optional: true
+
lightningcss-win32-arm64-msvc@1.30.2:
optional: true
+ lightningcss-win32-arm64-msvc@1.32.0:
+ optional: true
+
lightningcss-win32-x64-msvc@1.30.2:
optional: true
+ lightningcss-win32-x64-msvc@1.32.0:
+ optional: true
+
lightningcss@1.30.2:
dependencies:
detect-libc: 2.1.2
@@ -10544,10 +9610,31 @@ snapshots:
lightningcss-win32-arm64-msvc: 1.30.2
lightningcss-win32-x64-msvc: 1.30.2
+ lightningcss@1.32.0:
+ dependencies:
+ detect-libc: 2.1.2
+ optionalDependencies:
+ lightningcss-android-arm64: 1.32.0
+ lightningcss-darwin-arm64: 1.32.0
+ lightningcss-darwin-x64: 1.32.0
+ lightningcss-freebsd-x64: 1.32.0
+ lightningcss-linux-arm-gnueabihf: 1.32.0
+ lightningcss-linux-arm64-gnu: 1.32.0
+ lightningcss-linux-arm64-musl: 1.32.0
+ lightningcss-linux-x64-gnu: 1.32.0
+ lightningcss-linux-x64-musl: 1.32.0
+ lightningcss-win32-arm64-msvc: 1.32.0
+ lightningcss-win32-x64-msvc: 1.32.0
+
lilconfig@3.1.3: {}
limiter@1.1.5: {}
+ linebreak@1.1.0:
+ dependencies:
+ base64-js: 0.0.8
+ unicode-trie: 2.0.0
+
lines-and-columns@1.2.4: {}
linkify-react@4.3.2(linkifyjs@4.3.2)(react@18.3.1):
@@ -10635,9 +9722,9 @@ snapshots:
dependencies:
react: 18.3.1
- lucide-react@0.561.0(react@19.2.4):
+ lucide-react@0.561.0(react@19.2.6):
dependencies:
- react: 19.2.4
+ react: 19.2.6
lz-string@1.5.0: {}
@@ -10699,6 +9786,8 @@ snapshots:
nanoid@3.3.11: {}
+ nanoid@3.3.12: {}
+
neo-async@2.6.2: {}
next-render-analyzer@0.1.2:
@@ -10735,55 +9824,32 @@ snapshots:
- '@babel/core'
- babel-plugin-macros
- nf3@0.3.7: {}
-
- nitro-nightly@3.0.1-20260202-124820-1954b824(chokidar@3.6.0)(lru-cache@11.2.5)(rollup@4.55.1)(vite@7.3.1(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)):
+ next@14.2.35(@opentelemetry/api@1.9.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6):
dependencies:
- consola: 3.4.2
- crossws: 0.4.4(srvx@0.10.1)
- db0: 0.3.4
- h3: 2.0.1-rc.11(crossws@0.4.4(srvx@0.10.1))
- jiti: 2.6.1
- nf3: 0.3.7
- ofetch: 2.0.0-alpha.3
- ohash: 2.0.11
- oxc-minify: 0.112.0
- oxc-transform: 0.112.0
- srvx: 0.10.1
- undici: 7.20.0
- unenv: 2.0.0-rc.24
- unstorage: 2.0.0-alpha.5(chokidar@3.6.0)(db0@0.3.4)(lru-cache@11.2.5)(ofetch@2.0.0-alpha.3)
+ '@next/env': 14.2.35
+ '@swc/helpers': 0.5.5
+ busboy: 1.6.0
+ caniuse-lite: 1.0.30001764
+ graceful-fs: 4.2.11
+ postcss: 8.4.31
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
+ styled-jsx: 5.1.1(react@19.2.6)
optionalDependencies:
- rollup: 4.55.1
- vite: 7.3.1(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)
+ '@next/swc-darwin-arm64': 14.2.33
+ '@next/swc-darwin-x64': 14.2.33
+ '@next/swc-linux-arm64-gnu': 14.2.33
+ '@next/swc-linux-arm64-musl': 14.2.33
+ '@next/swc-linux-x64-gnu': 14.2.33
+ '@next/swc-linux-x64-musl': 14.2.33
+ '@next/swc-win32-arm64-msvc': 14.2.33
+ '@next/swc-win32-ia32-msvc': 14.2.33
+ '@next/swc-win32-x64-msvc': 14.2.33
+ '@opentelemetry/api': 1.9.0
transitivePeerDependencies:
- - '@azure/app-configuration'
- - '@azure/cosmos'
- - '@azure/data-tables'
- - '@azure/identity'
- - '@azure/keyvault-secrets'
- - '@azure/storage-blob'
- - '@capacitor/preferences'
- - '@deno/kv'
- - '@electric-sql/pglite'
- - '@libsql/client'
- - '@netlify/blobs'
- - '@planetscale/database'
- - '@upstash/redis'
- - '@vercel/blob'
- - '@vercel/functions'
- - '@vercel/kv'
- - aws4fetch
- - better-sqlite3
- - chokidar
- - drizzle-orm
- - idb-keyval
- - ioredis
- - lru-cache
- - mongodb
- - mysql2
- - sqlite3
- - uploadthing
+ - '@babel/core'
+ - babel-plugin-macros
+ optional: true
no-case@3.0.4:
dependencies:
@@ -10816,10 +9882,6 @@ snapshots:
object-hash@3.0.0: {}
- ofetch@2.0.0-alpha.3: {}
-
- ohash@2.0.11: {}
-
once@1.4.0:
dependencies:
wrappy: 1.0.2
@@ -10827,52 +9889,6 @@ snapshots:
opener@1.5.2: {}
- oxc-minify@0.112.0:
- optionalDependencies:
- '@oxc-minify/binding-android-arm-eabi': 0.112.0
- '@oxc-minify/binding-android-arm64': 0.112.0
- '@oxc-minify/binding-darwin-arm64': 0.112.0
- '@oxc-minify/binding-darwin-x64': 0.112.0
- '@oxc-minify/binding-freebsd-x64': 0.112.0
- '@oxc-minify/binding-linux-arm-gnueabihf': 0.112.0
- '@oxc-minify/binding-linux-arm-musleabihf': 0.112.0
- '@oxc-minify/binding-linux-arm64-gnu': 0.112.0
- '@oxc-minify/binding-linux-arm64-musl': 0.112.0
- '@oxc-minify/binding-linux-ppc64-gnu': 0.112.0
- '@oxc-minify/binding-linux-riscv64-gnu': 0.112.0
- '@oxc-minify/binding-linux-riscv64-musl': 0.112.0
- '@oxc-minify/binding-linux-s390x-gnu': 0.112.0
- '@oxc-minify/binding-linux-x64-gnu': 0.112.0
- '@oxc-minify/binding-linux-x64-musl': 0.112.0
- '@oxc-minify/binding-openharmony-arm64': 0.112.0
- '@oxc-minify/binding-wasm32-wasi': 0.112.0
- '@oxc-minify/binding-win32-arm64-msvc': 0.112.0
- '@oxc-minify/binding-win32-ia32-msvc': 0.112.0
- '@oxc-minify/binding-win32-x64-msvc': 0.112.0
-
- oxc-transform@0.112.0:
- optionalDependencies:
- '@oxc-transform/binding-android-arm-eabi': 0.112.0
- '@oxc-transform/binding-android-arm64': 0.112.0
- '@oxc-transform/binding-darwin-arm64': 0.112.0
- '@oxc-transform/binding-darwin-x64': 0.112.0
- '@oxc-transform/binding-freebsd-x64': 0.112.0
- '@oxc-transform/binding-linux-arm-gnueabihf': 0.112.0
- '@oxc-transform/binding-linux-arm-musleabihf': 0.112.0
- '@oxc-transform/binding-linux-arm64-gnu': 0.112.0
- '@oxc-transform/binding-linux-arm64-musl': 0.112.0
- '@oxc-transform/binding-linux-ppc64-gnu': 0.112.0
- '@oxc-transform/binding-linux-riscv64-gnu': 0.112.0
- '@oxc-transform/binding-linux-riscv64-musl': 0.112.0
- '@oxc-transform/binding-linux-s390x-gnu': 0.112.0
- '@oxc-transform/binding-linux-x64-gnu': 0.112.0
- '@oxc-transform/binding-linux-x64-musl': 0.112.0
- '@oxc-transform/binding-openharmony-arm64': 0.112.0
- '@oxc-transform/binding-wasm32-wasi': 0.112.0
- '@oxc-transform/binding-win32-arm64-msvc': 0.112.0
- '@oxc-transform/binding-win32-ia32-msvc': 0.112.0
- '@oxc-transform/binding-win32-x64-msvc': 0.112.0
-
p-limit@3.1.0:
dependencies:
yocto-queue: 0.1.0
@@ -10891,10 +9907,17 @@ snapshots:
package-json-from-dist@1.0.1: {}
+ pako@0.2.9: {}
+
parent-module@1.0.1:
dependencies:
callsites: 3.1.0
+ parse-css-color@0.2.1:
+ dependencies:
+ color-name: 1.1.4
+ hex-rgb: 4.3.0
+
parse-json@5.2.0:
dependencies:
'@babel/code-frame': 7.28.6
@@ -10902,19 +9925,6 @@ snapshots:
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
- parse5-htmlparser2-tree-adapter@7.1.0:
- dependencies:
- domhandler: 5.0.3
- parse5: 7.3.0
-
- parse5-parser-stream@7.1.2:
- dependencies:
- parse5: 7.3.0
-
- parse5@7.3.0:
- dependencies:
- entities: 6.0.1
-
parse5@8.0.0:
dependencies:
entities: 6.0.1
@@ -10959,6 +9969,8 @@ snapshots:
picomatch@4.0.3: {}
+ picomatch@4.0.4: {}
+
pify@2.3.0: {}
pirates@4.0.7: {}
@@ -11004,6 +10016,12 @@ snapshots:
picocolors: 1.1.1
source-map-js: 1.2.1
+ postcss@8.5.15:
+ dependencies:
+ nanoid: 3.3.12
+ picocolors: 1.1.1
+ source-map-js: 1.2.1
+
postcss@8.5.6:
dependencies:
nanoid: 3.3.11
@@ -11020,8 +10038,6 @@ snapshots:
dependencies:
xtend: 4.0.2
- prettier@3.8.1: {}
-
pretty-format@27.5.1:
dependencies:
ansi-regex: 5.0.1
@@ -11069,9 +10085,9 @@ snapshots:
react: 18.3.1
scheduler: 0.23.2
- react-dom@19.2.4(react@19.2.4):
+ react-dom@19.2.6(react@19.2.6):
dependencies:
- react: 19.2.4
+ react: 19.2.6
scheduler: 0.27.0
react-hook-form@7.71.1(react@18.3.1):
@@ -11087,8 +10103,6 @@ snapshots:
react-is@17.0.2: {}
- react-refresh@0.18.0: {}
-
react-remove-scroll-bar@2.3.8(@types/react@19.2.10)(react@18.3.1):
dependencies:
react: 18.3.1
@@ -11108,6 +10122,15 @@ snapshots:
optionalDependencies:
'@types/react': 19.2.10
+ react-server-dom-webpack@19.2.6(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(webpack@5.104.1(esbuild@0.27.2)):
+ dependencies:
+ acorn-loose: 8.5.2
+ neo-async: 2.6.2
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
+ webpack: 5.104.1(esbuild@0.27.2)
+ webpack-sources: 3.3.3
+
react-style-singleton@2.2.3(@types/react@19.2.10)(react@18.3.1):
dependencies:
get-nonce: 1.0.1
@@ -11122,6 +10145,8 @@ snapshots:
react@19.2.4: {}
+ react@19.2.6: {}
+
read-cache@1.0.0:
dependencies:
pify: 2.3.0
@@ -11137,14 +10162,6 @@ snapshots:
dependencies:
picomatch: 2.3.1
- recast@0.23.11:
- dependencies:
- ast-types: 0.16.1
- esprima: 4.0.1
- source-map: 0.6.1
- tiny-invariant: 1.3.3
- tslib: 2.8.1
-
regenerate-unicode-properties@10.2.2:
dependencies:
regenerate: 1.4.2
@@ -11183,7 +10200,8 @@ snapshots:
resolve-from@5.0.0: {}
- resolve-pkg-maps@1.0.0: {}
+ resolve-pkg-maps@1.0.0:
+ optional: true
resolve@1.22.11:
dependencies:
@@ -11206,6 +10224,27 @@ snapshots:
reusify@1.1.0: {}
+ rolldown@1.0.2:
+ dependencies:
+ '@oxc-project/types': 0.132.0
+ '@rolldown/pluginutils': 1.0.1
+ optionalDependencies:
+ '@rolldown/binding-android-arm64': 1.0.2
+ '@rolldown/binding-darwin-arm64': 1.0.2
+ '@rolldown/binding-darwin-x64': 1.0.2
+ '@rolldown/binding-freebsd-x64': 1.0.2
+ '@rolldown/binding-linux-arm-gnueabihf': 1.0.2
+ '@rolldown/binding-linux-arm64-gnu': 1.0.2
+ '@rolldown/binding-linux-arm64-musl': 1.0.2
+ '@rolldown/binding-linux-ppc64-gnu': 1.0.2
+ '@rolldown/binding-linux-s390x-gnu': 1.0.2
+ '@rolldown/binding-linux-x64-gnu': 1.0.2
+ '@rolldown/binding-linux-x64-musl': 1.0.2
+ '@rolldown/binding-openharmony-arm64': 1.0.2
+ '@rolldown/binding-wasm32-wasi': 1.0.2
+ '@rolldown/binding-win32-arm64-msvc': 1.0.2
+ '@rolldown/binding-win32-x64-msvc': 1.0.2
+
rollup@4.55.1:
dependencies:
'@types/estree': 1.0.8
@@ -11237,15 +10276,25 @@ snapshots:
'@rollup/rollup-win32-x64-msvc': 4.55.1
fsevents: 2.3.3
- rou3@0.7.12: {}
-
run-parallel@1.2.0:
dependencies:
queue-microtask: 1.2.3
safe-buffer@5.2.1: {}
- safer-buffer@2.1.2: {}
+ satori@0.16.0:
+ dependencies:
+ '@shuding/opentype.js': 1.4.0-beta.0
+ css-background-parser: 0.1.0
+ css-box-shadow: 1.0.0-3
+ css-gradient-parser: 0.0.16
+ css-to-react-native: 3.2.0
+ emoji-regex-xs: 2.0.1
+ escape-html: 1.0.3
+ linebreak: 1.1.0
+ parse-css-color: 0.2.1
+ postcss-value-parser: 4.2.0
+ yoga-layout: 3.2.1
saxes@6.0.0:
dependencies:
@@ -11272,20 +10321,12 @@ snapshots:
dependencies:
randombytes: 2.1.0
- seroval-plugins@1.5.0(seroval@1.5.0):
- dependencies:
- seroval: 1.5.0
-
- seroval@1.5.0: {}
-
shebang-command@2.0.0:
dependencies:
shebang-regex: 3.0.0
shebang-regex@3.0.0: {}
- shell-quote@1.8.3: {}
-
siginfo@2.0.0: {}
signal-exit@4.1.0: {}
@@ -11311,16 +10352,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
- solid-js@1.9.11:
- dependencies:
- csstype: 3.2.3
- seroval: 1.5.0
- seroval-plugins: 1.5.0(seroval@1.5.0)
-
- sonner@2.0.7(react-dom@19.2.4(react@19.2.4))(react@19.2.4):
+ sonner@2.0.7(react-dom@19.2.6(react@19.2.6))(react@19.2.6):
dependencies:
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
source-map-js@1.2.1: {}
@@ -11331,11 +10366,9 @@ snapshots:
source-map@0.6.1: {}
- source-map@0.7.6: {}
-
split2@4.2.0: {}
- srvx@0.10.1: {}
+ srvx@0.11.15: {}
stackback@0.0.2: {}
@@ -11367,6 +10400,8 @@ snapshots:
emoji-regex: 9.2.2
strip-ansi: 7.1.2
+ string.prototype.codepointat@0.2.1: {}
+
string_decoder@1.3.0:
dependencies:
safe-buffer: 5.2.1
@@ -11397,6 +10432,12 @@ snapshots:
optionalDependencies:
'@babel/core': 7.28.6
+ styled-jsx@5.1.1(react@19.2.6):
+ dependencies:
+ client-only: 0.0.1
+ react: 19.2.6
+ optional: true
+
sucrase@3.35.1:
dependencies:
'@jridgewell/gen-mapping': 0.3.13
@@ -11485,6 +10526,17 @@ snapshots:
- supports-color
optional: true
+ terser-webpack-plugin@5.3.16(esbuild@0.27.2)(webpack@5.104.1(esbuild@0.27.2)):
+ dependencies:
+ '@jridgewell/trace-mapping': 0.3.31
+ jest-worker: 27.5.1
+ schema-utils: 4.3.3
+ serialize-javascript: 6.0.2
+ terser: 5.46.0
+ webpack: 5.104.1(esbuild@0.27.2)
+ optionalDependencies:
+ esbuild: 0.27.2
+
terser-webpack-plugin@5.3.16(webpack@5.104.1):
dependencies:
'@jridgewell/trace-mapping': 0.3.31
@@ -11515,9 +10567,7 @@ snapshots:
through@2.3.8: {}
- tiny-invariant@1.3.3: {}
-
- tiny-warning@1.0.3: {}
+ tiny-inflate@1.0.3: {}
tinybench@2.9.0: {}
@@ -11530,6 +10580,11 @@ snapshots:
fdir: 6.5.0(picomatch@4.0.3)
picomatch: 4.0.3
+ tinyglobby@0.2.16:
+ dependencies:
+ fdir: 6.5.0(picomatch@4.0.4)
+ picomatch: 4.0.4
+
tinypool@1.1.1: {}
tinyrainbow@2.0.0: {}
@@ -11572,6 +10627,7 @@ snapshots:
get-tsconfig: 4.13.1
optionalDependencies:
fsevents: 2.3.3
+ optional: true
turbo-darwin-64@2.7.5:
optional: true
@@ -11585,6 +10641,8 @@ snapshots:
turbo-linux-arm64@2.7.5:
optional: true
+ turbo-stream@3.2.0: {}
+
turbo-windows-64@2.7.5:
optional: true
@@ -11604,16 +10662,8 @@ snapshots:
typescript@5.9.3: {}
- ufo@1.6.3: {}
-
undici-types@6.21.0: {}
- undici@7.20.0: {}
-
- unenv@2.0.0-rc.24:
- dependencies:
- pathe: 2.0.3
-
unicode-canonical-property-names-ecmascript@2.0.1: {}
unicode-match-property-ecmascript@2.0.0:
@@ -11625,8 +10675,15 @@ snapshots:
unicode-property-aliases-ecmascript@2.2.0: {}
+ unicode-trie@2.0.0:
+ dependencies:
+ pako: 0.2.9
+ tiny-inflate: 1.0.3
+
unicorn-magic@0.1.0: {}
+ unpic@4.2.2: {}
+
unplugin@1.0.1:
dependencies:
acorn: 8.15.0
@@ -11634,20 +10691,6 @@ snapshots:
webpack-sources: 3.3.3
webpack-virtual-modules: 0.5.0
- unplugin@2.3.11:
- dependencies:
- '@jridgewell/remapping': 2.3.5
- acorn: 8.15.0
- picomatch: 4.0.3
- webpack-virtual-modules: 0.6.2
-
- unstorage@2.0.0-alpha.5(chokidar@3.6.0)(db0@0.3.4)(lru-cache@11.2.5)(ofetch@2.0.0-alpha.3):
- optionalDependencies:
- chokidar: 3.6.0
- db0: 0.3.4
- lru-cache: 11.2.5
- ofetch: 2.0.0-alpha.3
-
update-browserslist-db@1.2.3(browserslist@4.28.1):
dependencies:
browserslist: 4.28.1
@@ -11679,10 +10722,6 @@ snapshots:
react: 18.3.1
optional: true
- use-sync-external-store@1.6.0(react@19.2.4):
- dependencies:
- react: 19.2.4
-
util-deprecate@1.0.2: {}
uuid@11.1.0: {}
@@ -11692,13 +10731,35 @@ snapshots:
uuid@9.0.1: {}
- vite-node@3.2.4(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2):
+ vinext@0.0.51(@vitejs/plugin-react@6.0.2(vite@8.0.14(@types/node@22.19.7)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)))(@vitejs/plugin-rsc@0.5.26(react-dom@19.2.6(react@19.2.6))(react-server-dom-webpack@19.2.6(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(webpack@5.104.1(esbuild@0.27.2)))(react@19.2.6)(vite@8.0.14(@types/node@22.19.7)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)))(next@14.2.35(@opentelemetry/api@1.9.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(react-dom@19.2.6(react@19.2.6))(react-server-dom-webpack@19.2.6(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(webpack@5.104.1(esbuild@0.27.2)))(react@19.2.6)(typescript@5.9.3)(vite@8.0.14(@types/node@22.19.7)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)):
+ dependencies:
+ '@unpic/react': 1.0.2(next@14.2.35(@opentelemetry/api@1.9.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@vercel/og': 0.8.6
+ '@vitejs/plugin-react': 6.0.2(vite@8.0.14(@types/node@22.19.7)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))
+ image-size: 2.0.2
+ ipaddr.js: 2.4.0
+ magic-string: 0.30.21
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
+ vite: 8.0.14(@types/node@22.19.7)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)
+ vite-plugin-commonjs: 0.10.4
+ vite-tsconfig-paths: 6.1.1(typescript@5.9.3)(vite@8.0.14(@types/node@22.19.7)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))
+ web-vitals: 4.2.4
+ optionalDependencies:
+ '@vitejs/plugin-rsc': 0.5.26(react-dom@19.2.6(react@19.2.6))(react-server-dom-webpack@19.2.6(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(webpack@5.104.1(esbuild@0.27.2)))(react@19.2.6)(vite@8.0.14(@types/node@22.19.7)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))
+ react-server-dom-webpack: 19.2.6(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(webpack@5.104.1(esbuild@0.27.2))
+ transitivePeerDependencies:
+ - next
+ - supports-color
+ - typescript
+
+ vite-node@3.2.4(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2):
dependencies:
cac: 6.7.14
debug: 4.4.3
es-module-lexer: 1.7.0
pathe: 2.0.3
- vite: 7.3.1(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)
+ vite: 7.3.1(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)
transitivePeerDependencies:
- '@types/node'
- jiti
@@ -11713,17 +10774,30 @@ snapshots:
- tsx
- yaml
- vite-tsconfig-paths@6.0.5(typescript@5.9.3)(vite@7.3.1(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)):
+ vite-plugin-commonjs@0.10.4:
+ dependencies:
+ acorn: 8.15.0
+ magic-string: 0.30.21
+ vite-plugin-dynamic-import: 1.6.0
+
+ vite-plugin-dynamic-import@1.6.0:
+ dependencies:
+ acorn: 8.15.0
+ es-module-lexer: 1.7.0
+ fast-glob: 3.3.3
+ magic-string: 0.30.21
+
+ vite-tsconfig-paths@6.1.1(typescript@5.9.3)(vite@8.0.14(@types/node@22.19.7)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)):
dependencies:
debug: 4.4.3
globrex: 0.1.2
tsconfck: 3.1.6(typescript@5.9.3)
- vite: 7.3.1(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)
+ vite: 8.0.14(@types/node@22.19.7)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)
transitivePeerDependencies:
- supports-color
- typescript
- vite@7.3.1(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2):
+ vite@7.3.1(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2):
dependencies:
esbuild: 0.27.2
fdir: 6.5.0(picomatch@4.0.3)
@@ -11735,20 +10809,36 @@ snapshots:
'@types/node': 22.19.7
fsevents: 2.3.3
jiti: 2.6.1
- lightningcss: 1.30.2
+ lightningcss: 1.32.0
+ terser: 5.46.0
+ tsx: 4.21.0
+ yaml: 2.8.2
+
+ vite@8.0.14(@types/node@22.19.7)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2):
+ dependencies:
+ lightningcss: 1.32.0
+ picomatch: 4.0.4
+ postcss: 8.5.15
+ rolldown: 1.0.2
+ tinyglobby: 0.2.16
+ optionalDependencies:
+ '@types/node': 22.19.7
+ esbuild: 0.27.2
+ fsevents: 2.3.3
+ jiti: 2.6.1
terser: 5.46.0
tsx: 4.21.0
yaml: 2.8.2
- vitefu@1.1.1(vite@7.3.1(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)):
+ vitefu@1.1.3(vite@8.0.14(@types/node@22.19.7)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)):
optionalDependencies:
- vite: 7.3.1(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)
+ vite: 8.0.14(@types/node@22.19.7)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)
- vitest@3.2.4(@types/node@22.19.7)(jiti@2.6.1)(jsdom@27.4.0)(lightningcss@1.30.2)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2):
+ vitest@3.2.4(@types/node@22.19.7)(jiti@2.6.1)(jsdom@27.4.0)(lightningcss@1.32.0)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2):
dependencies:
'@types/chai': 5.2.3
'@vitest/expect': 3.2.4
- '@vitest/mocker': 3.2.4(vite@7.3.1(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))
+ '@vitest/mocker': 3.2.4(vite@7.3.1(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))
'@vitest/pretty-format': 3.2.4
'@vitest/runner': 3.2.4
'@vitest/snapshot': 3.2.4
@@ -11766,8 +10856,8 @@ snapshots:
tinyglobby: 0.2.15
tinypool: 1.1.1
tinyrainbow: 2.0.0
- vite: 7.3.1(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)
- vite-node: 3.2.4(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)
+ vite: 7.3.1(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)
+ vite-node: 3.2.4(@types/node@22.19.7)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)
why-is-node-running: 2.3.0
optionalDependencies:
'@types/node': 22.19.7
@@ -11797,6 +10887,8 @@ snapshots:
web-streams-polyfill@3.3.3: {}
+ web-vitals@4.2.4: {}
+
web-vitals@5.1.0: {}
webidl-conversions@3.0.1: {}
@@ -11826,8 +10918,6 @@ snapshots:
webpack-virtual-modules@0.5.0: {}
- webpack-virtual-modules@0.6.2: {}
-
webpack@5.104.1:
dependencies:
'@types/eslint-scope': 3.7.7
@@ -11841,7 +10931,7 @@ snapshots:
browserslist: 4.28.1
chrome-trace-event: 1.0.4
enhanced-resolve: 5.18.4
- es-module-lexer: 2.0.0
+ es-module-lexer: 2.1.0
eslint-scope: 5.1.1
events: 3.3.0
glob-to-regexp: 0.4.1
@@ -11860,6 +10950,38 @@ snapshots:
- esbuild
- uglify-js
+ webpack@5.104.1(esbuild@0.27.2):
+ 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.28.1
+ chrome-trace-event: 1.0.4
+ enhanced-resolve: 5.18.4
+ es-module-lexer: 2.1.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.1
+ mime-types: 2.1.35
+ neo-async: 2.6.2
+ schema-utils: 4.3.3
+ tapable: 2.3.0
+ terser-webpack-plugin: 5.3.16(esbuild@0.27.2)(webpack@5.104.1(esbuild@0.27.2))
+ watchpack: 2.5.1
+ webpack-sources: 3.3.3
+ transitivePeerDependencies:
+ - '@swc/core'
+ - esbuild
+ - uglify-js
+
websocket-driver@0.7.4:
dependencies:
http-parser-js: 0.5.10
@@ -11868,10 +10990,6 @@ snapshots:
websocket-extensions@0.1.4: {}
- whatwg-encoding@3.1.1:
- dependencies:
- iconv-lite: 0.6.3
-
whatwg-mimetype@4.0.0: {}
whatwg-mimetype@5.0.0: {}
@@ -11916,13 +11034,6 @@ snapshots:
xml-name-validator@5.0.0: {}
- xmlbuilder2@4.0.3:
- dependencies:
- '@oozcitak/dom': 2.0.2
- '@oozcitak/infra': 2.0.2
- '@oozcitak/util': 10.0.0
- js-yaml: 4.1.1
-
xmlchars@2.2.0: {}
xtend@4.0.2: {}
@@ -11951,7 +11062,7 @@ snapshots:
yocto-queue@1.2.2: {}
- zod@3.25.76: {}
+ yoga-layout@3.2.1: {}
zod@4.3.5: {}