From 986f8b2c2624eae7460031a4f2e9cce45bd6fb75 Mon Sep 17 00:00:00 2001 From: Danijel Martinek Date: Sun, 12 Jul 2026 15:27:37 +0200 Subject: [PATCH] refactor(apps)!: delete web-tanstack demo app Veect retrofit (ADR-027): the product is a hosted SaaS built on web-next; apps/web-tanstack existed only as template demo surface for the TanStack Start framework path. This slice removes the app and all wiring that referenced it: - turbo.json globalEnv: WEB_TANSTACK_SENTRY_DSN, VITE_WEB_TANSTACK_SENTRY_DSN, VITE_GIT_COMMIT_SHA, SENTRY_PROJECT_WEB_TANSTACK - .env.example: the same four DSN/release vars - generator e2e fixtures that stripped deps from the app's package.json - coverage diff comment + test fixtures referencing apps/web-tanstack - app-list entries in README, CLAUDE.md (port table, Sentry projects), AGENTS.md (tags, binder list, per-app docs), docs/glossary.md (App) - pnpm-lock.yaml importer + orphaned transitive deps Framework-support code in core packages stays: core-trpc's TanStack provider, core-shared security/tanstack middleware, and the Sentry react/node init adapters are generic TanStack support, not app wiring. Prose in guides/ADRs/library traces is story 08 scope. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_016j8z4VHjedXDTjEDNg7qHK --- .env.example | 4 - AGENTS.md | 6 +- CLAUDE.md | 15 +- README.md | 2 +- apps/web-tanstack/AGENTS.md | 114 - apps/web-tanstack/app.config.ts | 37 - apps/web-tanstack/e2e/home.spec.ts | 12 - apps/web-tanstack/eslint.config.js | 3 - apps/web-tanstack/package.json | 45 - apps/web-tanstack/playwright.config.ts | 21 - .../src/instrumentation-client.test.ts | 50 - .../src/instrumentation-client.ts | 18 - apps/web-tanstack/src/instrumentation.ts | 12 - apps/web-tanstack/src/routes/__root.test.tsx | 29 - apps/web-tanstack/src/routes/__root.tsx | 25 - apps/web-tanstack/src/routes/index.tsx | 14 - apps/web-tanstack/src/vite-env.d.ts | 11 - apps/web-tanstack/test-results/.last-run.json | 4 - apps/web-tanstack/tsconfig.json | 13 - apps/web-tanstack/turbo.json | 4 - apps/web-tanstack/vitest.config.ts | 26 - docs/glossary.md | 2 +- pnpm-lock.yaml | 5276 +---------------- scripts/coverage/diff.mjs | 2 +- scripts/coverage/diff.test.mjs | 9 +- turbo.json | 4 - .../__tests__/core-package-trpc.e2e.test.ts | 1 - .../__tests__/core-package-ui.e2e.test.ts | 1 - 28 files changed, 33 insertions(+), 5727 deletions(-) delete mode 100644 apps/web-tanstack/AGENTS.md delete mode 100644 apps/web-tanstack/app.config.ts delete mode 100644 apps/web-tanstack/e2e/home.spec.ts delete mode 100644 apps/web-tanstack/eslint.config.js delete mode 100644 apps/web-tanstack/package.json delete mode 100644 apps/web-tanstack/playwright.config.ts delete mode 100644 apps/web-tanstack/src/instrumentation-client.test.ts delete mode 100644 apps/web-tanstack/src/instrumentation-client.ts delete mode 100644 apps/web-tanstack/src/instrumentation.ts delete mode 100644 apps/web-tanstack/src/routes/__root.test.tsx delete mode 100644 apps/web-tanstack/src/routes/__root.tsx delete mode 100644 apps/web-tanstack/src/routes/index.tsx delete mode 100644 apps/web-tanstack/src/vite-env.d.ts delete mode 100644 apps/web-tanstack/test-results/.last-run.json delete mode 100644 apps/web-tanstack/tsconfig.json delete mode 100644 apps/web-tanstack/turbo.json delete mode 100644 apps/web-tanstack/vitest.config.ts diff --git a/.env.example b/.env.example index 9341a9d..e564199 100644 --- a/.env.example +++ b/.env.example @@ -27,15 +27,12 @@ CMS_URL=http://localhost:3001 # WEB_NEXT_SENTRY_DSN= # NEXT_PUBLIC_WEB_NEXT_SENTRY_DSN= # CMS_SENTRY_DSN= -# WEB_TANSTACK_SENTRY_DSN= -# VITE_WEB_TANSTACK_SENTRY_DSN= # Source-map upload at build time (production only). # SENTRY_AUTH_TOKEN= # SENTRY_ORG= # SENTRY_PROJECT_WEB_NEXT= # SENTRY_PROJECT_CMS= -# SENTRY_PROJECT_WEB_TANSTACK= # OTel trace sample rate (0.0 = none, 1.0 = all). 0.1 recommended in dev. # SENTRY_TRACES_SAMPLE_RATE=0.1 @@ -45,7 +42,6 @@ CMS_URL=http://localhost:3001 # VERCEL_GIT_COMMIT_SHA= # NEXT_PUBLIC_VERCEL_GIT_COMMIT_SHA= -# VITE_GIT_COMMIT_SHA= # --- Optional: core-audit (only when `gen core-package audit` is scaffolded) --- diff --git a/AGENTS.md b/AGENTS.md index 308ecae..edc644c 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -51,7 +51,7 @@ See `docs/guides/runbook.md` for the full workflow. ### Five tags -- **app** (4 packages) — `apps/web-next`, `apps/web-tanstack`, `apps/cms`, `apps/storybook` +- **app** (3 packages) — `apps/web-next`, `apps/cms`, `apps/storybook` - **core-composition** (3 packages) — `packages/core-api`, `core-cms`, `core-trpc` - **core** (1–2 packages) — `packages/core-shared`; `core-ui` is optional (scaffold with `pnpm turbo gen core-package ui`) - **feature** (5 packages) — `packages/auth`, `blog`, `media`, `marketing-pages`, `navigation` @@ -359,7 +359,7 @@ Class names carry no `Payload` prefix — `ArticlesRepository`, `PagesRepository ### Apps call `bindAll()` per feature at boot -Each app (`web-next`, `web-tanstack`, `cms`) imports both binders per feature and uses a small dispatcher (`bindAll()`) that picks based on environment: +Each app (`web-next`, `cms`) imports both binders per feature and uses a small dispatcher (`bindAll()`) that picks based on environment: - `USE_DEV_SEED === "true"` → dev seed (explicit override; works in any `NODE_ENV`) - `NODE_ENV === "production"` → production (real Payload) @@ -581,4 +581,4 @@ Per-package documentation lives in each `AGENTS.md`: - `packages/core-ui/AGENTS.md` (optional — generated by `pnpm turbo gen core-package ui`; see `turbo/generators/templates/core-package/ui/AGENTS.md.hbs`) - `packages/auth/AGENTS.md`, `blog/AGENTS.md`, `media/AGENTS.md`, `marketing-pages/AGENTS.md`, `navigation/AGENTS.md` - `packages/core-eslint/AGENTS.md`, `core-typescript/AGENTS.md`, `core-testing/AGENTS.md` -- `apps/cms/AGENTS.md`, `web-next/AGENTS.md`, `web-tanstack/AGENTS.md`, `storybook/AGENTS.md` +- `apps/cms/AGENTS.md`, `web-next/AGENTS.md`, `storybook/AGENTS.md` diff --git a/CLAUDE.md b/CLAUDE.md index 0f09afe..0118640 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -117,7 +117,7 @@ See `docs/guides/coverage.md` for the cookbook and ADR-020 for the full rational - **Spans + capture composed at DI bind time** — Use cases + controllers are wrapped at DI bind time in this order (outermost → innermost): `withSpan → withCapture → withAudit → withAnalytics → withConsent → factory(deps)`. Apply `withAudit` when the manifest declares `audits`, `withAnalytics` when it declares `analyticsEvents`, `withConsent` when it declares `requiresConsent`. `withSpan` is always outermost so an errored span's timing reflects the capture-and-rethrow. Repository methods are different — they call `this.tracer.startSpan(...)` and `this.logger.captureException(...)` inline per method because they own per-call attributes - **Capture at throw sites only, with double-report guard** — Repos capture infra errors inline; use cases + controllers capture via `withCapture` at bind time; `defineErrorMiddleware` never captures. Each error gets a non-enumerable `__sentryReported` flag the first time it's captured; `withCapture`, `OtelLogger`, and `RecordingLogger` all bail if the flag is set, so a bubbled error surfaces exactly once with the inner-most layer's tags (helper at `core-shared/instrumentation/reported-flag.ts`) - **PII handling is non-negotiable** — `sendDefaultPii: false` everywhere (CI grep gate); replay default-masks all text/inputs/media (allowlist starts empty); `setUser({ id })` only — no email/username; server-side PII scrubbing happens at the OTel processor layer (`PiiScrubSpanProcessor` + `PiiScrubLogRecordProcessor`) before any exporter sees the data (ADR-017 §7) -- **Three apps, three Sentry projects** — `WEB_NEXT_SENTRY_DSN`, `CMS_SENTRY_DSN`, `WEB_TANSTACK_SENTRY_DSN`. Browser DSNs use `NEXT_PUBLIC_` (web-next) and `VITE_` (web-tanstack) prefixes +- **Two apps, two Sentry projects** — `WEB_NEXT_SENTRY_DSN`, `CMS_SENTRY_DSN`. The browser DSN uses the `NEXT_PUBLIC_` prefix (web-next) - **Instrumentation binding is orthogonal to repo binding** — `bindAll()`'s Rule 0 (DSN → OTel+Sentry vs Noop) is independent of `USE_DEV_SEED` / `NODE_ENV`. Run `pnpm dev` with `WEB_NEXT_SENTRY_DSN` set to test the integration locally - **Cross-feature events go through `IEventBus` (E0)** — In-feature reactions are direct use-case calls, not bus publishes. The bus is for _crossing_ feature boundaries (e.g. `auth` → `marketing-pages` welcome email) - **Event contracts are public; handlers are private (E1)** — Publisher's `events/.event.ts` is exported from the feature root barrel. Consumer's `events/handlers/on--.handler.ts` is never re-exported (ESLint-enforced via `core-eslint/rules/no-handler-reexport`) @@ -146,10 +146,9 @@ Storybook MCP available at `http://localhost:6006/mcp` — use `list-all-documen ## Key Ports -| Service | Port | -| -------------- | ---- | -| Next.js | 3000 | -| Payload CMS | 3001 | -| TanStack Start | 3002 | -| PostgreSQL | 5432 | -| Storybook | 6006 | +| Service | Port | +| ----------- | ---- | +| Next.js | 3000 | +| Payload CMS | 3001 | +| PostgreSQL | 5432 | +| Storybook | 6006 | diff --git a/README.md b/README.md index b69ad08..1de42a5 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Read [`docs/guides/runbook.md`](./docs/guides/runbook.md) — day-1 onboarding ( ```bash pnpm install # Install + auto-wire husky pre-commit hooks -pnpm dev # All dev servers (web-next:3000, cms:3001, web-tanstack:3002, storybook:6006) +pnpm dev # All dev servers (web-next:3000, cms:3001, storybook:6006) pnpm test # All tests pnpm typecheck # TypeScript across all packages pnpm lint # ESLint (incl. 8 conformance/* rules) diff --git a/apps/web-tanstack/AGENTS.md b/apps/web-tanstack/AGENTS.md deleted file mode 100644 index 32cdb6c..0000000 --- a/apps/web-tanstack/AGENTS.md +++ /dev/null @@ -1,114 +0,0 @@ -# AGENTS.md — apps/web-tanstack - -TanStack Start reference application using TanStack Router with file-based routing. Demonstrates that feature packages are framework-agnostic by consuming the same features as Next.js (via `@repo/core-api`) using TanStack's architecture instead. - -## Purpose - -Proof that features are framework-portable. This app consumes the exact same feature packages as `apps/web-next`, but through TanStack Start's server/client architecture instead of Next.js App Router. Once `@repo/core-trpc` is scaffolded, it can use the same tRPC routers via `TanstackTrpcProvider`. - -## Port: 3002 - -```bash -pnpm dev --filter @repo/web-tanstack # http://localhost:3002 -``` - -When `@repo/core-trpc` is installed, this app requires a tRPC endpoint (from `apps/web-next`): - -```bash -pnpm dev --filter @repo/web-next # Serves tRPC at http://localhost:3000/api/trpc -pnpm dev --filter @repo/web-tanstack # http://localhost:3002 -``` - -## Key Files - -| File | Purpose | -|---|---| -| `src/routes/__root.tsx` | Root layout — wraps all routes with `` (add `` after scaffolding `@repo/core-trpc`) | -| `src/routes/index.tsx` | Home page (`/`) | -| `src/routes/blog/index.tsx` | Blog listing (`/blog`) | -| `src/routes/blog/$slug.tsx` | Dynamic blog post (`/blog/:slug`) | -| `e2e/` | Playwright end-to-end tests | - -## File-Based Routing - -TanStack Router uses file-based routing where file paths map directly to URL routes: - -| File | URL | -|---|---| -| `src/routes/__root.tsx` | Root (all routes) | -| `src/routes/index.tsx` | `/` | -| `src/routes/blog/index.tsx` | `/blog` | -| `src/routes/blog/$slug.tsx` | `/blog/:slug` | - -Naming conventions: -- `__root.tsx` — special root layout -- `index.tsx` — index route for its directory -- `$paramName.tsx` — dynamic segment - -## tRPC Setup (optional) - -`@repo/core-trpc` is not installed by default. After scaffolding with `pnpm turbo gen core-package trpc`: - -1. Update `src/routes/__root.tsx`: - -```typescript -import { Outlet, createRootRoute } from "@tanstack/react-router"; -import { TanstackTrpcProvider } from "@repo/core-trpc/tanstack"; - -export const Route = createRootRoute({ - component: () => ( - - - - ), -}); -``` - -Note: `trpcUrl` must point to a running tRPC endpoint (e.g., from `apps/web-next`). - -2. Fetch data in routes: - -```typescript -import { createFileRoute } from "@tanstack/react-router"; -import { useTRPC } from "@repo/core-trpc"; -import { useQuery } from "@tanstack/react-query"; - -export const Route = createFileRoute("/blog/$slug")({ - component: BlogPostPage, -}); - -function BlogPostPage() { - const { slug } = Route.useParams(); - const trpc = useTRPC(); - const { data, isLoading } = useQuery(trpc.blog.getBySlug.queryOptions({ slug })); - if (isLoading) return

Loading...

; - return
{data?.title}
; -} -``` - -## Dependencies - -| Dependency | Purpose | -|---|---| -| `@repo/core-api` | AppRouter type | -| `@repo/core-trpc/tanstack` | TanStack tRPC client + provider (optional — scaffold first) | -| `@repo/core-ui` | Design system components (optional — scaffold first) | -| `@tanstack/react-router` | File-based routing | -| `@tanstack/react-query` | Data fetching + caching | -| `react` / `react-dom` | React 19 runtime | - -## Test conventions - -- e2e tests in `e2e/` folder: `*.spec.ts` -- Playwright config in `e2e/playwright.config.ts` -- Run: `pnpm test:e2e` (both Next.js and TanStack) - -Parallel to `apps/web-next` e2e: validates that features work across frameworks. - -## Cross-References - -- **Feature packages:** `packages/{auth,blog,media,marketing-pages,navigation}/` -- **tRPC composition:** `packages/core-api/AGENTS.md` -- **tRPC client + provider (optional):** scaffold `@repo/core-trpc` first, then see `turbo/generators/templates/core-package/trpc/AGENTS.md.hbs` -- **UI components (optional):** scaffold with `pnpm turbo gen core-package ui`, then see `turbo/generators/templates/core-package/ui/AGENTS.md.hbs` -- **Next.js app (serves tRPC):** `apps/web-next/AGENTS.md` diff --git a/apps/web-tanstack/app.config.ts b/apps/web-tanstack/app.config.ts deleted file mode 100644 index 58c3d1d..0000000 --- a/apps/web-tanstack/app.config.ts +++ /dev/null @@ -1,37 +0,0 @@ -// apps/web-tanstack/app.config.ts -// TanStack Start / Nitro server configuration. -// Registers the core-shared security headers middleware so every response -// emits the six security headers and a per-request CSP nonce. -// -// Wire-up pattern (Nitro/H3 server hook): -// withSecurityHeaders() generates nonce + builds six headers. -// setHeader calls forward them to the response. -// req.headers["x-nonce"] is set so downstream loaders can call -// getNonce(event.node.req) from @repo/core-shared/security/tanstack. - -import { defineConfig } from "@tanstack/start/config"; -import { withSecurityHeaders } from "@repo/core-shared/security/tanstack"; - -interface H3SecurityEvent { - node: { - req: { headers: Record }; - res: { setHeader: (name: string, value: string) => void }; - }; -} - -/** - * Nitro/H3 server hook: emits six security headers on every response and - * forwards the per-request nonce in req.headers["x-nonce"] for downstream - * access via getNonce() from @repo/core-shared/security/tanstack. - */ -export function applySecurityHeaders(event: H3SecurityEvent): void { - const { nonce, headers } = withSecurityHeaders(); - for (const [k, v] of Object.entries(headers)) { - event.node.res.setHeader(k, v); - } - event.node.req.headers["x-nonce"] = nonce; -} - -export default defineConfig({ - server: { hooks: { request: applySecurityHeaders } }, -}); diff --git a/apps/web-tanstack/e2e/home.spec.ts b/apps/web-tanstack/e2e/home.spec.ts deleted file mode 100644 index 9db0ea6..0000000 --- a/apps/web-tanstack/e2e/home.spec.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { test, expect } from "@playwright/test"; - -test.skip( - "TanStack home renders site name + nav (pending TanStack Start runtime)", - async ({ page }) => { - // Pending: web-tanstack has no dev server yet. When the TanStack Start - // runtime is wired (future plan), update the playwright.config.ts - // webServer to start it on port 3002 and remove this skip. - await page.goto("http://localhost:3002"); - await expect(page.locator("h1").first()).toBeVisible(); - }, -); diff --git a/apps/web-tanstack/eslint.config.js b/apps/web-tanstack/eslint.config.js deleted file mode 100644 index 7440d8f..0000000 --- a/apps/web-tanstack/eslint.config.js +++ /dev/null @@ -1,3 +0,0 @@ -import baseConfig from "@repo/core-eslint/base"; - -export default baseConfig; diff --git a/apps/web-tanstack/package.json b/apps/web-tanstack/package.json deleted file mode 100644 index 6d02040..0000000 --- a/apps/web-tanstack/package.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "name": "@repo/web-tanstack", - "private": true, - "version": "0.0.0", - "type": "module", - "scripts": { - "build": "echo 'placeholder — TanStack Start build configured in later plan'", - "dev": "echo 'placeholder'", - "lint": "eslint .", - "test": "vitest run --passWithNoTests", - "test:e2e": "playwright test", - "typecheck": "tsc --noEmit" - }, - "dependencies": { - "@repo/blog": "workspace:*", - "@repo/core-api": "workspace:*", - "@repo/core-shared": "workspace:*", - "@repo/marketing-pages": "workspace:*", - "@repo/navigation": "workspace:*", - "@sentry/node": "^10.52.0", - "@sentry/react": "^10.52.0", - "@tanstack/react-query": "^5.66.0", - "@tanstack/react-router": "^1.120.0", - "@tanstack/start": "^1.120.0", - "react": "^19.0.0", - "react-dom": "^19.0.0", - "vinxi": "0.5.3" - }, - "devDependencies": { - "@playwright/test": "^1.50.0", - "@repo/core-eslint": "workspace:*", - "@repo/core-testing": "workspace:*", - "@repo/core-typescript": "workspace:*", - "@sentry/vite-plugin": "^5.2.1", - "@testing-library/jest-dom": "^6.5.0", - "@testing-library/react": "^16.0.0", - "@testing-library/user-event": "^14.5.0", - "@types/node": "^22.0.0", - "@types/react": "^19.0.0", - "@types/react-dom": "^19.0.0", - "@vitest/coverage-v8": "^3.2.4", - "jsdom": "^25.0.0", - "vitest": "^3.0.0" - } -} diff --git a/apps/web-tanstack/playwright.config.ts b/apps/web-tanstack/playwright.config.ts deleted file mode 100644 index 3a6243c..0000000 --- a/apps/web-tanstack/playwright.config.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { defineConfig, devices } from "@playwright/test"; - -export default defineConfig({ - testDir: "./e2e", - fullyParallel: true, - retries: process.env.CI ? 2 : 0, - reporter: "list", - use: { - baseURL: "http://localhost:3000", - trace: "on-first-retry", - }, - projects: [ - { - name: "chromium", - use: { ...devices["Desktop Chrome"] }, - }, - ], - // No webServer: web-tanstack tests run against the shared web-next backend - // (port 3000). When TanStack Start runtime is wired in a future plan, add - // a webServer block here pointing at port 3002. -}); diff --git a/apps/web-tanstack/src/instrumentation-client.test.ts b/apps/web-tanstack/src/instrumentation-client.test.ts deleted file mode 100644 index df8a18f..0000000 --- a/apps/web-tanstack/src/instrumentation-client.test.ts +++ /dev/null @@ -1,50 +0,0 @@ -// apps/web-tanstack/src/instrumentation-client.test.ts -import { describe, it, expect, vi, beforeEach } from "vitest"; - -// Hoist the mock so it's active when instrumentation-client runs its -// top-level initSentryClientReact call on import. -const initSentryClientReactMock = vi.hoisted(() => vi.fn()); - -vi.mock("@repo/core-shared/instrumentation/sentry/init-client-react", () => ({ - initSentryClientReact: initSentryClientReactMock, -})); - -describe("instrumentation-client", () => { - beforeEach(() => { - vi.clearAllMocks(); - vi.resetModules(); - }); - - it("passes nonce from csp-nonce meta tag to initSentryClientReact", async () => { - const meta = document.createElement("meta"); - meta.setAttribute("name", "csp-nonce"); - meta.setAttribute("content", "test-nonce-xyz"); - document.head.appendChild(meta); - - try { - await import("./instrumentation-client"); - } finally { - document.head.removeChild(meta); - } - - expect(initSentryClientReactMock).toHaveBeenCalledWith( - expect.objectContaining({ nonce: "test-nonce-xyz" }), - ); - }); - - it("passes empty string nonce when no csp-nonce meta tag is present", async () => { - await import("./instrumentation-client"); - - expect(initSentryClientReactMock).toHaveBeenCalledWith( - expect.objectContaining({ nonce: "" }), - ); - }); - - it("passes web-tanstack as the app tag", async () => { - await import("./instrumentation-client"); - - expect(initSentryClientReactMock).toHaveBeenCalledWith( - expect.objectContaining({ app: "web-tanstack" }), - ); - }); -}); diff --git a/apps/web-tanstack/src/instrumentation-client.ts b/apps/web-tanstack/src/instrumentation-client.ts deleted file mode 100644 index b48c2ab..0000000 --- a/apps/web-tanstack/src/instrumentation-client.ts +++ /dev/null @@ -1,18 +0,0 @@ -// apps/web-tanstack/src/instrumentation-client.ts -// Browser-entry hook. Imported at the top of the client entry file. -import { initSentryClientReact } from "@repo/core-shared/instrumentation/sentry/init-client-react"; - -function getNonce(): string { - if (typeof document === "undefined") return ""; - return ( - document.querySelector('meta[name="csp-nonce"]')?.getAttribute("content") ?? - "" - ); -} - -initSentryClientReact({ - dsn: import.meta.env["VITE_WEB_TANSTACK_SENTRY_DSN"], - app: "web-tanstack", - release: import.meta.env["VITE_GIT_COMMIT_SHA"], - nonce: getNonce(), -}); diff --git a/apps/web-tanstack/src/instrumentation.ts b/apps/web-tanstack/src/instrumentation.ts deleted file mode 100644 index 86a651e..0000000 --- a/apps/web-tanstack/src/instrumentation.ts +++ /dev/null @@ -1,12 +0,0 @@ -// apps/web-tanstack/src/instrumentation.ts -// Server-entry hook. Imported at the top of the server entry file before any -// request handler runs. Initializes the OTel SDK here so PII scrub processors -// are active from the very first request (C1 fix — closes the startup window -// where Sentry auto-instrumentation could send unscrubbed errors). -import { initOtelServerNode } from "@repo/core-shared/instrumentation/otel/init-server-node"; - -initOtelServerNode({ - dsn: process.env["WEB_TANSTACK_SENTRY_DSN"] ?? "", - serviceName: "web-tanstack", - environment: process.env["NODE_ENV"] ?? "development", -}); diff --git a/apps/web-tanstack/src/routes/__root.test.tsx b/apps/web-tanstack/src/routes/__root.test.tsx deleted file mode 100644 index b19d1d9..0000000 --- a/apps/web-tanstack/src/routes/__root.test.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import { describe, it, expect, vi } from "vitest"; -import { render, screen } from "@testing-library/react"; -import "@testing-library/jest-dom"; - -// Mock @tanstack/react-router so we don't need a full router context. -// useLoaderData is supplied so the component can read the nonce from loader data. -vi.mock("@tanstack/react-router", () => ({ - createRootRoute: vi.fn((opts: { component: React.ComponentType }) => ({ - options: { component: opts.component }, - useLoaderData: () => ({ nonce: "test-nonce-abc" }), - })), - Outlet: () =>
, -})); - -describe("Root route", () => { - it("renders csp-nonce meta tag and Outlet", async () => { - const { Route } = await import("./__root"); - // eslint-disable-next-line @typescript-eslint/no-explicit-any - const RootComponent = (Route as any).options - .component as React.ComponentType; - - render(); - - expect(screen.getByTestId("outlet")).toBeInTheDocument(); - const metaTag = document.querySelector('meta[name="csp-nonce"]'); - expect(metaTag).toBeInTheDocument(); - expect(metaTag?.getAttribute("content")).toBe("test-nonce-abc"); - }); -}); diff --git a/apps/web-tanstack/src/routes/__root.tsx b/apps/web-tanstack/src/routes/__root.tsx deleted file mode 100644 index 25cde5e..0000000 --- a/apps/web-tanstack/src/routes/__root.tsx +++ /dev/null @@ -1,25 +0,0 @@ -import { Outlet, createRootRoute } from "@tanstack/react-router"; -import { getNonce } from "@repo/core-shared/security/tanstack"; - -export const Route = createRootRoute({ - loader: async () => { - try { - // Server-side during SSR: read nonce set by applySecurityHeaders middleware. - // Fails gracefully on client-side navigation (nonce already in DOM from SSR). - const { getEvent } = await import("vinxi/http"); - return { nonce: getNonce(getEvent().node.req) }; - } catch { - return { nonce: "" }; - } - }, - component: () => { - const { nonce } = Route.useLoaderData(); - return ( - <> - {/* nonce exposed to client so instrumentation-client.ts can read it */} - - - - ); - }, -}); diff --git a/apps/web-tanstack/src/routes/index.tsx b/apps/web-tanstack/src/routes/index.tsx deleted file mode 100644 index 22bef22..0000000 --- a/apps/web-tanstack/src/routes/index.tsx +++ /dev/null @@ -1,14 +0,0 @@ -import { createFileRoute } from "@tanstack/react-router"; - -// eslint-disable-next-line @typescript-eslint/no-explicit-any -export const Route = createFileRoute("/" as any)({ - component: Home, -}); - -function Home() { - return ( -
-

This page is rendered by TanStack Router and consumes the same feature packages as the Next.js app.

-
- ); -} diff --git a/apps/web-tanstack/src/vite-env.d.ts b/apps/web-tanstack/src/vite-env.d.ts deleted file mode 100644 index 980176c..0000000 --- a/apps/web-tanstack/src/vite-env.d.ts +++ /dev/null @@ -1,11 +0,0 @@ -// Minimal Vite-style env typing for the instrumentation-client entry. -// When the full TanStack Start / Vite build is wired in a later plan, -// replace this with `/// `. -interface ImportMetaEnv { - readonly VITE_WEB_TANSTACK_SENTRY_DSN?: string; - readonly VITE_GIT_COMMIT_SHA?: string; -} - -interface ImportMeta { - readonly env: ImportMetaEnv; -} diff --git a/apps/web-tanstack/test-results/.last-run.json b/apps/web-tanstack/test-results/.last-run.json deleted file mode 100644 index cbcc1fb..0000000 --- a/apps/web-tanstack/test-results/.last-run.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "status": "passed", - "failedTests": [] -} \ No newline at end of file diff --git a/apps/web-tanstack/tsconfig.json b/apps/web-tanstack/tsconfig.json deleted file mode 100644 index 15a8983..0000000 --- a/apps/web-tanstack/tsconfig.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "extends": "@repo/core-typescript/base.json", - "compilerOptions": { - "lib": ["ES2022", "DOM", "DOM.Iterable"], - "jsx": "react-jsx", - "paths": { - "@/*": ["./src/*"] - }, - "types": ["vitest/globals", "@testing-library/jest-dom"] - }, - "include": ["src/**/*.ts", "src/**/*.tsx"], - "exclude": ["node_modules"] -} diff --git a/apps/web-tanstack/turbo.json b/apps/web-tanstack/turbo.json deleted file mode 100644 index 5917af9..0000000 --- a/apps/web-tanstack/turbo.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "extends": ["//"], - "tags": ["app"] -} diff --git a/apps/web-tanstack/vitest.config.ts b/apps/web-tanstack/vitest.config.ts deleted file mode 100644 index 4746d15..0000000 --- a/apps/web-tanstack/vitest.config.ts +++ /dev/null @@ -1,26 +0,0 @@ -import path from "node:path"; -import { mergeConfig } from "vitest/config"; -import { jsdomVitestConfig } from "@repo/core-typescript/vitest.base.jsdom"; - -// Coverage excludes mirror the feature-package pattern (see -// packages/auth/vitest.config.ts): framework glue is excluded, thresholds -// stay inherited from the shared base — never lowered here. -export default mergeConfig(jsdomVitestConfig, { - esbuild: { jsx: "automatic" }, - test: { - coverage: { - exclude: [ - // TanStack Router route definitions — framework-invoked entry - // points, covered by Playwright e2e; not unit tests - "src/routes/**", - // Server-entry OTel/Sentry boot wiring — import-time side effects - // run once at startup (same class as feature DI bootstrap). - // instrumentation-client.ts stays counted (it has a unit test). - "src/instrumentation.ts", - // Ambient type declarations — no executable code - "src/**/*.d.ts", - ], - }, - }, - resolve: { alias: { "@": path.resolve(__dirname, "./src") } }, -}); diff --git a/docs/glossary.md b/docs/glossary.md index 690a04b..f61ba50 100644 --- a/docs/glossary.md +++ b/docs/glossary.md @@ -39,7 +39,7 @@ A tag for packages that compose feature exports — `core-api`, `core-cms`, `cor A package providing build/lint/test infrastructure — `core-eslint`, `core-typescript`, `core-testing`. May only depend on other tooling. **App**: -A runtime entry point under `apps/` — `web-next`, `web-tanstack`, `cms`, `storybook`. +A runtime entry point under `apps/` — `web-next`, `cms`, `storybook`. ## Clean Architecture layers (per feature) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index a5b3ee6..c0f3539 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -280,91 +280,6 @@ importers: specifier: ^3.0.0 version: 3.2.4(@types/debug@4.1.13)(@types/node@22.19.17)(happy-dom@20.8.9)(jiti@2.7.0)(jsdom@25.0.1)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0) - apps/web-tanstack: - dependencies: - "@repo/blog": - specifier: workspace:* - version: link:../../packages/blog - "@repo/core-api": - specifier: workspace:* - version: link:../../packages/core-api - "@repo/core-shared": - specifier: workspace:* - version: link:../../packages/core-shared - "@repo/marketing-pages": - specifier: workspace:* - version: link:../../packages/marketing-pages - "@repo/navigation": - specifier: workspace:* - version: link:../../packages/navigation - "@sentry/node": - specifier: ^10.52.0 - version: 10.52.0 - "@sentry/react": - specifier: ^10.52.0 - version: 10.52.0(react@19.2.4) - "@tanstack/react-query": - specifier: ^5.66.0 - version: 5.96.2(react@19.2.4) - "@tanstack/react-router": - specifier: ^1.120.0 - version: 1.168.10(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - "@tanstack/start": - specifier: ^1.120.0 - version: 1.120.20(@types/node@22.19.17)(db0@0.3.4(drizzle-orm@0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3)))(drizzle-orm@0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3))(ioredis@5.10.1)(jiti@2.7.0)(lightningcss@1.32.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(vite@6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0))(webpack@5.106.2)(yaml@2.9.0) - react: - specifier: ^19.0.0 - version: 19.2.4 - react-dom: - specifier: ^19.0.0 - version: 19.2.4(react@19.2.4) - vinxi: - specifier: 0.5.3 - version: 0.5.3(@types/node@22.19.17)(db0@0.3.4(drizzle-orm@0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3)))(drizzle-orm@0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3))(ioredis@5.10.1)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0) - devDependencies: - "@playwright/test": - specifier: ^1.50.0 - version: 1.59.1 - "@repo/core-eslint": - specifier: workspace:* - version: link:../../packages/core-eslint - "@repo/core-testing": - specifier: workspace:* - version: link:../../packages/core-testing - "@repo/core-typescript": - specifier: workspace:* - version: link:../../packages/core-typescript - "@sentry/vite-plugin": - specifier: ^5.2.1 - version: 5.2.1(rollup@4.60.4) - "@testing-library/jest-dom": - specifier: ^6.5.0 - version: 6.9.1 - "@testing-library/react": - specifier: ^16.0.0 - version: 16.3.2(@testing-library/dom@10.4.1)(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - "@testing-library/user-event": - specifier: ^14.5.0 - version: 14.6.1(@testing-library/dom@10.4.1) - "@types/node": - specifier: ^22.0.0 - version: 22.19.17 - "@types/react": - specifier: ^19.0.0 - version: 19.2.14 - "@types/react-dom": - specifier: ^19.0.0 - version: 19.2.3(@types/react@19.2.14) - "@vitest/coverage-v8": - specifier: ^3.2.4 - version: 3.2.4(vitest@3.2.4(@types/debug@4.1.13)(@types/node@22.19.17)(happy-dom@20.8.9)(jiti@2.7.0)(jsdom@25.0.1)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0)) - jsdom: - specifier: ^25.0.0 - version: 25.0.1 - vitest: - specifier: ^3.0.0 - version: 3.2.4(@types/debug@4.1.13)(@types/node@22.19.17)(happy-dom@20.8.9)(jiti@2.7.0)(jsdom@25.0.1)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0) - packages/auth: dependencies: "@repo/core-shared": @@ -1262,20 +1177,6 @@ packages: integrity: sha512-K1A6z8tS3XsmCMM86xoWdn7Fkdn9m6RSVtocUrJYIwZnFVkng/PvkEoWtOWmP+Scc6saYWHWZYbndEEXxl24jw==, } - "@babel/code-frame@7.26.2": - resolution: - { - integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==, - } - engines: { node: ">=6.9.0" } - - "@babel/code-frame@7.27.1": - resolution: - { - integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==, - } - engines: { node: ">=6.9.0" } - "@babel/code-frame@7.29.0": resolution: { @@ -1445,14 +1346,6 @@ packages: engines: { node: ">=6.0.0" } hasBin: true - "@babel/parser@7.29.3": - resolution: - { - integrity: sha512-b3ctpQwp+PROvU/cttc4OYl4MzfJUWy6FZg+PMXfzmt/+39iHVF0sDfqay8TQM3JA2EUOyKcFZt75jWriQijsA==, - } - engines: { node: ">=6.0.0" } - hasBin: true - "@babel/plugin-proposal-decorators@7.24.7": resolution: { @@ -1641,24 +1534,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-typescript@7.28.6": resolution: { @@ -1677,15 +1552,6 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/preset-typescript@7.28.5": - resolution: - { - integrity: sha512-+bQy5WOI2V6LJZpPVxY+yp66XdZ2yifu0Mc1aP5CQKgjn4QM5IN2i5fAZ4xKop47pr8rpVhiAeu+nDQa12C8+g==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - "@babel/runtime@7.29.2": resolution: { @@ -1747,13 +1613,6 @@ packages: } engines: { node: ">= 20.12.0" } - "@cloudflare/kv-asset-handler@0.4.2": - resolution: - { - integrity: sha512-SIOD2DxrRRwQ+jgzlXCqoEFiKOFqaPjhnNTGKXSRLvp1HiOvapLaFG2kEr9dYQTYe8rKrd9uvDUzmAITeNyaHQ==, - } - engines: { node: ">=18.0.0" } - "@csstools/color-helpers@5.1.0": resolution: { @@ -1803,18 +1662,6 @@ packages: integrity: sha512-LBrd7MiJZ9McsOgxqWX7AaxrDjcFVjWH/tIKJd7pnR7McaslGYOP1QmmiBXdJH/H/yLCT+rcQ7FaPBUxRGUtrg==, } - "@deno/shim-deno-test@0.5.0": - resolution: - { - integrity: sha512-4nMhecpGlPi0cSzT67L+Tm+GOJqvuk8gqHBziqcUQOarnuIax1z96/gJHCSIz2Z0zhxE6Rzwb3IZXPtFh51j+w==, - } - - "@deno/shim-deno@0.19.2": - resolution: - { - integrity: sha512-q3VTHl44ad8T2Tw2SpeAvghdGOjlnLPDNO2cpOxwMrBE/PVas6geWpbpIgrM+czOCH0yejp0yi8OaTuB+NU40Q==, - } - "@dnd-kit/accessibility@3.1.1": resolution: { @@ -2085,15 +1932,6 @@ packages: } deprecated: "Merged into tsx: https://tsx.is" - "@esbuild/aix-ppc64@0.20.2": - resolution: - { - integrity: sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==, - } - engines: { node: ">=12" } - cpu: [ppc64] - os: [aix] - "@esbuild/aix-ppc64@0.25.12": resolution: { @@ -2112,15 +1950,6 @@ packages: cpu: [ppc64] os: [aix] - "@esbuild/aix-ppc64@0.28.0": - resolution: - { - integrity: sha512-lhRUCeuOyJQURhTxl4WkpFTjIsbDayJHih5kZC1giwE+MhIzAb7mEsQMqMf18rHLsrb5qI1tafG20mLxEWcWlA==, - } - engines: { node: ">=18" } - cpu: [ppc64] - os: [aix] - "@esbuild/android-arm64@0.18.20": resolution: { @@ -2130,15 +1959,6 @@ packages: cpu: [arm64] os: [android] - "@esbuild/android-arm64@0.20.2": - resolution: - { - integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==, - } - engines: { node: ">=12" } - cpu: [arm64] - os: [android] - "@esbuild/android-arm64@0.25.12": resolution: { @@ -2157,15 +1977,6 @@ packages: cpu: [arm64] os: [android] - "@esbuild/android-arm64@0.28.0": - resolution: - { - integrity: sha512-+WzIXQOSaGs33tLEgYPYe/yQHf0WTU0X42Jca3y8NWMbUVhp7rUnw+vAsRC/QiDrdD31IszMrZy+qwPOPjd+rw==, - } - engines: { node: ">=18" } - cpu: [arm64] - os: [android] - "@esbuild/android-arm@0.18.20": resolution: { @@ -2175,15 +1986,6 @@ packages: cpu: [arm] os: [android] - "@esbuild/android-arm@0.20.2": - resolution: - { - integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==, - } - engines: { node: ">=12" } - cpu: [arm] - os: [android] - "@esbuild/android-arm@0.25.12": resolution: { @@ -2202,15 +2004,6 @@ packages: cpu: [arm] os: [android] - "@esbuild/android-arm@0.28.0": - resolution: - { - integrity: sha512-wqh0ByljabXLKHeWXYLqoJ5jKC4XBaw6Hk08OfMrCRd2nP2ZQ5eleDZC41XHyCNgktBGYMbqnrJKq/K/lzPMSQ==, - } - engines: { node: ">=18" } - cpu: [arm] - os: [android] - "@esbuild/android-x64@0.18.20": resolution: { @@ -2220,15 +2013,6 @@ packages: cpu: [x64] os: [android] - "@esbuild/android-x64@0.20.2": - resolution: - { - integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==, - } - engines: { node: ">=12" } - cpu: [x64] - os: [android] - "@esbuild/android-x64@0.25.12": resolution: { @@ -2247,15 +2031,6 @@ packages: cpu: [x64] os: [android] - "@esbuild/android-x64@0.28.0": - resolution: - { - integrity: sha512-+VJggoaKhk2VNNqVL7f6S189UzShHC/mR9EE8rDdSkdpN0KflSwWY/gWjDrNxxisg8Fp1ZCD9jLMo4m0OUfeUA==, - } - engines: { node: ">=18" } - cpu: [x64] - os: [android] - "@esbuild/darwin-arm64@0.18.20": resolution: { @@ -2265,15 +2040,6 @@ packages: cpu: [arm64] os: [darwin] - "@esbuild/darwin-arm64@0.20.2": - resolution: - { - integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==, - } - engines: { node: ">=12" } - cpu: [arm64] - os: [darwin] - "@esbuild/darwin-arm64@0.25.12": resolution: { @@ -2292,15 +2058,6 @@ packages: cpu: [arm64] os: [darwin] - "@esbuild/darwin-arm64@0.28.0": - resolution: - { - integrity: sha512-0T+A9WZm+bZ84nZBtk1ckYsOvyA3x7e2Acj1KdVfV4/2tdG4fzUp91YHx+GArWLtwqp77pBXVCPn2We7Letr0Q==, - } - engines: { node: ">=18" } - cpu: [arm64] - os: [darwin] - "@esbuild/darwin-x64@0.18.20": resolution: { @@ -2310,15 +2067,6 @@ packages: cpu: [x64] os: [darwin] - "@esbuild/darwin-x64@0.20.2": - resolution: - { - integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==, - } - engines: { node: ">=12" } - cpu: [x64] - os: [darwin] - "@esbuild/darwin-x64@0.25.12": resolution: { @@ -2337,15 +2085,6 @@ packages: cpu: [x64] os: [darwin] - "@esbuild/darwin-x64@0.28.0": - resolution: - { - integrity: sha512-fyzLm/DLDl/84OCfp2f/XQ4flmORsjU7VKt8HLjvIXChJoFFOIL6pLJPH4Yhd1n1gGFF9mPwtlN5Wf82DZs+LQ==, - } - engines: { node: ">=18" } - cpu: [x64] - os: [darwin] - "@esbuild/freebsd-arm64@0.18.20": resolution: { @@ -2355,15 +2094,6 @@ packages: cpu: [arm64] os: [freebsd] - "@esbuild/freebsd-arm64@0.20.2": - resolution: - { - integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==, - } - engines: { node: ">=12" } - cpu: [arm64] - os: [freebsd] - "@esbuild/freebsd-arm64@0.25.12": resolution: { @@ -2382,15 +2112,6 @@ packages: cpu: [arm64] os: [freebsd] - "@esbuild/freebsd-arm64@0.28.0": - resolution: - { - integrity: sha512-l9GeW5UZBT9k9brBYI+0WDffcRxgHQD8ShN2Ur4xWq/NFzUKm3k5lsH4PdaRgb2w7mI9u61nr2gI2mLI27Nh3Q==, - } - engines: { node: ">=18" } - cpu: [arm64] - os: [freebsd] - "@esbuild/freebsd-x64@0.18.20": resolution: { @@ -2400,15 +2121,6 @@ packages: cpu: [x64] os: [freebsd] - "@esbuild/freebsd-x64@0.20.2": - resolution: - { - integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==, - } - engines: { node: ">=12" } - cpu: [x64] - os: [freebsd] - "@esbuild/freebsd-x64@0.25.12": resolution: { @@ -2427,15 +2139,6 @@ packages: cpu: [x64] os: [freebsd] - "@esbuild/freebsd-x64@0.28.0": - resolution: - { - integrity: sha512-BXoQai/A0wPO6Es3yFJ7APCiKGc1tdAEOgeTNy3SsB491S3aHn4S4r3e976eUnPdU+NbdtmBuLncYir2tMU9Nw==, - } - engines: { node: ">=18" } - cpu: [x64] - os: [freebsd] - "@esbuild/linux-arm64@0.18.20": resolution: { @@ -2445,15 +2148,6 @@ packages: cpu: [arm64] os: [linux] - "@esbuild/linux-arm64@0.20.2": - resolution: - { - integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==, - } - engines: { node: ">=12" } - cpu: [arm64] - os: [linux] - "@esbuild/linux-arm64@0.25.12": resolution: { @@ -2472,15 +2166,6 @@ packages: cpu: [arm64] os: [linux] - "@esbuild/linux-arm64@0.28.0": - resolution: - { - integrity: sha512-RVyzfb3FWsGA55n6WY0MEIEPURL1FcbhFE6BffZEMEekfCzCIMtB5yyDcFnVbTnwk+CLAgTujmV/Lgvih56W+A==, - } - engines: { node: ">=18" } - cpu: [arm64] - os: [linux] - "@esbuild/linux-arm@0.18.20": resolution: { @@ -2490,15 +2175,6 @@ packages: cpu: [arm] os: [linux] - "@esbuild/linux-arm@0.20.2": - resolution: - { - integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==, - } - engines: { node: ">=12" } - cpu: [arm] - os: [linux] - "@esbuild/linux-arm@0.25.12": resolution: { @@ -2517,15 +2193,6 @@ packages: cpu: [arm] os: [linux] - "@esbuild/linux-arm@0.28.0": - resolution: - { - integrity: sha512-CjaaREJagqJp7iTaNQjjidaNbCKYcd4IDkzbwwxtSvjI7NZm79qiHc8HqciMddQ6CKvJT6aBd8lO9kN/ZudLlw==, - } - engines: { node: ">=18" } - cpu: [arm] - os: [linux] - "@esbuild/linux-ia32@0.18.20": resolution: { @@ -2535,15 +2202,6 @@ packages: cpu: [ia32] os: [linux] - "@esbuild/linux-ia32@0.20.2": - resolution: - { - integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==, - } - engines: { node: ">=12" } - cpu: [ia32] - os: [linux] - "@esbuild/linux-ia32@0.25.12": resolution: { @@ -2562,15 +2220,6 @@ packages: cpu: [ia32] os: [linux] - "@esbuild/linux-ia32@0.28.0": - resolution: - { - integrity: sha512-KBnSTt1kxl9x70q+ydterVdl+Cn0H18ngRMRCEQfrbqdUuntQQ0LoMZv47uB97NljZFzY6HcfqEZ2SAyIUTQBQ==, - } - engines: { node: ">=18" } - cpu: [ia32] - os: [linux] - "@esbuild/linux-loong64@0.18.20": resolution: { @@ -2580,15 +2229,6 @@ packages: cpu: [loong64] os: [linux] - "@esbuild/linux-loong64@0.20.2": - resolution: - { - integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==, - } - engines: { node: ">=12" } - cpu: [loong64] - os: [linux] - "@esbuild/linux-loong64@0.25.12": resolution: { @@ -2607,15 +2247,6 @@ packages: cpu: [loong64] os: [linux] - "@esbuild/linux-loong64@0.28.0": - resolution: - { - integrity: sha512-zpSlUce1mnxzgBADvxKXX5sl8aYQHo2ezvMNI8I0lbblJtp8V4odlm3Yzlj7gPyt3T8ReksE6bK+pT3WD+aJRg==, - } - engines: { node: ">=18" } - cpu: [loong64] - os: [linux] - "@esbuild/linux-mips64el@0.18.20": resolution: { @@ -2625,15 +2256,6 @@ packages: cpu: [mips64el] os: [linux] - "@esbuild/linux-mips64el@0.20.2": - resolution: - { - integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==, - } - engines: { node: ">=12" } - cpu: [mips64el] - os: [linux] - "@esbuild/linux-mips64el@0.25.12": resolution: { @@ -2652,15 +2274,6 @@ packages: cpu: [mips64el] os: [linux] - "@esbuild/linux-mips64el@0.28.0": - resolution: - { - integrity: sha512-2jIfP6mmjkdmeTlsX/9vmdmhBmKADrWqN7zcdtHIeNSCH1SqIoNI63cYsjQR8J+wGa4Y5izRcSHSm8K3QWmk3w==, - } - engines: { node: ">=18" } - cpu: [mips64el] - os: [linux] - "@esbuild/linux-ppc64@0.18.20": resolution: { @@ -2670,15 +2283,6 @@ packages: cpu: [ppc64] os: [linux] - "@esbuild/linux-ppc64@0.20.2": - resolution: - { - integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==, - } - engines: { node: ">=12" } - cpu: [ppc64] - os: [linux] - "@esbuild/linux-ppc64@0.25.12": resolution: { @@ -2697,15 +2301,6 @@ packages: cpu: [ppc64] os: [linux] - "@esbuild/linux-ppc64@0.28.0": - resolution: - { - integrity: sha512-bc0FE9wWeC0WBm49IQMPSPILRocGTQt3j5KPCA8os6VprfuJ7KD+5PzESSrJ6GmPIPJK965ZJHTUlSA6GNYEhg==, - } - engines: { node: ">=18" } - cpu: [ppc64] - os: [linux] - "@esbuild/linux-riscv64@0.18.20": resolution: { @@ -2715,15 +2310,6 @@ packages: cpu: [riscv64] os: [linux] - "@esbuild/linux-riscv64@0.20.2": - resolution: - { - integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==, - } - engines: { node: ">=12" } - cpu: [riscv64] - os: [linux] - "@esbuild/linux-riscv64@0.25.12": resolution: { @@ -2742,15 +2328,6 @@ packages: cpu: [riscv64] os: [linux] - "@esbuild/linux-riscv64@0.28.0": - resolution: - { - integrity: sha512-SQPZOwoTTT/HXFXQJG/vBX8sOFagGqvZyXcgLA3NhIqcBv1BJU1d46c0rGcrij2B56Z2rNiSLaZOYW5cUk7yLQ==, - } - engines: { node: ">=18" } - cpu: [riscv64] - os: [linux] - "@esbuild/linux-s390x@0.18.20": resolution: { @@ -2760,15 +2337,6 @@ packages: cpu: [s390x] os: [linux] - "@esbuild/linux-s390x@0.20.2": - resolution: - { - integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==, - } - engines: { node: ">=12" } - cpu: [s390x] - os: [linux] - "@esbuild/linux-s390x@0.25.12": resolution: { @@ -2787,15 +2355,6 @@ packages: cpu: [s390x] os: [linux] - "@esbuild/linux-s390x@0.28.0": - resolution: - { - integrity: sha512-SCfR0HN8CEEjnYnySJTd2cw0k9OHB/YFzt5zgJEwa+wL/T/raGWYMBqwDNAC6dqFKmJYZoQBRfHjgwLHGSrn3Q==, - } - engines: { node: ">=18" } - cpu: [s390x] - os: [linux] - "@esbuild/linux-x64@0.18.20": resolution: { @@ -2805,15 +2364,6 @@ packages: cpu: [x64] os: [linux] - "@esbuild/linux-x64@0.20.2": - resolution: - { - integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==, - } - engines: { node: ">=12" } - cpu: [x64] - os: [linux] - "@esbuild/linux-x64@0.25.12": resolution: { @@ -2832,15 +2382,6 @@ packages: cpu: [x64] os: [linux] - "@esbuild/linux-x64@0.28.0": - resolution: - { - integrity: sha512-us0dSb9iFxIi8srnpl931Nvs65it/Jd2a2K3qs7fz2WfGPHqzfzZTfec7oxZJRNPXPnNYZtanmRc4AL/JwVzHQ==, - } - engines: { node: ">=18" } - cpu: [x64] - os: [linux] - "@esbuild/netbsd-arm64@0.25.12": resolution: { @@ -2859,15 +2400,6 @@ packages: cpu: [arm64] os: [netbsd] - "@esbuild/netbsd-arm64@0.28.0": - resolution: - { - integrity: sha512-CR/RYotgtCKwtftMwJlUU7xCVNg3lMYZ0RzTmAHSfLCXw3NtZtNpswLEj/Kkf6kEL3Gw+BpOekRX0BYCtklhUw==, - } - engines: { node: ">=18" } - cpu: [arm64] - os: [netbsd] - "@esbuild/netbsd-x64@0.18.20": resolution: { @@ -2877,15 +2409,6 @@ packages: cpu: [x64] os: [netbsd] - "@esbuild/netbsd-x64@0.20.2": - resolution: - { - integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==, - } - engines: { node: ">=12" } - cpu: [x64] - os: [netbsd] - "@esbuild/netbsd-x64@0.25.12": resolution: { @@ -2904,15 +2427,6 @@ packages: cpu: [x64] os: [netbsd] - "@esbuild/netbsd-x64@0.28.0": - resolution: - { - integrity: sha512-nU1yhmYutL+fQ71Kxnhg8uEOdC0pwEW9entHykTgEbna2pw2dkbFSMeqjjyHZoCmt8SBkOSvV+yNmm94aUrrqw==, - } - engines: { node: ">=18" } - cpu: [x64] - os: [netbsd] - "@esbuild/openbsd-arm64@0.25.12": resolution: { @@ -2931,15 +2445,6 @@ packages: cpu: [arm64] os: [openbsd] - "@esbuild/openbsd-arm64@0.28.0": - resolution: - { - integrity: sha512-cXb5vApOsRsxsEl4mcZ1XY3D4DzcoMxR/nnc4IyqYs0rTI8ZKmW6kyyg+11Z8yvgMfAEldKzP7AdP64HnSC/6g==, - } - engines: { node: ">=18" } - cpu: [arm64] - os: [openbsd] - "@esbuild/openbsd-x64@0.18.20": resolution: { @@ -2949,15 +2454,6 @@ packages: cpu: [x64] os: [openbsd] - "@esbuild/openbsd-x64@0.20.2": - resolution: - { - integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==, - } - engines: { node: ">=12" } - cpu: [x64] - os: [openbsd] - "@esbuild/openbsd-x64@0.25.12": resolution: { @@ -2976,15 +2472,6 @@ packages: cpu: [x64] os: [openbsd] - "@esbuild/openbsd-x64@0.28.0": - resolution: - { - integrity: sha512-8wZM2qqtv9UP3mzy7HiGYNH/zjTA355mpeuA+859TyR+e+Tc08IHYpLJuMsfpDJwoLo1ikIJI8jC3GFjnRClzA==, - } - engines: { node: ">=18" } - cpu: [x64] - os: [openbsd] - "@esbuild/openharmony-arm64@0.25.12": resolution: { @@ -3003,15 +2490,6 @@ packages: cpu: [arm64] os: [openharmony] - "@esbuild/openharmony-arm64@0.28.0": - resolution: - { - integrity: sha512-FLGfyizszcef5C3YtoyQDACyg95+dndv79i2EekILBofh5wpCa1KuBqOWKrEHZg3zrL3t5ouE5jgr94vA+Wb2w==, - } - engines: { node: ">=18" } - cpu: [arm64] - os: [openharmony] - "@esbuild/sunos-x64@0.18.20": resolution: { @@ -3021,15 +2499,6 @@ packages: cpu: [x64] os: [sunos] - "@esbuild/sunos-x64@0.20.2": - resolution: - { - integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==, - } - engines: { node: ">=12" } - cpu: [x64] - os: [sunos] - "@esbuild/sunos-x64@0.25.12": resolution: { @@ -3048,15 +2517,6 @@ packages: cpu: [x64] os: [sunos] - "@esbuild/sunos-x64@0.28.0": - resolution: - { - integrity: sha512-1ZgjUoEdHZZl/YlV76TSCz9Hqj9h9YmMGAgAPYd+q4SicWNX3G5GCyx9uhQWSLcbvPW8Ni7lj4gDa1T40akdlw==, - } - engines: { node: ">=18" } - cpu: [x64] - os: [sunos] - "@esbuild/win32-arm64@0.18.20": resolution: { @@ -3066,15 +2526,6 @@ packages: cpu: [arm64] os: [win32] - "@esbuild/win32-arm64@0.20.2": - resolution: - { - integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==, - } - engines: { node: ">=12" } - cpu: [arm64] - os: [win32] - "@esbuild/win32-arm64@0.25.12": resolution: { @@ -3093,15 +2544,6 @@ packages: cpu: [arm64] os: [win32] - "@esbuild/win32-arm64@0.28.0": - resolution: - { - integrity: sha512-Q9StnDmQ/enxnpxCCLSg0oo4+34B9TdXpuyPeTedN/6+iXBJ4J+zwfQI28u/Jl40nOYAxGoNi7mFP40RUtkmUA==, - } - engines: { node: ">=18" } - cpu: [arm64] - os: [win32] - "@esbuild/win32-ia32@0.18.20": resolution: { @@ -3111,15 +2553,6 @@ packages: cpu: [ia32] os: [win32] - "@esbuild/win32-ia32@0.20.2": - resolution: - { - integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==, - } - engines: { node: ">=12" } - cpu: [ia32] - os: [win32] - "@esbuild/win32-ia32@0.25.12": resolution: { @@ -3138,15 +2571,6 @@ packages: cpu: [ia32] os: [win32] - "@esbuild/win32-ia32@0.28.0": - resolution: - { - integrity: sha512-zF3ag/gfiCe6U2iczcRzSYJKH1DCI+ByzSENHlM2FcDbEeo5Zd2C86Aq0tKUYAJJ1obRP84ymxIAksZUcdztHA==, - } - engines: { node: ">=18" } - cpu: [ia32] - os: [win32] - "@esbuild/win32-x64@0.18.20": resolution: { @@ -3156,15 +2580,6 @@ packages: cpu: [x64] os: [win32] - "@esbuild/win32-x64@0.20.2": - resolution: - { - integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==, - } - engines: { node: ">=12" } - cpu: [x64] - os: [win32] - "@esbuild/win32-x64@0.25.12": resolution: { @@ -3183,15 +2598,6 @@ packages: cpu: [x64] os: [win32] - "@esbuild/win32-x64@0.28.0": - resolution: - { - integrity: sha512-pEl1bO9mfAmIC+tW5btTmrKaujg3zGtUmWNdCw/xs70FBjwAL3o9OEKNHvNmnyylD6ubxUERiEhdsL0xBQ9efw==, - } - engines: { node: ">=18" } - cpu: [x64] - os: [win32] - "@eslint-community/eslint-utils@4.9.1": resolution: { @@ -4165,13 +3571,6 @@ packages: } engines: { node: ">=12" } - "@isaacs/fs-minipass@4.0.1": - resolution: - { - integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==, - } - engines: { node: ">=18.0.0" } - "@istanbuljs/load-nyc-config@1.1.0": resolution: { @@ -4571,14 +3970,6 @@ packages: peerDependencies: yjs: ">=13.5.22" - "@mapbox/node-pre-gyp@2.0.3": - resolution: - { - integrity: sha512-uwPAhccfFJlsfCxMYTwOdVfOz3xqyj8xYL3zJj8f0pb30tLohnnFPhLuqp4/qoEz8sNxe4SESZedcBojRefIzg==, - } - engines: { node: ">=18" } - hasBin: true - "@mdx-js/react@3.1.1": resolution: { @@ -4808,55 +4199,6 @@ packages: cpu: [x64] os: [win32] - "@nodelib/fs.scandir@2.1.5": - resolution: - { - integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==, - } - engines: { node: ">= 8" } - - "@nodelib/fs.stat@2.0.5": - resolution: - { - integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==, - } - engines: { node: ">= 8" } - - "@nodelib/fs.walk@1.2.8": - resolution: - { - integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==, - } - engines: { node: ">= 8" } - - "@oozcitak/dom@1.15.10": - resolution: - { - integrity: sha512-0JT29/LaxVgRcGKvHmSrUTEvZ8BXvZhGl2LASRUgHqDTC1M5g1pLmVv56IYNyt3bG2CUjDkc67wnyZC14pbQrQ==, - } - engines: { node: ">=8.0" } - - "@oozcitak/infra@1.0.8": - resolution: - { - integrity: sha512-JRAUc9VR6IGHOL7OGF+yrvs0LO8SlqGnPAMqyzOuFZPSZSXI7Xf2O9+awQPSMXgIWGtgUf/dA6Hs6X6ySEaWTg==, - } - engines: { node: ">=6.0" } - - "@oozcitak/url@1.0.4": - resolution: - { - integrity: sha512-kDcD8y+y3FCSOvnBI6HJgl00viO/nGbQoCINmQ0h98OhnGITrWR3bOGfwYCthgcrV8AnTJz8MzslTQbC3SOAmw==, - } - engines: { node: ">=8.0" } - - "@oozcitak/util@8.3.8": - resolution: - { - integrity: sha512-T8TbSnGsxo6TDBJx/Sgv/BlVJL3tshxZP7Aq5R1mSnM5OcHY2dQaxLMu2+E8u3gN0MLOzdjurqN4ZRVuzQycOQ==, - } - engines: { node: ">=8.0" } - "@opentelemetry/api-logs@0.207.0": resolution: { @@ -5530,24 +4872,6 @@ packages: cpu: [x64] os: [linux] - "@parcel/watcher-wasm@2.3.0": - resolution: - { - integrity: sha512-ejBAX8H0ZGsD8lSICDNyMbSEtPMWgDL0WFCt/0z7hyf5v8Imz4rAM8xY379mBsECkq/Wdqa5WEDLqtjZ+6NxfA==, - } - engines: { node: ">= 10.0.0" } - bundledDependencies: - - napi-wasm - - "@parcel/watcher-wasm@2.5.6": - resolution: - { - integrity: sha512-byAiBZ1t3tXQvc8dMD/eoyE7lTXYorhn+6uVW5AC+JGI1KtJC/LvDche5cfUE+qiefH+Ybq0bUCJU0aB1cSHUA==, - } - engines: { node: ">= 10.0.0" } - bundledDependencies: - - napi-wasm - "@parcel/watcher-win32-arm64@2.5.6": resolution: { @@ -5672,24 +4996,6 @@ packages: engines: { node: ">=18" } hasBin: true - "@poppinss/colors@4.1.6": - resolution: - { - integrity: sha512-H9xkIdFswbS8n1d6vmRd8+c10t2Qe+rZITbbDHHkQixH5+2x1FDGmi/0K+WgWiqQFKPSlIYB7jlH6Kpfn6Fleg==, - } - - "@poppinss/dumper@0.7.0": - resolution: - { - integrity: sha512-0UTYalzk2t6S4rA2uHOz5bSSW2CHdv4vggJI6Alg90yvl0UgXs6XSXpH96OH+bRkX4J/06djv29pqXJ0lq5Kag==, - } - - "@poppinss/exception@1.2.3": - resolution: - { - integrity: sha512-dCED+QRChTVatE9ibtoaxc+WkdzOSjYTKi/+uacHWIsfodVfpsueo3+DKpgU5Px8qXjgmXkSvhXvSCz3fnP9lw==, - } - "@preact/signals-core@1.14.1": resolution: { @@ -5764,24 +5070,6 @@ packages: integrity: sha512-oOAWABowe8EAbMyWKM0tYDKi8Yaox52D+HWZhAIJqQXbqe0xI/GV7FhLWqlEKreMkfDjshR5FKgi3mnle0h6Eg==, } - "@rolldown/pluginutils@1.0.0-beta.27": - resolution: - { - integrity: sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==, - } - - "@rollup/plugin-alias@6.0.0": - resolution: - { - integrity: sha512-tPCzJOtS7uuVZd+xPhoy5W4vThe6KWXNmsFCNktaAh5RTqcLiSfT4huPQIXkgJ6YCOjJHvecOAzQxLFhPxKr+g==, - } - engines: { node: ">=20.19.0" } - peerDependencies: - rollup: ">=4.0.0" - peerDependenciesMeta: - rollup: - optional: true - "@rollup/plugin-commonjs@28.0.1": resolution: { @@ -5794,78 +5082,6 @@ packages: rollup: optional: true - "@rollup/plugin-commonjs@29.0.2": - resolution: - { - integrity: sha512-S/ggWH1LU7jTyi9DxZOKyxpVd4hF/OZ0JrEbeLjXk/DFXwRny0tjD2c992zOUYQobLrVkRVMDdmHP16HKP7GRg==, - } - engines: { node: ">=16.0.0 || 14 >= 14.17" } - peerDependencies: - rollup: ^2.68.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true - - "@rollup/plugin-inject@5.0.5": - resolution: - { - integrity: sha512-2+DEJbNBoPROPkgTDNe8/1YXWcqxbN5DTjASVIOx8HS+pITXushyNiBV56RB08zuptzz8gT3YfkqriTBVycepg==, - } - engines: { node: ">=14.0.0" } - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true - - "@rollup/plugin-json@6.1.0": - resolution: - { - integrity: sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA==, - } - engines: { node: ">=14.0.0" } - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true - - "@rollup/plugin-node-resolve@16.0.3": - resolution: - { - integrity: sha512-lUYM3UBGuM93CnMPG1YocWu7X802BrNF3jW2zny5gQyLQgRFJhV1Sq0Zi74+dh/6NBx1DxFC4b4GXg9wUCG5Qg==, - } - engines: { node: ">=14.0.0" } - peerDependencies: - rollup: ^2.78.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true - - "@rollup/plugin-replace@6.0.3": - resolution: - { - integrity: sha512-J4RZarRvQAm5IF0/LwUUg+obsm+xZhYnbMXmXROyoSE1ATJe3oXSb9L5MMppdxP2ylNSjv6zFBwKYjcKMucVfA==, - } - engines: { node: ">=14.0.0" } - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true - - "@rollup/plugin-terser@1.0.0": - resolution: - { - integrity: sha512-FnCxhTBx6bMOYQrar6C8h3scPt8/JwIzw3+AJ2K++6guogH5fYaIFia+zZuhqv0eo1RN7W1Pz630SyvLbDjhtQ==, - } - engines: { node: ">=20.0.0" } - peerDependencies: - rollup: ^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true - "@rollup/pluginutils@5.3.0": resolution: { @@ -6580,18 +5796,6 @@ packages: peerDependencies: react: ^16.14.0 || 17.x || 18.x || 19.x - "@sentry/rollup-plugin@5.2.1": - resolution: - { - integrity: sha512-LKJyL4fzcHnHExipVN0/QinhBNoGZt+UXg8xJaqc6MwOolOhxHW0ii2hu1OZsiOhX0+r9MK7T+a7Sx0F0bzdMQ==, - } - engines: { node: ">= 18" } - peerDependencies: - rollup: ">=3.2.0" - peerDependenciesMeta: - rollup: - optional: true - "@sentry/vercel-edge@10.51.0": resolution: { @@ -6599,13 +5803,6 @@ packages: } engines: { node: ">=18" } - "@sentry/vite-plugin@5.2.1": - resolution: - { - integrity: sha512-sSQzOhN8xvo/R70vqgyonnC/fwXpJ1kbkJ0g81Xy/OR+N89+v5tPN4VlKTAq3T2c5yAPE39XCbdgeEnI4kbWGg==, - } - engines: { node: ">= 18" } - "@sentry/webpack-plugin@5.2.1": resolution: { @@ -6645,13 +5842,6 @@ packages: integrity: sha512-brySQQs7Jtn0joV8Xh9ZV/hZb9Ozb0pmazDIASBkYKCjXrXU3mpcFahmK/z4YDhGkQvP9mWJbVyahdtU5wQA+A==, } - "@sindresorhus/is@7.2.0": - resolution: - { - integrity: sha512-P1Cz1dWaFfR4IR+U13mqqiGsLFf1KbayybWwdd2vfctdV6hDpUkgCY0nKOLLTMSoRd/jJNjtbqzf13K8DCCXQw==, - } - engines: { node: ">=18" } - "@sindresorhus/merge-streams@4.0.0": resolution: { @@ -6671,12 +5861,6 @@ packages: integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==, } - "@speed-highlight/core@1.2.15": - resolution: - { - integrity: sha512-BMq1K3DsElxDWawkX6eLg9+CKJrTVGCBAWVuHXVUV2u0s2711qiChLSId6ikYPfxhdYocLNt3wWwSvDiTvFabw==, - } - "@standard-schema/spec@1.1.0": resolution: { @@ -7399,45 +6583,6 @@ packages: peerDependencies: vite: ^5.2.0 || ^6 || ^7 || ^8 - "@tanstack/directive-functions-plugin@1.131.2": - resolution: - { - integrity: sha512-5Pz6aVPS0BW+0bLvMzWsoajfjI6ZeWqkbVBaQfIbSTm4DOBO05JuQ/pb7W7m3GbCb5TK1a/SKDhuTX6Ag5I7UQ==, - } - engines: { node: ">=12" } - peerDependencies: - vite: ">=6.0.0" - - "@tanstack/directive-functions-plugin@1.142.1": - resolution: - { - integrity: sha512-k4HhAaitobp+z2pXBkmoWgE8Ollhx7fQXpVL+PQ7HeHZc2PilrQtC3ysxvoPunufrztIxweSE9HAWkZ2AFNaLw==, - } - engines: { node: ">=12" } - peerDependencies: - vite: ">=6.0.0 || >=7.0.0" - - "@tanstack/history@1.131.2": - resolution: - { - integrity: sha512-cs1WKawpXIe+vSTeiZUuSBy8JFjEuDgdMKZFRLKwQysKo8y2q6Q1HvS74Yw+m5IhOW1nTZooa6rlgdfXcgFAaw==, - } - engines: { node: ">=12" } - - "@tanstack/history@1.161.6": - resolution: - { - integrity: sha512-NaOGLRrddszbQj9upGat6HG/4TKvXLvu+osAIgfxPYA+eIvYKv8GKDJOrY2D3/U9MRnKfMWD7bU4jeD4xmqyIg==, - } - engines: { node: ">=20.19" } - - "@tanstack/history@1.162.0": - resolution: - { - integrity: sha512-79pf/RkhteYZTRgcR4F9kbk84P2N8rugQJswxfIqovlbRiT3yI7eBE+5QorIrZaOKktsgzRlXh1l/du/xpl4iA==, - } - engines: { node: ">=20.19" } - "@tanstack/query-core@5.96.2": resolution: { @@ -7452,335 +6597,6 @@ packages: peerDependencies: react: ^18 || ^19 - "@tanstack/react-router@1.168.10": - resolution: - { - integrity: sha512-/RmDlOwDkCug609KdPB3U+U1zmrtadJpvsmRg2zEn8TRCKRNri7dYZIjQZbNg8PgUiRL4T6njrZBV1ChzblNaA==, - } - engines: { node: ">=20.19" } - peerDependencies: - react: ">=18.0.0 || >=19.0.0" - react-dom: ">=18.0.0 || >=19.0.0" - - "@tanstack/react-router@1.170.5": - resolution: - { - integrity: sha512-SML7KhtehzfuoflBWhlUf3SA30bdk82cyoMet2ZZDK3fW4x/dKx5LKNwMUp8TOqUOTW7FW+Rfle9Ae/FswwsZA==, - } - engines: { node: ">=20.19" } - peerDependencies: - react: ">=18.0.0 || >=19.0.0" - react-dom: ">=18.0.0 || >=19.0.0" - - "@tanstack/react-start-client@1.168.0": - resolution: - { - integrity: sha512-U7OhNoGOqJO/IRYdn93hlz1qe5PU9rLIh1oO5Ag0Ll9CKdNrACCsO/SVkdimo88h/YJ8oRaJstd4sge4F8xk3w==, - } - engines: { node: ">=22.12.0" } - peerDependencies: - react: ">=18.0.0 || >=19.0.0" - react-dom: ">=18.0.0 || >=19.0.0" - - "@tanstack/react-start-plugin@1.131.50": - resolution: - { - integrity: sha512-ys+sGvnnE8BUNjGsngg+MGn3F5lV4okL5CWEKFzjBSjQsrTN7apGfmqvBP3O6PkRPHpXZ8X3Z5QsFvSc0CaDRQ==, - } - engines: { node: ">=12" } - peerDependencies: - "@vitejs/plugin-react": ">=4.3.4" - vite: ">=6.0.0" - - "@tanstack/react-start-router-manifest@1.120.19": - resolution: - { - integrity: sha512-z+4YL6shTtsHjk32yaIemQwgkx6FcqwPBYfeNt7Co2eOpWrvsoo/Fe9869/oIY2sPyhiWDs1rDb3e0qnAy8Cag==, - } - engines: { node: ">=12" } - - "@tanstack/react-start-server@1.167.5": - resolution: - { - integrity: sha512-RZEJVSa1+MER/L+8F5Z2a5YzLOLaoyMlTkqE168wzIzNERRUZW/NiHZRvxX76Idd1kFr5eIh7FZWONELK4mXBQ==, - } - engines: { node: ">=22.12.0" } - peerDependencies: - react: ">=18.0.0 || >=19.0.0" - react-dom: ">=18.0.0 || >=19.0.0" - - "@tanstack/react-store@0.9.3": - resolution: - { - integrity: sha512-y2iHd/N9OkoQbFJLUX1T9vbc2O9tjH0pQRgTcx1/Nz4IlwLvkgpuglXUx+mXt0g5ZDFrEeDnONPqkbfxXJKwRg==, - } - 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.131.50": - resolution: - { - integrity: sha512-eojd4JZ5ziUhGEmXZ4CaVX5mQdiTMiz56Sp8ZQ6r7deb55Q+5G4JQDkeuXpI7HMAvzr+4qlsFeLaDRXXjXyOqQ==, - } - engines: { node: ">=12" } - - "@tanstack/router-core@1.168.9": - resolution: - { - integrity: sha512-18oeEwEDyXOIuO1VBP9ACaK7tYHZUjynGDCoUh/5c/BNhia9vCJCp9O0LfhZXOorDc/PmLSgvmweFhVmIxF10g==, - } - engines: { node: ">=20.19" } - hasBin: true - - "@tanstack/router-core@1.171.3": - resolution: - { - integrity: sha512-CbaA38aiV1SC8N0ZAMs8P2PZPoNATim7lq8zhKhno5i5+iriaH6PQMrixYLrq3yhjAOwWhN3bj/4DCjPyHqHnA==, - } - engines: { node: ">=20.19" } - - "@tanstack/router-generator@1.131.50": - resolution: - { - integrity: sha512-zlMBw5l88GIg3v+378JsfDYq3ejEaJmD3P1R+m0yEPxh0N//Id1FjKNSS7yJbejlK2WGVm9DUG46iBdTDMQM+Q==, - } - engines: { node: ">=12" } - - "@tanstack/router-generator@1.167.6": - resolution: - { - integrity: sha512-0G7ETmSo0AleOIM2u8J6Oxyf2y5R7FIn3kAr86ItS2nbNDhHyA0Sj+Ij3VH5YjJKT2uurqYg1Bx++dU20CFN7g==, - } - engines: { node: ">=20.19" } - - "@tanstack/router-plugin@1.131.50": - resolution: - { - integrity: sha512-gdEBPGzx7llQNRnaqfPJ1iaPS3oqB8SlvKRG5l7Fxp4q4yINgkeowFYSKEhPOc9bjoNhGrIHOlvPTPXEzAQXzQ==, - } - engines: { node: ">=12" } - peerDependencies: - "@rsbuild/core": ">=1.0.2" - "@tanstack/react-router": ^1.131.50 - vite: ">=5.0.0 || >=6.0.0" - vite-plugin-solid: ^2.11.2 - 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-plugin@1.168.7": - resolution: - { - integrity: sha512-KqxXSEKM3XlhUKZjia073fk8SrCCpiyDlVmOyey+PxwpHOQsoNYbaTjFkTakXPxW0knphVyyUoWKiy4HrvZoww==, - } - engines: { node: ">=20.19" } - peerDependencies: - "@rsbuild/core": ">=1.0.2 || ^2.0.0" - "@tanstack/react-router": ^1.170.5 - vite: ">=5.0.0 || >=6.0.0 || >=7.0.0 || >=8.0.0" - vite-plugin-solid: ^2.11.10 || ^3.0.0-0 - 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-utils@1.131.2": - resolution: - { - integrity: sha512-sr3x0d2sx9YIJoVth0QnfEcAcl+39sQYaNQxThtHmRpyeFYNyM2TTH+Ud3TNEnI3bbzmLYEUD+7YqB987GzhDA==, - } - engines: { node: ">=12" } - - "@tanstack/router-utils@1.141.0": - resolution: - { - integrity: sha512-/eFGKCiix1SvjxwgzrmH4pHjMiMxc+GA4nIbgEkG2RdAJqyxLcRhd7RPLG0/LZaJ7d0ad3jrtRqsHLv2152Vbw==, - } - engines: { node: ">=12" } - - "@tanstack/router-utils@1.162.1": - resolution: - { - integrity: sha512-62layyTGmclHDQS/eidwKRfN1hhCKwViG7iEBcVmL0MXgcAB3OOucWCEcDDGd9Cu11H6b4QQ5oOo47MWIqwz0A==, - } - engines: { node: ">=20.19" } - - "@tanstack/server-functions-plugin@1.131.2": - resolution: - { - integrity: sha512-hWsaSgEZAVyzHg8+IcJWCEtfI9ZSlNELErfLiGHG9XCHEXMegFWsrESsKHlASzJqef9RsuOLDl+1IMPIskwdDw==, - } - engines: { node: ">=12" } - - "@tanstack/server-functions-plugin@1.142.1": - resolution: - { - integrity: sha512-ltTOj6dIDlRV3M8+PzontDYFMnIQ+icUnD+OKzIRfKo6bbvC0qvy8ttuWmVJxmqHy9xsWgkNt4gZrKVjtWXIhQ==, - } - engines: { node: ">=12" } - - "@tanstack/start-api-routes@1.120.19": - resolution: - { - integrity: sha512-zvMI9Rfwsm3CCLTLqdvUfteDRMdPKTOO05O3L8vp49BrYYsLrT0OplhounzdRMgGMnKd4qCXUC9Pj4UOUOodTw==, - } - engines: { node: ">=12" } - - "@tanstack/start-client-core@1.131.50": - resolution: - { - integrity: sha512-8fbwYca1NAu/5WyGvO3e341/FPpsiqdPrrzkoc0cXQimMN1DligoRjvHgP13q3n5w1tFMSqChGzXfOVJP9ndSw==, - } - engines: { node: ">=12" } - - "@tanstack/start-client-core@1.170.0": - resolution: - { - integrity: sha512-0tAyjFoSDm3EyIPOyz21uPBS82UWWwiZtBK+Tyc4kqNkzdvoCH21ywdWDYK9wCHdoSTm1m1KEWOLm31gtiVdoQ==, - } - engines: { node: ">=22.12.0" } - - "@tanstack/start-config@1.120.20": - resolution: - { - integrity: sha512-oH/mfTSHV8Qbil74tWicPLW6+kKmT3esXCnDzvrkhi3+N8ZuVUDr01Qpil0Wxf9lLPfM5L6VX03nF4hSU8vljg==, - } - engines: { node: ">=12" } - peerDependencies: - react: ">=18.0.0 || >=19.0.0" - react-dom: ">=18.0.0 || >=19.0.0" - vite: ^6.0.0 - - "@tanstack/start-fn-stubs@1.162.0": - resolution: - { - integrity: sha512-QWfUZ3Yo923tdQn38LyKMU8rcTw69zc+T4dAvgTWV4O56SqFRsGfS0lSWIMhJRwXIx/bvdi7nTUBDdZtTHtpTQ==, - } - engines: { node: ">=22.12.0" } - - "@tanstack/start-plugin-core@1.131.50": - resolution: - { - integrity: sha512-eFvMA0chqLtHbq+8ojp1fXN7AQjhmeoOpQaZaU1d51wb7ugetrn0k3OuHblxtE/O0L4HEC9s4X5zmFJt0vLh0w==, - } - engines: { node: ">=12" } - peerDependencies: - vite: ">=6.0.0" - - "@tanstack/start-server-core@1.131.50": - resolution: - { - integrity: sha512-3SWwwhW2GKMhPSaqWRal6Jj1Y9ObfdWEXKFQid1LBuk5xk/Es4bmW68o++MbVgs/GxUxyeZ3TRVqb0c7RG1sog==, - } - engines: { node: ">=12" } - - "@tanstack/start-server-core@1.169.0": - resolution: - { - integrity: sha512-wHZU9ph2r59Zwfnr5xigfIL7BzbQ8w8f4eesY/OdnxoWEVTvpWPjbDLJNH9L+c4U1F1GFPeg5b3r12MhGGejDg==, - } - engines: { node: ">=22.12.0" } - - "@tanstack/start-server-functions-client@1.131.50": - resolution: - { - integrity: sha512-4aM17fFdVAFH6uLPswKJxzrhhIjcCwKqzfTcgY3OnhUKnaZBTQwJA+nUHQCI6IWvEvrcrNVtFTtv13TkDk3YMw==, - } - engines: { node: ">=12" } - - "@tanstack/start-server-functions-fetcher@1.131.50": - resolution: - { - integrity: sha512-yeZekr84BkyLaNaZ4llKbDBb+CJPVESP881iJijP++SuRmvetivUs75KiV9VFIf7MhdefICmRcCdff/KbK5QnQ==, - } - engines: { node: ">=12" } - - "@tanstack/start-server-functions-handler@1.120.19": - resolution: - { - integrity: sha512-Ow8HkNieoqHumD3QK4YUDIhzBtFX9mMEDrxFYtbVBgxP1C9Rm/YDuwnUNP49q1tTOZ22Bs4wSDjBXvu+OgSSfA==, - } - engines: { node: ">=12" } - - "@tanstack/start-server-functions-server@1.131.2": - resolution: - { - integrity: sha512-u67d6XspczlC/dYki/Id28oWsTjkZMJhDqO4E23U3rHs8eYgxvMBHKqdeqWgOyC+QWT9k6ze1pJmbv+rmc3wOQ==, - } - engines: { node: ">=12" } - - "@tanstack/start-server-functions-ssr@1.120.19": - resolution: - { - integrity: sha512-D4HGvJXWvVUssgkLDtdSJTFfWuT+nVv9GauPfVQTtMUUy+NbExNkFWKvF+XvCS81lBqnCKL7VrWqZMXiod0gTA==, - } - engines: { node: ">=12" } - - "@tanstack/start-storage-context@1.131.50": - resolution: - { - integrity: sha512-qbVFdx/B5URJXzWjguaiCcQhJw2NL8qFGtSzLSGilxQnvtJdM+V9VBMizKIxhm9oiYnfqGsVfyMOBD7q9f8Y1Q==, - } - engines: { node: ">=12" } - - "@tanstack/start-storage-context@1.167.5": - resolution: - { - integrity: sha512-CkxYbrn7Sm8nOBmNNdYbEtXKBhxy3Em6KKSClKs78Lfsn1W2YY+l4KZ1doLzVkAUOWKsUYULWMS/5U9m8FQwQA==, - } - engines: { node: ">=22.12.0" } - - "@tanstack/start@1.120.20": - resolution: - { - integrity: sha512-fQO+O/5xJpli5KlV6pwDz6DtpbqO/0atdVSyVnkemzk0Mej9azm4HXtw+cKkIPtsSplWs4B1EbMtgGMb9ADhSA==, - } - engines: { node: ">=12" } - - "@tanstack/store@0.7.7": - resolution: - { - integrity: sha512-xa6pTan1bcaqYDS9BDpSiS63qa6EoDkPN9RsRaxHuDdVDNntzq3xNwR5YKTU/V3SkSyC9T4YVOPh2zRQN0nhIQ==, - } - - "@tanstack/store@0.9.3": - resolution: - { - integrity: sha512-8reSzl/qGWGGVKhBoxXPMWzATSbZLZFWhwBAFO9NAyp0TxzfBP0mIrGb8CP8KrQTmvzXlR/vFPPUrHTLBGyFyw==, - } - - "@tanstack/virtual-file-routes@1.131.2": - resolution: - { - integrity: sha512-VEEOxc4mvyu67O+Bl0APtYjwcNRcL9it9B4HKbNgcBTIOEalhk+ufBl4kiqc8WP1sx1+NAaiS+3CcJBhrqaSRg==, - } - engines: { node: ">=12" } - - "@tanstack/virtual-file-routes@1.162.0": - resolution: - { - integrity: sha512-uhOeFyxLcU41HzvrxsGpiWdcMbScY1EDgbZ5K7DVRMYInbLYWAC0EA/kx9wXAoSM8q82bUG2hRl8+EAjE6XAbA==, - } - engines: { node: ">=20.19" } - "@testing-library/dom@10.4.1": resolution: { @@ -7965,12 +6781,6 @@ packages: integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==, } - "@types/babel__code-frame@7.27.0": - resolution: - { - integrity: sha512-Dwlo+LrxDx/0SpfmJ/BKveHf7QXWvLBLc+x03l5sbzykj3oB9nHygCpSECF1a+s+QIxbghe+KHqC90vGtxLRAA==, - } - "@types/babel__core@7.20.5": resolution: { @@ -7995,12 +6805,6 @@ packages: integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==, } - "@types/braces@3.0.5": - resolution: - { - integrity: sha512-SQFof9H+LXeWNz8wDe7oN5zu7ket0qwMu5vZubW4GCJ8Kkeh6nBWUz87+KTz/G3Kqsrp0j/W253XJb3KMEeg3w==, - } - "@types/busboy@1.5.4": resolution: { @@ -8127,12 +6931,6 @@ packages: integrity: sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==, } - "@types/micromatch@4.0.10": - resolution: - { - integrity: sha512-5jOhFDElqr4DKTrTEbnW8DZ4Hz5LRUEmyrGpCMrD/NphYv3nUnaF08xmSLx1rGGnyEs/kFnhiw6dCgcDqMr5PQ==, - } - "@types/ms@2.1.0": resolution: { @@ -8221,12 +7019,6 @@ packages: integrity: sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==, } - "@types/resolve@1.20.2": - resolution: - { - integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==, - } - "@types/resolve@1.20.6": resolution: { @@ -8406,30 +7198,6 @@ packages: } engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - "@vercel/nft@1.5.0": - resolution: - { - integrity: sha512-IWTDeIoWhQ7ZtRO/JRKH+jhmeQvZYhtGPmzw/QGDY+wDCQqfm25P9yIdoAFagu4fWsK4IwZXDFIjrmp5rRm/sA==, - } - engines: { node: ">=20" } - hasBin: true - - "@vinxi/listhen@1.5.6": - resolution: - { - integrity: sha512-WSN1z931BtasZJlgPp704zJFnQFRg7yzSjkm3MzAWQYe4uXFXlFr1hc5Ac2zae5/HDOz5x1/zDM5Cb54vTCnWw==, - } - hasBin: true - - "@vitejs/plugin-react@4.7.0": - resolution: - { - integrity: sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==, - } - engines: { node: ^14.18.0 || >=16.0.0 } - peerDependencies: - vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 - "@vitest/coverage-v8@3.2.4": resolution: { @@ -8594,20 +7362,6 @@ packages: integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==, } - abbrev@3.0.1: - resolution: - { - integrity: sha512-AO2ac6pjRB3SJmGJo+v5/aK6Omggp6fsLrs6wN9bd35ulu4cCwaAU9+7ZhXjeqHVkaHThLuzH0nZr0YpCDhygg==, - } - engines: { node: ^18.17.0 || >=20.5.0 } - - abort-controller@3.0.0: - resolution: - { - integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==, - } - engines: { node: ">=6.5" } - acorn-import-attributes@1.9.5: resolution: { @@ -8706,12 +7460,6 @@ packages: } engines: { node: ">= 14" } - ansi-align@3.0.1: - resolution: - { - integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==, - } - ansi-escapes@4.3.2: resolution: { @@ -8775,13 +7523,6 @@ packages: } engines: { node: ">=12" } - ansis@4.3.0: - resolution: - { - integrity: sha512-44mvgtPvohuU/70DdY5Oz2AIrLJ9k6/5x4KmoSvPwO+5Moijo0+N9D0fKbbYZQWP1hNm5CpOf+E01jhxG/r8xg==, - } - engines: { node: ">=14" } - anymatch@3.1.3: resolution: { @@ -8796,20 +7537,6 @@ packages: } engines: { node: ">=8" } - archiver-utils@5.0.2: - resolution: - { - integrity: sha512-wuLJMmIBQYCsGZgYLTy5FIB2pF6Lfb6cXMSF8Qywwk3t20zWnAi7zLcQFdKQmIB8wyZpY5ER38x08GbwtR2cLA==, - } - engines: { node: ">= 14" } - - archiver@7.0.1: - resolution: - { - integrity: sha512-ZcbTaIqJOfCc03QwD468Unz/5Ir8ATtvAHsK+FdXbDIbGfihqh9mrvdcYunQzqn4HrvWWaFyaxJhGZagaJJpPQ==, - } - engines: { node: ">= 14" } - archy@1.0.0: resolution: { @@ -8861,12 +7588,6 @@ packages: integrity: sha512-BRRC8VRZY2R4Z4lFIL35MwNXmwVqBityvOIwETtsCSwvjl0IdgFsy9NhdaA6j74nUdtJJlIypeRhpDam19Wq3g==, } - async-sema@3.1.1: - resolution: - { - integrity: sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==, - } - async@3.2.6: resolution: { @@ -8913,23 +7634,6 @@ packages: integrity: sha512-6hp5CwvTPlN2A31g5dxnwAX0orzM7pmCRDLnZSX772mv8WDqICwFjowHuPs04Mc8deIld1+ejhtaMn5vp6b+1w==, } - b4a@1.8.1: - resolution: - { - integrity: sha512-aiqre1Nr0B/6DgE2N5vwTc+2/oQZ4Wh1t4NznYY4E00y8LCt6NqdRv81so00oo27D8MVKTpUa/MwUUtBLXCoDw==, - } - peerDependencies: - react-native-b4a: "*" - peerDependenciesMeta: - react-native-b4a: - optional: true - - babel-dead-code-elimination@1.0.12: - resolution: - { - integrity: sha512-GERT7L2TiYcYDtYk1IpD+ASAYXjKbLTDPhBtYj7X1NuRMDTMtAx9kyBenub1Ev41lo91OHCKdmP+egTDmfQ7Ig==, - } - babel-jest@29.7.0: resolution: { @@ -8990,71 +7694,6 @@ packages: } engines: { node: 18 || 20 || >=22 } - bare-events@2.8.3: - resolution: - { - integrity: sha512-HdUm8EMQBLaJvGUdidNNbqpA1kYkwNcb+MYxkxCLAPJGQzlv9J0C24h8V65Z4c5GLd/JEALDvpFCQgpLJqc0zw==, - } - peerDependencies: - bare-abort-controller: "*" - peerDependenciesMeta: - bare-abort-controller: - optional: true - - bare-fs@4.7.1: - resolution: - { - integrity: sha512-WDRsyVN52eAx/lBamKD6uyw8H4228h/x0sGGGegOamM2cd7Pag88GfMQalobXI+HaEUxpCkbKQUDOQqt9wawRw==, - } - engines: { bare: ">=1.16.0" } - peerDependencies: - bare-buffer: "*" - peerDependenciesMeta: - bare-buffer: - optional: true - - bare-os@3.9.1: - resolution: - { - integrity: sha512-6M5XjcnsygQNPMCMPXSK379xrJFiZ/AEMNBmFEmQW8d/789VQATvriyi5r0HYTL9TkQ26rn3kgdTG3aisbrXkQ==, - } - engines: { bare: ">=1.14.0" } - - bare-path@3.0.0: - resolution: - { - integrity: sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==, - } - - bare-stream@2.13.1: - resolution: - { - integrity: sha512-Vp0cnjYyrEC4whYTymQ+YZi6pBpfiICZO3cfRG8sy67ZNWe951urv1x4eW1BKNngw3U+3fPYb5JQvHbCtxH7Ow==, - } - peerDependencies: - bare-abort-controller: "*" - bare-buffer: "*" - bare-events: "*" - peerDependenciesMeta: - bare-abort-controller: - optional: true - bare-buffer: - optional: true - bare-events: - optional: true - - bare-url@2.4.3: - resolution: - { - integrity: sha512-Kccpc7ACfXaxfeInfqKcZtW4pT5YBn1mesc4sCsun6sRwtbJ4h+sNOaksUpYEJUKfN65YWC6Bw2OJEFiKxq8nQ==, - } - - base64-js@1.5.1: - resolution: - { - integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==, - } - baseline-browser-mapping@2.10.15: resolution: { @@ -9084,31 +7723,12 @@ packages: } engines: { node: ">=8" } - bindings@1.5.0: - resolution: - { - integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==, - } - body-scroll-lock@4.0.0-beta.0: resolution: { integrity: sha512-a7tP5+0Mw3YlUJcGAKUqIBkYYGlYxk2fnCasq/FUph1hadxlTRjF+gAcZksxANnaMnALjxEddmSi/H3OR8ugcQ==, } - boolbase@1.0.0: - resolution: - { - integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==, - } - - boxen@7.1.1: - resolution: - { - integrity: sha512-2hCgjEmP8YLWQ130n2FerGv7rYpfBmnmp9Uy2Le1vge6X3gZIfSmEzP5QTDElFxcvVcXlEn8Aq6MU/PZygIOog==, - } - engines: { node: ">=14.16" } - brace-expansion@1.1.13: resolution: { @@ -9161,32 +7781,12 @@ packages: integrity: sha512-vgnKAUzcDoa+AeyYwXCoHyF2q6u/8H46dxu5JN+4/TZeq/Dlinn0K6GvxsCLb3LHUJl0m/TLiEK31kUwtgocMQ==, } - buffer-crc32@1.0.0: - resolution: - { - integrity: sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==, - } - engines: { node: ">=8.0.0" } - buffer-from@1.1.2: resolution: { integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==, } - buffer@6.0.3: - resolution: - { - integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==, - } - - bundle-name@4.1.0: - resolution: - { - integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==, - } - engines: { node: ">=18" } - busboy@1.6.0: resolution: { @@ -9194,17 +7794,6 @@ packages: } engines: { node: ">=10.16.0" } - c12@3.3.4: - resolution: - { - integrity: sha512-cM0ApFQSBXuourJejzwv/AuPRvAxordTyParRVcHjjtXirtkzM0uK2L9TTn9s0cXZbG7E55jCivRQzoxYmRAlA==, - } - peerDependencies: - magicast: "*" - peerDependenciesMeta: - magicast: - optional: true - cac@6.7.14: resolution: { @@ -9261,13 +7850,6 @@ packages: } engines: { node: ">=10" } - camelcase@7.0.1: - resolution: - { - integrity: sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==, - } - engines: { node: ">=14.16" } - caniuse-lite@1.0.30001786: resolution: { @@ -9378,19 +7960,6 @@ packages: } 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: { @@ -9405,20 +7974,6 @@ packages: } engines: { node: ">= 14.16.0" } - chokidar@5.0.0: - resolution: - { - integrity: sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==, - } - engines: { node: ">= 20.19.0" } - - chownr@3.0.0: - resolution: - { - integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==, - } - engines: { node: ">=18" } - chrome-trace-event@1.0.4: resolution: { @@ -9440,18 +7995,6 @@ packages: } engines: { node: ">=8" } - citty@0.1.6: - resolution: - { - integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==, - } - - citty@0.2.2: - resolution: - { - integrity: sha512-+6vJA3L98yv+IdfKGZHBNiGW5KHn22e/JwID0Strsz8h4S/csAu/OuICwxrg44k5MRiZHWIo8XXuJgQTriRP4w==, - } - cjs-module-lexer@1.4.3: resolution: { @@ -9471,13 +8014,6 @@ packages: } engines: { node: ">=6" } - cli-boxes@3.0.0: - resolution: - { - integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==, - } - engines: { node: ">=10" } - cli-cursor@5.0.0: resolution: { @@ -9505,13 +8041,6 @@ packages: integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==, } - clipboardy@4.0.0: - resolution: - { - integrity: sha512-5mOlNS0mhX0707P2I0aZ2V/cmHUEO/fL7VFLqszkhUsxt7RwnmrInf/eEQKlf5GzvYeHIjT+Ov1HRfNmymlG0w==, - } - engines: { node: ">=18" } - cliui@6.0.0: resolution: { @@ -9525,13 +8054,6 @@ packages: } engines: { node: ">=12" } - cliui@9.0.1: - resolution: - { - integrity: sha512-k7ndgKhwoQveBL+/1tqGJYNz097I7WOvwbmmU2AR5+magtbjPWQTS1C5vzGkBC8Ym8UWRzfKUzUUqFLypY4Q+w==, - } - engines: { node: ">=20" } - clsx@2.1.1: resolution: { @@ -9642,19 +8164,6 @@ packages: integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==, } - compatx@0.2.0: - resolution: - { - integrity: sha512-6gLRNt4ygsi5NyMVhceOCFv14CIdDFN7fQjX1U4+47qVE/+kjPoXMK65KWK+dWxmFzMTuKazoQ9sch6pM0p5oA==, - } - - compress-commons@6.0.2: - resolution: - { - integrity: sha512-6FqVXeETqWPoGcfzrXb37E50NP0LXT8kAMu5ooZayhWWdgEY4lBEEcbQNXtkuKQsGduxiIcI4gOTsxTmuq/bSg==, - } - engines: { node: ">= 14" } - concat-map@0.0.1: resolution: { @@ -9669,25 +8178,6 @@ packages: engines: { node: ">=18" } hasBin: true - confbox@0.1.8: - resolution: - { - integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==, - } - - confbox@0.2.4: - resolution: - { - integrity: sha512-ysOGlgTFbN2/Y6Cg3Iye8YKulHw+R2fNXHrgSmXISQdMnomY6eNDprVdW9R5xBguEqI954+S6709UyiO7B+6OQ==, - } - - consola@3.4.2: - resolution: - { - integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==, - } - engines: { node: ^14.18.0 || >=16.10.0 } - console-table-printer@2.12.1: resolution: { @@ -9706,24 +8196,6 @@ packages: integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==, } - cookie-es@1.2.3: - resolution: - { - integrity: sha512-lXVyvUvrNXblMqzIRrxHb57UUVmqsSWlxqt3XIjCkUP0wDAf6uicO6KMbEgYrMNtEvWgWHwe42CKxPu9MYAnWw==, - } - - cookie-es@2.0.1: - resolution: - { - integrity: sha512-aVf4A4hI2w70LnF7GG+7xDQUkliwiXWXFvTjkip4+b64ygDQ2sJPRSKFDHbxn8o0xu9QzPkMuuiWIXyFSE2slA==, - } - - cookie-es@3.1.1: - resolution: - { - integrity: sha512-UaXxwISYJPTr9hwQxMFYZ7kNhSXboMXP+Z3TRX6f1/NyaGPfuNUZOWP1pUEb75B2HjfklIYLVRfWiFZJyC6Npg==, - } - copy-anything@4.0.5: resolution: { @@ -9731,12 +8203,6 @@ packages: } engines: { node: ">=18" } - core-util-is@1.0.3: - resolution: - { - integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==, - } - corser@2.0.1: resolution: { @@ -9751,21 +8217,6 @@ packages: } engines: { node: ">=10" } - crc-32@1.2.2: - resolution: - { - integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==, - } - engines: { node: ">=0.8" } - hasBin: true - - crc32-stream@6.0.0: - resolution: - { - integrity: sha512-piICUB6ei4IlTv1+653yq5+KoqfBYmj9bw6LqXoOneTMDXk5nM1qt12mFW1caG3LlJXEKW1Bp0WggEmIfQB34g==, - } - engines: { node: ">= 14" } - create-jest@29.7.0: resolution: { @@ -9774,13 +8225,6 @@ packages: engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } hasBin: true - croner@10.0.1: - resolution: - { - integrity: sha512-ixNtAJndqh173VQ4KodSdJEI6nuioBWI0V1ITNKhZZsO0pEMoDxz539T4FTTbSZ/xIOSuDnzxLVRqBVSvPNE2g==, - } - engines: { node: ">=18.0" } - croner@9.1.0: resolution: { @@ -9795,31 +8239,12 @@ packages: } engines: { node: ">= 8" } - crossws@0.3.5: - resolution: - { - integrity: sha512-ojKiDvcmByhwa8YYqbQI/hg7MEU0NC03+pSdEq4ZUnZR9xXpwk7E43SMNGkn+JxJGPFtNvQ48+vV2p+P1ml5PA==, - } - crypt@0.0.2: resolution: { integrity: sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==, } - css-select@5.2.2: - resolution: - { - integrity: sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==, - } - - css-what@6.2.2: - resolution: - { - integrity: sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==, - } - engines: { node: ">= 6" } - css.escape@1.5.1: resolution: { @@ -9889,50 +8314,6 @@ packages: integrity: sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==, } - dax-sh@0.39.2: - resolution: - { - integrity: sha512-gpuGEkBQM+5y6p4cWaw9+ePy5TNon+fdwFVtTI8leU3UhwhsBfPewRxMXGuQNC+M2b/MDGMlfgpqynkcd0C3FQ==, - } - deprecated: This package has moved to simply be 'dax' instead of 'dax-sh' - - 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 - - debug@2.6.9: - resolution: - { - integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==, - } - peerDependencies: - supports-color: "*" - peerDependenciesMeta: - supports-color: - optional: true - debug@3.2.7: resolution: { @@ -10006,20 +8387,6 @@ packages: } engines: { node: ">=0.10.0" } - default-browser-id@5.0.1: - resolution: - { - integrity: sha512-x1VCxdX4t+8wVfd1so/9w+vQ4vx7lKd2Qp5tDRutErwmR85OgmfX7RlLRMWafRMY7hbEiXIbudNrjOAPa/hL8Q==, - } - engines: { node: ">=18" } - - default-browser@5.5.0: - resolution: - { - integrity: sha512-H9LMLr5zwIbSxrmvikGuI/5KGhZ8E2zH3stkMgM5LpOWDutGM2JZaj460Udnf1a+946zc7YBgrqEWwbk7zHvGw==, - } - engines: { node: ">=18" } - default-require-extensions@3.0.1: resolution: { @@ -10041,19 +8408,6 @@ packages: } engines: { node: ">=8" } - define-lazy-prop@3.0.0: - resolution: - { - integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==, - } - engines: { node: ">=12" } - - defu@6.1.7: - resolution: - { - integrity: sha512-7z22QmUWiQ/2d0KkdYmANbRUVABpZ9SNYyH5vx6PZ+nE5bcC0l7uFvEfHlyld/HcGBFTL536ClDt3DEcSlEJAQ==, - } - delayed-stream@1.0.0: resolution: { @@ -10068,13 +8422,6 @@ packages: } engines: { node: ">=0.10" } - depd@2.0.0: - resolution: - { - integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==, - } - engines: { node: ">= 0.8" } - dequal@2.0.3: resolution: { @@ -10088,19 +8435,6 @@ packages: integrity: sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==, } - destr@2.0.5: - resolution: - { - integrity: sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==, - } - - destroy@1.2.0: - resolution: - { - integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==, - } - engines: { node: ">= 0.8", npm: 1.2.8000 || >= 1.4.16 } - detect-libc@2.1.2: resolution: { @@ -10134,13 +8468,6 @@ packages: } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } - diff@8.0.4: - resolution: - { - integrity: sha512-DPi0FmjiSU5EvQV0++GFDOJ9ASQUVFh5kD+OzOnYdi7n3Wpm9hWWGfB/O2blfHcMVTL5WkQXSnRiK9makhrcnw==, - } - engines: { node: ">=0.3.1" } - diffable-html@4.1.0: resolution: { @@ -10178,12 +8505,6 @@ packages: integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==, } - dom-serializer@2.0.0: - resolution: - { - integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==, - } - domelementtype@1.3.1: resolution: { @@ -10202,13 +8523,6 @@ packages: integrity: sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==, } - domhandler@5.0.3: - resolution: - { - integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==, - } - engines: { node: ">= 4" } - dompurify@3.2.7: resolution: { @@ -10221,19 +8535,6 @@ packages: integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==, } - domutils@3.2.2: - resolution: - { - integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==, - } - - dot-prop@10.1.0: - resolution: - { - integrity: sha512-MVUtAugQMOff5RnBy2d9N31iG0lNwg1qAoAOn7pOK5wf94WIaE3My2p3uwTQuvS2AcqchkcR3bHByjaM0mmi7Q==, - } - engines: { node: ">=20" } - dotenv-cli@11.0.0: resolution: { @@ -10378,24 +8679,12 @@ packages: } engines: { node: ">= 0.4" } - duplexer@0.1.2: - resolution: - { - integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==, - } - eastasianwidth@0.2.0: resolution: { integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==, } - ee-first@1.1.1: - resolution: - { - integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==, - } - effect@3.21.2: resolution: { @@ -10439,19 +8728,6 @@ packages: integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==, } - encodeurl@2.0.0: - resolution: - { - integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==, - } - engines: { node: ">= 0.8" } - - encoding-sniffer@0.2.1: - resolution: - { - integrity: sha512-5gvq20T6vfpekVtqrYQsSCFZ1wEg5+wW0/QaZMWkFr6BqD3NfKs0rLCx4rrVlSWJeZb5NBJgVLswK/w2MWU+Gw==, - } - end-of-stream@1.4.5: resolution: { @@ -10484,13 +8760,6 @@ packages: integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==, } - entities@4.5.0: - resolution: - { - integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==, - } - engines: { node: ">=0.12" } - entities@6.0.1: resolution: { @@ -10518,12 +8787,6 @@ packages: integrity: sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==, } - error-stack-parser-es@1.0.5: - resolution: - { - integrity: sha512-5qucVt2XcuGMcEGgWI7i+yZpmpByQ8J1lHhcL7PwqCwu9FPP3VUXzT4ltHe5i2z9dePwEHcDVOAfSnHsOlCXRA==, - } - es-define-property@1.0.1: resolution: { @@ -10586,14 +8849,6 @@ packages: engines: { node: ">=12" } hasBin: true - esbuild@0.20.2: - resolution: - { - integrity: sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==, - } - engines: { node: ">=12" } - hasBin: true - esbuild@0.25.12: resolution: { @@ -10610,14 +8865,6 @@ packages: engines: { node: ">=18" } hasBin: true - esbuild@0.28.0: - resolution: - { - integrity: sha512-sNR9MHpXSUV/XB4zmsFKN+QgVG82Cc7+/aaxJ8Adi8hyOac+EXptIp45QBPaVyX3N70664wRbTcLTOemCAnyqw==, - } - engines: { node: ">=18" } - hasBin: true - escalade@3.2.0: resolution: { @@ -10652,13 +8899,6 @@ packages: } engines: { node: ">=10" } - escape-string-regexp@5.0.0: - resolution: - { - integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==, - } - engines: { node: ">=12" } - eslint-config-prettier@10.1.8: resolution: { @@ -10838,20 +9078,6 @@ packages: } engines: { node: ">=0.10.0" } - etag@1.8.1: - resolution: - { - integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==, - } - engines: { node: ">= 0.6" } - - event-target-shim@5.0.1: - resolution: - { - integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==, - } - engines: { node: ">=6" } - eventemitter3@4.0.7: resolution: { @@ -10864,12 +9090,6 @@ packages: integrity: sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==, } - events-universal@1.0.1: - resolution: - { - integrity: sha512-LUd5euvbMLpwOF8m6ivPCbhQeSiYVNb8Vs0fQ8QjXo0JTkEHpz8pxdQf0gStltaPpw0Cca8b39KxvK9cfKRiAw==, - } - events@3.3.0: resolution: { @@ -10884,13 +9104,6 @@ packages: } engines: { node: ">=10" } - execa@8.0.1: - resolution: - { - integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==, - } - engines: { node: ">=16.17" } - execa@9.4.1: resolution: { @@ -10940,12 +9153,6 @@ packages: } engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 } - exsolve@1.0.8: - resolution: - { - integrity: sha512-LmDxfWXwcTArk8fUEnOfSZpHOJ6zOMUJKOtFLFqJLoKJetuQG874Uc7/Kki7zFLzYybmZhp1M7+98pfMqeX8yA==, - } - external-editor@3.1.0: resolution: { @@ -10980,19 +9187,6 @@ packages: integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==, } - fast-fifo@1.3.2: - resolution: - { - integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==, - } - - fast-glob@3.3.3: - resolution: - { - integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==, - } - engines: { node: ">=8.6.0" } - fast-json-stable-stringify@2.1.0: resolution: { @@ -11035,12 +9229,6 @@ packages: integrity: sha512-rLV8JHxTyhVmFYhBJuMujcrHqOT2cnO5Zxj37qROj23CP39GXubJRBUFF0z8KFK77Uc0SukZUf7JZhsVEQ6n8w==, } - fastq@1.20.1: - resolution: - { - integrity: sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==, - } - fb-watchman@2.0.2: resolution: { @@ -11059,12 +9247,6 @@ packages: picomatch: optional: true - fetchdts@0.1.7: - resolution: - { - integrity: sha512-YoZjBdafyLIop9lSxXVI33oLD5kN31q4Td+CasofLLYeLXRFeOsuOw0Uo+XNRi9PZlbfdlN2GmRtm4tCEQ9/KA==, - } - figures@6.1.0: resolution: { @@ -11086,12 +9268,6 @@ packages: } engines: { node: ">=20" } - file-uri-to-path@1.0.0: - resolution: - { - integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==, - } - file-url@4.0.0: resolution: { @@ -11225,20 +9401,6 @@ packages: integrity: sha512-alTFZZQDKMporBH77856pXgzhEzaUVmLCDk+egLgIgHst3Tpndzz8MnKe+GzRJRfvVdn69HhpW7cmXzvtLvJAw==, } - fresh@0.5.2: - resolution: - { - integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==, - } - engines: { node: ">= 0.6" } - - fresh@2.0.0: - resolution: - { - integrity: sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==, - } - engines: { node: ">= 0.8" } - fromentries@1.3.2: resolution: { @@ -11322,12 +9484,6 @@ packages: } engines: { node: ">=8.0.0" } - get-port-please@3.2.0: - resolution: - { - integrity: sha512-I9QVvBw5U/hw3RmWpYKRumUeaDgxTPd401x364rLmWBJcOQ753eov1eTgzDqRG9bqFIfDc7gfzcQEWrUri3o1A==, - } - get-proto@1.0.1: resolution: { @@ -11342,13 +9498,6 @@ packages: } engines: { node: ">=10" } - get-stream@8.0.1: - resolution: - { - integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==, - } - engines: { node: ">=16" } - get-stream@9.0.1: resolution: { @@ -11368,13 +9517,6 @@ packages: integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==, } - giget@3.2.0: - resolution: - { - integrity: sha512-GvHTWcykIR/fP8cj8dMpuMMkvaeJfPvYnhq0oW+chSeIr+ldX21ifU2Ms6KBoyKZQZmVaUAAhQ2EZ68KJF8a7A==, - } - hasBin: true - glob-parent@5.1.2: resolution: { @@ -11445,13 +9587,6 @@ packages: } engines: { node: ">=18" } - globby@16.2.0: - resolution: - { - integrity: sha512-QrJia2qDf5BB/V6HYlDTs0I0lBahyjLzpGQg3KT7FnCdTonAyPy2RtY802m2k4ALx6Dp752f82WsOczEVr3l6Q==, - } - engines: { node: ">=20" } - gopd@1.2.0: resolution: { @@ -11496,38 +9631,6 @@ packages: } engines: { node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0 } - gzip-size@7.0.0: - resolution: - { - integrity: sha512-O1Ld7Dr+nqPnmGpdhzLmMTQ4vAsD+rHwMm1NLUmoUFFymBOMKxCCrtDxqdBRYXdeEPEi3SyoR4TizJLQrnKBNA==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } - - h3@1.13.0: - resolution: - { - integrity: sha512-vFEAu/yf8UMUcB4s43OaDaigcqpQd14yanmOsn+NcRX3/guSKncyE2rOYhq8RIchgJrPSs/QiIddnTTR1ddiAg==, - } - - h3@1.15.11: - resolution: - { - integrity: sha512-L3THSe2MPeBwgIZVSH5zLdBBU90TOxarvhK9d04IDY2AmVS8j2Jz2LIWtwsGOU3lu2I5jCN7FNvVfY2+XyF+mg==, - } - - h3@2.0.1-rc.20: - resolution: - { - integrity: sha512-28ljodXuUp0fZovdiSRq4G9OgrxCztrJe5VdYzXAB7ueRvI7pIUqLU14Xi3XqdYJ/khXjfpUOOD2EQa6CmBgsg==, - } - engines: { node: ">=20.11.1" } - hasBin: true - peerDependencies: - crossws: ^0.4.1 - peerDependenciesMeta: - crossws: - optional: true - happy-dom@20.8.9: resolution: { @@ -11609,12 +9712,6 @@ packages: } engines: { node: ">=0.10.0" } - hookable@5.5.3: - resolution: - { - integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==, - } - html-encoding-sniffer@3.0.0: resolution: { @@ -11635,25 +9732,12 @@ packages: integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==, } - htmlparser2@10.1.0: - resolution: - { - integrity: sha512-VTZkM9GWRAtEpveh7MSF6SjjrpNVNNVJfFup7xTY3UpFtm67foy9HDVXneLtFVt4pMz5kZtgNcvCniNFb1hlEQ==, - } - htmlparser2@3.10.1: resolution: { integrity: sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==, } - http-errors@2.0.1: - resolution: - { - integrity: sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==, - } - engines: { node: ">= 0.8" } - http-proxy-agent@7.0.2: resolution: { @@ -11676,13 +9760,6 @@ packages: engines: { node: ">=12" } hasBin: true - http-shutdown@1.2.2: - resolution: - { - integrity: sha512-S9wWkJ/VSY9/k4qcjG318bqJNruzE4HySUhFYknwmu6LBP97KLLfwNf+n4V1BHurvFNkSKLFnK/RsuUnRTf9Vw==, - } - engines: { iojs: ">= 1.0.0", node: ">= 0.12.0" } - http-status@2.1.0: resolution: { @@ -11704,12 +9781,6 @@ packages: } engines: { node: ">= 14" } - httpxy@0.5.2: - resolution: - { - integrity: sha512-C5OM92bmywDDdKTuYCGejdNFAb/zy0LX4srimOudYko847HvoWL2Eeik9odh9friPKu/JrlWv4z/amrJoxq2Cg==, - } - human-signals@2.1.0: resolution: { @@ -11717,13 +9788,6 @@ packages: } engines: { node: ">=10.17.0" } - human-signals@5.0.0: - resolution: - { - integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==, - } - engines: { node: ">=16.17.0" } - human-signals@8.0.1: resolution: { @@ -11834,12 +9898,6 @@ packages: engines: { node: ">=8" } hasBin: true - import-meta-resolve@4.2.0: - resolution: - { - integrity: sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg==, - } - imurmurhash@0.1.4: resolution: { @@ -11902,12 +9960,6 @@ packages: } engines: { node: ">= 10" } - iron-webcrypto@1.2.1: - resolution: - { - integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==, - } - is-alphabetical@2.0.1: resolution: { @@ -11980,14 +10032,6 @@ packages: engines: { node: ">=8" } hasBin: true - is-docker@3.0.0: - resolution: - { - integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } - hasBin: true - is-extglob@2.1.1: resolution: { @@ -12036,27 +10080,6 @@ packages: integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==, } - is-in-ssh@1.0.0: - resolution: - { - integrity: sha512-jYa6Q9rH90kR1vKB6NM7qqd1mge3Fx4Dhw5TVlK1MUBqhEOuCagrEHMevNuCcbECmXZ0ThXkRm+Ymr51HwEPAw==, - } - engines: { node: ">=20" } - - is-inside-container@1.0.0: - resolution: - { - integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==, - } - engines: { node: ">=14.16" } - hasBin: true - - is-module@1.0.0: - resolution: - { - integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==, - } - is-number@7.0.0: resolution: { @@ -12064,13 +10087,6 @@ packages: } engines: { node: ">=0.12.0" } - is-path-inside@4.0.0: - resolution: - { - integrity: sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA==, - } - engines: { node: ">=12" } - is-plain-obj@4.1.0: resolution: { @@ -12104,13 +10120,6 @@ packages: } engines: { node: ">=8" } - is-stream@3.0.0: - resolution: - { - integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } - is-stream@4.0.1: resolution: { @@ -12166,46 +10175,12 @@ packages: } engines: { node: ">=8" } - is-wsl@3.1.1: - resolution: - { - integrity: sha512-e6rvdUCiQCAuumZslxRJWR/Doq4VpPR82kqclvcS0efgt430SlGIk05vdCN58+VrzgtIcfNODjozVielycD4Sw==, - } - engines: { node: ">=16" } - - is64bit@2.0.0: - resolution: - { - integrity: sha512-jv+8jaWCl0g2lSBkNSVXdzfBA0npK1HGC2KtWM9FumFRoGS94g3NbCCLVnCYHLjp4GrW2KZeeSTMo5ddtznmGw==, - } - engines: { node: ">=18" } - - isarray@1.0.0: - resolution: - { - integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==, - } - - isbot@5.1.37: - resolution: - { - integrity: sha512-5bcicX81xf6NlTEV8rWdg7Pk01LFizDetuYGHx6d/f6y3lR2/oo8IfxjzJqn1UdDEyCcwT9e7NRloj8DwCYujQ==, - } - engines: { node: ">=18" } - isexe@2.0.0: resolution: { integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==, } - isexe@3.1.5: - resolution: - { - integrity: sha512-6B3tLtFqtQS4ekarvLVMZ+X+VlvQekbe4taUkf/rhVO3d/h0M2rfARm/pXLcPEsjjMsFgrFgSrhQIxcSVrBz8w==, - } - engines: { node: ">=18" } - isomorphic.js@0.2.5: resolution: { @@ -12606,13 +10581,6 @@ packages: node-notifier: optional: true - jiti@1.21.7: - resolution: - { - integrity: sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==, - } - hasBin: true - jiti@2.6.1: resolution: { @@ -12677,13 +10645,6 @@ packages: integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==, } - js-yaml@3.14.1: - resolution: - { - integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==, - } - hasBin: true - js-yaml@3.14.2: resolution: { @@ -12797,39 +10758,12 @@ packages: } engines: { node: ">=6" } - kleur@4.1.5: - resolution: - { - integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==, - } - engines: { node: ">=6" } - - klona@2.0.6: - resolution: - { - integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==, - } - engines: { node: ">= 8" } - - knitwork@1.3.0: - resolution: - { - integrity: sha512-4LqMNoONzR43B1W0ek0fhXMsDNW/zxa1NdFAVMY+k28pgZLovR4G3PB5MrpTxCy1QaZCqNoiaKPr5w5qZHfSNw==, - } - kubernetes-types@1.30.0: resolution: { integrity: sha512-Dew1okvhM/SQcIa2rcgujNndZwU8VnSapDgdxlYoB84ZlpAD43U6KLAFqYo17ykSFGHNPrg0qry0bP+GJd9v7Q==, } - lazystream@1.0.1: - resolution: - { - integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==, - } - engines: { node: ">= 0.6.3" } - leven@3.1.0: resolution: { @@ -12978,13 +10912,6 @@ packages: engines: { node: ">=20.17" } hasBin: true - listhen@1.10.0: - resolution: - { - integrity: sha512-kfz4C0OrC6IpaVMtYDJtf6PFjurxe9NBBoDAh/o2p587INryFOO4DQ9OetbCdDrWFt1m1CJKvYrzkGsuPHw8nQ==, - } - hasBin: true - listr2@9.0.5: resolution: { @@ -12999,13 +10926,6 @@ packages: } engines: { node: ">=6.11.5" } - local-pkg@1.2.0: - resolution: - { - integrity: sha512-U16tFsiwNEac4GuqQ/SmG3ayjPIT1YKmiFeH4x9NaHTZwYbSqmEhf9POmzJu6NdUDDVjaE7n1WQQLjymYYFx+Q==, - } - engines: { node: ">=14" } - locate-path@5.0.0: resolution: { @@ -13146,12 +11066,6 @@ packages: integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==, } - magicast@0.5.3: - resolution: - { - integrity: sha512-pVKE4UdSQ7DvHzivsCIFx2BJn1mHG6KsyrFcaxFx6tONdneEuThrDx0Cj3AMg58KyN4pzYT+LHOotxDQDjNvkw==, - } - make-dir@3.1.0: resolution: { @@ -13247,13 +11161,6 @@ packages: integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==, } - merge2@1.4.1: - resolution: - { - integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==, - } - engines: { node: ">= 8" } - micromark-core-commonmark@2.0.3: resolution: { @@ -13405,13 +11312,6 @@ packages: } engines: { node: ">=8.6" } - micromatch@4.0.8: - resolution: - { - integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==, - } - engines: { node: ">=8.6" } - mime-db@1.52.0: resolution: { @@ -13433,13 +11333,6 @@ packages: } engines: { node: ">= 0.6" } - mime-types@3.0.2: - resolution: - { - integrity: sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==, - } - engines: { node: ">=18" } - mime@1.6.0: resolution: { @@ -13456,14 +11349,6 @@ packages: engines: { node: ">=10.0.0" } hasBin: true - mime@4.1.0: - resolution: - { - integrity: sha512-X5ju04+cAzsojXKes0B/S4tcYtFAJ6tTMuSPBEn9CPGlrWr8Fiw7qYeLT0XyH80HSoAoqWCaz+MWKh22P7G1cw==, - } - engines: { node: ">=16" } - hasBin: true - mimic-fn@2.1.0: resolution: { @@ -13471,13 +11356,6 @@ packages: } engines: { node: ">=6" } - mimic-fn@4.0.0: - resolution: - { - integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==, - } - engines: { node: ">=12" } - mimic-function@5.0.1: resolution: { @@ -13511,13 +11389,6 @@ packages: integrity: sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==, } - minimatch@5.1.9: - resolution: - { - integrity: sha512-7o1wEA2RyMP7Iu7GNba9vc0RWWGACJOCZBJX2GJWip0ikV+wcOsgVuY9uE8CPiyQhkGFSlhuSkZPavN7u1c2Fw==, - } - engines: { node: ">=10" } - minimatch@9.0.9: resolution: { @@ -13538,13 +11409,6 @@ packages: } engines: { node: ">=16 || 14 >=14.17" } - minizlib@3.1.0: - resolution: - { - integrity: sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==, - } - engines: { node: ">= 18" } - mkdirp@1.0.4: resolution: { @@ -13553,12 +11417,6 @@ packages: engines: { node: ">=10" } hasBin: true - mlly@1.8.2: - resolution: - { - integrity: sha512-d+ObxMQFmbt10sretNDytwt85VrbkhhUA/JBGm1MPaWJ65Cl4wOgLaB1NYvJSZ0Ef03MMEU/0xpPMXUIQ29UfA==, - } - module-details-from-path@1.0.4: resolution: { @@ -13571,12 +11429,6 @@ packages: integrity: sha512-jz4x+TJNFHwHtwuV9vA9rMujcZRb0CEilTEwG2rRSpe/A7Jdkuj8xPKttCgOh+v/lkHy7HsZ64oj+q3xoAFl9A==, } - ms@2.0.0: - resolution: - { - integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==, - } - ms@2.1.3: resolution: { @@ -13710,31 +11562,12 @@ packages: sass: optional: true - nitropack@2.13.4: - resolution: - { - integrity: sha512-tX7bT6zxNeMwkc6hxHiZeUoTOjVrcjoh1Z3cmxOlodIqjl4HISgqfGOmkWSayky3Nv9Z5+KQH52F8nmXJY5AAA==, - } - engines: { node: ^20.19.0 || >=22.12.0 } - hasBin: true - peerDependencies: - xml2js: ^0.6.2 - peerDependenciesMeta: - xml2js: - optional: true - node-addon-api@7.1.1: resolution: { integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==, } - node-fetch-native@1.6.7: - resolution: - { - integrity: sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==, - } - node-fetch@2.7.0: resolution: { @@ -13747,13 +11580,6 @@ packages: encoding: optional: true - node-forge@1.4.0: - resolution: - { - integrity: sha512-LarFH0+6VfriEhqMMcLX2F7SwSXeWwnEAJEsYm5QKWchiVYVvJyV9v7UDvUv+w5HO23ZpQTXDv/GxdDdMyOuoQ==, - } - engines: { node: ">= 6.13.0" } - node-gyp-build-optional-packages@5.2.2: resolution: { @@ -13761,25 +11587,12 @@ packages: } hasBin: true - node-gyp-build@4.8.4: - resolution: - { - integrity: sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==, - } - hasBin: true - node-int64@0.4.0: resolution: { integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==, } - node-mock-http@1.0.4: - resolution: - { - integrity: sha512-8DY+kFsDkNXy1sJglUfuODx1/opAGJGyrTuFqEoN90oRc2Vk0ZbD4K2qmKXBBEhZQzdKHIVfEJpDU8Ak2NJEvQ==, - } - node-preload@0.2.1: resolution: { @@ -13793,14 +11606,6 @@ packages: integrity: sha512-1h5gKZCF+pO/o3Iqt5Jp7wc9rH3eJJ0+nh/CIoiRwjRxde/hAHyLPXYN4V3CqKAbiZPSeJFSWHmJsbkicta0Eg==, } - nopt@8.1.0: - resolution: - { - integrity: sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A==, - } - engines: { node: ^18.17.0 || >=20.5.0 } - hasBin: true - normalize-path@3.0.0: resolution: { @@ -13815,13 +11620,6 @@ packages: } engines: { node: ">=8" } - npm-run-path@5.3.0: - resolution: - { - integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } - npm-run-path@6.0.0: resolution: { @@ -13829,12 +11627,6 @@ packages: } engines: { node: ">=18" } - nth-check@2.1.1: - resolution: - { - integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==, - } - nwsapi@2.2.23: resolution: { @@ -13875,24 +11667,6 @@ packages: integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==, } - ofetch@1.5.1: - resolution: - { - integrity: sha512-2W4oUZlVaqAPAil6FUg/difl6YhqhUR7x2eZY4bQCko22UXg3hptq9KLQdqFClV+Wu85UX7hNtdGTngi/1BxcA==, - } - - ohash@1.1.6: - resolution: - { - integrity: sha512-TBu7PtV8YkAZn0tSxobKY2n2aAQva936lhRrj6957aDaCf9IEtqsKbgMzXE/F/sjqYOwmrukeORHNLe5glk7Cg==, - } - - ohash@2.0.11: - resolution: - { - integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==, - } - on-exit-leak-free@2.1.2: resolution: { @@ -13900,13 +11674,6 @@ packages: } engines: { node: ">=14.0.0" } - on-finished@2.4.1: - resolution: - { - integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==, - } - engines: { node: ">= 0.8" } - once@1.4.0: resolution: { @@ -13920,13 +11687,6 @@ packages: } engines: { node: ">=6" } - onetime@6.0.0: - resolution: - { - integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==, - } - engines: { node: ">=12" } - onetime@7.0.0: resolution: { @@ -13934,13 +11694,6 @@ packages: } engines: { node: ">=18" } - open@11.0.0: - resolution: - { - integrity: sha512-smsWv2LzFjP03xmvFoJ331ss6h+jixfA4UUV/Bsiyuu4YJPfN+FIQGOIiv4w9/+MoHkfkJ22UIaQWRVFRfH6Vw==, - } - engines: { node: ">=20" } - open@8.4.2: resolution: { @@ -14065,31 +11818,12 @@ packages: } engines: { node: ">=0.10.0" } - 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==, } - parseurl@1.3.3: - resolution: - { - integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==, - } - engines: { node: ">= 0.8" } - path-exists@4.0.0: resolution: { @@ -14151,12 +11885,6 @@ packages: } engines: { node: ">=8" } - pathe@1.1.2: - resolution: - { - integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==, - } - pathe@2.0.3: resolution: { @@ -14180,12 +11908,6 @@ packages: peerDependencies: graphql: ^16.8.1 - perfect-debounce@2.1.0: - resolution: - { - integrity: sha512-LjgdTytVFXeUgtHZr9WYViYSM/g8MkcTPYDlPa3cDqMirHjKiSZPYd6DoL7pK8AJQr+uWkQvCjHNdiMqsrJs+g==, - } - pg-cloudflare@1.3.0: resolution: { @@ -14318,18 +12040,6 @@ packages: } engines: { node: ">=8" } - pkg-types@1.3.1: - resolution: - { - integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==, - } - - pkg-types@2.3.1: - resolution: - { - integrity: sha512-y+ichcgc2LrADuhLNAx8DFjVfgz91pRxfZdI3UDhxHvcVEZsenLO+7XaU5vOp0u/7V/wZ+plyuQxtrDlZJ+yeg==, - } - playwright-core@1.59.1: resolution: { @@ -14457,13 +12167,6 @@ packages: integrity: sha512-i/hbxIE9803Alj/6ytL7UHQxRvZkI9O4Sy+J3HGc4F4oo/2eQAjTSNJ0bfxyse3bH0nuVesCk+3IRLaMtG3H6w==, } - powershell-utils@0.1.0: - resolution: - { - integrity: sha512-dM0jVuXJPsDN6DvRpea484tCUaMiXWjuCn++HGTqUWzGDjv5tZkEZldAJ/UMlqRYGFrD/etByo4/xOuC/snX2A==, - } - engines: { node: ">=20" } - prelude-ls@1.2.1: resolution: { @@ -14479,13 +12182,6 @@ packages: engines: { node: ">=14" } hasBin: true - pretty-bytes@7.1.0: - resolution: - { - integrity: sha512-nODzvTiYVRGRqAOvE84Vk5JDPyyxsVk0/fbA/bq7RqlnhksGpset09XTxbpvLTIjoaF7K8Z8DG8yHtKGTPSYRw==, - } - engines: { node: ">=20" } - pretty-format@27.5.1: resolution: { @@ -14521,12 +12217,6 @@ packages: } engines: { node: ">=6" } - process-nextick-args@2.0.1: - resolution: - { - integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==, - } - process-on-spawn@1.1.0: resolution: { @@ -14620,30 +12310,12 @@ packages: } engines: { node: ">=0.6" } - quansync@1.0.0: - resolution: - { - integrity: sha512-5xZacEEufv3HSTPQuchrvV6soaiACMFnq1H8wkVioctoH3TRha9Sz66lOxRwPK/qZj7HPiSveih9yAyh98gvqA==, - } - - queue-microtask@1.2.3: - resolution: - { - integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==, - } - quick-format-unescaped@4.0.4: resolution: { integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==, } - radix3@1.1.2: - resolution: - { - integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==, - } - range-parser@1.2.1: resolution: { @@ -14651,12 +12323,6 @@ packages: } engines: { node: ">= 0.6" } - rc9@3.0.1: - resolution: - { - integrity: sha512-gMDyleLWVE+i6Sgtc0QbbY6pEKqYs97NGi6isHQPqYlLemPoO8dxQ3uGi0f4NiP98c+jMW6cG1Kx9dDwfvqARQ==, - } - react-datepicker@7.6.0: resolution: { @@ -14737,13 +12403,6 @@ packages: integrity: sha512-XjBR15BhXuylgWGuslhDKqlSayuqvqBX91BP8pauG8kd1zY8kotkNWbXksTCNRarse4kuGbe2kIY05ARtwNIvw==, } - react-refresh@0.17.0: - resolution: - { - integrity: sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==, - } - engines: { node: ">=0.10.0" } - react-select@5.9.0: resolution: { @@ -14769,12 +12428,6 @@ packages: } engines: { node: ">=0.10.0" } - readable-stream@2.3.8: - resolution: - { - integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==, - } - readable-stream@3.6.2: resolution: { @@ -14782,19 +12435,6 @@ packages: } engines: { node: ">= 6" } - readable-stream@4.7.0: - resolution: - { - integrity: sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } - - readdir-glob@1.1.3: - resolution: - { - integrity: sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==, - } - readdirp@3.6.0: resolution: { @@ -14809,13 +12449,6 @@ packages: } engines: { node: ">= 14.18.0" } - readdirp@5.0.0: - resolution: - { - integrity: sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==, - } - engines: { node: ">= 20.19.0" } - real-require@0.2.0: resolution: { @@ -14960,13 +12593,6 @@ packages: } engines: { node: ">=18" } - reusify@1.1.0: - resolution: - { - integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==, - } - engines: { iojs: ">=1.0.0", node: ">=0.10.0" } - rfdc@1.4.1: resolution: { @@ -14981,22 +12607,6 @@ packages: deprecated: Rimraf versions prior to v4 are no longer supported hasBin: true - rollup-plugin-visualizer@7.0.1: - resolution: - { - integrity: sha512-UJUT4+1Ho4OcWmPYU3sYXgUqI8B8Ayfe06MX7y0qCJ1K8aGoKtR/NDd/2nZqM7ADkrzny+I99Ul7GgyoiVNAgg==, - } - engines: { node: ">=22" } - hasBin: true - peerDependencies: - rolldown: 1.x || ^1.0.0-beta || ^1.0.0-rc - rollup: 2.x || 3.x || 4.x - peerDependenciesMeta: - rolldown: - optional: true - rollup: - optional: true - rollup@4.60.1: resolution: { @@ -15013,12 +12623,6 @@ packages: engines: { node: ">=18.0.0", npm: ">=8.0.0" } hasBin: true - rou3@0.8.1: - resolution: - { - integrity: sha512-ePa+XGk00/3HuCqrEnK3LxJW7I0SdNg6EFzKUJG73hMAdDcOUC/i/aSz7LSDwLrGr33kal/rqOGydzwl6U7zBA==, - } - rrweb-cssom@0.7.1: resolution: { @@ -15031,19 +12635,6 @@ packages: integrity: sha512-guoltQEx+9aMf2gDZ0s62EcV8lsXR+0w8915TC3ITdn2YueuNjdAYh/levpU9nFaoChh9RUS5ZdQMrKfVEN9tw==, } - run-applescript@7.1.0: - resolution: - { - integrity: sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q==, - } - engines: { node: ">=18" } - - run-parallel@1.2.0: - resolution: - { - integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==, - } - rxjs@7.8.2: resolution: { @@ -15130,12 +12721,6 @@ packages: } engines: { node: ">= 10.13.0" } - scule@1.3.0: - resolution: - { - integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==, - } - secure-compare@3.0.1: resolution: { @@ -15171,79 +12756,6 @@ packages: engines: { node: ">=10" } hasBin: true - send@0.19.2: - resolution: - { - integrity: sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg==, - } - engines: { node: ">= 0.8.0" } - - send@1.2.1: - resolution: - { - integrity: sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ==, - } - engines: { node: ">= 18" } - - serialize-javascript@7.0.5: - resolution: - { - integrity: sha512-F4LcB0UqUl1zErq+1nYEEzSHJnIwb3AF2XWB94b+afhrekOUijwooAYqFyRbjYkm2PAKBabx6oYv/xDxNi8IBw==, - } - engines: { node: ">=20.0.0" } - - seroval-plugins@1.5.2: - resolution: - { - integrity: sha512-qpY0Cl+fKYFn4GOf3cMiq6l72CpuVaawb6ILjubOQ+diJ54LfOWaSSPsaswN8DRPIPW4Yq+tE1k5aKd7ILyaFg==, - } - engines: { node: ">=10" } - peerDependencies: - seroval: ^1.0 - - seroval-plugins@1.5.4: - resolution: - { - integrity: sha512-S0xQPhUTefAhNvNWFg0c1J8qJArHt5KdtJ/cFAofo06KD1MVSeFWyl4iiu+ApDIuw0WhjpOfCdgConOfAnLgkw==, - } - engines: { node: ">=10" } - peerDependencies: - seroval: ^1.0 - - seroval@1.5.2: - resolution: - { - integrity: sha512-xcRN39BdsnO9Tf+VzsE7b3JyTJASItIV1FVFewJKCFcW4s4haIKS3e6vj8PGB9qBwC7tnuOywQMdv5N4qkzi7Q==, - } - engines: { node: ">=10" } - - seroval@1.5.4: - resolution: - { - integrity: sha512-46uFvgrXTVxZcUorgSSRZ4y+ieqLLQRMlG4bnCZKW3qI6BZm7Rg4ntMW4p1mILEEBZWrFlcpp0AyIIlM6jD9iw==, - } - engines: { node: ">=10" } - - serve-placeholder@2.0.2: - resolution: - { - integrity: sha512-/TMG8SboeiQbZJWRlfTCqMs2DD3SZgWp0kDQePz9yUuCnDfDh/92gf7/PxGhzXTKBIPASIHxFcZndoNbp6QOLQ==, - } - - serve-static@1.16.3: - resolution: - { - integrity: sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA==, - } - engines: { node: ">= 0.8.0" } - - serve-static@2.2.1: - resolution: - { - integrity: sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw==, - } - engines: { node: ">= 18" } - set-blocking@2.0.0: resolution: { @@ -15257,12 +12769,6 @@ packages: } engines: { node: ">= 0.4" } - setprototypeof@1.2.0: - resolution: - { - integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==, - } - sharp@0.33.5: resolution: { @@ -15397,13 +12903,6 @@ packages: } engines: { node: ">=20" } - smob@1.6.2: - resolution: - { - integrity: sha512-RQsvleCbF8cVHEv+xuDGaA4pOizFqJ0GgjtMSRo6oP8pnN7WsigHgVGey6aILRBKv4W2YOMHLqbKdnB6hpB9fw==, - } - engines: { node: ">=20.0.0" } - sonic-boom@4.2.1: resolution: { @@ -15485,14 +12984,6 @@ packages: integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==, } - srvx@0.11.15: - resolution: - { - integrity: sha512-iXsux0UcOjdvs0LCMa2Ws3WwcDUozA3JN3BquNXkaFPP7TpRqgunKdEgoZ/uwb1J6xaYHfxtz9Twlh6yzwM6Tg==, - } - engines: { node: ">=20.16.0" } - hasBin: true - stack-utils@2.0.6: resolution: { @@ -15525,25 +13016,12 @@ packages: integrity: sha512-HTEHMNieakEnoe33shBYcZ7NX83ACUjCu8c40iOGEZsngj9zRnkqS9j1pqQPXwobB0ZcVTk27REb7COQ0UR59w==, } - statuses@2.0.2: - resolution: - { - integrity: sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==, - } - engines: { node: ">= 0.8" } - std-env@3.10.0: resolution: { integrity: sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==, } - std-env@4.1.0: - resolution: - { - integrity: sha512-Rq7ybcX2RuC55r9oaPVEW7/xu3tj8u4GeBYHBWCychFtzMIr86A7e3PPEBPT37sHStKX3+TiX/Fr/ACmJLVlLQ==, - } - storybook@8.6.18: resolution: { @@ -15563,12 +13041,6 @@ packages: } engines: { node: ">=10.0.0" } - streamx@2.25.0: - resolution: - { - integrity: sha512-0nQuG6jf1w+wddNEEXCF4nTg3LtufWINB5eFEN+5TNZW7KWJp6x87+JFL43vaAUPyCfH1wID+mNVyW6OHtFamg==, - } - string-argv@0.3.2: resolution: { @@ -15618,12 +13090,6 @@ packages: } engines: { node: ">=20" } - string_decoder@1.1.1: - resolution: - { - integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==, - } - string_decoder@1.3.0: resolution: { @@ -15671,13 +13137,6 @@ packages: } engines: { node: ">=6" } - strip-final-newline@3.0.0: - resolution: - { - integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==, - } - engines: { node: ">=12" } - strip-final-newline@4.0.0: resolution: { @@ -15755,13 +13214,6 @@ packages: } engines: { node: ">=16" } - supports-color@10.2.2: - resolution: - { - integrity: sha512-SS+jx45GF1QjgEXQx4NJZV9ImqmO2NPz5FNsIHrsDjh2YsHnawpan7SNQ1o8NuhrbHZy9AZhIoCUiCeaW/C80g==, - } - engines: { node: ">=18" } - supports-color@5.5.0: resolution: { @@ -15796,26 +13248,12 @@ packages: integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==, } - system-architecture@0.1.0: - resolution: - { - integrity: sha512-ulAk51I9UVUyJgxlv9M6lFot2WP3e7t8Kz9+IS6D4rVba1tR9kON+Ey69f+1R4Q8cd45Lod6a4IcJIxnzGc/zA==, - } - engines: { node: ">=18" } - tabbable@6.4.0: resolution: { integrity: sha512-05PUHKSNE8ou2dwIxTngl4EzcnsCDZGJ/iCLtDflR/SHB/ny14rXc+qU5P4mG9JkusiV7EivzY9Mhm55AzAvCg==, } - tagged-tag@1.0.0: - resolution: - { - integrity: sha512-yEFYrVhod+hdNyx7g5Bnkkb0G6si8HJurOoOEgC8B/O0uXLHlaey/65KRv6cuWBNhBgHKAROVpc7QyYqE5gFng==, - } - engines: { node: ">=20" } - tailwind-merge@3.6.0: resolution: { @@ -15848,25 +13286,6 @@ packages: } engines: { node: ">=6" } - tar-stream@3.2.0: - resolution: - { - integrity: sha512-ojzvCvVaNp6aOTFmG7jaRD0meowIAuPc3cMMhSgKiVWws1GyHbGd/xvnyuRKcKlMpt3qvxx6r0hreCNITP9hIg==, - } - - tar@7.5.15: - resolution: - { - integrity: sha512-dzGK0boVlC4W5QFuQN1EFSl3bIDYsk7Tj40U6eIBnK2k/8ml7TZ5agbI5j5+qnoVcAA+rNtBml8SEiLxZpNqRQ==, - } - engines: { node: ">=18" } - - teex@1.0.1: - resolution: - { - integrity: sha512-eYE6iEI62Ni1H8oIa7KlDU6uQBtqr4Eajni3wX7rpfXD8ysFx8z0+dri+KWEPWpBsxXfxu58x/0jvTVT1ekOSg==, - } - terser-webpack-plugin@5.5.0: resolution: { @@ -15908,12 +13327,6 @@ packages: } engines: { node: ">=18" } - text-decoder@1.2.7: - resolution: - { - integrity: sha512-vlLytXkeP4xvEq2otHeJfSQIRyWxo/oZGEbXrtEEF9Hnmrdly59sUbzZ/QgyWuLYHctCHxFF4tRQZNQ9k60ExQ==, - } - thread-stream@3.1.0: resolution: { @@ -15926,25 +13339,12 @@ packages: integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==, } - tiny-warning@1.0.3: - resolution: - { - integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==, - } - tinybench@2.9.0: resolution: { integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==, } - tinyclip@0.1.12: - resolution: - { - integrity: sha512-Ae3OVUqifDw0wBriIBS7yVaW44Dp6eSHQcyq4Igc7eN2TJH/2YsicswaW+J/OuMvhpDPOKEgpAZCjkb4hpoyeA==, - } - engines: { node: ^16.14.0 || >= 17.3.0 } - tinyexec@0.3.2: resolution: { @@ -15965,13 +13365,6 @@ packages: } 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: { @@ -16044,13 +13437,6 @@ packages: integrity: sha512-rLdvwXZ39VOn1IxGL3V6ZstoTbwLRckQmn/U8ZDLuWwIXNpuZDhQ3AiRUlhTbOXFVE9C+dR51wM0CBDhk31VcA==, } - toidentifier@1.0.1: - resolution: - { - integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==, - } - engines: { node: ">=0.6" } - token-types@6.1.2: resolution: { @@ -16207,13 +13593,6 @@ packages: } engines: { node: ">=12.20" } - type-fest@5.6.0: - resolution: - { - integrity: sha512-8ZiHFm91orbSAe2PSAiSVBVko18pbhbiB3U9GglSzF/zCGkR+rxpHx6sEMCUm4kxY4LjDIUGgCfUMtwfZfjfUA==, - } - engines: { node: ">=20" } - typed-inject@4.0.0: resolution: { @@ -16252,12 +13631,6 @@ packages: engines: { node: ">=14.17" } hasBin: true - ufo@1.6.4: - resolution: - { - integrity: sha512-JFNbkD1Svwe0KvGi8GOeLcP4kAWQ609twvCdcHxq1oSL8svv39ZuSvajcD8B+5D0eL4+s1Is2D/O6KN3qcTeRA==, - } - uint8array-extras@1.5.0: resolution: { @@ -16265,36 +13638,12 @@ packages: } engines: { node: ">=18" } - ultrahtml@1.6.0: - resolution: - { - integrity: sha512-R9fBn90VTJrqqLDwyMph+HGne8eqY1iPfYhPzZrvKpIfwkWZbcYlfpsb8B9dTvBfpy1/hqAD7Wi8EKfP9e8zdw==, - } - - uncrypto@0.1.3: - resolution: - { - integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==, - } - - unctx@2.5.0: - resolution: - { - integrity: sha512-p+Rz9x0R7X+CYDkT+Xg8/GhpcShTlU8n+cf9OtOEf7zEQsNcCZO1dPKNRDqvUTaq+P32PMMkxWHwfrxkqfqAYg==, - } - underscore@1.13.8: resolution: { integrity: sha512-DXtD3ZtEQzc7M8m4cXotyHR+FAS18C64asBYY5vqZexfYryNNnDc02W4hKg3rdQuqOYas1jkseX0+nZXjTXnvQ==, } - undici-types@5.28.4: - resolution: - { - integrity: sha512-3OeMF5Lyowe8VW0skf5qaIE7Or3yS9LS7fvMUI0gg4YxpIBVg0L8BxCmROw2CcYhSkpR68Epz7CGc8MPj94Uww==, - } - undici-types@6.21.0: resolution: { @@ -16314,18 +13663,6 @@ packages: } engines: { node: ">=20.18.1" } - unenv@1.10.0: - resolution: - { - integrity: sha512-wY5bskBQFL9n3Eca5XnhH6KbUo/tfvkwm9OpcdCvLaeA7piBNbavbOKJySEwQ1V0RH6HvNlSAFRTpvTqgKRQXQ==, - } - - unenv@2.0.0-rc.24: - resolution: - { - integrity: sha512-i7qRCmY42zmCwnYlh9H2SvLEypEFGye5iRmEMKjcGi7zk9UquigRjFtTLz0TYqr0ZGLZhaMHl/foy1bZR+Cwlw==, - } - unicorn-magic@0.3.0: resolution: { @@ -16333,28 +13670,6 @@ packages: } engines: { node: ">=18" } - unicorn-magic@0.4.0: - resolution: - { - integrity: sha512-wH590V9VNgYH9g3lH9wWjTrUoKsjLF6sGLjhR4sH1LWpLmCOH0Zf7PukhDA8BiS7KHe4oPNkcTHqYkj7SOGUOw==, - } - engines: { node: ">=20" } - - unimport@6.3.0: - resolution: - { - integrity: sha512-M+Dxk5W9WRd+8j56W9tp8lGW/dmMc7g5zj7BWQnEjKQhryBstqsi1V0izb0zHwSkEN8cSYV7K75/bykairV2tA==, - } - engines: { node: ">=18.12.0" } - peerDependencies: - oxc-parser: "*" - rolldown: ^1.0.0 - peerDependenciesMeta: - oxc-parser: - optional: true - rolldown: - optional: true - union@0.5.0: resolution: { @@ -16392,13 +13707,6 @@ packages: integrity: sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==, } - unplugin-utils@0.3.1: - resolution: - { - integrity: sha512-5lWVjgi6vuHhJ526bI4nlCOmkCIF3nnfXkCMDeMJrtdvxTs6ZFCM8oNufGTsDbKv/tJ/xj8RpvXjRuPBZJuJog==, - } - engines: { node: ">=20.19.0" } - unplugin@1.16.1: resolution: { @@ -16406,105 +13714,6 @@ packages: } engines: { node: ">=14.0.0" } - unplugin@2.3.11: - resolution: - { - integrity: sha512-5uKD0nqiYVzlmCRs01Fhs2BdkEgBS3SAVP6ndrBsuK42iC2+JHyxM05Rm9G8+5mkmRtzMZGY8Ct5+mliZxU/Ww==, - } - engines: { node: ">=18.12.0" } - - unplugin@3.0.0: - resolution: - { - integrity: sha512-0Mqk3AT2TZCXWKdcoaufeXNukv2mTrEZExeXlHIOZXdqYoHHr4n51pymnwV8x2BOVxwXbK2HLlI7usrqMpycdg==, - } - engines: { node: ^20.19.0 || >=22.12.0 } - - unstorage@1.17.5: - resolution: - { - integrity: sha512-0i3iqvRfx29hkNntHyQvJTpf5W9dQ9ZadSoRU8+xVlhVtT7jAX57fazYO9EHvcRCfBCyi5YRya7XCDOsbTgkPg==, - } - peerDependencies: - "@azure/app-configuration": ^1.8.0 - "@azure/cosmos": ^4.2.0 - "@azure/data-tables": ^13.3.0 - "@azure/identity": ^4.6.0 - "@azure/keyvault-secrets": ^4.9.0 - "@azure/storage-blob": ^12.26.0 - "@capacitor/preferences": ^6 || ^7 || ^8 - "@deno/kv": ">=0.9.0" - "@netlify/blobs": ^6.5.0 || ^7.0.0 || ^8.1.0 || ^9.0.0 || ^10.0.0 - "@planetscale/database": ^1.19.0 - "@upstash/redis": ^1.34.3 - "@vercel/blob": ">=0.27.1" - "@vercel/functions": ^2.2.12 || ^3.0.0 - "@vercel/kv": ^1 || ^2 || ^3 - aws4fetch: ^1.0.20 - db0: ">=0.2.1" - idb-keyval: ^6.2.1 - ioredis: ^5.4.2 - uploadthing: ^7.4.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 - db0: - optional: true - idb-keyval: - optional: true - ioredis: - optional: true - uploadthing: - optional: true - - untun@0.1.3: - resolution: - { - integrity: sha512-4luGP9LMYszMRZwsvyUd9MrxgEGZdZuZgpVQHEEX0lCYFESasVRvZd0EYpCkOIbJKHMuv0LskpXc/8Un+MJzEQ==, - } - hasBin: true - - untyped@2.0.0: - resolution: - { - integrity: sha512-nwNCjxJTjNuLCgFr42fEak5OcLuB3ecca+9ksPFNvtfYSLpjf+iJqSIaSnIile6ZPbKYxI5k2AfXqeopGudK/g==, - } - hasBin: true - - unwasm@0.5.3: - resolution: - { - integrity: sha512-keBgTSfp3r6+s9ZcSma+0chwxQdmLbB5+dAD9vjtB21UTMYuKAxHXCU1K2CbCtnP09EaWeRvACnXk0EJtUx+hw==, - } - update-browserslist-db@1.2.3: resolution: { @@ -16514,12 +13723,6 @@ packages: peerDependencies: browserslist: ">= 4.21.0" - uqr@0.1.3: - resolution: - { - integrity: sha512-0rjE8iEJe4YmT9TOhwsZtqCMRLc5DXZUI2UEYUUg63ikBkqqE5EYWaI0etFe/5KUcmcYwLih2RND1kq+hrUJXA==, - } - uri-js@4.4.1: resolution: { @@ -16553,14 +13756,6 @@ packages: "@types/react": optional: true - use-sync-external-store@1.6.0: - resolution: - { - integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==, - } - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 - utf8-byte-length@1.0.5: resolution: { @@ -16623,13 +13818,6 @@ packages: integrity: sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==, } - vinxi@0.5.3: - resolution: - { - integrity: sha512-4sL2SMrRzdzClapP44oXdGjCE1oq7/DagsbjY5A09EibmoIO4LP8ScRVdh03lfXxKRk7nCWK7n7dqKvm+fp/9w==, - } - hasBin: true - vite-node@3.2.4: resolution: { @@ -16681,17 +13869,6 @@ packages: 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 || ^8.0.0 - peerDependenciesMeta: - vite: - optional: true - vitest@3.2.4: resolution: { @@ -16883,14 +14060,6 @@ packages: engines: { node: ">= 8" } hasBin: true - which@4.0.0: - resolution: - { - integrity: sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==, - } - engines: { node: ^16.13.0 || >=18.0.0 } - hasBin: true - why-is-node-running@2.3.0: resolution: { @@ -16899,13 +14068,6 @@ packages: engines: { node: ">=8" } hasBin: true - widest-line@4.0.1: - resolution: - { - integrity: sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==, - } - engines: { node: ">=12" } - word-wrap@1.2.5: resolution: { @@ -16975,13 +14137,6 @@ packages: utf-8-validate: optional: true - wsl-utils@0.3.1: - resolution: - { - integrity: sha512-g/eziiSUNBSsdDJtCLB8bdYEUMj4jR7AGeUo96p/3dTafgjHhpF4RiCFPiRILwjQoDXx5MqkBr4fwWtR3Ky4Wg==, - } - engines: { node: ">=20" } - xml-name-validator@5.0.0: resolution: { @@ -16995,13 +14150,6 @@ packages: integrity: sha512-huCv9IH9Tcf95zuYCsQraZtWnJvBtLVE0QHMOs8bWyZAFZNDcYjsPq1nEx8jKA9y+Beo9v+7OBPRisQTjinQMw==, } - xmlbuilder2@3.1.1: - resolution: - { - integrity: sha512-WCSfbfZnQDdLQLiMdGUQpMxxckeQ4oZNMNhLVkcekTu7xhD4tuUDyAPoY8CwXvBYE6LwBHd6QW2WZXlOWr1vCw==, - } - engines: { node: ">=12.0" } - xmlchars@2.2.0: resolution: { @@ -17042,13 +14190,6 @@ packages: integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==, } - yallist@5.0.0: - resolution: - { - integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==, - } - engines: { node: ">=18" } - yaml@1.10.3: resolution: { @@ -17078,13 +14219,6 @@ packages: } engines: { node: ">=12" } - yargs-parser@22.0.0: - resolution: - { - integrity: sha512-rwu/ClNdSMpkSrUb+d6BRsSkLUq1fmfsY6TOpYzTwvwkg1/NRG85KBy3kq++A8LKQwX6lsu+aWad+2khvuXrqw==, - } - engines: { node: ^20.19.0 || ^22.12.0 || >=23 } - yargs@15.4.1: resolution: { @@ -17099,13 +14233,6 @@ packages: } engines: { node: ">=12" } - yargs@18.0.0: - resolution: - { - integrity: sha512-4UEqdc2RYGHZc7Doyqkrqiln3p9X2DZVxaGbwhn2pi7MrRagKaOcIKe8L3OxYcbhXLgLFUS3zAYuQjKBQgmuNg==, - } - engines: { node: ^20.19.0 || ^22.12.0 || >=23 } - yjs@13.6.30: resolution: { @@ -17134,37 +14261,12 @@ packages: } engines: { node: ">=18" } - youch-core@0.3.3: - resolution: - { - integrity: sha512-ho7XuGjLaJ2hWHoK8yFnsUGy2Y5uDpqSTq1FkHLK4/oqKtyUU1AFbOOxY4IpC9f0fTLjwYbslUz0Po5BpD1wrA==, - } - - youch@4.1.1: - resolution: - { - integrity: sha512-mxW3qiSnl+GRxXsaUMzv2Mbada1Y8CDltET9UxejDQe6DBYlSekghl5U5K0ReAikcHDi0G1vKZEmmo/NWAGKLA==, - } - - zip-stream@6.0.1: - resolution: - { - integrity: sha512-zK7YHHz4ZXpW89AHXUPbQVGKI7uvkd3hzusTdotCg1UxyaVtg0zFJSTfW/Dq5f7OBBVnq6cZIaC8Ti4hb6dtCA==, - } - engines: { node: ">= 14" } - zod@3.25.76: resolution: { integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==, } - zod@4.4.3: - resolution: - { - integrity: sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==, - } - zwitch@2.0.4: resolution: { @@ -17212,18 +14314,6 @@ snapshots: "@csstools/css-tokenizer": 3.0.4 lru-cache: 10.4.3 - "@babel/code-frame@7.26.2": - dependencies: - "@babel/helper-validator-identifier": 7.28.5 - js-tokens: 4.0.0 - picocolors: 1.1.1 - - "@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.29.0": dependencies: "@babel/helper-validator-identifier": 7.28.5 @@ -17312,19 +14402,6 @@ snapshots: transitivePeerDependencies: - supports-color - "@babel/helper-create-class-features-plugin@7.29.3(@babel/core@7.29.0)": - dependencies: - "@babel/core": 7.29.0 - "@babel/helper-annotate-as-pure": 7.27.3 - "@babel/helper-member-expression-to-functions": 7.28.5 - "@babel/helper-optimise-call-expression": 7.27.1 - "@babel/helper-replace-supers": 7.28.6(@babel/core@7.29.0) - "@babel/helper-skip-transparent-expression-wrappers": 7.27.1 - "@babel/traverse": 7.29.0 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - "@babel/helper-globals@7.28.0": {} "@babel/helper-member-expression-to-functions@7.28.5": @@ -17374,15 +14451,6 @@ snapshots: transitivePeerDependencies: - supports-color - "@babel/helper-replace-supers@7.28.6(@babel/core@7.29.0)": - dependencies: - "@babel/core": 7.29.0 - "@babel/helper-member-expression-to-functions": 7.28.5 - "@babel/helper-optimise-call-expression": 7.27.1 - "@babel/traverse": 7.29.0 - transitivePeerDependencies: - - supports-color - "@babel/helper-skip-transparent-expression-wrappers@7.27.1": dependencies: "@babel/traverse": 7.29.0 @@ -17409,10 +14477,6 @@ snapshots: dependencies: "@babel/types": 7.29.0 - "@babel/parser@7.29.3": - dependencies: - "@babel/types": 7.29.0 - "@babel/plugin-proposal-decorators@7.24.7(@babel/core@7.25.9)": dependencies: "@babel/core": 7.25.9 @@ -17546,24 +14610,6 @@ snapshots: transitivePeerDependencies: - supports-color - "@babel/plugin-transform-modules-commonjs@7.28.6(@babel/core@7.29.0)": - dependencies: - "@babel/core": 7.29.0 - "@babel/helper-module-transforms": 7.28.6(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.28.6 - 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-typescript@7.28.6(@babel/core@7.25.9)": dependencies: "@babel/core": 7.25.9 @@ -17575,17 +14621,6 @@ snapshots: transitivePeerDependencies: - supports-color - "@babel/plugin-transform-typescript@7.28.6(@babel/core@7.29.0)": - dependencies: - "@babel/core": 7.29.0 - "@babel/helper-annotate-as-pure": 7.27.3 - "@babel/helper-create-class-features-plugin": 7.29.3(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.28.6 - "@babel/helper-skip-transparent-expression-wrappers": 7.27.1 - "@babel/plugin-syntax-typescript": 7.28.6(@babel/core@7.29.0) - transitivePeerDependencies: - - supports-color - "@babel/preset-typescript@7.24.7(@babel/core@7.25.9)": dependencies: "@babel/core": 7.25.9 @@ -17597,17 +14632,6 @@ snapshots: transitivePeerDependencies: - supports-color - "@babel/preset-typescript@7.28.5(@babel/core@7.29.0)": - dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.28.6 - "@babel/helper-validator-option": 7.27.1 - "@babel/plugin-syntax-jsx": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-transform-modules-commonjs": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-transform-typescript": 7.28.6(@babel/core@7.29.0) - transitivePeerDependencies: - - supports-color - "@babel/runtime@7.29.2": {} "@babel/template@7.28.6": @@ -17651,8 +14675,6 @@ snapshots: fast-wrap-ansi: 0.2.0 sisteransi: 1.0.5 - "@cloudflare/kv-asset-handler@0.4.2": {} - "@csstools/color-helpers@5.1.0": {} "@csstools/css-calc@2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)": @@ -17675,13 +14697,6 @@ snapshots: "@date-fns/tz@1.2.0": {} - "@deno/shim-deno-test@0.5.0": {} - - "@deno/shim-deno@0.19.2": - dependencies: - "@deno/shim-deno-test": 0.5.0 - which: 4.0.0 - "@dnd-kit/accessibility@3.1.1(react@19.2.4)": dependencies: react: 19.2.4 @@ -17893,375 +14908,228 @@ snapshots: "@esbuild-kit/core-utils": 3.3.2 get-tsconfig: 4.13.7 - "@esbuild/aix-ppc64@0.20.2": - optional: true - "@esbuild/aix-ppc64@0.25.12": optional: true "@esbuild/aix-ppc64@0.27.7": optional: true - "@esbuild/aix-ppc64@0.28.0": - optional: true - "@esbuild/android-arm64@0.18.20": optional: true - "@esbuild/android-arm64@0.20.2": - optional: true - "@esbuild/android-arm64@0.25.12": optional: true "@esbuild/android-arm64@0.27.7": optional: true - "@esbuild/android-arm64@0.28.0": - optional: true - "@esbuild/android-arm@0.18.20": optional: true - "@esbuild/android-arm@0.20.2": - optional: true - "@esbuild/android-arm@0.25.12": optional: true "@esbuild/android-arm@0.27.7": optional: true - "@esbuild/android-arm@0.28.0": - optional: true - "@esbuild/android-x64@0.18.20": optional: true - "@esbuild/android-x64@0.20.2": - optional: true - "@esbuild/android-x64@0.25.12": optional: true "@esbuild/android-x64@0.27.7": optional: true - "@esbuild/android-x64@0.28.0": - optional: true - "@esbuild/darwin-arm64@0.18.20": optional: true - "@esbuild/darwin-arm64@0.20.2": - optional: true - "@esbuild/darwin-arm64@0.25.12": optional: true "@esbuild/darwin-arm64@0.27.7": optional: true - "@esbuild/darwin-arm64@0.28.0": - optional: true - "@esbuild/darwin-x64@0.18.20": optional: true - "@esbuild/darwin-x64@0.20.2": - optional: true - "@esbuild/darwin-x64@0.25.12": optional: true "@esbuild/darwin-x64@0.27.7": optional: true - "@esbuild/darwin-x64@0.28.0": - optional: true - "@esbuild/freebsd-arm64@0.18.20": optional: true - "@esbuild/freebsd-arm64@0.20.2": - optional: true - "@esbuild/freebsd-arm64@0.25.12": optional: true "@esbuild/freebsd-arm64@0.27.7": optional: true - "@esbuild/freebsd-arm64@0.28.0": - optional: true - "@esbuild/freebsd-x64@0.18.20": optional: true - "@esbuild/freebsd-x64@0.20.2": - optional: true - "@esbuild/freebsd-x64@0.25.12": optional: true "@esbuild/freebsd-x64@0.27.7": optional: true - "@esbuild/freebsd-x64@0.28.0": - optional: true - "@esbuild/linux-arm64@0.18.20": optional: true - "@esbuild/linux-arm64@0.20.2": - optional: true - "@esbuild/linux-arm64@0.25.12": optional: true "@esbuild/linux-arm64@0.27.7": optional: true - "@esbuild/linux-arm64@0.28.0": - optional: true - "@esbuild/linux-arm@0.18.20": optional: true - "@esbuild/linux-arm@0.20.2": - optional: true - "@esbuild/linux-arm@0.25.12": optional: true "@esbuild/linux-arm@0.27.7": optional: true - "@esbuild/linux-arm@0.28.0": - optional: true - "@esbuild/linux-ia32@0.18.20": optional: true - "@esbuild/linux-ia32@0.20.2": - optional: true - "@esbuild/linux-ia32@0.25.12": optional: true "@esbuild/linux-ia32@0.27.7": optional: true - "@esbuild/linux-ia32@0.28.0": - optional: true - "@esbuild/linux-loong64@0.18.20": optional: true - "@esbuild/linux-loong64@0.20.2": - optional: true - "@esbuild/linux-loong64@0.25.12": optional: true "@esbuild/linux-loong64@0.27.7": optional: true - "@esbuild/linux-loong64@0.28.0": - optional: true - "@esbuild/linux-mips64el@0.18.20": optional: true - "@esbuild/linux-mips64el@0.20.2": - optional: true - "@esbuild/linux-mips64el@0.25.12": optional: true "@esbuild/linux-mips64el@0.27.7": optional: true - "@esbuild/linux-mips64el@0.28.0": - optional: true - "@esbuild/linux-ppc64@0.18.20": optional: true - "@esbuild/linux-ppc64@0.20.2": - optional: true - "@esbuild/linux-ppc64@0.25.12": optional: true "@esbuild/linux-ppc64@0.27.7": optional: true - "@esbuild/linux-ppc64@0.28.0": - optional: true - "@esbuild/linux-riscv64@0.18.20": optional: true - "@esbuild/linux-riscv64@0.20.2": - optional: true - "@esbuild/linux-riscv64@0.25.12": optional: true "@esbuild/linux-riscv64@0.27.7": optional: true - "@esbuild/linux-riscv64@0.28.0": - optional: true - "@esbuild/linux-s390x@0.18.20": optional: true - "@esbuild/linux-s390x@0.20.2": - optional: true - "@esbuild/linux-s390x@0.25.12": optional: true "@esbuild/linux-s390x@0.27.7": optional: true - "@esbuild/linux-s390x@0.28.0": - optional: true - "@esbuild/linux-x64@0.18.20": optional: true - "@esbuild/linux-x64@0.20.2": - optional: true - "@esbuild/linux-x64@0.25.12": optional: true "@esbuild/linux-x64@0.27.7": optional: true - "@esbuild/linux-x64@0.28.0": - optional: true - "@esbuild/netbsd-arm64@0.25.12": optional: true "@esbuild/netbsd-arm64@0.27.7": optional: true - "@esbuild/netbsd-arm64@0.28.0": - optional: true - "@esbuild/netbsd-x64@0.18.20": optional: true - "@esbuild/netbsd-x64@0.20.2": - optional: true - "@esbuild/netbsd-x64@0.25.12": optional: true "@esbuild/netbsd-x64@0.27.7": optional: true - "@esbuild/netbsd-x64@0.28.0": - optional: true - "@esbuild/openbsd-arm64@0.25.12": optional: true "@esbuild/openbsd-arm64@0.27.7": optional: true - "@esbuild/openbsd-arm64@0.28.0": - optional: true - "@esbuild/openbsd-x64@0.18.20": optional: true - "@esbuild/openbsd-x64@0.20.2": - optional: true - "@esbuild/openbsd-x64@0.25.12": optional: true "@esbuild/openbsd-x64@0.27.7": optional: true - "@esbuild/openbsd-x64@0.28.0": - optional: true - "@esbuild/openharmony-arm64@0.25.12": optional: true "@esbuild/openharmony-arm64@0.27.7": optional: true - "@esbuild/openharmony-arm64@0.28.0": - optional: true - "@esbuild/sunos-x64@0.18.20": optional: true - "@esbuild/sunos-x64@0.20.2": - optional: true - "@esbuild/sunos-x64@0.25.12": optional: true "@esbuild/sunos-x64@0.27.7": optional: true - "@esbuild/sunos-x64@0.28.0": - optional: true - "@esbuild/win32-arm64@0.18.20": optional: true - "@esbuild/win32-arm64@0.20.2": - optional: true - "@esbuild/win32-arm64@0.25.12": optional: true "@esbuild/win32-arm64@0.27.7": optional: true - "@esbuild/win32-arm64@0.28.0": - optional: true - "@esbuild/win32-ia32@0.18.20": optional: true - "@esbuild/win32-ia32@0.20.2": - optional: true - "@esbuild/win32-ia32@0.25.12": optional: true "@esbuild/win32-ia32@0.27.7": optional: true - "@esbuild/win32-ia32@0.28.0": - optional: true - "@esbuild/win32-x64@0.18.20": optional: true - "@esbuild/win32-x64@0.20.2": - optional: true - "@esbuild/win32-x64@0.25.12": optional: true "@esbuild/win32-x64@0.27.7": optional: true - "@esbuild/win32-x64@0.28.0": - optional: true - "@eslint-community/eslint-utils@4.9.1(eslint@9.39.4(jiti@2.7.0))": dependencies: eslint: 9.39.4(jiti@2.7.0) @@ -18955,7 +15823,8 @@ snapshots: dependencies: reflect-metadata: 0.2.2 - "@ioredis/commands@1.5.1": {} + "@ioredis/commands@1.5.1": + optional: true "@isaacs/cliui@8.0.2": dependencies: @@ -18966,10 +15835,6 @@ snapshots: wrap-ansi: 8.1.0 wrap-ansi-cjs: wrap-ansi@7.0.0 - "@isaacs/fs-minipass@4.0.1": - dependencies: - minipass: 7.1.3 - "@istanbuljs/load-nyc-config@1.1.0": dependencies: camelcase: 5.3.1 @@ -19396,19 +16261,6 @@ snapshots: lexical: 0.41.0 yjs: 13.6.30 - "@mapbox/node-pre-gyp@2.0.3": - dependencies: - consola: 3.4.2 - detect-libc: 2.1.2 - https-proxy-agent: 7.0.6 - node-fetch: 2.7.0 - nopt: 8.1.0 - semver: 7.7.4 - tar: 7.5.15 - transitivePeerDependencies: - - encoding - - supports-color - "@mdx-js/react@3.1.1(@types/react@19.2.14)(react@19.2.4)": dependencies: "@types/mdx": 2.0.13 @@ -19496,35 +16348,6 @@ snapshots: "@next/swc-win32-x64-msvc@16.2.2": optional: true - "@nodelib/fs.scandir@2.1.5": - dependencies: - "@nodelib/fs.stat": 2.0.5 - run-parallel: 1.2.0 - - "@nodelib/fs.stat@2.0.5": {} - - "@nodelib/fs.walk@1.2.8": - dependencies: - "@nodelib/fs.scandir": 2.1.5 - fastq: 1.20.1 - - "@oozcitak/dom@1.15.10": - dependencies: - "@oozcitak/infra": 1.0.8 - "@oozcitak/url": 1.0.4 - "@oozcitak/util": 8.3.8 - - "@oozcitak/infra@1.0.8": - dependencies: - "@oozcitak/util": 8.3.8 - - "@oozcitak/url@1.0.4": - dependencies: - "@oozcitak/infra": 1.0.8 - "@oozcitak/util": 8.3.8 - - "@oozcitak/util@8.3.8": {} - "@opentelemetry/api-logs@0.207.0": dependencies: "@opentelemetry/api": 1.9.1 @@ -20058,16 +16881,6 @@ snapshots: "@parcel/watcher-linux-x64-musl@2.5.6": optional: true - "@parcel/watcher-wasm@2.3.0": - dependencies: - is-glob: 4.0.3 - micromatch: 4.0.7 - - "@parcel/watcher-wasm@2.5.6": - dependencies: - is-glob: 4.0.3 - picomatch: 4.0.4 - "@parcel/watcher-win32-arm64@2.5.6": optional: true @@ -20425,18 +17238,6 @@ snapshots: dependencies: playwright: 1.59.1 - "@poppinss/colors@4.1.6": - dependencies: - kleur: 4.1.5 - - "@poppinss/dumper@0.7.0": - dependencies: - "@poppinss/colors": 4.1.6 - "@sindresorhus/is": 7.2.0 - supports-color: 10.2.2 - - "@poppinss/exception@1.2.3": {} - "@preact/signals-core@1.14.1": {} "@prisma/instrumentation@7.6.0(@opentelemetry/api@1.9.1)": @@ -20469,12 +17270,6 @@ snapshots: "@protobufjs/utf8@1.1.1": {} - "@rolldown/pluginutils@1.0.0-beta.27": {} - - "@rollup/plugin-alias@6.0.0(rollup@4.60.4)": - optionalDependencies: - rollup: 4.60.4 - "@rollup/plugin-commonjs@28.0.1(rollup@4.60.1)": dependencies: "@rollup/pluginutils": 5.3.0(rollup@4.60.1) @@ -20487,57 +17282,6 @@ snapshots: optionalDependencies: rollup: 4.60.1 - "@rollup/plugin-commonjs@29.0.2(rollup@4.60.4)": - dependencies: - "@rollup/pluginutils": 5.3.0(rollup@4.60.4) - commondir: 1.0.1 - estree-walker: 2.0.2 - fdir: 6.5.0(picomatch@4.0.4) - is-reference: 1.2.1 - magic-string: 0.30.21 - picomatch: 4.0.4 - optionalDependencies: - rollup: 4.60.4 - - "@rollup/plugin-inject@5.0.5(rollup@4.60.4)": - dependencies: - "@rollup/pluginutils": 5.3.0(rollup@4.60.4) - estree-walker: 2.0.2 - magic-string: 0.30.21 - optionalDependencies: - rollup: 4.60.4 - - "@rollup/plugin-json@6.1.0(rollup@4.60.4)": - dependencies: - "@rollup/pluginutils": 5.3.0(rollup@4.60.4) - optionalDependencies: - rollup: 4.60.4 - - "@rollup/plugin-node-resolve@16.0.3(rollup@4.60.4)": - dependencies: - "@rollup/pluginutils": 5.3.0(rollup@4.60.4) - "@types/resolve": 1.20.2 - deepmerge: 4.3.1 - is-module: 1.0.0 - resolve: 1.22.11 - optionalDependencies: - rollup: 4.60.4 - - "@rollup/plugin-replace@6.0.3(rollup@4.60.4)": - dependencies: - "@rollup/pluginutils": 5.3.0(rollup@4.60.4) - magic-string: 0.30.21 - optionalDependencies: - rollup: 4.60.4 - - "@rollup/plugin-terser@1.0.0(rollup@4.60.4)": - dependencies: - serialize-javascript: 7.0.5 - smob: 1.6.2 - terser: 5.46.2 - optionalDependencies: - rollup: 4.60.4 - "@rollup/pluginutils@5.3.0(rollup@4.60.1)": dependencies: "@types/estree": 1.0.8 @@ -21036,31 +17780,12 @@ snapshots: "@sentry/core": 10.52.0 react: 19.2.4 - "@sentry/rollup-plugin@5.2.1(rollup@4.60.4)": - dependencies: - "@sentry/bundler-plugin-core": 5.2.1 - magic-string: 0.30.21 - optionalDependencies: - rollup: 4.60.4 - transitivePeerDependencies: - - encoding - - supports-color - "@sentry/vercel-edge@10.51.0": dependencies: "@opentelemetry/api": 1.9.1 "@opentelemetry/resources": 2.7.1(@opentelemetry/api@1.9.1) "@sentry/core": 10.51.0 - "@sentry/vite-plugin@5.2.1(rollup@4.60.4)": - dependencies: - "@sentry/bundler-plugin-core": 5.2.1 - "@sentry/rollup-plugin": 5.2.1(rollup@4.60.4) - transitivePeerDependencies: - - encoding - - rollup - - supports-color - "@sentry/webpack-plugin@5.2.1(webpack@5.106.2)": dependencies: "@sentry/bundler-plugin-core": 5.2.1 @@ -21081,8 +17806,6 @@ snapshots: "@sinclair/typebox@0.34.49": {} - "@sindresorhus/is@7.2.0": {} - "@sindresorhus/merge-streams@4.0.0": {} "@sinonjs/commons@3.0.1": @@ -21093,8 +17816,6 @@ snapshots: dependencies: "@sinonjs/commons": 3.0.1 - "@speed-highlight/core@1.2.15": {} - "@standard-schema/spec@1.1.0": {} "@storybook/addon-actions@8.6.14(storybook@8.6.18(prettier@3.8.1))": @@ -21609,39 +18330,6 @@ snapshots: tailwindcss: 4.2.2 vite: 6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0) - "@tanstack/directive-functions-plugin@1.131.2(vite@6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0))": - dependencies: - "@babel/code-frame": 7.27.1 - "@babel/core": 7.29.0 - "@babel/traverse": 7.29.0 - "@babel/types": 7.29.0 - "@tanstack/router-utils": 1.131.2 - babel-dead-code-elimination: 1.0.12 - tiny-invariant: 1.3.3 - vite: 6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0) - transitivePeerDependencies: - - supports-color - - "@tanstack/directive-functions-plugin@1.142.1(vite@6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0))": - dependencies: - "@babel/code-frame": 7.27.1 - "@babel/core": 7.29.0 - "@babel/traverse": 7.29.0 - "@babel/types": 7.29.0 - "@tanstack/router-utils": 1.141.0 - babel-dead-code-elimination: 1.0.12 - pathe: 2.0.3 - tiny-invariant: 1.3.3 - vite: 6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0) - transitivePeerDependencies: - - supports-color - - "@tanstack/history@1.131.2": {} - - "@tanstack/history@1.161.6": {} - - "@tanstack/history@1.162.0": {} - "@tanstack/query-core@5.96.2": {} "@tanstack/react-query@5.96.2(react@19.2.4)": @@ -21649,657 +18337,6 @@ snapshots: "@tanstack/query-core": 5.96.2 react: 19.2.4 - "@tanstack/react-router@1.168.10(react-dom@19.2.4(react@19.2.4))(react@19.2.4)": - dependencies: - "@tanstack/history": 1.161.6 - "@tanstack/react-store": 0.9.3(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - "@tanstack/router-core": 1.168.9 - isbot: 5.1.37 - react: 19.2.4 - react-dom: 19.2.4(react@19.2.4) - - "@tanstack/react-router@1.170.5(react-dom@19.2.4(react@19.2.4))(react@19.2.4)": - dependencies: - "@tanstack/history": 1.162.0 - "@tanstack/react-store": 0.9.3(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - "@tanstack/router-core": 1.171.3 - isbot: 5.1.37 - react: 19.2.4 - react-dom: 19.2.4(react@19.2.4) - - "@tanstack/react-start-client@1.168.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)": - dependencies: - "@tanstack/react-router": 1.170.5(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - "@tanstack/router-core": 1.171.3 - "@tanstack/start-client-core": 1.170.0 - react: 19.2.4 - react-dom: 19.2.4(react@19.2.4) - - "@tanstack/react-start-plugin@1.131.50(@tanstack/react-router@1.168.10(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@vitejs/plugin-react@4.7.0(vite@6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0)))(drizzle-orm@0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3))(vite@6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0))(webpack@5.106.2)": - dependencies: - "@tanstack/start-plugin-core": 1.131.50(@tanstack/react-router@1.168.10(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(drizzle-orm@0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3))(vite@6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0))(webpack@5.106.2) - "@vitejs/plugin-react": 4.7.0(vite@6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0)) - pathe: 2.0.3 - vite: 6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0) - zod: 3.25.76 - transitivePeerDependencies: - - "@azure/app-configuration" - - "@azure/cosmos" - - "@azure/data-tables" - - "@azure/identity" - - "@azure/keyvault-secrets" - - "@azure/storage-blob" - - "@capacitor/preferences" - - "@deno/kv" - - "@electric-sql/pglite" - - "@libsql/client" - - "@netlify/blobs" - - "@planetscale/database" - - "@rsbuild/core" - - "@tanstack/react-router" - - "@upstash/redis" - - "@vercel/blob" - - "@vercel/functions" - - "@vercel/kv" - - aws4fetch - - bare-abort-controller - - bare-buffer - - better-sqlite3 - - drizzle-orm - - encoding - - idb-keyval - - mysql2 - - oxc-parser - - react-native-b4a - - rolldown - - sqlite3 - - supports-color - - uploadthing - - vite-plugin-solid - - webpack - - xml2js - - "@tanstack/react-start-router-manifest@1.120.19(@types/node@22.19.17)(db0@0.3.4(drizzle-orm@0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3)))(drizzle-orm@0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3))(ioredis@5.10.1)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0)": - dependencies: - "@tanstack/router-core": 1.168.9 - tiny-invariant: 1.3.3 - vinxi: 0.5.3(@types/node@22.19.17)(db0@0.3.4(drizzle-orm@0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3)))(drizzle-orm@0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3))(ioredis@5.10.1)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.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" - - "@types/node" - - "@upstash/redis" - - "@vercel/blob" - - "@vercel/functions" - - "@vercel/kv" - - aws4fetch - - bare-abort-controller - - bare-buffer - - better-sqlite3 - - db0 - - debug - - drizzle-orm - - encoding - - idb-keyval - - ioredis - - jiti - - less - - lightningcss - - mysql2 - - oxc-parser - - react-native-b4a - - rolldown - - sass - - sass-embedded - - sqlite3 - - stylus - - sugarss - - supports-color - - terser - - tsx - - uploadthing - - xml2js - - yaml - - "@tanstack/react-start-server@1.167.5(react-dom@19.2.4(react@19.2.4))(react@19.2.4)": - dependencies: - "@tanstack/history": 1.162.0 - "@tanstack/react-router": 1.170.5(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - "@tanstack/router-core": 1.171.3 - "@tanstack/start-client-core": 1.170.0 - "@tanstack/start-server-core": 1.169.0 - react: 19.2.4 - react-dom: 19.2.4(react@19.2.4) - transitivePeerDependencies: - - crossws - - "@tanstack/react-store@0.9.3(react-dom@19.2.4(react@19.2.4))(react@19.2.4)": - dependencies: - "@tanstack/store": 0.9.3 - react: 19.2.4 - react-dom: 19.2.4(react@19.2.4) - use-sync-external-store: 1.6.0(react@19.2.4) - - "@tanstack/router-core@1.131.50": - dependencies: - "@tanstack/history": 1.131.2 - "@tanstack/store": 0.7.7 - cookie-es: 1.2.3 - seroval: 1.5.2 - seroval-plugins: 1.5.2(seroval@1.5.2) - tiny-invariant: 1.3.3 - tiny-warning: 1.0.3 - - "@tanstack/router-core@1.168.9": - dependencies: - "@tanstack/history": 1.161.6 - cookie-es: 2.0.1 - seroval: 1.5.2 - seroval-plugins: 1.5.2(seroval@1.5.2) - - "@tanstack/router-core@1.171.3": - dependencies: - "@tanstack/history": 1.162.0 - cookie-es: 3.1.1 - seroval: 1.5.4 - seroval-plugins: 1.5.4(seroval@1.5.4) - - "@tanstack/router-generator@1.131.50": - dependencies: - "@tanstack/router-core": 1.131.50 - "@tanstack/router-utils": 1.131.2 - "@tanstack/virtual-file-routes": 1.131.2 - 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-generator@1.167.6": - dependencies: - "@babel/types": 7.29.0 - "@tanstack/router-core": 1.171.3 - "@tanstack/router-utils": 1.162.1 - "@tanstack/virtual-file-routes": 1.162.0 - jiti: 2.7.0 - magic-string: 0.30.21 - prettier: 3.8.1 - zod: 4.4.3 - transitivePeerDependencies: - - supports-color - - "@tanstack/router-plugin@1.131.50(@tanstack/react-router@1.168.10(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(vite@6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0))(webpack@5.106.2)": - dependencies: - "@babel/core": 7.29.0 - "@babel/plugin-syntax-jsx": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-syntax-typescript": 7.28.6(@babel/core@7.29.0) - "@babel/template": 7.28.6 - "@babel/traverse": 7.29.0 - "@babel/types": 7.29.0 - "@tanstack/router-core": 1.131.50 - "@tanstack/router-generator": 1.131.50 - "@tanstack/router-utils": 1.131.2 - "@tanstack/virtual-file-routes": 1.131.2 - babel-dead-code-elimination: 1.0.12 - chokidar: 3.6.0 - unplugin: 2.3.11 - zod: 3.25.76 - optionalDependencies: - "@tanstack/react-router": 1.168.10(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - vite: 6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0) - webpack: 5.106.2 - transitivePeerDependencies: - - supports-color - - "@tanstack/router-plugin@1.168.7(@tanstack/react-router@1.168.10(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(vite@6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0))(webpack@5.106.2)": - dependencies: - "@babel/core": 7.29.0 - "@babel/plugin-syntax-jsx": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-syntax-typescript": 7.28.6(@babel/core@7.29.0) - "@babel/template": 7.28.6 - "@babel/traverse": 7.29.0 - "@babel/types": 7.29.0 - "@tanstack/router-core": 1.171.3 - "@tanstack/router-generator": 1.167.6 - "@tanstack/router-utils": 1.162.1 - "@tanstack/virtual-file-routes": 1.162.0 - chokidar: 5.0.0 - unplugin: 3.0.0 - zod: 4.4.3 - optionalDependencies: - "@tanstack/react-router": 1.168.10(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - vite: 6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0) - webpack: 5.106.2 - transitivePeerDependencies: - - supports-color - - "@tanstack/router-utils@1.131.2": - dependencies: - "@babel/core": 7.29.0 - "@babel/generator": 7.29.1 - "@babel/parser": 7.29.2 - "@babel/preset-typescript": 7.28.5(@babel/core@7.29.0) - ansis: 4.3.0 - diff: 8.0.4 - transitivePeerDependencies: - - supports-color - - "@tanstack/router-utils@1.141.0": - dependencies: - "@babel/core": 7.29.0 - "@babel/generator": 7.29.1 - "@babel/parser": 7.29.2 - "@babel/preset-typescript": 7.28.5(@babel/core@7.29.0) - ansis: 4.3.0 - diff: 8.0.4 - pathe: 2.0.3 - tinyglobby: 0.2.15 - transitivePeerDependencies: - - supports-color - - "@tanstack/router-utils@1.162.1": - dependencies: - "@babel/core": 7.29.0 - "@babel/generator": 7.29.1 - "@babel/parser": 7.29.2 - "@babel/types": 7.29.0 - ansis: 4.3.0 - babel-dead-code-elimination: 1.0.12 - diff: 8.0.4 - pathe: 2.0.3 - tinyglobby: 0.2.15 - transitivePeerDependencies: - - supports-color - - "@tanstack/server-functions-plugin@1.131.2(vite@6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0))": - dependencies: - "@babel/code-frame": 7.27.1 - "@babel/core": 7.29.0 - "@babel/plugin-syntax-jsx": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-syntax-typescript": 7.28.6(@babel/core@7.29.0) - "@babel/template": 7.28.6 - "@babel/traverse": 7.29.0 - "@babel/types": 7.29.0 - "@tanstack/directive-functions-plugin": 1.131.2(vite@6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0)) - babel-dead-code-elimination: 1.0.12 - tiny-invariant: 1.3.3 - transitivePeerDependencies: - - supports-color - - vite - - "@tanstack/server-functions-plugin@1.142.1(vite@6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0))": - dependencies: - "@babel/code-frame": 7.27.1 - "@babel/core": 7.29.0 - "@babel/plugin-syntax-jsx": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-syntax-typescript": 7.28.6(@babel/core@7.29.0) - "@babel/template": 7.28.6 - "@babel/traverse": 7.29.0 - "@babel/types": 7.29.0 - "@tanstack/directive-functions-plugin": 1.142.1(vite@6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0)) - babel-dead-code-elimination: 1.0.12 - tiny-invariant: 1.3.3 - transitivePeerDependencies: - - supports-color - - vite - - "@tanstack/start-api-routes@1.120.19(@types/node@22.19.17)(db0@0.3.4(drizzle-orm@0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3)))(drizzle-orm@0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3))(ioredis@5.10.1)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0)": - dependencies: - "@tanstack/router-core": 1.168.9 - "@tanstack/start-server-core": 1.169.0 - vinxi: 0.5.3(@types/node@22.19.17)(db0@0.3.4(drizzle-orm@0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3)))(drizzle-orm@0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3))(ioredis@5.10.1)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.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" - - "@types/node" - - "@upstash/redis" - - "@vercel/blob" - - "@vercel/functions" - - "@vercel/kv" - - aws4fetch - - bare-abort-controller - - bare-buffer - - better-sqlite3 - - crossws - - db0 - - debug - - drizzle-orm - - encoding - - idb-keyval - - ioredis - - jiti - - less - - lightningcss - - mysql2 - - oxc-parser - - react-native-b4a - - rolldown - - sass - - sass-embedded - - sqlite3 - - stylus - - sugarss - - supports-color - - terser - - tsx - - uploadthing - - xml2js - - yaml - - "@tanstack/start-client-core@1.131.50": - dependencies: - "@tanstack/router-core": 1.131.50 - "@tanstack/start-storage-context": 1.131.50 - cookie-es: 1.2.3 - tiny-invariant: 1.3.3 - tiny-warning: 1.0.3 - - "@tanstack/start-client-core@1.170.0": - dependencies: - "@tanstack/router-core": 1.171.3 - "@tanstack/start-fn-stubs": 1.162.0 - "@tanstack/start-storage-context": 1.167.5 - seroval: 1.5.4 - - "@tanstack/start-config@1.120.20(@types/node@22.19.17)(db0@0.3.4(drizzle-orm@0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3)))(drizzle-orm@0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3))(ioredis@5.10.1)(jiti@2.7.0)(lightningcss@1.32.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(vite@6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0))(webpack@5.106.2)(yaml@2.9.0)": - dependencies: - "@tanstack/react-router": 1.168.10(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - "@tanstack/react-start-plugin": 1.131.50(@tanstack/react-router@1.168.10(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@vitejs/plugin-react@4.7.0(vite@6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0)))(drizzle-orm@0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3))(vite@6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0))(webpack@5.106.2) - "@tanstack/router-generator": 1.167.6 - "@tanstack/router-plugin": 1.168.7(@tanstack/react-router@1.168.10(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(vite@6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0))(webpack@5.106.2) - "@tanstack/server-functions-plugin": 1.142.1(vite@6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0)) - "@tanstack/start-server-functions-handler": 1.120.19 - "@vitejs/plugin-react": 4.7.0(vite@6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0)) - import-meta-resolve: 4.2.0 - nitropack: 2.13.4(drizzle-orm@0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3)) - ofetch: 1.5.1 - react: 19.2.4 - react-dom: 19.2.4(react@19.2.4) - vinxi: 0.5.3(@types/node@22.19.17)(db0@0.3.4(drizzle-orm@0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3)))(drizzle-orm@0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3))(ioredis@5.10.1)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0) - vite: 6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0) - zod: 3.25.76 - transitivePeerDependencies: - - "@azure/app-configuration" - - "@azure/cosmos" - - "@azure/data-tables" - - "@azure/identity" - - "@azure/keyvault-secrets" - - "@azure/storage-blob" - - "@capacitor/preferences" - - "@deno/kv" - - "@electric-sql/pglite" - - "@libsql/client" - - "@netlify/blobs" - - "@planetscale/database" - - "@rsbuild/core" - - "@types/node" - - "@upstash/redis" - - "@vercel/blob" - - "@vercel/functions" - - "@vercel/kv" - - aws4fetch - - bare-abort-controller - - bare-buffer - - better-sqlite3 - - crossws - - db0 - - debug - - drizzle-orm - - encoding - - idb-keyval - - ioredis - - jiti - - less - - lightningcss - - mysql2 - - oxc-parser - - react-native-b4a - - rolldown - - sass - - sass-embedded - - sqlite3 - - stylus - - sugarss - - supports-color - - terser - - tsx - - uploadthing - - vite-plugin-solid - - webpack - - xml2js - - yaml - - "@tanstack/start-fn-stubs@1.162.0": {} - - "@tanstack/start-plugin-core@1.131.50(@tanstack/react-router@1.168.10(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(drizzle-orm@0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3))(vite@6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0))(webpack@5.106.2)": - dependencies: - "@babel/code-frame": 7.26.2 - "@babel/core": 7.29.0 - "@babel/types": 7.29.0 - "@tanstack/router-core": 1.131.50 - "@tanstack/router-generator": 1.131.50 - "@tanstack/router-plugin": 1.131.50(@tanstack/react-router@1.168.10(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(vite@6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0))(webpack@5.106.2) - "@tanstack/router-utils": 1.131.2 - "@tanstack/server-functions-plugin": 1.131.2(vite@6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0)) - "@tanstack/start-server-core": 1.131.50 - "@types/babel__code-frame": 7.27.0 - "@types/babel__core": 7.20.5 - babel-dead-code-elimination: 1.0.12 - cheerio: 1.2.0 - h3: 1.13.0 - nitropack: 2.13.4(drizzle-orm@0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3)) - pathe: 2.0.3 - ufo: 1.6.4 - vite: 6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0) - vitefu: 1.1.3(vite@6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0)) - xmlbuilder2: 3.1.1 - zod: 3.25.76 - transitivePeerDependencies: - - "@azure/app-configuration" - - "@azure/cosmos" - - "@azure/data-tables" - - "@azure/identity" - - "@azure/keyvault-secrets" - - "@azure/storage-blob" - - "@capacitor/preferences" - - "@deno/kv" - - "@electric-sql/pglite" - - "@libsql/client" - - "@netlify/blobs" - - "@planetscale/database" - - "@rsbuild/core" - - "@tanstack/react-router" - - "@upstash/redis" - - "@vercel/blob" - - "@vercel/functions" - - "@vercel/kv" - - aws4fetch - - bare-abort-controller - - bare-buffer - - better-sqlite3 - - drizzle-orm - - encoding - - idb-keyval - - mysql2 - - oxc-parser - - react-native-b4a - - rolldown - - sqlite3 - - supports-color - - uploadthing - - vite-plugin-solid - - webpack - - xml2js - - "@tanstack/start-server-core@1.131.50": - dependencies: - "@tanstack/history": 1.131.2 - "@tanstack/router-core": 1.131.50 - "@tanstack/start-client-core": 1.131.50 - "@tanstack/start-storage-context": 1.131.50 - h3: 1.13.0 - isbot: 5.1.37 - tiny-invariant: 1.3.3 - tiny-warning: 1.0.3 - unctx: 2.5.0 - - "@tanstack/start-server-core@1.169.0": - dependencies: - "@tanstack/history": 1.162.0 - "@tanstack/router-core": 1.171.3 - "@tanstack/start-client-core": 1.170.0 - "@tanstack/start-storage-context": 1.167.5 - fetchdts: 0.1.7 - h3-v2: h3@2.0.1-rc.20 - seroval: 1.5.4 - transitivePeerDependencies: - - crossws - - "@tanstack/start-server-functions-client@1.131.50(vite@6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0))": - dependencies: - "@tanstack/server-functions-plugin": 1.131.2(vite@6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0)) - "@tanstack/start-server-functions-fetcher": 1.131.50 - transitivePeerDependencies: - - supports-color - - vite - - "@tanstack/start-server-functions-fetcher@1.131.50": - dependencies: - "@tanstack/router-core": 1.131.50 - "@tanstack/start-client-core": 1.131.50 - - "@tanstack/start-server-functions-handler@1.120.19": - dependencies: - "@tanstack/router-core": 1.168.9 - "@tanstack/start-client-core": 1.170.0 - "@tanstack/start-server-core": 1.169.0 - tiny-invariant: 1.3.3 - transitivePeerDependencies: - - crossws - - "@tanstack/start-server-functions-server@1.131.2(vite@6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0))": - dependencies: - "@tanstack/server-functions-plugin": 1.131.2(vite@6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0)) - tiny-invariant: 1.3.3 - transitivePeerDependencies: - - supports-color - - vite - - "@tanstack/start-server-functions-ssr@1.120.19(vite@6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0))": - dependencies: - "@tanstack/server-functions-plugin": 1.142.1(vite@6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0)) - "@tanstack/start-client-core": 1.170.0 - "@tanstack/start-server-core": 1.169.0 - "@tanstack/start-server-functions-fetcher": 1.131.50 - tiny-invariant: 1.3.3 - transitivePeerDependencies: - - crossws - - supports-color - - vite - - "@tanstack/start-storage-context@1.131.50": - dependencies: - "@tanstack/router-core": 1.131.50 - - "@tanstack/start-storage-context@1.167.5": - dependencies: - "@tanstack/router-core": 1.171.3 - - "@tanstack/start@1.120.20(@types/node@22.19.17)(db0@0.3.4(drizzle-orm@0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3)))(drizzle-orm@0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3))(ioredis@5.10.1)(jiti@2.7.0)(lightningcss@1.32.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(vite@6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0))(webpack@5.106.2)(yaml@2.9.0)": - dependencies: - "@tanstack/react-start-client": 1.168.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - "@tanstack/react-start-router-manifest": 1.120.19(@types/node@22.19.17)(db0@0.3.4(drizzle-orm@0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3)))(drizzle-orm@0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3))(ioredis@5.10.1)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0) - "@tanstack/react-start-server": 1.167.5(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - "@tanstack/start-api-routes": 1.120.19(@types/node@22.19.17)(db0@0.3.4(drizzle-orm@0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3)))(drizzle-orm@0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3))(ioredis@5.10.1)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0) - "@tanstack/start-config": 1.120.20(@types/node@22.19.17)(db0@0.3.4(drizzle-orm@0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3)))(drizzle-orm@0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3))(ioredis@5.10.1)(jiti@2.7.0)(lightningcss@1.32.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(vite@6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0))(webpack@5.106.2)(yaml@2.9.0) - "@tanstack/start-server-functions-client": 1.131.50(vite@6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0)) - "@tanstack/start-server-functions-handler": 1.120.19 - "@tanstack/start-server-functions-server": 1.131.2(vite@6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0)) - "@tanstack/start-server-functions-ssr": 1.120.19(vite@6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.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" - - "@rsbuild/core" - - "@types/node" - - "@upstash/redis" - - "@vercel/blob" - - "@vercel/functions" - - "@vercel/kv" - - aws4fetch - - bare-abort-controller - - bare-buffer - - better-sqlite3 - - crossws - - db0 - - debug - - drizzle-orm - - encoding - - idb-keyval - - ioredis - - jiti - - less - - lightningcss - - mysql2 - - oxc-parser - - react - - react-dom - - react-native-b4a - - rolldown - - sass - - sass-embedded - - sqlite3 - - stylus - - sugarss - - supports-color - - terser - - tsx - - uploadthing - - vite - - vite-plugin-solid - - webpack - - xml2js - - yaml - - "@tanstack/store@0.7.7": {} - - "@tanstack/store@0.9.3": {} - - "@tanstack/virtual-file-routes@1.131.2": {} - - "@tanstack/virtual-file-routes@1.162.0": {} - "@testing-library/dom@10.4.1": dependencies: "@babel/code-frame": 7.29.0 @@ -22420,8 +18457,6 @@ snapshots: "@types/aria-query@5.0.4": {} - "@types/babel__code-frame@7.27.0": {} - "@types/babel__core@7.20.5": dependencies: "@babel/parser": 7.29.2 @@ -22443,8 +18478,6 @@ snapshots: dependencies: "@babel/types": 7.29.0 - "@types/braces@3.0.5": {} - "@types/busboy@1.5.4": dependencies: "@types/node": 22.19.17 @@ -22520,10 +18553,6 @@ snapshots: "@types/mdx@2.0.13": {} - "@types/micromatch@4.0.10": - dependencies: - "@types/braces": 3.0.5 - "@types/ms@2.1.0": {} "@types/mute-stream@0.0.4": @@ -22583,8 +18612,6 @@ snapshots: dependencies: csstype: 3.2.3 - "@types/resolve@1.20.2": {} - "@types/resolve@1.20.6": {} "@types/shimmer@1.2.0": {} @@ -22715,57 +18742,6 @@ snapshots: "@typescript-eslint/types": 8.58.0 eslint-visitor-keys: 5.0.1 - "@vercel/nft@1.5.0(rollup@4.60.4)": - dependencies: - "@mapbox/node-pre-gyp": 2.0.3 - "@rollup/pluginutils": 5.3.0(rollup@4.60.4) - acorn: 8.16.0 - acorn-import-attributes: 1.9.5(acorn@8.16.0) - async-sema: 3.1.1 - bindings: 1.5.0 - estree-walker: 2.0.2 - glob: 13.0.6 - graceful-fs: 4.2.11 - node-gyp-build: 4.8.4 - picomatch: 4.0.4 - resolve-from: 5.0.0 - transitivePeerDependencies: - - encoding - - rollup - - supports-color - - "@vinxi/listhen@1.5.6": - dependencies: - "@parcel/watcher": 2.5.6 - "@parcel/watcher-wasm": 2.3.0 - citty: 0.1.6 - clipboardy: 4.0.0 - consola: 3.4.2 - defu: 6.1.7 - get-port-please: 3.2.0 - h3: 1.13.0 - http-shutdown: 1.2.2 - jiti: 1.21.7 - mlly: 1.8.2 - node-forge: 1.4.0 - pathe: 1.1.2 - std-env: 3.10.0 - ufo: 1.6.4 - untun: 0.1.3 - uqr: 0.1.3 - - "@vitejs/plugin-react@4.7.0(vite@6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0))": - 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-beta.27 - "@types/babel__core": 7.20.5 - react-refresh: 0.17.0 - vite: 6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0) - transitivePeerDependencies: - - supports-color - "@vitest/coverage-v8@3.2.4(vitest@3.2.4(@types/debug@4.1.13)(@types/node@22.19.17)(happy-dom@20.8.9)(jiti@2.7.0)(jsdom@25.0.1)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0))": dependencies: "@ampproject/remapping": 2.3.0 @@ -22934,12 +18910,6 @@ snapshots: "@xtuc/long@4.2.2": {} - abbrev@3.0.1: {} - - abort-controller@3.0.0: - dependencies: - event-target-shim: 5.0.1 - acorn-import-attributes@1.9.5(acorn@8.16.0): dependencies: acorn: 8.16.0 @@ -23001,10 +18971,6 @@ snapshots: dependencies: tslib: 2.8.1 - ansi-align@3.0.1: - dependencies: - string-width: 4.2.3 - ansi-escapes@4.3.2: dependencies: type-fest: 0.21.3 @@ -23031,8 +18997,6 @@ snapshots: ansi-styles@6.2.3: {} - ansis@4.3.0: {} - anymatch@3.1.3: dependencies: normalize-path: 3.0.0 @@ -23042,30 +19006,6 @@ snapshots: dependencies: default-require-extensions: 3.0.1 - archiver-utils@5.0.2: - dependencies: - glob: 10.5.0 - graceful-fs: 4.2.11 - is-stream: 2.0.1 - lazystream: 1.0.1 - lodash: 4.18.1 - normalize-path: 3.0.0 - readable-stream: 4.7.0 - - archiver@7.0.1: - dependencies: - archiver-utils: 5.0.2 - async: 3.2.6 - buffer-crc32: 1.0.0 - readable-stream: 4.7.0 - readdir-glob: 1.1.3 - tar-stream: 3.2.0 - zip-stream: 6.0.1 - transitivePeerDependencies: - - bare-abort-controller - - bare-buffer - - react-native-b4a - archy@1.0.0: {} argparse@1.0.10: @@ -23092,8 +19032,6 @@ snapshots: estree-walker: 3.0.3 js-tokens: 10.0.0 - async-sema@3.1.1: {} - async@3.2.6: {} asynckit@0.4.0: {} @@ -23116,17 +19054,6 @@ snapshots: transitivePeerDependencies: - debug - b4a@1.8.1: {} - - babel-dead-code-elimination@1.0.12: - dependencies: - "@babel/core": 7.29.0 - "@babel/parser": 7.29.2 - "@babel/traverse": 7.29.0 - "@babel/types": 7.29.0 - transitivePeerDependencies: - - supports-color - babel-jest@29.7.0(@babel/core@7.29.0): dependencies: "@babel/core": 7.29.0 @@ -23192,40 +19119,6 @@ snapshots: balanced-match@4.0.4: {} - bare-events@2.8.3: {} - - bare-fs@4.7.1: - dependencies: - bare-events: 2.8.3 - bare-path: 3.0.0 - bare-stream: 2.13.1(bare-events@2.8.3) - bare-url: 2.4.3 - fast-fifo: 1.3.2 - transitivePeerDependencies: - - bare-abort-controller - - react-native-b4a - - bare-os@3.9.1: {} - - bare-path@3.0.0: - dependencies: - bare-os: 3.9.1 - - bare-stream@2.13.1(bare-events@2.8.3): - dependencies: - streamx: 2.25.0 - teex: 1.0.1 - optionalDependencies: - bare-events: 2.8.3 - transitivePeerDependencies: - - react-native-b4a - - bare-url@2.4.3: - dependencies: - bare-path: 3.0.0 - - base64-js@1.5.1: {} - baseline-browser-mapping@2.10.15: {} basic-auth@2.0.1: @@ -23238,25 +19131,8 @@ snapshots: binary-extensions@2.3.0: {} - bindings@1.5.0: - dependencies: - file-uri-to-path: 1.0.0 - body-scroll-lock@4.0.0-beta.0: {} - boolbase@1.0.0: {} - - boxen@7.1.1: - dependencies: - ansi-align: 3.0.1 - camelcase: 7.0.1 - chalk: 5.6.2 - cli-boxes: 3.0.0 - string-width: 5.1.2 - type-fest: 2.19.0 - widest-line: 4.0.1 - wrap-ansi: 8.1.0 - brace-expansion@1.1.13: dependencies: balanced-match: 1.0.2 @@ -23290,40 +19166,12 @@ snapshots: bson-objectid@2.0.4: {} - buffer-crc32@1.0.0: {} - buffer-from@1.1.2: {} - buffer@6.0.3: - dependencies: - base64-js: 1.5.1 - ieee754: 1.2.1 - - bundle-name@4.1.0: - dependencies: - run-applescript: 7.1.0 - busboy@1.6.0: dependencies: streamsearch: 1.1.0 - c12@3.3.4(magicast@0.5.3): - dependencies: - chokidar: 5.0.0 - confbox: 0.2.4 - defu: 6.1.7 - dotenv: 17.4.2 - exsolve: 1.0.8 - giget: 3.2.0 - jiti: 2.7.0 - ohash: 2.0.11 - pathe: 2.0.3 - perfect-debounce: 2.1.0 - pkg-types: 2.3.1 - rc9: 3.0.1 - optionalDependencies: - magicast: 0.5.3 - cac@6.7.14: {} caching-transform@4.0.0: @@ -23356,8 +19204,6 @@ snapshots: camelcase@6.3.0: {} - camelcase@7.0.1: {} - caniuse-lite@1.0.30001786: {} ccount@2.0.1: {} @@ -23405,29 +19251,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.24.4 - whatwg-mimetype: 4.0.0 - chokidar@3.6.0: dependencies: anymatch: 3.1.3 @@ -23444,32 +19267,18 @@ snapshots: dependencies: readdirp: 4.1.2 - chokidar@5.0.0: - dependencies: - readdirp: 5.0.0 - - chownr@3.0.0: {} - chrome-trace-event@1.0.4: {} ci-info@3.9.0: {} ci-info@4.4.0: {} - citty@0.1.6: - dependencies: - consola: 3.4.2 - - citty@0.2.2: {} - cjs-module-lexer@1.4.3: {} cjs-module-lexer@2.2.0: {} clean-stack@2.2.0: {} - cli-boxes@3.0.0: {} - cli-cursor@5.0.0: dependencies: restore-cursor: 5.1.0 @@ -23483,12 +19292,6 @@ snapshots: client-only@0.0.1: {} - clipboardy@4.0.0: - dependencies: - execa: 8.0.1 - is-wsl: 3.1.1 - is64bit: 2.0.0 - cliui@6.0.0: dependencies: string-width: 4.2.3 @@ -23501,15 +19304,10 @@ snapshots: strip-ansi: 6.0.1 wrap-ansi: 7.0.0 - cliui@9.0.1: - dependencies: - string-width: 7.2.0 - strip-ansi: 7.2.0 - wrap-ansi: 9.0.2 - clsx@2.1.1: {} - cluster-key-slot@1.1.2: {} + cluster-key-slot@1.1.2: + optional: true co@4.6.0: {} @@ -23553,16 +19351,6 @@ snapshots: commondir@1.0.1: {} - compatx@0.2.0: {} - - compress-commons@6.0.2: - dependencies: - crc-32: 1.2.2 - crc32-stream: 6.0.0 - is-stream: 2.0.1 - normalize-path: 3.0.0 - readable-stream: 4.7.0 - concat-map@0.0.1: {} concurrently@9.2.1: @@ -23574,12 +19362,6 @@ snapshots: tree-kill: 1.2.2 yargs: 17.7.2 - confbox@0.1.8: {} - - confbox@0.2.4: {} - - consola@3.4.2: {} - console-table-printer@2.12.1: dependencies: simple-wcswidth: 1.1.2 @@ -23588,18 +19370,10 @@ snapshots: convert-source-map@2.0.0: {} - cookie-es@1.2.3: {} - - cookie-es@2.0.1: {} - - cookie-es@3.1.1: {} - copy-anything@4.0.5: dependencies: is-what: 5.5.0 - core-util-is@1.0.3: {} - corser@2.0.1: {} cosmiconfig@7.1.0: @@ -23610,13 +19384,6 @@ snapshots: path-type: 4.0.0 yaml: 1.10.3 - crc-32@1.2.2: {} - - crc32-stream@6.0.0: - dependencies: - crc-32: 1.2.2 - readable-stream: 4.7.0 - create-jest@29.7.0(@types/node@22.19.17)(babel-plugin-macros@3.1.0): dependencies: "@jest/types": 29.6.3 @@ -23632,8 +19399,6 @@ snapshots: - supports-color - ts-node - croner@10.0.1: {} - croner@9.1.0: {} cross-spawn@7.0.6: @@ -23642,22 +19407,8 @@ snapshots: shebang-command: 2.0.0 which: 2.0.2 - crossws@0.3.5: - dependencies: - uncrypto: 0.1.3 - crypt@0.0.2: {} - css-select@5.2.2: - dependencies: - boolbase: 1.0.0 - css-what: 6.2.2 - domhandler: 5.0.3 - domutils: 3.2.2 - nth-check: 2.1.1 - - css-what@6.2.2: {} - css.escape@1.5.1: {} cssfilter@0.0.10: {} @@ -23689,19 +19440,6 @@ snapshots: dateformat@4.6.3: {} - dax-sh@0.39.2: - dependencies: - "@deno/shim-deno": 0.19.2 - undici-types: 5.28.4 - - db0@0.3.4(drizzle-orm@0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3)): - optionalDependencies: - drizzle-orm: 0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3) - - debug@2.6.9: - dependencies: - ms: 2.0.0 - debug@3.2.7: dependencies: ms: 2.1.3 @@ -23728,13 +19466,6 @@ snapshots: deepmerge@4.3.1: {} - default-browser-id@5.0.1: {} - - default-browser@5.5.0: - dependencies: - bundle-name: 4.1.0 - default-browser-id: 5.0.1 - default-require-extensions@3.0.1: dependencies: strip-bom: 4.0.0 @@ -23747,15 +19478,10 @@ snapshots: define-lazy-prop@2.0.0: {} - define-lazy-prop@3.0.0: {} - - defu@6.1.7: {} - delayed-stream@1.0.0: {} - denque@2.1.0: {} - - depd@2.0.0: {} + denque@2.1.0: + optional: true dequal@2.0.3: {} @@ -23764,10 +19490,6 @@ snapshots: inherits: 2.0.4 minimalistic-assert: 1.0.1 - destr@2.0.5: {} - - destroy@1.2.0: {} - detect-libc@2.1.2: {} detect-newline@3.1.0: {} @@ -23780,8 +19502,6 @@ snapshots: diff-sequences@29.6.3: {} - diff@8.0.4: {} - diffable-html@4.1.0: dependencies: htmlparser2: 3.10.1 @@ -23804,12 +19524,6 @@ snapshots: domelementtype: 2.3.0 entities: 2.2.0 - dom-serializer@2.0.0: - dependencies: - domelementtype: 2.3.0 - domhandler: 5.0.3 - entities: 4.5.0 - domelementtype@1.3.1: {} domelementtype@2.3.0: {} @@ -23818,10 +19532,6 @@ snapshots: dependencies: domelementtype: 1.3.1 - domhandler@5.0.3: - dependencies: - domelementtype: 2.3.0 - dompurify@3.2.7: optionalDependencies: "@types/trusted-types": 2.0.7 @@ -23831,16 +19541,6 @@ snapshots: dom-serializer: 0.2.2 domelementtype: 1.3.1 - domutils@3.2.2: - dependencies: - dom-serializer: 2.0.0 - domelementtype: 2.3.0 - domhandler: 5.0.3 - - dot-prop@10.1.0: - dependencies: - type-fest: 5.6.0 - dotenv-cli@11.0.0: dependencies: cross-spawn: 7.0.6 @@ -23873,25 +19573,14 @@ snapshots: "@types/pg": 8.10.2 pg: 8.16.3 - drizzle-orm@0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3): - optionalDependencies: - "@opentelemetry/api": 1.9.1 - "@types/pg": 8.15.6 - pg: 8.16.3 - optional: true - dunder-proto@1.0.1: dependencies: call-bind-apply-helpers: 1.0.2 es-errors: 1.3.0 gopd: 1.2.0 - duplexer@0.1.2: {} - eastasianwidth@0.2.0: {} - ee-first@1.1.1: {} - effect@3.21.2: dependencies: "@standard-schema/spec": 1.1.0 @@ -23909,13 +19598,6 @@ snapshots: emoji-regex@9.2.2: {} - encodeurl@2.0.0: {} - - 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 @@ -23934,8 +19616,6 @@ snapshots: entities@2.2.0: {} - entities@4.5.0: {} - entities@6.0.1: {} entities@7.0.1: {} @@ -23946,8 +19626,6 @@ snapshots: dependencies: is-arrayish: 0.2.1 - error-stack-parser-es@1.0.5: {} - es-define-property@1.0.1: {} es-errors@1.3.0: {} @@ -24001,32 +19679,6 @@ snapshots: "@esbuild/win32-ia32": 0.18.20 "@esbuild/win32-x64": 0.18.20 - esbuild@0.20.2: - optionalDependencies: - "@esbuild/aix-ppc64": 0.20.2 - "@esbuild/android-arm": 0.20.2 - "@esbuild/android-arm64": 0.20.2 - "@esbuild/android-x64": 0.20.2 - "@esbuild/darwin-arm64": 0.20.2 - "@esbuild/darwin-x64": 0.20.2 - "@esbuild/freebsd-arm64": 0.20.2 - "@esbuild/freebsd-x64": 0.20.2 - "@esbuild/linux-arm": 0.20.2 - "@esbuild/linux-arm64": 0.20.2 - "@esbuild/linux-ia32": 0.20.2 - "@esbuild/linux-loong64": 0.20.2 - "@esbuild/linux-mips64el": 0.20.2 - "@esbuild/linux-ppc64": 0.20.2 - "@esbuild/linux-riscv64": 0.20.2 - "@esbuild/linux-s390x": 0.20.2 - "@esbuild/linux-x64": 0.20.2 - "@esbuild/netbsd-x64": 0.20.2 - "@esbuild/openbsd-x64": 0.20.2 - "@esbuild/sunos-x64": 0.20.2 - "@esbuild/win32-arm64": 0.20.2 - "@esbuild/win32-ia32": 0.20.2 - "@esbuild/win32-x64": 0.20.2 - esbuild@0.25.12: optionalDependencies: "@esbuild/aix-ppc64": 0.25.12 @@ -24085,35 +19737,6 @@ snapshots: "@esbuild/win32-ia32": 0.27.7 "@esbuild/win32-x64": 0.27.7 - esbuild@0.28.0: - optionalDependencies: - "@esbuild/aix-ppc64": 0.28.0 - "@esbuild/android-arm": 0.28.0 - "@esbuild/android-arm64": 0.28.0 - "@esbuild/android-x64": 0.28.0 - "@esbuild/darwin-arm64": 0.28.0 - "@esbuild/darwin-x64": 0.28.0 - "@esbuild/freebsd-arm64": 0.28.0 - "@esbuild/freebsd-x64": 0.28.0 - "@esbuild/linux-arm": 0.28.0 - "@esbuild/linux-arm64": 0.28.0 - "@esbuild/linux-ia32": 0.28.0 - "@esbuild/linux-loong64": 0.28.0 - "@esbuild/linux-mips64el": 0.28.0 - "@esbuild/linux-ppc64": 0.28.0 - "@esbuild/linux-riscv64": 0.28.0 - "@esbuild/linux-s390x": 0.28.0 - "@esbuild/linux-x64": 0.28.0 - "@esbuild/netbsd-arm64": 0.28.0 - "@esbuild/netbsd-x64": 0.28.0 - "@esbuild/openbsd-arm64": 0.28.0 - "@esbuild/openbsd-x64": 0.28.0 - "@esbuild/openharmony-arm64": 0.28.0 - "@esbuild/sunos-x64": 0.28.0 - "@esbuild/win32-arm64": 0.28.0 - "@esbuild/win32-ia32": 0.28.0 - "@esbuild/win32-x64": 0.28.0 - escalade@3.2.0: {} escape-html@1.0.3: {} @@ -24124,8 +19747,6 @@ snapshots: escape-string-regexp@4.0.0: {} - escape-string-regexp@5.0.0: {} - eslint-config-prettier@10.1.8(eslint@9.39.4(jiti@2.7.0)): dependencies: eslint: 9.39.4(jiti@2.7.0) @@ -24259,20 +19880,10 @@ snapshots: esutils@2.0.3: {} - etag@1.8.1: {} - - event-target-shim@5.0.1: {} - eventemitter3@4.0.7: {} eventemitter3@5.0.4: {} - events-universal@1.0.1: - dependencies: - bare-events: 2.8.3 - transitivePeerDependencies: - - bare-abort-controller - events@3.3.0: {} execa@5.1.1: @@ -24287,18 +19898,6 @@ snapshots: signal-exit: 3.0.7 strip-final-newline: 2.0.0 - execa@8.0.1: - dependencies: - cross-spawn: 7.0.6 - get-stream: 8.0.1 - human-signals: 5.0.0 - is-stream: 3.0.0 - merge-stream: 2.0.0 - npm-run-path: 5.3.0 - onetime: 6.0.0 - signal-exit: 4.1.0 - strip-final-newline: 3.0.0 - execa@9.4.1: dependencies: "@sindresorhus/merge-streams": 4.0.0 @@ -24341,8 +19940,6 @@ snapshots: jest-mock: 30.4.1 jest-util: 30.4.1 - exsolve@1.0.8: {} - external-editor@3.1.0: dependencies: chardet: 0.7.0 @@ -24370,16 +19967,6 @@ snapshots: fast-deep-equal@3.1.3: {} - fast-fifo@1.3.2: {} - - fast-glob@3.3.3: - dependencies: - "@nodelib/fs.stat": 2.0.5 - "@nodelib/fs.walk": 1.2.8 - glob-parent: 5.1.2 - merge2: 1.4.1 - micromatch: 4.0.8 - fast-json-stable-stringify@2.1.0: {} fast-levenshtein@2.0.6: {} @@ -24398,10 +19985,6 @@ snapshots: dependencies: fast-string-width: 3.0.2 - fastq@1.20.1: - dependencies: - reusify: 1.1.0 - fb-watchman@2.0.2: dependencies: bser: 2.1.1 @@ -24410,8 +19993,6 @@ snapshots: optionalDependencies: picomatch: 4.0.4 - fetchdts@0.1.7: {} - figures@6.1.0: dependencies: is-unicode-supported: 2.1.0 @@ -24429,8 +20010,6 @@ snapshots: transitivePeerDependencies: - supports-color - file-uri-to-path@1.0.0: {} - file-url@4.0.0: {} fill-range@7.1.1: @@ -24509,10 +20088,6 @@ snapshots: forwarded-parse@2.1.2: {} - fresh@0.5.2: {} - - fresh@2.0.0: {} - fromentries@1.3.2: {} fs-exists-sync@0.1.0: {} @@ -24550,8 +20125,6 @@ snapshots: get-package-type@0.1.0: {} - get-port-please@3.2.0: {} - get-proto@1.0.1: dependencies: dunder-proto: 1.0.1 @@ -24559,8 +20132,6 @@ snapshots: get-stream@6.0.1: {} - get-stream@8.0.1: {} - get-stream@9.0.1: dependencies: "@sec-ant/readable-stream": 0.4.1 @@ -24574,8 +20145,6 @@ snapshots: dependencies: resolve-pkg-maps: 1.0.0 - giget@3.2.0: {} - glob-parent@5.1.2: dependencies: is-glob: 4.0.3 @@ -24626,15 +20195,6 @@ snapshots: globals@17.6.0: {} - globby@16.2.0: - dependencies: - "@sindresorhus/merge-streams": 4.0.0 - fast-glob: 3.3.3 - ignore: 7.0.5 - is-path-inside: 4.0.0 - slash: 5.1.0 - unicorn-magic: 0.4.0 - gopd@1.2.0: {} graceful-fs@4.2.11: {} @@ -24654,40 +20214,6 @@ snapshots: graphql@16.13.2: {} - gzip-size@7.0.0: - dependencies: - duplexer: 0.1.2 - - h3@1.13.0: - dependencies: - cookie-es: 1.2.3 - crossws: 0.3.5 - defu: 6.1.7 - destr: 2.0.5 - iron-webcrypto: 1.2.1 - ohash: 1.1.6 - radix3: 1.1.2 - ufo: 1.6.4 - uncrypto: 0.1.3 - unenv: 1.10.0 - - h3@1.15.11: - dependencies: - cookie-es: 1.2.3 - crossws: 0.3.5 - defu: 6.1.7 - destr: 2.0.5 - iron-webcrypto: 1.2.1 - node-mock-http: 1.0.4 - radix3: 1.1.2 - ufo: 1.6.4 - uncrypto: 0.1.3 - - h3@2.0.1-rc.20: - dependencies: - rou3: 0.8.1 - srvx: 0.11.15 - happy-dom@20.8.9: dependencies: "@types/node": 22.19.17 @@ -24735,8 +20261,6 @@ snapshots: dependencies: parse-passwd: 1.0.0 - hookable@5.5.3: {} - html-encoding-sniffer@3.0.0: dependencies: whatwg-encoding: 2.0.0 @@ -24747,13 +20271,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@3.10.1: dependencies: domelementtype: 1.3.1 @@ -24763,14 +20280,6 @@ snapshots: inherits: 2.0.4 readable-stream: 3.6.2 - http-errors@2.0.1: - dependencies: - depd: 2.0.0 - inherits: 2.0.4 - setprototypeof: 1.2.0 - statuses: 2.0.2 - toidentifier: 1.0.1 - http-proxy-agent@7.0.2: dependencies: agent-base: 7.1.4 @@ -24805,8 +20314,6 @@ snapshots: - debug - supports-color - http-shutdown@1.2.2: {} - http-status@2.1.0: {} https-proxy-agent@5.0.1: @@ -24823,12 +20330,8 @@ snapshots: transitivePeerDependencies: - supports-color - httpxy@0.5.2: {} - human-signals@2.1.0: {} - human-signals@5.0.0: {} - human-signals@8.0.1: {} husky@9.1.7: {} @@ -24888,8 +20391,6 @@ snapshots: pkg-dir: 4.2.0 resolve-cwd: 3.0.0 - import-meta-resolve@4.2.0: {} - imurmurhash@0.1.4: {} indent-string@4.0.0: {} @@ -24924,11 +20425,10 @@ snapshots: standard-as-callback: 2.1.0 transitivePeerDependencies: - supports-color + optional: true ipaddr.js@2.2.0: {} - iron-webcrypto@1.2.1: {} - is-alphabetical@2.0.1: {} is-alphanumerical@2.0.1: @@ -24961,8 +20461,6 @@ snapshots: is-docker@2.2.1: {} - is-docker@3.0.0: {} - is-extglob@2.1.1: {} is-fullwidth-code-point@3.0.0: {} @@ -24987,18 +20485,8 @@ snapshots: is-hexadecimal@2.0.1: {} - is-in-ssh@1.0.0: {} - - is-inside-container@1.0.0: - dependencies: - is-docker: 3.0.0 - - is-module@1.0.0: {} - is-number@7.0.0: {} - is-path-inside@4.0.0: {} - is-plain-obj@4.1.0: {} is-potential-custom-element-name@1.0.1: {} @@ -25016,8 +20504,6 @@ snapshots: is-stream@2.0.1: {} - is-stream@3.0.0: {} - is-stream@4.0.1: {} is-typed-array@1.1.15: @@ -25038,22 +20524,8 @@ snapshots: dependencies: is-docker: 2.2.1 - is-wsl@3.1.1: - dependencies: - is-inside-container: 1.0.0 - - is64bit@2.0.0: - dependencies: - system-architecture: 0.1.0 - - isarray@1.0.0: {} - - isbot@5.1.37: {} - isexe@2.0.0: {} - isexe@3.1.5: {} - isomorphic.js@0.2.5: {} istanbul-lib-coverage@3.2.2: {} @@ -25561,8 +21033,6 @@ snapshots: - supports-color - ts-node - jiti@1.21.7: {} - jiti@2.6.1: {} jiti@2.7.0: {} @@ -25597,11 +21067,6 @@ snapshots: js-tokens@9.0.1: {} - js-yaml@3.14.1: - dependencies: - argparse: 1.0.10 - esprima: 4.0.1 - js-yaml@3.14.2: dependencies: argparse: 1.0.10 @@ -25677,18 +21142,8 @@ snapshots: kleur@3.0.3: {} - kleur@4.1.5: {} - - klona@2.0.6: {} - - knitwork@1.3.0: {} - kubernetes-types@1.30.0: {} - lazystream@1.0.1: - dependencies: - readable-stream: 2.3.8 - leven@3.1.0: {} levn@0.4.1: @@ -25762,27 +21217,6 @@ snapshots: tinyexec: 1.1.2 yaml: 2.9.0 - listhen@1.10.0: - dependencies: - "@parcel/watcher": 2.5.6 - "@parcel/watcher-wasm": 2.5.6 - citty: 0.2.2 - consola: 3.4.2 - crossws: 0.3.5 - defu: 6.1.7 - get-port-please: 3.2.0 - h3: 1.15.11 - http-shutdown: 1.2.2 - jiti: 2.7.0 - mlly: 1.8.2 - node-forge: 1.4.0 - pathe: 2.0.3 - std-env: 4.1.0 - tinyclip: 0.1.12 - ufo: 1.6.4 - untun: 0.1.3 - uqr: 0.1.3 - listr2@9.0.5: dependencies: cli-truncate: 5.2.0 @@ -25794,12 +21228,6 @@ snapshots: loader-runner@4.3.2: {} - local-pkg@1.2.0: - dependencies: - mlly: 1.8.2 - pkg-types: 2.3.1 - quansync: 1.0.0 - locate-path@5.0.0: dependencies: p-locate: 4.1.0 @@ -25810,13 +21238,15 @@ snapshots: lodash.camelcase@4.3.0: {} - lodash.defaults@4.2.0: {} + lodash.defaults@4.2.0: + optional: true lodash.flattendeep@4.4.0: {} lodash.groupby@4.6.0: {} - lodash.isarguments@3.1.0: {} + lodash.isarguments@3.1.0: + optional: true lodash.merge@4.6.2: {} @@ -25866,12 +21296,6 @@ snapshots: "@babel/types": 7.29.0 source-map-js: 1.2.1 - magicast@0.5.3: - dependencies: - "@babel/parser": 7.29.3 - "@babel/types": 7.29.0 - source-map-js: 1.2.1 - make-dir@3.1.0: dependencies: semver: 6.3.1 @@ -25959,8 +21383,6 @@ snapshots: merge-stream@2.0.0: {} - merge2@1.4.1: {} - micromark-core-commonmark@2.0.3: dependencies: decode-named-character-reference: 1.3.0 @@ -26135,11 +21557,6 @@ snapshots: braces: 3.0.3 picomatch: 2.3.2 - micromatch@4.0.8: - dependencies: - braces: 3.0.3 - picomatch: 2.3.2 - mime-db@1.52.0: {} mime-db@1.54.0: {} @@ -26148,20 +21565,12 @@ snapshots: dependencies: mime-db: 1.52.0 - mime-types@3.0.2: - dependencies: - mime-db: 1.54.0 - mime@1.6.0: {} mime@3.0.0: {} - mime@4.1.0: {} - mimic-fn@2.1.0: {} - mimic-fn@4.0.0: {} - mimic-function@5.0.1: {} min-indent@1.0.1: {} @@ -26176,10 +21585,6 @@ snapshots: dependencies: brace-expansion: 1.1.13 - minimatch@5.1.9: - dependencies: - brace-expansion: 2.0.3 - minimatch@9.0.9: dependencies: brace-expansion: 2.0.3 @@ -26188,19 +21593,8 @@ snapshots: minipass@7.1.3: {} - minizlib@3.1.0: - dependencies: - minipass: 7.1.3 - mkdirp@1.0.4: {} - mlly@1.8.2: - dependencies: - acorn: 8.16.0 - pathe: 2.0.3 - pkg-types: 1.3.1 - ufo: 1.6.4 - module-details-from-path@1.0.4: {} monaco-editor@0.55.1: @@ -26208,8 +21602,6 @@ snapshots: dompurify: 3.2.7 marked: 14.0.0 - ms@2.0.0: {} - ms@2.1.3: {} msgpackr-extract@3.0.3: @@ -26303,160 +21695,36 @@ snapshots: - "@babel/core" - babel-plugin-macros - nitropack@2.13.4(drizzle-orm@0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3)): - dependencies: - "@cloudflare/kv-asset-handler": 0.4.2 - "@rollup/plugin-alias": 6.0.0(rollup@4.60.4) - "@rollup/plugin-commonjs": 29.0.2(rollup@4.60.4) - "@rollup/plugin-inject": 5.0.5(rollup@4.60.4) - "@rollup/plugin-json": 6.1.0(rollup@4.60.4) - "@rollup/plugin-node-resolve": 16.0.3(rollup@4.60.4) - "@rollup/plugin-replace": 6.0.3(rollup@4.60.4) - "@rollup/plugin-terser": 1.0.0(rollup@4.60.4) - "@vercel/nft": 1.5.0(rollup@4.60.4) - archiver: 7.0.1 - c12: 3.3.4(magicast@0.5.3) - chokidar: 5.0.0 - citty: 0.2.2 - compatx: 0.2.0 - confbox: 0.2.4 - consola: 3.4.2 - cookie-es: 2.0.1 - croner: 10.0.1 - crossws: 0.3.5 - db0: 0.3.4(drizzle-orm@0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3)) - defu: 6.1.7 - destr: 2.0.5 - dot-prop: 10.1.0 - esbuild: 0.28.0 - escape-string-regexp: 5.0.0 - etag: 1.8.1 - exsolve: 1.0.8 - globby: 16.2.0 - gzip-size: 7.0.0 - h3: 1.15.11 - hookable: 5.5.3 - httpxy: 0.5.2 - ioredis: 5.10.1 - jiti: 2.6.1 - klona: 2.0.6 - knitwork: 1.3.0 - listhen: 1.10.0 - magic-string: 0.30.21 - magicast: 0.5.3 - mime: 4.1.0 - mlly: 1.8.2 - node-fetch-native: 1.6.7 - node-mock-http: 1.0.4 - ofetch: 1.5.1 - ohash: 2.0.11 - pathe: 2.0.3 - perfect-debounce: 2.1.0 - pkg-types: 2.3.1 - pretty-bytes: 7.1.0 - radix3: 1.1.2 - rollup: 4.60.4 - rollup-plugin-visualizer: 7.0.1(rollup@4.60.4) - scule: 1.3.0 - semver: 7.7.4 - serve-placeholder: 2.0.2 - serve-static: 2.2.1 - source-map: 0.7.6 - std-env: 4.1.0 - ufo: 1.6.4 - ultrahtml: 1.6.0 - uncrypto: 0.1.3 - unctx: 2.5.0 - unenv: 2.0.0-rc.24 - unimport: 6.3.0 - unplugin-utils: 0.3.1 - unstorage: 1.17.5(db0@0.3.4(drizzle-orm@0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3)))(ioredis@5.10.1) - untyped: 2.0.0 - unwasm: 0.5.3 - youch: 4.1.1 - youch-core: 0.3.3 - 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 - - bare-abort-controller - - bare-buffer - - better-sqlite3 - - drizzle-orm - - encoding - - idb-keyval - - mysql2 - - oxc-parser - - react-native-b4a - - rolldown - - sqlite3 - - supports-color - - uploadthing - node-addon-api@7.1.1: {} - node-fetch-native@1.6.7: {} - node-fetch@2.7.0: dependencies: whatwg-url: 5.0.0 - node-forge@1.4.0: {} - node-gyp-build-optional-packages@5.2.2: dependencies: detect-libc: 2.1.2 optional: true - node-gyp-build@4.8.4: {} - node-int64@0.4.0: {} - node-mock-http@1.0.4: {} - node-preload@0.2.1: dependencies: process-on-spawn: 1.1.0 node-releases@2.0.37: {} - nopt@8.1.0: - dependencies: - abbrev: 3.0.1 - normalize-path@3.0.0: {} npm-run-path@4.0.1: dependencies: path-key: 3.1.1 - npm-run-path@5.3.0: - dependencies: - path-key: 4.0.0 - npm-run-path@6.0.0: dependencies: path-key: 4.0.0 unicorn-magic: 0.3.0 - nth-check@2.1.1: - dependencies: - boolbase: 1.0.0 - nwsapi@2.2.23: {} nyc@15.1.0: @@ -26499,22 +21767,8 @@ snapshots: obuf@1.1.2: {} - ofetch@1.5.1: - dependencies: - destr: 2.0.5 - node-fetch-native: 1.6.7 - ufo: 1.6.4 - - ohash@1.1.6: {} - - ohash@2.0.11: {} - on-exit-leak-free@2.1.2: {} - on-finished@2.4.1: - dependencies: - ee-first: 1.1.1 - once@1.4.0: dependencies: wrappy: 1.0.2 @@ -26523,23 +21777,10 @@ snapshots: dependencies: mimic-fn: 2.1.0 - onetime@6.0.0: - dependencies: - mimic-fn: 4.0.0 - onetime@7.0.0: dependencies: mimic-function: 5.0.1 - open@11.0.0: - dependencies: - default-browser: 5.5.0 - define-lazy-prop: 3.0.0 - is-in-ssh: 1.0.0 - is-inside-container: 1.0.0 - powershell-utils: 0.1.0 - wsl-utils: 0.3.1 - open@8.4.2: dependencies: define-lazy-prop: 2.0.0 @@ -26617,21 +21858,10 @@ snapshots: parse-passwd@1.0.0: {} - 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 - parseurl@1.3.3: {} - path-exists@4.0.0: {} path-is-absolute@1.0.1: {} @@ -26656,8 +21886,6 @@ snapshots: path-type@4.0.0: {} - pathe@1.1.2: {} - pathe@2.0.3: {} pathval@2.0.1: {} @@ -26702,8 +21930,6 @@ snapshots: - typescript - utf-8-validate - perfect-debounce@2.1.0: {} - pg-cloudflare@1.3.0: optional: true @@ -26799,18 +22025,6 @@ snapshots: dependencies: find-up: 4.1.0 - pkg-types@1.3.1: - dependencies: - confbox: 0.1.8 - mlly: 1.8.2 - pathe: 2.0.3 - - pkg-types@2.3.1: - dependencies: - confbox: 0.2.4 - exsolve: 1.0.8 - pathe: 2.0.3 - playwright-core@1.59.1: {} playwright@1.59.1: @@ -26874,14 +22088,10 @@ snapshots: postgres-range@1.1.4: {} - powershell-utils@0.1.0: {} - prelude-ls@1.2.1: {} prettier@3.8.1: {} - pretty-bytes@7.1.0: {} - pretty-format@27.5.1: dependencies: ansi-regex: 5.0.1 @@ -26907,8 +22117,6 @@ snapshots: prismjs@1.30.0: {} - process-nextick-args@2.0.1: {} - process-on-spawn@1.1.0: dependencies: fromentries: 1.3.2 @@ -26964,21 +22172,10 @@ snapshots: dependencies: side-channel: 1.1.0 - quansync@1.0.0: {} - - queue-microtask@1.2.3: {} - quick-format-unescaped@4.0.4: {} - radix3@1.1.2: {} - range-parser@1.2.1: {} - rc9@3.0.1: - dependencies: - defu: 6.1.7 - destr: 2.0.5 - react-datepicker@7.6.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4): dependencies: "@floating-ui/react": 0.27.19(react-dom@19.2.4(react@19.2.4))(react@19.2.4) @@ -27032,8 +22229,6 @@ snapshots: react-is@19.2.6: {} - react-refresh@0.17.0: {} - react-select@5.9.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4): dependencies: "@babel/runtime": 7.29.2 @@ -27062,42 +22257,18 @@ snapshots: react@19.2.4: {} - readable-stream@2.3.8: - dependencies: - core-util-is: 1.0.3 - inherits: 2.0.4 - isarray: 1.0.0 - process-nextick-args: 2.0.1 - safe-buffer: 5.1.2 - string_decoder: 1.1.1 - util-deprecate: 1.0.2 - readable-stream@3.6.2: dependencies: inherits: 2.0.4 string_decoder: 1.3.0 util-deprecate: 1.0.2 - readable-stream@4.7.0: - dependencies: - abort-controller: 3.0.0 - buffer: 6.0.3 - events: 3.3.0 - process: 0.11.10 - string_decoder: 1.3.0 - - readdir-glob@1.1.3: - dependencies: - minimatch: 5.1.9 - readdirp@3.6.0: dependencies: picomatch: 2.3.2 readdirp@4.1.2: {} - readdirp@5.0.0: {} - real-require@0.2.0: {} recast@0.23.11: @@ -27113,11 +22284,13 @@ snapshots: indent-string: 4.0.0 strip-indent: 3.0.0 - redis-errors@1.2.0: {} + redis-errors@1.2.0: + optional: true redis-parser@3.0.0: dependencies: redis-errors: 1.2.0 + optional: true reflect-metadata@0.2.2: {} @@ -27176,23 +22349,12 @@ snapshots: onetime: 7.0.0 signal-exit: 4.1.0 - reusify@1.1.0: {} - rfdc@1.4.1: {} rimraf@3.0.2: dependencies: glob: 7.2.3 - rollup-plugin-visualizer@7.0.1(rollup@4.60.4): - dependencies: - open: 11.0.0 - picomatch: 4.0.4 - source-map: 0.7.6 - yargs: 18.0.0 - optionalDependencies: - rollup: 4.60.4 - rollup@4.60.1: dependencies: "@types/estree": 1.0.8 @@ -27254,19 +22416,12 @@ snapshots: "@rollup/rollup-win32-x64-gnu": 4.60.4 "@rollup/rollup-win32-x64-msvc": 4.60.4 fsevents: 2.3.3 - - rou3@0.8.1: {} + optional: true rrweb-cssom@0.7.1: {} rrweb-cssom@0.8.0: {} - run-applescript@7.1.0: {} - - run-parallel@1.2.0: - dependencies: - queue-microtask: 1.2.3 - rxjs@7.8.2: dependencies: tslib: 2.8.1 @@ -27318,8 +22473,6 @@ snapshots: ajv-formats: 2.1.1(ajv@8.18.0) ajv-keywords: 5.1.0(ajv@8.18.0) - scule@1.3.0: {} - secure-compare@3.0.1: {} secure-json-parse@4.1.0: {} @@ -27330,76 +22483,6 @@ snapshots: semver@7.7.4: {} - send@0.19.2: - dependencies: - debug: 2.6.9 - depd: 2.0.0 - destroy: 1.2.0 - encodeurl: 2.0.0 - escape-html: 1.0.3 - etag: 1.8.1 - fresh: 0.5.2 - http-errors: 2.0.1 - mime: 1.6.0 - ms: 2.1.3 - on-finished: 2.4.1 - range-parser: 1.2.1 - statuses: 2.0.2 - transitivePeerDependencies: - - supports-color - - send@1.2.1: - dependencies: - debug: 4.4.3 - encodeurl: 2.0.0 - escape-html: 1.0.3 - etag: 1.8.1 - fresh: 2.0.0 - http-errors: 2.0.1 - mime-types: 3.0.2 - ms: 2.1.3 - on-finished: 2.4.1 - range-parser: 1.2.1 - statuses: 2.0.2 - transitivePeerDependencies: - - supports-color - - serialize-javascript@7.0.5: {} - - seroval-plugins@1.5.2(seroval@1.5.2): - dependencies: - seroval: 1.5.2 - - seroval-plugins@1.5.4(seroval@1.5.4): - dependencies: - seroval: 1.5.4 - - seroval@1.5.2: {} - - seroval@1.5.4: {} - - serve-placeholder@2.0.2: - dependencies: - defu: 6.1.7 - - serve-static@1.16.3: - dependencies: - encodeurl: 2.0.0 - escape-html: 1.0.3 - parseurl: 1.3.3 - send: 0.19.2 - transitivePeerDependencies: - - supports-color - - serve-static@2.2.1: - dependencies: - encodeurl: 2.0.0 - escape-html: 1.0.3 - parseurl: 1.3.3 - send: 1.2.1 - transitivePeerDependencies: - - supports-color - set-blocking@2.0.0: {} set-function-length@1.2.2: @@ -27411,8 +22494,6 @@ snapshots: gopd: 1.2.0 has-property-descriptors: 1.0.2 - setprototypeof@1.2.0: {} - sharp@0.33.5: dependencies: color: 4.2.3 @@ -27537,8 +22618,6 @@ snapshots: ansi-styles: 6.2.3 is-fullwidth-code-point: 5.1.0 - smob@1.6.2: {} - sonic-boom@4.2.1: dependencies: atomic-sleep: 1.0.0 @@ -27588,8 +22667,6 @@ snapshots: sprintf-js@1.0.3: {} - srvx@0.11.15: {} - stack-utils@2.0.6: dependencies: escape-string-regexp: 2.0.0 @@ -27600,16 +22677,13 @@ snapshots: dependencies: type-fest: 0.7.1 - standard-as-callback@2.1.0: {} + standard-as-callback@2.1.0: + optional: true state-local@1.0.7: {} - statuses@2.0.2: {} - std-env@3.10.0: {} - std-env@4.1.0: {} - storybook@8.6.18(prettier@3.8.1): dependencies: "@storybook/core": 8.6.18(prettier@3.8.1)(storybook@8.6.18(prettier@3.8.1)) @@ -27622,15 +22696,6 @@ snapshots: streamsearch@1.1.0: {} - streamx@2.25.0: - dependencies: - events-universal: 1.0.1 - fast-fifo: 1.3.2 - text-decoder: 1.2.7 - transitivePeerDependencies: - - bare-abort-controller - - react-native-b4a - string-argv@0.3.2: {} string-length@4.0.2: @@ -27666,10 +22731,6 @@ snapshots: get-east-asian-width: 1.6.0 strip-ansi: 7.2.0 - string_decoder@1.1.1: - dependencies: - safe-buffer: 5.1.2 - string_decoder@1.3.0: dependencies: safe-buffer: 5.2.1 @@ -27693,8 +22754,6 @@ snapshots: strip-final-newline@2.0.0: {} - strip-final-newline@3.0.0: {} - strip-final-newline@4.0.0: {} strip-indent@3.0.0: @@ -27728,8 +22787,6 @@ snapshots: dependencies: copy-anything: 4.0.5 - supports-color@10.2.2: {} - supports-color@5.5.0: dependencies: has-flag: 3.0.0 @@ -27746,12 +22803,8 @@ snapshots: symbol-tree@3.2.4: {} - system-architecture@0.1.0: {} - tabbable@6.4.0: {} - tagged-tag@1.0.0: {} - tailwind-merge@3.6.0: {} tailwindcss@4.2.2: {} @@ -27762,32 +22815,6 @@ snapshots: tapable@2.3.3: {} - tar-stream@3.2.0: - dependencies: - b4a: 1.8.1 - bare-fs: 4.7.1 - fast-fifo: 1.3.2 - streamx: 2.25.0 - transitivePeerDependencies: - - bare-abort-controller - - bare-buffer - - react-native-b4a - - tar@7.5.15: - dependencies: - "@isaacs/fs-minipass": 4.0.1 - chownr: 3.0.0 - minipass: 7.1.3 - minizlib: 3.1.0 - yallist: 5.0.0 - - teex@1.0.1: - dependencies: - streamx: 2.25.0 - transitivePeerDependencies: - - bare-abort-controller - - react-native-b4a - terser-webpack-plugin@5.5.0(webpack@5.106.2): dependencies: "@jridgewell/trace-mapping": 0.3.31 @@ -27815,24 +22842,14 @@ snapshots: glob: 10.5.0 minimatch: 10.2.5 - text-decoder@1.2.7: - dependencies: - b4a: 1.8.1 - transitivePeerDependencies: - - react-native-b4a - thread-stream@3.1.0: dependencies: real-require: 0.2.0 tiny-invariant@1.3.3: {} - tiny-warning@1.0.3: {} - tinybench@2.9.0: {} - tinyclip@0.1.12: {} - tinyexec@0.3.2: {} tinyexec@1.1.2: {} @@ -27842,11 +22859,6 @@ snapshots: fdir: 6.5.0(picomatch@4.0.4) picomatch: 4.0.4 - 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: {} @@ -27879,8 +22891,6 @@ snapshots: dependencies: to-no-case: 1.0.2 - toidentifier@1.0.1: {} - token-types@6.1.2: dependencies: "@borewit/text-codec": 0.2.2 @@ -27957,10 +22967,6 @@ snapshots: type-fest@2.19.0: {} - type-fest@5.6.0: - dependencies: - tagged-tag: 1.0.0 - typed-inject@4.0.0: {} typed-rest-client@2.1.0: @@ -27988,25 +22994,10 @@ snapshots: typescript@5.9.3: {} - ufo@1.6.4: {} - uint8array-extras@1.5.0: {} - ultrahtml@1.6.0: {} - - uncrypto@0.1.3: {} - - unctx@2.5.0: - dependencies: - acorn: 8.16.0 - estree-walker: 3.0.3 - magic-string: 0.30.21 - unplugin: 2.3.11 - underscore@1.13.8: {} - undici-types@5.28.4: {} - undici-types@6.21.0: {} undici-types@7.18.2: @@ -28014,39 +23005,8 @@ snapshots: undici@7.24.4: {} - unenv@1.10.0: - dependencies: - consola: 3.4.2 - defu: 6.1.7 - mime: 3.0.0 - node-fetch-native: 1.6.7 - pathe: 1.1.2 - - unenv@2.0.0-rc.24: - dependencies: - pathe: 2.0.3 - unicorn-magic@0.3.0: {} - unicorn-magic@0.4.0: {} - - unimport@6.3.0: - dependencies: - acorn: 8.16.0 - escape-string-regexp: 5.0.0 - estree-walker: 3.0.3 - local-pkg: 1.2.0 - magic-string: 0.30.21 - mlly: 1.8.2 - pathe: 2.0.3 - picomatch: 4.0.4 - pkg-types: 2.3.1 - scule: 1.3.0 - strip-literal: 3.1.0 - tinyglobby: 0.2.16 - unplugin: 3.0.0 - unplugin-utils: 0.3.1 - union@0.5.0: dependencies: qs: 6.15.1 @@ -28074,74 +23034,17 @@ snapshots: unist-util-is: 6.0.1 unist-util-visit-parents: 6.0.2 - unplugin-utils@0.3.1: - dependencies: - pathe: 2.0.3 - picomatch: 4.0.4 - unplugin@1.16.1: dependencies: acorn: 8.16.0 webpack-virtual-modules: 0.6.2 - unplugin@2.3.11: - dependencies: - "@jridgewell/remapping": 2.3.5 - acorn: 8.16.0 - picomatch: 4.0.4 - webpack-virtual-modules: 0.6.2 - - unplugin@3.0.0: - dependencies: - "@jridgewell/remapping": 2.3.5 - picomatch: 4.0.4 - webpack-virtual-modules: 0.6.2 - - unstorage@1.17.5(db0@0.3.4(drizzle-orm@0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3)))(ioredis@5.10.1): - dependencies: - anymatch: 3.1.3 - chokidar: 5.0.0 - destr: 2.0.5 - h3: 1.15.11 - lru-cache: 11.3.6 - node-fetch-native: 1.6.7 - ofetch: 1.5.1 - ufo: 1.6.4 - optionalDependencies: - db0: 0.3.4(drizzle-orm@0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3)) - ioredis: 5.10.1 - - untun@0.1.3: - dependencies: - citty: 0.1.6 - consola: 3.4.2 - pathe: 1.1.2 - - untyped@2.0.0: - dependencies: - citty: 0.1.6 - defu: 6.1.7 - jiti: 2.7.0 - knitwork: 1.3.0 - scule: 1.3.0 - - unwasm@0.5.3: - dependencies: - exsolve: 1.0.8 - knitwork: 1.3.0 - magic-string: 0.30.21 - mlly: 1.8.2 - pathe: 2.0.3 - pkg-types: 2.3.1 - update-browserslist-db@1.2.3(browserslist@4.28.2): dependencies: browserslist: 4.28.2 escalade: 3.2.0 picocolors: 1.1.1 - uqr@0.1.3: {} - uri-js@4.4.1: dependencies: punycode: 2.3.1 @@ -28159,10 +23062,6 @@ snapshots: optionalDependencies: "@types/react": 19.2.14 - use-sync-external-store@1.6.0(react@19.2.4): - dependencies: - react: 19.2.4 - utf8-byte-length@1.0.5: {} util-deprecate@1.0.2: {} @@ -28194,89 +23093,6 @@ snapshots: "@types/unist": 3.0.3 unist-util-stringify-position: 4.0.0 - vinxi@0.5.3(@types/node@22.19.17)(db0@0.3.4(drizzle-orm@0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3)))(drizzle-orm@0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3))(ioredis@5.10.1)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0): - dependencies: - "@babel/core": 7.29.0 - "@babel/plugin-syntax-jsx": 7.28.6(@babel/core@7.29.0) - "@babel/plugin-syntax-typescript": 7.28.6(@babel/core@7.29.0) - "@types/micromatch": 4.0.10 - "@vinxi/listhen": 1.5.6 - boxen: 7.1.1 - chokidar: 3.6.0 - citty: 0.1.6 - consola: 3.4.2 - crossws: 0.3.5 - dax-sh: 0.39.2 - defu: 6.1.7 - es-module-lexer: 1.7.0 - esbuild: 0.20.2 - fast-glob: 3.3.3 - get-port-please: 3.2.0 - h3: 1.13.0 - hookable: 5.5.3 - http-proxy: 1.18.1 - micromatch: 4.0.7 - nitropack: 2.13.4(drizzle-orm@0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3)) - node-fetch-native: 1.6.7 - path-to-regexp: 6.3.0 - pathe: 1.1.2 - radix3: 1.1.2 - resolve: 1.22.11 - serve-placeholder: 2.0.2 - serve-static: 1.16.3 - ufo: 1.6.4 - unctx: 2.5.0 - unenv: 1.10.0 - unstorage: 1.17.5(db0@0.3.4(drizzle-orm@0.44.7(@opentelemetry/api@1.9.1)(@types/pg@8.15.6)(pg@8.16.3)))(ioredis@5.10.1) - vite: 6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0) - zod: 3.25.76 - transitivePeerDependencies: - - "@azure/app-configuration" - - "@azure/cosmos" - - "@azure/data-tables" - - "@azure/identity" - - "@azure/keyvault-secrets" - - "@azure/storage-blob" - - "@capacitor/preferences" - - "@deno/kv" - - "@electric-sql/pglite" - - "@libsql/client" - - "@netlify/blobs" - - "@planetscale/database" - - "@types/node" - - "@upstash/redis" - - "@vercel/blob" - - "@vercel/functions" - - "@vercel/kv" - - aws4fetch - - bare-abort-controller - - bare-buffer - - better-sqlite3 - - db0 - - debug - - drizzle-orm - - encoding - - idb-keyval - - ioredis - - jiti - - less - - lightningcss - - mysql2 - - oxc-parser - - react-native-b4a - - rolldown - - sass - - sass-embedded - - sqlite3 - - stylus - - sugarss - - supports-color - - terser - - tsx - - uploadthing - - xml2js - - yaml - vite-node@3.2.4(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0): dependencies: cac: 6.7.14 @@ -28355,10 +23171,6 @@ snapshots: tsx: 4.21.0 yaml: 2.9.0 - vitefu@1.1.3(vite@6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0)): - optionalDependencies: - vite: 6.4.2(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0) - vitest@3.2.4(@types/debug@4.1.13)(@types/node@22.19.17)(happy-dom@20.8.9)(jiti@2.7.0)(jsdom@25.0.1)(lightningcss@1.32.0)(sass@1.99.0)(terser@5.46.2)(tsx@4.21.0)(yaml@2.9.0): dependencies: "@types/chai": 5.2.3 @@ -28571,19 +23383,11 @@ snapshots: dependencies: isexe: 2.0.0 - which@4.0.0: - dependencies: - isexe: 3.1.5 - why-is-node-running@2.3.0: dependencies: siginfo: 2.0.0 stackback: 0.0.2 - widest-line@4.0.1: - dependencies: - string-width: 5.1.2 - word-wrap@1.2.5: {} wrap-ansi@6.2.0: @@ -28626,22 +23430,10 @@ snapshots: ws@8.20.0: {} - wsl-utils@0.3.1: - dependencies: - is-wsl: 3.1.1 - powershell-utils: 0.1.0 - xml-name-validator@5.0.0: {} xml@1.0.1: {} - xmlbuilder2@3.1.1: - dependencies: - "@oozcitak/dom": 1.15.10 - "@oozcitak/infra": 1.0.8 - "@oozcitak/util": 8.3.8 - js-yaml: 3.14.1 - xmlchars@2.2.0: {} xss@1.0.15: @@ -28657,8 +23449,6 @@ snapshots: yallist@3.1.1: {} - yallist@5.0.0: {} - yaml@1.10.3: {} yaml@2.9.0: {} @@ -28670,8 +23460,6 @@ snapshots: yargs-parser@21.1.1: {} - yargs-parser@22.0.0: {} - yargs@15.4.1: dependencies: cliui: 6.0.0 @@ -28696,15 +23484,6 @@ snapshots: y18n: 5.0.8 yargs-parser: 21.1.1 - yargs@18.0.0: - dependencies: - cliui: 9.0.1 - escalade: 3.2.0 - get-caller-file: 2.0.5 - string-width: 7.2.0 - y18n: 5.0.8 - yargs-parser: 22.0.0 - yjs@13.6.30: dependencies: lib0: 0.2.117 @@ -28715,27 +23494,6 @@ snapshots: yoctocolors@2.1.2: {} - youch-core@0.3.3: - dependencies: - "@poppinss/exception": 1.2.3 - error-stack-parser-es: 1.0.5 - - youch@4.1.1: - dependencies: - "@poppinss/colors": 4.1.6 - "@poppinss/dumper": 0.7.0 - "@speed-highlight/core": 1.2.15 - cookie-es: 3.1.1 - youch-core: 0.3.3 - - zip-stream@6.0.1: - dependencies: - archiver-utils: 5.0.2 - compress-commons: 6.0.2 - readable-stream: 4.7.0 - zod@3.25.76: {} - zod@4.4.3: {} - zwitch@2.0.4: {} diff --git a/scripts/coverage/diff.mjs b/scripts/coverage/diff.mjs index d41073e..21f326a 100644 --- a/scripts/coverage/diff.mjs +++ b/scripts/coverage/diff.mjs @@ -71,7 +71,7 @@ const ALLOWED_GLOBS = [ // Tooling packages that don't generate a vitest lcov (no @vitest/coverage-v8) /^packages\/core-testing\//, /^packages\/core-eslint\//, - // App packages (web-next, web-tanstack, cms) do not configure + // App packages (web-next, cms) do not configure // @vitest/coverage-v8, so their source files never appear in the merged lcov. /^apps\//, // core-shared Sentry client init files — explicitly excluded from per-package diff --git a/scripts/coverage/diff.test.mjs b/scripts/coverage/diff.test.mjs index a6b9d17..9c63fe2 100644 --- a/scripts/coverage/diff.test.mjs +++ b/scripts/coverage/diff.test.mjs @@ -246,15 +246,12 @@ describe("computeDiffCoverage", () => { test("skips apps/ files (app packages don't configure @vitest/coverage-v8)", () => { const lcov = parseLcov(lcovText); const diff = new Map([ - // web-next and web-tanstack have no @vitest/coverage-v8 — never in lcov + // web-next and cms have no @vitest/coverage-v8 — never in lcov ["apps/web-next/instrumentation-client.ts", new Set([1, 2, 3, 4, 5, 6])], ["apps/web-next/middleware.ts", new Set([1, 2, 3, 4, 5])], ["apps/web-next/src/app/layout.tsx", new Set([1, 2, 3])], - [ - "apps/web-tanstack/src/instrumentation-client.ts", - new Set([1, 2, 3, 4, 5]), - ], - ["apps/web-tanstack/app.config.ts", new Set([1, 2, 3])], + ["apps/cms/src/instrumentation.ts", new Set([1, 2, 3, 4, 5])], + ["apps/cms/src/payload.config.ts", new Set([1, 2, 3])], ]); const result = computeDiffCoverage(diff, lcov); assert.equal(result.status, "pass"); diff --git a/turbo.json b/turbo.json index 113394f..96d76f5 100644 --- a/turbo.json +++ b/turbo.json @@ -10,14 +10,10 @@ "WEB_NEXT_SENTRY_DSN", "NEXT_PUBLIC_WEB_NEXT_SENTRY_DSN", "CMS_SENTRY_DSN", - "WEB_TANSTACK_SENTRY_DSN", - "VITE_WEB_TANSTACK_SENTRY_DSN", - "VITE_GIT_COMMIT_SHA", "SENTRY_AUTH_TOKEN", "SENTRY_ORG", "SENTRY_PROJECT_WEB_NEXT", "SENTRY_PROJECT_CMS", - "SENTRY_PROJECT_WEB_TANSTACK", "SENTRY_TRACES_SAMPLE_RATE", "SENTRY_ENVIRONMENT", "VERCEL_GIT_COMMIT_SHA", diff --git a/turbo/generators/__tests__/core-package-trpc.e2e.test.ts b/turbo/generators/__tests__/core-package-trpc.e2e.test.ts index 257481b..cbd0dac 100644 --- a/turbo/generators/__tests__/core-package-trpc.e2e.test.ts +++ b/turbo/generators/__tests__/core-package-trpc.e2e.test.ts @@ -67,7 +67,6 @@ describe("e2e: core-package trpc", () => { // and navigation features depend on it for their ./ui tRPC hooks. for (const pkgDir of [ ["apps", "web-next"], - ["apps", "web-tanstack"], ["packages", "blog"], ["packages", "marketing-pages"], ["packages", "navigation"], diff --git a/turbo/generators/__tests__/core-package-ui.e2e.test.ts b/turbo/generators/__tests__/core-package-ui.e2e.test.ts index cc5ea61..d097455 100644 --- a/turbo/generators/__tests__/core-package-ui.e2e.test.ts +++ b/turbo/generators/__tests__/core-package-ui.e2e.test.ts @@ -64,7 +64,6 @@ describe("e2e: core-package ui", () => { // Strip @repo/core-ui from app package.json files so pnpm install // succeeds without the package being present (simulating the post-removal state). stripCoreUiDep(join(tmp, "apps", "web-next", "package.json")); - stripCoreUiDep(join(tmp, "apps", "web-tanstack", "package.json")); stripCoreUiDep(join(tmp, "apps", "storybook", "package.json")); execSync(`cd ${tmp} && pnpm install --frozen-lockfile=false`, {