diff --git a/apps/cli/package.json b/apps/cli/package.json
index 4d458e4441..cee00a9052 100644
--- a/apps/cli/package.json
+++ b/apps/cli/package.json
@@ -43,7 +43,7 @@
"jose": "^6.2.3"
},
"devDependencies": {
- "@anthropic-ai/claude-agent-sdk": "^0.3.201",
+ "@anthropic-ai/claude-agent-sdk": "^0.3.206",
"@anthropic-ai/sdk": "^0.110.0",
"@clack/prompts": "^1.7.0",
"@effect/atom-react": "catalog:",
@@ -76,7 +76,7 @@
"oxlint-tsgolint": "catalog:",
"pg": "^8.22.0",
"pg-copy-streams": "^7.0.0",
- "posthog-node": "^5.39.4",
+ "posthog-node": "^5.40.0",
"react": "^19.2.7",
"react-devtools-core": "^7.0.1",
"semantic-release": "^25.0.5",
diff --git a/apps/cli/src/legacy/commands/bootstrap/bootstrap.retry.ts b/apps/cli/src/legacy/commands/bootstrap/bootstrap.retry.ts
index 6ea685fafe..7b8d1fe290 100644
--- a/apps/cli/src/legacy/commands/bootstrap/bootstrap.retry.ts
+++ b/apps/cli/src/legacy/commands/bootstrap/bootstrap.retry.ts
@@ -23,16 +23,15 @@ const MAX_INTERVAL = Duration.seconds(60);
* - `MaxElapsedTime` 15m (intersected via `during`; in practice the 8-retry cap
* always trips first, but reproduced for completeness)
*/
-export const legacyBootstrapBackoff: Schedule.Schedule<[Duration.Duration, Duration.Duration]> =
- Schedule.exponential("3 seconds", 1.5).pipe(
- Schedule.modifyDelay((_, delay) => Effect.succeed(Duration.min(delay, MAX_INTERVAL))),
- Schedule.modifyDelay((_, delay) =>
- Random.next.pipe(
- Effect.map((random) => Duration.millis(Duration.toMillis(delay) * (0.5 + random))),
- ),
+export const legacyBootstrapBackoff = Schedule.exponential("3 seconds", 1.5).pipe(
+ Schedule.modifyDelay(({ duration }) => Effect.succeed(Duration.min(duration, MAX_INTERVAL))),
+ Schedule.modifyDelay(({ duration }) =>
+ Random.next.pipe(
+ Effect.map((random) => Duration.millis(Duration.toMillis(duration) * (0.5 + random))),
),
- Schedule.both(Schedule.during("15 minutes")),
- );
+ ),
+ Schedule.upTo({ duration: "15 minutes" }),
+);
/**
* Reproduces Go's `utils.NewErrorCallback` (`internal/utils/retry.go:19-35`): after
diff --git a/apps/cli/src/legacy/shared/legacy-storage-url.ts b/apps/cli/src/legacy/shared/legacy-storage-url.ts
index 0810c61872..9a4cce090f 100644
--- a/apps/cli/src/legacy/shared/legacy-storage-url.ts
+++ b/apps/cli/src/legacy/shared/legacy-storage-url.ts
@@ -129,7 +129,7 @@ function unescapePath(s: string): string {
pending = [];
}
};
- for (let i = 0; i < s.length; ) {
+ for (let i = 0; i < s.length;) {
if (s.charCodeAt(i) === 0x25 /* % */) {
const h1 = i + 1 < s.length ? s.charCodeAt(i + 1) : -1;
const h2 = i + 2 < s.length ? s.charCodeAt(i + 2) : -1;
diff --git a/apps/cli/src/next/docs/markdown-formatter.ts b/apps/cli/src/next/docs/markdown-formatter.ts
index 0897915e77..62e6eac47d 100644
--- a/apps/cli/src/next/docs/markdown-formatter.ts
+++ b/apps/cli/src/next/docs/markdown-formatter.ts
@@ -2,7 +2,11 @@ import { Option } from "effect";
import type { HelpDoc } from "effect/unstable/cli";
function escapeMdxText(value: string): string {
- return value.replace(//g, ">");
+ return value
+ .replace(//g, ">")
+ .replace(/\{/g, "{")
+ .replace(/\}/g, "}");
}
function formatTable(headers: string[], rows: string[][]): string {
diff --git a/apps/cli/src/next/docs/markdown-formatter.unit.test.ts b/apps/cli/src/next/docs/markdown-formatter.unit.test.ts
index 7f1a166d93..f6e50610d5 100644
--- a/apps/cli/src/next/docs/markdown-formatter.unit.test.ts
+++ b/apps/cli/src/next/docs/markdown-formatter.unit.test.ts
@@ -69,6 +69,12 @@ describe("formatHelpDocAsMarkdown", () => {
const usageIndex = result.indexOf("## Usage");
expect(descIndex).toBeLessThan(usageIndex);
});
+
+ it("escapes MDX expression braces in prose", () => {
+ const doc = makeDoc({ description: "Request /v1/projects/{ref}." });
+ const result = formatHelpDocAsMarkdown(doc);
+ expect(result).toContain("Request /v1/projects/{ref}.");
+ });
});
describe("flags section", () => {
diff --git a/apps/docs/next-env.d.ts b/apps/docs/next-env.d.ts
index 9edff1c7ca..ce4e94a6b1 100644
--- a/apps/docs/next-env.d.ts
+++ b/apps/docs/next-env.d.ts
@@ -1,6 +1,7 @@
///
///
import "./.next/types/routes.d.ts";
+import "./.next/types/root-params.d.ts";
// NOTE: This file should not be edited
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
diff --git a/apps/docs/next.config.ts b/apps/docs/next.config.ts
index 8b4e5917ac..f4068ca072 100644
--- a/apps/docs/next.config.ts
+++ b/apps/docs/next.config.ts
@@ -2,6 +2,9 @@ import { createMDX } from "fumadocs-mdx/next";
import type { NextConfig } from "next";
const config: NextConfig = {
+ experimental: {
+ useTypeScriptCli: true,
+ },
reactStrictMode: true,
};
diff --git a/apps/docs/package.json b/apps/docs/package.json
index ff5e585113..6d71e288bb 100644
--- a/apps/docs/package.json
+++ b/apps/docs/package.json
@@ -8,10 +8,10 @@
"build": "bun run generate && next build"
},
"dependencies": {
- "fumadocs-core": "^16.10.7",
- "fumadocs-mdx": "^15.0.13",
- "fumadocs-ui": "^16.10.7",
- "next": "^16.2.10",
+ "fumadocs-core": "^16.11.1",
+ "fumadocs-mdx": "^15.1.0",
+ "fumadocs-ui": "^16.11.1",
+ "next": "16.3.0-preview.6",
"react": "^19.2.7",
"react-dom": "^19.2.7"
},
@@ -20,7 +20,7 @@
"@types/node": "^26.1.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.1.6",
- "typescript": "^6.0.3"
+ "typescript": "^7.0.2"
},
"nx": {
"implicitDependencies": [
diff --git a/docs/nx-inference-plugins.md b/docs/nx-inference-plugins.md
index d6fafd719d..c408031d9a 100644
--- a/docs/nx-inference-plugins.md
+++ b/docs/nx-inference-plugins.md
@@ -164,4 +164,6 @@ export const createNodesV2: CreateNodesV2 = [
## How TypeScript plugins are loaded
-Nx 22 loads `.ts` plugin files by registering `@swc-node/register` as a CommonJS transpiler before calling `require()` on the plugin path. This workspace has `@swc-node/register` and `@swc/core` installed at the root, along with a minimal `tsconfig.json` at the workspace root — both are required for Nx to find and activate the transpiler. Without either, Nx falls back to Node.js's native TypeScript type-stripping, which returns a non-extensible ES module namespace that Nx cannot annotate.
+Nx loads `.ts` plugin files by registering `@swc-node/register` as a CommonJS transpiler before calling `require()` on the plugin path. This workspace has `@swc-node/register` and `@swc/core` installed at the root, along with a minimal `tsconfig.json` at the workspace root — both are required for Nx to find and activate the transpiler. Without either, Nx falls back to Node.js's native TypeScript type-stripping, which returns a non-extensible ES module namespace that Nx cannot annotate.
+
+TypeScript 7 does not yet expose the programmatic compiler API that the Nx transpiler uses. Following the [Nx TypeScript 7 guide](https://nx.dev/docs/technologies/typescript/guides/typescript-7), the root package aliases `typescript` to `@typescript/typescript6` for API consumers and installs TypeScript 7 as `@typescript/native`, which provides the `tsc` executable.
diff --git a/package.json b/package.json
index d835f5b2c4..4ac9174815 100644
--- a/package.json
+++ b/package.json
@@ -22,8 +22,10 @@
"devDependencies": {
"@swc-node/register": "catalog:",
"@swc/core": "catalog:",
+ "@typescript/native": "npm:typescript@^7.0.2",
"nx": "catalog:",
"pkg-pr-new": "0.0.75",
+ "typescript": "npm:@typescript/typescript6@^6.0.2",
"verdaccio": "^6.7.4"
}
}
diff --git a/packages/api/package.json b/packages/api/package.json
index 32bf5d93ce..8e60e45359 100644
--- a/packages/api/package.json
+++ b/packages/api/package.json
@@ -23,7 +23,7 @@
"@effect/platform-bun": "catalog:",
"@effect/platform-node": "catalog:",
"effect": "catalog:",
- "undici": "^8.6.0"
+ "undici": "^8.7.0"
},
"devDependencies": {
"@tsconfig/bun": "catalog:",
diff --git a/packages/stack/package.json b/packages/stack/package.json
index 3b6b7c3e9e..632976a7e2 100644
--- a/packages/stack/package.json
+++ b/packages/stack/package.json
@@ -28,7 +28,7 @@
},
"devDependencies": {
"@effect/vitest": "catalog:",
- "@supabase/supabase-js": "^2.110.0",
+ "@supabase/supabase-js": "^2.110.2",
"@tsconfig/bun": "catalog:",
"@types/bun": "catalog:",
"@typescript/native-preview": "catalog:",
diff --git a/packages/stack/src/ApiProxy.ts b/packages/stack/src/ApiProxy.ts
index 12f258235e..116de838f2 100644
--- a/packages/stack/src/ApiProxy.ts
+++ b/packages/stack/src/ApiProxy.ts
@@ -110,7 +110,7 @@ function addCorsHeaders(
// does so. Its `/_internal/health` probe answers immediately, so "Healthy"
// status does not mean a function is servable yet. Briefly retry transport
// failures on that route so a user's first call doesn't surface as a 502.
-const COLD_START_RETRY_SCHEDULE = Schedule.spaced("250 millis").pipe(Schedule.take(8));
+const COLD_START_RETRY_SCHEDULE = Schedule.spaced("250 millis").pipe(Schedule.upTo({ times: 8 }));
interface ProxyHandlerOptions {
readonly backendPort: number;
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index fb2200064f..500f87ad3b 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -7,26 +7,26 @@ settings:
catalogs:
default:
'@effect/atom-react':
- specifier: 4.0.0-beta.93
- version: 4.0.0-beta.93
+ specifier: 4.0.0-beta.94
+ version: 4.0.0-beta.94
'@effect/platform-bun':
- specifier: 4.0.0-beta.93
- version: 4.0.0-beta.93
+ specifier: 4.0.0-beta.97
+ version: 4.0.0-beta.97
'@effect/platform-node':
- specifier: 4.0.0-beta.93
- version: 4.0.0-beta.93
+ specifier: 4.0.0-beta.97
+ version: 4.0.0-beta.97
'@effect/sql-pg':
- specifier: 4.0.0-beta.93
- version: 4.0.0-beta.93
+ specifier: 4.0.0-beta.97
+ version: 4.0.0-beta.97
'@effect/vitest':
- specifier: ^4.0.0-beta.93
- version: 4.0.0-beta.93
+ specifier: 4.0.0-beta.97
+ version: 4.0.0-beta.97
'@nx/devkit':
specifier: ^23.0.0
version: 23.0.1
'@swc-node/register':
specifier: ^1.10.9
- version: 1.11.1
+ version: 1.12.0
'@swc/core':
specifier: ^1.15.43
version: 1.15.43
@@ -37,14 +37,14 @@ catalogs:
specifier: ^1.3.14
version: 1.3.14
'@typescript/native-preview':
- specifier: 7.0.0-dev.20260703.1
- version: 7.0.0-dev.20260703.1
+ specifier: 7.0.0-dev.20260707.2
+ version: 7.0.0-dev.20260707.2
'@vitest/coverage-istanbul':
- specifier: ^4.1.9
- version: 4.1.9
+ specifier: ^4.1.10
+ version: 4.1.10
effect:
- specifier: 4.0.0-beta.93
- version: 4.0.0-beta.93
+ specifier: 4.0.0-beta.97
+ version: 4.0.0-beta.97
knip:
specifier: ^6.24.0
version: 6.25.0
@@ -52,8 +52,8 @@ catalogs:
specifier: ^23.0.0
version: 23.0.1
oxfmt:
- specifier: ^0.57.0
- version: 0.57.0
+ specifier: ^0.58.0
+ version: 0.58.0
oxlint:
specifier: ^1.72.0
version: 1.73.0
@@ -61,11 +61,14 @@ catalogs:
specifier: ^0.24.0
version: 0.24.0
tldts:
- specifier: ^7.4.6
+ specifier: ^7.4.8
version: 7.4.8
vitest:
- specifier: ^4.1.9
- version: 4.1.9
+ specifier: ^4.1.10
+ version: 4.1.10
+
+overrides:
+ '@effect/platform-node-shared': 4.0.0-beta.97
importers:
@@ -73,16 +76,22 @@ importers:
devDependencies:
'@swc-node/register':
specifier: 'catalog:'
- version: 1.11.1(@swc/core@1.15.43)(@swc/types@0.1.27)(typescript@6.0.3)
+ version: 1.12.0(@swc/core@1.15.43)(@swc/types@0.1.27)(@typescript/typescript6@6.0.2)
'@swc/core':
specifier: 'catalog:'
version: 1.15.43
+ '@typescript/native':
+ specifier: npm:typescript@^7.0.2
+ version: typescript@7.0.2
nx:
specifier: 'catalog:'
- version: 23.0.1(@swc-node/register@1.11.1(@swc/core@1.15.43)(@swc/types@0.1.27)(typescript@6.0.3))(@swc/core@1.15.43)
+ version: 23.0.1(@swc-node/register@1.12.0(@swc/core@1.15.43)(@swc/types@0.1.27)(@typescript/typescript6@6.0.2))(@swc/core@1.15.43)
pkg-pr-new:
specifier: 0.0.75
version: 0.0.75
+ typescript:
+ specifier: npm:@typescript/typescript6@^6.0.2
+ version: '@typescript/typescript6@6.0.2'
verdaccio:
specifier: ^6.7.4
version: 6.7.4(typanion@3.14.0)
@@ -97,8 +106,8 @@ importers:
version: 6.2.3
devDependencies:
'@anthropic-ai/claude-agent-sdk':
- specifier: ^0.3.201
- version: 0.3.201(@anthropic-ai/sdk@0.110.0(zod@4.4.3))(@modelcontextprotocol/sdk@1.29.0(zod@4.4.3))(zod@4.4.3)
+ specifier: ^0.3.206
+ version: 0.3.206(@anthropic-ai/sdk@0.110.0(zod@4.4.3))(@modelcontextprotocol/sdk@1.29.0(zod@4.4.3))(zod@4.4.3)
'@anthropic-ai/sdk':
specifier: ^0.110.0
version: 0.110.0(zod@4.4.3)
@@ -107,16 +116,16 @@ importers:
version: 1.7.0
'@effect/atom-react':
specifier: 'catalog:'
- version: 4.0.0-beta.93(effect@4.0.0-beta.93)(react@19.2.7)(scheduler@0.27.0)
+ version: 4.0.0-beta.94(effect@4.0.0-beta.97)(react@19.2.7)(scheduler@0.27.0)
'@effect/platform-bun':
specifier: 'catalog:'
- version: 4.0.0-beta.93(effect@4.0.0-beta.93)
+ version: 4.0.0-beta.97(effect@4.0.0-beta.97)
'@effect/sql-pg':
specifier: 'catalog:'
- version: 4.0.0-beta.93(effect@4.0.0-beta.93)
+ version: 4.0.0-beta.97(effect@4.0.0-beta.97)
'@effect/vitest':
specifier: 'catalog:'
- version: 4.0.0-beta.93(effect@4.0.0-beta.93)(vitest@4.1.9)
+ version: 4.0.0-beta.97(effect@4.0.0-beta.97)(vitest@4.1.10)
'@modelcontextprotocol/sdk':
specifier: ^1.29.0
version: 1.29.0(zod@4.4.3)
@@ -155,19 +164,19 @@ importers:
version: 19.2.17
'@typescript/native-preview':
specifier: 'catalog:'
- version: 7.0.0-dev.20260703.1
+ version: 7.0.0-dev.20260707.2
'@vercel/detect-agent':
specifier: ^1.2.3
version: 1.2.3
'@vitest/coverage-istanbul':
specifier: 'catalog:'
- version: 4.1.9(vitest@4.1.9)
+ version: 4.1.10(vitest@4.1.10)
dotenv:
specifier: ^17.4.2
version: 17.4.2
effect:
specifier: 'catalog:'
- version: 4.0.0-beta.93
+ version: 4.0.0-beta.97
esbuild:
specifier: ^0.28.1
version: 0.28.1
@@ -182,7 +191,7 @@ importers:
version: 6.25.0
oxfmt:
specifier: 'catalog:'
- version: 0.57.0
+ version: 0.58.0
oxlint:
specifier: 'catalog:'
version: 1.73.0(oxlint-tsgolint@0.24.0)
@@ -196,8 +205,8 @@ importers:
specifier: ^7.0.0
version: 7.0.0
posthog-node:
- specifier: ^5.39.4
- version: 5.39.4
+ specifier: ^5.40.0
+ version: 5.40.0
react:
specifier: ^19.2.7
version: 19.2.7
@@ -206,7 +215,7 @@ importers:
version: 7.0.1
semantic-release:
specifier: ^25.0.5
- version: 25.0.5(typescript@6.0.3)
+ version: 25.0.5(typescript@7.0.2)
smol-toml:
specifier: ^1.7.0
version: 1.7.0
@@ -215,7 +224,7 @@ importers:
version: 7.4.8
vitest:
specifier: 'catalog:'
- version: 4.1.9(@types/node@26.1.1)(@vitest/coverage-istanbul@4.1.9)(vite@8.0.14(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
+ version: 4.1.10(@types/node@26.1.1)(@vitest/coverage-istanbul@4.1.10)(vite@8.0.14(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
yaml:
specifier: ^2.9.0
version: 2.9.0
@@ -259,16 +268,16 @@ importers:
version: 1.3.14
'@typescript/native-preview':
specifier: 'catalog:'
- version: 7.0.0-dev.20260703.1
+ version: 7.0.0-dev.20260707.2
'@vitest/coverage-istanbul':
specifier: 'catalog:'
- version: 4.1.9(vitest@4.1.9)
+ version: 4.1.10(vitest@4.1.10)
knip:
specifier: 'catalog:'
version: 6.25.0
oxfmt:
specifier: 'catalog:'
- version: 0.57.0
+ version: 0.58.0
oxlint:
specifier: 'catalog:'
version: 1.73.0(oxlint-tsgolint@0.24.0)
@@ -277,22 +286,22 @@ importers:
version: 0.24.0
vitest:
specifier: 'catalog:'
- version: 4.1.9(@types/node@26.1.1)(@vitest/coverage-istanbul@4.1.9)(vite@8.0.14(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
+ version: 4.1.10(@types/node@26.1.1)(@vitest/coverage-istanbul@4.1.10)(vite@8.0.14(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
apps/docs:
dependencies:
fumadocs-core:
- specifier: ^16.10.7
- version: 16.10.7(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.4)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.23.0(react@19.2.7))(next@16.2.10(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(zod@4.4.3)
+ specifier: ^16.11.1
+ version: 16.11.1(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.24.0(react@19.2.7))(next@16.3.0-preview.6(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(zod@4.4.3)
fumadocs-mdx:
- specifier: ^15.0.13
- version: 15.0.13(@types/mdast@4.0.4)(@types/mdx@2.0.14)(@types/react@19.2.17)(fumadocs-core@16.10.7(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.4)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.23.0(react@19.2.7))(next@16.2.10(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(zod@4.4.3))(next@16.2.10(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react@19.2.7)(rolldown@1.0.2)(vite@8.0.14(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
+ specifier: ^15.1.0
+ version: 15.1.0(@types/mdast@4.0.4)(@types/mdx@2.0.14)(@types/react@19.2.17)(fumadocs-core@16.11.1(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.24.0(react@19.2.7))(next@16.3.0-preview.6(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(zod@4.4.3))(next@16.3.0-preview.6(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react@19.2.7)(rolldown@1.0.2)(vite@8.0.14(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
fumadocs-ui:
- specifier: ^16.10.7
- version: 16.10.7(@types/mdx@2.0.14)(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(fumadocs-core@16.10.7(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.4)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.23.0(react@19.2.7))(next@16.2.10(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(zod@4.4.3))(next@16.2.10(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ specifier: ^16.11.1
+ version: 16.11.1(@types/mdx@2.0.14)(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(fumadocs-core@16.11.1(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.24.0(react@19.2.7))(next@16.3.0-preview.6(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(zod@4.4.3))(next@16.3.0-preview.6(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
next:
- specifier: ^16.2.10
- version: 16.2.10(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ specifier: 16.3.0-preview.6
+ version: 16.3.0-preview.6(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
react:
specifier: ^19.2.7
version: 19.2.7
@@ -313,23 +322,23 @@ importers:
specifier: ^19.1.6
version: 19.2.3(@types/react@19.2.17)
typescript:
- specifier: ^6.0.3
- version: 6.0.3
+ specifier: ^7.0.2
+ version: 7.0.2
packages/api:
dependencies:
'@effect/platform-bun':
specifier: 'catalog:'
- version: 4.0.0-beta.93(effect@4.0.0-beta.93)
+ version: 4.0.0-beta.97(effect@4.0.0-beta.97)
'@effect/platform-node':
specifier: 'catalog:'
- version: 4.0.0-beta.93(effect@4.0.0-beta.93)(ioredis@5.11.0)
+ version: 4.0.0-beta.97(effect@4.0.0-beta.97)(ioredis@5.11.0)
effect:
specifier: 'catalog:'
- version: 4.0.0-beta.93
+ version: 4.0.0-beta.97
undici:
- specifier: ^8.6.0
- version: 8.6.0
+ specifier: ^8.7.0
+ version: 8.7.0
devDependencies:
'@tsconfig/bun':
specifier: 'catalog:'
@@ -339,16 +348,16 @@ importers:
version: 1.3.14
'@typescript/native-preview':
specifier: 'catalog:'
- version: 7.0.0-dev.20260703.1
+ version: 7.0.0-dev.20260707.2
'@vitest/coverage-istanbul':
specifier: 'catalog:'
- version: 4.1.9(vitest@4.1.9)
+ version: 4.1.10(vitest@4.1.10)
knip:
specifier: 'catalog:'
version: 6.25.0
oxfmt:
specifier: 'catalog:'
- version: 0.57.0
+ version: 0.58.0
oxlint:
specifier: 'catalog:'
version: 1.73.0(oxlint-tsgolint@0.24.0)
@@ -357,7 +366,7 @@ importers:
version: 0.24.0
vitest:
specifier: 'catalog:'
- version: 4.1.9(@types/node@26.1.1)(@vitest/coverage-istanbul@4.1.9)(vite@8.0.14(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
+ version: 4.1.10(@types/node@26.1.1)(@vitest/coverage-istanbul@4.1.10)(vite@8.0.14(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
packages/cli-darwin-arm64: {}
@@ -381,16 +390,16 @@ importers:
version: 1.3.14
'@typescript/native-preview':
specifier: 'catalog:'
- version: 7.0.0-dev.20260703.1
+ version: 7.0.0-dev.20260707.2
'@vitest/coverage-istanbul':
specifier: 'catalog:'
- version: 4.1.9(vitest@4.1.9)
+ version: 4.1.10(vitest@4.1.10)
knip:
specifier: 'catalog:'
version: 6.25.0
oxfmt:
specifier: 'catalog:'
- version: 0.57.0
+ version: 0.58.0
oxlint:
specifier: 'catalog:'
version: 1.73.0(oxlint-tsgolint@0.24.0)
@@ -399,7 +408,7 @@ importers:
version: 0.24.0
vitest:
specifier: 'catalog:'
- version: 4.1.9(@types/node@26.1.1)(@vitest/coverage-istanbul@4.1.9)(vite@8.0.14(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
+ version: 4.1.10(@types/node@26.1.1)(@vitest/coverage-istanbul@4.1.10)(vite@8.0.14(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
packages/cli-windows-arm64: {}
@@ -409,16 +418,16 @@ importers:
dependencies:
'@effect/platform-bun':
specifier: 'catalog:'
- version: 4.0.0-beta.93(effect@4.0.0-beta.93)
+ version: 4.0.0-beta.97(effect@4.0.0-beta.97)
'@effect/platform-node':
specifier: 'catalog:'
- version: 4.0.0-beta.93(effect@4.0.0-beta.93)(ioredis@5.11.0)
+ version: 4.0.0-beta.97(effect@4.0.0-beta.97)(ioredis@5.11.0)
dedent:
specifier: ^1.7.2
version: 1.7.2
effect:
specifier: 'catalog:'
- version: 4.0.0-beta.93
+ version: 4.0.0-beta.97
smol-toml:
specifier: ^1.7.0
version: 1.7.0
@@ -431,16 +440,16 @@ importers:
version: 1.3.14
'@typescript/native-preview':
specifier: 'catalog:'
- version: 7.0.0-dev.20260703.1
+ version: 7.0.0-dev.20260707.2
'@vitest/coverage-istanbul':
specifier: 'catalog:'
- version: 4.1.9(vitest@4.1.9)
+ version: 4.1.10(vitest@4.1.10)
knip:
specifier: 'catalog:'
version: 6.25.0
oxfmt:
specifier: 'catalog:'
- version: 0.57.0
+ version: 0.58.0
oxlint:
specifier: 'catalog:'
version: 1.73.0(oxlint-tsgolint@0.24.0)
@@ -449,20 +458,20 @@ importers:
version: 0.24.0
vitest:
specifier: 'catalog:'
- version: 4.1.9(@types/node@26.1.1)(@vitest/coverage-istanbul@4.1.9)(vite@8.0.14(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
+ version: 4.1.10(@types/node@26.1.1)(@vitest/coverage-istanbul@4.1.10)(vite@8.0.14(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
packages/process-compose:
dependencies:
'@effect/platform-bun':
specifier: 'catalog:'
- version: 4.0.0-beta.93(effect@4.0.0-beta.93)
+ version: 4.0.0-beta.97(effect@4.0.0-beta.97)
effect:
specifier: 'catalog:'
- version: 4.0.0-beta.93
+ version: 4.0.0-beta.97
devDependencies:
'@effect/vitest':
specifier: 'catalog:'
- version: 4.0.0-beta.93(effect@4.0.0-beta.93)(vitest@4.1.9)
+ version: 4.0.0-beta.97(effect@4.0.0-beta.97)(vitest@4.1.10)
'@tsconfig/bun':
specifier: 'catalog:'
version: 1.0.10
@@ -471,16 +480,16 @@ importers:
version: 1.3.14
'@typescript/native-preview':
specifier: 'catalog:'
- version: 7.0.0-dev.20260703.1
+ version: 7.0.0-dev.20260707.2
'@vitest/coverage-istanbul':
specifier: 'catalog:'
- version: 4.1.9(vitest@4.1.9)
+ version: 4.1.10(vitest@4.1.10)
knip:
specifier: 'catalog:'
version: 6.25.0
oxfmt:
specifier: 'catalog:'
- version: 0.57.0
+ version: 0.58.0
oxlint:
specifier: 'catalog:'
version: 1.73.0(oxlint-tsgolint@0.24.0)
@@ -489,16 +498,16 @@ importers:
version: 0.24.0
vitest:
specifier: 'catalog:'
- version: 4.1.9(@types/node@26.1.1)(@vitest/coverage-istanbul@4.1.9)(vite@8.0.14(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
+ version: 4.1.10(@types/node@26.1.1)(@vitest/coverage-istanbul@4.1.10)(vite@8.0.14(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
packages/stack:
dependencies:
'@effect/platform-bun':
specifier: 'catalog:'
- version: 4.0.0-beta.93(effect@4.0.0-beta.93)
+ version: 4.0.0-beta.97(effect@4.0.0-beta.97)
'@effect/platform-node':
specifier: 'catalog:'
- version: 4.0.0-beta.93(effect@4.0.0-beta.93)(ioredis@5.11.0)
+ version: 4.0.0-beta.97(effect@4.0.0-beta.97)(ioredis@5.11.0)
'@supabase/config':
specifier: workspace:*
version: link:../config
@@ -507,14 +516,14 @@ importers:
version: link:../process-compose
effect:
specifier: 'catalog:'
- version: 4.0.0-beta.93
+ version: 4.0.0-beta.97
devDependencies:
'@effect/vitest':
specifier: 'catalog:'
- version: 4.0.0-beta.93(effect@4.0.0-beta.93)(vitest@4.1.9)
+ version: 4.0.0-beta.97(effect@4.0.0-beta.97)(vitest@4.1.10)
'@supabase/supabase-js':
- specifier: ^2.110.0
- version: 2.110.0
+ specifier: ^2.110.2
+ version: 2.110.2
'@tsconfig/bun':
specifier: 'catalog:'
version: 1.0.10
@@ -523,16 +532,16 @@ importers:
version: 1.3.14
'@typescript/native-preview':
specifier: 'catalog:'
- version: 7.0.0-dev.20260703.1
+ version: 7.0.0-dev.20260707.2
'@vitest/coverage-istanbul':
specifier: 'catalog:'
- version: 4.1.9(vitest@4.1.9)
+ version: 4.1.10(vitest@4.1.10)
knip:
specifier: 'catalog:'
version: 6.25.0
oxfmt:
specifier: 'catalog:'
- version: 0.57.0
+ version: 0.58.0
oxlint:
specifier: 'catalog:'
version: 1.73.0(oxlint-tsgolint@0.24.0)
@@ -541,16 +550,19 @@ importers:
version: 0.24.0
vitest:
specifier: 'catalog:'
- version: 4.1.9(@types/node@26.1.1)(@vitest/coverage-istanbul@4.1.9)(vite@8.0.14(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
+ version: 4.1.10(@types/node@26.1.1)(@vitest/coverage-istanbul@4.1.10)(vite@8.0.14(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
tools/nx-plugins:
dependencies:
'@nx/devkit':
specifier: 'catalog:'
- version: 23.0.1(nx@23.0.2(@swc-node/register@1.11.1(@swc/core@1.15.43)(@swc/types@0.1.27)(typescript@6.0.3))(@swc/core@1.15.43))
+ version: 23.0.1(nx@23.1.0(@swc-node/register@1.12.0(@swc/core@1.15.43)(@swc/types@0.1.27)(@typescript/typescript6@6.0.2))(@swc/core@1.15.43))
+ typescript:
+ specifier: npm:@typescript/typescript6@^6.0.2
+ version: '@typescript/typescript6@6.0.2'
vitest:
specifier: 'catalog:'
- version: 4.1.9(@types/node@26.1.1)(@vitest/coverage-istanbul@4.1.9)(vite@8.0.14(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
+ version: 4.1.10(@types/node@26.1.1)(@vitest/coverage-istanbul@4.1.10)(vite@8.0.14(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
packages:
@@ -570,52 +582,52 @@ packages:
resolution: {integrity: sha512-p+CMKJ93HFmLkjXKlXiVGlMQEuRb6H0MokBSwUsX+S6BRX8eV5naFZpQJFfJHjRZY0Hmnqy1/r6UWl3x+19zYA==}
engines: {node: '>=18'}
- '@anthropic-ai/claude-agent-sdk-darwin-arm64@0.3.201':
- resolution: {integrity: sha512-8Mcb3BDyKUGfJWFFTWwt+at37lbDH3ZwVtUNPWGG1toZ75RDCJry5U4kXRvQ2xokvJQlA0E+eNp6keWe5ZH22Q==}
+ '@anthropic-ai/claude-agent-sdk-darwin-arm64@0.3.206':
+ resolution: {integrity: sha512-FL2+NKcMMN47vcnCW2Fkt3AOgeRRlQxrisbPNaxrxqPJFzhUKs17x5j0XzLefd0xRbDAr74hd0PK/tnp6PHM6w==}
cpu: [arm64]
os: [darwin]
- '@anthropic-ai/claude-agent-sdk-darwin-x64@0.3.201':
- resolution: {integrity: sha512-TFR2bu0+ml3RHoMrtsgD0qDK5Oknw8kYGBV7qpQHn+IWmE96gnHhogG1LpJwpHtni08XkJIjfWk1DdlsUYtRkQ==}
+ '@anthropic-ai/claude-agent-sdk-darwin-x64@0.3.206':
+ resolution: {integrity: sha512-mRW8PPMfQN15EunLwpdmcVzk3XuM4DXQUM8DOzaeA1Hr1yxYPaVVBLr9hkdBKOqr8XTl3ueoTR6RZAy6a/n7OA==}
cpu: [x64]
os: [darwin]
- '@anthropic-ai/claude-agent-sdk-linux-arm64-musl@0.3.201':
- resolution: {integrity: sha512-EiqbpfJIpChfkn+8Uj061Qjyw0eaRcOXtdrvVuHANyj8ZErVOr8HlH6op9PSeIUa9TX0m2+tNgKPQvOGseQckA==}
+ '@anthropic-ai/claude-agent-sdk-linux-arm64-musl@0.3.206':
+ resolution: {integrity: sha512-aMZe1Kl+kYv5QlA15W9Ae25MAzBsA9FA40f5TOtJebA+M/xliF0r2LLb2NdyBviiZCDllcE31l0zgYE0rQqFQw==}
cpu: [arm64]
os: [linux]
libc: [musl]
- '@anthropic-ai/claude-agent-sdk-linux-arm64@0.3.201':
- resolution: {integrity: sha512-mShTo3MwF0gkN4dDw78wWJiB6aBDVRkl81cnApvoBofpdyUBYgm9Gw16CCjDTgelMKeBFqN6ErJpwjI3wbP00A==}
+ '@anthropic-ai/claude-agent-sdk-linux-arm64@0.3.206':
+ resolution: {integrity: sha512-Id6H8l6EsGb7849EAZDOB4Ic+FQpbzt4D5HGOwp59CTW3o/1c4etjQA/Kl1K+DSEWn3FGo6D5UMVgc/rwhBj8g==}
cpu: [arm64]
os: [linux]
libc: [glibc]
- '@anthropic-ai/claude-agent-sdk-linux-x64-musl@0.3.201':
- resolution: {integrity: sha512-IbxnzO5UCbqbm2TnzCHkSyJorAFw2isdKdIsFCTxJJjSs3ZC+v3LC1QSUiVCx0qi+CV6w3MKx6mLI11mrvhbbQ==}
+ '@anthropic-ai/claude-agent-sdk-linux-x64-musl@0.3.206':
+ resolution: {integrity: sha512-xQBOBhlcmTNc7YeYT5qLZOikpSq3WHlsJ/t6i7kJqUWrcXlOPaAoSMdKp5xO/V0CjAdzdJoWB88I55UAh8mclQ==}
cpu: [x64]
os: [linux]
libc: [musl]
- '@anthropic-ai/claude-agent-sdk-linux-x64@0.3.201':
- resolution: {integrity: sha512-jrJBrRWrSuoFKIgjyqxHqmfd6Pb3Bs5Bvakg0knXCTC4fbUXGnC9Q6u7gdDwgXohUNP6/DD+s8U7bivvvVv0dg==}
+ '@anthropic-ai/claude-agent-sdk-linux-x64@0.3.206':
+ resolution: {integrity: sha512-egZhOC1RlEVhZyq6Oa1b04AF7hh4hO+8oCsJCZ3gOifJQuHih1oW3lZ8fOUxU85jlT2ytAnt5kRp4uQr6PJgbg==}
cpu: [x64]
os: [linux]
libc: [glibc]
- '@anthropic-ai/claude-agent-sdk-win32-arm64@0.3.201':
- resolution: {integrity: sha512-UsoytRJ/037uHpb3ATrIoe+AgwTf+PwKuFLGjddHAV/11wERJs0hlrnSmcnp43kf0PFxoSNinngme96YYASmQg==}
+ '@anthropic-ai/claude-agent-sdk-win32-arm64@0.3.206':
+ resolution: {integrity: sha512-oRQk23bFXSz4QRhOxqnnvlLWq/KiF2PtSBYXrMg1AQrCOHJd2k66aOAS7AJ4ZSzejiyV4N6sS6UThfmF6ipHBQ==}
cpu: [arm64]
os: [win32]
- '@anthropic-ai/claude-agent-sdk-win32-x64@0.3.201':
- resolution: {integrity: sha512-PhalN/0cWcqDfbx7iwoLNR2gurjTiqhBk1G6K+NRScxEcQjWuu5xKXCcdbX8ePVpT+nbEMmFEFpn2y+8V8hIdA==}
+ '@anthropic-ai/claude-agent-sdk-win32-x64@0.3.206':
+ resolution: {integrity: sha512-BdjKmDojZjc5RjN+8Q6K7Yqf1WYhel6I3DkMXc9zdxS/xIuN42sx7zgQpdMGY73pm7ROPLqo3LieOeMhVH161w==}
cpu: [x64]
os: [win32]
- '@anthropic-ai/claude-agent-sdk@0.3.201':
- resolution: {integrity: sha512-InT1XLmf2QpldWdtznKDWEoGJT4p+sXh24yxbeBQ++lMJCzMrI0W27MEmmmDWx0otpa+ubdHCF5YQ6oiNt7cmg==}
+ '@anthropic-ai/claude-agent-sdk@0.3.206':
+ resolution: {integrity: sha512-KljDh9Pg4YCYpoXS8dnWoVSsOHtU4yLCW268K2iOruSxFXE8/Tay6DPvmJzYuqjP5YLNYfj05ZGykwZSUn6GXA==}
engines: {node: '>=18.0.0'}
peerDependencies:
'@anthropic-ai/sdk': '>=0.93.0'
@@ -724,40 +736,40 @@ packages:
peerDependencies:
'@noble/ciphers': ^1.0.0
- '@effect/atom-react@4.0.0-beta.93':
- resolution: {integrity: sha512-43FOYozhZT+VIQBH5LVAbabhdjGCuxGKdVTeUnkMp5NY+/g3nDLcAyAkNYn99G3+XDbqFvJaqmNJP7NLF5+WFg==}
+ '@effect/atom-react@4.0.0-beta.94':
+ resolution: {integrity: sha512-6A3Dhw8dC5f5ThuUH+JENgUZjrXdsiTTWWfgOr7gB4Rjj5JS4Ws5jzqbu+fpXlyBhwl3bEd+VmiyXNOOgtcslQ==}
peerDependencies:
- effect: ^4.0.0-beta.93
+ effect: ^4.0.0-beta.94
react: ^19.2.4
scheduler: '*'
- '@effect/platform-bun@4.0.0-beta.93':
- resolution: {integrity: sha512-pny29d1NhJ7XLv19as7A0pIZr+QFi5KejnwB/lLW1c8P63t+PDMPEn21toy2vx2yzl9xRTo8heyiXPXRsqPN5w==}
+ '@effect/platform-bun@4.0.0-beta.97':
+ resolution: {integrity: sha512-WYjC7nKiWfNywIz1zeBEXnrpuHJM86DOi3lSZSSBeHCPz8HYw7IT2FL7u+aaJHHsJCyFiZVAgg2KFS8aMFSJBQ==}
peerDependencies:
- effect: ^4.0.0-beta.93
+ effect: ^4.0.0-beta.97
- '@effect/platform-node-shared@4.0.0-beta.93':
- resolution: {integrity: sha512-XUqZ2u5GglBqY8q2jj4Q7GjN5K/enedk8auZM9rY/l5a/myaQTrQp3QnvpIK4/Yg0WFjLGuctGPMKWRk3OLIrA==}
+ '@effect/platform-node-shared@4.0.0-beta.97':
+ resolution: {integrity: sha512-sAlygOlDLLERk7fC24f7Aa4G3wkEbGyyMEileHTHU2fThiPYSGMqNRK1LLnNr17m2+JR7BHbycwXkJkM18BAQw==}
engines: {node: '>=18.0.0'}
peerDependencies:
- effect: ^4.0.0-beta.93
+ effect: ^4.0.0-beta.97
- '@effect/platform-node@4.0.0-beta.93':
- resolution: {integrity: sha512-QagsCGR0ZOXaCQqS5qGR2mcDng4LiP2bYhiiX1D6UC8cT9vsusVVOHiJWn8CupeDx+yVnPcu81QmA/SDt6GM1w==}
+ '@effect/platform-node@4.0.0-beta.97':
+ resolution: {integrity: sha512-Vd40VLh+Y08Bs37KWtbe9AgO2+t3RKZKGX9YC6ZKAcswu4tXR3CwSI7V2MN+GgS+ez/GLmqH1WrzDDlaIAxKPA==}
engines: {node: '>=18.0.0'}
peerDependencies:
- effect: ^4.0.0-beta.93
+ effect: ^4.0.0-beta.97
ioredis: ^5.7.0
- '@effect/sql-pg@4.0.0-beta.93':
- resolution: {integrity: sha512-wpoGGezcmMVGG9p9vumFTR42+LPE2PaaUZ+vTcpo0hyc4TvChSRZiv4uZafrXEnDdYgdUFw7UQzrEO8+pa5crg==}
+ '@effect/sql-pg@4.0.0-beta.97':
+ resolution: {integrity: sha512-q0SZRN63Spm4lM72b1Aji0HZHEZgQxqp3mdYSVaskqXQxdZGyFxni+c19mzFNTYp+op8N+2PGoFzwqUdxFrxZA==}
peerDependencies:
- effect: ^4.0.0-beta.93
+ effect: ^4.0.0-beta.97
- '@effect/vitest@4.0.0-beta.93':
- resolution: {integrity: sha512-gMAnZ9PiMeJMDED9s0jWgCOhc2JccrTCxowhur/KriImsHnHIRj4VG/vK0xLw0Axe4AkTWzXNdRsFrYOjBTl3A==}
+ '@effect/vitest@4.0.0-beta.97':
+ resolution: {integrity: sha512-1dH6LBWSZyqnTV7ZO+yIpPGPf/xd7RtFfvQ4ZpTy9elzFN+wr1YBFpHSCr8+BfXOml6b8g9Mtj5eDy1qjbizUA==}
peerDependencies:
- effect: ^4.0.0-beta.93
+ effect: ^4.0.0-beta.97
vitest: ^3.0.0 || ^4.0.0
'@emnapi/core@1.10.0':
@@ -952,20 +964,20 @@ packages:
cpu: [x64]
os: [win32]
- '@floating-ui/core@1.7.5':
- resolution: {integrity: sha512-1Ih4WTWyw0+lKyFMcBHGbb5U5FtuHJuujoyyr5zTaWS5EYMeT6Jb2AuDeftsCsEuchO+mM2ij5+q9crhydzLhQ==}
+ '@floating-ui/core@1.8.0':
+ resolution: {integrity: sha512-0CIZ5itps/8x7BG8dEIhs53BvCUH2PCoogtakwRTut+Arm58sJooJ0AuZhLw2HJYIR5cMLNPBSS728sPho2khQ==}
- '@floating-ui/dom@1.7.6':
- resolution: {integrity: sha512-9gZSAI5XM36880PPMm//9dfiEngYoC6Am2izES1FF406YFsjvyBMmeJ2g4SAju3xWwtuynNRFL2s9hgxpLI5SQ==}
+ '@floating-ui/dom@1.8.0':
+ resolution: {integrity: sha512-yXSrzeHZBTZadLOlfyhCkJHNeLJnHRnRInwdZ40L7ZiaAtrBwoYlsDrX3v5zB1Utk7CLfzcOVnVVWoXEky7Ceg==}
- '@floating-ui/react-dom@2.1.8':
- resolution: {integrity: sha512-cC52bHwM/n/CxS87FH0yWdngEZrjdtLW/qVruo68qg+prK7ZQ4YGdut2GyDVpoGeAYe/h899rVeOVm6Oi40k2A==}
+ '@floating-ui/react-dom@2.1.9':
+ resolution: {integrity: sha512-JDjEFGCpImxDCA7JJKviA0M9+RtmJdj0m/NVU5IMgBK+AmZouAQQ7/+2GLH0GXXY0YMw9oXPB8hKdbPYg5QLYg==}
peerDependencies:
react: '>=16.8.0'
react-dom: '>=16.8.0'
- '@floating-ui/utils@0.2.11':
- resolution: {integrity: sha512-RiB/yIh78pcIxl6lLMG0CgBXAZ2Y0eVHqMPYugu+9U0AeT6YBeiJpf7lbdJNIugFP5SIjwNRgo4DhR1Qxi26Gg==}
+ '@floating-ui/utils@0.2.12':
+ resolution: {integrity: sha512-HpCo8tmWzLVad5s2d19EhAz5zqrrQ6s69qd6moPMQvkOuSwDT1YgRfWSVuc4ennqrgv3OHppiOGMQ7oC13yIww==}
'@fuma-translate/react@1.0.2':
resolution: {integrity: sha512-uOiOtBx3nRXR8Nu1GzBf1tApgF1FErDBTHxRIAQeyQdyOoZbrNRN6H4kDCWObY4qyGeGbHydG0DHzgeUgFDMIw==}
@@ -977,14 +989,11 @@ packages:
'@types/react':
optional: true
- '@fumadocs/tailwind@0.0.5':
- resolution: {integrity: sha512-ENKPWUDRmriccsrUDE4bDBq3FNr/ms3BP2rWlsAEMV1yP23pcCaan+ceGfeBUsAQjw7sj9Q3R4Kl3g/TCStPzQ==}
+ '@fumadocs/tailwind@0.1.0':
+ resolution: {integrity: sha512-nF/DCAwOR21HZ4AkjIOv3Iqwyqywzb6pdyeMcoa+aZzirXj5ntvNZbe3jJ0v3ehhtrRfYYeXBezvjn8ZmV+fuQ==}
peerDependencies:
- '@tailwindcss/oxide': ^4.0.0
tailwindcss: ^4.0.0
peerDependenciesMeta:
- '@tailwindcss/oxide':
- optional: true
tailwindcss:
optional: true
@@ -1298,6 +1307,9 @@ packages:
resolution: {integrity: sha512-WrOw/bcXm0f9qHkumlT1QlArXSTWqaY9sunsDpOk+yCCorCKMxvWT/a3xko4EYHVdeZoh00yI2TydXn6eyICDA==}
engines: {node: '>= 10'}
+ '@napi-rs/wasm-runtime@0.2.12':
+ resolution: {integrity: sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==}
+
'@napi-rs/wasm-runtime@0.2.4':
resolution: {integrity: sha512-9zESzOO5aDByvhIAsOy9TbpZ0Ur2AJbUI7UT73kcUTS2mxAMHOBaa1st/jAymNoCtvrit99kkzT1FZuXVcgfIQ==}
@@ -1307,57 +1319,57 @@ packages:
'@emnapi/core': ^1.7.1
'@emnapi/runtime': ^1.7.1
- '@next/env@16.2.10':
- resolution: {integrity: sha512-zLPxg9M0MEHmygpj5OuxjQ+vHMiy/K7cSp74G8ecYolmgUWw0RwN02tF56npup/+qaI8JB97hQgS/r2Hb6QwVA==}
+ '@next/env@16.3.0-preview.6':
+ resolution: {integrity: sha512-tdsih48yzumsL060VIsZ9BwDYlZk0AAMT8HccspSbPUzp6ntCZ9xOMFU4W0SmqaOCEpPmTyP+5e6WT36mqN2fw==}
- '@next/swc-darwin-arm64@16.2.10':
- resolution: {integrity: sha512-v9IdJCa0H0mbo+8z5zwUpOk1Vj7RjkcI5uNYf5Ws1y6szf/p3Mzl9hLaST8SCt6L9h8NGnruZcd2+o0NTNwDhA==}
+ '@next/swc-darwin-arm64@16.3.0-preview.6':
+ resolution: {integrity: sha512-cQB2whnW1PD/Q+AxoI2X4LU3af1B+aFxWx+kmAiCCKDyjoO5Nh+9GyNu+nDAbP/WoloohbOWgO8m1U9j1EIZuw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- '@next/swc-darwin-x64@16.2.10':
- resolution: {integrity: sha512-17IS0jJRViROGmA9uGdNR8VPJpfbnaVG7E9qhso5jDLkmyd0lSDORWxbcKINzcFqzZqGwGtMSnrFRxBpuUYjLQ==}
+ '@next/swc-darwin-x64@16.3.0-preview.6':
+ resolution: {integrity: sha512-Ctrzjav21HlHwMV6afeC9/PePUdyJ+AXDQNfrrqdkIEdem9f3vsBVKtuB6gcCNT4umtql7ZLB1qaQObVqKVp5g==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
- '@next/swc-linux-arm64-gnu@16.2.10':
- resolution: {integrity: sha512-GRQRsRtuciNJvB54AvvuQTiq0oZtFwa1owQqtZD8wwnGpM2L39MV22kpI72YSXLKIyY40LC66EiLFv4PiicXxg==}
+ '@next/swc-linux-arm64-gnu@16.3.0-preview.6':
+ resolution: {integrity: sha512-V2o4V3ghCDwZ0K3BI2ts/+zDaLI1Y28Q/Bs53K3Zqk4/3M8yBTImXX7XL6BVOihncvSl8QUG3c32/W6AlgEsJA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
libc: [glibc]
- '@next/swc-linux-arm64-musl@16.2.10':
- resolution: {integrity: sha512-zkN9MQYS7UQBro+FnISUq1itaQjXI9xqISzuQ+2bc921NcJ1x4yPCqrn77tVN6/dOOXaaWVX3k6/bR07pPwK+A==}
+ '@next/swc-linux-arm64-musl@16.3.0-preview.6':
+ resolution: {integrity: sha512-btfR0TMj4RvscjYW7QvRQHstXas2969M4TBaQW98BFBLyuD8R0RFwmxYxep/aDu+xkKzfDvLsBFYcYX0ucsIHQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
libc: [musl]
- '@next/swc-linux-x64-gnu@16.2.10':
- resolution: {integrity: sha512-iCVJnwvrPYECvA6WM/7+oo+OiTvedIKLxtCLAZP4xZR3nXa1zmzZyLPbYCmWvpd4CvMYF1EMTafd0ii3DygLvA==}
+ '@next/swc-linux-x64-gnu@16.3.0-preview.6':
+ resolution: {integrity: sha512-arKlC6NTJ43NjhH+yVwEChLSWLWRtuUQPHYkuoKBK62hyL9rnMhNOXUWcQdvvhQ75UBqIDo7dpkfpOlizLClGw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
libc: [glibc]
- '@next/swc-linux-x64-musl@16.2.10':
- resolution: {integrity: sha512-ov2g4H0dHY9bPoOU83m91hWT7Iq5qy13bUnyyshLU3HGR1Ownn0X9QpmDPc5iIUaahTp7f7LeGAhV4DSFtackw==}
+ '@next/swc-linux-x64-musl@16.3.0-preview.6':
+ resolution: {integrity: sha512-ETrNCY3R1FJpOmh6I3pM+EbNA5kTTxQsCxVJTvKE9QN6+AxC6H4Ybu9F26WBseZT7zOFawlujWl8P6xo1hbgDQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
libc: [musl]
- '@next/swc-win32-arm64-msvc@16.2.10':
- resolution: {integrity: sha512-DwAnhLX76HQiFFQNgWlcK+JzlnD1rZ+UK/WY0ZMI/deXpvgnesjNYrqcfo1JzBuz4Kf7o3brIBL0glI1junatA==}
+ '@next/swc-win32-arm64-msvc@16.3.0-preview.6':
+ resolution: {integrity: sha512-6N92Tg9ImGX3anKiUu1EQYcFRXvrteL2+U/cQ863SMX9Huh8+/o3jIyCni15+NJD02Va7KQIAovURMd+EkaSOA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
- '@next/swc-win32-x64-msvc@16.2.10':
- resolution: {integrity: sha512-0JXq3b85Jk9Jg4ntLUbXSPvoDw3gpZou7twuKdoFG2jOw635v7+IiXfTaa0TxVMyx78pUjnrVYwLgjKfX4e6/A==}
+ '@next/swc-win32-x64-msvc@16.3.0-preview.6':
+ resolution: {integrity: sha512-DR6uqZI+ytCOg+F3MouQKjWwEI1I7+cAuunKtI0V3mEHdBGUmhh0t60+rrKhh+h24bvEfVr5UrH/aljAV9L0rw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
@@ -1374,6 +1386,97 @@ packages:
resolution: {integrity: sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A==}
engines: {node: ^14.21.3 || >=16}
+ '@node-rs/xxhash-android-arm-eabi@1.7.6':
+ resolution: {integrity: sha512-ptmfpFZ8SgTef58Us+0HsZ9BKhyX/gZYbhLkuzPt7qUoMqMSJK85NC7LEgzDgjUiG+S5GahEEQ9/tfh9BVvKhw==}
+ engines: {node: '>= 12'}
+ cpu: [arm]
+ os: [android]
+
+ '@node-rs/xxhash-android-arm64@1.7.6':
+ resolution: {integrity: sha512-n4MyZvqifuoARfBvrZ2IBqmsGzwlVI3kb2mB0gVvoHtMsPbl/q94zoDBZ7WgeP3t4Wtli+QS3zgeTCOWUbqqUQ==}
+ engines: {node: '>= 12'}
+ cpu: [arm64]
+ os: [android]
+
+ '@node-rs/xxhash-darwin-arm64@1.7.6':
+ resolution: {integrity: sha512-6xGuE07CiCIry/KT3IiwQd/kykTOmjKzO/ZnHlE5ibGMx64NFE0qDuwJbxQ4rGyUzgJ0KuN9ZdOhUDJmepnpcw==}
+ engines: {node: '>= 12'}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@node-rs/xxhash-darwin-x64@1.7.6':
+ resolution: {integrity: sha512-Z4oNnhyznDvHhxv+s0ka+5KG8mdfLVucZMZMejj9BL+CPmamClygPiHIRiifRcPAoX9uPZykaCsULngIfLeF3Q==}
+ engines: {node: '>= 12'}
+ cpu: [x64]
+ os: [darwin]
+
+ '@node-rs/xxhash-freebsd-x64@1.7.6':
+ resolution: {integrity: sha512-arCDOf3xZ5NfBL5fk5J52sNPjXL2cVWN6nXNB3nrtRFFdPBLsr6YXtshAc6wMVxnIW4VGaEv/5K6IpTA8AFyWw==}
+ engines: {node: '>= 12'}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@node-rs/xxhash-linux-arm-gnueabihf@1.7.6':
+ resolution: {integrity: sha512-ndLLEW+MwLH3lFS0ahlHCcmkf2ykOv/pbP8OBBeAOlz/Xc3jKztg5IJ9HpkjKOkHk470yYxgHVaw1QMoMzU00A==}
+ engines: {node: '>= 12'}
+ cpu: [arm]
+ os: [linux]
+
+ '@node-rs/xxhash-linux-arm64-gnu@1.7.6':
+ resolution: {integrity: sha512-VX7VkTG87mAdrF2vw4aroiRpFIIN8Lj6NgtGHF+IUVbzQxPudl4kG+FPEjsNH8y04yQxRbPE7naQNgHcTKMrNw==}
+ engines: {node: '>= 12'}
+ cpu: [arm64]
+ os: [linux]
+ libc: [glibc]
+
+ '@node-rs/xxhash-linux-arm64-musl@1.7.6':
+ resolution: {integrity: sha512-AB5m6crGYSllM9F/xZNOQSPImotR5lOa9e4arW99Bv82S+gcpphI8fGMDOVTTCXY/RLRhvvhwzLDxmLB2O8VDg==}
+ engines: {node: '>= 12'}
+ cpu: [arm64]
+ os: [linux]
+ libc: [musl]
+
+ '@node-rs/xxhash-linux-x64-gnu@1.7.6':
+ resolution: {integrity: sha512-a2A6M+5tc0PVlJlE/nl0XsLEzMpKkwg7Y1lR5urFUbW9uVQnKjJYQDrUojhlXk0Uv3VnYQPa6ThmwlacZA5mvQ==}
+ engines: {node: '>= 12'}
+ cpu: [x64]
+ os: [linux]
+ libc: [glibc]
+
+ '@node-rs/xxhash-linux-x64-musl@1.7.6':
+ resolution: {integrity: sha512-WioGJSC1GoxQpmdQrG5l/uddSBAS4XCWczHNwXe895J5xadGQzyvmr0r17BNfihvbBUDH1H9jwouNYzDDeA6+A==}
+ engines: {node: '>= 12'}
+ cpu: [x64]
+ os: [linux]
+ libc: [musl]
+
+ '@node-rs/xxhash-wasm32-wasi@1.7.6':
+ resolution: {integrity: sha512-WDXXKMMFMrez+esm2DzMPHFNPFYf+wQUtaXrXwtxXeQMFEzleOLwEaqV0+bbXGJTwhPouL3zY1Qo2xmIH4kkTg==}
+ engines: {node: '>=14.0.0'}
+ cpu: [wasm32]
+
+ '@node-rs/xxhash-win32-arm64-msvc@1.7.6':
+ resolution: {integrity: sha512-qjDFUZJT/Zq0yFS+0TApkD86p0NBdPXlOoHur9yNeO9YX2/9/b1sC2P7N27PgOu13h61TUOvTUC00e/82jAZRQ==}
+ engines: {node: '>= 12'}
+ cpu: [arm64]
+ os: [win32]
+
+ '@node-rs/xxhash-win32-ia32-msvc@1.7.6':
+ resolution: {integrity: sha512-s7a+mQWOTnU4NiiypRq/vbNGot/il0HheXuy9oxJ0SW2q/e4BJ8j0pnP6UBlAjsk+005A76vOwsEj01qbQw8+A==}
+ engines: {node: '>= 12'}
+ cpu: [ia32]
+ os: [win32]
+
+ '@node-rs/xxhash-win32-x64-msvc@1.7.6':
+ resolution: {integrity: sha512-zHOHm2UaIahRhgRPJll+4Xy4Z18aAT/7KNeQW+QJupGvFz+GzOFXMGs3R/3B1Ktob/F5ui3i1MrW9GEob3CWTg==}
+ engines: {node: '>= 12'}
+ cpu: [x64]
+ os: [win32]
+
+ '@node-rs/xxhash@1.7.6':
+ resolution: {integrity: sha512-XMisO+aQHsVpxRp/85EszTtOQTOlhPbd149P/Xa9F55wafA6UM3h2UhOgOs7aAzItnHU/Aw1WQ1FVTEg7WB43Q==}
+ engines: {node: '>= 12'}
+
'@nodelib/fs.scandir@2.1.5':
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
engines: {node: '>= 8'}
@@ -1396,8 +1499,8 @@ packages:
cpu: [arm64]
os: [darwin]
- '@nx/nx-darwin-arm64@23.0.2':
- resolution: {integrity: sha512-9sqhZMVFpF+qM7hq6y2xA4gVK+6RdxRioAwHxorhOZRSXdW7Y7NESs5fm8vOmdddlG07QB7sMefOKLrqCV3zGg==}
+ '@nx/nx-darwin-arm64@23.1.0':
+ resolution: {integrity: sha512-wIFH5p0AXLxbYUHgYEH/zpWpPTQ9LpqESo/GcOPXkSBtUkSAZcqXZ6jmFzTPqGAeP4PBcVZIetO0TXmSSyEO7Q==}
cpu: [arm64]
os: [darwin]
@@ -1406,8 +1509,8 @@ packages:
cpu: [x64]
os: [darwin]
- '@nx/nx-darwin-x64@23.0.2':
- resolution: {integrity: sha512-p6L3AvRhRRaR8Bl3jr76/9H04RdWUQbSgB7agK7GB7vqaLI8RifP2lqeaXcAngzjDAjw2EAf0TjOBP+T67hhcg==}
+ '@nx/nx-darwin-x64@23.1.0':
+ resolution: {integrity: sha512-D7fEW3+agyb0cWGi8qgN/0irHUwcO8nsuYOrRJjphtWE6J76EORW5sMY93/YFfnLeFVhBMBNVrE6aj2Y4wYCbA==}
cpu: [x64]
os: [darwin]
@@ -1416,8 +1519,8 @@ packages:
cpu: [x64]
os: [freebsd]
- '@nx/nx-freebsd-x64@23.0.2':
- resolution: {integrity: sha512-/py4I8Rp2UURses9H/+SQmgPVnHVSJgPimJLhXIfsRavKGu4RS7Ddu1OyNqSkCT3Otic6ImMTtkufURW22KiEQ==}
+ '@nx/nx-freebsd-x64@23.1.0':
+ resolution: {integrity: sha512-yZoZyc9t3ViaA9WWDe5F7IlJ+58Hqdn6gqoO9UG2FH3Io1mj+KpF3jhUoj3S1m18D28MN2oItS762QIt6otO3g==}
cpu: [x64]
os: [freebsd]
@@ -1426,8 +1529,8 @@ packages:
cpu: [arm]
os: [linux]
- '@nx/nx-linux-arm-gnueabihf@23.0.2':
- resolution: {integrity: sha512-xv2IzeiWJFWi4WjK0ocMkP+ze1lDeoPVCg0xOTqVs40gM66V1wVw3EK077gTqU4m0Bq1wUxe6/I8WaIGlkLgug==}
+ '@nx/nx-linux-arm-gnueabihf@23.1.0':
+ resolution: {integrity: sha512-D6QhBsLRUmwCc1jSjmY5MkyKOSWuQXQmu5K3BH6d1/uoX2HEZ68XgNyMkSwMA0g6jBKHIAguGkujiaCiXBEPeA==}
cpu: [arm]
os: [linux]
@@ -1437,8 +1540,8 @@ packages:
os: [linux]
libc: [glibc]
- '@nx/nx-linux-arm64-gnu@23.0.2':
- resolution: {integrity: sha512-ckA6hTXST+agxt/HzPGqMss9qFCZhO9b07o8usygb7QFBYQRXFgcYzhTblq4yiTL5ibJmXAGGh98011fLA2MVw==}
+ '@nx/nx-linux-arm64-gnu@23.1.0':
+ resolution: {integrity: sha512-Q61stbUFVBw9TprlVLkRQmk+fuMXPlyTlvGExJ1y8KYymDTFsjs8LFk7zTnRvFpI9LVMRuhyD3osaLy2TxPU7Q==}
cpu: [arm64]
os: [linux]
libc: [glibc]
@@ -1449,8 +1552,8 @@ packages:
os: [linux]
libc: [musl]
- '@nx/nx-linux-arm64-musl@23.0.2':
- resolution: {integrity: sha512-PAxBxy7m//cKxUeIb6Sk2X5MJ/wjcJcqCx7/L0p8omTt/y/+q1TGpVy6qmJMPUWzNgAULXtsVRSOK4rmiBcrQQ==}
+ '@nx/nx-linux-arm64-musl@23.1.0':
+ resolution: {integrity: sha512-Lm5PC4yuBHw4gr37vcAX3kvS75prqL1VpbQkPHs4Z2Us1ri29ALxgdrEFgF6fbCXxl4w3sWmcbKGvrcMdpuvIQ==}
cpu: [arm64]
os: [linux]
libc: [musl]
@@ -1461,8 +1564,8 @@ packages:
os: [linux]
libc: [glibc]
- '@nx/nx-linux-x64-gnu@23.0.2':
- resolution: {integrity: sha512-gR146Mo+BjhrIU2fNOJeVjX8HEAHrtmc7IyrD0qD9yqyq0l9Mdx92JnMW3yVQaYIMpPJIqsOvHTDIUbTLFrmTA==}
+ '@nx/nx-linux-x64-gnu@23.1.0':
+ resolution: {integrity: sha512-v1ELSkVskidK6A+mm/Ynm8TWIb5UdzGWMcD7CTgmvjTzKfXIO0QY1ToDTqvoBwnetcehWR5gnhQlhQgOSH8XFA==}
cpu: [x64]
os: [linux]
libc: [glibc]
@@ -1473,8 +1576,8 @@ packages:
os: [linux]
libc: [musl]
- '@nx/nx-linux-x64-musl@23.0.2':
- resolution: {integrity: sha512-L7JkaoAI0p+DpAi2CNCqPq8nHWkApQw2td0Cyt+stOx/OJlmEteyc/MXyTHBoMPoopNj1wWANJJQm/G1anOLhQ==}
+ '@nx/nx-linux-x64-musl@23.1.0':
+ resolution: {integrity: sha512-pD/Axn0usK2/RV2bSrLX7h59YpOXGiaYHmlZynVVS+CqkKbyFzxnrvvLmRdOdMxsfM6oDXom4lCcJMg+wUYcpw==}
cpu: [x64]
os: [linux]
libc: [musl]
@@ -1484,8 +1587,8 @@ packages:
cpu: [arm64]
os: [win32]
- '@nx/nx-win32-arm64-msvc@23.0.2':
- resolution: {integrity: sha512-B3ePaYeu31ivP3i72Vou5RBYFVrDKCMZgz7Jsax+RvEJa8dNfI+Ynh/PSoXzHudN0YsrekkKbjlxNvp/D6fWFA==}
+ '@nx/nx-win32-arm64-msvc@23.1.0':
+ resolution: {integrity: sha512-lhnRaXPGUwqw/dqBnWl/6d6r8mRQXuZS7qnnTd+U5O1R7YPb2494BQyE7aSVEFLHcX9nXywMGxo5+OUCH84xQA==}
cpu: [arm64]
os: [win32]
@@ -1494,8 +1597,8 @@ packages:
cpu: [x64]
os: [win32]
- '@nx/nx-win32-x64-msvc@23.0.2':
- resolution: {integrity: sha512-/NiB9w8nYrw7LUkcmwAJ9wis5O+kh3ahSZXMDHVYgFnD8yN7kLql39MNJD+/DGstjNSDvWh45ftqr7mZMi6wpQ==}
+ '@nx/nx-win32-x64-msvc@23.1.0':
+ resolution: {integrity: sha512-fJaNYwNk4RiUnyEDTc0bMu69dmUzgM7iGinoqFenwYEtwaXPWREBRWL6lgRDyR3CFsJw3Wi0uc+33cfreTbhVw==}
cpu: [x64]
os: [win32]
@@ -1787,124 +1890,124 @@ packages:
cpu: [x64]
os: [win32]
- '@oxfmt/binding-android-arm-eabi@0.57.0':
- resolution: {integrity: sha512-qVBsEO+KugOsCmUHcO8iqNnqc65p7PCKpCs8M66mPZ+Ri+CWbcpoQOEJBg2OTu03+0qu++NK1jj6IzvQVs0Sig==}
+ '@oxfmt/binding-android-arm-eabi@0.58.0':
+ resolution: {integrity: sha512-Uz62sHduGGPftXtILGyxdSW4PX82rUg+rfdNqhsgxe881g4rIoXlIqmZQ6HVKcF4f+F8qMhdD03Bx5u7gmeTdg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [android]
- '@oxfmt/binding-android-arm64@0.57.0':
- resolution: {integrity: sha512-mp6PibWbao3aizijcheOeHQaYEhcUAt8pwLniYbtLfHxL/psFF0BykAwCj+s3c6qIpa8yN8keZICWrqtZ70w8g==}
+ '@oxfmt/binding-android-arm64@0.58.0':
+ resolution: {integrity: sha512-rD0lRaJp1b+9vw6X4A2dJWKukd6X8yxiicN4JxXcXayolmUypRZxk+lKR+fVOu5q/iYc0fh5fR4bgmfOfVlbaA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [android]
- '@oxfmt/binding-darwin-arm64@0.57.0':
- resolution: {integrity: sha512-T+0stuCBqmUVY+aMIvrgXhzGhHO3sD5tNiiEcYqgSdPsnukskQqn2u5qOVD0sv1l7RLdFS5Z/f5Wi9Ktyjr3Eg==}
+ '@oxfmt/binding-darwin-arm64@0.58.0':
+ resolution: {integrity: sha512-uzbPPk7O6M+w2K65vcQ1woga3wgP8zghjL1KOG5b6qJ8dvYHZJ1VShaslg2KOK6yQIwCQtcMCXqLBM6sqXUNTg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [darwin]
- '@oxfmt/binding-darwin-x64@0.57.0':
- resolution: {integrity: sha512-O+3JbqWs/mCI2oi4xfhRO2IVPFJNDDEBV8Odo+ZpmsUOeKJfjXoNH7nDmBEQcDgK7NfjDIyE7kRgYSZcTLDO0A==}
+ '@oxfmt/binding-darwin-x64@0.58.0':
+ resolution: {integrity: sha512-L0nKYDxU32oxeQqJj21W9SlIMnf81VZEhyah6iDvFhf5q0oynq498Fopth7blErUJVBpVtxQ98RMCfMPqpJX6w==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [darwin]
- '@oxfmt/binding-freebsd-x64@0.57.0':
- resolution: {integrity: sha512-pxwhxVC+JkLX9twOQ/8C/vbuOQcMZyKIDmiRDZfO7yITuVcIdZCiLRqqf4QOxb2+8FWrRXzQpm+1DBKcMpHSSQ==}
+ '@oxfmt/binding-freebsd-x64@0.58.0':
+ resolution: {integrity: sha512-woNwfD58dC5PGS9LSLSD5JYfo/EFK5iG9vhDWkcCg3q78ag7KC8bpDqgvPHrMoXpx83OLXxoSOhu6z8FsVTHlg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [freebsd]
- '@oxfmt/binding-linux-arm-gnueabihf@0.57.0':
- resolution: {integrity: sha512-pxBU4zH2imB/MDBfth2rOMeVxXUMjRQLCazagwLARIFH3hVlxZJBlM4nSnHXaIHJK4/qezoFCIORN6AY8Mra4A==}
+ '@oxfmt/binding-linux-arm-gnueabihf@0.58.0':
+ resolution: {integrity: sha512-Sqs8nMLxuQpY21NKJ1u4stPDmO5hskBCNNh2E3AdCfI1QqWtf4m+Qn4mGEIUO4KGmuq3SWc/SZ80uy5IiwTCDw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [linux]
- '@oxfmt/binding-linux-arm-musleabihf@0.57.0':
- resolution: {integrity: sha512-JAprOzt8tycYou36ZgEw14DlRHTiN8qdtKANdV3VZIRIvTI/lh/cX13c9pJ/EnDk2GT3FASH7KvCgQ2AufAifQ==}
+ '@oxfmt/binding-linux-arm-musleabihf@0.58.0':
+ resolution: {integrity: sha512-Vd4exzBI5B5hB9m22JiTQzIL23WvHo/Pe+sNXPNeBLXSP9swCBPKCEBRwKpmpQzYhlgYaCgfPcGXPKAJBRIiZQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [linux]
- '@oxfmt/binding-linux-arm64-gnu@0.57.0':
- resolution: {integrity: sha512-ajtjaxSaj9xl4BW7REt+Cef/ttzbAq00Bq4z7JUDZEfgFXdwSjH8K9bF+IcIJzZB9lKqMfQ4eHuSFOvvlvtqOg==}
+ '@oxfmt/binding-linux-arm64-gnu@0.58.0':
+ resolution: {integrity: sha512-bUWi5mHV+4Vi56RLHE1h6q/HHfwAIT3XoB9vJAVeRzfu5NriXM8y6eeJu0vlKa0C9kq2rq1sOWRClhdLHPocrg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [linux]
libc: [glibc]
- '@oxfmt/binding-linux-arm64-musl@0.57.0':
- resolution: {integrity: sha512-p4Y/+RYk9Bk5WO+zHSUXAClRmZ2fbJCejMuCAsU2HhyME4jqf6Ftt/mJYEwIah1wGCBDYOB7wEGV1x5bCEZ6hA==}
+ '@oxfmt/binding-linux-arm64-musl@0.58.0':
+ resolution: {integrity: sha512-2ZHxemzgHcjtktAuVUwSoyXmGo/t+aF5tS1ciPpPei4rhSyrz3JOqDosXXrmhN/yLUSzJjtuW7ToTWqfQpCj2w==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [linux]
libc: [musl]
- '@oxfmt/binding-linux-ppc64-gnu@0.57.0':
- resolution: {integrity: sha512-By6tRALAZsno0F4zedmtG+wdMvJiJmJoXM4d3+A9zHE4HRXLqXITwRH8mgrlcXc5yJM2g2W3riRPwTYdgemZLQ==}
+ '@oxfmt/binding-linux-ppc64-gnu@0.58.0':
+ resolution: {integrity: sha512-AwKkVwjVmFQ3bcO7j0McGYAqCKH2a326fswfofng/E8VewCT/raeeGQr4huVhY704deK8AWASSTlxzMj0eZc6Q==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [ppc64]
os: [linux]
libc: [glibc]
- '@oxfmt/binding-linux-riscv64-gnu@0.57.0':
- resolution: {integrity: sha512-skYeG+RgvyzspqVEBsEprL90OYYZfoVNqB3HcCNR6QDJyXKOzfDRT3zncnHmUaFluIlBHuY23mU1b5WGgR98hA==}
+ '@oxfmt/binding-linux-riscv64-gnu@0.58.0':
+ resolution: {integrity: sha512-xsRpTxfUnJF8D3AUKko/qyWdjw4GZVHlCVFuGlzSCTeewLmykKINW8em1+wx+axsDVtJJcMtvsiaXggXxrlHgw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [riscv64]
os: [linux]
libc: [glibc]
- '@oxfmt/binding-linux-riscv64-musl@0.57.0':
- resolution: {integrity: sha512-FFgACrZOXAXUh5KQh2mt1CDOVOZmn+QzHP71wM9QobNwyQvoFfyAeefVUltW83g3sm7LTiH3yfFqLLVUpA5ZFQ==}
+ '@oxfmt/binding-linux-riscv64-musl@0.58.0':
+ resolution: {integrity: sha512-Z4AYOTcy7nYEIiXwD62PlerimyYRcfJOgUbQAEBjXz098kxKuERBlRntofGy69HHhe9E0TLVNMl1yspVNu+efw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [riscv64]
os: [linux]
libc: [musl]
- '@oxfmt/binding-linux-s390x-gnu@0.57.0':
- resolution: {integrity: sha512-Nm/BAOfQeFiiKd502mZn/GAVKJwtd0RdCg17G3Wz/WSOIQmDi3+7/SZH4BHn1Ye5KvTVH3ua8WvfwLLycNIuvA==}
+ '@oxfmt/binding-linux-s390x-gnu@0.58.0':
+ resolution: {integrity: sha512-A3nhhtZPC/TKVWOPj9q/H3p2znJDCcHWYlJBhWL8hGq/bFmBaNBHC8Np6E581yVq1w9Mi3rMDNzDalWvtUfJtQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [s390x]
os: [linux]
libc: [glibc]
- '@oxfmt/binding-linux-x64-gnu@0.57.0':
- resolution: {integrity: sha512-BiSy5Ku3mQqyxS6YIqAJgd403wEUWvI7kerfzPxc2l/txZVmZM0pSj7oDM+4bGBExowxOi7o73jEam1W0EDTZg==}
+ '@oxfmt/binding-linux-x64-gnu@0.58.0':
+ resolution: {integrity: sha512-2g+tVkgwqphw8R4hgo+kF4oz8+P5RwVOtr9+irsC7uwEp0e9j7Crw8kDGKL20uYlLPD7g02DqA61mC/UNYx98A==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [linux]
libc: [glibc]
- '@oxfmt/binding-linux-x64-musl@0.57.0':
- resolution: {integrity: sha512-BCRkJiotz5s9afLYD2LuMvzAoDYx9H17E/YbDyu4xK7l4zHDPeny9ErSXL//i/nJyaOwRk08x4b8cgJC00+JDg==}
+ '@oxfmt/binding-linux-x64-musl@0.58.0':
+ resolution: {integrity: sha512-rc15P6AbyyB7426aN8AakLd02Trb3a6ML/mmfAQeVHJEfVofWLcWIrBdy6zDEY+DIaL/s8E4GGPboVw+oP3+EA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [linux]
libc: [musl]
- '@oxfmt/binding-openharmony-arm64@0.57.0':
- resolution: {integrity: sha512-4Oaxe1qrGgXfpCJ1C/ERJ2iCtV2rN1R79ga9fsfyVHfSQRu/hVW780u2KDqZWFZ/iGTHODJji0JemxqFZ63eIQ==}
+ '@oxfmt/binding-openharmony-arm64@0.58.0':
+ resolution: {integrity: sha512-ZWoTM27/HYPOh9iq86DAbhPu9nXb8qKvvGU/h8OfliyVUFAMMNTLDkGsWDKKnDqIkqvZ9+dXlgUOsH1LYO3O7g==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [openharmony]
- '@oxfmt/binding-win32-arm64-msvc@0.57.0':
- resolution: {integrity: sha512-MYLAsDnhdNsSGheLYhWgbk0vfIrlS84iQYun/y21fX6u0jj8iBtYtbpZMdiqYeuf8U12eVPUjVY2xE2NrCfJ0g==}
+ '@oxfmt/binding-win32-arm64-msvc@0.58.0':
+ resolution: {integrity: sha512-LHZnqFXe2dEfkRI4XdZS/57nEOT/I4UCRX5IyM9v4GYW9XwQCjGe1IUK59SuKw3POwvcgWQ4pme2cYXmNqTNPg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [win32]
- '@oxfmt/binding-win32-ia32-msvc@0.57.0':
- resolution: {integrity: sha512-PBwdzZALJY/jcCx2E6is0yu+cuVXeySTDmwuseD+9j0mHqlRNxwlKgsyRTBed/woPeqfVfuXfWjoq4Cx2Zt3Eg==}
+ '@oxfmt/binding-win32-ia32-msvc@0.58.0':
+ resolution: {integrity: sha512-mZKpg20TpheCJym1rarcZCUJeW1sSruw8zAAaCYWvuVfwIUDN1CXdrPU/JgCWReXTCTrEfCB8Wyo3hh9jSZ2EA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [ia32]
os: [win32]
- '@oxfmt/binding-win32-x64-msvc@0.57.0':
- resolution: {integrity: sha512-bQJdH9i4RRfw55jm7+8/xS7GzHLLTbHx4huhrrDxQJaJtbSDbsyOnODvP1ftT7EG0KFKAYO2S+q6AcioXODx8w==}
+ '@oxfmt/binding-win32-x64-msvc@0.58.0':
+ resolution: {integrity: sha512-N/wUU4N5PZ2orBtI+Ko7MnMfYLfE7K91UrGMY/c/pYyHR3lA9kwst1XugkZx+92YcRh/Eo+iv2eTESSWXfiZPA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [win32]
@@ -2164,11 +2267,11 @@ packages:
resolution: {integrity: sha512-//0sR/cow/s4ICQaYoAobOl4aU8cjU6x/V24V7XkKotb9+O+3zySIYp146vpaobYHnxa4pZX8NkV54Z5AwbDKA==}
engines: {node: '>=12'}
- '@posthog/core@1.40.1':
- resolution: {integrity: sha512-jXuMtZCwA7AMpYlo1wjm6GlC58YBlz/ZxpDIsF9hroUfqYoPPDmQbsQb4iiZAS43+o/kwloxdKJIlE0IiwQ5HQ==}
+ '@posthog/core@1.43.1':
+ resolution: {integrity: sha512-hGM8f5sp3we6Em/RQHXbmyYm554hUx9+9jhf92ZQgDS4/xW72KHyZiO9wcFye+qAx2cJAOhOCDIznmO1FV8IbA==}
- '@posthog/types@1.393.0':
- resolution: {integrity: sha512-vzWeEJZ7ERQhFRoQYaP5jzN1JvIu46UJyHXsuv+dTGW2r3sMgREOhNxXLZjmFHwZ8/FOHQoyqqQmXTCXZSfMSg==}
+ '@posthog/types@1.397.0':
+ resolution: {integrity: sha512-Pa7FtsBo3V0XrhY4y8Xquwp8U07syuZ2IGQdlsRyxhz0yejQLceFjI58UssCXE5zDCDj3km5l7H3ufD6rHChCg==}
'@radix-ui/number@1.1.2':
resolution: {integrity: sha512-ceTwaxc4I5IOi97DgCotl3pqiyRGvffcc0oOsE2dQYaJOFIDsDt4VWG6xEbg1QePv9QWausCEIppud/tJ1wNig==}
@@ -2704,45 +2807,45 @@ packages:
'@standard-schema/spec@1.1.0':
resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==}
- '@supabase/auth-js@2.110.0':
- resolution: {integrity: sha512-Mi288WCTp6wxMFCOu/UgzgHEXODjdl2uVTLqK11eanzGZaldU3RyP8Am+ZbNuVzFP+5+iOvppxzv7N5Ym84xTg==}
+ '@supabase/auth-js@2.110.2':
+ resolution: {integrity: sha512-Qj7a6EDP+AMMQFWqGv+qFa8r6re//dk+qQI5bA0KK+PZmnI3JPu97TDeNt6SMiQ2FkklP79hP2yDFYSnA989OA==}
engines: {node: '>=22.0.0'}
- '@supabase/functions-js@2.110.0':
- resolution: {integrity: sha512-Fde5wlY8ZZy+9yqrWlQHo8MacSyUBArBEtN2boB4thJQigPnQD/cc61qZN0n3I1L0gwhWtHYwIMnOBKxSvF6Hw==}
+ '@supabase/functions-js@2.110.2':
+ resolution: {integrity: sha512-ZjjqrXpxM9/rE+eAtZxiK45EWy9EBoJQ322Q5Y75LccYQNh212neHTgXP/o4MIzmH0LNXT8UzvTZtQOfOzyoeQ==}
engines: {node: '>=22.0.0'}
'@supabase/phoenix@0.4.4':
resolution: {integrity: sha512-Gt0pqoXuIqX/8dvG0OKp/wMCobXNH3klNbUPBNyOfN0YA1IswrM3HyWFMOPk1Jy+BRaIyDPcFx4jLBwHNmlyfQ==}
- '@supabase/postgrest-js@2.110.0':
- resolution: {integrity: sha512-ZbC1QZL3jcvBUfVKjJbgRM27G4Mg3Zzqdm44m5pJafe1e52Cli793EOnwQucomBAGEUDd03Nzaf7XV3ji/XexQ==}
+ '@supabase/postgrest-js@2.110.2':
+ resolution: {integrity: sha512-++LBmcIMwCtgO4tISQUmo9+2xkRwHQqS8ZKMCnhXLe9P8k8YQRXuMoh/RiSzQSoev8gqet0W7yOboW0cUxnt0Q==}
engines: {node: '>=22.0.0'}
- '@supabase/realtime-js@2.110.0':
- resolution: {integrity: sha512-Wn2AWpneZuDFTkp/65tqctvoh+3JvyTjMam8sTMqVWy5BgkU8zAvFwilPYPPPhkINeKF8NAJKP7FclJ2iGCUMw==}
+ '@supabase/realtime-js@2.110.2':
+ resolution: {integrity: sha512-z3jTOTPgyn6E3r6dVOOQ10He4yAMB2czjFw7xVdX3s16MHElna5rY1gVaePs0NIo6xvtMYbtmOXlFaFt/ePLpg==}
engines: {node: '>=22.0.0'}
- '@supabase/storage-js@2.110.0':
- resolution: {integrity: sha512-71+gU3HrhiylAhftY6FmO5PPdcsScnVcS766CVD+vTYK9qTDLbrx8FhgBYbqGm3iV/wkTfzrNJfjGsMeFRkJRQ==}
+ '@supabase/storage-js@2.110.2':
+ resolution: {integrity: sha512-EhsRSwSnmQefKJsAxoRUZ0hvHr92ECM8DDGAKR5z0HdoJx4heI60PjHUTruVNZxKX6XeobLGDyLud020Bw1iwg==}
engines: {node: '>=22.0.0'}
- '@supabase/supabase-js@2.110.0':
- resolution: {integrity: sha512-8yI84VJiEVW4zxZpLUmxXmjzQ7O2St9X/ymzlBETDHTURPWG3LmvbSiibq+7dqAJmyoUfxZnSfXeM4HCM8s4XQ==}
+ '@supabase/supabase-js@2.110.2':
+ resolution: {integrity: sha512-r9q9w4ZQ6mOjh36aqUNFSisBF611vzpO8JphBESr2Q1SWvmGFQeI7Jq7Y+PaNMZ6Zszz+S2yTlJStCpnaMSnQg==}
engines: {node: '>=22.0.0'}
- '@swc-node/core@1.14.1':
- resolution: {integrity: sha512-jrt5GUaZUU6cmMS+WTJEvGvaB6j1YNKPHPzC2PUi2BjaFbtxURHj6641Az6xN7b665hNniAIdvjxWcRml5yCnw==}
+ '@swc-node/core@1.15.0':
+ resolution: {integrity: sha512-WAerrrl087WgenB92XG4Th2t0NQFfMNLYSe0sW2cEMMqM/LQmP4rozsDJl0vuzTrbewjpKQryxFXI+aYig/dBg==}
engines: {node: '>= 10'}
peerDependencies:
'@swc/core': '>= 1.13.3'
'@swc/types': '>= 0.1'
- '@swc-node/register@1.11.1':
- resolution: {integrity: sha512-VQ0hJ5jX31TVv/fhZx4xJRzd8pwn6VvzYd2tGOHHr2TfXGCBixZoqdPDXTiEoJLCTS2MmvBf6zyQZZ0M8aGQCQ==}
+ '@swc-node/register@1.12.0':
+ resolution: {integrity: sha512-RnkF4NOHqv3JAKJS9YguLeFH81NPv8VQKTXt5lMJfOujB7qvZXJRei5LJeulihF0ZMD1UIruIA0gm9it/bH37g==}
peerDependencies:
'@swc/core': '>= 1.4.13'
- typescript: '>= 4.3'
+ typescript: '>= 4.3 < 7'
'@swc-node/sourcemap-support@0.6.1':
resolution: {integrity: sha512-ovltDVH5QpdHXZkW138vG4+dgcNsxfwxHVoV6BtmTbz2KKl1A8ZSlbdtxzzfNjCjbpayda8Us9eMtcHobm38dA==}
@@ -2877,6 +2980,9 @@ packages:
'@types/hast@3.0.4':
resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==}
+ '@types/hast@3.0.5':
+ resolution: {integrity: sha512-rp/ezSWaD1m44dPKICGhiskI13nVr7qTloFwDa/IYkhhf5nzwP+zIQcIJh3WIFSBOy/H1PzB40jPjMDksN4F+g==}
+
'@types/mdast@4.0.4':
resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==}
@@ -2921,55 +3027,179 @@ packages:
'@types/ws@8.18.1':
resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==}
- '@typescript/native-preview-darwin-arm64@7.0.0-dev.20260703.1':
- resolution: {integrity: sha512-EwJEd6hfaHrrbSLat6+xX8fZiAvG+/Ae1gqvJEayTNdDbkrZxmeLS23YdjUmDMIOKI2wa7zXQDid8WtrvDfMTQ==}
+ '@typescript/native-preview-darwin-arm64@7.0.0-dev.20260707.2':
+ resolution: {integrity: sha512-wny2pgKjGbiZtnOIHVa3tXC1UfDqxNEFzyPGmiqybedG8hipG2Nfp0l5UxbaKCjkLacUpH/W5bP2hBOMVhCOzg==}
engines: {node: '>=16.20.0'}
cpu: [arm64]
os: [darwin]
- '@typescript/native-preview-darwin-x64@7.0.0-dev.20260703.1':
- resolution: {integrity: sha512-tcS3gpivMq+BAiaupFqM5vuERykogJlfD4CjoxkSCksmmsKgWV96S2U/LjrKgll8R6/OEkg2VL2ycRG9+tIuHw==}
+ '@typescript/native-preview-darwin-x64@7.0.0-dev.20260707.2':
+ resolution: {integrity: sha512-Afc7M5zOwo+GpfcYwz5Z8HMB2tPVsui7nNIqEuuFB73MPdVqNn/Wmpe4tP4MRri0AtJnJknoHBaTJ/VDAp/Jhw==}
engines: {node: '>=16.20.0'}
cpu: [x64]
os: [darwin]
- '@typescript/native-preview-linux-arm64@7.0.0-dev.20260703.1':
- resolution: {integrity: sha512-m8IJTOneLXRtq6prLz8uuhp463kEt+AHV5Ceqp7G0o3eAvbKP059OwzK6WXCS5J0B3ZxX+BwBf9wDXSNidWJCw==}
+ '@typescript/native-preview-linux-arm64@7.0.0-dev.20260707.2':
+ resolution: {integrity: sha512-iITBa2WjjTI5N9t5l7Z4KoOSI+2zBlhbvFzsD/f8qX8QoKjz/Y4DPyBDgezYi8nkqjjksbgSOJ3/ykzhwrB9cg==}
engines: {node: '>=16.20.0'}
cpu: [arm64]
os: [linux]
- '@typescript/native-preview-linux-arm@7.0.0-dev.20260703.1':
- resolution: {integrity: sha512-nluwnKcdGo6laWWYtWF3zFUDfi7nNrcD5S/T5382fVmtKmNqIdzFm9ANgSSGAavuzfdu9YJLaVWpx72Oe40AEQ==}
+ '@typescript/native-preview-linux-arm@7.0.0-dev.20260707.2':
+ resolution: {integrity: sha512-hJm/UOqZTr9FHmR7uNm8VGX4oKtfWk0Jem0zPeJFNC8ckGUfSBueyiEYMZB+XmRc1aG4x1E46y3CplP4CLHvGQ==}
engines: {node: '>=16.20.0'}
cpu: [arm]
os: [linux]
- '@typescript/native-preview-linux-x64@7.0.0-dev.20260703.1':
- resolution: {integrity: sha512-5ga94rso68kaxJUzaufDVhka1zPaSbPgNXaemQO8faPW0crvRIkbv0g8bpG4pdWMV0tTylmluDles4ZcAzOprg==}
+ '@typescript/native-preview-linux-x64@7.0.0-dev.20260707.2':
+ resolution: {integrity: sha512-du0dzi6y97Po5vDNdPJTyyijHCpaS22JLRnKZEJXBDaO9gCIymOv/5QQokFRuOlQm0bWl3i9PF4OVdGP6uAOQA==}
engines: {node: '>=16.20.0'}
cpu: [x64]
os: [linux]
- '@typescript/native-preview-win32-arm64@7.0.0-dev.20260703.1':
- resolution: {integrity: sha512-YeRqOUuSyhbtryBSUE073OLpReIQXWJVyjP45gPLJ+0KAGvkd1VFz2FY1JEo++LyHoqXsGD2+qvdPpnTfSAIJg==}
+ '@typescript/native-preview-win32-arm64@7.0.0-dev.20260707.2':
+ resolution: {integrity: sha512-SsAwfhyHJ1akgBc+99z4+hwdbHsdWaKB8EwCNIMA6JfSLMeUjffrYvxu+vfMyxVtOVOz7RrRXRoiDiu4a2sCtg==}
engines: {node: '>=16.20.0'}
cpu: [arm64]
os: [win32]
- '@typescript/native-preview-win32-x64@7.0.0-dev.20260703.1':
- resolution: {integrity: sha512-WYNcbTaxCPgiDLrL2aPJ3BJA05nJU8DK0fUFGkGAER0oM+KcJcQUBeUkXg/7A4HBTNYcj7zIxqNgkJU1TRa/Kw==}
+ '@typescript/native-preview-win32-x64@7.0.0-dev.20260707.2':
+ resolution: {integrity: sha512-DL4u27stv0fo71sVhOzHSwE+YMZsbBijVI+kg5dLDLilSH79WFTJ8RSQ46vJrCMt+Gjlv/JOZP1PuLJDfioYeQ==}
+ engines: {node: '>=16.20.0'}
+ cpu: [x64]
+ os: [win32]
+
+ '@typescript/native-preview@7.0.0-dev.20260707.2':
+ resolution: {integrity: sha512-oUGp+Rep/hqMhPunyinsALUwSlzHINSxitifPiSaeqoKOKD2OlR9NE3TaPqwsl4NlGslsOSUXI1JotWQzpYCPg==}
+ engines: {node: '>=16.20.0'}
+ hasBin: true
+
+ '@typescript/typescript-aix-ppc64@7.0.2':
+ resolution: {integrity: sha512-MTKKkWB7p/0E9xi1d1tHtZ5PiLkGEMIq88pK2CubZjOsLtYTLqhgIgi6zepFa+9GHZ6h05NMCkQxGKiPXMxXtQ==}
+ engines: {node: '>=16.20.0'}
+ cpu: [ppc64]
+ os: [aix]
+
+ '@typescript/typescript-darwin-arm64@7.0.2':
+ resolution: {integrity: sha512-gowzar9MwS/aRWp6f3a4KUqzRjAZjOsmGNCM6LcTgXum+dBfgsBVMN+AgvOCCbguXyick6LJhpBszxMebJ8syA==}
+ engines: {node: '>=16.20.0'}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@typescript/typescript-darwin-x64@7.0.2':
+ resolution: {integrity: sha512-SZ9xZInqApNlNGc9s0W1VSsktYSOe9cFqNOIqmN1Gs8SmkjKZYFt017G4VwPxASInODuAdbTW7sXiFUf893RgA==}
+ engines: {node: '>=16.20.0'}
+ cpu: [x64]
+ os: [darwin]
+
+ '@typescript/typescript-freebsd-arm64@7.0.2':
+ resolution: {integrity: sha512-W5NH4y/J0plIIS5b2xvTEkU7JFxyqdMAOgf+Ilhl0vHQXKO5dZoxd+C/jEtq56c4F3wk71RB4BMRQ2XdI+bwYQ==}
+ engines: {node: '>=16.20.0'}
+ cpu: [arm64]
+ os: [freebsd]
+
+ '@typescript/typescript-freebsd-x64@7.0.2':
+ resolution: {integrity: sha512-UMGDx5sTpzNw3WiPebH7l90IWfJggEd+egHt/q6p7/Cm3zqoV7VxkGXt+3DxPIw8CcmvAB0j3sVVfbhX+M4Tpw==}
+ engines: {node: '>=16.20.0'}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@typescript/typescript-linux-arm64@7.0.2':
+ resolution: {integrity: sha512-Qh4eU4/y3yDjnfjjyPYihMj5/ODIlmt+Bzu17OI+fiSRDW57QmU5SiN63exPRNJPKUzcc1INa1NXdrJ+MqHjUQ==}
+ engines: {node: '>=16.20.0'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@typescript/typescript-linux-arm@7.0.2':
+ resolution: {integrity: sha512-gffT3xPz9sR7j/YJExkyPntrI0P2EP9XbOyWzth2/Gs0RstK+90RBcO0ncXoXy/beYll1SXw846Nf2zdnEz0QQ==}
+ engines: {node: '>=16.20.0'}
+ cpu: [arm]
+ os: [linux]
+
+ '@typescript/typescript-linux-loong64@7.0.2':
+ resolution: {integrity: sha512-uEHck9i8hoAzXPiYRib1O7miOnz23SxIeVl6F4LXox+qov1K35jHcEW6VHKvZI+pyvl7fZEP4MCU5LYvIq1GuQ==}
+ engines: {node: '>=16.20.0'}
+ cpu: [loong64]
+ os: [linux]
+
+ '@typescript/typescript-linux-mips64el@7.0.2':
+ resolution: {integrity: sha512-R4KvAMnE43W5Qeqb0Ly56O3mWMWIAgsMyz36DCaycd5nbg/9kzm0liw3JocfRqyJY0KPmzFjbswozXyW0DnIYA==}
+ engines: {node: '>=16.20.0'}
+ cpu: [mips64el]
+ os: [linux]
+
+ '@typescript/typescript-linux-ppc64@7.0.2':
+ resolution: {integrity: sha512-DORx5b3sd/4S7eayxm4FQv+A7CrkUIGRaHiwI8oiHTAI1fAPWhF4J0vAlkC8biAlHSVVwxMQ3tjZ2/DVbnQiiA==}
+ engines: {node: '>=16.20.0'}
+ cpu: [ppc64]
+ os: [linux]
+
+ '@typescript/typescript-linux-riscv64@7.0.2':
+ resolution: {integrity: sha512-wf0jqEDOjrPRnKwYRyyJDRo11KMbvMFrU+q4zqKyChODBzvlkbhNQfKvLxQCcwTpdDaXSHZTVuh0JoCrKCUMHQ==}
+ engines: {node: '>=16.20.0'}
+ cpu: [riscv64]
+ os: [linux]
+
+ '@typescript/typescript-linux-s390x@7.0.2':
+ resolution: {integrity: sha512-IkwJc3L7yhytWd/ewjyxNDfOmswCm9GWMJT/ue/dU4aZNbwZeYAetq42VyLmsmSjvoX7z74X6ZaYCtzAr0EuGw==}
+ engines: {node: '>=16.20.0'}
+ cpu: [s390x]
+ os: [linux]
+
+ '@typescript/typescript-linux-x64@7.0.2':
+ resolution: {integrity: sha512-EYdf2cNg7rgCWJnxCdJ+F3V39O8ihb37eHAu1LK8oAFizgTQbPOK7zHHXbPt8rX24COqODXeI3sIf0fCXG7H/A==}
+ engines: {node: '>=16.20.0'}
+ cpu: [x64]
+ os: [linux]
+
+ '@typescript/typescript-netbsd-arm64@7.0.2':
+ resolution: {integrity: sha512-+polYF4MF04aPpO5FTkHran9yUQDSXqy5GiSDKpsll5jy3l3+g9QLhpf39T+ePtefhXLOGrLl0QIjkQP6VnelA==}
+ engines: {node: '>=16.20.0'}
+ cpu: [arm64]
+ os: [netbsd]
+
+ '@typescript/typescript-netbsd-x64@7.0.2':
+ resolution: {integrity: sha512-8YIT0EHM/3dq10ZOVF/A7pc/YSMtbcecct4rWtexrnSCHOPcpC2KTLXfTCR6vDpnSiY12heNb1GiN/wu+T/FyA==}
+ engines: {node: '>=16.20.0'}
+ cpu: [x64]
+ os: [netbsd]
+
+ '@typescript/typescript-openbsd-arm64@7.0.2':
+ resolution: {integrity: sha512-APT8+ClYnuYm1u9+kgGXoMj2VzWzcymwh2gNSQVySHfkRDGOTVkoWLjCmOQSaO+PoqQ57B0flRp9SA+7GnnkzQ==}
+ engines: {node: '>=16.20.0'}
+ cpu: [arm64]
+ os: [openbsd]
+
+ '@typescript/typescript-openbsd-x64@7.0.2':
+ resolution: {integrity: sha512-yX7s+Q0Dln0Dt9tEzZsAjXXR/+ytBM7AlglaqyeMPxQszJ1JhlJdZ6jLA+IzldHtflX81em7lDao1xXu+aRRkg==}
engines: {node: '>=16.20.0'}
cpu: [x64]
+ os: [openbsd]
+
+ '@typescript/typescript-sunos-x64@7.0.2':
+ resolution: {integrity: sha512-dLJDGaLZ1D4HPQn62u1n8mBDkJREwMsAkCdkwd4Ieqw+x3TUyTsqY0YiBCtE6H6OzzgGk3iuZ3vFWRS+E8/d1g==}
+ engines: {node: '>=16.20.0'}
+ cpu: [x64]
+ os: [sunos]
+
+ '@typescript/typescript-win32-arm64@7.0.2':
+ resolution: {integrity: sha512-Gyl1Vy6OsWesLzmq+EP0Fb7b4Nid5232AvcA2SFcdYreldpNtYFFofPjnt62y9hQy7VTaZp65ICJjuAQRaVcIQ==}
+ engines: {node: '>=16.20.0'}
+ cpu: [arm64]
os: [win32]
- '@typescript/native-preview@7.0.0-dev.20260703.1':
- resolution: {integrity: sha512-qyEHkEeRWCSGLa6a8oArnMPdn3Vcl1AZj8YHLO7lK0VjEEF/YJfz1FvxmpEeuhy0ZDfvJ7GtgXbvbjcU3zpPjQ==}
+ '@typescript/typescript-win32-x64@7.0.2':
+ resolution: {integrity: sha512-0BQ3HkAHHlKLSp1qRvf3SUhGpGsDuhB/jgFw75guyqbxJqEaS0Cw/VFO8i2nHglJUzQCRtMMR/IBAKE3ETMC4g==}
engines: {node: '>=16.20.0'}
+ cpu: [x64]
+ os: [win32]
+
+ '@typescript/typescript6@6.0.2':
+ resolution: {integrity: sha512-mbCddXd+jm7hfx7w2YU64/Av4/NqqeG3GoRZgxPcgoTxYjhrcfJRw9ULch71SS4G+Q3bOXFhRvPqjguN0Hyp5w==}
hasBin: true
- '@ungap/structured-clone@1.3.2':
- resolution: {integrity: sha512-5jsZFwgR5rTdKwidH9Qmat75RKwqfpKlWWB1frDkljN127mwqBu8K0PYo7/hFpF03IEJpfVPpCQDY/eDx3iHvA==}
+ '@ungap/structured-clone@1.3.3':
+ resolution: {integrity: sha512-60YRaenCQcVjYEKOcG824+DRGGIQ3VKErcBoAEDJZz5bKIs2ZG+X/H9Nk+Q6EVkwJk5QNApxbrc5QtBSwtrXAg==}
'@vercel/detect-agent@1.2.3':
resolution: {integrity: sha512-VYNCgUc0nOmC4WJmWw9GkrKdfr8Zl4/rxhC5SvgacBgxiW9W/9NRttUoHHXV8xdII3MaRgkZZVX8Ikzc/Jmjag==}
@@ -3050,16 +3280,16 @@ packages:
resolution: {integrity: sha512-tJ3XO0MaFe8gx9oiLBu3Jim8JVyJRC08c2Y4dfx3wd1j9HlVkiWnW5qYOoTHA4NfdMzugsBsI8GlX3v/y/EtPg==}
engines: {node: '>=18'}
- '@vitest/coverage-istanbul@4.1.9':
- resolution: {integrity: sha512-4a7DsIwycTf4eYwEDtnMfMV8H80KSKH9PuMHhqL5SwPZzDyUKq2X/TPCVZ7NqIuSz7UbZckmEmkip6iZBI/gEA==}
+ '@vitest/coverage-istanbul@4.1.10':
+ resolution: {integrity: sha512-AyNJ5pQRFqCX7pwB9PSTmoVKPaZ4H5IEVJfJsT+q1DYkXvZMEFYgJlyk5sfStmt9rVYRyYYRRsuBeImCOc39ww==}
peerDependencies:
- vitest: 4.1.9
+ vitest: 4.1.10
- '@vitest/expect@4.1.9':
- resolution: {integrity: sha512-vl/rYsUKcBr3SnQn166+XR5ZQcgMx3DQhFWdfli/cWpLnLUmbxZvyrJZotLFUryib+LtArYMSTJ5RbQ57ZqrlA==}
+ '@vitest/expect@4.1.10':
+ resolution: {integrity: sha512-YsCn+qAk1GWjQOWFEsEcL2gNQ0zmVmQu3T03qP6UyjhtmdtwtbuI+DASn/7iQB3HGTXkdBwGddzxPlmiql5vlA==}
- '@vitest/mocker@4.1.9':
- resolution: {integrity: sha512-EVkXzBjrPGM+cK8/ANWgBrkUCfJfb38/EfTSO8h7pWvKkyPkpWxvR7BkD2MyItMF62C97zAEoqdpUixwR/e+Rw==}
+ '@vitest/mocker@4.1.10':
+ resolution: {integrity: sha512-v0xaezt+DKEmKfaxg133ldzADrwLGd7Ze1MfQQTYfvs8OqZIwbxyxaYURivwV7sWy5fqn3rH5uOrSp07bp44Ow==}
peerDependencies:
msw: ^2.4.9
vite: ^6.0.0 || ^7.0.0 || ^8.0.0
@@ -3069,20 +3299,20 @@ packages:
vite:
optional: true
- '@vitest/pretty-format@4.1.9':
- resolution: {integrity: sha512-s0iufns3iIFitdgm+YR7g1whCAaGtXz459VS9/PqyKDEEFgYIhsHOQmXgIgDuYCt7DeQmiZT0Qe2OA2p4ZPu5A==}
+ '@vitest/pretty-format@4.1.10':
+ resolution: {integrity: sha512-W1HsjSH4MXQ9YfmmhLAoIYf1HRfekQCGngeIgcei6MP5QQGWUe0gkopdZQaVCFO+JDJMrAJGwa5pRpNpvy4P8Q==}
- '@vitest/runner@4.1.9':
- resolution: {integrity: sha512-KXLMDtc7oe70+3mJfGrPUWPesswH+3sTxAMAMl8DG7I8IUQT4XW718dY5ID3vPUcmlu27CcKfY4P3h3I29SLJg==}
+ '@vitest/runner@4.1.10':
+ resolution: {integrity: sha512-IKI6kpIH+LmpROplyLwBBaCfMgOZOMsygVa6BARD6ahA04VRuJSa6OaVG7kRvSEMD870Vd91rSSw0eegtWyLGg==}
- '@vitest/snapshot@4.1.9':
- resolution: {integrity: sha512-Jc7RKGNBo8Z28WYIm0Niej4xdSPByRf6mU58VpHQkd6Zh05rlnA+twjbK5HyeIGHxrzsc3mJgS43uM0CZKzaIA==}
+ '@vitest/snapshot@4.1.10':
+ resolution: {integrity: sha512-xRkfOT1qpTAi/Ti4Y1LtfRc3kEuqxGw59eN2jN9pRWMtS/XDevekhcFSqvQqjUNGksfjMJu3Y+oJ+4Ypn2OaJw==}
- '@vitest/spy@4.1.9':
- resolution: {integrity: sha512-fHpsS6mIi+PiEW+vcRVOMkX1oSaPKne3VOclSFICPcGOmfKgXPU5iAah+wcNcj2xPrCCmfq99IDGf+EojhhvhA==}
+ '@vitest/spy@4.1.10':
+ resolution: {integrity: sha512-PLf/Ugvoq5wO/b4rwYCR1h2PSIdXz7wnkQFMiUpLdtM7l6pqVFcQIBEHyT1+l+cj7mNwAfZHzqXqDyjvOuwbDw==}
- '@vitest/utils@4.1.9':
- resolution: {integrity: sha512-A51o8ymO5PpqlWNnBP9ZHPXDIpuMtTLlGSjN7la4US+LJzoUMyhwjA5QXlm39JexgwHKW4Xjs8Z2d3dLCXOeuA==}
+ '@vitest/utils@4.1.10':
+ resolution: {integrity: sha512-fy9am/HWxbaGt/Sawrp90vt6Y6jQwf1RX77cz3uwoJwJVMli/e1IEwRPnMNJ7vKfPTwo0diXifkpPvwH9v7nGA==}
'@yarnpkg/lockfile@1.1.0':
resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==}
@@ -3343,6 +3573,10 @@ packages:
resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
engines: {node: '>= 0.4'}
+ call-bind@1.0.9:
+ resolution: {integrity: sha512-a/hy+pNsFUTR+Iz8TCJvXudKVLAnz/DyeSUo10I5yvFDQJBFU2s9uqQpoSrJlroHUKoKqzg+epxyP9lqFdzfBQ==}
+ engines: {node: '>= 0.4'}
+
call-bound@1.0.4:
resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==}
engines: {node: '>= 0.4'}
@@ -3657,6 +3891,10 @@ packages:
resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==}
engines: {node: '>=10'}
+ define-data-property@1.1.4:
+ resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
+ engines: {node: '>= 0.4'}
+
define-lazy-prop@2.0.0:
resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==}
engines: {node: '>=8'}
@@ -3734,8 +3972,8 @@ packages:
ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
- effect@4.0.0-beta.93:
- resolution: {integrity: sha512-wNS5MKFa3C42uBfIDik2oJ78lhpoYz2hN4oBR0229BeeDCIrkg/FiOvoiPGdCVlWa7MEKxEL5I0f8AILVHSD9A==}
+ effect@4.0.0-beta.97:
+ resolution: {integrity: sha512-pK03HpQVxGZOWdwDAy/iwvV8u3KYcUf2mOWyWqaut2zau8V2u6ejWP7b4BELjyUIiZWW1fl/s/VJpgZUcTjThg==}
ejs@5.0.1:
resolution: {integrity: sha512-COqBPFMxuPTPspXl2DkVYaDS3HtrD1GpzOGkNTJ1IYkifq/r9h8SVEFrjA3D9/VJGOEoMQcrlhpntcSUrM8k6A==}
@@ -3928,8 +4166,8 @@ packages:
resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==}
engines: {'0': node >=0.6.0}
- fast-check@4.8.0:
- resolution: {integrity: sha512-GOJ158CUMnN6cSahsv4+ExARvIDuzzinFjkp0E9WtiBa5zcVeLozVkWaE4IzFcc+Y48Wp1EDlUZsXRyAztQcSg==}
+ fast-check@4.9.0:
+ resolution: {integrity: sha512-7ms6T7SybUev/PQITciI0yLM2pOSFy5zpG8Ty7tQofcVaQUvrMXp6CBwqF6fThLCLOrfBtuHAtwq6Yu4XPCllg==}
engines: {node: '>=12.17.0'}
fast-deep-equal@3.1.3:
@@ -4077,8 +4315,8 @@ packages:
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
os: [darwin]
- fumadocs-core@16.10.7:
- resolution: {integrity: sha512-lR1hDOtJ8ubsLKYH2VMkp+iVZTDdOiMh4StFaWtuTvy8Wfnngz0YSHeFijmm2K+4lg2DLXLMuCEHQ6my54g2Eg==}
+ fumadocs-core@16.11.1:
+ resolution: {integrity: sha512-tKuh1AKoVTb+f7IoAOM2cfz5djd3YhePeqA95q6mf422gEvDTeJms23OJ+icYRWZ6ryNQ5W/ZsgKEe87M5HVYg==}
peerDependencies:
'@mdx-js/mdx': '*'
'@mixedbread/sdk': 0.x.x
@@ -4136,10 +4374,11 @@ packages:
zod:
optional: true
- fumadocs-mdx@15.0.13:
- resolution: {integrity: sha512-VsGhCiLriXXMzm3WbgrVP7t6LvOthwh1BC+IGSI1ZW63UcSo1jE4aAiuUrTIF0jv1EGQkJG8cPsy0cOnf4sejA==}
+ fumadocs-mdx@15.1.0:
+ resolution: {integrity: sha512-2nDusSlYFuNVcyB51jgY3tA3r01ALTwoURrMDNoc7cbJKZ2sac/PW+CDq6SHTArkgRMmFiKYQGfspJdjgTtPTg==}
hasBin: true
peerDependencies:
+ '@fumadocs/satteri': 0.x.x
'@types/mdast': '*'
'@types/mdx': '*'
'@types/react': '*'
@@ -4148,8 +4387,11 @@ packages:
next: ^15.3.0 || ^16.0.0
react: ^19.2.0
rolldown: '*'
+ satteri: ^0.9.4
vite: 7.x.x || 8.x.x
peerDependenciesMeta:
+ '@fumadocs/satteri':
+ optional: true
'@types/mdast':
optional: true
'@types/mdx':
@@ -4164,16 +4406,18 @@ packages:
optional: true
rolldown:
optional: true
+ satteri:
+ optional: true
vite:
optional: true
- fumadocs-ui@16.10.7:
- resolution: {integrity: sha512-zE93/DKW5bhedXRKHYg3rhE/juYi+kXx1xl3ey1dArWbCiPx6lq6/4RLswYXS0lQp1W1f8NsbY1TeA8wSQuEvw==}
+ fumadocs-ui@16.11.1:
+ resolution: {integrity: sha512-Dq819PFV4RGhAI9Wd4erSCiRlEDLVOZae+kgE5LeOKFH8mbKX49U8N17ldFOhdkC9EZpxMZdEKul77RDgFHQww==}
peerDependencies:
'@takumi-rs/image-response': '*'
'@types/mdx': '*'
'@types/react': '*'
- fumadocs-core: 16.10.7
+ fumadocs-core: 16.11.1
next: 16.x.x
react: ^19.2.0
react-dom: ^19.2.0
@@ -4289,6 +4533,9 @@ packages:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
engines: {node: '>=8'}
+ has-property-descriptors@1.0.2:
+ resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
+
has-symbols@1.1.0:
resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
engines: {node: '>= 0.4'}
@@ -4574,6 +4821,9 @@ packages:
isarray@1.0.0:
resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
+ isarray@2.0.5:
+ resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
+
isexe@2.0.0:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
@@ -4652,6 +4902,10 @@ packages:
json-schema@0.4.0:
resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==}
+ json-stable-stringify@1.3.0:
+ resolution: {integrity: sha512-qtYiSSFlwot9XHtF9bD9c7rwKjr+RecWT//ZnPvSmEjpV5mmPOCN4j8UjY5hbjNkOwZ/jQv3J6R1/pL7RwgMsg==}
+ engines: {node: '>= 0.4'}
+
json-stringify-safe@5.0.1:
resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==}
@@ -4669,6 +4923,9 @@ packages:
jsonfile@6.2.1:
resolution: {integrity: sha512-zwOTdL3rFQ/lRdBnntKVOX6k5cKJwEc1HdilT71BWEu7J41gXIB2MRp+vxduPSwZJPWBxEzv4yH1wYLJGUHX4Q==}
+ jsonify@0.0.1:
+ resolution: {integrity: sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==}
+
jsonparse@1.3.1:
resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==}
engines: {'0': node >= 0.2.0}
@@ -4855,8 +5112,8 @@ packages:
resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==}
engines: {node: '>=12'}
- lucide-react@1.23.0:
- resolution: {integrity: sha512-38BpJcD0JhFosxHApP/BYsBetLpQFRoTRzEzstM/XCc3jsAG7wqaY1lgVwxiUe3xqYE+lNxo2PkCmYwXWrwwIw==}
+ lucide-react@1.24.0:
+ resolution: {integrity: sha512-YT6mBD8lGKkg4nM39enlm94/sfJIiW0YKUT60fBy4YK8tai31ylg1VhGNWxkpSKHo9UagfnZqwIff3HTDQwXeA==}
peerDependencies:
react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0
@@ -5176,17 +5433,17 @@ packages:
resolution: {integrity: sha512-4kmO/MdyUIkLIvTPr8VHLil4AtoKIoniWPIEk5+CDy0xnWC84azhSFmuJ7PxZdsYtiP5kEeQsORAVIeMgxT+Hw==}
hasBin: true
- msgpackr@2.0.2:
- resolution: {integrity: sha512-c5hYOXFbP79Slh6Dzd2wzk+jnV7mX1UxfMYtilnY1NmalXPqG8DGb5cYCMBrW4AsH3zekBBZd4QrKz9NhtvYLQ==}
+ msgpackr@2.0.4:
+ resolution: {integrity: sha512-o1C5KRmuRt+apqMr1HuGSqWStZoRBUpEsCsl15uM9VdAF1qHLtvMOU2En747EnTyEl6c4pzPewRMFF31s1CNbA==}
- multipasta@0.2.7:
- resolution: {integrity: sha512-KPA58d68KgGil15oDqXjkUBEBYc00XvbPj5/X+dyzeo/lWm9Nc25pQRlf1D+gv4OpK7NM0J1odrbu9JNNGvynA==}
+ multipasta@0.2.8:
+ resolution: {integrity: sha512-ZPWuMKyv0cSO29f7hozp+k6+crZbQijV8ipMvxNxRf2SwtYGTX1ZX89Kd20VV4H9Znonx+EQn+iy1wGQsJ+b+Q==}
mz@2.7.0:
resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
- nanoid@3.3.15:
- resolution: {integrity: sha512-y7Wygv/7mEOvxTuEQDB8StXdMRBWf1kR/tlhAzBRUFkB2jfcLOAxO/SHmOO2zgz1pVgK29/kyupn059/bCHdjA==}
+ nanoid@3.3.16:
+ resolution: {integrity: sha512-bzlKTyNJ7+LdGIIwy8ijFpIqEQIvafahV7eYykJ8Cvh42EdJeODoJ6gUJXpQJvej1BddH8OqTXZNE/KfbWAu8Q==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
@@ -5214,8 +5471,8 @@ packages:
react: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc
react-dom: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc
- next@16.2.10:
- resolution: {integrity: sha512-2som5AVXb3kE6Yjine3/mNbBayYF58eguBWIVVUdr1y/L426xyVEgYxgBG+1QC34P2x5E+tcDup6XkuOAX3dCA==}
+ next@16.3.0-preview.6:
+ resolution: {integrity: sha512-mNUH6FJz/oB0htRV2wBPeXXU+bT3+ZCrTtGkZe1YTRdV0qmsx3P8ajMAKfVQI/dTQ/Me9IOAVjfEHfeoFGmPtQ==}
engines: {node: '>=20.9.0'}
hasBin: true
peerDependencies:
@@ -5370,8 +5627,8 @@ packages:
'@swc/core':
optional: true
- nx@23.0.2:
- resolution: {integrity: sha512-e5H6ceqj0Z8ovAmtsiHXswwpiNPrr1DRhvJMTpc2AW8G1za9PKxk3bP5josShsIrmGEsOlBNZZsxszXA2+Q2dw==}
+ nx@23.1.0:
+ resolution: {integrity: sha512-Z4hzIdRF6naDDpOTOazrJODmbU5D7slq94FR5q/dySW+evGxiOSFLO981VqDVvtNEvHPnEDh/C1wvFseWyvSrQ==}
hasBin: true
peerDependencies:
'@swc-node/register': ^1.11.1
@@ -5390,6 +5647,10 @@ packages:
resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==}
engines: {node: '>= 0.4'}
+ object-keys@1.1.1:
+ resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
+ engines: {node: '>= 0.4'}
+
obuf@1.1.2:
resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==}
@@ -5440,8 +5701,8 @@ packages:
oxc-resolver@11.21.3:
resolution: {integrity: sha512-2Mx3fKQz7+xgrBONjsxOgCGtMHOn38/HxMzW1I5efwXB5a4lRN0Vp40gYUJFBWJslcrvwoofTrqoTnLbwTd3pA==}
- oxfmt@0.57.0:
- resolution: {integrity: sha512-ZB7Bi+rGDSqmVIo9jwcLyFgjxXvQhDdU+jx+ZrVy6VRiVXK2+CHc4hO3J4dUQjHe7V0ymHB+MDuv5z+NhK07HA==}
+ oxfmt@0.58.0:
+ resolution: {integrity: sha512-8feG/7NVEHDVwc1OUpP6Pks+TnaDFUw2jLLFIMi5bcmmwxAX2wBQvjSzj62RRTYBf2Op1Wt8xbkmagmPTR5ETg==}
engines: {node: ^20.19.0 || >=22.12.0}
hasBin: true
peerDependencies:
@@ -5590,17 +5851,14 @@ packages:
pg-cloudflare@1.4.0:
resolution: {integrity: sha512-Vo7z/6rrQYxpNRylp4Tlob2elzbh+N/MOQbxFVWCxS7oEx6jF53GTJFxK2WWpKuBRkmiin4Mt+xofFDjx09R0A==}
- pg-connection-string@2.12.0:
- resolution: {integrity: sha512-U7qg+bpswf3Cs5xLzRqbXbQl85ng0mfSV/J0nnA31MCLgvEaAo7CIhmeyrmJpOr7o+zm0rXK+hNnT5l9RHkCkQ==}
-
pg-connection-string@2.14.0:
resolution: {integrity: sha512-XwWDGcLRGCXAR8F/AM5bG7Q+A3Wm2s6QeEjlOKZLlH3UYcguiqCWKyWXVag5TLTIjR7oOJUY8kcADaZgWPyLeg==}
pg-copy-streams@7.0.0:
resolution: {integrity: sha512-zBvnY6wtaBRE2ae2xXWOOGMaNVPkXh1vhypAkNSKgMdciJeTyIQAHZaEeRAxUjs/p1El5jgzYmwG5u871Zj3dQ==}
- pg-cursor@2.20.0:
- resolution: {integrity: sha512-HP/EbUafheaUOs7DxlG6tda/rhmsX2hCTJJJ+gCnhljGyNEs6pBHddbNuomlW3DqEhP3zYD+GqBWkYnJPIZ4tA==}
+ pg-cursor@2.21.0:
+ resolution: {integrity: sha512-IYvk/j+Suhtbo/C3uOf4JLsLK/gWxOTUOmYbDsbKnLaVJDq+KwhwK6ngpRfiCk8eDMS3AmGQABZCv0cREEzHQw==}
peerDependencies:
pg: ^8
@@ -5691,12 +5949,12 @@ packages:
resolution: {integrity: sha512-u9mdErTewKSMsr+ceCt8VcNuNP0ro5AXiPXhUVApuEyqr2Zlvt+DdCFBcm+yGWN8mhOdZJ27meIDbnoZgfzpOw==}
hasBin: true
- postcss@8.4.31:
- resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
+ postcss@8.5.10:
+ resolution: {integrity: sha512-pMMHxBOZKFU6HgAZ4eyGnwXF/EvPGGqUr0MnZ5+99485wwW41kW91A4LOGxSHhgugZmSChL5AlElNdwlNgcnLQ==}
engines: {node: ^10 || ^12 || >=14}
- postcss@8.5.16:
- resolution: {integrity: sha512-vuwillviilfKZsg0VGj5R/YwwcHx4SLsIOI/7K6mQkWx+l5cUHTjj5g0AasTBcyXsbfTgrwsUNmVUb5xVwyPwg==}
+ postcss@8.5.19:
+ resolution: {integrity: sha512-Mz8SaolMd8nB+G13WkORcxQKHZ/NE4xXevtkJHVuG+guo9/wYKlIMTKAqGdEmYOXR2ijPjTYNHssizdaVSUNdQ==}
engines: {node: ^10 || ^12 || >=14}
postgres-array@2.0.0:
@@ -5734,8 +5992,8 @@ packages:
postgres-range@1.1.4:
resolution: {integrity: sha512-i/hbxIE9803Alj/6ytL7UHQxRvZkI9O4Sy+J3HGc4F4oo/2eQAjTSNJ0bfxyse3bH0nuVesCk+3IRLaMtG3H6w==}
- posthog-node@5.39.4:
- resolution: {integrity: sha512-+fCQ7htBFRQQFbIzl1T0TA7bDwYyaB9XP308ZFMCUoB5LzTzOFxBa6TYVrxdH/VQl43WXTp6sf0QsG2Z4XlNBg==}
+ posthog-node@5.40.0:
+ resolution: {integrity: sha512-DrLfHuauO0W6qruF80iqr5JdmLysef74XzOB4eh36oRLRhxCySLraTqsi2Pj161LZnp9/JNdRDxwT8ei8VK2YA==}
engines: {node: ^20.20.0 || >=22.22.0}
peerDependencies:
rxjs: ^7.0.0
@@ -6095,6 +6353,10 @@ packages:
resolution: {integrity: sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw==}
engines: {node: '>= 18'}
+ set-function-length@1.2.2:
+ resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
+ engines: {node: '>= 0.4'}
+
setprototypeof@1.2.0:
resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
@@ -6429,8 +6691,8 @@ packages:
resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
engines: {node: '>=0.6'}
- toml@4.1.1:
- resolution: {integrity: sha512-EBJnVBr3dTXdA89WVFoAIPUqkBjxPMwRqsfuo1r240tKFHXv3zgca4+NJib/h6TyvGF7vOawz0jGuryJCdNHrw==}
+ toml@4.3.0:
+ resolution: {integrity: sha512-lVb8X9BsPVuH0M4BKeS91tXAmJvCjQ5UIyAbQFaxkKGyUFK2RPkhwaFSQH8vbpl1d23eu/IBH+dwVMHWaq9A5A==}
engines: {node: '>=20'}
tough-cookie@5.1.2:
@@ -6505,6 +6767,11 @@ packages:
engines: {node: '>=14.17'}
hasBin: true
+ typescript@7.0.2:
+ resolution: {integrity: sha512-8FYau96o3NKOhbjKi/qNvG/W5jhzxkbdm5sj9AbZ/5T5sWqn3hJgLfGx27sRKZWTvyzCP8dLRBTf5tBTSRVUNA==}
+ engines: {node: '>=16.20.0'}
+ hasBin: true
+
uglify-js@3.19.3:
resolution: {integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==}
engines: {node: '>=0.8.0'}
@@ -6528,8 +6795,8 @@ packages:
resolution: {integrity: sha512-cRZYrTDwWznlnRiPjggAGxZXanty6M8RV1ff8Wm4LWXBp7/IG8v5DnOm74DtUBp9OONpK75YlPnIjQqX0dBDtA==}
engines: {node: '>=20.18.1'}
- undici@8.6.0:
- resolution: {integrity: sha512-l2FlC6I510GawyEd1qgcE/okihKrzy+BRTEBlu6T0fdbM9m5yxtIH5Oa3ysRsH0zC4EhmWUEaSDsy2QngBeRlw==}
+ undici@8.7.0:
+ resolution: {integrity: sha512-N7iQtfyLhIMOFgQubvmLV26svHpO0bqKnAiWotTQCVKCmWrcGbBotPuW1x+xwYZ2VHdSTVUfPQQnlEt1/LouTQ==}
engines: {node: '>=22.19.0'}
unicode-emoji-modifier-base@1.0.0:
@@ -6630,8 +6897,8 @@ packages:
resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
engines: {node: '>= 0.4.0'}
- uuid@14.0.0:
- resolution: {integrity: sha512-Qo+uWgilfSmAhXCMav1uYFynlQO7fMFiMVZsQqZRMIXp0O7rR7qjkj+cPvBHLgBqi960QCoo/PH2/6ZtVqKvrg==}
+ uuid@14.0.1:
+ resolution: {integrity: sha512-6ZxzVpzDXDa3bJWaHilVayA+BH/1zmxCJoVgvmqJnid/gPoKHxUrS/aC/T6LGQtNHT+XHG9fXPJB4d+IrU30Ew==}
hasBin: true
uuid@8.3.2:
@@ -6719,20 +6986,20 @@ packages:
yaml:
optional: true
- vitest@4.1.9:
- resolution: {integrity: sha512-nE3/LEyc0z87uHYLZebqCUOaJr2hdtuPp7BQ4BosVFnfltxgAvMG08NyrSGlPpOUWvR27c5flSmYFTNr78L9GQ==}
+ vitest@4.1.10:
+ resolution: {integrity: sha512-R9jUTe5S4Qb0HCd4TNqpC7oGcrMssMRGXLW80ubjWsW9VH5GF8y1Y0SFLY9AbqSk6nt0PnOx4H4WNJYZ13GUPw==}
engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0}
hasBin: true
peerDependencies:
'@edge-runtime/vm': '*'
'@opentelemetry/api': ^1.9.0
'@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0
- '@vitest/browser-playwright': 4.1.9
- '@vitest/browser-preview': 4.1.9
- '@vitest/browser-webdriverio': 4.1.9
- '@vitest/coverage-istanbul': 4.1.9
- '@vitest/coverage-v8': 4.1.9
- '@vitest/ui': 4.1.9
+ '@vitest/browser-playwright': 4.1.10
+ '@vitest/browser-preview': 4.1.10
+ '@vitest/browser-webdriverio': 4.1.10
+ '@vitest/coverage-istanbul': 4.1.10
+ '@vitest/coverage-v8': 4.1.10
+ '@vitest/ui': 4.1.10
happy-dom: '*'
jsdom: '*'
vite: ^6.0.0 || ^7.0.0 || ^8.0.0
@@ -6921,44 +7188,44 @@ snapshots:
ansi-styles: 6.2.3
is-fullwidth-code-point: 5.1.0
- '@anthropic-ai/claude-agent-sdk-darwin-arm64@0.3.201':
+ '@anthropic-ai/claude-agent-sdk-darwin-arm64@0.3.206':
optional: true
- '@anthropic-ai/claude-agent-sdk-darwin-x64@0.3.201':
+ '@anthropic-ai/claude-agent-sdk-darwin-x64@0.3.206':
optional: true
- '@anthropic-ai/claude-agent-sdk-linux-arm64-musl@0.3.201':
+ '@anthropic-ai/claude-agent-sdk-linux-arm64-musl@0.3.206':
optional: true
- '@anthropic-ai/claude-agent-sdk-linux-arm64@0.3.201':
+ '@anthropic-ai/claude-agent-sdk-linux-arm64@0.3.206':
optional: true
- '@anthropic-ai/claude-agent-sdk-linux-x64-musl@0.3.201':
+ '@anthropic-ai/claude-agent-sdk-linux-x64-musl@0.3.206':
optional: true
- '@anthropic-ai/claude-agent-sdk-linux-x64@0.3.201':
+ '@anthropic-ai/claude-agent-sdk-linux-x64@0.3.206':
optional: true
- '@anthropic-ai/claude-agent-sdk-win32-arm64@0.3.201':
+ '@anthropic-ai/claude-agent-sdk-win32-arm64@0.3.206':
optional: true
- '@anthropic-ai/claude-agent-sdk-win32-x64@0.3.201':
+ '@anthropic-ai/claude-agent-sdk-win32-x64@0.3.206':
optional: true
- '@anthropic-ai/claude-agent-sdk@0.3.201(@anthropic-ai/sdk@0.110.0(zod@4.4.3))(@modelcontextprotocol/sdk@1.29.0(zod@4.4.3))(zod@4.4.3)':
+ '@anthropic-ai/claude-agent-sdk@0.3.206(@anthropic-ai/sdk@0.110.0(zod@4.4.3))(@modelcontextprotocol/sdk@1.29.0(zod@4.4.3))(zod@4.4.3)':
dependencies:
'@anthropic-ai/sdk': 0.110.0(zod@4.4.3)
'@modelcontextprotocol/sdk': 1.29.0(zod@4.4.3)
zod: 4.4.3
optionalDependencies:
- '@anthropic-ai/claude-agent-sdk-darwin-arm64': 0.3.201
- '@anthropic-ai/claude-agent-sdk-darwin-x64': 0.3.201
- '@anthropic-ai/claude-agent-sdk-linux-arm64': 0.3.201
- '@anthropic-ai/claude-agent-sdk-linux-arm64-musl': 0.3.201
- '@anthropic-ai/claude-agent-sdk-linux-x64': 0.3.201
- '@anthropic-ai/claude-agent-sdk-linux-x64-musl': 0.3.201
- '@anthropic-ai/claude-agent-sdk-win32-arm64': 0.3.201
- '@anthropic-ai/claude-agent-sdk-win32-x64': 0.3.201
+ '@anthropic-ai/claude-agent-sdk-darwin-arm64': 0.3.206
+ '@anthropic-ai/claude-agent-sdk-darwin-x64': 0.3.206
+ '@anthropic-ai/claude-agent-sdk-linux-arm64': 0.3.206
+ '@anthropic-ai/claude-agent-sdk-linux-arm64-musl': 0.3.206
+ '@anthropic-ai/claude-agent-sdk-linux-x64': 0.3.206
+ '@anthropic-ai/claude-agent-sdk-linux-x64-musl': 0.3.206
+ '@anthropic-ai/claude-agent-sdk-win32-arm64': 0.3.206
+ '@anthropic-ai/claude-agent-sdk-win32-x64': 0.3.206
'@anthropic-ai/sdk@0.110.0(zod@4.4.3)':
dependencies:
@@ -7109,55 +7376,55 @@ snapshots:
dependencies:
'@noble/ciphers': 1.3.0
- '@effect/atom-react@4.0.0-beta.93(effect@4.0.0-beta.93)(react@19.2.7)(scheduler@0.27.0)':
+ '@effect/atom-react@4.0.0-beta.94(effect@4.0.0-beta.97)(react@19.2.7)(scheduler@0.27.0)':
dependencies:
- effect: 4.0.0-beta.93
+ effect: 4.0.0-beta.97
react: 19.2.7
scheduler: 0.27.0
- '@effect/platform-bun@4.0.0-beta.93(effect@4.0.0-beta.93)':
+ '@effect/platform-bun@4.0.0-beta.97(effect@4.0.0-beta.97)':
dependencies:
- '@effect/platform-node-shared': 4.0.0-beta.93(effect@4.0.0-beta.93)
- effect: 4.0.0-beta.93
+ '@effect/platform-node-shared': 4.0.0-beta.97(effect@4.0.0-beta.97)
+ effect: 4.0.0-beta.97
transitivePeerDependencies:
- bufferutil
- utf-8-validate
- '@effect/platform-node-shared@4.0.0-beta.93(effect@4.0.0-beta.93)':
+ '@effect/platform-node-shared@4.0.0-beta.97(effect@4.0.0-beta.97)':
dependencies:
'@types/ws': 8.18.1
- effect: 4.0.0-beta.93
+ effect: 4.0.0-beta.97
ws: 8.21.0
transitivePeerDependencies:
- bufferutil
- utf-8-validate
- '@effect/platform-node@4.0.0-beta.93(effect@4.0.0-beta.93)(ioredis@5.11.0)':
+ '@effect/platform-node@4.0.0-beta.97(effect@4.0.0-beta.97)(ioredis@5.11.0)':
dependencies:
- '@effect/platform-node-shared': 4.0.0-beta.93(effect@4.0.0-beta.93)
- effect: 4.0.0-beta.93
+ '@effect/platform-node-shared': 4.0.0-beta.97(effect@4.0.0-beta.97)
+ effect: 4.0.0-beta.97
ioredis: 5.11.0
mime: 4.1.0
- undici: 8.6.0
+ undici: 8.7.0
transitivePeerDependencies:
- bufferutil
- utf-8-validate
- '@effect/sql-pg@4.0.0-beta.93(effect@4.0.0-beta.93)':
+ '@effect/sql-pg@4.0.0-beta.97(effect@4.0.0-beta.97)':
dependencies:
- effect: 4.0.0-beta.93
+ effect: 4.0.0-beta.97
pg: 8.22.0
- pg-connection-string: 2.12.0
- pg-cursor: 2.20.0(pg@8.22.0)
+ pg-connection-string: 2.14.0
+ pg-cursor: 2.21.0(pg@8.22.0)
pg-pool: 3.14.0(pg@8.22.0)
pg-types: 4.1.0
transitivePeerDependencies:
- pg-native
- '@effect/vitest@4.0.0-beta.93(effect@4.0.0-beta.93)(vitest@4.1.9)':
+ '@effect/vitest@4.0.0-beta.97(effect@4.0.0-beta.97)(vitest@4.1.10)':
dependencies:
- effect: 4.0.0-beta.93
- vitest: 4.1.9(@types/node@26.1.1)(@vitest/coverage-istanbul@4.1.9)(vite@8.0.14(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
+ effect: 4.0.0-beta.97
+ vitest: 4.1.10(@types/node@26.1.1)(@vitest/coverage-istanbul@4.1.10)(vite@8.0.14(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
'@emnapi/core@1.10.0':
dependencies:
@@ -7295,22 +7562,22 @@ snapshots:
'@esbuild/win32-x64@0.28.1':
optional: true
- '@floating-ui/core@1.7.5':
+ '@floating-ui/core@1.8.0':
dependencies:
- '@floating-ui/utils': 0.2.11
+ '@floating-ui/utils': 0.2.12
- '@floating-ui/dom@1.7.6':
+ '@floating-ui/dom@1.8.0':
dependencies:
- '@floating-ui/core': 1.7.5
- '@floating-ui/utils': 0.2.11
+ '@floating-ui/core': 1.8.0
+ '@floating-ui/utils': 0.2.12
- '@floating-ui/react-dom@2.1.8(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ '@floating-ui/react-dom@2.1.9(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
- '@floating-ui/dom': 1.7.6
+ '@floating-ui/dom': 1.8.0
react: 19.2.7
react-dom: 19.2.7(react@19.2.7)
- '@floating-ui/utils@0.2.11': {}
+ '@floating-ui/utils@0.2.12': {}
'@fuma-translate/react@1.0.2(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
@@ -7319,7 +7586,7 @@ snapshots:
optionalDependencies:
'@types/react': 19.2.17
- '@fumadocs/tailwind@0.0.5': {}
+ '@fumadocs/tailwind@0.1.0': {}
'@hono/node-server@1.19.14(hono@4.12.21)':
dependencies:
@@ -7451,7 +7718,7 @@ snapshots:
dependencies:
'@types/estree': 1.0.9
'@types/estree-jsx': 1.0.5
- '@types/hast': 3.0.4
+ '@types/hast': 3.0.5
'@types/mdx': 2.0.14
acorn: 8.17.0
collapse-white-space: 2.1.0
@@ -7568,6 +7835,13 @@ snapshots:
'@napi-rs/keyring-win32-ia32-msvc': 1.3.0
'@napi-rs/keyring-win32-x64-msvc': 1.3.0
+ '@napi-rs/wasm-runtime@0.2.12':
+ dependencies:
+ '@emnapi/core': 1.11.1
+ '@emnapi/runtime': 1.11.2
+ '@tybys/wasm-util': 0.10.3
+ optional: true
+
'@napi-rs/wasm-runtime@0.2.4':
dependencies:
'@emnapi/core': 1.11.1
@@ -7595,30 +7869,30 @@ snapshots:
'@tybys/wasm-util': 0.10.3
optional: true
- '@next/env@16.2.10': {}
+ '@next/env@16.3.0-preview.6': {}
- '@next/swc-darwin-arm64@16.2.10':
+ '@next/swc-darwin-arm64@16.3.0-preview.6':
optional: true
- '@next/swc-darwin-x64@16.2.10':
+ '@next/swc-darwin-x64@16.3.0-preview.6':
optional: true
- '@next/swc-linux-arm64-gnu@16.2.10':
+ '@next/swc-linux-arm64-gnu@16.3.0-preview.6':
optional: true
- '@next/swc-linux-arm64-musl@16.2.10':
+ '@next/swc-linux-arm64-musl@16.3.0-preview.6':
optional: true
- '@next/swc-linux-x64-gnu@16.2.10':
+ '@next/swc-linux-x64-gnu@16.3.0-preview.6':
optional: true
- '@next/swc-linux-x64-musl@16.2.10':
+ '@next/swc-linux-x64-musl@16.3.0-preview.6':
optional: true
- '@next/swc-win32-arm64-msvc@16.2.10':
+ '@next/swc-win32-arm64-msvc@16.3.0-preview.6':
optional: true
- '@next/swc-win32-x64-msvc@16.2.10':
+ '@next/swc-win32-x64-msvc@16.3.0-preview.6':
optional: true
'@noble/ciphers@1.3.0': {}
@@ -7629,6 +7903,67 @@ snapshots:
'@noble/hashes@1.8.0': {}
+ '@node-rs/xxhash-android-arm-eabi@1.7.6':
+ optional: true
+
+ '@node-rs/xxhash-android-arm64@1.7.6':
+ optional: true
+
+ '@node-rs/xxhash-darwin-arm64@1.7.6':
+ optional: true
+
+ '@node-rs/xxhash-darwin-x64@1.7.6':
+ optional: true
+
+ '@node-rs/xxhash-freebsd-x64@1.7.6':
+ optional: true
+
+ '@node-rs/xxhash-linux-arm-gnueabihf@1.7.6':
+ optional: true
+
+ '@node-rs/xxhash-linux-arm64-gnu@1.7.6':
+ optional: true
+
+ '@node-rs/xxhash-linux-arm64-musl@1.7.6':
+ optional: true
+
+ '@node-rs/xxhash-linux-x64-gnu@1.7.6':
+ optional: true
+
+ '@node-rs/xxhash-linux-x64-musl@1.7.6':
+ optional: true
+
+ '@node-rs/xxhash-wasm32-wasi@1.7.6':
+ dependencies:
+ '@napi-rs/wasm-runtime': 0.2.12
+ optional: true
+
+ '@node-rs/xxhash-win32-arm64-msvc@1.7.6':
+ optional: true
+
+ '@node-rs/xxhash-win32-ia32-msvc@1.7.6':
+ optional: true
+
+ '@node-rs/xxhash-win32-x64-msvc@1.7.6':
+ optional: true
+
+ '@node-rs/xxhash@1.7.6':
+ optionalDependencies:
+ '@node-rs/xxhash-android-arm-eabi': 1.7.6
+ '@node-rs/xxhash-android-arm64': 1.7.6
+ '@node-rs/xxhash-darwin-arm64': 1.7.6
+ '@node-rs/xxhash-darwin-x64': 1.7.6
+ '@node-rs/xxhash-freebsd-x64': 1.7.6
+ '@node-rs/xxhash-linux-arm-gnueabihf': 1.7.6
+ '@node-rs/xxhash-linux-arm64-gnu': 1.7.6
+ '@node-rs/xxhash-linux-arm64-musl': 1.7.6
+ '@node-rs/xxhash-linux-x64-gnu': 1.7.6
+ '@node-rs/xxhash-linux-x64-musl': 1.7.6
+ '@node-rs/xxhash-wasm32-wasi': 1.7.6
+ '@node-rs/xxhash-win32-arm64-msvc': 1.7.6
+ '@node-rs/xxhash-win32-ia32-msvc': 1.7.6
+ '@node-rs/xxhash-win32-x64-msvc': 1.7.6
+
'@nodelib/fs.scandir@2.1.5':
dependencies:
'@nodelib/fs.stat': 2.0.5
@@ -7641,13 +7976,13 @@ snapshots:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.20.1
- '@nx/devkit@23.0.1(nx@23.0.2(@swc-node/register@1.11.1(@swc/core@1.15.43)(@swc/types@0.1.27)(typescript@6.0.3))(@swc/core@1.15.43))':
+ '@nx/devkit@23.0.1(nx@23.1.0(@swc-node/register@1.12.0(@swc/core@1.15.43)(@swc/types@0.1.27)(@typescript/typescript6@6.0.2))(@swc/core@1.15.43))':
dependencies:
'@zkochan/js-yaml': 0.0.7
ejs: 5.0.1
enquirer: 2.3.6
minimatch: 10.2.5
- nx: 23.0.2(@swc-node/register@1.11.1(@swc/core@1.15.43)(@swc/types@0.1.27)(typescript@6.0.3))(@swc/core@1.15.43)
+ nx: 23.1.0(@swc-node/register@1.12.0(@swc/core@1.15.43)(@swc/types@0.1.27)(@typescript/typescript6@6.0.2))(@swc/core@1.15.43)
semver: 7.8.5
tslib: 2.8.1
yargs-parser: 21.1.1
@@ -7655,61 +7990,61 @@ snapshots:
'@nx/nx-darwin-arm64@23.0.1':
optional: true
- '@nx/nx-darwin-arm64@23.0.2':
+ '@nx/nx-darwin-arm64@23.1.0':
optional: true
'@nx/nx-darwin-x64@23.0.1':
optional: true
- '@nx/nx-darwin-x64@23.0.2':
+ '@nx/nx-darwin-x64@23.1.0':
optional: true
'@nx/nx-freebsd-x64@23.0.1':
optional: true
- '@nx/nx-freebsd-x64@23.0.2':
+ '@nx/nx-freebsd-x64@23.1.0':
optional: true
'@nx/nx-linux-arm-gnueabihf@23.0.1':
optional: true
- '@nx/nx-linux-arm-gnueabihf@23.0.2':
+ '@nx/nx-linux-arm-gnueabihf@23.1.0':
optional: true
'@nx/nx-linux-arm64-gnu@23.0.1':
optional: true
- '@nx/nx-linux-arm64-gnu@23.0.2':
+ '@nx/nx-linux-arm64-gnu@23.1.0':
optional: true
'@nx/nx-linux-arm64-musl@23.0.1':
optional: true
- '@nx/nx-linux-arm64-musl@23.0.2':
+ '@nx/nx-linux-arm64-musl@23.1.0':
optional: true
'@nx/nx-linux-x64-gnu@23.0.1':
optional: true
- '@nx/nx-linux-x64-gnu@23.0.2':
+ '@nx/nx-linux-x64-gnu@23.1.0':
optional: true
'@nx/nx-linux-x64-musl@23.0.1':
optional: true
- '@nx/nx-linux-x64-musl@23.0.2':
+ '@nx/nx-linux-x64-musl@23.1.0':
optional: true
'@nx/nx-win32-arm64-msvc@23.0.1':
optional: true
- '@nx/nx-win32-arm64-msvc@23.0.2':
+ '@nx/nx-win32-arm64-msvc@23.1.0':
optional: true
'@nx/nx-win32-x64-msvc@23.0.1':
optional: true
- '@nx/nx-win32-x64-msvc@23.0.2':
+ '@nx/nx-win32-x64-msvc@23.1.0':
optional: true
'@octokit/auth-token@6.0.0': {}
@@ -7903,61 +8238,61 @@ snapshots:
'@oxc-resolver/binding-win32-x64-msvc@11.21.3':
optional: true
- '@oxfmt/binding-android-arm-eabi@0.57.0':
+ '@oxfmt/binding-android-arm-eabi@0.58.0':
optional: true
- '@oxfmt/binding-android-arm64@0.57.0':
+ '@oxfmt/binding-android-arm64@0.58.0':
optional: true
- '@oxfmt/binding-darwin-arm64@0.57.0':
+ '@oxfmt/binding-darwin-arm64@0.58.0':
optional: true
- '@oxfmt/binding-darwin-x64@0.57.0':
+ '@oxfmt/binding-darwin-x64@0.58.0':
optional: true
- '@oxfmt/binding-freebsd-x64@0.57.0':
+ '@oxfmt/binding-freebsd-x64@0.58.0':
optional: true
- '@oxfmt/binding-linux-arm-gnueabihf@0.57.0':
+ '@oxfmt/binding-linux-arm-gnueabihf@0.58.0':
optional: true
- '@oxfmt/binding-linux-arm-musleabihf@0.57.0':
+ '@oxfmt/binding-linux-arm-musleabihf@0.58.0':
optional: true
- '@oxfmt/binding-linux-arm64-gnu@0.57.0':
+ '@oxfmt/binding-linux-arm64-gnu@0.58.0':
optional: true
- '@oxfmt/binding-linux-arm64-musl@0.57.0':
+ '@oxfmt/binding-linux-arm64-musl@0.58.0':
optional: true
- '@oxfmt/binding-linux-ppc64-gnu@0.57.0':
+ '@oxfmt/binding-linux-ppc64-gnu@0.58.0':
optional: true
- '@oxfmt/binding-linux-riscv64-gnu@0.57.0':
+ '@oxfmt/binding-linux-riscv64-gnu@0.58.0':
optional: true
- '@oxfmt/binding-linux-riscv64-musl@0.57.0':
+ '@oxfmt/binding-linux-riscv64-musl@0.58.0':
optional: true
- '@oxfmt/binding-linux-s390x-gnu@0.57.0':
+ '@oxfmt/binding-linux-s390x-gnu@0.58.0':
optional: true
- '@oxfmt/binding-linux-x64-gnu@0.57.0':
+ '@oxfmt/binding-linux-x64-gnu@0.58.0':
optional: true
- '@oxfmt/binding-linux-x64-musl@0.57.0':
+ '@oxfmt/binding-linux-x64-musl@0.58.0':
optional: true
- '@oxfmt/binding-openharmony-arm64@0.57.0':
+ '@oxfmt/binding-openharmony-arm64@0.58.0':
optional: true
- '@oxfmt/binding-win32-arm64-msvc@0.57.0':
+ '@oxfmt/binding-win32-arm64-msvc@0.58.0':
optional: true
- '@oxfmt/binding-win32-ia32-msvc@0.57.0':
+ '@oxfmt/binding-win32-ia32-msvc@0.58.0':
optional: true
- '@oxfmt/binding-win32-x64-msvc@0.57.0':
+ '@oxfmt/binding-win32-x64-msvc@0.58.0':
optional: true
'@oxlint-tsgolint/darwin-arm64@0.24.0':
@@ -8109,11 +8444,11 @@ snapshots:
'@pnpm/network.ca-file': 1.0.2
config-chain: 1.1.13
- '@posthog/core@1.40.1':
+ '@posthog/core@1.43.1':
dependencies:
- '@posthog/types': 1.393.0
+ '@posthog/types': 1.397.0
- '@posthog/types@1.393.0': {}
+ '@posthog/types@1.397.0': {}
'@radix-ui/number@1.1.2': {}
@@ -8297,7 +8632,7 @@ snapshots:
'@radix-ui/react-popper@1.3.3(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
- '@floating-ui/react-dom': 2.1.8(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@floating-ui/react-dom': 2.1.9(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
'@radix-ui/react-arrow': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
'@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
'@radix-ui/react-context': 1.2.0(@types/react@19.2.17)(react@19.2.7)
@@ -8517,7 +8852,7 @@ snapshots:
'@sec-ant/readable-stream@0.4.1': {}
- '@semantic-release/commit-analyzer@13.0.1(semantic-release@25.0.5(typescript@6.0.3))':
+ '@semantic-release/commit-analyzer@13.0.1(semantic-release@25.0.5(typescript@7.0.2))':
dependencies:
conventional-changelog-angular: 8.3.1
conventional-changelog-writer: 8.4.0
@@ -8527,13 +8862,13 @@ snapshots:
import-from-esm: 2.0.0
lodash-es: 4.18.1
micromatch: 4.0.8
- semantic-release: 25.0.5(typescript@6.0.3)
+ semantic-release: 25.0.5(typescript@7.0.2)
transitivePeerDependencies:
- supports-color
'@semantic-release/error@4.0.0': {}
- '@semantic-release/github@12.0.8(semantic-release@25.0.5(typescript@6.0.3))':
+ '@semantic-release/github@12.0.8(semantic-release@25.0.5(typescript@7.0.2))':
dependencies:
'@octokit/core': 7.0.6
'@octokit/plugin-paginate-rest': 14.0.0(@octokit/core@7.0.6)
@@ -8549,7 +8884,7 @@ snapshots:
lodash-es: 4.18.1
mime: 4.1.0
p-filter: 4.1.0
- semantic-release: 25.0.5(typescript@6.0.3)
+ semantic-release: 25.0.5(typescript@7.0.2)
tinyglobby: 0.2.17
undici: 7.28.0
url-join: 5.0.0
@@ -8557,7 +8892,7 @@ snapshots:
- kerberos
- supports-color
- '@semantic-release/npm@13.1.5(semantic-release@25.0.5(typescript@6.0.3))':
+ '@semantic-release/npm@13.1.5(semantic-release@25.0.5(typescript@7.0.2))':
dependencies:
'@actions/core': 3.0.1
'@semantic-release/error': 4.0.0
@@ -8572,11 +8907,11 @@ snapshots:
rc: 1.2.8
read-pkg: 10.1.0
registry-auth-token: 5.1.1
- semantic-release: 25.0.5(typescript@6.0.3)
+ semantic-release: 25.0.5(typescript@7.0.2)
semver: 7.8.5
tempy: 3.2.0
- '@semantic-release/release-notes-generator@14.1.1(semantic-release@25.0.5(typescript@6.0.3))':
+ '@semantic-release/release-notes-generator@14.1.1(semantic-release@25.0.5(typescript@7.0.2))':
dependencies:
conventional-changelog-angular: 8.3.1
conventional-changelog-writer: 8.4.0
@@ -8586,7 +8921,7 @@ snapshots:
import-from-esm: 2.0.0
lodash-es: 4.18.1
read-package-up: 11.0.0
- semantic-release: 25.0.5(typescript@6.0.3)
+ semantic-release: 25.0.5(typescript@7.0.2)
transitivePeerDependencies:
- supports-color
@@ -8595,7 +8930,7 @@ snapshots:
'@shikijs/primitive': 4.3.1
'@shikijs/types': 4.3.1
'@shikijs/vscode-textmate': 10.0.2
- '@types/hast': 3.0.4
+ '@types/hast': 3.0.5
hast-util-to-html: 9.0.5
'@shikijs/engine-javascript@4.3.1':
@@ -8617,7 +8952,7 @@ snapshots:
dependencies:
'@shikijs/types': 4.3.1
'@shikijs/vscode-textmate': 10.0.2
- '@types/hast': 3.0.4
+ '@types/hast': 3.0.5
'@shikijs/themes@4.3.1':
dependencies:
@@ -8626,7 +8961,7 @@ snapshots:
'@shikijs/types@4.3.1':
dependencies:
'@shikijs/vscode-textmate': 10.0.2
- '@types/hast': 3.0.4
+ '@types/hast': 3.0.5
'@shikijs/vscode-textmate@10.0.2': {}
@@ -8640,54 +8975,56 @@ snapshots:
'@standard-schema/spec@1.1.0': {}
- '@supabase/auth-js@2.110.0':
+ '@supabase/auth-js@2.110.2':
dependencies:
tslib: 2.8.1
- '@supabase/functions-js@2.110.0':
+ '@supabase/functions-js@2.110.2':
dependencies:
tslib: 2.8.1
'@supabase/phoenix@0.4.4': {}
- '@supabase/postgrest-js@2.110.0':
+ '@supabase/postgrest-js@2.110.2':
dependencies:
tslib: 2.8.1
- '@supabase/realtime-js@2.110.0':
+ '@supabase/realtime-js@2.110.2':
dependencies:
'@supabase/phoenix': 0.4.4
tslib: 2.8.1
- '@supabase/storage-js@2.110.0':
+ '@supabase/storage-js@2.110.2':
dependencies:
iceberg-js: 0.8.1
tslib: 2.8.1
- '@supabase/supabase-js@2.110.0':
+ '@supabase/supabase-js@2.110.2':
dependencies:
- '@supabase/auth-js': 2.110.0
- '@supabase/functions-js': 2.110.0
- '@supabase/postgrest-js': 2.110.0
- '@supabase/realtime-js': 2.110.0
- '@supabase/storage-js': 2.110.0
+ '@supabase/auth-js': 2.110.2
+ '@supabase/functions-js': 2.110.2
+ '@supabase/postgrest-js': 2.110.2
+ '@supabase/realtime-js': 2.110.2
+ '@supabase/storage-js': 2.110.2
- '@swc-node/core@1.14.1(@swc/core@1.15.43)(@swc/types@0.1.27)':
+ '@swc-node/core@1.15.0(@swc/core@1.15.43)(@swc/types@0.1.27)':
dependencies:
'@swc/core': 1.15.43
'@swc/types': 0.1.27
- '@swc-node/register@1.11.1(@swc/core@1.15.43)(@swc/types@0.1.27)(typescript@6.0.3)':
+ '@swc-node/register@1.12.0(@swc/core@1.15.43)(@swc/types@0.1.27)(@typescript/typescript6@6.0.2)':
dependencies:
- '@swc-node/core': 1.14.1(@swc/core@1.15.43)(@swc/types@0.1.27)
+ '@node-rs/xxhash': 1.7.6
+ '@swc-node/core': 1.15.0(@swc/core@1.15.43)(@swc/types@0.1.27)
'@swc-node/sourcemap-support': 0.6.1
'@swc/core': 1.15.43
colorette: 2.0.20
debug: 4.4.3(supports-color@7.2.0)
+ json-stable-stringify: 1.3.0
oxc-resolver: 11.21.3
pirates: 4.0.7
tslib: 2.8.1
- typescript: 6.0.3
+ typescript: '@typescript/typescript6@6.0.2'
transitivePeerDependencies:
- '@swc/types'
- supports-color
@@ -8801,6 +9138,10 @@ snapshots:
dependencies:
'@types/unist': 3.0.3
+ '@types/hast@3.0.5':
+ dependencies:
+ '@types/unist': 3.0.3
+
'@types/mdast@4.0.4':
dependencies:
'@types/unist': 3.0.3
@@ -8850,38 +9191,102 @@ snapshots:
dependencies:
'@types/node': 26.1.1
- '@typescript/native-preview-darwin-arm64@7.0.0-dev.20260703.1':
+ '@typescript/native-preview-darwin-arm64@7.0.0-dev.20260707.2':
optional: true
- '@typescript/native-preview-darwin-x64@7.0.0-dev.20260703.1':
+ '@typescript/native-preview-darwin-x64@7.0.0-dev.20260707.2':
optional: true
- '@typescript/native-preview-linux-arm64@7.0.0-dev.20260703.1':
+ '@typescript/native-preview-linux-arm64@7.0.0-dev.20260707.2':
optional: true
- '@typescript/native-preview-linux-arm@7.0.0-dev.20260703.1':
+ '@typescript/native-preview-linux-arm@7.0.0-dev.20260707.2':
optional: true
- '@typescript/native-preview-linux-x64@7.0.0-dev.20260703.1':
+ '@typescript/native-preview-linux-x64@7.0.0-dev.20260707.2':
optional: true
- '@typescript/native-preview-win32-arm64@7.0.0-dev.20260703.1':
+ '@typescript/native-preview-win32-arm64@7.0.0-dev.20260707.2':
optional: true
- '@typescript/native-preview-win32-x64@7.0.0-dev.20260703.1':
+ '@typescript/native-preview-win32-x64@7.0.0-dev.20260707.2':
optional: true
- '@typescript/native-preview@7.0.0-dev.20260703.1':
+ '@typescript/native-preview@7.0.0-dev.20260707.2':
optionalDependencies:
- '@typescript/native-preview-darwin-arm64': 7.0.0-dev.20260703.1
- '@typescript/native-preview-darwin-x64': 7.0.0-dev.20260703.1
- '@typescript/native-preview-linux-arm': 7.0.0-dev.20260703.1
- '@typescript/native-preview-linux-arm64': 7.0.0-dev.20260703.1
- '@typescript/native-preview-linux-x64': 7.0.0-dev.20260703.1
- '@typescript/native-preview-win32-arm64': 7.0.0-dev.20260703.1
- '@typescript/native-preview-win32-x64': 7.0.0-dev.20260703.1
+ '@typescript/native-preview-darwin-arm64': 7.0.0-dev.20260707.2
+ '@typescript/native-preview-darwin-x64': 7.0.0-dev.20260707.2
+ '@typescript/native-preview-linux-arm': 7.0.0-dev.20260707.2
+ '@typescript/native-preview-linux-arm64': 7.0.0-dev.20260707.2
+ '@typescript/native-preview-linux-x64': 7.0.0-dev.20260707.2
+ '@typescript/native-preview-win32-arm64': 7.0.0-dev.20260707.2
+ '@typescript/native-preview-win32-x64': 7.0.0-dev.20260707.2
+
+ '@typescript/typescript-aix-ppc64@7.0.2':
+ optional: true
+
+ '@typescript/typescript-darwin-arm64@7.0.2':
+ optional: true
+
+ '@typescript/typescript-darwin-x64@7.0.2':
+ optional: true
- '@ungap/structured-clone@1.3.2': {}
+ '@typescript/typescript-freebsd-arm64@7.0.2':
+ optional: true
+
+ '@typescript/typescript-freebsd-x64@7.0.2':
+ optional: true
+
+ '@typescript/typescript-linux-arm64@7.0.2':
+ optional: true
+
+ '@typescript/typescript-linux-arm@7.0.2':
+ optional: true
+
+ '@typescript/typescript-linux-loong64@7.0.2':
+ optional: true
+
+ '@typescript/typescript-linux-mips64el@7.0.2':
+ optional: true
+
+ '@typescript/typescript-linux-ppc64@7.0.2':
+ optional: true
+
+ '@typescript/typescript-linux-riscv64@7.0.2':
+ optional: true
+
+ '@typescript/typescript-linux-s390x@7.0.2':
+ optional: true
+
+ '@typescript/typescript-linux-x64@7.0.2':
+ optional: true
+
+ '@typescript/typescript-netbsd-arm64@7.0.2':
+ optional: true
+
+ '@typescript/typescript-netbsd-x64@7.0.2':
+ optional: true
+
+ '@typescript/typescript-openbsd-arm64@7.0.2':
+ optional: true
+
+ '@typescript/typescript-openbsd-x64@7.0.2':
+ optional: true
+
+ '@typescript/typescript-sunos-x64@7.0.2':
+ optional: true
+
+ '@typescript/typescript-win32-arm64@7.0.2':
+ optional: true
+
+ '@typescript/typescript-win32-x64@7.0.2':
+ optional: true
+
+ '@typescript/typescript6@6.0.2':
+ dependencies:
+ '@typescript/old': typescript@6.0.3
+
+ '@ungap/structured-clone@1.3.3': {}
'@vercel/detect-agent@1.2.3': {}
@@ -9047,7 +9452,7 @@ snapshots:
lodash: 4.18.1
minimatch: 7.4.9
- '@vitest/coverage-istanbul@4.1.9(vitest@4.1.9)':
+ '@vitest/coverage-istanbul@4.1.10(vitest@4.1.10)':
dependencies:
'@babel/core': 7.29.7
'@istanbuljs/schema': 0.1.6
@@ -9059,48 +9464,48 @@ snapshots:
magicast: 0.5.3
obug: 2.1.1
tinyrainbow: 3.1.0
- vitest: 4.1.9(@types/node@26.1.1)(@vitest/coverage-istanbul@4.1.9)(vite@8.0.14(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
+ vitest: 4.1.10(@types/node@26.1.1)(@vitest/coverage-istanbul@4.1.10)(vite@8.0.14(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
transitivePeerDependencies:
- supports-color
- '@vitest/expect@4.1.9':
+ '@vitest/expect@4.1.10':
dependencies:
'@standard-schema/spec': 1.1.0
'@types/chai': 5.2.3
- '@vitest/spy': 4.1.9
- '@vitest/utils': 4.1.9
+ '@vitest/spy': 4.1.10
+ '@vitest/utils': 4.1.10
chai: 6.2.2
tinyrainbow: 3.1.0
- '@vitest/mocker@4.1.9(vite@8.0.14(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))':
+ '@vitest/mocker@4.1.10(vite@8.0.14(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))':
dependencies:
- '@vitest/spy': 4.1.9
+ '@vitest/spy': 4.1.10
estree-walker: 3.0.3
magic-string: 0.30.21
optionalDependencies:
vite: 8.0.14(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0)
- '@vitest/pretty-format@4.1.9':
+ '@vitest/pretty-format@4.1.10':
dependencies:
tinyrainbow: 3.1.0
- '@vitest/runner@4.1.9':
+ '@vitest/runner@4.1.10':
dependencies:
- '@vitest/utils': 4.1.9
+ '@vitest/utils': 4.1.10
pathe: 2.0.3
- '@vitest/snapshot@4.1.9':
+ '@vitest/snapshot@4.1.10':
dependencies:
- '@vitest/pretty-format': 4.1.9
- '@vitest/utils': 4.1.9
+ '@vitest/pretty-format': 4.1.10
+ '@vitest/utils': 4.1.10
magic-string: 0.30.21
pathe: 2.0.3
- '@vitest/spy@4.1.9': {}
+ '@vitest/spy@4.1.10': {}
- '@vitest/utils@4.1.9':
+ '@vitest/utils@4.1.10':
dependencies:
- '@vitest/pretty-format': 4.1.9
+ '@vitest/pretty-format': 4.1.10
convert-source-map: 2.0.0
tinyrainbow: 3.1.0
@@ -9359,6 +9764,13 @@ snapshots:
es-errors: 1.3.0
function-bind: 1.1.2
+ call-bind@1.0.9:
+ dependencies:
+ call-bind-apply-helpers: 1.0.2
+ es-define-property: 1.0.1
+ get-intrinsic: 1.3.0
+ set-function-length: 1.2.2
+
call-bound@1.0.4:
dependencies:
call-bind-apply-helpers: 1.0.2
@@ -9583,14 +9995,14 @@ snapshots:
object-assign: 4.1.1
vary: 1.1.2
- cosmiconfig@9.0.2(typescript@6.0.3):
+ cosmiconfig@9.0.2(typescript@7.0.2):
dependencies:
env-paths: 2.2.1
import-fresh: 3.3.1
js-yaml: 4.3.0
parse-json: 5.2.0
optionalDependencies:
- typescript: 6.0.3
+ typescript: 7.0.2
cross-spawn@7.0.6:
dependencies:
@@ -9638,6 +10050,12 @@ snapshots:
defer-to-connect@2.0.1: {}
+ define-data-property@1.1.4:
+ dependencies:
+ es-define-property: 1.0.1
+ es-errors: 1.3.0
+ gopd: 1.2.0
+
define-lazy-prop@2.0.0: {}
delayed-stream@1.0.0: {}
@@ -9709,17 +10127,17 @@ snapshots:
ee-first@1.1.1: {}
- effect@4.0.0-beta.93:
+ effect@4.0.0-beta.97:
dependencies:
'@standard-schema/spec': 1.1.0
- fast-check: 4.8.0
+ fast-check: 4.9.0
find-my-way-ts: 0.1.6
ini: 7.0.0
kubernetes-types: 1.30.0
- msgpackr: 2.0.2
- multipasta: 0.2.7
- toml: 4.1.1
- uuid: 14.0.0
+ msgpackr: 2.0.4
+ multipasta: 0.2.8
+ toml: 4.3.0
+ uuid: 14.0.1
yaml: 2.9.0
ejs@5.0.1: {}
@@ -10031,7 +10449,7 @@ snapshots:
extsprintf@1.3.0: {}
- fast-check@4.8.0:
+ fast-check@4.9.0:
dependencies:
pure-rand: 8.4.0
@@ -10173,7 +10591,7 @@ snapshots:
fsevents@2.3.3:
optional: true
- fumadocs-core@16.10.7(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.4)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.23.0(react@19.2.7))(next@16.2.10(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(zod@4.4.3):
+ fumadocs-core@16.11.1(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.24.0(react@19.2.7))(next@16.3.0-preview.6(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(zod@4.4.3):
dependencies:
'@orama/orama': 3.1.18
estree-util-value-to-estree: 3.5.0
@@ -10195,25 +10613,26 @@ snapshots:
optionalDependencies:
'@mdx-js/mdx': 3.1.1
'@types/estree-jsx': 1.0.5
- '@types/hast': 3.0.4
+ '@types/hast': 3.0.5
'@types/mdast': 4.0.4
'@types/react': 19.2.17
- lucide-react: 1.23.0(react@19.2.7)
- next: 16.2.10(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ lucide-react: 1.24.0(react@19.2.7)
+ next: 16.3.0-preview.6(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
react: 19.2.7
react-dom: 19.2.7(react@19.2.7)
zod: 4.4.3
transitivePeerDependencies:
- supports-color
- fumadocs-mdx@15.0.13(@types/mdast@4.0.4)(@types/mdx@2.0.14)(@types/react@19.2.17)(fumadocs-core@16.10.7(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.4)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.23.0(react@19.2.7))(next@16.2.10(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(zod@4.4.3))(next@16.2.10(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react@19.2.7)(rolldown@1.0.2)(vite@8.0.14(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0)):
+ fumadocs-mdx@15.1.0(@types/mdast@4.0.4)(@types/mdx@2.0.14)(@types/react@19.2.17)(fumadocs-core@16.11.1(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.24.0(react@19.2.7))(next@16.3.0-preview.6(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(zod@4.4.3))(next@16.3.0-preview.6(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react@19.2.7)(rolldown@1.0.2)(vite@8.0.14(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0)):
dependencies:
'@mdx-js/mdx': 3.1.1
'@standard-schema/spec': 1.1.0
chokidar: 5.0.0
esbuild: 0.28.1
estree-util-value-to-estree: 3.5.0
- fumadocs-core: 16.10.7(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.4)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.23.0(react@19.2.7))(next@16.2.10(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(zod@4.4.3)
+ fumadocs-core: 16.11.1(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.24.0(react@19.2.7))(next@16.3.0-preview.6(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(zod@4.4.3)
+ github-slugger: 2.0.0
js-yaml: 5.2.1
mdast-util-mdx: 3.0.0
picocolors: 1.1.1
@@ -10229,17 +10648,17 @@ snapshots:
'@types/mdast': 4.0.4
'@types/mdx': 2.0.14
'@types/react': 19.2.17
- next: 16.2.10(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ next: 16.3.0-preview.6(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
react: 19.2.7
rolldown: 1.0.2
vite: 8.0.14(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0)
transitivePeerDependencies:
- supports-color
- fumadocs-ui@16.10.7(@types/mdx@2.0.14)(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(fumadocs-core@16.10.7(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.4)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.23.0(react@19.2.7))(next@16.2.10(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(zod@4.4.3))(next@16.2.10(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7):
+ fumadocs-ui@16.11.1(@types/mdx@2.0.14)(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(fumadocs-core@16.11.1(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.24.0(react@19.2.7))(next@16.3.0-preview.6(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(zod@4.4.3))(next@16.3.0-preview.6(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7):
dependencies:
'@fuma-translate/react': 1.0.2(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
- '@fumadocs/tailwind': 0.0.5
+ '@fumadocs/tailwind': 0.1.0
'@radix-ui/react-accordion': 1.2.16(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
'@radix-ui/react-collapsible': 1.1.16(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
'@radix-ui/react-dialog': 1.1.19(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
@@ -10252,8 +10671,8 @@ snapshots:
'@radix-ui/react-tabs': 1.1.17(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
class-variance-authority: 0.7.1
cnfast: 0.0.8
- fumadocs-core: 16.10.7(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.4)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.23.0(react@19.2.7))(next@16.2.10(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(zod@4.4.3)
- lucide-react: 1.23.0(react@19.2.7)
+ fumadocs-core: 16.11.1(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.24.0(react@19.2.7))(next@16.3.0-preview.6(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(zod@4.4.3)
+ lucide-react: 1.24.0(react@19.2.7)
motion: 12.42.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
next-themes: 0.4.6(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
react: 19.2.7
@@ -10266,10 +10685,9 @@ snapshots:
optionalDependencies:
'@types/mdx': 2.0.14
'@types/react': 19.2.17
- next: 16.2.10(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ next: 16.3.0-preview.6(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
transitivePeerDependencies:
- '@emotion/is-prop-valid'
- - '@tailwindcss/oxide'
- '@types/react-dom'
- tailwindcss
@@ -10393,6 +10811,10 @@ snapshots:
has-flag@4.0.0: {}
+ has-property-descriptors@1.0.2:
+ dependencies:
+ es-define-property: 1.0.1
+
has-symbols@1.1.0: {}
has-tostringtag@1.0.2:
@@ -10405,7 +10827,7 @@ snapshots:
hast-util-from-parse5@8.0.3:
dependencies:
- '@types/hast': 3.0.4
+ '@types/hast': 3.0.5
'@types/unist': 3.0.3
devlop: 1.1.0
hastscript: 9.0.1
@@ -10416,13 +10838,13 @@ snapshots:
hast-util-parse-selector@4.0.0:
dependencies:
- '@types/hast': 3.0.4
+ '@types/hast': 3.0.5
hast-util-raw@9.1.0:
dependencies:
- '@types/hast': 3.0.4
+ '@types/hast': 3.0.5
'@types/unist': 3.0.3
- '@ungap/structured-clone': 1.3.2
+ '@ungap/structured-clone': 1.3.3
hast-util-from-parse5: 8.0.3
hast-util-to-parse5: 8.0.1
html-void-elements: 3.0.0
@@ -10438,7 +10860,7 @@ snapshots:
dependencies:
'@types/estree': 1.0.9
'@types/estree-jsx': 1.0.5
- '@types/hast': 3.0.4
+ '@types/hast': 3.0.5
comma-separated-tokens: 2.0.3
devlop: 1.1.0
estree-util-attach-comments: 3.0.0
@@ -10457,7 +10879,7 @@ snapshots:
hast-util-to-html@9.0.5:
dependencies:
- '@types/hast': 3.0.4
+ '@types/hast': 3.0.5
'@types/unist': 3.0.3
ccount: 2.0.1
comma-separated-tokens: 2.0.3
@@ -10472,7 +10894,7 @@ snapshots:
hast-util-to-jsx-runtime@2.3.6:
dependencies:
'@types/estree': 1.0.9
- '@types/hast': 3.0.4
+ '@types/hast': 3.0.5
'@types/unist': 3.0.3
comma-separated-tokens: 2.0.3
devlop: 1.1.0
@@ -10491,7 +10913,7 @@ snapshots:
hast-util-to-parse5@8.0.1:
dependencies:
- '@types/hast': 3.0.4
+ '@types/hast': 3.0.5
comma-separated-tokens: 2.0.3
devlop: 1.1.0
property-information: 7.2.0
@@ -10501,11 +10923,11 @@ snapshots:
hast-util-whitespace@3.0.0:
dependencies:
- '@types/hast': 3.0.4
+ '@types/hast': 3.0.5
hastscript@9.0.1:
dependencies:
- '@types/hast': 3.0.4
+ '@types/hast': 3.0.5
comma-separated-tokens: 2.0.3
hast-util-parse-selector: 4.0.0
property-information: 7.2.0
@@ -10741,6 +11163,8 @@ snapshots:
isarray@1.0.0: {}
+ isarray@2.0.5: {}
+
isexe@2.0.0: {}
isstream@0.1.2: {}
@@ -10807,6 +11231,14 @@ snapshots:
json-schema@0.4.0: {}
+ json-stable-stringify@1.3.0:
+ dependencies:
+ call-bind: 1.0.9
+ call-bound: 1.0.4
+ isarray: 2.0.5
+ jsonify: 0.0.1
+ object-keys: 1.1.1
+
json-stringify-safe@5.0.1: {}
json-with-bigint@3.5.8: {}
@@ -10821,6 +11253,8 @@ snapshots:
optionalDependencies:
graceful-fs: 4.2.11
+ jsonify@0.0.1: {}
+
jsonparse@1.3.1: {}
jsonwebtoken@9.0.3:
@@ -10996,7 +11430,7 @@ snapshots:
lru-cache@7.18.3: {}
- lucide-react@1.23.0(react@19.2.7):
+ lucide-react@1.24.0(react@19.2.7):
dependencies:
react: 19.2.7
@@ -11176,9 +11610,9 @@ snapshots:
mdast-util-to-hast@13.2.1:
dependencies:
- '@types/hast': 3.0.4
+ '@types/hast': 3.0.5
'@types/mdast': 4.0.4
- '@ungap/structured-clone': 1.3.2
+ '@ungap/structured-clone': 1.3.3
devlop: 1.1.0
micromark-util-sanitize-uri: 2.0.1
trim-lines: 3.0.1
@@ -11555,11 +11989,11 @@ snapshots:
'@msgpackr-extract/msgpackr-extract-win32-x64': 3.0.4
optional: true
- msgpackr@2.0.2:
+ msgpackr@2.0.4:
optionalDependencies:
msgpackr-extract: 3.0.4
- multipasta@0.2.7: {}
+ multipasta@0.2.8: {}
mz@2.7.0:
dependencies:
@@ -11567,7 +12001,7 @@ snapshots:
object-assign: 4.1.1
thenify-all: 1.6.0
- nanoid@3.3.15: {}
+ nanoid@3.3.16: {}
negotiator@0.6.3: {}
@@ -11584,25 +12018,25 @@ snapshots:
react: 19.2.7
react-dom: 19.2.7(react@19.2.7)
- next@16.2.10(react-dom@19.2.7(react@19.2.7))(react@19.2.7):
+ next@16.3.0-preview.6(react-dom@19.2.7(react@19.2.7))(react@19.2.7):
dependencies:
- '@next/env': 16.2.10
+ '@next/env': 16.3.0-preview.6
'@swc/helpers': 0.5.15
baseline-browser-mapping: 2.10.42
caniuse-lite: 1.0.30001803
- postcss: 8.4.31
+ postcss: 8.5.10
react: 19.2.7
react-dom: 19.2.7(react@19.2.7)
styled-jsx: 5.1.6(react@19.2.7)
optionalDependencies:
- '@next/swc-darwin-arm64': 16.2.10
- '@next/swc-darwin-x64': 16.2.10
- '@next/swc-linux-arm64-gnu': 16.2.10
- '@next/swc-linux-arm64-musl': 16.2.10
- '@next/swc-linux-x64-gnu': 16.2.10
- '@next/swc-linux-x64-musl': 16.2.10
- '@next/swc-win32-arm64-msvc': 16.2.10
- '@next/swc-win32-x64-msvc': 16.2.10
+ '@next/swc-darwin-arm64': 16.3.0-preview.6
+ '@next/swc-darwin-x64': 16.3.0-preview.6
+ '@next/swc-linux-arm64-gnu': 16.3.0-preview.6
+ '@next/swc-linux-arm64-musl': 16.3.0-preview.6
+ '@next/swc-linux-x64-gnu': 16.3.0-preview.6
+ '@next/swc-linux-x64-musl': 16.3.0-preview.6
+ '@next/swc-win32-arm64-msvc': 16.3.0-preview.6
+ '@next/swc-win32-x64-msvc': 16.3.0-preview.6
sharp: 0.34.5
transitivePeerDependencies:
- '@babel/core'
@@ -11659,7 +12093,7 @@ snapshots:
npm@11.17.0: {}
- nx@23.0.1(@swc-node/register@1.11.1(@swc/core@1.15.43)(@swc/types@0.1.27)(typescript@6.0.3))(@swc/core@1.15.43):
+ nx@23.0.1(@swc-node/register@1.12.0(@swc/core@1.15.43)(@swc/types@0.1.27)(@typescript/typescript6@6.0.2))(@swc/core@1.15.43):
dependencies:
'@emnapi/core': 1.4.5
'@emnapi/runtime': 1.4.5
@@ -11783,12 +12217,12 @@ snapshots:
'@nx/nx-linux-x64-musl': 23.0.1
'@nx/nx-win32-arm64-msvc': 23.0.1
'@nx/nx-win32-x64-msvc': 23.0.1
- '@swc-node/register': 1.11.1(@swc/core@1.15.43)(@swc/types@0.1.27)(typescript@6.0.3)
+ '@swc-node/register': 1.12.0(@swc/core@1.15.43)(@swc/types@0.1.27)(@typescript/typescript6@6.0.2)
'@swc/core': 1.15.43
transitivePeerDependencies:
- debug
- nx@23.0.2(@swc-node/register@1.11.1(@swc/core@1.15.43)(@swc/types@0.1.27)(typescript@6.0.3))(@swc/core@1.15.43):
+ nx@23.1.0(@swc-node/register@1.12.0(@swc/core@1.15.43)(@swc/types@0.1.27)(@typescript/typescript6@6.0.2))(@swc/core@1.15.43):
dependencies:
'@emnapi/core': 1.4.5
'@emnapi/runtime': 1.4.5
@@ -11884,7 +12318,7 @@ snapshots:
resolve.exports: 2.0.3
restore-cursor: 3.1.0
safe-buffer: 5.2.1
- semver: 7.7.4
+ semver: 7.8.4
signal-exit: 3.0.7
smol-toml: 1.6.1
string-width: 4.2.3
@@ -11906,23 +12340,25 @@ snapshots:
yargs: 17.7.2
yargs-parser: 21.1.1
optionalDependencies:
- '@nx/nx-darwin-arm64': 23.0.2
- '@nx/nx-darwin-x64': 23.0.2
- '@nx/nx-freebsd-x64': 23.0.2
- '@nx/nx-linux-arm-gnueabihf': 23.0.2
- '@nx/nx-linux-arm64-gnu': 23.0.2
- '@nx/nx-linux-arm64-musl': 23.0.2
- '@nx/nx-linux-x64-gnu': 23.0.2
- '@nx/nx-linux-x64-musl': 23.0.2
- '@nx/nx-win32-arm64-msvc': 23.0.2
- '@nx/nx-win32-x64-msvc': 23.0.2
- '@swc-node/register': 1.11.1(@swc/core@1.15.43)(@swc/types@0.1.27)(typescript@6.0.3)
+ '@nx/nx-darwin-arm64': 23.1.0
+ '@nx/nx-darwin-x64': 23.1.0
+ '@nx/nx-freebsd-x64': 23.1.0
+ '@nx/nx-linux-arm-gnueabihf': 23.1.0
+ '@nx/nx-linux-arm64-gnu': 23.1.0
+ '@nx/nx-linux-arm64-musl': 23.1.0
+ '@nx/nx-linux-x64-gnu': 23.1.0
+ '@nx/nx-linux-x64-musl': 23.1.0
+ '@nx/nx-win32-arm64-msvc': 23.1.0
+ '@nx/nx-win32-x64-msvc': 23.1.0
+ '@swc-node/register': 1.12.0(@swc/core@1.15.43)(@swc/types@0.1.27)(@typescript/typescript6@6.0.2)
'@swc/core': 1.15.43
object-assign@4.1.1: {}
object-inspect@1.13.4: {}
+ object-keys@1.1.1: {}
+
obuf@1.1.2: {}
obug@2.1.1: {}
@@ -12020,29 +12456,29 @@ snapshots:
'@oxc-resolver/binding-win32-arm64-msvc': 11.21.3
'@oxc-resolver/binding-win32-x64-msvc': 11.21.3
- oxfmt@0.57.0:
+ oxfmt@0.58.0:
dependencies:
tinypool: 2.1.0
optionalDependencies:
- '@oxfmt/binding-android-arm-eabi': 0.57.0
- '@oxfmt/binding-android-arm64': 0.57.0
- '@oxfmt/binding-darwin-arm64': 0.57.0
- '@oxfmt/binding-darwin-x64': 0.57.0
- '@oxfmt/binding-freebsd-x64': 0.57.0
- '@oxfmt/binding-linux-arm-gnueabihf': 0.57.0
- '@oxfmt/binding-linux-arm-musleabihf': 0.57.0
- '@oxfmt/binding-linux-arm64-gnu': 0.57.0
- '@oxfmt/binding-linux-arm64-musl': 0.57.0
- '@oxfmt/binding-linux-ppc64-gnu': 0.57.0
- '@oxfmt/binding-linux-riscv64-gnu': 0.57.0
- '@oxfmt/binding-linux-riscv64-musl': 0.57.0
- '@oxfmt/binding-linux-s390x-gnu': 0.57.0
- '@oxfmt/binding-linux-x64-gnu': 0.57.0
- '@oxfmt/binding-linux-x64-musl': 0.57.0
- '@oxfmt/binding-openharmony-arm64': 0.57.0
- '@oxfmt/binding-win32-arm64-msvc': 0.57.0
- '@oxfmt/binding-win32-ia32-msvc': 0.57.0
- '@oxfmt/binding-win32-x64-msvc': 0.57.0
+ '@oxfmt/binding-android-arm-eabi': 0.58.0
+ '@oxfmt/binding-android-arm64': 0.58.0
+ '@oxfmt/binding-darwin-arm64': 0.58.0
+ '@oxfmt/binding-darwin-x64': 0.58.0
+ '@oxfmt/binding-freebsd-x64': 0.58.0
+ '@oxfmt/binding-linux-arm-gnueabihf': 0.58.0
+ '@oxfmt/binding-linux-arm-musleabihf': 0.58.0
+ '@oxfmt/binding-linux-arm64-gnu': 0.58.0
+ '@oxfmt/binding-linux-arm64-musl': 0.58.0
+ '@oxfmt/binding-linux-ppc64-gnu': 0.58.0
+ '@oxfmt/binding-linux-riscv64-gnu': 0.58.0
+ '@oxfmt/binding-linux-riscv64-musl': 0.58.0
+ '@oxfmt/binding-linux-s390x-gnu': 0.58.0
+ '@oxfmt/binding-linux-x64-gnu': 0.58.0
+ '@oxfmt/binding-linux-x64-musl': 0.58.0
+ '@oxfmt/binding-openharmony-arm64': 0.58.0
+ '@oxfmt/binding-win32-arm64-msvc': 0.58.0
+ '@oxfmt/binding-win32-ia32-msvc': 0.58.0
+ '@oxfmt/binding-win32-x64-msvc': 0.58.0
oxlint-tsgolint@0.24.0:
optionalDependencies:
@@ -12181,13 +12617,11 @@ snapshots:
pg-cloudflare@1.4.0:
optional: true
- pg-connection-string@2.12.0: {}
-
pg-connection-string@2.14.0: {}
pg-copy-streams@7.0.0: {}
- pg-cursor@2.20.0(pg@8.22.0):
+ pg-cursor@2.21.0(pg@8.22.0):
dependencies:
pg: 8.22.0
@@ -12281,15 +12715,15 @@ snapshots:
pkg-pr-new@0.0.75: {}
- postcss@8.4.31:
+ postcss@8.5.10:
dependencies:
- nanoid: 3.3.15
+ nanoid: 3.3.16
picocolors: 1.1.1
source-map-js: 1.2.1
- postcss@8.5.16:
+ postcss@8.5.19:
dependencies:
- nanoid: 3.3.15
+ nanoid: 3.3.16
picocolors: 1.1.1
source-map-js: 1.2.1
@@ -12315,9 +12749,9 @@ snapshots:
postgres-range@1.1.4: {}
- posthog-node@5.39.4:
+ posthog-node@5.40.0:
dependencies:
- '@posthog/core': 1.40.1
+ '@posthog/core': 1.43.1
pretty-ms@9.3.0:
dependencies:
@@ -12554,14 +12988,14 @@ snapshots:
rehype-raw@7.0.0:
dependencies:
- '@types/hast': 3.0.4
+ '@types/hast': 3.0.5
hast-util-raw: 9.1.0
vfile: 6.0.3
rehype-recma@1.0.0:
dependencies:
'@types/estree': 1.0.9
- '@types/hast': 3.0.4
+ '@types/hast': 3.0.5
hast-util-to-estree: 3.1.3
transitivePeerDependencies:
- supports-color
@@ -12595,7 +13029,7 @@ snapshots:
remark-rehype@11.1.2:
dependencies:
- '@types/hast': 3.0.4
+ '@types/hast': 3.0.5
'@types/mdast': 4.0.4
mdast-util-to-hast: 13.2.1
unified: 11.0.5
@@ -12699,15 +13133,15 @@ snapshots:
dependencies:
compute-scroll-into-view: 3.1.1
- semantic-release@25.0.5(typescript@6.0.3):
+ semantic-release@25.0.5(typescript@7.0.2):
dependencies:
- '@semantic-release/commit-analyzer': 13.0.1(semantic-release@25.0.5(typescript@6.0.3))
+ '@semantic-release/commit-analyzer': 13.0.1(semantic-release@25.0.5(typescript@7.0.2))
'@semantic-release/error': 4.0.0
- '@semantic-release/github': 12.0.8(semantic-release@25.0.5(typescript@6.0.3))
- '@semantic-release/npm': 13.1.5(semantic-release@25.0.5(typescript@6.0.3))
- '@semantic-release/release-notes-generator': 14.1.1(semantic-release@25.0.5(typescript@6.0.3))
+ '@semantic-release/github': 12.0.8(semantic-release@25.0.5(typescript@7.0.2))
+ '@semantic-release/npm': 13.1.5(semantic-release@25.0.5(typescript@7.0.2))
+ '@semantic-release/release-notes-generator': 14.1.1(semantic-release@25.0.5(typescript@7.0.2))
aggregate-error: 5.0.0
- cosmiconfig: 9.0.2(typescript@6.0.3)
+ cosmiconfig: 9.0.2(typescript@7.0.2)
debug: 4.4.3(supports-color@7.2.0)
env-ci: 11.2.0
execa: 9.6.1
@@ -12798,6 +13232,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ set-function-length@1.2.2:
+ dependencies:
+ define-data-property: 1.1.4
+ es-errors: 1.3.0
+ function-bind: 1.1.2
+ get-intrinsic: 1.3.0
+ gopd: 1.2.0
+ has-property-descriptors: 1.0.2
+
setprototypeof@1.2.0: {}
sharp@0.34.5:
@@ -12849,7 +13292,7 @@ snapshots:
'@shikijs/themes': 4.3.1
'@shikijs/types': 4.3.1
'@shikijs/vscode-textmate': 10.0.2
- '@types/hast': 3.0.4
+ '@types/hast': 3.0.5
side-channel-list@1.0.1:
dependencies:
@@ -13172,7 +13615,7 @@ snapshots:
toidentifier@1.0.1: {}
- toml@4.1.1: {}
+ toml@4.3.0: {}
tough-cookie@5.1.2:
dependencies:
@@ -13233,6 +13676,29 @@ snapshots:
typescript@6.0.3: {}
+ typescript@7.0.2:
+ optionalDependencies:
+ '@typescript/typescript-aix-ppc64': 7.0.2
+ '@typescript/typescript-darwin-arm64': 7.0.2
+ '@typescript/typescript-darwin-x64': 7.0.2
+ '@typescript/typescript-freebsd-arm64': 7.0.2
+ '@typescript/typescript-freebsd-x64': 7.0.2
+ '@typescript/typescript-linux-arm': 7.0.2
+ '@typescript/typescript-linux-arm64': 7.0.2
+ '@typescript/typescript-linux-loong64': 7.0.2
+ '@typescript/typescript-linux-mips64el': 7.0.2
+ '@typescript/typescript-linux-ppc64': 7.0.2
+ '@typescript/typescript-linux-riscv64': 7.0.2
+ '@typescript/typescript-linux-s390x': 7.0.2
+ '@typescript/typescript-linux-x64': 7.0.2
+ '@typescript/typescript-netbsd-arm64': 7.0.2
+ '@typescript/typescript-netbsd-x64': 7.0.2
+ '@typescript/typescript-openbsd-arm64': 7.0.2
+ '@typescript/typescript-openbsd-x64': 7.0.2
+ '@typescript/typescript-sunos-x64': 7.0.2
+ '@typescript/typescript-win32-arm64': 7.0.2
+ '@typescript/typescript-win32-x64': 7.0.2
+
uglify-js@3.19.3:
optional: true
@@ -13246,7 +13712,7 @@ snapshots:
undici@7.28.0: {}
- undici@8.6.0: {}
+ undici@8.7.0: {}
unicode-emoji-modifier-base@1.0.0: {}
@@ -13339,7 +13805,7 @@ snapshots:
utils-merge@1.0.1: {}
- uuid@14.0.0: {}
+ uuid@14.0.1: {}
uuid@8.3.2: {}
@@ -13440,7 +13906,7 @@ snapshots:
dependencies:
lightningcss: 1.32.0
picomatch: 4.0.5
- postcss: 8.5.16
+ postcss: 8.5.19
rolldown: 1.0.2
tinyglobby: 0.2.17
optionalDependencies:
@@ -13450,21 +13916,21 @@ snapshots:
jiti: 2.7.0
yaml: 2.9.0
- vitest@4.1.9(@types/node@26.1.1)(@vitest/coverage-istanbul@4.1.9)(vite@8.0.14(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0)):
+ vitest@4.1.10(@types/node@26.1.1)(@vitest/coverage-istanbul@4.1.10)(vite@8.0.14(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0)):
dependencies:
- '@vitest/expect': 4.1.9
- '@vitest/mocker': 4.1.9(vite@8.0.14(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
- '@vitest/pretty-format': 4.1.9
- '@vitest/runner': 4.1.9
- '@vitest/snapshot': 4.1.9
- '@vitest/spy': 4.1.9
- '@vitest/utils': 4.1.9
+ '@vitest/expect': 4.1.10
+ '@vitest/mocker': 4.1.10(vite@8.0.14(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(yaml@2.9.0))
+ '@vitest/pretty-format': 4.1.10
+ '@vitest/runner': 4.1.10
+ '@vitest/snapshot': 4.1.10
+ '@vitest/spy': 4.1.10
+ '@vitest/utils': 4.1.10
es-module-lexer: 2.1.0
expect-type: 1.3.0
magic-string: 0.30.21
obug: 2.1.1
pathe: 2.0.3
- picomatch: 4.0.4
+ picomatch: 4.0.5
std-env: 4.1.0
tinybench: 2.9.0
tinyexec: 1.2.4
@@ -13474,7 +13940,7 @@ snapshots:
why-is-node-running: 2.3.0
optionalDependencies:
'@types/node': 26.1.1
- '@vitest/coverage-istanbul': 4.1.9(vitest@4.1.9)
+ '@vitest/coverage-istanbul': 4.1.10(vitest@4.1.10)
transitivePeerDependencies:
- msw
diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml
index 1c109e8892..8759edf174 100644
--- a/pnpm-workspace.yaml
+++ b/pnpm-workspace.yaml
@@ -12,29 +12,32 @@ allowBuilds:
sharp: true
catalog:
- "@effect/atom-react": "4.0.0-beta.93"
- "@effect/platform-bun": "4.0.0-beta.93"
- "@effect/platform-node": "4.0.0-beta.93"
- "@effect/sql-pg": "4.0.0-beta.93"
- "@effect/vitest": "^4.0.0-beta.93"
+ "@effect/atom-react": "4.0.0-beta.94"
+ "@effect/platform-bun": "4.0.0-beta.97"
+ "@effect/platform-node": "4.0.0-beta.97"
+ "@effect/sql-pg": "4.0.0-beta.97"
+ "@effect/vitest": "4.0.0-beta.97"
"@nx/devkit": "^23.0.0"
"@swc-node/register": "^1.10.9"
"@swc/core": "^1.15.43"
"@tsconfig/bun": "^1.0.10"
"@types/bun": "^1.3.14"
- "@typescript/native-preview": "7.0.0-dev.20260703.1"
- "@vitest/coverage-istanbul": "^4.1.9"
- "effect": "4.0.0-beta.93"
+ "@typescript/native-preview": "7.0.0-dev.20260707.2"
+ "@vitest/coverage-istanbul": "^4.1.10"
+ "effect": "4.0.0-beta.97"
"knip": "^6.24.0"
"nx": "^23.0.0"
- "oxfmt": "^0.57.0"
+ "oxfmt": "^0.58.0"
"oxlint": "^1.72.0"
"oxlint-tsgolint": "^0.24.0"
- "tldts": "^7.4.6"
- "vitest": "^4.1.9"
+ "tldts": "^7.4.8"
+ "vitest": "^4.1.10"
blockExoticSubdeps: true
+overrides:
+ "@effect/platform-node-shared": "4.0.0-beta.97"
+
minimumReleaseAge: 0
supportedArchitectures:
diff --git a/tools/nx-plugins/package.json b/tools/nx-plugins/package.json
index 875f079ca7..10615425b1 100644
--- a/tools/nx-plugins/package.json
+++ b/tools/nx-plugins/package.json
@@ -3,6 +3,7 @@
"private": true,
"dependencies": {
"@nx/devkit": "catalog:",
+ "typescript": "npm:@typescript/typescript6@^6.0.2",
"vitest": "catalog:"
}
}