perf: dev server (#10904)

* perf: dev server

* fix
This commit is contained in:
shadcn
2026-06-10 11:10:01 +04:00
committed by GitHub
parent 1450bea8d6
commit 1994caba0b
9 changed files with 167 additions and 144 deletions

View File

@@ -1,6 +1,8 @@
// @ts-nocheck // @ts-nocheck
// This file is autogenerated by scripts/build-registry.mts // This file is autogenerated by scripts/build-registry.mts
// Do not edit this file directly. // Do not edit this file directly.
import "server-only"
import * as React from "react" import * as React from "react"
export const ExamplesIndex: Record<string, Record<string, any>> = { export const ExamplesIndex: Record<string, Record<string, any>> = {

View File

@@ -29,9 +29,6 @@ const nextConfig = {
turbopack: { turbopack: {
root: path.resolve(import.meta.dirname, "../.."), root: path.resolve(import.meta.dirname, "../.."),
}, },
experimental: {
turbopackFileSystemCacheForDev: true,
},
redirects() { redirects() {
return [ return [
// Form redirects to /docs/forms. // Form redirects to /docs/forms.

View File

@@ -14,8 +14,8 @@
"format:write": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache", "format:write": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
"format:check": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache", "format:check": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache",
"icons:dev": "tsx --tsconfig ./tsconfig.scripts.json ./scripts/build-icons.ts --watch", "icons:dev": "tsx --tsconfig ./tsconfig.scripts.json ./scripts/build-icons.ts --watch",
"registry:build": "pnpm --filter=shadcn build && bun run ./scripts/build-registry.mts", "registry:build": "pnpm --filter=shadcn build && bun --conditions=react-server run ./scripts/build-registry.mts",
"registry:capture": "tsx --tsconfig ./tsconfig.scripts.json ./scripts/capture-registry.mts", "registry:capture": "tsx --conditions=react-server --tsconfig ./tsconfig.scripts.json ./scripts/capture-registry.mts",
"explore:capture": "tsx --tsconfig ./tsconfig.scripts.json ./scripts/capture-explore.mts", "explore:capture": "tsx --tsconfig ./tsconfig.scripts.json ./scripts/capture-explore.mts",
"validate:registries": "tsx --tsconfig ./tsconfig.scripts.json ./scripts/validate-registries.mts", "validate:registries": "tsx --tsconfig ./tsconfig.scripts.json ./scripts/validate-registries.mts",
"test:apps": "bun run ./scripts/build-test-app.mts", "test:apps": "bun run ./scripts/build-test-app.mts",
@@ -61,7 +61,7 @@
"lru-cache": "^11.2.4", "lru-cache": "^11.2.4",
"lucide-react": "0.474.0", "lucide-react": "0.474.0",
"motion": "^12.12.1", "motion": "^12.12.1",
"next": "16.1.6", "next": "16.2.7",
"next-themes": "0.4.6", "next-themes": "0.4.6",
"nuqs": "^2.8.9", "nuqs": "^2.8.9",
"postcss": "^8.5.1", "postcss": "^8.5.1",

View File

@@ -1,6 +1,8 @@
// @ts-nocheck // @ts-nocheck
// This file is autogenerated by scripts/build-registry.ts // This file is autogenerated by scripts/build-registry.ts
// Do not edit this file directly. // Do not edit this file directly.
import "server-only"
import * as React from "react" import * as React from "react"
export const Index: Record<string, Record<string, any>> = { export const Index: Record<string, Record<string, any>> = {

View File

@@ -61,7 +61,7 @@ function scanIconUsage() {
function generateIconFiles(iconUsage: IconUsage) { function generateIconFiles(iconUsage: IconUsage) {
const outputDir = path.join(process.cwd(), "registry/icons") const outputDir = path.join(process.cwd(), "registry/icons")
console.log("✓ Generated icon files:") const written: string[] = []
Object.entries(iconLibraries).forEach(([libraryName, config]) => { Object.entries(iconLibraries).forEach(([libraryName, config]) => {
const icons = Array.from(iconUsage[libraryName as IconLibraryName]).sort() const icons = Array.from(iconUsage[libraryName as IconLibraryName]).sort()
@@ -75,10 +75,25 @@ ${icons.map((icon) => `export { ${icon} } from "${config.export}"`).join("\n")}
` `
const filename = `__${libraryName}__.ts` const filename = `__${libraryName}__.ts`
fs.writeFileSync(path.join(outputDir, filename), content) const filepath = path.join(outputDir, filename)
console.log(` - ${config.title}: ${icons.length} icons`) // Skip unchanged files to avoid mtime bumps that trigger
// unnecessary Turbopack invalidations in watch mode.
if (
fs.existsSync(filepath) &&
fs.readFileSync(filepath, "utf-8") === content
) {
return
}
fs.writeFileSync(filepath, content)
written.push(` - ${config.title}: ${icons.length} icons`)
}) })
if (written.length > 0) {
console.log("✓ Generated icon files:")
written.forEach((line) => console.log(line))
}
} }
function main() { function main() {

View File

@@ -1019,6 +1019,7 @@ async function buildExamplesIndex() {
let index = `// @ts-nocheck let index = `// @ts-nocheck
// This file is autogenerated by scripts/build-registry.mts // This file is autogenerated by scripts/build-registry.mts
// Do not edit this file directly. // Do not edit this file directly.
import "server-only"
import * as React from "react" import * as React from "react"
export const ExamplesIndex: Record<string, Record<string, any>> = {` export const ExamplesIndex: Record<string, Record<string, any>> = {`
@@ -1065,6 +1066,7 @@ async function buildRegistryIndex(styles: { name: string; title: string }[]) {
let index = `// @ts-nocheck let index = `// @ts-nocheck
// This file is autogenerated by scripts/build-registry.ts // This file is autogenerated by scripts/build-registry.ts
// Do not edit this file directly. // Do not edit this file directly.
import "server-only"
import * as React from "react" import * as React from "react"
export const Index: Record<string, Record<string, any>> = {` export const Index: Record<string, Record<string, any>> = {`

View File

@@ -17,8 +17,8 @@
"registry:build": "pnpm --filter=v4 registry:build && pnpm lint:fix && pnpm format:write -- --loglevel silent", "registry:build": "pnpm --filter=v4 registry:build && pnpm lint:fix && pnpm format:write -- --loglevel silent",
"registry:capture": "pnpm --filter=v4 registry:capture", "registry:capture": "pnpm --filter=v4 registry:capture",
"explore:capture": "pnpm --filter=v4 explore:capture", "explore:capture": "pnpm --filter=v4 explore:capture",
"dev": "turbo run dev --parallel", "dev": "turbo run dev",
"shadcn:dev": "turbo --filter=shadcn dev", "shadcn:dev": "turbo run dev --filter=shadcn",
"shadcn": "pnpm --filter=shadcn start:dev", "shadcn": "pnpm --filter=shadcn start:dev",
"shadcn:prod": "pnpm --filter=shadcn start:prod", "shadcn:prod": "pnpm --filter=shadcn start:prod",
"shadcn:build": "pnpm --filter=shadcn build", "shadcn:build": "pnpm --filter=shadcn build",
@@ -37,7 +37,7 @@
"pub:beta": "cd packages/shadcn && pnpm pub:beta", "pub:beta": "cd packages/shadcn && pnpm pub:beta",
"pub:rc": "cd packages/shadcn && pnpm pub:rc", "pub:rc": "cd packages/shadcn && pnpm pub:rc",
"pub:release": "cd packages/shadcn && pnpm pub:release", "pub:release": "cd packages/shadcn && pnpm pub:release",
"test:dev": "turbo run test --filter=!shadcn-ui --force", "test:dev": "turbo run test --force",
"test": "pnpm --filter=v4 registry:build && start-server-and-test v4:dev http://localhost:4000 test:dev", "test": "pnpm --filter=v4 registry:build && start-server-and-test v4:dev http://localhost:4000 test:dev",
"validate:registries": "pnpm --filter=v4 validate:registries", "validate:registries": "pnpm --filter=v4 validate:registries",
"test:apps": "pnpm --filter=v4 test:apps" "test:apps": "pnpm --filter=v4 test:apps"
@@ -60,7 +60,7 @@
"eslint": "^9.26.0", "eslint": "^9.26.0",
"eslint-config-next": "^15.0.0", "eslint-config-next": "^15.0.0",
"eslint-config-prettier": "^8.8.0", "eslint-config-prettier": "^8.8.0",
"eslint-config-turbo": "^1.9.9", "eslint-config-turbo": "^2.9.16",
"eslint-plugin-react": "^7.32.2", "eslint-plugin-react": "^7.32.2",
"eslint-plugin-tailwindcss": "3.13.1", "eslint-plugin-tailwindcss": "3.13.1",
"motion": "^12.12.1", "motion": "^12.12.1",
@@ -69,7 +69,7 @@
"puppeteer": "^23.6.0", "puppeteer": "^23.6.0",
"tailwindcss": "^3.4.18", "tailwindcss": "^3.4.18",
"tsx": "^4.1.4", "tsx": "^4.1.4",
"turbo": "^1.9.9", "turbo": "^2.9.16",
"vite": "^7.3.2", "vite": "^7.3.2",
"vite-tsconfig-paths": "^4.2.0", "vite-tsconfig-paths": "^4.2.0",
"vitest": "^2.1.9" "vitest": "^2.1.9"

260
pnpm-lock.yaml generated
View File

@@ -61,8 +61,8 @@ importers:
specifier: ^8.8.0 specifier: ^8.8.0
version: 8.10.2(eslint@9.26.0(hono@4.11.7)(jiti@1.21.7)) version: 8.10.2(eslint@9.26.0(hono@4.11.7)(jiti@1.21.7))
eslint-config-turbo: eslint-config-turbo:
specifier: ^1.9.9 specifier: ^2.9.16
version: 1.13.4(eslint@9.26.0(hono@4.11.7)(jiti@1.21.7)) version: 2.9.16(eslint@9.26.0(hono@4.11.7)(jiti@1.21.7))(turbo@2.9.16)
eslint-plugin-react: eslint-plugin-react:
specifier: ^7.32.2 specifier: ^7.32.2
version: 7.37.5(eslint@9.26.0(hono@4.11.7)(jiti@1.21.7)) version: 7.37.5(eslint@9.26.0(hono@4.11.7)(jiti@1.21.7))
@@ -88,8 +88,8 @@ importers:
specifier: ^4.1.4 specifier: ^4.1.4
version: 4.20.3 version: 4.20.3
turbo: turbo:
specifier: ^1.9.9 specifier: ^2.9.16
version: 1.13.4 version: 2.9.16
vite: vite:
specifier: ^7.3.2 specifier: ^7.3.2
version: 7.3.2(@types/node@20.19.10)(jiti@1.21.7)(lightningcss@1.30.2)(tsx@4.20.3)(yaml@2.8.1) version: 7.3.2(@types/node@20.19.10)(jiti@1.21.7)(lightningcss@1.30.2)(tsx@4.20.3)(yaml@2.8.1)
@@ -177,7 +177,7 @@ importers:
version: 8.21.3(react-dom@19.2.3(react@19.2.3))(react@19.2.3) version: 8.21.3(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
'@vercel/analytics': '@vercel/analytics':
specifier: ^1.4.1 specifier: ^1.4.1
version: 1.5.0(next@16.1.6(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(react@19.2.3) version: 1.5.0(next@16.2.7(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(react@19.2.3)
change-case: change-case:
specifier: ^5.4.4 specifier: ^5.4.4
version: 5.4.4 version: 5.4.4
@@ -210,16 +210,16 @@ importers:
version: 4.0.2 version: 4.0.2
fumadocs-core: fumadocs-core:
specifier: 16.0.5 specifier: 16.0.5
version: 16.0.5(@types/react@19.2.2)(lucide-react@0.474.0(react@19.2.3))(next@16.1.6(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(react-dom@19.2.3(react@19.2.3))(react@19.2.3) version: 16.0.5(@types/react@19.2.2)(lucide-react@0.474.0(react@19.2.3))(next@16.2.7(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
fumadocs-docgen: fumadocs-docgen:
specifier: 2.0.0 specifier: 2.0.0
version: 2.0.0 version: 2.0.0
fumadocs-mdx: fumadocs-mdx:
specifier: 13.0.2 specifier: 13.0.2
version: 13.0.2(fumadocs-core@16.0.5(@types/react@19.2.2)(lucide-react@0.474.0(react@19.2.3))(next@16.1.6(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(next@16.1.6(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(react@19.2.3)(vite@7.3.2(@types/node@20.19.10)(jiti@2.6.1)(lightningcss@1.30.2)(tsx@4.20.3)(yaml@2.8.1)) version: 13.0.2(fumadocs-core@16.0.5(@types/react@19.2.2)(lucide-react@0.474.0(react@19.2.3))(next@16.2.7(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(next@16.2.7(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(react@19.2.3)(vite@7.3.2(@types/node@20.19.10)(jiti@2.6.1)(lightningcss@1.30.2)(tsx@4.20.3)(yaml@2.8.1))
fumadocs-ui: fumadocs-ui:
specifier: 16.0.5 specifier: 16.0.5
version: 16.0.5(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(lucide-react@0.474.0(react@19.2.3))(next@16.1.6(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(tailwindcss@4.1.18) version: 16.0.5(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(lucide-react@0.474.0(react@19.2.3))(next@16.2.7(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(tailwindcss@4.1.18)
input-otp: input-otp:
specifier: ^1.4.2 specifier: ^1.4.2
version: 1.4.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3) version: 1.4.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
@@ -242,14 +242,14 @@ importers:
specifier: ^12.12.1 specifier: ^12.12.1
version: 12.23.12(@emotion/is-prop-valid@1.3.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3) version: 12.23.12(@emotion/is-prop-valid@1.3.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
next: next:
specifier: 16.1.6 specifier: 16.2.7
version: 16.1.6(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3) version: 16.2.7(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
next-themes: next-themes:
specifier: 0.4.6 specifier: 0.4.6
version: 0.4.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3) version: 0.4.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
nuqs: nuqs:
specifier: ^2.8.9 specifier: ^2.8.9
version: 2.8.9(next@16.1.6(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(react@19.2.3) version: 2.8.9(next@16.2.7(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(react@19.2.3)
postcss: postcss:
specifier: ^8.5.1 specifier: ^8.5.1
version: 8.5.6 version: 8.5.6
@@ -1948,8 +1948,8 @@ packages:
'@napi-rs/wasm-runtime@0.2.12': '@napi-rs/wasm-runtime@0.2.12':
resolution: {integrity: sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==} resolution: {integrity: sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==}
'@next/env@16.1.6': '@next/env@16.2.7':
resolution: {integrity: sha512-N1ySLuZjnAtN3kFnwhAwPvZah8RJxKasD7x1f8shFqhncnWZn4JMfg37diLNuoHsLAlrDfM3g4mawVdtAG8XLQ==} resolution: {integrity: sha512-tMJizPlj6ZYpBMMdK8S0LJufrP4QTdR6pcv9KQ/bVETPAmg0j1mlHE9G2c38UyGHxoBapgwuj7XjbGJ2RcDFOg==}
'@next/eslint-plugin-next@15.5.11': '@next/eslint-plugin-next@15.5.11':
resolution: {integrity: sha512-tS/HYQOjIoX9ZNDQitba/baS8sTvo3ekY6Vgdx5lmhN4jov082bdApIChXr94qhMZHvEciz9DZglFFnhguQp/A==} resolution: {integrity: sha512-tS/HYQOjIoX9ZNDQitba/baS8sTvo3ekY6Vgdx5lmhN4jov082bdApIChXr94qhMZHvEciz9DZglFFnhguQp/A==}
@@ -1957,54 +1957,54 @@ packages:
'@next/eslint-plugin-next@16.0.0': '@next/eslint-plugin-next@16.0.0':
resolution: {integrity: sha512-IB7RzmmtrPOrpAgEBR1PIQPD0yea5lggh5cq54m51jHjjljU80Ia+czfxJYMlSDl1DPvpzb8S9TalCc0VMo9Hw==} resolution: {integrity: sha512-IB7RzmmtrPOrpAgEBR1PIQPD0yea5lggh5cq54m51jHjjljU80Ia+czfxJYMlSDl1DPvpzb8S9TalCc0VMo9Hw==}
'@next/swc-darwin-arm64@16.1.6': '@next/swc-darwin-arm64@16.2.7':
resolution: {integrity: sha512-wTzYulosJr/6nFnqGW7FrG3jfUUlEf8UjGA0/pyypJl42ExdVgC6xJgcXQ+V8QFn6niSG2Pb8+MIG1mZr2vczw==} resolution: {integrity: sha512-vm1EDI/pVaBNNiychmxk3fft+OhQPVD9cIM/tReLZIQ3TfQ4kqI9DwKk00dzuS1ulC7icbrzCFrmRRlk9PfNdw==}
engines: {node: '>= 10'} engines: {node: '>= 10'}
cpu: [arm64] cpu: [arm64]
os: [darwin] os: [darwin]
'@next/swc-darwin-x64@16.1.6': '@next/swc-darwin-x64@16.2.7':
resolution: {integrity: sha512-BLFPYPDO+MNJsiDWbeVzqvYd4NyuRrEYVB5k2N3JfWncuHAy2IVwMAOlVQDFjj+krkWzhY2apvmekMkfQR0CUQ==} resolution: {integrity: sha512-O3IRSv1ZBL1zs0WrIgefTEcTKFVn+ryxBNe54erJ6KsD+2f/Mmt7g2jOYh8PSBdUwPtKQJuCsTMlZ7tIu2AcsQ==}
engines: {node: '>= 10'} engines: {node: '>= 10'}
cpu: [x64] cpu: [x64]
os: [darwin] os: [darwin]
'@next/swc-linux-arm64-gnu@16.1.6': '@next/swc-linux-arm64-gnu@16.2.7':
resolution: {integrity: sha512-OJYkCd5pj/QloBvoEcJ2XiMnlJkRv9idWA/j0ugSuA34gMT6f5b7vOiCQHVRpvStoZUknhl6/UxOXL4OwtdaBw==} resolution: {integrity: sha512-Re6PZtjBDd0aMU+VcZcC/PrIvj4WhrjDYtMhhCVQamWN4L90EVP0pcEOBQD25prSlw7OzNw5QpHLWMilRLsRNw==}
engines: {node: '>= 10'} engines: {node: '>= 10'}
cpu: [arm64] cpu: [arm64]
os: [linux] os: [linux]
libc: [glibc] libc: [glibc]
'@next/swc-linux-arm64-musl@16.1.6': '@next/swc-linux-arm64-musl@16.2.7':
resolution: {integrity: sha512-S4J2v+8tT3NIO9u2q+S0G5KdvNDjXfAv06OhfOzNDaBn5rw84DGXWndOEB7d5/x852A20sW1M56vhC/tRVbccQ==} resolution: {integrity: sha512-qyogG9QtBzWxgJfeGBvOEHI3851gTfCF3wLZ5RDLTBJGAmE9p1qDwKCOdrBrvBzRvYDT+gUDp72pzlSEfAXgNA==}
engines: {node: '>= 10'} engines: {node: '>= 10'}
cpu: [arm64] cpu: [arm64]
os: [linux] os: [linux]
libc: [musl] libc: [musl]
'@next/swc-linux-x64-gnu@16.1.6': '@next/swc-linux-x64-gnu@16.2.7':
resolution: {integrity: sha512-2eEBDkFlMMNQnkTyPBhQOAyn2qMxyG2eE7GPH2WIDGEpEILcBPI/jdSv4t6xupSP+ot/jkfrCShLAa7+ZUPcJQ==} resolution: {integrity: sha512-Vhe4ZDuBpmMogrGi5D4R2Kq4JAQlj6+wvgaFYy31zfES0zPmt6TLA+cuYpM/OLrPZjo2MYQTHVqNUSCR6+fDZQ==}
engines: {node: '>= 10'} engines: {node: '>= 10'}
cpu: [x64] cpu: [x64]
os: [linux] os: [linux]
libc: [glibc] libc: [glibc]
'@next/swc-linux-x64-musl@16.1.6': '@next/swc-linux-x64-musl@16.2.7':
resolution: {integrity: sha512-oicJwRlyOoZXVlxmIMaTq7f8pN9QNbdes0q2FXfRsPhfCi8n8JmOZJm5oo1pwDaFbnnD421rVU409M3evFbIqg==} resolution: {integrity: sha512-srvian89JahFLw1YLBEuhvPJ0DO5lpUeJQMXy4xYo7g628ZlNgXdNkqoxSAv9OYrBfByh6vxISMwW/mRbzCY+g==}
engines: {node: '>= 10'} engines: {node: '>= 10'}
cpu: [x64] cpu: [x64]
os: [linux] os: [linux]
libc: [musl] libc: [musl]
'@next/swc-win32-arm64-msvc@16.1.6': '@next/swc-win32-arm64-msvc@16.2.7':
resolution: {integrity: sha512-gQmm8izDTPgs+DCWH22kcDmuUp7NyiJgEl18bcr8irXA5N2m2O+JQIr6f3ct42GOs9c0h8QF3L5SzIxcYAAXXw==} resolution: {integrity: sha512-GX3wvLpULFuRFJzwHaKfm7QZJ18F4ZSuxlPJ96BoBglCzBmdSjyeBKF+ZhWhvL/ckxNfLnNa7bsObO2ipYpszw==}
engines: {node: '>= 10'} engines: {node: '>= 10'}
cpu: [arm64] cpu: [arm64]
os: [win32] os: [win32]
'@next/swc-win32-x64-msvc@16.1.6': '@next/swc-win32-x64-msvc@16.2.7':
resolution: {integrity: sha512-NRfO39AIrzBnixKbjuo2YiYhB6o9d8v/ymU9m/Xk8cyVk+k7XylniXkHwjs4s70wedVffc6bQNbufk5v0xEm0A==} resolution: {integrity: sha512-J4WlM72NMk076Qsg0jTdK3SNXatlSdnjW7L7oNGLst1tAGjHrJh/FYi+pw9wyIjEtGRKDNzD0zuiY16oWYWVaw==}
engines: {node: '>= 10'} engines: {node: '>= 10'}
cpu: [x64] cpu: [x64]
os: [win32] os: [win32]
@@ -3361,6 +3361,36 @@ packages:
'@ts-morph/common@0.27.0': '@ts-morph/common@0.27.0':
resolution: {integrity: sha512-Wf29UqxWDpc+i61k3oIOzcUfQt79PIT9y/MWfAGlrkjg6lBC1hwDECLXPVJAhWjiGbfBCxZd65F/LIZF3+jeJQ==} resolution: {integrity: sha512-Wf29UqxWDpc+i61k3oIOzcUfQt79PIT9y/MWfAGlrkjg6lBC1hwDECLXPVJAhWjiGbfBCxZd65F/LIZF3+jeJQ==}
'@turbo/darwin-64@2.9.16':
resolution: {integrity: sha512-jLjApWTSNd7JZ5JaLYfelW1ytnGQOvB7ivl+2RD1xQvJTbi8I9gBjzcga7tDZVPyaxpl10YTfJt3BrYXR18KDw==}
cpu: [x64]
os: [darwin]
'@turbo/darwin-arm64@2.9.16':
resolution: {integrity: sha512-YPgrn+5HIGzrx0O2a631SV4MBQUe4W/DafMFUuBVgaU32PW9/OTT0ehviF0QSxTXuRJlHvW2eUTemddF5/spmw==}
cpu: [arm64]
os: [darwin]
'@turbo/linux-64@2.9.16':
resolution: {integrity: sha512-vAEf1H6l26lTpl9FJ/peQo1NUB8RC0sbEJJz5mPcUhHA2bPDup2x3CZPgo/bH8S4cUcBLm4FN3UHd5iUO2RAew==}
cpu: [x64]
os: [linux]
'@turbo/linux-arm64@2.9.16':
resolution: {integrity: sha512-xDBLR2PZg4BrQOchfG6svgpv5FCNJ2TOtT2psLdEJcdKo1BH+pnPs9Xj6pvUjgfkHbuvBOfeE4R6tvxMoQKDHQ==}
cpu: [arm64]
os: [linux]
'@turbo/windows-64@2.9.16':
resolution: {integrity: sha512-NBAJnaUiGdgkSzQwUIdOvkCkcpTSu58G/sBGa0mvBtzfvFOOgrQwepKOOQ8cp6sWM6OcKDNFj2p1dsZA1OWjPg==}
cpu: [x64]
os: [win32]
'@turbo/windows-arm64@2.9.16':
resolution: {integrity: sha512-Y7SJppD0Z8wjO3Ec0ZGd9KQ4Yv0BMnA8CIowj5Vp+OEVsosXDG2weK6/t1RRLfJmc2Ozrnd6y4DOgQys+mn3WQ==}
cpu: [arm64]
os: [win32]
'@tybys/wasm-util@0.10.0': '@tybys/wasm-util@0.10.0':
resolution: {integrity: sha512-VyyPYFlOMNylG45GoAe0xDoLwWuowvf92F9kySqzYh8vmYm7D2u4iUJKa1tOUpS70Ku13ASrOkS4ScXFsTaCNQ==} resolution: {integrity: sha512-VyyPYFlOMNylG45GoAe0xDoLwWuowvf92F9kySqzYh8vmYm7D2u4iUJKa1tOUpS70Ku13ASrOkS4ScXFsTaCNQ==}
@@ -4841,10 +4871,11 @@ packages:
peerDependencies: peerDependencies:
eslint: '>=7.0.0' eslint: '>=7.0.0'
eslint-config-turbo@1.13.4: eslint-config-turbo@2.9.16:
resolution: {integrity: sha512-+we4eWdZlmlEn7LnhXHCIPX/wtujbHCS7XjQM/TN09BHNEl2fZ8id4rHfdfUKIYTSKyy8U/nNyJ0DNoZj5Q8bw==} resolution: {integrity: sha512-tIbnu6/rIZQzSFcGvocqP0LD97jirVVg235ohRfEiyjmoT8EoGgqvkvZKksmNyInjHB91er9TtDzPBtAMb3Bvw==}
peerDependencies: peerDependencies:
eslint: '>6.6.0' eslint: '>6.6.0'
turbo: '>2.0.0'
eslint-import-resolver-node@0.3.9: eslint-import-resolver-node@0.3.9:
resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
@@ -4923,10 +4954,11 @@ packages:
peerDependencies: peerDependencies:
tailwindcss: ^3.3.2 tailwindcss: ^3.3.2
eslint-plugin-turbo@1.13.4: eslint-plugin-turbo@2.9.16:
resolution: {integrity: sha512-82GfMzrewI/DJB92Bbch239GWbGx4j1zvjk1lqb06lxIlMPnVwUHVwPbAnLfyLG3JuhLv9whxGkO/q1CL18JTg==} resolution: {integrity: sha512-NOITpZwuq+c/urW2aGD7QruJ/1frWyci2SF9lX8IaFFGwu2iNSI/90XqOiiWbQe5Ur96C8rspnhDSKzh+EXzIg==}
peerDependencies: peerDependencies:
eslint: '>6.6.0' eslint: '>6.6.0'
turbo: '>2.0.0'
eslint-scope@8.4.0: eslint-scope@8.4.0:
resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==} resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==}
@@ -6492,8 +6524,8 @@ packages:
react: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc react: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc
react-dom: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc react-dom: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc
next@16.1.6: next@16.2.7:
resolution: {integrity: sha512-hkyRkcu5x/41KoqnROkfTm2pZVbKxvbZRuNvKXLRXxs3VfyO0WhY50TQS40EuKO9SW3rBj/sF3WbVwDACeMZyw==} resolution: {integrity: sha512-eMJxgjRzBaj3olkP4cBamHDXL79A8FC6u1GcsO1D1Tsx8bw/LLXUJCaoajVxtnhD3A1IJqIT8IcRJjgBIPJq4w==}
engines: {node: '>=20.9.0'} engines: {node: '>=20.9.0'}
hasBin: true hasBin: true
peerDependencies: peerDependencies:
@@ -7903,38 +7935,8 @@ packages:
engines: {node: '>=18.0.0'} engines: {node: '>=18.0.0'}
hasBin: true hasBin: true
turbo-darwin-64@1.13.4: turbo@2.9.16:
resolution: {integrity: sha512-A0eKd73R7CGnRinTiS7txkMElg+R5rKFp9HV7baDiEL4xTG1FIg/56Vm7A5RVgg8UNgG2qNnrfatJtb+dRmNdw==} resolution: {integrity: sha512-NqgRQy6j6dPYcdSdv0q1g9QsZg7SWg87RERM8otw/1AtKU2yTFVClOM7cbwKzOonZr/Ek1blTBucw64L9H0Bwg==}
cpu: [x64]
os: [darwin]
turbo-darwin-arm64@1.13.4:
resolution: {integrity: sha512-eG769Q0NF6/Vyjsr3mKCnkG/eW6dKMBZk6dxWOdrHfrg6QgfkBUk0WUUujzdtVPiUIvsh4l46vQrNVd9EOtbyA==}
cpu: [arm64]
os: [darwin]
turbo-linux-64@1.13.4:
resolution: {integrity: sha512-Bq0JphDeNw3XEi+Xb/e4xoKhs1DHN7OoLVUbTIQz+gazYjigVZvtwCvgrZI7eW9Xo1eOXM2zw2u1DGLLUfmGkQ==}
cpu: [x64]
os: [linux]
turbo-linux-arm64@1.13.4:
resolution: {integrity: sha512-BJcXw1DDiHO/okYbaNdcWN6szjXyHWx9d460v6fCHY65G8CyqGU3y2uUTPK89o8lq/b2C8NK0yZD+Vp0f9VoIg==}
cpu: [arm64]
os: [linux]
turbo-windows-64@1.13.4:
resolution: {integrity: sha512-OFFhXHOFLN7A78vD/dlVuuSSVEB3s9ZBj18Tm1hk3aW1HTWTuAw0ReN6ZNlVObZUHvGy8d57OAGGxf2bT3etQw==}
cpu: [x64]
os: [win32]
turbo-windows-arm64@1.13.4:
resolution: {integrity: sha512-u5A+VOKHswJJmJ8o8rcilBfU5U3Y1TTAfP9wX8bFh8teYF1ghP0EhtMRLjhtp6RPa+XCxHHVA2CiC3gbh5eg5g==}
cpu: [arm64]
os: [win32]
turbo@1.13.4:
resolution: {integrity: sha512-1q7+9UJABuBAHrcC4Sxp5lOqYS5mvxRrwa33wpIyM18hlOCpRD/fTJNxZ0vhbMcJmz15o9kkVm743mPn7p6jpQ==}
hasBin: true hasBin: true
tw-animate-css@1.4.0: tw-animate-css@1.4.0:
@@ -9787,7 +9789,7 @@ snapshots:
'@tybys/wasm-util': 0.10.0 '@tybys/wasm-util': 0.10.0
optional: true optional: true
'@next/env@16.1.6': {} '@next/env@16.2.7': {}
'@next/eslint-plugin-next@15.5.11': '@next/eslint-plugin-next@15.5.11':
dependencies: dependencies:
@@ -9797,28 +9799,28 @@ snapshots:
dependencies: dependencies:
fast-glob: 3.3.1 fast-glob: 3.3.1
'@next/swc-darwin-arm64@16.1.6': '@next/swc-darwin-arm64@16.2.7':
optional: true optional: true
'@next/swc-darwin-x64@16.1.6': '@next/swc-darwin-x64@16.2.7':
optional: true optional: true
'@next/swc-linux-arm64-gnu@16.1.6': '@next/swc-linux-arm64-gnu@16.2.7':
optional: true optional: true
'@next/swc-linux-arm64-musl@16.1.6': '@next/swc-linux-arm64-musl@16.2.7':
optional: true optional: true
'@next/swc-linux-x64-gnu@16.1.6': '@next/swc-linux-x64-gnu@16.2.7':
optional: true optional: true
'@next/swc-linux-x64-musl@16.1.6': '@next/swc-linux-x64-musl@16.2.7':
optional: true optional: true
'@next/swc-win32-arm64-msvc@16.1.6': '@next/swc-win32-arm64-msvc@16.2.7':
optional: true optional: true
'@next/swc-win32-x64-msvc@16.1.6': '@next/swc-win32-x64-msvc@16.2.7':
optional: true optional: true
'@noble/ciphers@1.3.0': {} '@noble/ciphers@1.3.0': {}
@@ -9906,7 +9908,7 @@ snapshots:
extract-zip: 2.0.1 extract-zip: 2.0.1
progress: 2.0.3 progress: 2.0.3
proxy-agent: 6.5.0 proxy-agent: 6.5.0
semver: 7.7.2 semver: 7.7.3
tar-fs: 3.1.0 tar-fs: 3.1.0
unbzip2-stream: 1.4.3 unbzip2-stream: 1.4.3
yargs: 17.7.2 yargs: 17.7.2
@@ -11092,6 +11094,24 @@ snapshots:
minimatch: 10.1.1 minimatch: 10.1.1
path-browserify: 1.0.1 path-browserify: 1.0.1
'@turbo/darwin-64@2.9.16':
optional: true
'@turbo/darwin-arm64@2.9.16':
optional: true
'@turbo/linux-64@2.9.16':
optional: true
'@turbo/linux-arm64@2.9.16':
optional: true
'@turbo/windows-64@2.9.16':
optional: true
'@turbo/windows-arm64@2.9.16':
optional: true
'@tybys/wasm-util@0.10.0': '@tybys/wasm-util@0.10.0':
dependencies: dependencies:
tslib: 2.8.1 tslib: 2.8.1
@@ -11416,7 +11436,7 @@ snapshots:
fast-glob: 3.3.3 fast-glob: 3.3.3
is-glob: 4.0.3 is-glob: 4.0.3
minimatch: 9.0.5 minimatch: 9.0.5
semver: 7.7.2 semver: 7.7.3
ts-api-utils: 2.1.0(typescript@5.9.2) ts-api-utils: 2.1.0(typescript@5.9.2)
typescript: 5.9.2 typescript: 5.9.2
transitivePeerDependencies: transitivePeerDependencies:
@@ -11571,9 +11591,9 @@ snapshots:
'@unrs/resolver-binding-win32-x64-msvc@1.11.1': '@unrs/resolver-binding-win32-x64-msvc@1.11.1':
optional: true optional: true
'@vercel/analytics@1.5.0(next@16.1.6(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(react@19.2.3)': '@vercel/analytics@1.5.0(next@16.2.7(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(react@19.2.3)':
optionalDependencies: optionalDependencies:
next: 16.1.6(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3) next: 16.2.7(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
react: 19.2.3 react: 19.2.3
'@vitest/expect@2.1.9': '@vitest/expect@2.1.9':
@@ -12727,10 +12747,11 @@ snapshots:
dependencies: dependencies:
eslint: 9.26.0(hono@4.11.7)(jiti@1.21.7) eslint: 9.26.0(hono@4.11.7)(jiti@1.21.7)
eslint-config-turbo@1.13.4(eslint@9.26.0(hono@4.11.7)(jiti@1.21.7)): eslint-config-turbo@2.9.16(eslint@9.26.0(hono@4.11.7)(jiti@1.21.7))(turbo@2.9.16):
dependencies: dependencies:
eslint: 9.26.0(hono@4.11.7)(jiti@1.21.7) eslint: 9.26.0(hono@4.11.7)(jiti@1.21.7)
eslint-plugin-turbo: 1.13.4(eslint@9.26.0(hono@4.11.7)(jiti@1.21.7)) eslint-plugin-turbo: 2.9.16(eslint@9.26.0(hono@4.11.7)(jiti@1.21.7))(turbo@2.9.16)
turbo: 2.9.16
eslint-import-resolver-node@0.3.9: eslint-import-resolver-node@0.3.9:
dependencies: dependencies:
@@ -12953,10 +12974,11 @@ snapshots:
postcss: 8.5.6 postcss: 8.5.6
tailwindcss: 3.4.19(tsx@4.20.3)(yaml@2.8.1) tailwindcss: 3.4.19(tsx@4.20.3)(yaml@2.8.1)
eslint-plugin-turbo@1.13.4(eslint@9.26.0(hono@4.11.7)(jiti@1.21.7)): eslint-plugin-turbo@2.9.16(eslint@9.26.0(hono@4.11.7)(jiti@1.21.7))(turbo@2.9.16):
dependencies: dependencies:
dotenv: 16.0.3 dotenv: 16.0.3
eslint: 9.26.0(hono@4.11.7)(jiti@1.21.7) eslint: 9.26.0(hono@4.11.7)(jiti@1.21.7)
turbo: 2.9.16
eslint-scope@8.4.0: eslint-scope@8.4.0:
dependencies: dependencies:
@@ -13414,7 +13436,7 @@ snapshots:
fsevents@2.3.3: fsevents@2.3.3:
optional: true optional: true
fumadocs-core@16.0.5(@types/react@19.2.2)(lucide-react@0.474.0(react@19.2.3))(next@16.1.6(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(react-dom@19.2.3(react@19.2.3))(react@19.2.3): fumadocs-core@16.0.5(@types/react@19.2.2)(lucide-react@0.474.0(react@19.2.3))(next@16.2.7(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(react-dom@19.2.3(react@19.2.3))(react@19.2.3):
dependencies: dependencies:
'@formatjs/intl-localematcher': 0.6.2 '@formatjs/intl-localematcher': 0.6.2
'@orama/orama': 3.1.16 '@orama/orama': 3.1.16
@@ -13436,7 +13458,7 @@ snapshots:
optionalDependencies: optionalDependencies:
'@types/react': 19.2.2 '@types/react': 19.2.2
lucide-react: 0.474.0(react@19.2.3) lucide-react: 0.474.0(react@19.2.3)
next: 16.1.6(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3) next: 16.2.7(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
react: 19.2.3 react: 19.2.3
react-dom: 19.2.3(react@19.2.3) react-dom: 19.2.3(react@19.2.3)
transitivePeerDependencies: transitivePeerDependencies:
@@ -13451,14 +13473,14 @@ snapshots:
unist-util-visit: 5.0.0 unist-util-visit: 5.0.0
zod: 3.25.76 zod: 3.25.76
fumadocs-mdx@13.0.2(fumadocs-core@16.0.5(@types/react@19.2.2)(lucide-react@0.474.0(react@19.2.3))(next@16.1.6(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(next@16.1.6(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(react@19.2.3)(vite@7.3.2(@types/node@20.19.10)(jiti@2.6.1)(lightningcss@1.30.2)(tsx@4.20.3)(yaml@2.8.1)): fumadocs-mdx@13.0.2(fumadocs-core@16.0.5(@types/react@19.2.2)(lucide-react@0.474.0(react@19.2.3))(next@16.2.7(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(next@16.2.7(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(react@19.2.3)(vite@7.3.2(@types/node@20.19.10)(jiti@2.6.1)(lightningcss@1.30.2)(tsx@4.20.3)(yaml@2.8.1)):
dependencies: dependencies:
'@mdx-js/mdx': 3.1.1 '@mdx-js/mdx': 3.1.1
'@standard-schema/spec': 1.1.0 '@standard-schema/spec': 1.1.0
chokidar: 4.0.3 chokidar: 4.0.3
esbuild: 0.25.11 esbuild: 0.25.11
estree-util-value-to-estree: 3.5.0 estree-util-value-to-estree: 3.5.0
fumadocs-core: 16.0.5(@types/react@19.2.2)(lucide-react@0.474.0(react@19.2.3))(next@16.1.6(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(react-dom@19.2.3(react@19.2.3))(react@19.2.3) fumadocs-core: 16.0.5(@types/react@19.2.2)(lucide-react@0.474.0(react@19.2.3))(next@16.2.7(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
js-yaml: 4.1.1 js-yaml: 4.1.1
lru-cache: 11.2.4 lru-cache: 11.2.4
mdast-util-to-markdown: 2.1.2 mdast-util-to-markdown: 2.1.2
@@ -13472,13 +13494,13 @@ snapshots:
unist-util-visit: 5.0.0 unist-util-visit: 5.0.0
zod: 4.3.6 zod: 4.3.6
optionalDependencies: optionalDependencies:
next: 16.1.6(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3) next: 16.2.7(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
react: 19.2.3 react: 19.2.3
vite: 7.3.2(@types/node@20.19.10)(jiti@2.6.1)(lightningcss@1.30.2)(tsx@4.20.3)(yaml@2.8.1) vite: 7.3.2(@types/node@20.19.10)(jiti@2.6.1)(lightningcss@1.30.2)(tsx@4.20.3)(yaml@2.8.1)
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
fumadocs-ui@16.0.5(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(lucide-react@0.474.0(react@19.2.3))(next@16.1.6(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(tailwindcss@4.1.18): fumadocs-ui@16.0.5(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(lucide-react@0.474.0(react@19.2.3))(next@16.2.7(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(tailwindcss@4.1.18):
dependencies: dependencies:
'@radix-ui/react-accordion': 1.2.12(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3) '@radix-ui/react-accordion': 1.2.12(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
'@radix-ui/react-collapsible': 1.1.12(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3) '@radix-ui/react-collapsible': 1.1.12(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
@@ -13491,7 +13513,7 @@ snapshots:
'@radix-ui/react-slot': 1.2.3(@types/react@19.2.2)(react@19.2.3) '@radix-ui/react-slot': 1.2.3(@types/react@19.2.2)(react@19.2.3)
'@radix-ui/react-tabs': 1.1.13(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3) '@radix-ui/react-tabs': 1.1.13(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
class-variance-authority: 0.7.1 class-variance-authority: 0.7.1
fumadocs-core: 16.0.5(@types/react@19.2.2)(lucide-react@0.474.0(react@19.2.3))(next@16.1.6(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(react-dom@19.2.3(react@19.2.3))(react@19.2.3) fumadocs-core: 16.0.5(@types/react@19.2.2)(lucide-react@0.474.0(react@19.2.3))(next@16.2.7(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
lodash.merge: 4.6.2 lodash.merge: 4.6.2
next-themes: 0.4.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3) next-themes: 0.4.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
postcss-selector-parser: 7.1.0 postcss-selector-parser: 7.1.0
@@ -13502,7 +13524,7 @@ snapshots:
tailwind-merge: 3.3.1 tailwind-merge: 3.3.1
optionalDependencies: optionalDependencies:
'@types/react': 19.2.2 '@types/react': 19.2.2
next: 16.1.6(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3) next: 16.2.7(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
tailwindcss: 4.1.18 tailwindcss: 4.1.18
transitivePeerDependencies: transitivePeerDependencies:
- '@mixedbread/sdk' - '@mixedbread/sdk'
@@ -14910,9 +14932,9 @@ snapshots:
react: 19.2.3 react: 19.2.3
react-dom: 19.2.3(react@19.2.3) react-dom: 19.2.3(react@19.2.3)
next@16.1.6(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3): next@16.2.7(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3):
dependencies: dependencies:
'@next/env': 16.1.6 '@next/env': 16.2.7
'@swc/helpers': 0.5.15 '@swc/helpers': 0.5.15
baseline-browser-mapping: 2.10.0 baseline-browser-mapping: 2.10.0
caniuse-lite: 1.0.30001759 caniuse-lite: 1.0.30001759
@@ -14921,14 +14943,14 @@ snapshots:
react-dom: 19.2.3(react@19.2.3) react-dom: 19.2.3(react@19.2.3)
styled-jsx: 5.1.6(@babel/core@7.28.0)(react@19.2.3) styled-jsx: 5.1.6(@babel/core@7.28.0)(react@19.2.3)
optionalDependencies: optionalDependencies:
'@next/swc-darwin-arm64': 16.1.6 '@next/swc-darwin-arm64': 16.2.7
'@next/swc-darwin-x64': 16.1.6 '@next/swc-darwin-x64': 16.2.7
'@next/swc-linux-arm64-gnu': 16.1.6 '@next/swc-linux-arm64-gnu': 16.2.7
'@next/swc-linux-arm64-musl': 16.1.6 '@next/swc-linux-arm64-musl': 16.2.7
'@next/swc-linux-x64-gnu': 16.1.6 '@next/swc-linux-x64-gnu': 16.2.7
'@next/swc-linux-x64-musl': 16.1.6 '@next/swc-linux-x64-musl': 16.2.7
'@next/swc-win32-arm64-msvc': 16.1.6 '@next/swc-win32-arm64-msvc': 16.2.7
'@next/swc-win32-x64-msvc': 16.1.6 '@next/swc-win32-x64-msvc': 16.2.7
'@opentelemetry/api': 1.9.0 '@opentelemetry/api': 1.9.0
sharp: 0.34.5 sharp: 0.34.5
transitivePeerDependencies: transitivePeerDependencies:
@@ -14970,12 +14992,12 @@ snapshots:
npm-to-yarn@3.0.1: {} npm-to-yarn@3.0.1: {}
nuqs@2.8.9(next@16.1.6(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(react@19.2.3): nuqs@2.8.9(next@16.2.7(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(react@19.2.3):
dependencies: dependencies:
'@standard-schema/spec': 1.0.0 '@standard-schema/spec': 1.0.0
react: 19.2.3 react: 19.2.3
optionalDependencies: optionalDependencies:
next: 16.1.6(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3) next: 16.2.7(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
object-assign@4.1.1: {} object-assign@4.1.1: {}
@@ -16575,32 +16597,14 @@ snapshots:
optionalDependencies: optionalDependencies:
fsevents: 2.3.3 fsevents: 2.3.3
turbo-darwin-64@1.13.4: turbo@2.9.16:
optional: true
turbo-darwin-arm64@1.13.4:
optional: true
turbo-linux-64@1.13.4:
optional: true
turbo-linux-arm64@1.13.4:
optional: true
turbo-windows-64@1.13.4:
optional: true
turbo-windows-arm64@1.13.4:
optional: true
turbo@1.13.4:
optionalDependencies: optionalDependencies:
turbo-darwin-64: 1.13.4 '@turbo/darwin-64': 2.9.16
turbo-darwin-arm64: 1.13.4 '@turbo/darwin-arm64': 2.9.16
turbo-linux-64: 1.13.4 '@turbo/linux-64': 2.9.16
turbo-linux-arm64: 1.13.4 '@turbo/linux-arm64': 2.9.16
turbo-windows-64: 1.13.4 '@turbo/windows-64': 2.9.16
turbo-windows-arm64: 1.13.4 '@turbo/windows-arm64': 2.9.16
tw-animate-css@1.4.0: {} tw-animate-css@1.4.0: {}

View File

@@ -1,7 +1,7 @@
{ {
"$schema": "https://turbo.build/schema.json", "$schema": "https://turbo.build/schema.json",
"globalEnv": ["NODE_ENV"], "globalEnv": ["NODE_ENV"],
"pipeline": { "tasks": {
"build": { "build": {
"dependsOn": ["^build"], "dependsOn": ["^build"],
"env": [ "env": [
@@ -42,7 +42,8 @@
}, },
"typecheck": {}, "typecheck": {},
"dev": { "dev": {
"cache": false "cache": false,
"persistent": true
}, },
"check": { "check": {
"cache": false "cache": false