Compare changes

Choose any two refs to compare.

-3
.zed/settings.json
···
{
"language_servers": ["deno", "..."],
"languages": {
-
"Markdown": {
-
"language_servers": ["harper-ls", "..."]
-
},
"Vue.js": {
"formatter": { "language_server": { "name": "biome" } },
"language_servers": ["!deno", "biome", "..."]
···
{
"language_servers": ["deno", "..."],
"languages": {
"Vue.js": {
"formatter": { "language_server": { "name": "biome" } },
"language_servers": ["!deno", "biome", "..."]
+1 -1
README.md
···
## Bluesky integration
-
Tracking PR: [#1](https://tangled.org/finxol.io/blog/pulls/1/) and [#3](https://tangled.org/@finxol.io/blog/pulls/3)
Comments on this blog are directly integrated with Bluesky, the atproto-based micro-blogging social network.
···
## Bluesky integration
+
Tracking PR: [#1](https://tangled.org/finxol.io/blog/pulls/1/)
Comments on this blog are directly integrated with Bluesky, the atproto-based micro-blogging social network.
+1 -14
app/pages/[...page].vue
···
<script setup>
-
import A from "@/components/content/ProseA.vue";
-
const route = useRoute();
const { data: page } = await useAsyncData(route.path, () =>
queryCollection("pages").path(`/pages${route.path}`).first()
···
</div>
<div v-else>
-
<article class="grid place-items-center gap-6 mt-12">
-
<h2 class="text-3xl font-bold text-gray-900 dark:text-gray-200">It seems you might be lost...</h2>
-
<p class="text-gray-500 dark:text-gray-400">Please check the URL and try again.</p>
-
-
<div></div>
-
-
<div class="flex flex-row gap-2 items-baseline">
-
<A href="/" target="_self" class="text-lg">
-
Take me home!</A>
-
<span class="text-gray-500 dark:text-gray-400 text-sm">(country roads)</span>
-
</div>
-
</article>
</div>
</template>
···
<script setup>
const route = useRoute();
const { data: page } = await useAsyncData(route.path, () =>
queryCollection("pages").path(`/pages${route.path}`).first()
···
</div>
<div v-else>
+
not found
</div>
</template>
+4 -14
app/pages/posts/[...slug].vue
···
<script setup lang="ts">
-
import A from "@/components/content/ProseA.vue";
-
const config = useRuntimeConfig().public;
const route = useRoute();
···
</article>
<div v-else class="flex items-center justify-center">
-
<article class="grid place-items-center gap-6 mt-12">
-
<h2 class="text-3xl font-bold text-gray-900 dark:text-gray-200">It seems you might be lost...</h2>
-
<p class="text-gray-500 dark:text-gray-400">Please check the URL and try again.</p>
-
-
<div></div>
-
-
<div class="flex flex-row gap-2 items-baseline">
-
<A href="/" target="_self" class="text-lg">
-
Take me home!</A>
-
<span class="text-gray-500 dark:text-gray-400 text-sm">(country roads)</span>
-
</div>
-
</article>
</div>
</div>
</template>
···
<script setup lang="ts">
const config = useRuntimeConfig().public;
const route = useRoute();
···
</article>
<div v-else class="flex items-center justify-center">
+
<div class="text-center">
+
<h1 class="text-4xl font-bold">404</h1>
+
<p class="text-neutral-500">Page not found</p>
+
</div>
</div>
</div>
</template>
-16
content/posts/0-draft-atproto-pt-3-blog-comments.md
···
-
---
-
title: "Embracing ATProto, part 3: Post Conversations"
-
description: |
-
I've finally added comments to this blog, in the form of Bluesky replies!
-
This is admittedly a small part of my atproto journey, but I still think it
-
deserves a post of its own.
-
date: 2025-12-04
-
authors:
-
- name: finxol
-
tags:
-
- atproto
-
published: false
-
bskyCid: something
-
---
-
-
Hello, world!
···
+8 -8
package.json
···
"private": true,
"name": "nuxt-app",
"type": "module",
-
"packageManager": "pnpm@10.24.0",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
···
"format": "biome format --write"
},
"dependencies": {
-
"@atcute/bluesky": "^3.2.11",
-
"@atcute/client": "^4.1.0",
-
"@atcute/lexicons": "^1.2.5",
"@iconify-json/bx": "^1.2.2",
-
"@nuxt/content": "^3.9.0",
"@nuxt/icon": "1.11.0",
"@nuxtjs/tailwindcss": "^6.14.0",
"@tailwindcss/typography": "^0.5.19",
"@unhead/vue": "^2.0.19",
-
"@vueuse/core": "^14.1.0",
-
"nuxt": "^4.2.1",
"nuxt-og-image": "5.1.12",
-
"vue": "^3.5.25",
"vue-router": "^4.6.3"
},
"devDependencies": {
···
"private": true,
"name": "nuxt-app",
"type": "module",
+
"packageManager": "pnpm@10.23.0",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
···
"format": "biome format --write"
},
"dependencies": {
+
"@atcute/bluesky": "^3.2.10",
+
"@atcute/client": "^4.0.5",
+
"@atcute/lexicons": "^1.2.4",
"@iconify-json/bx": "^1.2.2",
+
"@nuxt/content": "^3.8.0",
"@nuxt/icon": "1.11.0",
"@nuxtjs/tailwindcss": "^6.14.0",
"@tailwindcss/typography": "^0.5.19",
"@unhead/vue": "^2.0.19",
+
"@vueuse/core": "^14.0.0",
+
"nuxt": "^4.2.0",
"nuxt-og-image": "5.1.12",
+
"vue": "^3.5.22",
"vue-router": "^4.6.3"
},
"devDependencies": {
+571 -684
pnpm-lock.yaml
···
.:
dependencies:
'@atcute/bluesky':
-
specifier: ^3.2.11
-
version: 3.2.11
'@atcute/client':
-
specifier: ^4.1.0
-
version: 4.1.0
'@atcute/lexicons':
-
specifier: ^1.2.5
-
version: 1.2.5
'@iconify-json/bx':
specifier: ^1.2.2
version: 1.2.2
'@nuxt/content':
-
specifier: ^3.9.0
-
version: 3.9.0(@libsql/client@0.15.15)(better-sqlite3@12.4.1)(magicast@0.5.1)
'@nuxt/icon':
specifier: 1.11.0
-
version: 1.11.0(magicast@0.5.1)(vite@7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.25(typescript@5.9.3))
'@nuxtjs/tailwindcss':
specifier: ^6.14.0
version: 6.14.0(magicast@0.5.1)(yaml@2.8.1)
···
version: 0.5.19(tailwindcss@3.4.18(yaml@2.8.1))
'@unhead/vue':
specifier: ^2.0.19
-
version: 2.0.19(vue@3.5.25(typescript@5.9.3))
'@vueuse/core':
-
specifier: ^14.1.0
-
version: 14.1.0(vue@3.5.25(typescript@5.9.3))
nuxt:
-
specifier: ^4.2.1
-
version: 4.2.1(@biomejs/biome@1.9.4)(@libsql/client@0.15.15)(@parcel/watcher@2.5.1)(@types/node@24.10.0)(@vue/compiler-sfc@3.5.25)(better-sqlite3@12.4.1)(db0@0.3.4(@libsql/client@0.15.15)(better-sqlite3@12.4.1))(ioredis@5.8.2)(magicast@0.5.1)(rollup@4.52.5)(terser@5.44.1)(typescript@5.9.3)(vite@7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue-tsc@2.2.2(typescript@5.9.3))(yaml@2.8.1)
nuxt-og-image:
specifier: 5.1.12
-
version: 5.1.12(@unhead/vue@2.0.19(vue@3.5.25(typescript@5.9.3)))(h3@1.15.4)(magicast@0.5.1)(unstorage@1.17.2(db0@0.3.4(@libsql/client@0.15.15)(better-sqlite3@12.4.1))(ioredis@5.8.2))(vite@7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.25(typescript@5.9.3))
vue:
-
specifier: ^3.5.25
-
version: 3.5.25(typescript@5.9.3)
vue-router:
specifier: ^4.6.3
-
version: 4.6.3(vue@3.5.25(typescript@5.9.3))
devDependencies:
'@biomejs/biome':
specifier: 1.9.4
···
'@atcute/atproto@3.1.9':
resolution: {integrity: sha512-DyWwHCTdR4hY2BPNbLXgVmm7lI+fceOwWbE4LXbGvbvVtSn+ejSVFaAv01Ra3kWDha0whsOmbJL8JP0QPpf1+w==}
-
'@atcute/bluesky@3.2.11':
-
resolution: {integrity: sha512-AboS6y4t+zaxIq7E4noue10csSpIuk/Uwo30/l6GgGBDPXrd7STw8Yb5nGZQP+TdG/uC8/c2mm7UnY65SDOh6A==}
-
'@atcute/client@4.1.0':
-
resolution: {integrity: sha512-AYhSu3RSDA2VDkVGOmad320NRbUUUf5pCFWJcOzlk25YC/4kyzmMFfpzhf1jjjEcY+anNBXGGhav/kKB1evggQ==}
'@atcute/identity@1.1.3':
resolution: {integrity: sha512-oIqPoI8TwWeQxvcLmFEZLdN2XdWcaLVtlm8pNk0E72As9HNzzD9pwKPrLr3rmTLRIoULPPFmq9iFNsTeCIU9ng==}
-
'@atcute/lexicons@1.2.5':
-
resolution: {integrity: sha512-9yO9WdgxW8jZ7SbzUycH710z+JmsQ9W9n5S6i6eghYju32kkluFmgBeS47r8e8p2+Dv4DemS7o/3SUGsX9FR5Q==}
'@babel/code-frame@7.27.1':
resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
···
engines: {node: ^16.10.0 || >=18.0.0}
hasBin: true
-
'@nuxt/content@3.9.0':
-
resolution: {integrity: sha512-ayCDADViRdx/mksxCsWn6CsNgAiSY96UOQI8M9uJ/AfTFrd6E/7pfWMd5yamEziqmRzFLNXO3Q6hE90ZjnW5nQ==}
-
engines: {node: '>= 20.19.0'}
peerDependencies:
'@electric-sql/pglite': '*'
'@libsql/client': '*'
'@valibot/to-json-schema': ^1.3.0
-
better-sqlite3: ^12.5.0
sqlite3: '*'
-
valibot: ^1.2.0
peerDependenciesMeta:
'@electric-sql/pglite':
optional: true
···
peerDependencies:
vite: '>=6.0'
-
'@nuxt/devtools-kit@3.1.1':
-
resolution: {integrity: sha512-sjiKFeDCOy1SyqezSgyV4rYNfQewC64k/GhOsuJgRF+wR2qr6KTVhO6u2B+csKs74KrMrnJprQBgud7ejvOXAQ==}
-
peerDependencies:
-
vite: '>=6.0'
-
-
'@nuxt/devtools-wizard@3.1.1':
-
resolution: {integrity: sha512-6UORjapNKko2buv+3o57DQp69n5Z91TeJ75qdtNKcTvOfCTJrO78Ew0nZSgMMGrjbIJ4pFsHQEqXfgYLw3pNxg==}
hasBin: true
-
'@nuxt/devtools@3.1.1':
-
resolution: {integrity: sha512-UG8oKQqcSyzwBe1l0z24zypmwn6FLW/HQMHK/F/gscUU5LeMHzgBhLPD+cuLlDvwlGAbifexWNMsS/I7n95KlA==}
hasBin: true
peerDependencies:
-
'@vitejs/devtools': '*'
vite: '>=6.0'
-
peerDependenciesMeta:
-
'@vitejs/devtools':
-
optional: true
'@nuxt/icon@1.11.0':
resolution: {integrity: sha512-j82YbT7/Z02W/6jhiMoXHdtpSsCBfAoI3EkJ5Axi0C30ALiqvmrmfwd+CG7dftyncj51goBi1YMb6I4vNHK9nA==}
···
resolution: {integrity: sha512-1yN3LL6RDN5GjkNLPUYCbNRkaYnat6hqejPyfIBBVzrWOrpiQeNMGxQM/IcVdaSuBJXAnu0sUvTKXpXkmPhljg==}
engines: {node: '>=18.12.0'}
-
'@nuxt/kit@4.2.1':
-
resolution: {integrity: sha512-lLt8KLHyl7IClc3RqRpRikz15eCfTRlAWL9leVzPyg5N87FfKE/7EWgWvpiL/z4Tf3dQCIqQb88TmHE0JTIDvA==}
-
engines: {node: '>=18.12.0'}
-
-
'@nuxt/nitro-server@4.2.1':
-
resolution: {integrity: sha512-P6zGvKgbjwDO28A4QnRuhL0riNSxcw317nGSYfP9Z+V+GyCNVc9yCcAEuzRIvm+dv4PB6VC708my8Jq30VM9Ow==}
engines: {node: ^20.19.0 || >=22.12.0}
peerDependencies:
-
nuxt: ^4.2.1
-
'@nuxt/schema@4.2.1':
-
resolution: {integrity: sha512-kSuma7UztDVyw8eAmN3rKFoaWjNRkJE9+kqwEurpuxG7nCwFPS7sUPSGzovzaofP+xV30tl6wveBEcDRWyQvgA==}
engines: {node: ^14.18.0 || >=16.10.0}
'@nuxt/telemetry@2.6.6':
···
engines: {node: '>=18.12.0'}
hasBin: true
-
'@nuxt/vite-builder@4.2.1':
-
resolution: {integrity: sha512-SuBxCtGrHcbgrtzHwJgLe0pBXWw2T9RFQx9JQ7A3dE9RjBhzjaxtmjVHx7vtq6DCGi0d0WlW1Z1lBZUDaXy8WA==}
engines: {node: ^20.19.0 || >=22.12.0}
peerDependencies:
-
nuxt: 4.2.1
rolldown: ^1.0.0-beta.38
vue: ^3.3.4
peerDependenciesMeta:
rolldown:
optional: true
-
'@nuxtjs/mdc@0.19.1':
-
resolution: {integrity: sha512-XqhisvgaqTGo2vnF69pn2sQzRwAxgU6pmYa0+Llfz+TrOUrASr9hSxWDt25YhOYocsD40HFpeZyo7pU1TTL+jA==}
'@nuxtjs/tailwindcss@6.14.0':
resolution: {integrity: sha512-30RyDK++LrUVRgc2A85MktGWIZoRQgeQKjE4CjjD64OXNozyl+4ScHnnYgqVToMM6Ch2ZG2W4wV2J0EN6F0zkQ==}
-
'@oxc-minify/binding-android-arm64@0.96.0':
-
resolution: {integrity: sha512-lzeIEMu/v6Y+La5JSesq4hvyKtKBq84cgQpKYTYM/yGuNk2tfd5Ha31hnC+mTh48lp/5vZH+WBfjVUjjINCfug==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [android]
-
'@oxc-minify/binding-darwin-arm64@0.96.0':
-
resolution: {integrity: sha512-i0LkJAUXb4BeBFrJQbMKQPoxf8+cFEffDyLSb7NEzzKuPcH8qrVsnEItoOzeAdYam8Sr6qCHVwmBNEQzl7PWpw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [darwin]
-
'@oxc-minify/binding-darwin-x64@0.96.0':
-
resolution: {integrity: sha512-C5vI0WPR+KPIFAD5LMOJk2J8iiT+Nv65vDXmemzXEXouzfEOLYNqnW+u6NSsccpuZHHWAiLyPFkYvKFduveAUQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [darwin]
-
'@oxc-minify/binding-freebsd-x64@0.96.0':
-
resolution: {integrity: sha512-3//5DNx+xUjVBMLLk2sl6hfe4fwfENJtjVQUBXjxzwPuv8xgZUqASG4cRG3WqG5Qe8dV6SbCI4EgKQFjO4KCZA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [freebsd]
-
'@oxc-minify/binding-linux-arm-gnueabihf@0.96.0':
-
resolution: {integrity: sha512-WXChFKV7VdDk1NePDK1J31cpSvxACAVztJ7f7lJVYBTkH+iz5D0lCqPcE7a9eb7nC3xvz4yk7DM6dA9wlUQkQg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [linux]
-
'@oxc-minify/binding-linux-arm-musleabihf@0.96.0':
-
resolution: {integrity: sha512-7B18glYMX4Z/YoqgE3VRLs/2YhVLxlxNKSgrtsRpuR8xv58xca+hEhiFwZN1Rn+NSMZ29Z33LWD7iYWnqYFvRA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [linux]
-
'@oxc-minify/binding-linux-arm64-gnu@0.96.0':
-
resolution: {integrity: sha512-Yl+KcTldsEJNcaYxxonwAXZ2q3gxIzn3kXYQWgKWdaGIpNhOCWqF+KE5WLsldoh5Ro5SHtomvb8GM6cXrIBMog==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [linux]
-
'@oxc-minify/binding-linux-arm64-musl@0.96.0':
-
resolution: {integrity: sha512-rNqoFWOWaxwMmUY5fspd/h5HfvgUlA3sv9CUdA2MpnHFiyoJNovR7WU8tGh+Yn0qOAs0SNH0a05gIthHig14IA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [linux]
-
'@oxc-minify/binding-linux-riscv64-gnu@0.96.0':
-
resolution: {integrity: sha512-3paajIuzGnukHwSI3YBjYVqbd72pZd8NJxaayaNFR0AByIm8rmIT5RqFXbq8j2uhtpmNdZRXiu0em1zOmIScWA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [riscv64]
os: [linux]
-
'@oxc-minify/binding-linux-s390x-gnu@0.96.0':
-
resolution: {integrity: sha512-9ESrpkB2XG0lQ89JlsxlZa86iQCOs+jkDZLl6O+u5wb7ynUy21bpJJ1joauCOSYIOUlSy3+LbtJLiqi7oSQt5Q==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [s390x]
os: [linux]
-
'@oxc-minify/binding-linux-x64-gnu@0.96.0':
-
resolution: {integrity: sha512-UMM1jkns+p+WwwmdjC5giI3SfR2BCTga18x3C0cAu6vDVf4W37uTZeTtSIGmwatTBbgiq++Te24/DE0oCdm1iQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [linux]
-
'@oxc-minify/binding-linux-x64-musl@0.96.0':
-
resolution: {integrity: sha512-8b1naiC7MdP7xeMi7cQ5tb9W1rZAP9Qz/jBRqp1Y5EOZ1yhSGnf1QWuZ/0pCc+XiB9vEHXEY3Aki/H+86m2eOg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [linux]
-
'@oxc-minify/binding-wasm32-wasi@0.96.0':
-
resolution: {integrity: sha512-bjGDjkGzo3GWU9Vg2qiFUrfoo5QxojPNV/2RHTlbIB5FWkkV4ExVjsfyqihFiAuj0NXIZqd2SAiEq9htVd3RFw==}
engines: {node: '>=14.0.0'}
cpu: [wasm32]
-
'@oxc-minify/binding-win32-arm64-msvc@0.96.0':
-
resolution: {integrity: sha512-4L4DlHUT47qMWQuTyUghpncR3NZHWtxvd0G1KgSjVgXf+cXzFdWQCWZZtCU0yrmOoVCNUf4S04IFCJyAe+Ie7A==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [win32]
-
'@oxc-minify/binding-win32-x64-msvc@0.96.0':
-
resolution: {integrity: sha512-T2ijfqZLpV2bgGGocXV4SXTuMoouqN0asYTIm+7jVOLvT5XgDogf3ZvCmiEnSWmxl21+r5wHcs8voU2iUROXAg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [win32]
-
'@oxc-parser/binding-android-arm64@0.96.0':
-
resolution: {integrity: sha512-CofbPOiW1PG+hi8bgElJPK0ioHfw8nt4Vw9d+Q9JuMhygS6LbQyu1W6tIFZ1OPFofeFRdWus3vD29FBx+tvFOA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [android]
-
'@oxc-parser/binding-darwin-arm64@0.96.0':
-
resolution: {integrity: sha512-+HZ2L1a/1BsUXYik8XqQwT2Tl5Z3jRQ/RRQiPV9UsB2skKyd91NLDlQlMpdhjLGs9Qe7Y42unFjRg2iHjIiwnw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [darwin]
-
'@oxc-parser/binding-darwin-x64@0.96.0':
-
resolution: {integrity: sha512-GC8wH1W0XaCLyTeGsmyaMdnItiYQkqfTcn9Ygc55AWI+m11lCjQeoKDIsDCm/QwrKLCN07u3WWWsuPs5ubfXpA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [darwin]
-
'@oxc-parser/binding-freebsd-x64@0.96.0':
-
resolution: {integrity: sha512-8SeXi2FmlN15uPY5oM03cua5RXBDYmY34Uewongv6RUiAaU/kWxLvzuijpyNC+yQ1r4fC2LbWJhAsKpX5qkA6g==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [freebsd]
-
'@oxc-parser/binding-linux-arm-gnueabihf@0.96.0':
-
resolution: {integrity: sha512-UEs+Zf6T2/FwQlLgv7gfZsKmY19sl3hK57r2BQVc2eCmCmF/deeqDcWyFjzkNLgdDDucY60PoNhNGClDm605uQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [linux]
-
'@oxc-parser/binding-linux-arm-musleabihf@0.96.0':
-
resolution: {integrity: sha512-1kuWvjR2+ORJMoyxt9LSbLcDhXZnL25XOuv9VmH6NmSPvLgewzuubSlm++W03x+U7SzWFilBsdwIHtD/0mjERw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [linux]
-
'@oxc-parser/binding-linux-arm64-gnu@0.96.0':
-
resolution: {integrity: sha512-PHH4ETR1t0fymxuhpQNj3Z9t/78/zZa2Lj3Z3I0ZOd+/Ex+gtdhGoB5xYyy7lcYGAPMfZ+Gmr+dTCr1GYNZ3BA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [linux]
-
'@oxc-parser/binding-linux-arm64-musl@0.96.0':
-
resolution: {integrity: sha512-fjDPbZjkqaDSTBe0FM8nZ9zBw4B/NF/I0gH7CfvNDwIj9smISaNFypYeomkvubORpnbX9ORhvhYwg3TxQ60OGA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [linux]
-
'@oxc-parser/binding-linux-riscv64-gnu@0.96.0':
-
resolution: {integrity: sha512-59KAHd/6/LmjkdSAuJn0piKmwSavMasWNUKuYLX/UnqI5KkGIp14+LBwwaBG6KzOtIq1NrRCnmlL4XSEaNkzTg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [riscv64]
os: [linux]
-
'@oxc-parser/binding-linux-s390x-gnu@0.96.0':
-
resolution: {integrity: sha512-VtupojtgahY8XmLwpVpM3C1WQEgMD1JxpB8lzUtdSLwosWaaz1EAl+VXWNuxTTZusNuLBtmR+F0qql22ISi/9g==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [s390x]
os: [linux]
-
'@oxc-parser/binding-linux-x64-gnu@0.96.0':
-
resolution: {integrity: sha512-8XSY9aUYY+5I4I1mhSEWmYqdUrJi3J5cCAInvEVHyTnDAPkhb+tnLGVZD696TpW+lFOLrTFF2V5GMWJVafqIUA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [linux]
-
'@oxc-parser/binding-linux-x64-musl@0.96.0':
-
resolution: {integrity: sha512-IIVNtqhA0uxKkD8Y6aZinKO/sOD5O62VlduE54FnUU2rzZEszrZQLL8nMGVZhTdPaKW5M1aeLmjcdnOs6er1Jg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [linux]
-
'@oxc-parser/binding-wasm32-wasi@0.96.0':
-
resolution: {integrity: sha512-TJ/sNPbVD4u6kUwm7sDKa5iRDEB8vd7ZIMjYqFrrAo9US1RGYOSvt6Ie9sDRekUL9fZhNsykvSrpmIj6dg/C2w==}
engines: {node: '>=14.0.0'}
cpu: [wasm32]
-
'@oxc-parser/binding-win32-arm64-msvc@0.96.0':
-
resolution: {integrity: sha512-zCOhRB7MYVIHLj+2QYoTuLyaipiD8JG/ggUjfsMUaupRPpvwQNhsxINLIcTcb0AS+OsT7/OREhydjO74STqQzQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [win32]
-
'@oxc-parser/binding-win32-x64-msvc@0.96.0':
-
resolution: {integrity: sha512-J6zfx9TE0oS+TrqBUjMVMOi/d/j3HMj69Pip263pETOEPm788N0HXKPsc2X2jUfSTHzD9vmdjq0QFymbf2LhWg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [win32]
-
'@oxc-project/types@0.96.0':
-
resolution: {integrity: sha512-r/xkmoXA0xEpU6UGtn18CNVjXH6erU3KCpCDbpLmbVxBFor1U9MqN5Z2uMmCHJuXjJzlnDR+hWY+yPoLo8oHDw==}
-
'@oxc-transform/binding-android-arm64@0.96.0':
-
resolution: {integrity: sha512-wOm+ZsqFvyZ7B9RefUMsj0zcXw77Z2pXA51nbSQyPXqr+g0/pDGxriZWP8Sdpz/e4AEaKPA9DvrwyOZxu7GRDQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [android]
-
'@oxc-transform/binding-darwin-arm64@0.96.0':
-
resolution: {integrity: sha512-td1sbcvzsyuoNRiNdIRodPXRtFFwxzPpC/6/yIUtRRhKn30XQcizxupIvQQVpJWWchxkphbBDh6UN+u+2CJ8Zw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [darwin]
-
'@oxc-transform/binding-darwin-x64@0.96.0':
-
resolution: {integrity: sha512-xgqxnqhPYH2NYkgbqtnCJfhbXvxIf/pnhF/ig5UBK8PYpCEWIP/cfLpQRQ9DcQnRfuxi7RMIF6LdmB1AiS6Fkg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [darwin]
-
'@oxc-transform/binding-freebsd-x64@0.96.0':
-
resolution: {integrity: sha512-1i67OXdl/rvSkcTXqDlh6qGRXYseEmf0rl/R+/i88scZ/o3A+FzlX56sThuaPzSSv9eVgesnoYUjIBJELFc1oA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [freebsd]
-
'@oxc-transform/binding-linux-arm-gnueabihf@0.96.0':
-
resolution: {integrity: sha512-9MJBs0SWODsqyzO3eAnacXgJ/sZu1xqinjEwBzkcZ3tQI8nKhMADOzu2NzbVWDWujeoC8DESXaO08tujvUru+Q==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [linux]
-
'@oxc-transform/binding-linux-arm-musleabihf@0.96.0':
-
resolution: {integrity: sha512-BQom57I2ScccixljNYh2Wy+5oVZtF1LXiiUPxSLtDHbsanpEvV/+kzCagQpTjk1BVzSQzOxfEUWjvL7mY53pRQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [linux]
-
'@oxc-transform/binding-linux-arm64-gnu@0.96.0':
-
resolution: {integrity: sha512-kaqvUzNu8LL4aBSXqcqGVLFG13GmJEplRI2+yqzkgAItxoP/LfFMdEIErlTWLGyBwd0OLiNMHrOvkcCQRWadVg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [linux]
-
'@oxc-transform/binding-linux-arm64-musl@0.96.0':
-
resolution: {integrity: sha512-EiG/L3wEkPgTm4p906ufptyblBgtiQWTubGg/JEw82f8uLRroayr5zhbUqx40EgH037a3SfJthIyLZi7XPRFJw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [linux]
-
'@oxc-transform/binding-linux-riscv64-gnu@0.96.0':
-
resolution: {integrity: sha512-r01CY6OxKGtVeYnvH4mGmtkQMlLkXdPWWNXwo5o7fE2s/fgZPMpqh8bAuXEhuMXipZRJrjxTk1+ZQ4KCHpMn3Q==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [riscv64]
os: [linux]
-
'@oxc-transform/binding-linux-s390x-gnu@0.96.0':
-
resolution: {integrity: sha512-4djg2vYLGbVeS8YiA2K4RPPpZE4fxTGCX5g/bOMbCYyirDbmBAIop4eOAj8vOA9i1CcWbDtmp+PVJ1dSw7f3IQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [s390x]
os: [linux]
-
'@oxc-transform/binding-linux-x64-gnu@0.96.0':
-
resolution: {integrity: sha512-f6pcWVz57Y8jXa2OS7cz3aRNuks34Q3j61+3nQ4xTE8H1KbalcEvHNmM92OEddaJ8QLs9YcE0kUC6eDTbY34+A==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [linux]
-
'@oxc-transform/binding-linux-x64-musl@0.96.0':
-
resolution: {integrity: sha512-NSiRtFvR7Pbhv3mWyPMkTK38czIjcnK0+K5STo3CuzZRVbX1TM17zGdHzKBUHZu7v6IQ6/XsQ3ELa1BlEHPGWQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [linux]
-
'@oxc-transform/binding-wasm32-wasi@0.96.0':
-
resolution: {integrity: sha512-A91ARLiuZHGN4hBds9s7bW3czUuLuHLsV+cz44iF9j8e1zX9m2hNGXf/acQRbg/zcFUXmjz5nmk8EkZyob876w==}
engines: {node: '>=14.0.0'}
cpu: [wasm32]
-
'@oxc-transform/binding-win32-arm64-msvc@0.96.0':
-
resolution: {integrity: sha512-IedJf40djKgDObomhYjdRAlmSYUEdfqX3A3M9KfUltl9AghTBBLkTzUMA7O09oo71vYf5TEhbFM7+Vn5vqw7AQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [win32]
-
'@oxc-transform/binding-win32-x64-msvc@0.96.0':
-
resolution: {integrity: sha512-0fI0P0W7bSO/GCP/N5dkmtB9vBqCA4ggo1WmXTnxNJVmFFOtcA1vYm1I9jl8fxo+sucW2WnlpnI4fjKdo3JKxA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [win32]
···
'@sec-ant/readable-stream@0.4.1':
resolution: {integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==}
-
'@shikijs/core@3.19.0':
-
resolution: {integrity: sha512-L7SrRibU7ZoYi1/TrZsJOFAnnHyLTE1SwHG1yNWjZIVCqjOEmCSuK2ZO9thnRbJG6TOkPp+Z963JmpCNw5nzvA==}
-
'@shikijs/engine-javascript@3.19.0':
-
resolution: {integrity: sha512-ZfWJNm2VMhKkQIKT9qXbs76RRcT0SF/CAvEz0+RkpUDAoDaCx0uFdCGzSRiD9gSlhm6AHkjdieOBJMaO2eC1rQ==}
-
'@shikijs/engine-oniguruma@3.19.0':
-
resolution: {integrity: sha512-1hRxtYIJfJSZeM5ivbUXv9hcJP3PWRo5prG/V2sWwiubUKTa+7P62d2qxCW8jiVFX4pgRHhnHNp+qeR7Xl+6kg==}
-
'@shikijs/langs@3.19.0':
-
resolution: {integrity: sha512-dBMFzzg1QiXqCVQ5ONc0z2ebyoi5BKz+MtfByLm0o5/nbUu3Iz8uaTCa5uzGiscQKm7lVShfZHU1+OG3t5hgwg==}
-
'@shikijs/themes@3.19.0':
-
resolution: {integrity: sha512-H36qw+oh91Y0s6OlFfdSuQ0Ld+5CgB/VE6gNPK+Hk4VRbVG/XQgkjnt4KzfnnoO6tZPtKJKHPjwebOCfjd6F8A==}
-
'@shikijs/transformers@3.19.0':
-
resolution: {integrity: sha512-e6vwrsyw+wx4OkcrDbL+FVCxwx8jgKiCoXzakVur++mIWVcgpzIi8vxf4/b4dVTYrV/nUx5RjinMf4tq8YV8Fw==}
-
'@shikijs/types@3.19.0':
-
resolution: {integrity: sha512-Z2hdeEQlzuntf/BZpFG8a+Fsw9UVXdML7w0o3TgSXV3yNESGon+bs9ITkQb3Ki7zxoXOOu5oJWqZ2uto06V9iQ==}
'@shikijs/vscode-textmate@10.0.2':
resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==}
···
'@vue/compiler-core@3.5.22':
resolution: {integrity: sha512-jQ0pFPmZwTEiRNSb+i9Ow/I/cHv2tXYqsnHKKyCQ08irI2kdF5qmYedmF8si8mA7zepUFmJ2hqzS8CQmNOWOkQ==}
-
'@vue/compiler-core@3.5.25':
-
resolution: {integrity: sha512-vay5/oQJdsNHmliWoZfHPoVZZRmnSWhug0BYT34njkYTPqClh3DNWLkZNJBVSjsNMrg0CCrBfoKkjZQPM/QVUw==}
-
'@vue/compiler-dom@3.5.22':
resolution: {integrity: sha512-W8RknzUM1BLkypvdz10OVsGxnMAuSIZs9Wdx1vzA3mL5fNMN15rhrSCLiTm6blWeACwUwizzPVqGJgOGBEN/hA==}
-
'@vue/compiler-dom@3.5.25':
-
resolution: {integrity: sha512-4We0OAcMZsKgYoGlMjzYvaoErltdFI2/25wqanuTu+S4gismOTRTBPi4IASOjxWdzIwrYSjnqONfKvuqkXzE2Q==}
-
'@vue/compiler-sfc@3.5.22':
resolution: {integrity: sha512-tbTR1zKGce4Lj+JLzFXDq36K4vcSZbJ1RBu8FxcDv1IGRz//Dh2EBqksyGVypz3kXpshIfWKGOCcqpSbyGWRJQ==}
-
'@vue/compiler-sfc@3.5.25':
-
resolution: {integrity: sha512-PUgKp2rn8fFsI++lF2sO7gwO2d9Yj57Utr5yEsDf3GNaQcowCLKL7sf+LvVFvtJDXUp/03+dC6f2+LCv5aK1ag==}
-
'@vue/compiler-ssr@3.5.22':
resolution: {integrity: sha512-GdgyLvg4R+7T8Nk2Mlighx7XGxq/fJf9jaVofc3IL0EPesTE86cP/8DD1lT3h1JeZr2ySBvyqKQJgbS54IX1Ww==}
-
-
'@vue/compiler-ssr@3.5.25':
-
resolution: {integrity: sha512-ritPSKLBcParnsKYi+GNtbdbrIE1mtuFEJ4U1sWeuOMlIziK5GtOL85t5RhsNy4uWIXPgk+OUdpnXiTdzn8o3A==}
'@vue/compiler-vue2@2.7.16':
resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==}
···
'@vue/devtools-api@6.6.4':
resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
-
'@vue/devtools-core@8.0.5':
-
resolution: {integrity: sha512-dpCw8nl0GDBuiL9SaY0mtDxoGIEmU38w+TQiYEPOLhW03VDC0lfNMYXS/qhl4I0YlysGp04NLY4UNn6xgD0VIQ==}
peerDependencies:
vue: ^3.0.0
-
'@vue/devtools-kit@8.0.5':
-
resolution: {integrity: sha512-q2VV6x1U3KJMTQPUlRMyWEKVbcHuxhqJdSr6Jtjz5uAThAIrfJ6WVZdGZm5cuO63ZnSUz0RCsVwiUUb0mDV0Yg==}
-
'@vue/devtools-shared@8.0.5':
-
resolution: {integrity: sha512-bRLn6/spxpmgLk+iwOrR29KrYnJjG9DGpHGkDFG82UM21ZpJ39ztUT9OXX3g+usW7/b2z+h46I9ZiYyB07XMXg==}
'@vue/language-core@2.2.2':
resolution: {integrity: sha512-QotO41kurE5PLf3vrNgGTk3QswO2PdUFjBwNiOi7zMmGhwb25PSTh9hD1MCgKC06AVv+8sZQvlL3Do4TTVHSiQ==}
···
typescript:
optional: true
-
'@vue/language-core@3.1.5':
-
resolution: {integrity: sha512-FMcqyzWN+sYBeqRMWPGT2QY0mUasZMVIuHvmb5NT3eeqPrbHBYtCP8JWEUCDCgM+Zr62uuWY/qoeBrPrzfa78w==}
-
peerDependencies:
-
typescript: '*'
-
peerDependenciesMeta:
-
typescript:
-
optional: true
-
-
'@vue/reactivity@3.5.25':
-
resolution: {integrity: sha512-5xfAypCQepv4Jog1U4zn8cZIcbKKFka3AgWHEFQeK65OW+Ys4XybP6z2kKgws4YB43KGpqp5D/K3go2UPPunLA==}
-
'@vue/runtime-core@3.5.25':
-
resolution: {integrity: sha512-Z751v203YWwYzy460bzsYQISDfPjHTl+6Zzwo/a3CsAf+0ccEjQ8c+0CdX1WsumRTHeywvyUFtW6KvNukT/smA==}
-
'@vue/runtime-dom@3.5.25':
-
resolution: {integrity: sha512-a4WrkYFbb19i9pjkz38zJBg8wa/rboNERq3+hRRb0dHiJh13c+6kAbgqCPfMaJ2gg4weWD3APZswASOfmKwamA==}
-
'@vue/server-renderer@3.5.25':
-
resolution: {integrity: sha512-UJaXR54vMG61i8XNIzTSf2Q7MOqZHpp8+x3XLGtE3+fL+nQd+k7O5+X3D/uWrnQXOdMw5VPih+Uremcw+u1woQ==}
peerDependencies:
-
vue: 3.5.25
'@vue/shared@3.5.22':
resolution: {integrity: sha512-F4yc6palwq3TT0u+FYf0Ns4Tfl9GRFURDN2gWG7L1ecIaS/4fCIuFOjMTnCyjsu/OK6vaDKLCrGAa+KvvH+h4w==}
-
'@vue/shared@3.5.25':
-
resolution: {integrity: sha512-AbOPdQQnAnzs58H2FrrDxYj/TJfmeS2jdfEEhgiKINy+bnOANmVizIEgq1r+C5zsbs6l1CCQxtcj71rwNQ4jWg==}
-
-
'@vueuse/core@14.1.0':
-
resolution: {integrity: sha512-rgBinKs07hAYyPF834mDTigH7BtPqvZ3Pryuzt1SD/lg5wEcWqvwzXXYGEDb2/cP0Sj5zSvHl3WkmMELr5kfWw==}
peerDependencies:
vue: ^3.5.0
-
'@vueuse/metadata@14.1.0':
-
resolution: {integrity: sha512-7hK4g015rWn2PhKcZ99NyT+ZD9sbwm7SGvp7k+k+rKGWnLjS/oQozoIZzWfCewSUeBmnJkIb+CNr7Zc/EyRnnA==}
-
'@vueuse/shared@14.1.0':
-
resolution: {integrity: sha512-EcKxtYvn6gx1F8z9J5/rsg3+lTQnvOruQd8fUecW99DCK04BkWD7z5KQ/wTAx+DazyoEE9dJt/zV8OIEQbM6kw==}
peerDependencies:
vue: ^3.5.0
···
bindings@1.5.0:
resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==}
-
birpc@2.9.0:
-
resolution: {integrity: sha512-KrayHS5pBi69Xi9JmvoqrIgYGDkD6mcSe/i6YKi3w5kekCLzrX4+nawcXqrj2tIp50Kw/mT/s3p+GVK0A0sKxw==}
bl@4.1.0:
resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
···
magicast:
optional: true
-
c12@3.3.2:
-
resolution: {integrity: sha512-QkikB2X5voO1okL3QsES0N690Sn/K9WokXqUsDQsWy5SnYb+psYQFGA10iy1bZHj3fjISKsI67Q90gruvWWM3A==}
-
peerDependencies:
-
magicast: '*'
-
peerDependenciesMeta:
-
magicast:
-
optional: true
-
cac@6.7.14:
resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
engines: {node: '>=8'}
···
resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
engines: {node: '>= 14.16.0'}
-
chokidar@5.0.0:
-
resolution: {integrity: sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==}
-
engines: {node: '>= 20.19.0'}
-
chownr@1.1.4:
resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
···
exsolve@1.0.7:
resolution: {integrity: sha512-VO5fQUzZtI6C+vx4w/4BWJpg3s/5l+6pRQEHzFRM8WFi4XffSP1Z+4qi7GbjWbvRQEbdIco5mIMq+zX4rPuLrw==}
-
exsolve@1.0.8:
-
resolution: {integrity: sha512-LmDxfWXwcTArk8fUEnOfSZpHOJ6zOMUJKOtFLFqJLoKJetuQG874Uc7/Kki7zFLzYybmZhp1M7+98pfMqeX8yA==}
-
extend@3.0.2:
resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
···
engines: {node: '>=16.0.0'}
hasBin: true
-
json-schema-to-zod@2.7.0:
-
resolution: {integrity: sha512-eW59l3NQ6sa3HcB+Ahf7pP6iGU7MY4we5JsPqXQ2ZcIPF8QxSg/lkY8lN0Js/AG0NjMbk+nZGUfHlceiHF+bwQ==}
hasBin: true
json5@2.2.3:
···
knitwork@1.2.0:
resolution: {integrity: sha512-xYSH7AvuQ6nXkq42x0v5S8/Iry+cfulBz/DJQzhIyESdLD7425jXsPy4vn5cCXU+HhRN2kVw51Vd1K6/By4BQg==}
-
knitwork@1.3.0:
-
resolution: {integrity: sha512-4LqMNoONzR43B1W0ek0fhXMsDNW/zxa1NdFAVMY+k28pgZLovR4G3PB5MrpTxCy1QaZCqNoiaKPr5w5qZHfSNw==}
-
koa-compose@4.1.0:
resolution: {integrity: sha512-8ODW8TrDuMYvXRwra/Kh7/rJo9BtOfPc6qO8eAfC80CnCvSjSl0bkRM24X6/XBBEyj0v1nRUQ1LyOy3dbqOWXw==}
···
magic-string@0.30.21:
resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
magicast@0.5.1:
resolution: {integrity: sha512-xrHS24IxaLrvuo613F719wvOIv9xPHFWQHuvGUBmPnCA/3MQxKI3b+r7n1jAoDHmsbC5bRhTZYR77invLAxVnw==}
···
mdast-util-phrasing@4.1.0:
resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==}
-
mdast-util-to-hast@13.2.1:
-
resolution: {integrity: sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==}
mdast-util-to-markdown@2.1.2:
resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==}
···
mocked-exports@0.1.1:
resolution: {integrity: sha512-aF7yRQr/Q0O2/4pIXm6PZ5G+jAd7QS4Yu8m+WEeEHGnbo+7mE36CbLSDQiXYV8bVL3NfmdeqPJct0tUlnjVSnA==}
-
modern-tar@0.7.2:
-
resolution: {integrity: sha512-TGG1ZRk1TAQ3neuZwahAHke3rKsSlro+ooMYtjh9sl2gGPVMLMuWiHgwC7im9T5bSM566RSo2Dko56ETgEvZcA==}
engines: {node: '>=18.0.0'}
mrmime@2.0.1:
···
nth-check@2.1.1:
resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
-
nuxt-component-meta@0.15.0:
-
resolution: {integrity: sha512-IW8xzHQdpmfgAyDYw4NPVQLnHAWrNltgJUD3Bww5Miogy8dd/dDdEKexCzFvI+gSa/uAe52zDRcIx9wwavmAmg==}
hasBin: true
nuxt-og-image@5.1.12:
···
peerDependencies:
h3: ^1
-
nuxt@4.2.1:
-
resolution: {integrity: sha512-OE5ONizgwkKhjTGlUYB3ksE+2q2/I30QIYFl3N1yYz1r2rwhunGA3puUvqkzXwgLQ3AdsNcigPDmyQsqjbSdoQ==}
engines: {node: ^20.19.0 || >=22.12.0}
hasBin: true
peerDependencies:
···
resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
engines: {node: '>= 6'}
-
obug@2.1.1:
-
resolution: {integrity: sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==}
-
ofetch@1.5.1:
resolution: {integrity: sha512-2W4oUZlVaqAPAil6FUg/difl6YhqhUR7x2eZY4bQCko22UXg3hptq9KLQdqFClV+Wu85UX7hNtdGTngi/1BxcA==}
···
oniguruma-parser@0.12.1:
resolution: {integrity: sha512-8Unqkvk1RYc6yq2WBYRj4hdnsAxVze8i7iPfQr8e4uSP3tRv0rpZcbGUDvxfQQcdwHt/e9PrMvGCsa8OqG9X3w==}
-
oniguruma-to-es@4.3.4:
-
resolution: {integrity: sha512-3VhUGN3w2eYxnTzHn+ikMI+fp/96KoRSVK9/kMTcFqj1NRDh2IhQCKvYxDnWePKRXY/AqH+Fuiyb7VHSzBjHfA==}
only@0.0.2:
resolution: {integrity: sha512-Fvw+Jemq5fjjyWz6CpKx6w9s7xxqo3+JCyM0WXWeCSOboZ8ABkyvP8ID4CZuChA/wxSx+XSJmdOm8rGVyJ1hdQ==}
···
resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==}
engines: {node: '>=12'}
-
oxc-minify@0.96.0:
-
resolution: {integrity: sha512-dXeeGrfPJJ4rMdw+NrqiCRtbzVX2ogq//R0Xns08zql2HjV3Zi2SBJ65saqfDaJzd2bcHqvGWH+M44EQCHPAcA==}
engines: {node: ^20.19.0 || >=22.12.0}
-
oxc-parser@0.96.0:
-
resolution: {integrity: sha512-ucs6niJ5mZlYP3oTl4AK2eD2m7WLoSaljswnSFVYWrXzme5PtM97S7Ve1Tjx+/TKjanmEZuSt1f1qYi6SZvntw==}
engines: {node: ^20.19.0 || >=22.12.0}
-
oxc-transform@0.96.0:
-
resolution: {integrity: sha512-dQPNIF+gHpSkmC0+Vg9IktNyhcn28Y8R3eTLyzn52UNymkasLicl3sFAtz7oEVuFmCpgGjaUTKkwk+jW2cHpDQ==}
engines: {node: ^20.19.0 || >=22.12.0}
oxc-walker@0.5.2:
···
pathe@2.0.3:
resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
perfect-debounce@2.0.0:
resolution: {integrity: sha512-fkEH/OBiKrqqI/yIgjR92lMfs2K8105zt/VT6+7eTjNwisrsh47CeIED9z58zI7DfKdH3uHAn25ziRZn3kgAow==}
···
readdirp@4.1.2:
resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
engines: {node: '>= 14.18.0'}
-
-
readdirp@5.0.0:
-
resolution: {integrity: sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==}
-
engines: {node: '>= 20.19.0'}
redis-errors@1.2.0:
resolution: {integrity: sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w==}
···
remark-gfm@4.0.1:
resolution: {integrity: sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==}
-
remark-mdc@3.9.0:
-
resolution: {integrity: sha512-hRbVWknG8V6HCfWz+YHUQaNey6AchYIi0jheYTUk9Y2XcMrc7ON5uVQOIhnBVQg2zKFm6bIlx4JoETUMM0Pq3g==}
remark-parse@11.0.0:
resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==}
···
resolution: {integrity: sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==}
engines: {node: '>= 0.4'}
-
shiki@3.19.0:
-
resolution: {integrity: sha512-77VJr3OR/VUZzPiStyRhADmO2jApMM0V2b1qf0RpfWya8Zr1PeZev5AEpPGAAKWdiYUtcZGBE4F5QvJml1PvWA==}
signal-exit@4.1.0:
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
···
resolution: {integrity: sha512-6NCPkv1ClwH+/BGE9QeoTIl09nuiAt0gS28nn1PvYXsGKRwM2TCbFA2QiilmehPDTXIe684k4rZI1yl3A1PCUw==}
engines: {node: '>=18.12.0'}
-
unplugin@2.3.11:
-
resolution: {integrity: sha512-5uKD0nqiYVzlmCRs01Fhs2BdkEgBS3SAVP6ndrBsuK42iC2+JHyxM05Rm9G8+5mkmRtzMZGY8Ct5+mliZxU/Ww==}
-
engines: {node: '>=18.12.0'}
-
unstorage@1.17.2:
resolution: {integrity: sha512-cKEsD6iBWJgOMJ6vW1ID/SYuqNf8oN4yqRk8OYqaVQ3nnkJXOT1PSpaMh2QfzLs78UN5kSNRD2c/mgjT8tX7+w==}
peerDependencies:
···
unwasm@0.3.11:
resolution: {integrity: sha512-Vhp5gb1tusSQw5of/g3Q697srYgMXvwMgXMjcG4ZNga02fDX9coxJ9fAb0Ci38hM2Hv/U1FXRPGgjP2BYqhNoQ==}
-
unwasm@0.5.2:
-
resolution: {integrity: sha512-uWhB7IXQjMC4530uVAeu0lzvYK6P3qHVnmmdQniBi48YybOLN/DqEzcP9BRGk1YTDG3rRWRD8me55nIYoTHyMg==}
update-browserslist-db@1.1.4:
resolution: {integrity: sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==}
···
peerDependencies:
vite: ^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0 || ^7.0.0-0
-
vite-node@5.2.0:
-
resolution: {integrity: sha512-7UT39YxUukIA97zWPXUGb0SGSiLexEGlavMwU3HDE6+d/HJhKLjLqu4eX2qv6SQiocdhKLRcusroDwXHQ6CnRQ==}
-
engines: {node: ^20.19.0 || >=22.12.0}
hasBin: true
vite-plugin-checker@0.11.0:
···
'@nuxt/kit':
optional: true
-
vite-plugin-vue-tracer@1.1.3:
-
resolution: {integrity: sha512-fM7hfHELZvbPnSn8EKZwHfzxm5EfYFQIclz8rwcNXfodNbRkwNvh0AGMtaBfMxQ9HC5KVa3KitwHnmE4ezDemw==}
peerDependencies:
vite: ^6.0.0 || ^7.0.0
vue: ^3.5.0
-
vite@7.2.6:
-
resolution: {integrity: sha512-tI2l/nFHC5rLh7+5+o7QjKjSR04ivXDF4jcgV0f/bTQ+OJiITy5S6gaynVsEM+7RqzufMnVbIon6Sr5x1SDYaQ==}
engines: {node: ^20.19.0 || >=22.12.0}
hasBin: true
peerDependencies:
···
vue-bundle-renderer@2.2.0:
resolution: {integrity: sha512-sz/0WEdYH1KfaOm0XaBmRZOWgYTEvUDt6yPYaUzl4E52qzgWLlknaPPTTZmp6benaPTlQAI/hN1x3tAzZygycg==}
-
vue-component-meta@3.1.5:
-
resolution: {integrity: sha512-HnCKlui/A37aBDypXpXID1IRkh+YJedTZ5S9aWjj4cUdIs0u9NBmApsv+p6fU7rX2FYqdscIuGpiJreEVN2Flg==}
peerDependencies:
typescript: '*'
-
vue-component-type-helpers@3.1.5:
-
resolution: {integrity: sha512-7V3yJuNWW7/1jxCcI1CswnpDsvs02Qcx/N43LkV+ZqhLj2PKj50slUflHAroNkN4UWiYfzMUUUXiNuv9khmSpQ==}
vue-devtools-stub@0.1.0:
resolution: {integrity: sha512-RutnB7X8c5hjq39NceArgXg28WZtZpGc3+J16ljMiYnFhKvd8hITxSWQSQ5bvldxMDU6gG5mkxl1MTQLXckVSQ==}
···
peerDependencies:
typescript: '>=5.0.0'
-
vue@3.5.25:
-
resolution: {integrity: sha512-YLVdgv2K13WJ6n+kD5owehKtEXwdwXuj2TTyJMsO7pSeKw2bfRNZGjhB7YzrpbMYj5b5QsUebHpOqR3R3ziy/g==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
···
resolution: {integrity: sha512-zK7YHHz4ZXpW89AHXUPbQVGKI7uvkd3hzusTdotCg1UxyaVtg0zFJSTfW/Dq5f7OBBVnq6cZIaC8Ti4hb6dtCA==}
engines: {node: '>= 14'}
-
zod-to-json-schema@3.25.0:
-
resolution: {integrity: sha512-HvWtU2UG41LALjajJrML6uQejQhNJx+JBO9IflpSja4R03iNWfKXrj6W2h7ljuLyc1nKS+9yDyL/9tD1U/yBnQ==}
peerDependencies:
-
zod: ^3.25 || ^4
zod@3.25.76:
resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==}
···
'@atcute/atproto@3.1.9':
dependencies:
-
'@atcute/lexicons': 1.2.5
-
'@atcute/bluesky@3.2.11':
dependencies:
'@atcute/atproto': 3.1.9
-
'@atcute/lexicons': 1.2.5
-
'@atcute/client@4.1.0':
dependencies:
'@atcute/identity': 1.1.3
-
'@atcute/lexicons': 1.2.5
'@atcute/identity@1.1.3':
dependencies:
-
'@atcute/lexicons': 1.2.5
'@badrap/valita': 0.4.6
-
'@atcute/lexicons@1.2.5':
dependencies:
'@standard-schema/spec': 1.0.0
esm-env: 1.2.2
···
'@dxup/nuxt@0.2.1(magicast@0.5.1)':
dependencies:
'@dxup/unimport': 0.1.1
-
'@nuxt/kit': 4.2.1(magicast@0.5.1)
chokidar: 4.0.3
pathe: 2.0.3
tinyglobby: 0.2.15
···
transitivePeerDependencies:
- supports-color
-
'@iconify/vue@4.3.0(vue@3.5.25(typescript@5.9.3))':
dependencies:
'@iconify/types': 2.0.0
-
vue: 3.5.25(typescript@5.9.3)
'@ioredis/commands@1.4.0': {}
···
transitivePeerDependencies:
- magicast
-
'@nuxt/content@3.9.0(@libsql/client@0.15.15)(better-sqlite3@12.4.1)(magicast@0.5.1)':
dependencies:
-
'@nuxt/kit': 4.2.1(magicast@0.5.1)
-
'@nuxtjs/mdc': 0.19.1(magicast@0.5.1)
-
'@shikijs/langs': 3.19.0
'@sqlite.org/sqlite-wasm': 3.50.4-build1
'@standard-schema/spec': 1.0.0
'@webcontainer/env': 1.1.1
-
c12: 3.3.2(magicast@0.5.1)
-
chokidar: 5.0.0
consola: 3.4.2
db0: 0.3.4(@libsql/client@0.15.15)(better-sqlite3@12.4.1)
defu: 6.1.4
···
hookable: 5.5.3
jiti: 2.6.1
json-schema-to-typescript: 15.0.4
-
knitwork: 1.3.0
-
mdast-util-to-hast: 13.2.1
mdast-util-to-string: 4.0.0
micromark: 4.0.2
micromark-util-character: 2.1.1
···
micromatch: 4.0.8
minimark: 0.2.0
minimatch: 10.1.1
-
modern-tar: 0.7.2
-
nuxt-component-meta: 0.15.0(magicast@0.5.1)
nypm: 0.6.2
ohash: 2.0.11
pathe: 2.0.3
pkg-types: 2.3.0
-
remark-mdc: 3.9.0
scule: 1.3.0
-
shiki: 3.19.0
slugify: 1.6.6
socket.io-client: 4.8.1
std-env: 3.10.0
···
unified: 11.0.5
unist-util-stringify-position: 4.0.0
unist-util-visit: 5.0.0
-
unplugin: 2.3.11
zod: 3.25.76
-
zod-to-json-schema: 3.25.0(zod@3.25.76)
optionalDependencies:
'@libsql/client': 0.15.15
better-sqlite3: 12.4.1
···
'@nuxt/devalue@2.0.2': {}
-
'@nuxt/devtools-kit@2.7.0(magicast@0.5.1)(vite@7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))':
dependencies:
-
'@nuxt/kit': 3.20.0(magicast@0.5.1)
execa: 8.0.1
-
vite: 7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1)
transitivePeerDependencies:
- magicast
-
'@nuxt/devtools-kit@3.1.1(magicast@0.5.1)(vite@7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))':
dependencies:
-
'@nuxt/kit': 4.2.1(magicast@0.5.1)
execa: 8.0.1
-
vite: 7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1)
transitivePeerDependencies:
- magicast
-
'@nuxt/devtools-wizard@3.1.1':
dependencies:
consola: 3.4.2
diff: 8.0.2
execa: 8.0.1
-
magicast: 0.5.1
pathe: 2.0.3
pkg-types: 2.3.0
prompts: 2.4.2
semver: 7.7.3
-
'@nuxt/devtools@3.1.1(vite@7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.25(typescript@5.9.3))':
dependencies:
-
'@nuxt/devtools-kit': 3.1.1(magicast@0.5.1)(vite@7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))
-
'@nuxt/devtools-wizard': 3.1.1
-
'@nuxt/kit': 4.2.1(magicast@0.5.1)
-
'@vue/devtools-core': 8.0.5(vite@7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.25(typescript@5.9.3))
-
'@vue/devtools-kit': 8.0.5
-
birpc: 2.9.0
consola: 3.4.2
destr: 2.0.5
error-stack-parser-es: 1.0.5
···
is-installed-globally: 1.0.0
launch-editor: 2.12.0
local-pkg: 1.1.2
-
magicast: 0.5.1
nypm: 0.6.2
ohash: 2.0.11
pathe: 2.0.3
-
perfect-debounce: 2.0.0
pkg-types: 2.3.0
semver: 7.7.3
simple-git: 3.30.0
sirv: 3.0.2
structured-clone-es: 1.0.0
tinyglobby: 0.2.15
-
vite: 7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1)
-
vite-plugin-inspect: 11.3.3(@nuxt/kit@4.2.1(magicast@0.5.1))(vite@7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))
-
vite-plugin-vue-tracer: 1.1.3(vite@7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.25(typescript@5.9.3))
which: 5.0.0
ws: 8.18.3
transitivePeerDependencies:
···
- utf-8-validate
- vue
-
'@nuxt/icon@1.11.0(magicast@0.5.1)(vite@7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.25(typescript@5.9.3))':
dependencies:
'@iconify/collections': 1.0.614
'@iconify/types': 2.0.0
'@iconify/utils': 2.3.0
-
'@iconify/vue': 4.3.0(vue@3.5.25(typescript@5.9.3))
-
'@nuxt/devtools-kit': 2.7.0(magicast@0.5.1)(vite@7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))
'@nuxt/kit': 3.20.0(magicast@0.5.1)
consola: 3.4.2
local-pkg: 1.1.2
···
- vite
- vue
'@nuxt/kit@3.20.0(magicast@0.5.1)':
dependencies:
c12: 3.3.1(magicast@0.5.1)
···
transitivePeerDependencies:
- magicast
-
'@nuxt/kit@4.2.1(magicast@0.5.1)':
-
dependencies:
-
c12: 3.3.2(magicast@0.5.1)
-
consola: 3.4.2
-
defu: 6.1.4
-
destr: 2.0.5
-
errx: 0.1.0
-
exsolve: 1.0.7
-
ignore: 7.0.5
-
jiti: 2.6.1
-
klona: 2.0.6
-
mlly: 1.8.0
-
ohash: 2.0.11
-
pathe: 2.0.3
-
pkg-types: 2.3.0
-
rc9: 2.1.2
-
scule: 1.3.0
-
semver: 7.7.3
-
tinyglobby: 0.2.15
-
ufo: 1.6.1
-
unctx: 2.4.1
-
untyped: 2.0.0
-
transitivePeerDependencies:
-
- magicast
-
-
'@nuxt/nitro-server@4.2.1(@libsql/client@0.15.15)(better-sqlite3@12.4.1)(db0@0.3.4(@libsql/client@0.15.15)(better-sqlite3@12.4.1))(ioredis@5.8.2)(magicast@0.5.1)(nuxt@4.2.1(@biomejs/biome@1.9.4)(@libsql/client@0.15.15)(@parcel/watcher@2.5.1)(@types/node@24.10.0)(@vue/compiler-sfc@3.5.25)(better-sqlite3@12.4.1)(db0@0.3.4(@libsql/client@0.15.15)(better-sqlite3@12.4.1))(ioredis@5.8.2)(magicast@0.5.1)(rollup@4.52.5)(terser@5.44.1)(typescript@5.9.3)(vite@7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue-tsc@2.2.2(typescript@5.9.3))(yaml@2.8.1))(typescript@5.9.3)':
dependencies:
'@nuxt/devalue': 2.0.2
-
'@nuxt/kit': 4.2.1(magicast@0.5.1)
-
'@unhead/vue': 2.0.19(vue@3.5.25(typescript@5.9.3))
-
'@vue/shared': 3.5.25
consola: 3.4.2
defu: 6.1.4
destr: 2.0.5
···
klona: 2.0.6
mocked-exports: 0.1.1
nitropack: 2.12.9(@libsql/client@0.15.15)(better-sqlite3@12.4.1)
-
nuxt: 4.2.1(@biomejs/biome@1.9.4)(@libsql/client@0.15.15)(@parcel/watcher@2.5.1)(@types/node@24.10.0)(@vue/compiler-sfc@3.5.25)(better-sqlite3@12.4.1)(db0@0.3.4(@libsql/client@0.15.15)(better-sqlite3@12.4.1))(ioredis@5.8.2)(magicast@0.5.1)(rollup@4.52.5)(terser@5.44.1)(typescript@5.9.3)(vite@7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue-tsc@2.2.2(typescript@5.9.3))(yaml@2.8.1)
pathe: 2.0.3
pkg-types: 2.3.0
radix3: 1.1.2
···
ufo: 1.6.1
unctx: 2.4.1
unstorage: 1.17.2(db0@0.3.4(@libsql/client@0.15.15)(better-sqlite3@12.4.1))(ioredis@5.8.2)
-
vue: 3.5.25(typescript@5.9.3)
vue-bundle-renderer: 2.2.0
vue-devtools-stub: 0.1.0
transitivePeerDependencies:
···
- uploadthing
- xml2js
-
'@nuxt/schema@4.2.1':
dependencies:
-
'@vue/shared': 3.5.25
defu: 6.1.4
pathe: 2.0.3
pkg-types: 2.3.0
···
transitivePeerDependencies:
- magicast
-
'@nuxt/vite-builder@4.2.1(@biomejs/biome@1.9.4)(@types/node@24.10.0)(magicast@0.5.1)(nuxt@4.2.1(@biomejs/biome@1.9.4)(@libsql/client@0.15.15)(@parcel/watcher@2.5.1)(@types/node@24.10.0)(@vue/compiler-sfc@3.5.25)(better-sqlite3@12.4.1)(db0@0.3.4(@libsql/client@0.15.15)(better-sqlite3@12.4.1))(ioredis@5.8.2)(magicast@0.5.1)(rollup@4.52.5)(terser@5.44.1)(typescript@5.9.3)(vite@7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue-tsc@2.2.2(typescript@5.9.3))(yaml@2.8.1))(rollup@4.52.5)(terser@5.44.1)(typescript@5.9.3)(vue-tsc@2.2.2(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))(yaml@2.8.1)':
dependencies:
-
'@nuxt/kit': 4.2.1(magicast@0.5.1)
'@rollup/plugin-replace': 6.0.3(rollup@4.52.5)
-
'@vitejs/plugin-vue': 6.0.1(vite@7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.25(typescript@5.9.3))
-
'@vitejs/plugin-vue-jsx': 5.1.1(vite@7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.25(typescript@5.9.3))
autoprefixer: 10.4.21(postcss@8.5.6)
consola: 3.4.2
cssnano: 7.1.2(postcss@8.5.6)
···
magic-string: 0.30.21
mlly: 1.8.0
mocked-exports: 0.1.1
-
nuxt: 4.2.1(@biomejs/biome@1.9.4)(@libsql/client@0.15.15)(@parcel/watcher@2.5.1)(@types/node@24.10.0)(@vue/compiler-sfc@3.5.25)(better-sqlite3@12.4.1)(db0@0.3.4(@libsql/client@0.15.15)(better-sqlite3@12.4.1))(ioredis@5.8.2)(magicast@0.5.1)(rollup@4.52.5)(terser@5.44.1)(typescript@5.9.3)(vite@7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue-tsc@2.2.2(typescript@5.9.3))(yaml@2.8.1)
pathe: 2.0.3
pkg-types: 2.3.0
postcss: 8.5.6
···
std-env: 3.10.0
ufo: 1.6.1
unenv: 2.0.0-rc.24
-
vite: 7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1)
-
vite-node: 5.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1)
-
vite-plugin-checker: 0.11.0(@biomejs/biome@1.9.4)(typescript@5.9.3)(vite@7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue-tsc@2.2.2(typescript@5.9.3))
-
vue: 3.5.25(typescript@5.9.3)
vue-bundle-renderer: 2.2.0
transitivePeerDependencies:
- '@biomejs/biome'
···
- vue-tsc
- yaml
-
'@nuxtjs/mdc@0.19.1(magicast@0.5.1)':
dependencies:
-
'@nuxt/kit': 4.2.1(magicast@0.5.1)
-
'@shikijs/core': 3.19.0
-
'@shikijs/langs': 3.19.0
-
'@shikijs/themes': 3.19.0
-
'@shikijs/transformers': 3.19.0
'@types/hast': 3.0.4
'@types/mdast': 4.0.4
-
'@vue/compiler-core': 3.5.25
consola: 3.4.2
debug: 4.4.3
defu: 6.1.4
···
hast-util-format: 1.1.0
hast-util-to-mdast: 10.1.2
hast-util-to-string: 3.0.1
-
mdast-util-to-hast: 13.2.1
micromark-util-sanitize-uri: 2.0.1
parse5: 8.0.0
pathe: 2.0.3
···
rehype-sort-attributes: 5.0.1
remark-emoji: 5.0.2
remark-gfm: 4.0.1
-
remark-mdc: 3.9.0
remark-parse: 11.0.0
remark-rehype: 11.1.2
remark-stringify: 11.0.0
scule: 1.3.0
-
shiki: 3.19.0
ufo: 1.6.1
unified: 11.0.5
unist-builder: 4.0.0
unist-util-visit: 5.0.0
-
unwasm: 0.5.2
vfile: 6.0.3
transitivePeerDependencies:
- magicast
···
- tsx
- yaml
-
'@oxc-minify/binding-android-arm64@0.96.0':
optional: true
-
'@oxc-minify/binding-darwin-arm64@0.96.0':
optional: true
-
'@oxc-minify/binding-darwin-x64@0.96.0':
optional: true
-
'@oxc-minify/binding-freebsd-x64@0.96.0':
optional: true
-
'@oxc-minify/binding-linux-arm-gnueabihf@0.96.0':
optional: true
-
'@oxc-minify/binding-linux-arm-musleabihf@0.96.0':
optional: true
-
'@oxc-minify/binding-linux-arm64-gnu@0.96.0':
optional: true
-
'@oxc-minify/binding-linux-arm64-musl@0.96.0':
optional: true
-
'@oxc-minify/binding-linux-riscv64-gnu@0.96.0':
optional: true
-
'@oxc-minify/binding-linux-s390x-gnu@0.96.0':
optional: true
-
'@oxc-minify/binding-linux-x64-gnu@0.96.0':
optional: true
-
'@oxc-minify/binding-linux-x64-musl@0.96.0':
optional: true
-
'@oxc-minify/binding-wasm32-wasi@0.96.0':
dependencies:
'@napi-rs/wasm-runtime': 1.0.7
optional: true
-
'@oxc-minify/binding-win32-arm64-msvc@0.96.0':
optional: true
-
'@oxc-minify/binding-win32-x64-msvc@0.96.0':
optional: true
-
'@oxc-parser/binding-android-arm64@0.96.0':
optional: true
-
'@oxc-parser/binding-darwin-arm64@0.96.0':
optional: true
-
'@oxc-parser/binding-darwin-x64@0.96.0':
optional: true
-
'@oxc-parser/binding-freebsd-x64@0.96.0':
optional: true
-
'@oxc-parser/binding-linux-arm-gnueabihf@0.96.0':
optional: true
-
'@oxc-parser/binding-linux-arm-musleabihf@0.96.0':
optional: true
-
'@oxc-parser/binding-linux-arm64-gnu@0.96.0':
optional: true
-
'@oxc-parser/binding-linux-arm64-musl@0.96.0':
optional: true
-
'@oxc-parser/binding-linux-riscv64-gnu@0.96.0':
optional: true
-
'@oxc-parser/binding-linux-s390x-gnu@0.96.0':
optional: true
-
'@oxc-parser/binding-linux-x64-gnu@0.96.0':
optional: true
-
'@oxc-parser/binding-linux-x64-musl@0.96.0':
optional: true
-
'@oxc-parser/binding-wasm32-wasi@0.96.0':
dependencies:
'@napi-rs/wasm-runtime': 1.0.7
optional: true
-
'@oxc-parser/binding-win32-arm64-msvc@0.96.0':
optional: true
-
'@oxc-parser/binding-win32-x64-msvc@0.96.0':
optional: true
-
'@oxc-project/types@0.96.0': {}
-
'@oxc-transform/binding-android-arm64@0.96.0':
optional: true
-
'@oxc-transform/binding-darwin-arm64@0.96.0':
optional: true
-
'@oxc-transform/binding-darwin-x64@0.96.0':
optional: true
-
'@oxc-transform/binding-freebsd-x64@0.96.0':
optional: true
-
'@oxc-transform/binding-linux-arm-gnueabihf@0.96.0':
optional: true
-
'@oxc-transform/binding-linux-arm-musleabihf@0.96.0':
optional: true
-
'@oxc-transform/binding-linux-arm64-gnu@0.96.0':
optional: true
-
'@oxc-transform/binding-linux-arm64-musl@0.96.0':
optional: true
-
'@oxc-transform/binding-linux-riscv64-gnu@0.96.0':
optional: true
-
'@oxc-transform/binding-linux-s390x-gnu@0.96.0':
optional: true
-
'@oxc-transform/binding-linux-x64-gnu@0.96.0':
optional: true
-
'@oxc-transform/binding-linux-x64-musl@0.96.0':
optional: true
-
'@oxc-transform/binding-wasm32-wasi@0.96.0':
dependencies:
'@napi-rs/wasm-runtime': 1.0.7
optional: true
-
'@oxc-transform/binding-win32-arm64-msvc@0.96.0':
optional: true
-
'@oxc-transform/binding-win32-x64-msvc@0.96.0':
optional: true
'@parcel/watcher-android-arm64@2.5.1':
···
'@sec-ant/readable-stream@0.4.1': {}
-
'@shikijs/core@3.19.0':
dependencies:
-
'@shikijs/types': 3.19.0
'@shikijs/vscode-textmate': 10.0.2
'@types/hast': 3.0.4
hast-util-to-html: 9.0.5
-
'@shikijs/engine-javascript@3.19.0':
dependencies:
-
'@shikijs/types': 3.19.0
'@shikijs/vscode-textmate': 10.0.2
-
oniguruma-to-es: 4.3.4
-
'@shikijs/engine-oniguruma@3.19.0':
dependencies:
-
'@shikijs/types': 3.19.0
'@shikijs/vscode-textmate': 10.0.2
-
'@shikijs/langs@3.19.0':
dependencies:
-
'@shikijs/types': 3.19.0
-
'@shikijs/themes@3.19.0':
dependencies:
-
'@shikijs/types': 3.19.0
-
'@shikijs/transformers@3.19.0':
dependencies:
-
'@shikijs/core': 3.19.0
-
'@shikijs/types': 3.19.0
-
'@shikijs/types@3.19.0':
dependencies:
'@shikijs/vscode-textmate': 10.0.2
'@types/hast': 3.0.4
···
'@ungap/structured-clone@1.3.0': {}
-
'@unhead/vue@2.0.19(vue@3.5.25(typescript@5.9.3))':
dependencies:
hookable: 5.5.3
unhead: 2.0.19
-
vue: 3.5.25(typescript@5.9.3)
'@unocss/core@66.5.4': {}
···
- rollup
- supports-color
-
'@vitejs/plugin-vue-jsx@5.1.1(vite@7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.25(typescript@5.9.3))':
dependencies:
'@babel/core': 7.28.5
'@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.5)
'@babel/plugin-transform-typescript': 7.28.5(@babel/core@7.28.5)
'@rolldown/pluginutils': 1.0.0-beta.47
'@vue/babel-plugin-jsx': 1.5.0(@babel/core@7.28.5)
-
vite: 7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1)
-
vue: 3.5.25(typescript@5.9.3)
transitivePeerDependencies:
- supports-color
-
'@vitejs/plugin-vue@6.0.1(vite@7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.25(typescript@5.9.3))':
dependencies:
'@rolldown/pluginutils': 1.0.0-beta.29
-
vite: 7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1)
-
vue: 3.5.25(typescript@5.9.3)
'@volar/language-core@2.4.23':
dependencies:
···
path-browserify: 1.0.1
vscode-uri: 3.1.0
-
'@vue-macros/common@3.1.1(vue@3.5.25(typescript@5.9.3))':
dependencies:
'@vue/compiler-sfc': 3.5.22
ast-kit: 2.1.3
···
magic-string-ast: 1.0.3
unplugin-utils: 0.3.1
optionalDependencies:
-
vue: 3.5.25(typescript@5.9.3)
'@vue/babel-helper-vue-transform-on@1.5.0': {}
···
'@babel/types': 7.28.5
'@vue/babel-helper-vue-transform-on': 1.5.0
'@vue/babel-plugin-resolve-type': 1.5.0(@babel/core@7.28.5)
-
'@vue/shared': 3.5.25
optionalDependencies:
'@babel/core': 7.28.5
transitivePeerDependencies:
···
dependencies:
'@babel/parser': 7.28.5
'@vue/shared': 3.5.22
-
entities: 4.5.0
-
estree-walker: 2.0.2
-
source-map-js: 1.2.1
-
-
'@vue/compiler-core@3.5.25':
-
dependencies:
-
'@babel/parser': 7.28.5
-
'@vue/shared': 3.5.25
entities: 4.5.0
estree-walker: 2.0.2
source-map-js: 1.2.1
···
'@vue/compiler-core': 3.5.22
'@vue/shared': 3.5.22
-
'@vue/compiler-dom@3.5.25':
-
dependencies:
-
'@vue/compiler-core': 3.5.25
-
'@vue/shared': 3.5.25
-
'@vue/compiler-sfc@3.5.22':
dependencies:
'@babel/parser': 7.28.5
···
postcss: 8.5.6
source-map-js: 1.2.1
-
'@vue/compiler-sfc@3.5.25':
-
dependencies:
-
'@babel/parser': 7.28.5
-
'@vue/compiler-core': 3.5.25
-
'@vue/compiler-dom': 3.5.25
-
'@vue/compiler-ssr': 3.5.25
-
'@vue/shared': 3.5.25
-
estree-walker: 2.0.2
-
magic-string: 0.30.21
-
postcss: 8.5.6
-
source-map-js: 1.2.1
-
'@vue/compiler-ssr@3.5.22':
dependencies:
'@vue/compiler-dom': 3.5.22
'@vue/shared': 3.5.22
-
'@vue/compiler-ssr@3.5.25':
-
dependencies:
-
'@vue/compiler-dom': 3.5.25
-
'@vue/shared': 3.5.25
-
'@vue/compiler-vue2@2.7.16':
dependencies:
de-indent: 1.0.2
···
'@vue/devtools-api@6.6.4': {}
-
'@vue/devtools-core@8.0.5(vite@7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.25(typescript@5.9.3))':
dependencies:
-
'@vue/devtools-kit': 8.0.5
-
'@vue/devtools-shared': 8.0.5
mitt: 3.0.1
nanoid: 5.1.6
pathe: 2.0.3
-
vite-hot-client: 2.1.0(vite@7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))
-
vue: 3.5.25(typescript@5.9.3)
transitivePeerDependencies:
- vite
-
'@vue/devtools-kit@8.0.5':
dependencies:
-
'@vue/devtools-shared': 8.0.5
-
birpc: 2.9.0
hookable: 5.5.3
mitt: 3.0.1
-
perfect-debounce: 2.0.0
speakingurl: 14.0.1
superjson: 2.2.5
-
'@vue/devtools-shared@8.0.5':
dependencies:
rfdc: 1.4.1
···
dependencies:
'@volar/language-core': 2.4.23
'@vue/compiler-dom': 3.5.22
-
'@vue/shared': 3.5.25
-
alien-signals: 3.0.6
-
muggle-string: 0.4.1
-
path-browserify: 1.0.1
-
picomatch: 4.0.3
-
optionalDependencies:
-
typescript: 5.9.3
-
-
'@vue/language-core@3.1.5(typescript@5.9.3)':
-
dependencies:
-
'@volar/language-core': 2.4.23
-
'@vue/compiler-dom': 3.5.22
'@vue/shared': 3.5.22
alien-signals: 3.0.6
muggle-string: 0.4.1
···
optionalDependencies:
typescript: 5.9.3
-
'@vue/reactivity@3.5.25':
dependencies:
-
'@vue/shared': 3.5.25
-
'@vue/runtime-core@3.5.25':
dependencies:
-
'@vue/reactivity': 3.5.25
-
'@vue/shared': 3.5.25
-
'@vue/runtime-dom@3.5.25':
dependencies:
-
'@vue/reactivity': 3.5.25
-
'@vue/runtime-core': 3.5.25
-
'@vue/shared': 3.5.25
csstype: 3.1.3
-
'@vue/server-renderer@3.5.25(vue@3.5.25(typescript@5.9.3))':
dependencies:
-
'@vue/compiler-ssr': 3.5.25
-
'@vue/shared': 3.5.25
-
vue: 3.5.25(typescript@5.9.3)
'@vue/shared@3.5.22': {}
-
'@vue/shared@3.5.25': {}
-
-
'@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3))':
dependencies:
'@types/web-bluetooth': 0.0.21
-
'@vueuse/metadata': 14.1.0
-
'@vueuse/shared': 14.1.0(vue@3.5.25(typescript@5.9.3))
-
vue: 3.5.25(typescript@5.9.3)
-
'@vueuse/metadata@14.1.0': {}
-
'@vueuse/shared@14.1.0(vue@3.5.25(typescript@5.9.3))':
dependencies:
-
vue: 3.5.25(typescript@5.9.3)
'@webcontainer/env@1.1.1': {}
···
dependencies:
file-uri-to-path: 1.0.0
-
birpc@2.9.0: {}
bl@4.1.0:
dependencies:
···
dependencies:
run-applescript: 7.1.0
-
c12@3.3.1(magicast@0.5.1):
dependencies:
chokidar: 4.0.3
confbox: 0.2.2
···
pkg-types: 2.3.0
rc9: 2.1.2
optionalDependencies:
-
magicast: 0.5.1
-
c12@3.3.2(magicast@0.5.1):
dependencies:
chokidar: 4.0.3
confbox: 0.2.2
defu: 6.1.4
dotenv: 17.2.3
-
exsolve: 1.0.8
giget: 2.0.0
jiti: 2.6.1
ohash: 2.0.11
···
chokidar@4.0.3:
dependencies:
readdirp: 4.1.2
-
-
chokidar@5.0.0:
-
dependencies:
-
readdirp: 5.0.0
chownr@1.1.4:
optional: true
···
exsolve@1.0.7: {}
-
exsolve@1.0.8: {}
-
extend@3.0.2: {}
fast-fifo@1.3.2: {}
···
hast-util-from-parse5: 8.0.3
hast-util-to-parse5: 8.0.0
html-void-elements: 3.0.0
-
mdast-util-to-hast: 13.2.1
parse5: 7.3.0
unist-util-position: 5.0.0
unist-util-visit: 5.0.0
···
comma-separated-tokens: 2.0.3
hast-util-whitespace: 3.0.0
html-void-elements: 3.0.0
-
mdast-util-to-hast: 13.2.1
property-information: 7.1.0
space-separated-tokens: 2.0.2
stringify-entities: 4.0.4
···
hast-util-to-text: 4.0.2
hast-util-whitespace: 3.0.0
mdast-util-phrasing: 4.1.0
-
mdast-util-to-hast: 13.2.1
mdast-util-to-string: 4.0.0
rehype-minify-whitespace: 6.0.2
trim-trailing-lines: 2.1.0
···
prettier: 3.6.2
tinyglobby: 0.2.15
-
json-schema-to-zod@2.7.0: {}
json5@2.2.3: {}
···
klona@2.0.6: {}
knitwork@1.2.0: {}
-
-
knitwork@1.3.0: {}
koa-compose@4.1.0: {}
···
dependencies:
'@jridgewell/sourcemap-codec': 1.5.5
magicast@0.5.1:
dependencies:
'@babel/parser': 7.28.5
···
'@types/mdast': 4.0.4
unist-util-is: 6.0.1
-
mdast-util-to-hast@13.2.1:
dependencies:
'@types/hast': 3.0.4
'@types/mdast': 4.0.4
···
mocked-exports@0.1.1: {}
-
modern-tar@0.7.2: {}
mrmime@2.0.1: {}
···
dependencies:
boolbase: 1.0.0
-
nuxt-component-meta@0.15.0(magicast@0.5.1):
dependencies:
-
'@nuxt/kit': 4.2.1(magicast@0.5.1)
citty: 0.1.6
-
json-schema-to-zod: 2.7.0
mlly: 1.8.0
ohash: 2.0.11
scule: 1.3.0
typescript: 5.9.3
ufo: 1.6.1
-
vue-component-meta: 3.1.5(typescript@5.9.3)
transitivePeerDependencies:
- magicast
-
nuxt-og-image@5.1.12(@unhead/vue@2.0.19(vue@3.5.25(typescript@5.9.3)))(h3@1.15.4)(magicast@0.5.1)(unstorage@1.17.2(db0@0.3.4(@libsql/client@0.15.15)(better-sqlite3@12.4.1))(ioredis@5.8.2))(vite@7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.25(typescript@5.9.3)):
dependencies:
-
'@nuxt/devtools-kit': 2.7.0(magicast@0.5.1)(vite@7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))
'@nuxt/kit': 4.2.0(magicast@0.5.1)
'@resvg/resvg-js': 2.6.2
'@resvg/resvg-wasm': 2.6.2
-
'@unhead/vue': 2.0.19(vue@3.5.25(typescript@5.9.3))
'@unocss/core': 66.5.4
'@unocss/preset-wind3': 66.5.4
chrome-launcher: 1.2.1
···
image-size: 2.0.2
magic-string: 0.30.21
mocked-exports: 0.1.1
-
nuxt-site-config: 3.2.11(h3@1.15.4)(magicast@0.5.1)(vue@3.5.25(typescript@5.9.3))
nypm: 0.6.2
ofetch: 1.5.1
ohash: 2.0.11
···
- vite
- vue
-
nuxt-site-config-kit@3.2.11(magicast@0.5.1)(vue@3.5.25(typescript@5.9.3)):
dependencies:
'@nuxt/kit': 4.2.0(magicast@0.5.1)
pkg-types: 2.3.0
-
site-config-stack: 3.2.11(vue@3.5.25(typescript@5.9.3))
std-env: 3.10.0
ufo: 1.6.1
transitivePeerDependencies:
- magicast
- vue
-
nuxt-site-config@3.2.11(h3@1.15.4)(magicast@0.5.1)(vue@3.5.25(typescript@5.9.3)):
dependencies:
'@nuxt/kit': 4.2.0(magicast@0.5.1)
h3: 1.15.4
-
nuxt-site-config-kit: 3.2.11(magicast@0.5.1)(vue@3.5.25(typescript@5.9.3))
pathe: 2.0.3
pkg-types: 2.3.0
sirv: 3.0.2
-
site-config-stack: 3.2.11(vue@3.5.25(typescript@5.9.3))
ufo: 1.6.1
transitivePeerDependencies:
- magicast
- vue
-
nuxt@4.2.1(@biomejs/biome@1.9.4)(@libsql/client@0.15.15)(@parcel/watcher@2.5.1)(@types/node@24.10.0)(@vue/compiler-sfc@3.5.25)(better-sqlite3@12.4.1)(db0@0.3.4(@libsql/client@0.15.15)(better-sqlite3@12.4.1))(ioredis@5.8.2)(magicast@0.5.1)(rollup@4.52.5)(terser@5.44.1)(typescript@5.9.3)(vite@7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue-tsc@2.2.2(typescript@5.9.3))(yaml@2.8.1):
dependencies:
'@dxup/nuxt': 0.2.1(magicast@0.5.1)
'@nuxt/cli': 3.30.0(magicast@0.5.1)
-
'@nuxt/devtools': 3.1.1(vite@7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.25(typescript@5.9.3))
-
'@nuxt/kit': 4.2.1(magicast@0.5.1)
-
'@nuxt/nitro-server': 4.2.1(@libsql/client@0.15.15)(better-sqlite3@12.4.1)(db0@0.3.4(@libsql/client@0.15.15)(better-sqlite3@12.4.1))(ioredis@5.8.2)(magicast@0.5.1)(nuxt@4.2.1(@biomejs/biome@1.9.4)(@libsql/client@0.15.15)(@parcel/watcher@2.5.1)(@types/node@24.10.0)(@vue/compiler-sfc@3.5.25)(better-sqlite3@12.4.1)(db0@0.3.4(@libsql/client@0.15.15)(better-sqlite3@12.4.1))(ioredis@5.8.2)(magicast@0.5.1)(rollup@4.52.5)(terser@5.44.1)(typescript@5.9.3)(vite@7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue-tsc@2.2.2(typescript@5.9.3))(yaml@2.8.1))(typescript@5.9.3)
-
'@nuxt/schema': 4.2.1
'@nuxt/telemetry': 2.6.6(magicast@0.5.1)
-
'@nuxt/vite-builder': 4.2.1(@biomejs/biome@1.9.4)(@types/node@24.10.0)(magicast@0.5.1)(nuxt@4.2.1(@biomejs/biome@1.9.4)(@libsql/client@0.15.15)(@parcel/watcher@2.5.1)(@types/node@24.10.0)(@vue/compiler-sfc@3.5.25)(better-sqlite3@12.4.1)(db0@0.3.4(@libsql/client@0.15.15)(better-sqlite3@12.4.1))(ioredis@5.8.2)(magicast@0.5.1)(rollup@4.52.5)(terser@5.44.1)(typescript@5.9.3)(vite@7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue-tsc@2.2.2(typescript@5.9.3))(yaml@2.8.1))(rollup@4.52.5)(terser@5.44.1)(typescript@5.9.3)(vue-tsc@2.2.2(typescript@5.9.3))(vue@3.5.25(typescript@5.9.3))(yaml@2.8.1)
-
'@unhead/vue': 2.0.19(vue@3.5.25(typescript@5.9.3))
-
'@vue/shared': 3.5.25
c12: 3.3.1(magicast@0.5.1)
chokidar: 4.0.3
compatx: 0.2.0
···
ofetch: 1.5.1
ohash: 2.0.11
on-change: 6.0.1
-
oxc-minify: 0.96.0
-
oxc-parser: 0.96.0
-
oxc-transform: 0.96.0
-
oxc-walker: 0.5.2(oxc-parser@0.96.0)
pathe: 2.0.3
perfect-debounce: 2.0.0
pkg-types: 2.3.0
···
unctx: 2.4.1
unimport: 5.5.0
unplugin: 2.3.10
-
unplugin-vue-router: 0.16.1(@vue/compiler-sfc@3.5.25)(typescript@5.9.3)(vue-router@4.6.3(vue@3.5.25(typescript@5.9.3)))(vue@3.5.25(typescript@5.9.3))
untyped: 2.0.0
-
vue: 3.5.25(typescript@5.9.3)
-
vue-router: 4.6.3(vue@3.5.25(typescript@5.9.3))
optionalDependencies:
'@parcel/watcher': 2.5.1
'@types/node': 24.10.0
···
- '@vercel/blob'
- '@vercel/functions'
- '@vercel/kv'
-
- '@vitejs/devtools'
- '@vue/compiler-sfc'
- aws4fetch
- bare-abort-controller
···
object-hash@3.0.0: {}
-
obug@2.1.1: {}
-
ofetch@1.5.1:
dependencies:
destr: 2.0.5
···
oniguruma-parser@0.12.1: {}
-
oniguruma-to-es@4.3.4:
dependencies:
oniguruma-parser: 0.12.1
regex: 6.0.1
···
is-docker: 2.2.1
is-wsl: 2.2.0
-
oxc-minify@0.96.0:
optionalDependencies:
-
'@oxc-minify/binding-android-arm64': 0.96.0
-
'@oxc-minify/binding-darwin-arm64': 0.96.0
-
'@oxc-minify/binding-darwin-x64': 0.96.0
-
'@oxc-minify/binding-freebsd-x64': 0.96.0
-
'@oxc-minify/binding-linux-arm-gnueabihf': 0.96.0
-
'@oxc-minify/binding-linux-arm-musleabihf': 0.96.0
-
'@oxc-minify/binding-linux-arm64-gnu': 0.96.0
-
'@oxc-minify/binding-linux-arm64-musl': 0.96.0
-
'@oxc-minify/binding-linux-riscv64-gnu': 0.96.0
-
'@oxc-minify/binding-linux-s390x-gnu': 0.96.0
-
'@oxc-minify/binding-linux-x64-gnu': 0.96.0
-
'@oxc-minify/binding-linux-x64-musl': 0.96.0
-
'@oxc-minify/binding-wasm32-wasi': 0.96.0
-
'@oxc-minify/binding-win32-arm64-msvc': 0.96.0
-
'@oxc-minify/binding-win32-x64-msvc': 0.96.0
-
oxc-parser@0.96.0:
dependencies:
-
'@oxc-project/types': 0.96.0
optionalDependencies:
-
'@oxc-parser/binding-android-arm64': 0.96.0
-
'@oxc-parser/binding-darwin-arm64': 0.96.0
-
'@oxc-parser/binding-darwin-x64': 0.96.0
-
'@oxc-parser/binding-freebsd-x64': 0.96.0
-
'@oxc-parser/binding-linux-arm-gnueabihf': 0.96.0
-
'@oxc-parser/binding-linux-arm-musleabihf': 0.96.0
-
'@oxc-parser/binding-linux-arm64-gnu': 0.96.0
-
'@oxc-parser/binding-linux-arm64-musl': 0.96.0
-
'@oxc-parser/binding-linux-riscv64-gnu': 0.96.0
-
'@oxc-parser/binding-linux-s390x-gnu': 0.96.0
-
'@oxc-parser/binding-linux-x64-gnu': 0.96.0
-
'@oxc-parser/binding-linux-x64-musl': 0.96.0
-
'@oxc-parser/binding-wasm32-wasi': 0.96.0
-
'@oxc-parser/binding-win32-arm64-msvc': 0.96.0
-
'@oxc-parser/binding-win32-x64-msvc': 0.96.0
-
oxc-transform@0.96.0:
optionalDependencies:
-
'@oxc-transform/binding-android-arm64': 0.96.0
-
'@oxc-transform/binding-darwin-arm64': 0.96.0
-
'@oxc-transform/binding-darwin-x64': 0.96.0
-
'@oxc-transform/binding-freebsd-x64': 0.96.0
-
'@oxc-transform/binding-linux-arm-gnueabihf': 0.96.0
-
'@oxc-transform/binding-linux-arm-musleabihf': 0.96.0
-
'@oxc-transform/binding-linux-arm64-gnu': 0.96.0
-
'@oxc-transform/binding-linux-arm64-musl': 0.96.0
-
'@oxc-transform/binding-linux-riscv64-gnu': 0.96.0
-
'@oxc-transform/binding-linux-s390x-gnu': 0.96.0
-
'@oxc-transform/binding-linux-x64-gnu': 0.96.0
-
'@oxc-transform/binding-linux-x64-musl': 0.96.0
-
'@oxc-transform/binding-wasm32-wasi': 0.96.0
-
'@oxc-transform/binding-win32-arm64-msvc': 0.96.0
-
'@oxc-transform/binding-win32-x64-msvc': 0.96.0
-
oxc-walker@0.5.2(oxc-parser@0.96.0):
dependencies:
magic-regexp: 0.10.0
-
oxc-parser: 0.96.0
package-json-from-dist@1.0.1: {}
···
pathe@1.1.2: {}
pathe@2.0.3: {}
perfect-debounce@2.0.0: {}
···
picomatch: 2.3.1
readdirp@4.1.2: {}
-
-
readdirp@5.0.0: {}
redis-errors@1.2.0: {}
···
transitivePeerDependencies:
- supports-color
-
remark-mdc@3.9.0:
dependencies:
'@types/mdast': 4.0.4
'@types/unist': 3.0.3
···
dependencies:
'@types/hast': 3.0.4
'@types/mdast': 4.0.4
-
mdast-util-to-hast: 13.2.1
unified: 11.0.5
vfile: 6.0.3
···
shell-quote@1.8.3: {}
-
shiki@3.19.0:
dependencies:
-
'@shikijs/core': 3.19.0
-
'@shikijs/engine-javascript': 3.19.0
-
'@shikijs/engine-oniguruma': 3.19.0
-
'@shikijs/langs': 3.19.0
-
'@shikijs/themes': 3.19.0
-
'@shikijs/types': 3.19.0
'@shikijs/vscode-textmate': 10.0.2
'@types/hast': 3.0.4
···
sisteransi@1.0.5: {}
-
site-config-stack@3.2.11(vue@3.5.25(typescript@5.9.3)):
dependencies:
ufo: 1.6.1
-
vue: 3.5.25(typescript@5.9.3)
skin-tone@2.0.0:
dependencies:
···
pathe: 2.0.3
picomatch: 4.0.3
-
unplugin-vue-router@0.16.1(@vue/compiler-sfc@3.5.25)(typescript@5.9.3)(vue-router@4.6.3(vue@3.5.25(typescript@5.9.3)))(vue@3.5.25(typescript@5.9.3)):
dependencies:
'@babel/generator': 7.28.5
-
'@vue-macros/common': 3.1.1(vue@3.5.25(typescript@5.9.3))
-
'@vue/compiler-sfc': 3.5.25
'@vue/language-core': 3.1.3(typescript@5.9.3)
ast-walker-scope: 0.8.3
chokidar: 4.0.3
···
unplugin-utils: 0.3.1
yaml: 2.8.1
optionalDependencies:
-
vue-router: 4.6.3(vue@3.5.25(typescript@5.9.3))
transitivePeerDependencies:
- typescript
- vue
···
picomatch: 4.0.3
webpack-virtual-modules: 0.6.2
-
unplugin@2.3.11:
-
dependencies:
-
'@jridgewell/remapping': 2.3.5
-
acorn: 8.15.0
-
picomatch: 4.0.3
-
webpack-virtual-modules: 0.6.2
-
unstorage@1.17.2(db0@0.3.4(@libsql/client@0.15.15)(better-sqlite3@12.4.1))(ioredis@5.8.2):
dependencies:
anymatch: 3.1.3
···
pkg-types: 2.3.0
unplugin: 2.3.10
-
unwasm@0.5.2:
dependencies:
-
exsolve: 1.0.8
-
knitwork: 1.3.0
magic-string: 0.30.21
mlly: 1.8.0
pathe: 2.0.3
···
'@types/unist': 3.0.3
vfile-message: 4.0.3
-
vite-dev-rpc@1.1.0(vite@7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1)):
dependencies:
-
birpc: 2.9.0
-
vite: 7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1)
-
vite-hot-client: 2.1.0(vite@7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))
-
vite-hot-client@2.1.0(vite@7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1)):
dependencies:
-
vite: 7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1)
-
vite-node@5.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1):
dependencies:
cac: 6.7.14
es-module-lexer: 1.7.0
-
obug: 2.1.1
pathe: 2.0.3
-
vite: 7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1)
transitivePeerDependencies:
- '@types/node'
- jiti
···
- sass-embedded
- stylus
- sugarss
- terser
- tsx
- yaml
-
vite-plugin-checker@0.11.0(@biomejs/biome@1.9.4)(typescript@5.9.3)(vite@7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue-tsc@2.2.2(typescript@5.9.3)):
dependencies:
'@babel/code-frame': 7.27.1
chokidar: 4.0.3
···
picomatch: 4.0.3
tiny-invariant: 1.3.3
tinyglobby: 0.2.15
-
vite: 7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1)
vscode-uri: 3.1.0
optionalDependencies:
'@biomejs/biome': 1.9.4
typescript: 5.9.3
vue-tsc: 2.2.2(typescript@5.9.3)
-
vite-plugin-inspect@11.3.3(@nuxt/kit@4.2.1(magicast@0.5.1))(vite@7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1)):
dependencies:
ansis: 4.2.0
debug: 4.4.3
···
perfect-debounce: 2.0.0
sirv: 3.0.2
unplugin-utils: 0.3.1
-
vite: 7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1)
-
vite-dev-rpc: 1.1.0(vite@7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))
optionalDependencies:
-
'@nuxt/kit': 4.2.1(magicast@0.5.1)
transitivePeerDependencies:
- supports-color
-
vite-plugin-vue-tracer@1.1.3(vite@7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.25(typescript@5.9.3)):
dependencies:
estree-walker: 3.0.3
exsolve: 1.0.7
magic-string: 0.30.21
pathe: 2.0.3
source-map-js: 1.2.1
-
vite: 7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1)
-
vue: 3.5.25(typescript@5.9.3)
-
vite@7.2.6(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1):
dependencies:
esbuild: 0.25.12
fdir: 6.5.0(picomatch@4.0.3)
···
dependencies:
ufo: 1.6.1
-
vue-component-meta@3.1.5(typescript@5.9.3):
dependencies:
'@volar/typescript': 2.4.23
-
'@vue/language-core': 3.1.5(typescript@5.9.3)
path-browserify: 1.0.1
typescript: 5.9.3
-
vue-component-type-helpers: 3.1.5
-
vue-component-type-helpers@3.1.5: {}
vue-devtools-stub@0.1.0: {}
-
vue-router@4.6.3(vue@3.5.25(typescript@5.9.3)):
dependencies:
'@vue/devtools-api': 6.6.4
-
vue: 3.5.25(typescript@5.9.3)
vue-tsc@2.2.2(typescript@5.9.3):
dependencies:
···
'@vue/language-core': 2.2.2(typescript@5.9.3)
typescript: 5.9.3
-
vue@3.5.25(typescript@5.9.3):
dependencies:
-
'@vue/compiler-dom': 3.5.25
-
'@vue/compiler-sfc': 3.5.25
-
'@vue/runtime-dom': 3.5.25
-
'@vue/server-renderer': 3.5.25(vue@3.5.25(typescript@5.9.3))
-
'@vue/shared': 3.5.25
optionalDependencies:
typescript: 5.9.3
···
compress-commons: 6.0.2
readable-stream: 4.7.0
-
zod-to-json-schema@3.25.0(zod@3.25.76):
dependencies:
zod: 3.25.76
···
.:
dependencies:
'@atcute/bluesky':
+
specifier: ^3.2.10
+
version: 3.2.10
'@atcute/client':
+
specifier: ^4.0.5
+
version: 4.0.5
'@atcute/lexicons':
+
specifier: ^1.2.4
+
version: 1.2.4
'@iconify-json/bx':
specifier: ^1.2.2
version: 1.2.2
'@nuxt/content':
+
specifier: ^3.8.0
+
version: 3.8.0(@libsql/client@0.15.15)(better-sqlite3@12.4.1)(magicast@0.5.1)
'@nuxt/icon':
specifier: 1.11.0
+
version: 1.11.0(magicast@0.5.1)(vite@7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3))
'@nuxtjs/tailwindcss':
specifier: ^6.14.0
version: 6.14.0(magicast@0.5.1)(yaml@2.8.1)
···
version: 0.5.19(tailwindcss@3.4.18(yaml@2.8.1))
'@unhead/vue':
specifier: ^2.0.19
+
version: 2.0.19(vue@3.5.22(typescript@5.9.3))
'@vueuse/core':
+
specifier: ^14.0.0
+
version: 14.0.0(vue@3.5.22(typescript@5.9.3))
nuxt:
+
specifier: ^4.2.0
+
version: 4.2.0(@biomejs/biome@1.9.4)(@libsql/client@0.15.15)(@parcel/watcher@2.5.1)(@types/node@24.10.0)(@vue/compiler-sfc@3.5.22)(better-sqlite3@12.4.1)(db0@0.3.4(@libsql/client@0.15.15)(better-sqlite3@12.4.1))(ioredis@5.8.2)(magicast@0.5.1)(rollup@4.52.5)(terser@5.44.1)(typescript@5.9.3)(vite@7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue-tsc@2.2.2(typescript@5.9.3))(yaml@2.8.1)
nuxt-og-image:
specifier: 5.1.12
+
version: 5.1.12(@unhead/vue@2.0.19(vue@3.5.22(typescript@5.9.3)))(h3@1.15.4)(magicast@0.5.1)(unstorage@1.17.2(db0@0.3.4(@libsql/client@0.15.15)(better-sqlite3@12.4.1))(ioredis@5.8.2))(vite@7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3))
vue:
+
specifier: ^3.5.22
+
version: 3.5.22(typescript@5.9.3)
vue-router:
specifier: ^4.6.3
+
version: 4.6.3(vue@3.5.22(typescript@5.9.3))
devDependencies:
'@biomejs/biome':
specifier: 1.9.4
···
'@atcute/atproto@3.1.9':
resolution: {integrity: sha512-DyWwHCTdR4hY2BPNbLXgVmm7lI+fceOwWbE4LXbGvbvVtSn+ejSVFaAv01Ra3kWDha0whsOmbJL8JP0QPpf1+w==}
+
'@atcute/bluesky@3.2.10':
+
resolution: {integrity: sha512-qwQWTzRf3umnh2u41gdU+xWYkbzGlKDupc3zeOB+YjmuP1N9wEaUhwS8H7vgrqr0xC9SGNDjeUVcjC4m5BPLBg==}
+
'@atcute/client@4.0.5':
+
resolution: {integrity: sha512-R8Qen8goGmEkynYGg2m6XFlVmz0GTDvQ+9w+4QqOob+XMk8/WDpF4aImev7WKEde/rV2gjcqW7zM8E6W9NShDA==}
'@atcute/identity@1.1.3':
resolution: {integrity: sha512-oIqPoI8TwWeQxvcLmFEZLdN2XdWcaLVtlm8pNk0E72As9HNzzD9pwKPrLr3rmTLRIoULPPFmq9iFNsTeCIU9ng==}
+
'@atcute/lexicons@1.2.4':
+
resolution: {integrity: sha512-s6fl/SVjQMv7jiitLCcZ434X+VrTsJt7Fl9iJg8WXHJIELRz/U0sNUoP++oWd7bvPy1Vcd2Wnm+YtTm/Zn7AIQ==}
'@babel/code-frame@7.27.1':
resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
···
engines: {node: ^16.10.0 || >=18.0.0}
hasBin: true
+
'@nuxt/content@3.8.0':
+
resolution: {integrity: sha512-uW8aqo9bcWwBk43f+EkfcHRrkydRAqrVzpogRSCaoistJ9ND5T0Uul5oKEFfzeByKGlSrX4Qb2zbReSoN3rp4A==}
peerDependencies:
'@electric-sql/pglite': '*'
'@libsql/client': '*'
'@valibot/to-json-schema': ^1.3.0
+
better-sqlite3: ^12.4.1
sqlite3: '*'
+
valibot: ^1.1.0
peerDependenciesMeta:
'@electric-sql/pglite':
optional: true
···
peerDependencies:
vite: '>=6.0'
+
'@nuxt/devtools-wizard@2.7.0':
+
resolution: {integrity: sha512-iWuWR0U6BRpF7D6xrgq9ZkQ6ajsw2EA/gVmbU9V5JPKRUtV6DVpCPi+h34VFNeQ104Sf531XgvT0sl3h93AjXA==}
hasBin: true
+
'@nuxt/devtools@2.7.0':
+
resolution: {integrity: sha512-BtIklVYny14Ykek4SHeexAHoa28MEV9kz223ZzvoNYqE0f+YVV+cJP69ovZHf+HUVpxaAMJfWKLHXinWXiCZ4Q==}
hasBin: true
peerDependencies:
vite: '>=6.0'
'@nuxt/icon@1.11.0':
resolution: {integrity: sha512-j82YbT7/Z02W/6jhiMoXHdtpSsCBfAoI3EkJ5Axi0C30ALiqvmrmfwd+CG7dftyncj51goBi1YMb6I4vNHK9nA==}
···
resolution: {integrity: sha512-1yN3LL6RDN5GjkNLPUYCbNRkaYnat6hqejPyfIBBVzrWOrpiQeNMGxQM/IcVdaSuBJXAnu0sUvTKXpXkmPhljg==}
engines: {node: '>=18.12.0'}
+
'@nuxt/nitro-server@4.2.0':
+
resolution: {integrity: sha512-1fZwAV+VTQwmPVUYKH+eoeB+3jPE+c/mreK3PpuY6vvrIDuMh9L4QIeLFB0fIcY2MJ4XkvjU/5w3B9uu3GR9yQ==}
engines: {node: ^20.19.0 || >=22.12.0}
peerDependencies:
+
nuxt: ^4.2.0
+
'@nuxt/schema@4.2.0':
+
resolution: {integrity: sha512-YMbgpEyPokgOYME6BvY8Okk7GAIwhEFYzrkkkoU9IVgu0tKWetYRrjUwbd0eICqPm9EWDBQl5tTTNJ8xCndVbw==}
engines: {node: ^14.18.0 || >=16.10.0}
'@nuxt/telemetry@2.6.6':
···
engines: {node: '>=18.12.0'}
hasBin: true
+
'@nuxt/vite-builder@4.2.0':
+
resolution: {integrity: sha512-pNHIoO8kiSsOnoMo2zmxy0mk71ZBP4KJCiXr7Ahq8ewOm4W4vFQ1NV1O46wJGZyxlPC6nqFuYBvcUwVp1LgTNg==}
engines: {node: ^20.19.0 || >=22.12.0}
peerDependencies:
+
nuxt: 4.2.0
rolldown: ^1.0.0-beta.38
vue: ^3.3.4
peerDependenciesMeta:
rolldown:
optional: true
+
'@nuxtjs/mdc@0.18.2':
+
resolution: {integrity: sha512-pdeWd2/oOPriPVa1F6QNoK4fZCp/b4sxEVoouXJJCETCBIFSNS4OOtdRTY1ATLM1Gr+6ZvNyNPABvaaUEGC4Lw==}
'@nuxtjs/tailwindcss@6.14.0':
resolution: {integrity: sha512-30RyDK++LrUVRgc2A85MktGWIZoRQgeQKjE4CjjD64OXNozyl+4ScHnnYgqVToMM6Ch2ZG2W4wV2J0EN6F0zkQ==}
+
'@oxc-minify/binding-android-arm64@0.95.0':
+
resolution: {integrity: sha512-ck0NakTt3oBWTMQjxKf5ZW1GzCs0y1kETzJdh8h8NAWTutlMfeWiuUxCgG4FMF4XiTnCdLq/dFAKFcdbiwcoqg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [android]
+
'@oxc-minify/binding-darwin-arm64@0.95.0':
+
resolution: {integrity: sha512-uvRkBVsh88DgMqddCIHcL1tKycKThfzLHNuBOm7csfpOD85TJimpl/1qAfrTCNrdaiteFK4U9QRKBdDvZay4RQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [darwin]
+
'@oxc-minify/binding-darwin-x64@0.95.0':
+
resolution: {integrity: sha512-SpDArHPKy/K9rduOCdlqz4BxFZte5Ad4/CPNaP0EaVTNbDW1OjBMrVOzRxr/bveWUbUJW3gbWby//YzXCese/w==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [darwin]
+
'@oxc-minify/binding-freebsd-x64@0.95.0':
+
resolution: {integrity: sha512-U/ER7VsDCOv9HTE3rIZmNdN2ijZTT1vjDPPRsl9Z5Zyip2OsbHJxh4iNC00bO7qSw5keADuP4ooXsu2pjnfXNA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [freebsd]
+
'@oxc-minify/binding-linux-arm-gnueabihf@0.95.0':
+
resolution: {integrity: sha512-g+u5Zg72J7G9DbjnCIO6BhHE4lSaODLFjArFq9sZWu4xi4QOYapGdNZVbQWrWjzGlKTvYOhH621ySMOc07O64g==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [linux]
+
'@oxc-minify/binding-linux-arm-musleabihf@0.95.0':
+
resolution: {integrity: sha512-RqQctWyvgSVkJ+UMhDPLDjSO+YjAWFGoSfvikgEIvGrTVjFzXz20EDFSH+CR9J+mXsuJOku63VKmcAZr8Vd/Qg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [linux]
+
'@oxc-minify/binding-linux-arm64-gnu@0.95.0':
+
resolution: {integrity: sha512-psrzacTaa5zmRXm2Skooj5YOZvueFZLOjNDAkwQcjIgrVAzl7uXtDCPq8soM46O12wGXMpDNUkrbD2BVcF+S9g==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [linux]
+
'@oxc-minify/binding-linux-arm64-musl@0.95.0':
+
resolution: {integrity: sha512-W5VWcOTIxH8bvIviiFreNHK5RkaNE7Y7hm0fxYa9pAdDe8U2OnD77JPPHmNSKYROaDa1ZsmXK1dAOnwGcxvv1w==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [linux]
+
'@oxc-minify/binding-linux-riscv64-gnu@0.95.0':
+
resolution: {integrity: sha512-FBAaIvTcRqdXDPZAsfEBc5nK3noZtEAO82090ne5EDsDNKu8u8sjLhXYJWM3AZFD6p7OPRqBby6N4pVicrk0dA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [riscv64]
os: [linux]
+
'@oxc-minify/binding-linux-s390x-gnu@0.95.0':
+
resolution: {integrity: sha512-7/OWwUC3r0/nPsHOCsTkgitdjpvDOwm8f4lE/Xeigt+9EcRcVuaSHRVOHI47mQ/cSL6V3AObVcmiAGysR36vEw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [s390x]
os: [linux]
+
'@oxc-minify/binding-linux-x64-gnu@0.95.0':
+
resolution: {integrity: sha512-3K2lxzk679ml1vXJtO8Nt3xMD2trnDQWBb4Q676Un5g3dbaYf1WgTmEI13ZnCrwE5uBI02DFtFQplkLFqb9dGA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [linux]
+
'@oxc-minify/binding-linux-x64-musl@0.95.0':
+
resolution: {integrity: sha512-DrxQAALZs/He11OlCWZrJGsdwGSAK61nkZxcl3MnO33mL54Qs/vI9AbI2lMtggU+xB2sNKbjKTTpTbCPHOmhTA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [linux]
+
'@oxc-minify/binding-wasm32-wasi@0.95.0':
+
resolution: {integrity: sha512-PASXKqJyLHesNjTweXqkA3kG/hdjpauGb+REP5yZ4dr8gxu5DbMqk4QjsBmW3LjDF4tXXjRs8nHR6Qt2dhxTzA==}
engines: {node: '>=14.0.0'}
cpu: [wasm32]
+
'@oxc-minify/binding-win32-arm64-msvc@0.95.0':
+
resolution: {integrity: sha512-fPVQZWObqqBRYedFy/bOI0UzUZCqq6ra/PBZFqi31c5Zn73ETTseLYL7ebQqKgjv8l9gQPBIAFIoXYsaoxT72A==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [win32]
+
'@oxc-minify/binding-win32-x64-msvc@0.95.0':
+
resolution: {integrity: sha512-mtCkksnBcO4dIxuj1n9THbMihV+zjO7ZIVCPOq54pylA+hTb/OHau3OV+XyU0pnmREGTuF9xV3BUKag1SYS/lQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [win32]
+
'@oxc-parser/binding-android-arm64@0.95.0':
+
resolution: {integrity: sha512-dZyxhhvJigwWL1wgnLlqyEiSeuqO0WdDH9H+if0dPcBM4fKa5fjVkaUcJT1jBMcBTnkjxMwTXYZy5TK60N0fjg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [android]
+
'@oxc-parser/binding-darwin-arm64@0.95.0':
+
resolution: {integrity: sha512-zun9+V33kyCtNec9oUSWwb0qi3fB8pXwum1yGFECPEr55g/CrWju6/Jv4hwwNBeW2tK9Ch/PRstEtYmOLMhHpg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [darwin]
+
'@oxc-parser/binding-darwin-x64@0.95.0':
+
resolution: {integrity: sha512-9djMQ/t6Ns/UXtziwUe562uVJMbhtuLtCj+Xav+HMVT/rhV9gWO8PQOG7AwDLUBjJanItsrfqrGtqhNxtZ701w==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [darwin]
+
'@oxc-parser/binding-freebsd-x64@0.95.0':
+
resolution: {integrity: sha512-GK6k0PgCVkkeRZtHgcosCYbXIRySpJpuPw/OInfLGFh8f3x9gp2l8Fbcfx+YO+ZOHFBCd2NNedGqw8wMgouxfA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [freebsd]
+
'@oxc-parser/binding-linux-arm-gnueabihf@0.95.0':
+
resolution: {integrity: sha512-+g/lFITtyHHEk69cunOHuiT5cX+mpUTcbGYNe8suguZ7FqgNwai+PnGv0ctCvtgxBPVfckfUK8c3RvFKo+vi/w==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [linux]
+
'@oxc-parser/binding-linux-arm-musleabihf@0.95.0':
+
resolution: {integrity: sha512-SXNasDtPw8ycNV7VEvFxb4LETmykvWKUhHR7K3us818coXYpDj54P8WEx8hJobP/9skuuiFuKHmtYLdjX8wntA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [linux]
+
'@oxc-parser/binding-linux-arm64-gnu@0.95.0':
+
resolution: {integrity: sha512-0LzebARTU0ROfD6pDK4h1pFn+09meErCZ0MA2TaW08G72+GNneEsksPufOuI+9AxVSRa+jKE3fu0wavvhZgSkg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [linux]
+
'@oxc-parser/binding-linux-arm64-musl@0.95.0':
+
resolution: {integrity: sha512-Pvi1lGe/G+mJZ3hUojMP/aAHAzHA25AEtVr8/iuz7UV72t/15NOgJYr9kELMUMNjPqpr3vKUgXTFmTtAxp11Qw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [linux]
+
'@oxc-parser/binding-linux-riscv64-gnu@0.95.0':
+
resolution: {integrity: sha512-pUEVHIOVNDfhk4sTlLhn6mrNENhE4/dAwemxIfqpcSyBlYG0xYZND1F3jjR2yWY6DakXZ6VSuDbtiv1LPNlOLw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [riscv64]
os: [linux]
+
'@oxc-parser/binding-linux-s390x-gnu@0.95.0':
+
resolution: {integrity: sha512-5+olaepHTE3J/+w7g0tr3nocvv5BKilAJnzj4L8tWBCLEZbL6olJcGVoldUO+3cgg1SO1xJywP5BuLhT0mDUDw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [s390x]
os: [linux]
+
'@oxc-parser/binding-linux-x64-gnu@0.95.0':
+
resolution: {integrity: sha512-8huzHlK/N98wrnYKxIcYsK8ZGBWomQchu/Mzi6m+CtbhjWOv9DmK0jQ2fUWImtluQVpTwS0uZT06d3g7XIkJrA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [linux]
+
'@oxc-parser/binding-linux-x64-musl@0.95.0':
+
resolution: {integrity: sha512-bWnrLfGDcx/fab0+UQnFbVFbiykof/btImbYf+cI2pU/1Egb2x+OKSmM5Qt0nEUiIpM5fgJmYXxTopybSZOKYA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [linux]
+
'@oxc-parser/binding-wasm32-wasi@0.95.0':
+
resolution: {integrity: sha512-0JLyqkZu1HnQIZ4e5LBGOtzqua1QwFEUOoMSycdoerXqayd4LK2b7WMfAx8eCIf+jGm1Uj6f3R00nlsx8g1faQ==}
engines: {node: '>=14.0.0'}
cpu: [wasm32]
+
'@oxc-parser/binding-win32-arm64-msvc@0.95.0':
+
resolution: {integrity: sha512-RWvaA6s1SYlBj9CxwHfNn0CRlkPdv9fEUAXfZkGQPdP5e1ppIaO2KYE0sUov/zzp9hPTMMsTMHl4dcIbb+pHCQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [win32]
+
'@oxc-parser/binding-win32-x64-msvc@0.95.0':
+
resolution: {integrity: sha512-BQpgl7rDjFvCIHudmUR0dCwc4ylBYZl4CPVinlD3NhkMif4WD5dADckoo5ES/KOpFyvwcbKZX+grP63cjHi26g==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [win32]
+
'@oxc-project/types@0.95.0':
+
resolution: {integrity: sha512-vACy7vhpMPhjEJhULNxrdR0D943TkA/MigMpJCHmBHvMXxRStRi/dPtTlfQ3uDwWSzRpT8z+7ImjZVf8JWBocQ==}
+
'@oxc-transform/binding-android-arm64@0.95.0':
+
resolution: {integrity: sha512-eW+BCgRWOsMrDiz7FEV7BjAmaF9lGIc2ueGdRUYjRUMq4f5FSGS7gMBTYDxajdoIB3L5Gnksh1CWkIlgg95UVA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [android]
+
'@oxc-transform/binding-darwin-arm64@0.95.0':
+
resolution: {integrity: sha512-OUUaYZVss8tyDZZ7TGr2vnH3+i3Ouwsx0frQRGkiePNatXxaJJ3NS5+Kwgi9hh3WryXaQz2hWji4AM2RHYE7Cg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [darwin]
+
'@oxc-transform/binding-darwin-x64@0.95.0':
+
resolution: {integrity: sha512-49UPEgIlgWUndwcP3LH6dvmOewZ92DxCMpFMo11JhUlmNJxA3sjVImEBRB56/tJ+XF+xnya9kB1oCW4yRY+mRw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [darwin]
+
'@oxc-transform/binding-freebsd-x64@0.95.0':
+
resolution: {integrity: sha512-lNKrHKaDEm8pbKlVbn0rv2L97O0lbA0Tsrxx4GF/HhmdW+NgwGU1pMzZ4tB2QcylbqgKxOB+v9luebHyh1jfgA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [freebsd]
+
'@oxc-transform/binding-linux-arm-gnueabihf@0.95.0':
+
resolution: {integrity: sha512-+VWcLeeizI8IjU+V+o8AmzPuIMiTrGr0vrmXU3CEsV05MrywCuJU+f6ilPs3JBKno9VIwqvRpHB/z39sQabHWg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [linux]
+
'@oxc-transform/binding-linux-arm-musleabihf@0.95.0':
+
resolution: {integrity: sha512-a59xPw84t6VwlvNEGcmuw3feGcKcWOC7uB8oePJ/BVSAV1yayLoB3k6JASwLTZ7N/PNPNUhcw1jDxowgAfBJfg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [linux]
+
'@oxc-transform/binding-linux-arm64-gnu@0.95.0':
+
resolution: {integrity: sha512-NLdrFuEHlmbiC1M1WESFV4luUcB/84GXi+cbnRXhgMjIW/CThRVJ989eTJy59QivkVlLcJSKTiKiKCt0O6TTlQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [linux]
+
'@oxc-transform/binding-linux-arm64-musl@0.95.0':
+
resolution: {integrity: sha512-GL0ffCPW8JlFI0/jeSgCY665yDdojHxA0pbYG+k8oEHOWCYZUZK9AXL+r0oerNEWYJ8CRB+L5Yq87ZtU/YUitw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [linux]
+
'@oxc-transform/binding-linux-riscv64-gnu@0.95.0':
+
resolution: {integrity: sha512-tbH7LaClSmN3YFVo1UjMSe7D6gkb5f+CMIbj9i873UUZomVRmAjC4ygioObfzM+sj/tX0WoTXx5L1YOfQkHL6Q==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [riscv64]
os: [linux]
+
'@oxc-transform/binding-linux-s390x-gnu@0.95.0':
+
resolution: {integrity: sha512-8jMqiURWa0iTiPMg7BWaln89VdhhWzNlPyKM90NaFVVhBIKCr2UEhrQWdpBw/E9C8uWf/4VabBEhfPMK+0yS4w==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [s390x]
os: [linux]
+
'@oxc-transform/binding-linux-x64-gnu@0.95.0':
+
resolution: {integrity: sha512-D5ULJ2uWipsTgfvHIvqmnGkCtB3Fyt2ZN7APRjVO+wLr+HtmnaWddKsLdrRWX/m/6nQ2xQdoQekdJrokYK9LtQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [linux]
+
'@oxc-transform/binding-linux-x64-musl@0.95.0':
+
resolution: {integrity: sha512-DmCGU+FzRezES5wVAGVimZGzYIjMOapXbWpxuz8M8p3nMrfdBEQ5/tpwBp2vRlIohhABy4vhHJByl4c64ENCGQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [linux]
+
'@oxc-transform/binding-wasm32-wasi@0.95.0':
+
resolution: {integrity: sha512-tSo1EU4Whd1gXyae7cwSDouhppkuz6Jkd5LY8Uch9VKsHVSRhDLDW19Mq6VSwtyPxDPTJnJ2jYJWm+n8SYXiXQ==}
engines: {node: '>=14.0.0'}
cpu: [wasm32]
+
'@oxc-transform/binding-win32-arm64-msvc@0.95.0':
+
resolution: {integrity: sha512-6eaxlgj+J5n8zgJTSugqdPLBtKGRqvxYLcvHN8b+U9hVhF/2HG/JCOrcSYV/XgWGNPQiaRVzpR3hGhmFro9QTw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [win32]
+
'@oxc-transform/binding-win32-x64-msvc@0.95.0':
+
resolution: {integrity: sha512-Y8JY79A7fTuBjEXZFu+mHbHzgsV3uJDUuUKeGffpOwI1ayOGCKeBJTiMhksYkiir1xS+DkGLEz73+xse9Is9rw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [win32]
···
'@sec-ant/readable-stream@0.4.1':
resolution: {integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==}
+
'@shikijs/core@3.14.0':
+
resolution: {integrity: sha512-qRSeuP5vlYHCNUIrpEBQFO7vSkR7jn7Kv+5X3FO/zBKVDGQbcnlScD3XhkrHi/R8Ltz0kEjvFR9Szp/XMRbFMw==}
+
'@shikijs/engine-javascript@3.14.0':
+
resolution: {integrity: sha512-3v1kAXI2TsWQuwv86cREH/+FK9Pjw3dorVEykzQDhwrZj0lwsHYlfyARaKmn6vr5Gasf8aeVpb8JkzeWspxOLQ==}
+
'@shikijs/engine-oniguruma@3.14.0':
+
resolution: {integrity: sha512-TNcYTYMbJyy+ZjzWtt0bG5y4YyMIWC2nyePz+CFMWqm+HnZZyy9SWMgo8Z6KBJVIZnx8XUXS8U2afO6Y0g1Oug==}
+
'@shikijs/langs@3.14.0':
+
resolution: {integrity: sha512-DIB2EQY7yPX1/ZH7lMcwrK5pl+ZkP/xoSpUzg9YC8R+evRCCiSQ7yyrvEyBsMnfZq4eBzLzBlugMyTAf13+pzg==}
+
'@shikijs/themes@3.14.0':
+
resolution: {integrity: sha512-fAo/OnfWckNmv4uBoUu6dSlkcBc+SA1xzj5oUSaz5z3KqHtEbUypg/9xxgJARtM6+7RVm0Q6Xnty41xA1ma1IA==}
+
'@shikijs/transformers@3.14.0':
+
resolution: {integrity: sha512-i67zQnY9wLMMnKasonVW1L9fKneSLZDj1ePsA4o0AZWU4uUobmJY9baRDa36z+a9/g0aG76/2tybQvm4hrwxIQ==}
+
'@shikijs/types@3.14.0':
+
resolution: {integrity: sha512-bQGgC6vrY8U/9ObG1Z/vTro+uclbjjD/uG58RvfxKZVD5p9Yc1ka3tVyEFy7BNJLzxuWyHH5NWynP9zZZS59eQ==}
'@shikijs/vscode-textmate@10.0.2':
resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==}
···
'@vue/compiler-core@3.5.22':
resolution: {integrity: sha512-jQ0pFPmZwTEiRNSb+i9Ow/I/cHv2tXYqsnHKKyCQ08irI2kdF5qmYedmF8si8mA7zepUFmJ2hqzS8CQmNOWOkQ==}
'@vue/compiler-dom@3.5.22':
resolution: {integrity: sha512-W8RknzUM1BLkypvdz10OVsGxnMAuSIZs9Wdx1vzA3mL5fNMN15rhrSCLiTm6blWeACwUwizzPVqGJgOGBEN/hA==}
'@vue/compiler-sfc@3.5.22':
resolution: {integrity: sha512-tbTR1zKGce4Lj+JLzFXDq36K4vcSZbJ1RBu8FxcDv1IGRz//Dh2EBqksyGVypz3kXpshIfWKGOCcqpSbyGWRJQ==}
'@vue/compiler-ssr@3.5.22':
resolution: {integrity: sha512-GdgyLvg4R+7T8Nk2Mlighx7XGxq/fJf9jaVofc3IL0EPesTE86cP/8DD1lT3h1JeZr2ySBvyqKQJgbS54IX1Ww==}
'@vue/compiler-vue2@2.7.16':
resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==}
···
'@vue/devtools-api@6.6.4':
resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
+
'@vue/devtools-core@7.7.7':
+
resolution: {integrity: sha512-9z9TLbfC+AjAi1PQyWX+OErjIaJmdFlbDHcD+cAMYKY6Bh5VlsAtCeGyRMrXwIlMEQPukvnWt3gZBLwTAIMKzQ==}
peerDependencies:
vue: ^3.0.0
+
'@vue/devtools-kit@7.7.7':
+
resolution: {integrity: sha512-wgoZtxcTta65cnZ1Q6MbAfePVFxfM+gq0saaeytoph7nEa7yMXoi6sCPy4ufO111B9msnw0VOWjPEFCXuAKRHA==}
+
'@vue/devtools-shared@7.7.7':
+
resolution: {integrity: sha512-+udSj47aRl5aKb0memBvcUG9koarqnxNM5yjuREvqwK6T3ap4mn3Zqqc17QrBFTqSMjr3HK1cvStEZpMDpfdyw==}
'@vue/language-core@2.2.2':
resolution: {integrity: sha512-QotO41kurE5PLf3vrNgGTk3QswO2PdUFjBwNiOi7zMmGhwb25PSTh9hD1MCgKC06AVv+8sZQvlL3Do4TTVHSiQ==}
···
typescript:
optional: true
+
'@vue/reactivity@3.5.22':
+
resolution: {integrity: sha512-f2Wux4v/Z2pqc9+4SmgZC1p73Z53fyD90NFWXiX9AKVnVBEvLFOWCEgJD3GdGnlxPZt01PSlfmLqbLYzY/Fw4A==}
+
'@vue/runtime-core@3.5.22':
+
resolution: {integrity: sha512-EHo4W/eiYeAzRTN5PCextDUZ0dMs9I8mQ2Fy+OkzvRPUYQEyK9yAjbasrMCXbLNhF7P0OUyivLjIy0yc6VrLJQ==}
+
'@vue/runtime-dom@3.5.22':
+
resolution: {integrity: sha512-Av60jsryAkI023PlN7LsqrfPvwfxOd2yAwtReCjeuugTJTkgrksYJJstg1e12qle0NarkfhfFu1ox2D+cQotww==}
+
'@vue/server-renderer@3.5.22':
+
resolution: {integrity: sha512-gXjo+ao0oHYTSswF+a3KRHZ1WszxIqO7u6XwNHqcqb9JfyIL/pbWrrh/xLv7jeDqla9u+LK7yfZKHih1e1RKAQ==}
peerDependencies:
+
vue: 3.5.22
'@vue/shared@3.5.22':
resolution: {integrity: sha512-F4yc6palwq3TT0u+FYf0Ns4Tfl9GRFURDN2gWG7L1ecIaS/4fCIuFOjMTnCyjsu/OK6vaDKLCrGAa+KvvH+h4w==}
+
'@vueuse/core@14.0.0':
+
resolution: {integrity: sha512-d6tKRWkZE8IQElX2aHBxXOMD478fHIYV+Dzm2y9Ag122ICBpNKtGICiXKOhWU3L1kKdttDD9dCMS4bGP3jhCTQ==}
peerDependencies:
vue: ^3.5.0
+
'@vueuse/metadata@14.0.0':
+
resolution: {integrity: sha512-6yoGqbJcMldVCevkFiHDBTB1V5Hq+G/haPlGIuaFZHpXC0HADB0EN1ryQAAceiW+ryS3niUwvdFbGiqHqBrfVA==}
+
'@vueuse/shared@14.0.0':
+
resolution: {integrity: sha512-mTCA0uczBgurRlwVaQHfG0Ja7UdGe4g9mwffiJmvLiTtp1G4AQyIjej6si/k8c8pUwTfVpNufck+23gXptPAkw==}
peerDependencies:
vue: ^3.5.0
···
bindings@1.5.0:
resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==}
+
birpc@2.7.0:
+
resolution: {integrity: sha512-tub/wFGH49vNCm0xraykcY3TcRgX/3JsALYq/Lwrtti+bTyFHkCUAWF5wgYoie8P41wYwig2mIKiqoocr1EkEQ==}
bl@4.1.0:
resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
···
magicast:
optional: true
cac@6.7.14:
resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
engines: {node: '>=8'}
···
resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
engines: {node: '>= 14.16.0'}
chownr@1.1.4:
resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
···
exsolve@1.0.7:
resolution: {integrity: sha512-VO5fQUzZtI6C+vx4w/4BWJpg3s/5l+6pRQEHzFRM8WFi4XffSP1Z+4qi7GbjWbvRQEbdIco5mIMq+zX4rPuLrw==}
extend@3.0.2:
resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
···
engines: {node: '>=16.0.0'}
hasBin: true
+
json-schema-to-zod@2.6.1:
+
resolution: {integrity: sha512-uiHmWH21h9FjKJkRBntfVGTLpYlCZ1n98D0izIlByqQLqpmkQpNTBtfbdP04Na6+43lgsvrShFh2uWLkQDKJuQ==}
hasBin: true
json5@2.2.3:
···
knitwork@1.2.0:
resolution: {integrity: sha512-xYSH7AvuQ6nXkq42x0v5S8/Iry+cfulBz/DJQzhIyESdLD7425jXsPy4vn5cCXU+HhRN2kVw51Vd1K6/By4BQg==}
koa-compose@4.1.0:
resolution: {integrity: sha512-8ODW8TrDuMYvXRwra/Kh7/rJo9BtOfPc6qO8eAfC80CnCvSjSl0bkRM24X6/XBBEyj0v1nRUQ1LyOy3dbqOWXw==}
···
magic-string@0.30.21:
resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
+
magicast@0.3.5:
+
resolution: {integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==}
+
magicast@0.5.1:
resolution: {integrity: sha512-xrHS24IxaLrvuo613F719wvOIv9xPHFWQHuvGUBmPnCA/3MQxKI3b+r7n1jAoDHmsbC5bRhTZYR77invLAxVnw==}
···
mdast-util-phrasing@4.1.0:
resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==}
+
mdast-util-to-hast@13.2.0:
+
resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==}
mdast-util-to-markdown@2.1.2:
resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==}
···
mocked-exports@0.1.1:
resolution: {integrity: sha512-aF7yRQr/Q0O2/4pIXm6PZ5G+jAd7QS4Yu8m+WEeEHGnbo+7mE36CbLSDQiXYV8bVL3NfmdeqPJct0tUlnjVSnA==}
+
modern-tar@0.6.1:
+
resolution: {integrity: sha512-PS5kTfMLBrIP7X7dj3x+N17T1Fc2InnFJAe/pGleM0hT9GhDFkltsLYxB1eQisg55bjnvgLsbTRFYp47AUhcbg==}
engines: {node: '>=18.0.0'}
mrmime@2.0.1:
···
nth-check@2.1.1:
resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
+
nuxt-component-meta@https://pkg.pr.new/nuxt-component-meta@e3eb2c4:
+
resolution: {tarball: https://pkg.pr.new/nuxt-component-meta@e3eb2c4}
+
version: 0.14.0
hasBin: true
nuxt-og-image@5.1.12:
···
peerDependencies:
h3: ^1
+
nuxt@4.2.0:
+
resolution: {integrity: sha512-4qzf2Ymf07dMMj50TZdNZgMqCdzDch8NY3NO2ClucUaIvvsr6wd9+JrDpI1CckSTHwqU37/dIPFpvIQZoeHoYA==}
engines: {node: ^20.19.0 || >=22.12.0}
hasBin: true
peerDependencies:
···
resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
engines: {node: '>= 6'}
ofetch@1.5.1:
resolution: {integrity: sha512-2W4oUZlVaqAPAil6FUg/difl6YhqhUR7x2eZY4bQCko22UXg3hptq9KLQdqFClV+Wu85UX7hNtdGTngi/1BxcA==}
···
oniguruma-parser@0.12.1:
resolution: {integrity: sha512-8Unqkvk1RYc6yq2WBYRj4hdnsAxVze8i7iPfQr8e4uSP3tRv0rpZcbGUDvxfQQcdwHt/e9PrMvGCsa8OqG9X3w==}
+
oniguruma-to-es@4.3.3:
+
resolution: {integrity: sha512-rPiZhzC3wXwE59YQMRDodUwwT9FZ9nNBwQQfsd1wfdtlKEyCdRV0avrTcSZ5xlIvGRVPd/cx6ZN45ECmS39xvg==}
only@0.0.2:
resolution: {integrity: sha512-Fvw+Jemq5fjjyWz6CpKx6w9s7xxqo3+JCyM0WXWeCSOboZ8ABkyvP8ID4CZuChA/wxSx+XSJmdOm8rGVyJ1hdQ==}
···
resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==}
engines: {node: '>=12'}
+
oxc-minify@0.95.0:
+
resolution: {integrity: sha512-3k//447vscNk5JZXVnr2qv0QONjUU7F8Y6ewAPFVQNgdvYh3gCLYCRjQ/DR5kVkqxFgVa8R/FFBV3X5jlztSzw==}
engines: {node: ^20.19.0 || >=22.12.0}
+
oxc-parser@0.95.0:
+
resolution: {integrity: sha512-Te8fE/SmiiKWIrwBwxz5Dod87uYvsbcZ9JAL5ylPg1DevyKgTkxCXnPEaewk1Su2qpfNmry5RHoN+NywWFCG+A==}
engines: {node: ^20.19.0 || >=22.12.0}
+
oxc-transform@0.95.0:
+
resolution: {integrity: sha512-SmS5aThb5K0SoUZgzGbikNBjrGHfOY4X5TEqBlaZb1uy5YgXbUSbpakpZJ13yW36LNqy8Im5+y+sIk5dlzpZ/w==}
engines: {node: ^20.19.0 || >=22.12.0}
oxc-walker@0.5.2:
···
pathe@2.0.3:
resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
+
+
perfect-debounce@1.0.0:
+
resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
perfect-debounce@2.0.0:
resolution: {integrity: sha512-fkEH/OBiKrqqI/yIgjR92lMfs2K8105zt/VT6+7eTjNwisrsh47CeIED9z58zI7DfKdH3uHAn25ziRZn3kgAow==}
···
readdirp@4.1.2:
resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
engines: {node: '>= 14.18.0'}
redis-errors@1.2.0:
resolution: {integrity: sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w==}
···
remark-gfm@4.0.1:
resolution: {integrity: sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==}
+
remark-mdc@3.8.1:
+
resolution: {integrity: sha512-TGFY61OhgziAITAomenbw4THQvEHC7MxZI1kO1YL/VuWQTHZ0RG20G6GGATIFeGnq65IUe7dngiQVcVIeFdB/g==}
remark-parse@11.0.0:
resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==}
···
resolution: {integrity: sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==}
engines: {node: '>= 0.4'}
+
shiki@3.14.0:
+
resolution: {integrity: sha512-J0yvpLI7LSig3Z3acIuDLouV5UCKQqu8qOArwMx+/yPVC3WRMgrP67beaG8F+j4xfEWE0eVC4GeBCIXeOPra1g==}
signal-exit@4.1.0:
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
···
resolution: {integrity: sha512-6NCPkv1ClwH+/BGE9QeoTIl09nuiAt0gS28nn1PvYXsGKRwM2TCbFA2QiilmehPDTXIe684k4rZI1yl3A1PCUw==}
engines: {node: '>=18.12.0'}
unstorage@1.17.2:
resolution: {integrity: sha512-cKEsD6iBWJgOMJ6vW1ID/SYuqNf8oN4yqRk8OYqaVQ3nnkJXOT1PSpaMh2QfzLs78UN5kSNRD2c/mgjT8tX7+w==}
peerDependencies:
···
unwasm@0.3.11:
resolution: {integrity: sha512-Vhp5gb1tusSQw5of/g3Q697srYgMXvwMgXMjcG4ZNga02fDX9coxJ9fAb0Ci38hM2Hv/U1FXRPGgjP2BYqhNoQ==}
+
unwasm@0.4.2:
+
resolution: {integrity: sha512-/DWXXXn63zAbdoQ6jtdbhr1WP2Cz6ax2nwIu4/yqj4617VWmva4UAzNH16q2fD4I6fym4tSAXFT8P89weXn2AA==}
update-browserslist-db@1.1.4:
resolution: {integrity: sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==}
···
peerDependencies:
vite: ^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0 || ^7.0.0-0
+
vite-node@3.2.4:
+
resolution: {integrity: sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg==}
+
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
vite-plugin-checker@0.11.0:
···
'@nuxt/kit':
optional: true
+
vite-plugin-vue-tracer@1.1.0:
+
resolution: {integrity: sha512-SnjWJO58WaVGprPoOKkGYIRPSegQYPUOjjTpRvmYhEpBPqr/KTuy2IhY73hDps/z87UHwQzGKVhuaKhHv3GIaA==}
peerDependencies:
vite: ^6.0.0 || ^7.0.0
vue: ^3.5.0
+
vite@7.2.0:
+
resolution: {integrity: sha512-C/Naxf8H0pBx1PA4BdpT+c/5wdqI9ILMdwjSMILw7tVIh3JsxzZqdeTLmmdaoh5MYUEOyBnM9K3o0DzoZ/fe+w==}
engines: {node: ^20.19.0 || >=22.12.0}
hasBin: true
peerDependencies:
···
vue-bundle-renderer@2.2.0:
resolution: {integrity: sha512-sz/0WEdYH1KfaOm0XaBmRZOWgYTEvUDt6yPYaUzl4E52qzgWLlknaPPTTZmp6benaPTlQAI/hN1x3tAzZygycg==}
+
vue-component-meta@3.1.3:
+
resolution: {integrity: sha512-Rtaa1L5Vu9iQEnL0t7rkhebuUGOWQavAeFl8DS3IGQZUndJoQnW+k4+eLZUnCwjiCA4DV8KKSlLKptbpHxLOGw==}
peerDependencies:
typescript: '*'
+
vue-component-type-helpers@3.1.3:
+
resolution: {integrity: sha512-V1dOD8XYfstOKCnXbWyEJIrhTBMwSyNjv271L1Jlx9ExpNlCSuqOs3OdWrGJ0V544zXufKbcYabi/o+gK8lyfQ==}
vue-devtools-stub@0.1.0:
resolution: {integrity: sha512-RutnB7X8c5hjq39NceArgXg28WZtZpGc3+J16ljMiYnFhKvd8hITxSWQSQ5bvldxMDU6gG5mkxl1MTQLXckVSQ==}
···
peerDependencies:
typescript: '>=5.0.0'
+
vue@3.5.22:
+
resolution: {integrity: sha512-toaZjQ3a/G/mYaLSbV+QsQhIdMo9x5rrqIpYRObsJ6T/J+RyCSFwN2LHNVH9v8uIcljDNa3QzPVdv3Y6b9hAJQ==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
···
resolution: {integrity: sha512-zK7YHHz4ZXpW89AHXUPbQVGKI7uvkd3hzusTdotCg1UxyaVtg0zFJSTfW/Dq5f7OBBVnq6cZIaC8Ti4hb6dtCA==}
engines: {node: '>= 14'}
+
zod-to-json-schema@3.24.6:
+
resolution: {integrity: sha512-h/z3PKvcTcTetyjl1fkj79MHNEjm+HpD6NXheWjzOekY7kV+lwDYnHw+ivHkijnCSMz1yJaWBD9vu/Fcmk+vEg==}
peerDependencies:
+
zod: ^3.24.1
zod@3.25.76:
resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==}
···
'@atcute/atproto@3.1.9':
dependencies:
+
'@atcute/lexicons': 1.2.4
+
'@atcute/bluesky@3.2.10':
dependencies:
'@atcute/atproto': 3.1.9
+
'@atcute/lexicons': 1.2.4
+
'@atcute/client@4.0.5':
dependencies:
'@atcute/identity': 1.1.3
+
'@atcute/lexicons': 1.2.4
'@atcute/identity@1.1.3':
dependencies:
+
'@atcute/lexicons': 1.2.4
'@badrap/valita': 0.4.6
+
'@atcute/lexicons@1.2.4':
dependencies:
'@standard-schema/spec': 1.0.0
esm-env: 1.2.2
···
'@dxup/nuxt@0.2.1(magicast@0.5.1)':
dependencies:
'@dxup/unimport': 0.1.1
+
'@nuxt/kit': 4.2.0(magicast@0.5.1)
chokidar: 4.0.3
pathe: 2.0.3
tinyglobby: 0.2.15
···
transitivePeerDependencies:
- supports-color
+
'@iconify/vue@4.3.0(vue@3.5.22(typescript@5.9.3))':
dependencies:
'@iconify/types': 2.0.0
+
vue: 3.5.22(typescript@5.9.3)
'@ioredis/commands@1.4.0': {}
···
transitivePeerDependencies:
- magicast
+
'@nuxt/content@3.8.0(@libsql/client@0.15.15)(better-sqlite3@12.4.1)(magicast@0.5.1)':
dependencies:
+
'@nuxt/kit': 4.2.0(magicast@0.5.1)
+
'@nuxtjs/mdc': 0.18.2(magicast@0.5.1)
+
'@shikijs/langs': 3.14.0
'@sqlite.org/sqlite-wasm': 3.50.4-build1
'@standard-schema/spec': 1.0.0
'@webcontainer/env': 1.1.1
+
c12: 3.3.1(magicast@0.5.1)
+
chokidar: 4.0.3
consola: 3.4.2
db0: 0.3.4(@libsql/client@0.15.15)(better-sqlite3@12.4.1)
defu: 6.1.4
···
hookable: 5.5.3
jiti: 2.6.1
json-schema-to-typescript: 15.0.4
+
knitwork: 1.2.0
+
mdast-util-to-hast: 13.2.0
mdast-util-to-string: 4.0.0
micromark: 4.0.2
micromark-util-character: 2.1.1
···
micromatch: 4.0.8
minimark: 0.2.0
minimatch: 10.1.1
+
modern-tar: 0.6.1
+
nuxt-component-meta: https://pkg.pr.new/nuxt-component-meta@e3eb2c4(magicast@0.5.1)
nypm: 0.6.2
ohash: 2.0.11
pathe: 2.0.3
pkg-types: 2.3.0
+
remark-mdc: 3.8.1
scule: 1.3.0
+
shiki: 3.14.0
slugify: 1.6.6
socket.io-client: 4.8.1
std-env: 3.10.0
···
unified: 11.0.5
unist-util-stringify-position: 4.0.0
unist-util-visit: 5.0.0
+
unplugin: 2.3.10
zod: 3.25.76
+
zod-to-json-schema: 3.24.6(zod@3.25.76)
optionalDependencies:
'@libsql/client': 0.15.15
better-sqlite3: 12.4.1
···
'@nuxt/devalue@2.0.2': {}
+
'@nuxt/devtools-kit@2.7.0(magicast@0.3.5)(vite@7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))':
dependencies:
+
'@nuxt/kit': 3.20.0(magicast@0.3.5)
execa: 8.0.1
+
vite: 7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1)
transitivePeerDependencies:
- magicast
+
'@nuxt/devtools-kit@2.7.0(magicast@0.5.1)(vite@7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))':
dependencies:
+
'@nuxt/kit': 3.20.0(magicast@0.5.1)
execa: 8.0.1
+
vite: 7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1)
transitivePeerDependencies:
- magicast
+
'@nuxt/devtools-wizard@2.7.0':
dependencies:
consola: 3.4.2
diff: 8.0.2
execa: 8.0.1
+
magicast: 0.3.5
pathe: 2.0.3
pkg-types: 2.3.0
prompts: 2.4.2
semver: 7.7.3
+
'@nuxt/devtools@2.7.0(vite@7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3))':
dependencies:
+
'@nuxt/devtools-kit': 2.7.0(magicast@0.3.5)(vite@7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))
+
'@nuxt/devtools-wizard': 2.7.0
+
'@nuxt/kit': 3.20.0(magicast@0.3.5)
+
'@vue/devtools-core': 7.7.7(vite@7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3))
+
'@vue/devtools-kit': 7.7.7
+
birpc: 2.7.0
consola: 3.4.2
destr: 2.0.5
error-stack-parser-es: 1.0.5
···
is-installed-globally: 1.0.0
launch-editor: 2.12.0
local-pkg: 1.1.2
+
magicast: 0.3.5
nypm: 0.6.2
ohash: 2.0.11
pathe: 2.0.3
+
perfect-debounce: 1.0.0
pkg-types: 2.3.0
semver: 7.7.3
simple-git: 3.30.0
sirv: 3.0.2
structured-clone-es: 1.0.0
tinyglobby: 0.2.15
+
vite: 7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1)
+
vite-plugin-inspect: 11.3.3(@nuxt/kit@3.20.0(magicast@0.3.5))(vite@7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))
+
vite-plugin-vue-tracer: 1.1.0(vite@7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3))
which: 5.0.0
ws: 8.18.3
transitivePeerDependencies:
···
- utf-8-validate
- vue
+
'@nuxt/icon@1.11.0(magicast@0.5.1)(vite@7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3))':
dependencies:
'@iconify/collections': 1.0.614
'@iconify/types': 2.0.0
'@iconify/utils': 2.3.0
+
'@iconify/vue': 4.3.0(vue@3.5.22(typescript@5.9.3))
+
'@nuxt/devtools-kit': 2.7.0(magicast@0.5.1)(vite@7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))
'@nuxt/kit': 3.20.0(magicast@0.5.1)
consola: 3.4.2
local-pkg: 1.1.2
···
- vite
- vue
+
'@nuxt/kit@3.20.0(magicast@0.3.5)':
+
dependencies:
+
c12: 3.3.1(magicast@0.3.5)
+
consola: 3.4.2
+
defu: 6.1.4
+
destr: 2.0.5
+
errx: 0.1.0
+
exsolve: 1.0.7
+
ignore: 7.0.5
+
jiti: 2.6.1
+
klona: 2.0.6
+
knitwork: 1.2.0
+
mlly: 1.8.0
+
ohash: 2.0.11
+
pathe: 2.0.3
+
pkg-types: 2.3.0
+
rc9: 2.1.2
+
scule: 1.3.0
+
semver: 7.7.3
+
tinyglobby: 0.2.15
+
ufo: 1.6.1
+
unctx: 2.4.1
+
untyped: 2.0.0
+
transitivePeerDependencies:
+
- magicast
+
'@nuxt/kit@3.20.0(magicast@0.5.1)':
dependencies:
c12: 3.3.1(magicast@0.5.1)
···
transitivePeerDependencies:
- magicast
+
'@nuxt/nitro-server@4.2.0(@libsql/client@0.15.15)(better-sqlite3@12.4.1)(db0@0.3.4(@libsql/client@0.15.15)(better-sqlite3@12.4.1))(ioredis@5.8.2)(magicast@0.5.1)(nuxt@4.2.0(@biomejs/biome@1.9.4)(@libsql/client@0.15.15)(@parcel/watcher@2.5.1)(@types/node@24.10.0)(@vue/compiler-sfc@3.5.22)(better-sqlite3@12.4.1)(db0@0.3.4(@libsql/client@0.15.15)(better-sqlite3@12.4.1))(ioredis@5.8.2)(magicast@0.5.1)(rollup@4.52.5)(terser@5.44.1)(typescript@5.9.3)(vite@7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue-tsc@2.2.2(typescript@5.9.3))(yaml@2.8.1))(typescript@5.9.3)':
dependencies:
'@nuxt/devalue': 2.0.2
+
'@nuxt/kit': 4.2.0(magicast@0.5.1)
+
'@unhead/vue': 2.0.19(vue@3.5.22(typescript@5.9.3))
+
'@vue/shared': 3.5.22
consola: 3.4.2
defu: 6.1.4
destr: 2.0.5
···
klona: 2.0.6
mocked-exports: 0.1.1
nitropack: 2.12.9(@libsql/client@0.15.15)(better-sqlite3@12.4.1)
+
nuxt: 4.2.0(@biomejs/biome@1.9.4)(@libsql/client@0.15.15)(@parcel/watcher@2.5.1)(@types/node@24.10.0)(@vue/compiler-sfc@3.5.22)(better-sqlite3@12.4.1)(db0@0.3.4(@libsql/client@0.15.15)(better-sqlite3@12.4.1))(ioredis@5.8.2)(magicast@0.5.1)(rollup@4.52.5)(terser@5.44.1)(typescript@5.9.3)(vite@7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue-tsc@2.2.2(typescript@5.9.3))(yaml@2.8.1)
pathe: 2.0.3
pkg-types: 2.3.0
radix3: 1.1.2
···
ufo: 1.6.1
unctx: 2.4.1
unstorage: 1.17.2(db0@0.3.4(@libsql/client@0.15.15)(better-sqlite3@12.4.1))(ioredis@5.8.2)
+
vue: 3.5.22(typescript@5.9.3)
vue-bundle-renderer: 2.2.0
vue-devtools-stub: 0.1.0
transitivePeerDependencies:
···
- uploadthing
- xml2js
+
'@nuxt/schema@4.2.0':
dependencies:
+
'@vue/shared': 3.5.22
defu: 6.1.4
pathe: 2.0.3
pkg-types: 2.3.0
···
transitivePeerDependencies:
- magicast
+
'@nuxt/vite-builder@4.2.0(@biomejs/biome@1.9.4)(@types/node@24.10.0)(magicast@0.5.1)(nuxt@4.2.0(@biomejs/biome@1.9.4)(@libsql/client@0.15.15)(@parcel/watcher@2.5.1)(@types/node@24.10.0)(@vue/compiler-sfc@3.5.22)(better-sqlite3@12.4.1)(db0@0.3.4(@libsql/client@0.15.15)(better-sqlite3@12.4.1))(ioredis@5.8.2)(magicast@0.5.1)(rollup@4.52.5)(terser@5.44.1)(typescript@5.9.3)(vite@7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue-tsc@2.2.2(typescript@5.9.3))(yaml@2.8.1))(rollup@4.52.5)(terser@5.44.1)(typescript@5.9.3)(vue-tsc@2.2.2(typescript@5.9.3))(vue@3.5.22(typescript@5.9.3))(yaml@2.8.1)':
dependencies:
+
'@nuxt/kit': 4.2.0(magicast@0.5.1)
'@rollup/plugin-replace': 6.0.3(rollup@4.52.5)
+
'@vitejs/plugin-vue': 6.0.1(vite@7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3))
+
'@vitejs/plugin-vue-jsx': 5.1.1(vite@7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3))
autoprefixer: 10.4.21(postcss@8.5.6)
consola: 3.4.2
cssnano: 7.1.2(postcss@8.5.6)
···
magic-string: 0.30.21
mlly: 1.8.0
mocked-exports: 0.1.1
+
nuxt: 4.2.0(@biomejs/biome@1.9.4)(@libsql/client@0.15.15)(@parcel/watcher@2.5.1)(@types/node@24.10.0)(@vue/compiler-sfc@3.5.22)(better-sqlite3@12.4.1)(db0@0.3.4(@libsql/client@0.15.15)(better-sqlite3@12.4.1))(ioredis@5.8.2)(magicast@0.5.1)(rollup@4.52.5)(terser@5.44.1)(typescript@5.9.3)(vite@7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue-tsc@2.2.2(typescript@5.9.3))(yaml@2.8.1)
pathe: 2.0.3
pkg-types: 2.3.0
postcss: 8.5.6
···
std-env: 3.10.0
ufo: 1.6.1
unenv: 2.0.0-rc.24
+
vite: 7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1)
+
vite-node: 3.2.4(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1)
+
vite-plugin-checker: 0.11.0(@biomejs/biome@1.9.4)(typescript@5.9.3)(vite@7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue-tsc@2.2.2(typescript@5.9.3))
+
vue: 3.5.22(typescript@5.9.3)
vue-bundle-renderer: 2.2.0
transitivePeerDependencies:
- '@biomejs/biome'
···
- vue-tsc
- yaml
+
'@nuxtjs/mdc@0.18.2(magicast@0.5.1)':
dependencies:
+
'@nuxt/kit': 4.2.0(magicast@0.5.1)
+
'@shikijs/core': 3.14.0
+
'@shikijs/langs': 3.14.0
+
'@shikijs/themes': 3.14.0
+
'@shikijs/transformers': 3.14.0
'@types/hast': 3.0.4
'@types/mdast': 4.0.4
+
'@vue/compiler-core': 3.5.22
consola: 3.4.2
debug: 4.4.3
defu: 6.1.4
···
hast-util-format: 1.1.0
hast-util-to-mdast: 10.1.2
hast-util-to-string: 3.0.1
+
mdast-util-to-hast: 13.2.0
micromark-util-sanitize-uri: 2.0.1
parse5: 8.0.0
pathe: 2.0.3
···
rehype-sort-attributes: 5.0.1
remark-emoji: 5.0.2
remark-gfm: 4.0.1
+
remark-mdc: 3.8.1
remark-parse: 11.0.0
remark-rehype: 11.1.2
remark-stringify: 11.0.0
scule: 1.3.0
+
shiki: 3.14.0
ufo: 1.6.1
unified: 11.0.5
unist-builder: 4.0.0
unist-util-visit: 5.0.0
+
unwasm: 0.4.2
vfile: 6.0.3
transitivePeerDependencies:
- magicast
···
- tsx
- yaml
+
'@oxc-minify/binding-android-arm64@0.95.0':
optional: true
+
'@oxc-minify/binding-darwin-arm64@0.95.0':
optional: true
+
'@oxc-minify/binding-darwin-x64@0.95.0':
optional: true
+
'@oxc-minify/binding-freebsd-x64@0.95.0':
optional: true
+
'@oxc-minify/binding-linux-arm-gnueabihf@0.95.0':
optional: true
+
'@oxc-minify/binding-linux-arm-musleabihf@0.95.0':
optional: true
+
'@oxc-minify/binding-linux-arm64-gnu@0.95.0':
optional: true
+
'@oxc-minify/binding-linux-arm64-musl@0.95.0':
optional: true
+
'@oxc-minify/binding-linux-riscv64-gnu@0.95.0':
optional: true
+
'@oxc-minify/binding-linux-s390x-gnu@0.95.0':
optional: true
+
'@oxc-minify/binding-linux-x64-gnu@0.95.0':
optional: true
+
'@oxc-minify/binding-linux-x64-musl@0.95.0':
optional: true
+
'@oxc-minify/binding-wasm32-wasi@0.95.0':
dependencies:
'@napi-rs/wasm-runtime': 1.0.7
optional: true
+
'@oxc-minify/binding-win32-arm64-msvc@0.95.0':
optional: true
+
'@oxc-minify/binding-win32-x64-msvc@0.95.0':
optional: true
+
'@oxc-parser/binding-android-arm64@0.95.0':
optional: true
+
'@oxc-parser/binding-darwin-arm64@0.95.0':
optional: true
+
'@oxc-parser/binding-darwin-x64@0.95.0':
optional: true
+
'@oxc-parser/binding-freebsd-x64@0.95.0':
optional: true
+
'@oxc-parser/binding-linux-arm-gnueabihf@0.95.0':
optional: true
+
'@oxc-parser/binding-linux-arm-musleabihf@0.95.0':
optional: true
+
'@oxc-parser/binding-linux-arm64-gnu@0.95.0':
optional: true
+
'@oxc-parser/binding-linux-arm64-musl@0.95.0':
optional: true
+
'@oxc-parser/binding-linux-riscv64-gnu@0.95.0':
optional: true
+
'@oxc-parser/binding-linux-s390x-gnu@0.95.0':
optional: true
+
'@oxc-parser/binding-linux-x64-gnu@0.95.0':
optional: true
+
'@oxc-parser/binding-linux-x64-musl@0.95.0':
optional: true
+
'@oxc-parser/binding-wasm32-wasi@0.95.0':
dependencies:
'@napi-rs/wasm-runtime': 1.0.7
optional: true
+
'@oxc-parser/binding-win32-arm64-msvc@0.95.0':
optional: true
+
'@oxc-parser/binding-win32-x64-msvc@0.95.0':
optional: true
+
'@oxc-project/types@0.95.0': {}
+
'@oxc-transform/binding-android-arm64@0.95.0':
optional: true
+
'@oxc-transform/binding-darwin-arm64@0.95.0':
optional: true
+
'@oxc-transform/binding-darwin-x64@0.95.0':
optional: true
+
'@oxc-transform/binding-freebsd-x64@0.95.0':
optional: true
+
'@oxc-transform/binding-linux-arm-gnueabihf@0.95.0':
optional: true
+
'@oxc-transform/binding-linux-arm-musleabihf@0.95.0':
optional: true
+
'@oxc-transform/binding-linux-arm64-gnu@0.95.0':
optional: true
+
'@oxc-transform/binding-linux-arm64-musl@0.95.0':
optional: true
+
'@oxc-transform/binding-linux-riscv64-gnu@0.95.0':
optional: true
+
'@oxc-transform/binding-linux-s390x-gnu@0.95.0':
optional: true
+
'@oxc-transform/binding-linux-x64-gnu@0.95.0':
optional: true
+
'@oxc-transform/binding-linux-x64-musl@0.95.0':
optional: true
+
'@oxc-transform/binding-wasm32-wasi@0.95.0':
dependencies:
'@napi-rs/wasm-runtime': 1.0.7
optional: true
+
'@oxc-transform/binding-win32-arm64-msvc@0.95.0':
optional: true
+
'@oxc-transform/binding-win32-x64-msvc@0.95.0':
optional: true
'@parcel/watcher-android-arm64@2.5.1':
···
'@sec-ant/readable-stream@0.4.1': {}
+
'@shikijs/core@3.14.0':
dependencies:
+
'@shikijs/types': 3.14.0
'@shikijs/vscode-textmate': 10.0.2
'@types/hast': 3.0.4
hast-util-to-html: 9.0.5
+
'@shikijs/engine-javascript@3.14.0':
dependencies:
+
'@shikijs/types': 3.14.0
'@shikijs/vscode-textmate': 10.0.2
+
oniguruma-to-es: 4.3.3
+
'@shikijs/engine-oniguruma@3.14.0':
dependencies:
+
'@shikijs/types': 3.14.0
'@shikijs/vscode-textmate': 10.0.2
+
'@shikijs/langs@3.14.0':
dependencies:
+
'@shikijs/types': 3.14.0
+
'@shikijs/themes@3.14.0':
dependencies:
+
'@shikijs/types': 3.14.0
+
'@shikijs/transformers@3.14.0':
dependencies:
+
'@shikijs/core': 3.14.0
+
'@shikijs/types': 3.14.0
+
'@shikijs/types@3.14.0':
dependencies:
'@shikijs/vscode-textmate': 10.0.2
'@types/hast': 3.0.4
···
'@ungap/structured-clone@1.3.0': {}
+
'@unhead/vue@2.0.19(vue@3.5.22(typescript@5.9.3))':
dependencies:
hookable: 5.5.3
unhead: 2.0.19
+
vue: 3.5.22(typescript@5.9.3)
'@unocss/core@66.5.4': {}
···
- rollup
- supports-color
+
'@vitejs/plugin-vue-jsx@5.1.1(vite@7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3))':
dependencies:
'@babel/core': 7.28.5
'@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.5)
'@babel/plugin-transform-typescript': 7.28.5(@babel/core@7.28.5)
'@rolldown/pluginutils': 1.0.0-beta.47
'@vue/babel-plugin-jsx': 1.5.0(@babel/core@7.28.5)
+
vite: 7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1)
+
vue: 3.5.22(typescript@5.9.3)
transitivePeerDependencies:
- supports-color
+
'@vitejs/plugin-vue@6.0.1(vite@7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3))':
dependencies:
'@rolldown/pluginutils': 1.0.0-beta.29
+
vite: 7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1)
+
vue: 3.5.22(typescript@5.9.3)
'@volar/language-core@2.4.23':
dependencies:
···
path-browserify: 1.0.1
vscode-uri: 3.1.0
+
'@vue-macros/common@3.1.1(vue@3.5.22(typescript@5.9.3))':
dependencies:
'@vue/compiler-sfc': 3.5.22
ast-kit: 2.1.3
···
magic-string-ast: 1.0.3
unplugin-utils: 0.3.1
optionalDependencies:
+
vue: 3.5.22(typescript@5.9.3)
'@vue/babel-helper-vue-transform-on@1.5.0': {}
···
'@babel/types': 7.28.5
'@vue/babel-helper-vue-transform-on': 1.5.0
'@vue/babel-plugin-resolve-type': 1.5.0(@babel/core@7.28.5)
+
'@vue/shared': 3.5.22
optionalDependencies:
'@babel/core': 7.28.5
transitivePeerDependencies:
···
dependencies:
'@babel/parser': 7.28.5
'@vue/shared': 3.5.22
entities: 4.5.0
estree-walker: 2.0.2
source-map-js: 1.2.1
···
'@vue/compiler-core': 3.5.22
'@vue/shared': 3.5.22
'@vue/compiler-sfc@3.5.22':
dependencies:
'@babel/parser': 7.28.5
···
postcss: 8.5.6
source-map-js: 1.2.1
'@vue/compiler-ssr@3.5.22':
dependencies:
'@vue/compiler-dom': 3.5.22
'@vue/shared': 3.5.22
'@vue/compiler-vue2@2.7.16':
dependencies:
de-indent: 1.0.2
···
'@vue/devtools-api@6.6.4': {}
+
'@vue/devtools-core@7.7.7(vite@7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3))':
dependencies:
+
'@vue/devtools-kit': 7.7.7
+
'@vue/devtools-shared': 7.7.7
mitt: 3.0.1
nanoid: 5.1.6
pathe: 2.0.3
+
vite-hot-client: 2.1.0(vite@7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))
+
vue: 3.5.22(typescript@5.9.3)
transitivePeerDependencies:
- vite
+
'@vue/devtools-kit@7.7.7':
dependencies:
+
'@vue/devtools-shared': 7.7.7
+
birpc: 2.7.0
hookable: 5.5.3
mitt: 3.0.1
+
perfect-debounce: 1.0.0
speakingurl: 14.0.1
superjson: 2.2.5
+
'@vue/devtools-shared@7.7.7':
dependencies:
rfdc: 1.4.1
···
dependencies:
'@volar/language-core': 2.4.23
'@vue/compiler-dom': 3.5.22
'@vue/shared': 3.5.22
alien-signals: 3.0.6
muggle-string: 0.4.1
···
optionalDependencies:
typescript: 5.9.3
+
'@vue/reactivity@3.5.22':
dependencies:
+
'@vue/shared': 3.5.22
+
'@vue/runtime-core@3.5.22':
dependencies:
+
'@vue/reactivity': 3.5.22
+
'@vue/shared': 3.5.22
+
'@vue/runtime-dom@3.5.22':
dependencies:
+
'@vue/reactivity': 3.5.22
+
'@vue/runtime-core': 3.5.22
+
'@vue/shared': 3.5.22
csstype: 3.1.3
+
'@vue/server-renderer@3.5.22(vue@3.5.22(typescript@5.9.3))':
dependencies:
+
'@vue/compiler-ssr': 3.5.22
+
'@vue/shared': 3.5.22
+
vue: 3.5.22(typescript@5.9.3)
'@vue/shared@3.5.22': {}
+
'@vueuse/core@14.0.0(vue@3.5.22(typescript@5.9.3))':
dependencies:
'@types/web-bluetooth': 0.0.21
+
'@vueuse/metadata': 14.0.0
+
'@vueuse/shared': 14.0.0(vue@3.5.22(typescript@5.9.3))
+
vue: 3.5.22(typescript@5.9.3)
+
'@vueuse/metadata@14.0.0': {}
+
'@vueuse/shared@14.0.0(vue@3.5.22(typescript@5.9.3))':
dependencies:
+
vue: 3.5.22(typescript@5.9.3)
'@webcontainer/env@1.1.1': {}
···
dependencies:
file-uri-to-path: 1.0.0
+
birpc@2.7.0: {}
bl@4.1.0:
dependencies:
···
dependencies:
run-applescript: 7.1.0
+
c12@3.3.1(magicast@0.3.5):
dependencies:
chokidar: 4.0.3
confbox: 0.2.2
···
pkg-types: 2.3.0
rc9: 2.1.2
optionalDependencies:
+
magicast: 0.3.5
+
c12@3.3.1(magicast@0.5.1):
dependencies:
chokidar: 4.0.3
confbox: 0.2.2
defu: 6.1.4
dotenv: 17.2.3
+
exsolve: 1.0.7
giget: 2.0.0
jiti: 2.6.1
ohash: 2.0.11
···
chokidar@4.0.3:
dependencies:
readdirp: 4.1.2
chownr@1.1.4:
optional: true
···
exsolve@1.0.7: {}
extend@3.0.2: {}
fast-fifo@1.3.2: {}
···
hast-util-from-parse5: 8.0.3
hast-util-to-parse5: 8.0.0
html-void-elements: 3.0.0
+
mdast-util-to-hast: 13.2.0
parse5: 7.3.0
unist-util-position: 5.0.0
unist-util-visit: 5.0.0
···
comma-separated-tokens: 2.0.3
hast-util-whitespace: 3.0.0
html-void-elements: 3.0.0
+
mdast-util-to-hast: 13.2.0
property-information: 7.1.0
space-separated-tokens: 2.0.2
stringify-entities: 4.0.4
···
hast-util-to-text: 4.0.2
hast-util-whitespace: 3.0.0
mdast-util-phrasing: 4.1.0
+
mdast-util-to-hast: 13.2.0
mdast-util-to-string: 4.0.0
rehype-minify-whitespace: 6.0.2
trim-trailing-lines: 2.1.0
···
prettier: 3.6.2
tinyglobby: 0.2.15
+
json-schema-to-zod@2.6.1: {}
json5@2.2.3: {}
···
klona@2.0.6: {}
knitwork@1.2.0: {}
koa-compose@4.1.0: {}
···
dependencies:
'@jridgewell/sourcemap-codec': 1.5.5
+
magicast@0.3.5:
+
dependencies:
+
'@babel/parser': 7.28.5
+
'@babel/types': 7.28.5
+
source-map-js: 1.2.1
+
magicast@0.5.1:
dependencies:
'@babel/parser': 7.28.5
···
'@types/mdast': 4.0.4
unist-util-is: 6.0.1
+
mdast-util-to-hast@13.2.0:
dependencies:
'@types/hast': 3.0.4
'@types/mdast': 4.0.4
···
mocked-exports@0.1.1: {}
+
modern-tar@0.6.1: {}
mrmime@2.0.1: {}
···
dependencies:
boolbase: 1.0.0
+
nuxt-component-meta@https://pkg.pr.new/nuxt-component-meta@e3eb2c4(magicast@0.5.1):
dependencies:
+
'@nuxt/kit': 4.2.0(magicast@0.5.1)
citty: 0.1.6
+
json-schema-to-zod: 2.6.1
mlly: 1.8.0
ohash: 2.0.11
scule: 1.3.0
typescript: 5.9.3
ufo: 1.6.1
+
vue-component-meta: 3.1.3(typescript@5.9.3)
transitivePeerDependencies:
- magicast
+
nuxt-og-image@5.1.12(@unhead/vue@2.0.19(vue@3.5.22(typescript@5.9.3)))(h3@1.15.4)(magicast@0.5.1)(unstorage@1.17.2(db0@0.3.4(@libsql/client@0.15.15)(better-sqlite3@12.4.1))(ioredis@5.8.2))(vite@7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3)):
dependencies:
+
'@nuxt/devtools-kit': 2.7.0(magicast@0.5.1)(vite@7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))
'@nuxt/kit': 4.2.0(magicast@0.5.1)
'@resvg/resvg-js': 2.6.2
'@resvg/resvg-wasm': 2.6.2
+
'@unhead/vue': 2.0.19(vue@3.5.22(typescript@5.9.3))
'@unocss/core': 66.5.4
'@unocss/preset-wind3': 66.5.4
chrome-launcher: 1.2.1
···
image-size: 2.0.2
magic-string: 0.30.21
mocked-exports: 0.1.1
+
nuxt-site-config: 3.2.11(h3@1.15.4)(magicast@0.5.1)(vue@3.5.22(typescript@5.9.3))
nypm: 0.6.2
ofetch: 1.5.1
ohash: 2.0.11
···
- vite
- vue
+
nuxt-site-config-kit@3.2.11(magicast@0.5.1)(vue@3.5.22(typescript@5.9.3)):
dependencies:
'@nuxt/kit': 4.2.0(magicast@0.5.1)
pkg-types: 2.3.0
+
site-config-stack: 3.2.11(vue@3.5.22(typescript@5.9.3))
std-env: 3.10.0
ufo: 1.6.1
transitivePeerDependencies:
- magicast
- vue
+
nuxt-site-config@3.2.11(h3@1.15.4)(magicast@0.5.1)(vue@3.5.22(typescript@5.9.3)):
dependencies:
'@nuxt/kit': 4.2.0(magicast@0.5.1)
h3: 1.15.4
+
nuxt-site-config-kit: 3.2.11(magicast@0.5.1)(vue@3.5.22(typescript@5.9.3))
pathe: 2.0.3
pkg-types: 2.3.0
sirv: 3.0.2
+
site-config-stack: 3.2.11(vue@3.5.22(typescript@5.9.3))
ufo: 1.6.1
transitivePeerDependencies:
- magicast
- vue
+
nuxt@4.2.0(@biomejs/biome@1.9.4)(@libsql/client@0.15.15)(@parcel/watcher@2.5.1)(@types/node@24.10.0)(@vue/compiler-sfc@3.5.22)(better-sqlite3@12.4.1)(db0@0.3.4(@libsql/client@0.15.15)(better-sqlite3@12.4.1))(ioredis@5.8.2)(magicast@0.5.1)(rollup@4.52.5)(terser@5.44.1)(typescript@5.9.3)(vite@7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue-tsc@2.2.2(typescript@5.9.3))(yaml@2.8.1):
dependencies:
'@dxup/nuxt': 0.2.1(magicast@0.5.1)
'@nuxt/cli': 3.30.0(magicast@0.5.1)
+
'@nuxt/devtools': 2.7.0(vite@7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3))
+
'@nuxt/kit': 4.2.0(magicast@0.5.1)
+
'@nuxt/nitro-server': 4.2.0(@libsql/client@0.15.15)(better-sqlite3@12.4.1)(db0@0.3.4(@libsql/client@0.15.15)(better-sqlite3@12.4.1))(ioredis@5.8.2)(magicast@0.5.1)(nuxt@4.2.0(@biomejs/biome@1.9.4)(@libsql/client@0.15.15)(@parcel/watcher@2.5.1)(@types/node@24.10.0)(@vue/compiler-sfc@3.5.22)(better-sqlite3@12.4.1)(db0@0.3.4(@libsql/client@0.15.15)(better-sqlite3@12.4.1))(ioredis@5.8.2)(magicast@0.5.1)(rollup@4.52.5)(terser@5.44.1)(typescript@5.9.3)(vite@7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue-tsc@2.2.2(typescript@5.9.3))(yaml@2.8.1))(typescript@5.9.3)
+
'@nuxt/schema': 4.2.0
'@nuxt/telemetry': 2.6.6(magicast@0.5.1)
+
'@nuxt/vite-builder': 4.2.0(@biomejs/biome@1.9.4)(@types/node@24.10.0)(magicast@0.5.1)(nuxt@4.2.0(@biomejs/biome@1.9.4)(@libsql/client@0.15.15)(@parcel/watcher@2.5.1)(@types/node@24.10.0)(@vue/compiler-sfc@3.5.22)(better-sqlite3@12.4.1)(db0@0.3.4(@libsql/client@0.15.15)(better-sqlite3@12.4.1))(ioredis@5.8.2)(magicast@0.5.1)(rollup@4.52.5)(terser@5.44.1)(typescript@5.9.3)(vite@7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue-tsc@2.2.2(typescript@5.9.3))(yaml@2.8.1))(rollup@4.52.5)(terser@5.44.1)(typescript@5.9.3)(vue-tsc@2.2.2(typescript@5.9.3))(vue@3.5.22(typescript@5.9.3))(yaml@2.8.1)
+
'@unhead/vue': 2.0.19(vue@3.5.22(typescript@5.9.3))
+
'@vue/shared': 3.5.22
c12: 3.3.1(magicast@0.5.1)
chokidar: 4.0.3
compatx: 0.2.0
···
ofetch: 1.5.1
ohash: 2.0.11
on-change: 6.0.1
+
oxc-minify: 0.95.0
+
oxc-parser: 0.95.0
+
oxc-transform: 0.95.0
+
oxc-walker: 0.5.2(oxc-parser@0.95.0)
pathe: 2.0.3
perfect-debounce: 2.0.0
pkg-types: 2.3.0
···
unctx: 2.4.1
unimport: 5.5.0
unplugin: 2.3.10
+
unplugin-vue-router: 0.16.1(@vue/compiler-sfc@3.5.22)(typescript@5.9.3)(vue-router@4.6.3(vue@3.5.22(typescript@5.9.3)))(vue@3.5.22(typescript@5.9.3))
untyped: 2.0.0
+
vue: 3.5.22(typescript@5.9.3)
+
vue-router: 4.6.3(vue@3.5.22(typescript@5.9.3))
optionalDependencies:
'@parcel/watcher': 2.5.1
'@types/node': 24.10.0
···
- '@vercel/blob'
- '@vercel/functions'
- '@vercel/kv'
- '@vue/compiler-sfc'
- aws4fetch
- bare-abort-controller
···
object-hash@3.0.0: {}
ofetch@1.5.1:
dependencies:
destr: 2.0.5
···
oniguruma-parser@0.12.1: {}
+
oniguruma-to-es@4.3.3:
dependencies:
oniguruma-parser: 0.12.1
regex: 6.0.1
···
is-docker: 2.2.1
is-wsl: 2.2.0
+
oxc-minify@0.95.0:
optionalDependencies:
+
'@oxc-minify/binding-android-arm64': 0.95.0
+
'@oxc-minify/binding-darwin-arm64': 0.95.0
+
'@oxc-minify/binding-darwin-x64': 0.95.0
+
'@oxc-minify/binding-freebsd-x64': 0.95.0
+
'@oxc-minify/binding-linux-arm-gnueabihf': 0.95.0
+
'@oxc-minify/binding-linux-arm-musleabihf': 0.95.0
+
'@oxc-minify/binding-linux-arm64-gnu': 0.95.0
+
'@oxc-minify/binding-linux-arm64-musl': 0.95.0
+
'@oxc-minify/binding-linux-riscv64-gnu': 0.95.0
+
'@oxc-minify/binding-linux-s390x-gnu': 0.95.0
+
'@oxc-minify/binding-linux-x64-gnu': 0.95.0
+
'@oxc-minify/binding-linux-x64-musl': 0.95.0
+
'@oxc-minify/binding-wasm32-wasi': 0.95.0
+
'@oxc-minify/binding-win32-arm64-msvc': 0.95.0
+
'@oxc-minify/binding-win32-x64-msvc': 0.95.0
+
oxc-parser@0.95.0:
dependencies:
+
'@oxc-project/types': 0.95.0
optionalDependencies:
+
'@oxc-parser/binding-android-arm64': 0.95.0
+
'@oxc-parser/binding-darwin-arm64': 0.95.0
+
'@oxc-parser/binding-darwin-x64': 0.95.0
+
'@oxc-parser/binding-freebsd-x64': 0.95.0
+
'@oxc-parser/binding-linux-arm-gnueabihf': 0.95.0
+
'@oxc-parser/binding-linux-arm-musleabihf': 0.95.0
+
'@oxc-parser/binding-linux-arm64-gnu': 0.95.0
+
'@oxc-parser/binding-linux-arm64-musl': 0.95.0
+
'@oxc-parser/binding-linux-riscv64-gnu': 0.95.0
+
'@oxc-parser/binding-linux-s390x-gnu': 0.95.0
+
'@oxc-parser/binding-linux-x64-gnu': 0.95.0
+
'@oxc-parser/binding-linux-x64-musl': 0.95.0
+
'@oxc-parser/binding-wasm32-wasi': 0.95.0
+
'@oxc-parser/binding-win32-arm64-msvc': 0.95.0
+
'@oxc-parser/binding-win32-x64-msvc': 0.95.0
+
oxc-transform@0.95.0:
optionalDependencies:
+
'@oxc-transform/binding-android-arm64': 0.95.0
+
'@oxc-transform/binding-darwin-arm64': 0.95.0
+
'@oxc-transform/binding-darwin-x64': 0.95.0
+
'@oxc-transform/binding-freebsd-x64': 0.95.0
+
'@oxc-transform/binding-linux-arm-gnueabihf': 0.95.0
+
'@oxc-transform/binding-linux-arm-musleabihf': 0.95.0
+
'@oxc-transform/binding-linux-arm64-gnu': 0.95.0
+
'@oxc-transform/binding-linux-arm64-musl': 0.95.0
+
'@oxc-transform/binding-linux-riscv64-gnu': 0.95.0
+
'@oxc-transform/binding-linux-s390x-gnu': 0.95.0
+
'@oxc-transform/binding-linux-x64-gnu': 0.95.0
+
'@oxc-transform/binding-linux-x64-musl': 0.95.0
+
'@oxc-transform/binding-wasm32-wasi': 0.95.0
+
'@oxc-transform/binding-win32-arm64-msvc': 0.95.0
+
'@oxc-transform/binding-win32-x64-msvc': 0.95.0
+
oxc-walker@0.5.2(oxc-parser@0.95.0):
dependencies:
magic-regexp: 0.10.0
+
oxc-parser: 0.95.0
package-json-from-dist@1.0.1: {}
···
pathe@1.1.2: {}
pathe@2.0.3: {}
+
+
perfect-debounce@1.0.0: {}
perfect-debounce@2.0.0: {}
···
picomatch: 2.3.1
readdirp@4.1.2: {}
redis-errors@1.2.0: {}
···
transitivePeerDependencies:
- supports-color
+
remark-mdc@3.8.1:
dependencies:
'@types/mdast': 4.0.4
'@types/unist': 3.0.3
···
dependencies:
'@types/hast': 3.0.4
'@types/mdast': 4.0.4
+
mdast-util-to-hast: 13.2.0
unified: 11.0.5
vfile: 6.0.3
···
shell-quote@1.8.3: {}
+
shiki@3.14.0:
dependencies:
+
'@shikijs/core': 3.14.0
+
'@shikijs/engine-javascript': 3.14.0
+
'@shikijs/engine-oniguruma': 3.14.0
+
'@shikijs/langs': 3.14.0
+
'@shikijs/themes': 3.14.0
+
'@shikijs/types': 3.14.0
'@shikijs/vscode-textmate': 10.0.2
'@types/hast': 3.0.4
···
sisteransi@1.0.5: {}
+
site-config-stack@3.2.11(vue@3.5.22(typescript@5.9.3)):
dependencies:
ufo: 1.6.1
+
vue: 3.5.22(typescript@5.9.3)
skin-tone@2.0.0:
dependencies:
···
pathe: 2.0.3
picomatch: 4.0.3
+
unplugin-vue-router@0.16.1(@vue/compiler-sfc@3.5.22)(typescript@5.9.3)(vue-router@4.6.3(vue@3.5.22(typescript@5.9.3)))(vue@3.5.22(typescript@5.9.3)):
dependencies:
'@babel/generator': 7.28.5
+
'@vue-macros/common': 3.1.1(vue@3.5.22(typescript@5.9.3))
+
'@vue/compiler-sfc': 3.5.22
'@vue/language-core': 3.1.3(typescript@5.9.3)
ast-walker-scope: 0.8.3
chokidar: 4.0.3
···
unplugin-utils: 0.3.1
yaml: 2.8.1
optionalDependencies:
+
vue-router: 4.6.3(vue@3.5.22(typescript@5.9.3))
transitivePeerDependencies:
- typescript
- vue
···
picomatch: 4.0.3
webpack-virtual-modules: 0.6.2
unstorage@1.17.2(db0@0.3.4(@libsql/client@0.15.15)(better-sqlite3@12.4.1))(ioredis@5.8.2):
dependencies:
anymatch: 3.1.3
···
pkg-types: 2.3.0
unplugin: 2.3.10
+
unwasm@0.4.2:
dependencies:
+
exsolve: 1.0.7
+
knitwork: 1.2.0
magic-string: 0.30.21
mlly: 1.8.0
pathe: 2.0.3
···
'@types/unist': 3.0.3
vfile-message: 4.0.3
+
vite-dev-rpc@1.1.0(vite@7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1)):
dependencies:
+
birpc: 2.7.0
+
vite: 7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1)
+
vite-hot-client: 2.1.0(vite@7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))
+
vite-hot-client@2.1.0(vite@7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1)):
dependencies:
+
vite: 7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1)
+
vite-node@3.2.4(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1):
dependencies:
cac: 6.7.14
+
debug: 4.4.3
es-module-lexer: 1.7.0
pathe: 2.0.3
+
vite: 7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1)
transitivePeerDependencies:
- '@types/node'
- jiti
···
- sass-embedded
- stylus
- sugarss
+
- supports-color
- terser
- tsx
- yaml
+
vite-plugin-checker@0.11.0(@biomejs/biome@1.9.4)(typescript@5.9.3)(vite@7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue-tsc@2.2.2(typescript@5.9.3)):
dependencies:
'@babel/code-frame': 7.27.1
chokidar: 4.0.3
···
picomatch: 4.0.3
tiny-invariant: 1.3.3
tinyglobby: 0.2.15
+
vite: 7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1)
vscode-uri: 3.1.0
optionalDependencies:
'@biomejs/biome': 1.9.4
typescript: 5.9.3
vue-tsc: 2.2.2(typescript@5.9.3)
+
vite-plugin-inspect@11.3.3(@nuxt/kit@3.20.0(magicast@0.3.5))(vite@7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1)):
dependencies:
ansis: 4.2.0
debug: 4.4.3
···
perfect-debounce: 2.0.0
sirv: 3.0.2
unplugin-utils: 0.3.1
+
vite: 7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1)
+
vite-dev-rpc: 1.1.0(vite@7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))
optionalDependencies:
+
'@nuxt/kit': 3.20.0(magicast@0.3.5)
transitivePeerDependencies:
- supports-color
+
vite-plugin-vue-tracer@1.1.0(vite@7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3)):
dependencies:
estree-walker: 3.0.3
exsolve: 1.0.7
magic-string: 0.30.21
pathe: 2.0.3
source-map-js: 1.2.1
+
vite: 7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1)
+
vue: 3.5.22(typescript@5.9.3)
+
vite@7.2.0(@types/node@24.10.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1):
dependencies:
esbuild: 0.25.12
fdir: 6.5.0(picomatch@4.0.3)
···
dependencies:
ufo: 1.6.1
+
vue-component-meta@3.1.3(typescript@5.9.3):
dependencies:
'@volar/typescript': 2.4.23
+
'@vue/language-core': 3.1.3(typescript@5.9.3)
path-browserify: 1.0.1
typescript: 5.9.3
+
vue-component-type-helpers: 3.1.3
+
vue-component-type-helpers@3.1.3: {}
vue-devtools-stub@0.1.0: {}
+
vue-router@4.6.3(vue@3.5.22(typescript@5.9.3)):
dependencies:
'@vue/devtools-api': 6.6.4
+
vue: 3.5.22(typescript@5.9.3)
vue-tsc@2.2.2(typescript@5.9.3):
dependencies:
···
'@vue/language-core': 2.2.2(typescript@5.9.3)
typescript: 5.9.3
+
vue@3.5.22(typescript@5.9.3):
dependencies:
+
'@vue/compiler-dom': 3.5.22
+
'@vue/compiler-sfc': 3.5.22
+
'@vue/runtime-dom': 3.5.22
+
'@vue/server-renderer': 3.5.22(vue@3.5.22(typescript@5.9.3))
+
'@vue/shared': 3.5.22
optionalDependencies:
typescript: 5.9.3
···
compress-commons: 6.0.2
readable-stream: 4.7.0
+
zod-to-json-schema@3.24.6(zod@3.25.76):
dependencies:
zod: 3.25.76