Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .nuxtrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
setups.@nuxt/test-utils="4.0.3"
setups.@nuxt/test-utils="4.1.0"
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ pnpm dev # Dev server at http://localhost:3000/docs
pnpm build # Production build
pnpm generate # Static site generation (used for Vercel deploy)
pnpm preview # Preview production build locally
pnpm test:mermaid # Mermaid component and export tests
pnpm test # All tests
```

`pnpm dev` fails with `Invalid URL` unless `DIRECTUS_URL` is set, because the Nuxt server passes it to `createDirectus()` during render. Copy any missing environment variables from `.env.example` to `.env` before the first run. For content-only work, `DIRECTUS_URL` is the sole required value; the remaining variables emit warnings and disable search, analytics, and the assistant.
Expand Down
38 changes: 17 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@
"typecheck:scripts": "tsc -p scripts/tsconfig.json",
"index:docs": "node scripts/index-docs.ts",
"typesense:cleanup-preview": "node scripts/cleanup-typesense-preview.ts",
"test:mermaid": "vitest run tests/components/Mermaid.test.ts",
"test:search": "vitest run tests/scripts/index-docs-chunker.test.ts tests/scripts/cleanup-typesense-preview.test.ts tests/components/DocsSearchPalette.test.ts tests/shared/parseTypesenseUrl.test.ts tests/lib/typesenseAlias.test.ts tests/services/typesenseService.test.ts tests/utils/highlightHtml.test.ts"
"test": "vitest run --no-file-parallelism"
},
"dependencies": {
"@ai-sdk/vue": "3.0.185",
Expand All @@ -29,13 +28,13 @@
"@iconify-json/material-symbols": "1.2.68",
"@iconify-json/ph": "^1.2.2",
"@iconify-json/simple-icons": "1.2.79",
"@nuxt/content": "3.13.0",
"@nuxt/content": "3.15.2",
"@nuxt/fonts": "0.14.0",
"@nuxt/ui": "^4.6.1",
"@nuxtjs/color-mode": "4.0.0",
"@nuxt/ui": "^4.10.0",
"@nuxtjs/color-mode": "4.0.1",
"@nuxtjs/mcp-toolkit": "0.17.2",
"@nuxtjs/robots": "6.0.8",
"@nuxtjs/sitemap": "8.0.13",
"@nuxtjs/robots": "6.1.5",
"@nuxtjs/sitemap": "8.3.4",
"@openrouter/ai-sdk-provider": "2.9.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.218.0",
"@opentelemetry/resources": "^2.7.1",
Expand All @@ -47,48 +46,45 @@
"@vueuse/nuxt": "14.2.1",
"ai": "6.0.185",
"beautiful-mermaid": "1.1.3",
"better-sqlite3": "^12.11.1",
"h3": "1.15.11",
"nuxt": "4.4.2",
"nuxt": "4.5.2",
"nuxt-llms": "0.2.0",
"openapi3-ts": "4.5.0",
"openapi3-ts": "4.6.1",
"posthog-js": "1.371.2",
"posthog-node": "5.29.7",
"sharp": "^0.34.5",
"shiki": "4.0.2",
"shiki": "4.4.3",
"shiki-stream": "^0.1.4",
"tailwindcss": "^4.2.4",
"tailwindcss": "^4.3.3",
"typesense": "^3.0.6",
"ufo": "1.6.3",
"ufo": "1.6.4",
"unhead": "^3.1.0",
"zod": "4.4.3"
},
"devDependencies": {
"@nuxt/eslint": "1.15.2",
"@nuxt/scripts": "1.0.2",
"@nuxt/test-utils": "^4.0.3",
"@nuxt/eslint": "1.17.0",
"@nuxt/scripts": "1.3.6",
"@nuxt/test-utils": "^4.1.0",
"@types/js-yaml": "^4.0.9",
"@types/lodash-es": "4.17.12",
"@types/node": "^22",
"@vue/test-utils": "^2.4.10",
"dotenv": "^17.4.2",
"eslint": "^10.8.1",
"github-slugger": "2.0.0",
"gray-matter": "^4.0.3",
"happy-dom": "^20.9.0",
"js-yaml": "^4.1.1",
"lodash-es": "4.18.1",
"oxc-parser": "^0.146.0",
"remark": "^15.0.1",
"remark-mdc": "^3.11.0",
"remark-parse": "^11.0.0",
"typescript": "6.0.3",
"vitest": "^4.1.7",
"vue-tsc": "^3.2.7"
},
"pnpm": {
"overrides": {
"vite": "npm:rolldown-vite@latest",
"h3": "1.15.11"
}
},
"packageManager": "pnpm@10.29.2+sha512.bef43fa759d91fd2da4b319a5a0d13ef7a45bb985a3d7342058470f9d2051a3ba8674e629672654686ef9443ad13a82da2beb9eeb3e0221c87b8154fff9d74b8",
"engines": {
"node": ">=22.18"
Expand Down
Loading
Loading