Code for https://gm112.neocities.org/ gm112.neocities.org/

content: add gallery for zelda collectors edition chore: various package updates and bugfixes

+539 -464
+6
app/app.config.ts
··· 150 150 }, 151 151 }, 152 152 153 + callout: { 154 + slots: { 155 + base: 'text-base font-normal', 156 + }, 157 + }, 158 + 153 159 codeGroup: { 154 160 slots: { 155 161 trigger: 'text-base alttp-text',
app/assets/images/content/2026-03-08/alttp.webp

This is a binary file and will not be displayed.

app/assets/images/content/2026-03-08/collectors-edition-zelda1.png

This is a binary file and will not be displayed.

app/assets/images/content/2026-03-08/collectors-edition-zelda2.png

This is a binary file and will not be displayed.

+35
app/components/gallery.vue
··· 1 + <template> 2 + <span> 3 + <u-carousel 4 + v-slot="{ item }" 5 + :items="items" 6 + :arrows="arrows" 7 + :dots="dots" 8 + :loop="loop" 9 + :class="class" 10 + :ui="ui ?? { container: 'h-64' }" 11 + class="w-full max-w-xs mx-auto" 12 + > 13 + <prose-img 14 + :src="item.src" 15 + :alt="item.alt ?? ''" 16 + :width="item.width ?? containerWidth ?? 800" 17 + :height="item.height ?? containerHeight ?? 600" 18 + :loading="item.loading ?? 'lazy'" 19 + /> 20 + </u-carousel> 21 + </span> 22 + </template> 23 + 24 + <script setup lang="ts"> 25 + import type { CarouselProps } from '@nuxt/ui' 26 + import type { ImgHTMLAttributes } from 'vue' 27 + 28 + defineProps< 29 + { 30 + items: (Omit<ImgHTMLAttributes, 'src'> & { src: string })[] 31 + containerWidth?: number 32 + containerHeight?: number 33 + } & Omit<CarouselProps, 'items'> 34 + >() 35 + </script>
+1 -1
app/components/post/author.vue
··· 2 2 <section class="flex flex-col gap-2"> 3 3 <div class="flex"> 4 4 <nuxt-img 5 - src="/images/sonic-hedgehog.gif" 5 + src="/sonic-hedgehog.gif" 6 6 class="w-16 h-16 object-cover border border-r-0 p-1 light:bg-inverted/15" 7 7 alt="Sonic the Hedgehog pixel art of Sonic laying in a sassy pose, waiting impatiently! :D" 8 8 loading="lazy"
+1 -1
app/components/post/toc.vue
··· 8 8 > 9 9 <template #leading> 10 10 <nuxt-img 11 - src="/images/cucco.png" 11 + src="/cucco.png" 12 12 width="24" 13 13 height="24" 14 14 :alt="$t('components.toc.leading.alt')"
-1
app/composables/use-content.ts
··· 1 1 import type { Collections, ContentNavigationItem } from '@nuxt/content' 2 - import { use_content_path } from '#layers/org.neocities.gm112.layers.base/composables/use-content-path' 3 2 4 3 export function use_content({ 5 4 route,
-2
app/pages/[...slug].vue
··· 21 21 </template> 22 22 23 23 <script setup lang="ts"> 24 - import { use_content_path } from '#layers/org.neocities.gm112.layers.base/composables/use-content-path' 25 - 26 24 definePageMeta({ 27 25 title: 'org.neocities.gm112', 28 26 description: 'gm112 waz here. I will make this into a little corner of the internet soon!',
+1 -1
app/pages/about.vue
··· 52 52 :aria-label="t('cool_stuff.zfgc')" 53 53 > 54 54 <nuxt-img 55 - src="/images/zfgc.gif" 55 + src="/zfgc.gif" 56 56 :alt="t('cool_stuff.zfgc')" 57 57 class="object-cover h-7.75 w-22" 58 58 loading="lazy"
+4 -3
app/pages/list.vue
··· 11 11 <div class="flex gap-2"> 12 12 <span v-if="post.encrypted" class="py-2"> 13 13 <nuxt-img 14 - src="/images/moon-pearl.png" 14 + src="/moon-pearl.png" 15 15 :alt="t('posts.alt.moon_pearl')" 16 16 class="object-cover size-6" 17 17 loading="eager" ··· 19 19 </span> 20 20 <span v-else class="py-2"> 21 21 <nuxt-img 22 - src="/images/alttp-ocarina.png" 22 + src="/alttp-ocarina.png" 23 23 :alt="t('posts.alt.alttp_ocarina')" 24 24 class="object-cover size-6" 25 25 loading="eager" ··· 41 41 </section> 42 42 43 43 <nuxt-img 44 - src="/images/moon-pearl.png" 44 + src="/moon-pearl.png" 45 45 :alt="t('posts.alt.moon_pearl')" 46 46 class="hidden" 47 47 aria-hidden="true" ··· 60 60 `posts_${locale.value}-${moon_pearl.activated.value}`, 61 61 async () => { 62 62 let query = get_query_collection_builder().order('date', 'DESC').order('time', 'ASC') 63 + if (!import.meta.dev) query = query.where('draft', 'IS NULL') 63 64 64 65 if (!moon_pearl.activated.value) return await query.where('encrypted', 'IS NULL').all() 65 66 return await query.all()
+2
content.config.ts
··· 14 14 date: v.string(), 15 15 time: v.string(), 16 16 time_zone: v.string(), 17 + draft: v.optional(v.boolean()), 17 18 encrypted: v.optional(v.boolean()), 19 + carousels: v.optional(v.array(v.record(v.string(), v.string()))), 18 20 }) 19 21 20 22 export default defineContentConfig({
+1 -1
content/blog/en/2026-01-30.md
··· 12 12 13 13 ::span{class="z-0 inline-block overflow-hidden w-1/2"} 14 14 15 - ![sonic](/images/sonic-running.gif){ 15 + ![sonic](/sonic-running.gif){ 16 16 quality="50" 17 17 class="animate-rotate" 18 18 alt="sonic running in a rotating animation"
+6 -6
content/blog/en/2026-02-27.md
··· 96 96 look like a legitimate cart from far away, but as you took a closer look, 97 97 something should look off. ;) 98 98 99 - ![The Label](/images/content/2026-02-27/oot2d-label.png){ 99 + ![The Label](/content/2026-02-27/oot2d-label.png){ 100 100 width="500" 101 101 height="500" 102 102 class="size-64" ··· 281 281 Then, I arrived on the airplane. Opened up the MacBook loaded up GB Studio and then, 282 282 "Oh fuck", I thought to myself. 283 283 284 - ![Ganon from Zelda 1 Sprite](/images/content/2026-02-27/gannonif_854.gif){ 284 + ![Ganon from Zelda 1 Sprite](/content/2026-02-27/gannonif_854.gif){ 285 285 width="37" 286 286 height="35" 287 287 class="h-9.25 w-8.75" ··· 308 308 309 309 ## At the Gaylord 310 310 311 - ![Day 1 in the food court](/images/content/2026-02-27/IMG_4224.webp){ 311 + ![Day 1 in the food court](/content/2026-02-27/IMG_4224.webp){ 312 312 width="500" 313 313 height="500" 314 314 class="size-64" ··· 337 337 We made it to the hotel room, and I plopped on the bed and busted 338 338 out the goods. >\: ) 339 339 340 - ![Flashing Game Boy Carts with my best bud MG-Zero](/images/content/2026-02-27/IMG_4228.webp){ 340 + ![Flashing Game Boy Carts with my best bud MG-Zero](/content/2026-02-27/IMG_4228.webp){ 341 341 width="500" 342 342 height="500" 343 343 class="size-64" ··· 358 358 [Don Patch](https://www.instagram.com/donpatchthecarrot/?hl=en){target="\_blank"}. 359 359 That is all. 360 360 361 - ![Don Patch](/images/content/2026-02-27/IMG_4252.webp){ 361 + ![Don Patch](/content/2026-02-27/IMG_4252.webp){ 362 362 width="500" 363 363 height="500" 364 364 class="size-64" ··· 375 375 last long on the floor, so we made a game out of guessing how long they would last! 376 376 The rest was then handed out. 377 377 378 - ![OOT2D Rick Roll Zelda Cartridge](/images/content/2026-02-27/IMG_4335.webp){ 378 + ![OOT2D Rick Roll Zelda Cartridge](/content/2026-02-27/IMG_4335.webp){ 379 379 width="500" 380 380 height="500" 381 381 class="size-64"
-11
content/blog/en/2026-03-06.md
··· 1 - --- 2 - title: TBD 3 - description: 4 - date: 2026-03-06 5 - time: 12:00:00 6 - time_zone: America/New_York 7 - --- 8 - 9 - @ TBD Excerpt 10 - 11 - <!-- more -->
+64
content/blog/en/2026-03-08.md
··· 1 + --- 2 + title: Zelda Collector's Edition 3 + description: 4 + date: 2026-03-08 5 + time: 15:00:00 6 + time_zone: America/New_York 7 + draft: true 8 + carousels: 9 + - src: content/2026-03-08/alttp.webp 10 + --- 11 + 12 + @ On a Christmas eve in 2003, I opened a christmas present that contained 13 + a GameCube with Zelda Collector's Edition. 14 + For the first time ever in the franchise, we have a way of playing 15 + older Zelda games in a single compilation on the then 16 + current Nintendo console. 17 + 18 + <!-- more --> 19 + 20 + ## Overview 21 + 22 + It's interesting, given the choice of 23 + games. You have: Zelda 1, 2, Ocarina of Time, Majora's Mask, and a demo 24 + of Wind Waker. So in terms of 2D and 3D Zeldas, you have choices of 25 + both styles. And unlike the NES and N64, you have the GameCube 26 + controller to play with, which I think is the superior choice. >\: ) 27 + 28 + ::gallery{:items='[{"src":"content/2026-03-08/collectors-edition-zelda-wind-waker-demo.png","alt":"Zelda Wind Waker Demo"},{"src":"content/2026-03-08/collectors-edition-zelda1.png","alt":"Zelda 1 Collectors Edition"},{"src":"content/2026-03-08/collectors-edition-zelda2.png","alt":"Zelda 2 Collectors Edition"},{"src":"content/2026-03-08/collectors-edition-zelda-oot.png","alt":"Zelda Ocarina of Time Collectors Edition"},{"src":"content/2026-03-08/collectors-edition-zelda-majoras-mask.png","alt":"Zelda Majoras Mask Collectors Edition"},{"src":"content/2026-03-08/collectors-edition-zelda-retrospective.png","alt":"Zelda Collectors Edition Retrospective"},{"src":"content/2026-03-08/collectors-edition-zelda-wind-waker-movie.png","alt":"Zelda Collectors Edition Wind Waker Special Movie"}]' :arrows="true" :dots="true" :loop="true" :ui='{ "container": "h-72" }' :containerWidth='336' :containerHeight='240' } 29 + :: 30 + 31 + ::callout{class="mt-12 mb-12"} 32 + Special thanks to [Zelda Dungeon Wiki](https://www.zeldadungeon.net/wiki/The_Legend_of_Zelda:_Collector%27s_Edition){target="\_blank"} 33 + for the screenshots! 34 + :: 35 + 36 + ## I really missed Zelda: A Link to the Past 37 + 38 + ![Zelda: A Link to the Past Title Screen](content/2026-03-08/alttp.webp){ 39 + width="500" 40 + height="500" 41 + class="size-64" 42 + alt="Zelda: A Link to the Past Title Screen" 43 + loading="lazy" 44 + } 45 + 46 + I remember watching the Retrospective movie and wondering, "Why is there 47 + no A Link to the Past?" 48 + 49 + At the time, my SNES had stopped working a few years before because the power 50 + pin inside of the socket had fallen out. And though there was ZSNES, I preferred 51 + to play it with a proper controller, rather than keyboard so it wasn't exactly 52 + a game I played via emulation at the time. In the collectors edition, 53 + 54 + ### And what about Links Awakening or Oracle of Ages/Seasons? 55 + 56 + TBD. 57 + 58 + ## Wind Waker Demo 59 + 60 + TBD 61 + 62 + ## N64 Experience 63 + 64 + TBD
+1 -1
content/blog/en/moon-pearl/2026-03-06.md content/blog/en/moon-pearl/2026-03-08.md
··· 1 1 --- 2 2 title: TBD 3 3 description: 4 - date: 2026-03-06 4 + date: 2026-03-08 5 5 time: 12:00:00 6 6 time_zone: America/New_York 7 7 encrypted: true
+1 -1
layers/00.base/app/composables/use-moon-pearl.ts
··· 1 1 export function use_moon_pearl() { 2 - const activated = useState('moon_pearl.activated', () => false) 2 + const activated = useState('moon_pearl:activated', () => false) 3 3 4 4 function activate() { 5 5 activated.value = true
+22 -9
layers/00.base/app/layouts/default.vue
··· 25 25 <script setup lang="ts"> 26 26 import type { NavigationMenuItem } from '@nuxt/ui' 27 27 28 + const router = useRouter() 28 29 const head = useLocaleHead() 29 - 30 30 useHead(head) 31 31 // const config = useRuntimeConfig() 32 32 // const moon_pearl_pink_bun = config.public.moon_pearl_pink_bun.split('.')[0] ?? '' 33 - const navigation_items = [ 34 - { label: 'Home', to: '/', prefetchOn: 'interaction' }, 35 - { label: 'Posts', to: '/list', prefetchOn: 'interaction' }, 36 - { label: 'About', to: '/about', prefetchOn: 'interaction' }, 37 - ] satisfies NavigationMenuItem[] 33 + const navigation_route_active_regex = /^\/(list|\d{4}-\d{2}-\d{2})$/ 34 + const navigation_items = computed( 35 + () => 36 + [ 37 + { label: 'Home', to: '/', prefetchOn: 'interaction' }, 38 + { 39 + label: 'Posts', 40 + to: '/list', 41 + prefetchOn: 'interaction', 42 + active: navigation_route_active_regex.test(router.currentRoute.value.fullPath), 43 + }, 44 + { label: 'About', to: '/about', prefetchOn: 'interaction' }, 45 + ] satisfies NavigationMenuItem[], 46 + ) 47 + 48 + // watch(router.currentRoute, incoming_rotue => { 49 + // navigation_items.at(1)!.active = navigation_route_active_regex.test(incoming_rotue.fullPath) 50 + // }) 38 51 39 52 let stop_keyboard_listener: VoidFunction | undefined 40 - const title = useState('page.title', () => "gm112's corner") 41 - const buffer = useState('moon_pearl.buffer', () => '') 53 + const title = useState('page:title', () => "gm112's corner") 54 + const buffer = useState('moon_pearl:buffer', () => '') 42 55 const moon_pearl_pink_bun_sequence = ['left', 'up', 'right', 'left', 'up', 'right'] 43 56 const zeldas_lullaby_sequence_string = moon_pearl_pink_bun_sequence.join('') 44 57 45 - const sword_swing_buffer = useState<string[]>('moon_pearl.sword_swing_buffer', () => []) 58 + const sword_swing_buffer = useState<string[]>('moon_pearl:sword_swing_buffer', () => []) 46 59 const moon_pearl = use_moon_pearl() 47 60 48 61 const reset_timer = useTimeoutFn(() => {
layers/00.base/composables/use-content-path.ts layers/00.base/app/composables/use-content-path.ts
+4 -1
nuxt.config.ts
··· 58 58 periodicSyncForUpdates: 3600, 59 59 }, 60 60 workbox: { 61 - globPatterns: ['**/*'], 61 + globPatterns: ['**/*.{js,css,html,svg,ico,json,wasm,sqlite3,txt}'], 62 62 cleanupOutdatedCaches: true, 63 63 navigationPreload: true, 64 64 navigateFallback: '/', ··· 99 99 devOptions: { 100 100 type: 'module', 101 101 }, 102 + }, 103 + image: { 104 + dir: 'assets/images', 102 105 }, 103 106 })
+19 -4
package.json
··· 20 20 "nuxt": "^4.3.1" 21 21 }, 22 22 "devDependencies": { 23 - "@iconify-json/lucide": "^1.2.95", 23 + "@iconify-json/lucide": "^1.2.96", 24 24 "@iconify-json/pixel": "^1.2.1", 25 25 "@iconify-json/vscode-icons": "^1.2.44", 26 26 "@js-temporal/polyfill": "^0.5.1", 27 27 "@nuxt/test-utils": "4.0.0", 28 28 "@nuxtjs/i18n": "^10.2.3", 29 - "@types/node": "^25.3.3", 29 + "@types/node": "^25.3.5", 30 30 "@valibot/to-json-schema": "^1.5.0", 31 31 "oxfmt": "^0.36.0", 32 32 "oxlint": "^1.51.0", ··· 38 38 "vue-tsc": "^3.2.5" 39 39 }, 40 40 "pnpm": { 41 - "overrides": {}, 41 + "overrides": { 42 + "markdown-it@>=13.0.0 <14.1.1": ">=14.1.1", 43 + "devalue@<=5.6.2": ">=5.6.3", 44 + "tar@<7.5.8": ">=7.5.8", 45 + "minimatch@>=5.0.0 <5.1.7": ">=5.1.7", 46 + "minimatch@>=9.0.0 <9.0.6": ">=9.0.6", 47 + "minimatch@>=10.0.0 <10.2.1": ">=10.2.1", 48 + "rollup@>=4.0.0 <4.59.0": ">=4.59.0", 49 + "minimatch@>=5.0.0 <5.1.8": ">=5.1.8", 50 + "minimatch@>=9.0.0 <9.0.7": ">=9.0.7", 51 + "minimatch@>=10.0.0 <10.2.3": ">=10.2.3", 52 + "serialize-javascript@<=7.0.2": ">=7.0.3", 53 + "tar@<=7.5.9": ">=7.5.10", 54 + "svgo@=4.0.0": ">=4.0.1", 55 + "nanotar@<=0.2.0": ">=0.3.0" 56 + }, 42 57 "patchedDependencies": { 43 58 "@nuxtjs/i18n": "patches/@nuxtjs__i18n.patch" 44 59 } 45 60 }, 46 - "packageManager": "pnpm@10.30.3+sha512.c961d1e0a2d8e354ecaa5166b822516668b7f44cb5bd95122d590dd81922f606f5473b6d23ec4a5be05e7fcd18e8488d47d978bbe981872f1145d06e9a740017" 61 + "packageManager": "pnpm@10.31.0+sha512.e3927388bfaa8078ceb79b748ffc1e8274e84d75163e67bc22e06c0d3aed43dd153151cbf11d7f8301ff4acb98c68bdc5cadf6989532801ffafe3b3e4a63c268" 47 62 }
+371 -421
pnpm-lock.yaml
··· 4 4 autoInstallPeers: true 5 5 excludeLinksFromLockfile: false 6 6 7 + overrides: 8 + markdown-it@>=13.0.0 <14.1.1: '>=14.1.1' 9 + devalue@<=5.6.2: '>=5.6.3' 10 + tar@<7.5.8: '>=7.5.8' 11 + minimatch@>=5.0.0 <5.1.7: '>=5.1.7' 12 + minimatch@>=9.0.0 <9.0.6: '>=9.0.6' 13 + minimatch@>=10.0.0 <10.2.1: '>=10.2.1' 14 + rollup@>=4.0.0 <4.59.0: '>=4.59.0' 15 + minimatch@>=5.0.0 <5.1.8: '>=5.1.8' 16 + minimatch@>=9.0.0 <9.0.7: '>=9.0.7' 17 + minimatch@>=10.0.0 <10.2.3: '>=10.2.3' 18 + serialize-javascript@<=7.0.2: '>=7.0.3' 19 + tar@<=7.5.9: '>=7.5.10' 20 + svgo@=4.0.0: '>=4.0.1' 21 + nanotar@<=0.2.0: '>=0.3.0' 22 + 7 23 patchedDependencies: 8 24 '@nuxtjs/i18n': 9 25 hash: ac0616015af3001274a134d593af55dc8a0e5823f2e43f27991e70d46598c82b ··· 21 37 version: 2.0.0(db0@0.3.4(better-sqlite3@12.6.2))(ioredis@5.9.2)(magicast@0.5.2) 22 38 '@nuxt/ui': 23 39 specifier: 4.5.1 24 - version: 4.5.1(@nuxt/content@3.12.0(@valibot/to-json-schema@1.5.0(valibot@1.2.0(typescript@5.9.3)))(better-sqlite3@12.6.2)(magicast@0.5.2)(valibot@1.2.0(typescript@5.9.3)))(@tiptap/extensions@3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0))(@tiptap/y-tiptap@3.0.2(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.6)(y-protocols@1.0.7(yjs@13.6.29))(yjs@13.6.29))(db0@0.3.4(better-sqlite3@12.6.2))(embla-carousel@8.6.0)(ioredis@5.9.2)(magicast@0.5.2)(tailwindcss@4.2.1)(typescript@5.9.3)(valibot@1.2.0(typescript@5.9.3))(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue-router@4.6.4(vue@3.5.28(typescript@5.9.3)))(vue@3.5.28(typescript@5.9.3))(yjs@13.6.29)(zod@3.25.76) 40 + version: 4.5.1(@nuxt/content@3.12.0(@valibot/to-json-schema@1.5.0(valibot@1.2.0(typescript@5.9.3)))(better-sqlite3@12.6.2)(magicast@0.5.2)(valibot@1.2.0(typescript@5.9.3)))(@tiptap/extensions@3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0))(@tiptap/y-tiptap@3.0.2(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.6)(y-protocols@1.0.7(yjs@13.6.29))(yjs@13.6.29))(db0@0.3.4(better-sqlite3@12.6.2))(embla-carousel@8.6.0)(ioredis@5.9.2)(magicast@0.5.2)(tailwindcss@4.2.1)(typescript@5.9.3)(valibot@1.2.0(typescript@5.9.3))(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue-router@4.6.4(vue@3.5.28(typescript@5.9.3)))(vue@3.5.28(typescript@5.9.3))(yjs@13.6.29)(zod@3.25.76) 25 41 '@vite-pwa/nuxt': 26 42 specifier: 1.1.1 27 - version: 1.1.1(magicast@0.5.2)(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(workbox-build@7.4.0)(workbox-window@7.4.0) 43 + version: 1.1.1(magicast@0.5.2)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(workbox-build@7.4.0)(workbox-window@7.4.0) 28 44 '@vueuse/nuxt': 29 45 specifier: 14.2.1 30 - version: 14.2.1(magicast@0.5.2)(nuxt@4.3.1(@parcel/watcher@2.5.6)(@types/node@25.3.3)(@vue/compiler-sfc@3.5.28)(better-sqlite3@12.6.2)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.6.2))(eslint@10.0.0(jiti@2.6.1))(ioredis@5.9.2)(lightningcss@1.31.1)(magicast@0.5.2)(optionator@0.9.4)(oxlint@1.51.0)(rolldown@1.0.0-rc.5)(rollup@4.57.1)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3))(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3)) 46 + version: 14.2.1(magicast@0.5.2)(nuxt@4.3.1(@parcel/watcher@2.5.6)(@types/node@25.3.5)(@vue/compiler-sfc@3.5.28)(better-sqlite3@12.6.2)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.6.2))(eslint@10.0.0(jiti@2.6.1))(ioredis@5.9.2)(lightningcss@1.31.1)(magicast@0.5.2)(optionator@0.9.4)(oxlint@1.51.0)(rolldown@1.0.0-rc.5)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3))(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3)) 31 47 better-sqlite3: 32 48 specifier: ^12.6.2 33 49 version: 12.6.2 34 50 nuxt: 35 51 specifier: ^4.3.1 36 - version: 4.3.1(@parcel/watcher@2.5.6)(@types/node@25.3.3)(@vue/compiler-sfc@3.5.28)(better-sqlite3@12.6.2)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.6.2))(eslint@10.0.0(jiti@2.6.1))(ioredis@5.9.2)(lightningcss@1.31.1)(magicast@0.5.2)(optionator@0.9.4)(oxlint@1.51.0)(rolldown@1.0.0-rc.5)(rollup@4.57.1)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3))(yaml@2.8.2) 52 + version: 4.3.1(@parcel/watcher@2.5.6)(@types/node@25.3.5)(@vue/compiler-sfc@3.5.28)(better-sqlite3@12.6.2)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.6.2))(eslint@10.0.0(jiti@2.6.1))(ioredis@5.9.2)(lightningcss@1.31.1)(magicast@0.5.2)(optionator@0.9.4)(oxlint@1.51.0)(rolldown@1.0.0-rc.5)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3))(yaml@2.8.2) 37 53 devDependencies: 38 54 '@iconify-json/lucide': 39 - specifier: ^1.2.95 40 - version: 1.2.95 55 + specifier: ^1.2.96 56 + version: 1.2.96 41 57 '@iconify-json/pixel': 42 58 specifier: ^1.2.1 43 59 version: 1.2.1 ··· 49 65 version: 0.5.1 50 66 '@nuxt/test-utils': 51 67 specifier: 4.0.0 52 - version: 4.0.0(magicast@0.5.2)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vitest@4.0.18(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)) 68 + version: 4.0.0(magicast@0.5.2)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vitest@4.0.18(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)) 53 69 '@nuxtjs/i18n': 54 70 specifier: ^10.2.3 55 - version: 10.2.3(patch_hash=ac0616015af3001274a134d593af55dc8a0e5823f2e43f27991e70d46598c82b)(@vue/compiler-dom@3.5.28)(db0@0.3.4(better-sqlite3@12.6.2))(eslint@10.0.0(jiti@2.6.1))(ioredis@5.9.2)(magicast@0.5.2)(rollup@4.57.1)(vue@3.5.28(typescript@5.9.3)) 71 + version: 10.2.3(patch_hash=ac0616015af3001274a134d593af55dc8a0e5823f2e43f27991e70d46598c82b)(@vue/compiler-dom@3.5.28)(db0@0.3.4(better-sqlite3@12.6.2))(eslint@10.0.0(jiti@2.6.1))(ioredis@5.9.2)(magicast@0.5.2)(rollup@4.59.0)(vue@3.5.28(typescript@5.9.3)) 56 72 '@types/node': 57 - specifier: ^25.3.3 58 - version: 25.3.3 73 + specifier: ^25.3.5 74 + version: 25.3.5 59 75 '@valibot/to-json-schema': 60 76 specifier: ^1.5.0 61 77 version: 1.5.0(valibot@1.2.0(typescript@5.9.3)) ··· 76 92 version: 1.2.0(typescript@5.9.3) 77 93 vite: 78 94 specifier: ^7.3.1 79 - version: 7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 95 + version: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 80 96 vitest: 81 97 specifier: ^4.0.18 82 - version: 4.0.18(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 98 + version: 4.0.18(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 83 99 vue-tsc: 84 100 specifier: ^3.2.5 85 101 version: 3.2.5(typescript@5.9.3) ··· 139 155 peerDependencies: 140 156 '@babel/core': ^7.0.0 141 157 142 - '@babel/helper-define-polyfill-provider@0.6.6': 143 - resolution: {integrity: sha512-mOAsxeeKkUKayvZR3HeTYD/fICpCPLJrU5ZjelT/PA6WHtNDBOE436YiaEUvHN454bRM3CebhDsIpieCc4texA==} 158 + '@babel/helper-define-polyfill-provider@0.6.7': 159 + resolution: {integrity: sha512-6Fqi8MtQ/PweQ9xvux65emkLQ83uB+qAVtfHkC9UodyHMIZdxNI01HjLCLUtybElp2KY2XNE0nOgyP1E1vXw9w==} 144 160 peerDependencies: 145 161 '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 146 162 ··· 982 998 resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==} 983 999 engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 984 1000 985 - '@eslint/config-array@0.23.2': 986 - resolution: {integrity: sha512-YF+fE6LV4v5MGWRGj7G404/OZzGNepVF8fxk7jqmqo3lrza7a0uUcDnROGRBG1WFC1omYUS/Wp1f42i0M+3Q3A==} 1001 + '@eslint/config-array@0.23.3': 1002 + resolution: {integrity: sha512-j+eEWmB6YYLwcNOdlwQ6L2OsptI/LO6lNBuLIqe5R7RetD658HLoF+Mn7LzYmAWWNNzdC6cqP+L6r8ujeYXWLw==} 987 1003 engines: {node: ^20.19.0 || ^22.13.0 || >=24} 988 1004 989 - '@eslint/config-helpers@0.5.2': 990 - resolution: {integrity: sha512-a5MxrdDXEvqnIq+LisyCX6tQMPF/dSJpCfBgBauY+pNZ28yCtSsTvyTYrMhaI+LK26bVyCJfJkT0u8KIj2i1dQ==} 1005 + '@eslint/config-helpers@0.5.3': 1006 + resolution: {integrity: sha512-lzGN0onllOZCGroKJmRwY6QcEHxbjBw1gwB8SgRSqK8YbbtEXMvKynsXc3553ckIEBxsbMBU7oOZXKIPGZNeZw==} 991 1007 engines: {node: ^20.19.0 || ^22.13.0 || >=24} 992 1008 993 - '@eslint/core@1.1.0': 994 - resolution: {integrity: sha512-/nr9K9wkr3P1EzFTdFdMoLuo1PmIxjmwvPozwoSodjNBdefGujXQUF93u1DDZpEaTuDvMsIQddsd35BwtrW9Xw==} 1009 + '@eslint/core@1.1.1': 1010 + resolution: {integrity: sha512-QUPblTtE51/7/Zhfv8BDwO0qkkzQL7P/aWWbqcf4xWLEYn1oKjdO0gglQBB4GAsu7u6wjijbCmzsUTy6mnk6oQ==} 995 1011 engines: {node: ^20.19.0 || ^22.13.0 || >=24} 996 1012 997 - '@eslint/object-schema@3.0.2': 998 - resolution: {integrity: sha512-HOy56KJt48Bx8KmJ+XGQNSUMT/6dZee/M54XyUyuvTvPXJmsERRvBchsUVx1UMe1WwIH49XLAczNC7V2INsuUw==} 1013 + '@eslint/object-schema@3.0.3': 1014 + resolution: {integrity: sha512-iM869Pugn9Nsxbh/YHRqYiqd23AmIbxJOcpUMOuWCVNdoQJ5ZtwL6h3t0bcZzJUlC3Dq9jCFCESBZnX0GTv7iQ==} 999 1015 engines: {node: ^20.19.0 || ^22.13.0 || >=24} 1000 1016 1001 - '@eslint/plugin-kit@0.6.0': 1002 - resolution: {integrity: sha512-bIZEUzOI1jkhviX2cp5vNyXQc6olzb2ohewQubuYlMXZ2Q/XjBO0x0XhGPvc9fjSIiUN0vw+0hq53BJ4eQSJKQ==} 1017 + '@eslint/plugin-kit@0.6.1': 1018 + resolution: {integrity: sha512-iH1B076HoAshH1mLpHMgwdGeTs0CYwL0SPMkGuSebZrwBp16v415e9NZXg2jtrqPVQjf6IANe2Vtlr5KswtcZQ==} 1003 1019 engines: {node: ^20.19.0 || ^22.13.0 || >=24} 1004 1020 1005 1021 '@fastify/accept-negotiator@2.0.1': ··· 1033 1049 resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==} 1034 1050 engines: {node: '>=18.18'} 1035 1051 1036 - '@iconify-json/lucide@1.2.95': 1037 - resolution: {integrity: sha512-SxDM/NEJtcGGAiLAnaZ7rcmVxkJI8esswTZLCm5BfNcoPf/yawIImb4nNfsu4dtFzP/Cl6KRg+vZq521zOUOnQ==} 1052 + '@iconify-json/lucide@1.2.96': 1053 + resolution: {integrity: sha512-EICTusj67lvSmEaH/Lhe68ZyzcgfcPNpY00exAOkoo+z2fnLeNy31mdE3E/4/q8WjzZrICAZDxY3d6j7LzkgNA==} 1038 1054 1039 1055 '@iconify-json/pixel@1.2.1': 1040 1056 resolution: {integrity: sha512-XwzURAMyZ/BJKeygh4PloKo9cUvS8GfcePueApzwrePvmwCwYT8SC581AQLxJHJl2FZjGWmUMVQ2FN3b9/cYyw==} ··· 1285 1301 '@ioredis/commands@1.5.0': 1286 1302 resolution: {integrity: sha512-eUgLqrMf8nJkZxT24JvVRrQya1vZkQh8BBeYNwGDqa5I0VUi8ACx7uFvAaLxintokpTenkK6DASvo/bvNbBGow==} 1287 1303 1288 - '@isaacs/balanced-match@4.0.1': 1289 - resolution: {integrity: sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==} 1290 - engines: {node: 20 || >=22} 1291 - 1292 - '@isaacs/brace-expansion@5.0.1': 1293 - resolution: {integrity: sha512-WMz71T1JS624nWj2n2fnYAuPovhv7EUhk69R6i9dsVyzxt5eM3bjwvgk9L+APE1TRscGysAVMANkB0jh0LQZrQ==} 1294 - engines: {node: 20 || >=22} 1295 - 1296 1304 '@isaacs/cliui@8.0.2': 1297 1305 resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} 1298 1306 engines: {node: '>=12'} ··· 1345 1353 '@miyaneee/rollup-plugin-json5@1.2.0': 1346 1354 resolution: {integrity: sha512-JjTIaXZp9WzhUHpElrqPnl1AzBi/rvRs065F71+aTmlqvTMVkdbjZ8vfFl4nRlgJy+TPBw69ZK4pwFdmOAt4aA==} 1347 1355 peerDependencies: 1348 - rollup: ^1.20.0 || ^2.0.0 || ^3.0.0 || ^4.0.0 1356 + rollup: '>=4.59.0' 1349 1357 1350 1358 '@napi-rs/wasm-runtime@1.1.1': 1351 1359 resolution: {integrity: sha512-p64ah1M1ld8xjWv3qbvFwHiFVWrq1yFvV4f7w+mzaqiR4IlSgkqhcRdHwsGgomwzBH51sRY4NEowLxnaBjcW/A==} ··· 2581 2589 resolution: {integrity: sha512-tPCzJOtS7uuVZd+xPhoy5W4vThe6KWXNmsFCNktaAh5RTqcLiSfT4huPQIXkgJ6YCOjJHvecOAzQxLFhPxKr+g==} 2582 2590 engines: {node: '>=20.19.0'} 2583 2591 peerDependencies: 2584 - rollup: '>=4.0.0' 2592 + rollup: '>=4.59.0' 2585 2593 peerDependenciesMeta: 2586 2594 rollup: 2587 2595 optional: true ··· 2601 2609 resolution: {integrity: sha512-U2YHaxR2cU/yAiwKJtJRhnyLk7cifnQw0zUpISsocBDoHDJn+HTV74ABqnwr5bEgWUwFZC9oFL6wLe21lHu5eQ==} 2602 2610 engines: {node: '>=16.0.0 || 14 >= 14.17'} 2603 2611 peerDependencies: 2604 - rollup: ^2.68.0||^3.0.0||^4.0.0 2612 + rollup: '>=4.59.0' 2605 2613 peerDependenciesMeta: 2606 2614 rollup: 2607 2615 optional: true ··· 2610 2618 resolution: {integrity: sha512-2+DEJbNBoPROPkgTDNe8/1YXWcqxbN5DTjASVIOx8HS+pITXushyNiBV56RB08zuptzz8gT3YfkqriTBVycepg==} 2611 2619 engines: {node: '>=14.0.0'} 2612 2620 peerDependencies: 2613 - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 2621 + rollup: '>=4.59.0' 2614 2622 peerDependenciesMeta: 2615 2623 rollup: 2616 2624 optional: true ··· 2619 2627 resolution: {integrity: sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA==} 2620 2628 engines: {node: '>=14.0.0'} 2621 2629 peerDependencies: 2622 - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 2630 + rollup: '>=4.59.0' 2623 2631 peerDependenciesMeta: 2624 2632 rollup: 2625 2633 optional: true ··· 2628 2636 resolution: {integrity: sha512-tgg6b91pAybXHJQMAAwW9VuWBO6Thi+q7BCNARLwSqlmsHz0XYURtGvh/AuwSADXSI4h/2uHbs7s4FzlZDGSGA==} 2629 2637 engines: {node: '>=14.0.0'} 2630 2638 peerDependencies: 2631 - rollup: ^2.78.0||^3.0.0||^4.0.0 2639 + rollup: '>=4.59.0' 2632 2640 peerDependenciesMeta: 2633 2641 rollup: 2634 2642 optional: true ··· 2637 2645 resolution: {integrity: sha512-lUYM3UBGuM93CnMPG1YocWu7X802BrNF3jW2zny5gQyLQgRFJhV1Sq0Zi74+dh/6NBx1DxFC4b4GXg9wUCG5Qg==} 2638 2646 engines: {node: '>=14.0.0'} 2639 2647 peerDependencies: 2640 - rollup: ^2.78.0||^3.0.0||^4.0.0 2648 + rollup: '>=4.59.0' 2641 2649 peerDependenciesMeta: 2642 2650 rollup: 2643 2651 optional: true ··· 2651 2659 resolution: {integrity: sha512-J4RZarRvQAm5IF0/LwUUg+obsm+xZhYnbMXmXROyoSE1ATJe3oXSb9L5MMppdxP2ylNSjv6zFBwKYjcKMucVfA==} 2652 2660 engines: {node: '>=14.0.0'} 2653 2661 peerDependencies: 2654 - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 2662 + rollup: '>=4.59.0' 2655 2663 peerDependenciesMeta: 2656 2664 rollup: 2657 2665 optional: true ··· 2660 2668 resolution: {integrity: sha512-XHeJC5Bgvs8LfukDwWZp7yeqin6ns8RTl2B9avbejt6tZqsqvVoWI7ZTQrcNsfKEDWBTnTxM8nMDkO2IFFbd0A==} 2661 2669 engines: {node: '>=14.0.0'} 2662 2670 peerDependencies: 2663 - rollup: ^2.0.0||^3.0.0||^4.0.0 2671 + rollup: '>=4.59.0' 2664 2672 peerDependenciesMeta: 2665 2673 rollup: 2666 2674 optional: true ··· 2669 2677 resolution: {integrity: sha512-RpupciIeZMUqhgFE97ba0s98mOFS7CWzN3EJNhJkqSv9XLlWYtwVdtE6cDw6ASOF/sZVFS7kRJXftaqM2Vakdw==} 2670 2678 engines: {node: '>=14.0.0'} 2671 2679 peerDependencies: 2672 - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 2680 + rollup: '>=4.59.0' 2673 2681 peerDependenciesMeta: 2674 2682 rollup: 2675 2683 optional: true ··· 2684 2692 resolution: {integrity: sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==} 2685 2693 engines: {node: '>=14.0.0'} 2686 2694 peerDependencies: 2687 - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 2695 + rollup: '>=4.59.0' 2688 2696 peerDependenciesMeta: 2689 2697 rollup: 2690 2698 optional: true 2691 2699 2692 - '@rollup/rollup-android-arm-eabi@4.57.1': 2693 - resolution: {integrity: sha512-A6ehUVSiSaaliTxai040ZpZ2zTevHYbvu/lDoeAteHI8QnaosIzm4qwtezfRg1jOYaUmnzLX1AOD6Z+UJjtifg==} 2700 + '@rollup/rollup-android-arm-eabi@4.59.0': 2701 + resolution: {integrity: sha512-upnNBkA6ZH2VKGcBj9Fyl9IGNPULcjXRlg0LLeaioQWueH30p6IXtJEbKAgvyv+mJaMxSm1l6xwDXYjpEMiLMg==} 2694 2702 cpu: [arm] 2695 2703 os: [android] 2696 2704 2697 - '@rollup/rollup-android-arm64@4.57.1': 2698 - resolution: {integrity: sha512-dQaAddCY9YgkFHZcFNS/606Exo8vcLHwArFZ7vxXq4rigo2bb494/xKMMwRRQW6ug7Js6yXmBZhSBRuBvCCQ3w==} 2705 + '@rollup/rollup-android-arm64@4.59.0': 2706 + resolution: {integrity: sha512-hZ+Zxj3SySm4A/DylsDKZAeVg0mvi++0PYVceVyX7hemkw7OreKdCvW2oQ3T1FMZvCaQXqOTHb8qmBShoqk69Q==} 2699 2707 cpu: [arm64] 2700 2708 os: [android] 2701 2709 2702 - '@rollup/rollup-darwin-arm64@4.57.1': 2703 - resolution: {integrity: sha512-crNPrwJOrRxagUYeMn/DZwqN88SDmwaJ8Cvi/TN1HnWBU7GwknckyosC2gd0IqYRsHDEnXf328o9/HC6OkPgOg==} 2710 + '@rollup/rollup-darwin-arm64@4.59.0': 2711 + resolution: {integrity: sha512-W2Psnbh1J8ZJw0xKAd8zdNgF9HRLkdWwwdWqubSVk0pUuQkoHnv7rx4GiF9rT4t5DIZGAsConRE3AxCdJ4m8rg==} 2704 2712 cpu: [arm64] 2705 2713 os: [darwin] 2706 2714 2707 - '@rollup/rollup-darwin-x64@4.57.1': 2708 - resolution: {integrity: sha512-Ji8g8ChVbKrhFtig5QBV7iMaJrGtpHelkB3lsaKzadFBe58gmjfGXAOfI5FV0lYMH8wiqsxKQ1C9B0YTRXVy4w==} 2715 + '@rollup/rollup-darwin-x64@4.59.0': 2716 + resolution: {integrity: sha512-ZW2KkwlS4lwTv7ZVsYDiARfFCnSGhzYPdiOU4IM2fDbL+QGlyAbjgSFuqNRbSthybLbIJ915UtZBtmuLrQAT/w==} 2709 2717 cpu: [x64] 2710 2718 os: [darwin] 2711 2719 2712 - '@rollup/rollup-freebsd-arm64@4.57.1': 2713 - resolution: {integrity: sha512-R+/WwhsjmwodAcz65guCGFRkMb4gKWTcIeLy60JJQbXrJ97BOXHxnkPFrP+YwFlaS0m+uWJTstrUA9o+UchFug==} 2720 + '@rollup/rollup-freebsd-arm64@4.59.0': 2721 + resolution: {integrity: sha512-EsKaJ5ytAu9jI3lonzn3BgG8iRBjV4LxZexygcQbpiU0wU0ATxhNVEpXKfUa0pS05gTcSDMKpn3Sx+QB9RlTTA==} 2714 2722 cpu: [arm64] 2715 2723 os: [freebsd] 2716 2724 2717 - '@rollup/rollup-freebsd-x64@4.57.1': 2718 - resolution: {integrity: sha512-IEQTCHeiTOnAUC3IDQdzRAGj3jOAYNr9kBguI7MQAAZK3caezRrg0GxAb6Hchg4lxdZEI5Oq3iov/w/hnFWY9Q==} 2725 + '@rollup/rollup-freebsd-x64@4.59.0': 2726 + resolution: {integrity: sha512-d3DuZi2KzTMjImrxoHIAODUZYoUUMsuUiY4SRRcJy6NJoZ6iIqWnJu9IScV9jXysyGMVuW+KNzZvBLOcpdl3Vg==} 2719 2727 cpu: [x64] 2720 2728 os: [freebsd] 2721 2729 2722 - '@rollup/rollup-linux-arm-gnueabihf@4.57.1': 2723 - resolution: {integrity: sha512-F8sWbhZ7tyuEfsmOxwc2giKDQzN3+kuBLPwwZGyVkLlKGdV1nvnNwYD0fKQ8+XS6hp9nY7B+ZeK01EBUE7aHaw==} 2730 + '@rollup/rollup-linux-arm-gnueabihf@4.59.0': 2731 + resolution: {integrity: sha512-t4ONHboXi/3E0rT6OZl1pKbl2Vgxf9vJfWgmUoCEVQVxhW6Cw/c8I6hbbu7DAvgp82RKiH7TpLwxnJeKv2pbsw==} 2724 2732 cpu: [arm] 2725 2733 os: [linux] 2726 2734 libc: [glibc] 2727 2735 2728 - '@rollup/rollup-linux-arm-musleabihf@4.57.1': 2729 - resolution: {integrity: sha512-rGfNUfn0GIeXtBP1wL5MnzSj98+PZe/AXaGBCRmT0ts80lU5CATYGxXukeTX39XBKsxzFpEeK+Mrp9faXOlmrw==} 2736 + '@rollup/rollup-linux-arm-musleabihf@4.59.0': 2737 + resolution: {integrity: sha512-CikFT7aYPA2ufMD086cVORBYGHffBo4K8MQ4uPS/ZnY54GKj36i196u8U+aDVT2LX4eSMbyHtyOh7D7Zvk2VvA==} 2730 2738 cpu: [arm] 2731 2739 os: [linux] 2732 2740 libc: [musl] 2733 2741 2734 - '@rollup/rollup-linux-arm64-gnu@4.57.1': 2735 - resolution: {integrity: sha512-MMtej3YHWeg/0klK2Qodf3yrNzz6CGjo2UntLvk2RSPlhzgLvYEB3frRvbEF2wRKh1Z2fDIg9KRPe1fawv7C+g==} 2742 + '@rollup/rollup-linux-arm64-gnu@4.59.0': 2743 + resolution: {integrity: sha512-jYgUGk5aLd1nUb1CtQ8E+t5JhLc9x5WdBKew9ZgAXg7DBk0ZHErLHdXM24rfX+bKrFe+Xp5YuJo54I5HFjGDAA==} 2736 2744 cpu: [arm64] 2737 2745 os: [linux] 2738 2746 libc: [glibc] 2739 2747 2740 - '@rollup/rollup-linux-arm64-musl@4.57.1': 2741 - resolution: {integrity: sha512-1a/qhaaOXhqXGpMFMET9VqwZakkljWHLmZOX48R0I/YLbhdxr1m4gtG1Hq7++VhVUmf+L3sTAf9op4JlhQ5u1Q==} 2748 + '@rollup/rollup-linux-arm64-musl@4.59.0': 2749 + resolution: {integrity: sha512-peZRVEdnFWZ5Bh2KeumKG9ty7aCXzzEsHShOZEFiCQlDEepP1dpUl/SrUNXNg13UmZl+gzVDPsiCwnV1uI0RUA==} 2742 2750 cpu: [arm64] 2743 2751 os: [linux] 2744 2752 libc: [musl] 2745 2753 2746 - '@rollup/rollup-linux-loong64-gnu@4.57.1': 2747 - resolution: {integrity: sha512-QWO6RQTZ/cqYtJMtxhkRkidoNGXc7ERPbZN7dVW5SdURuLeVU7lwKMpo18XdcmpWYd0qsP1bwKPf7DNSUinhvA==} 2754 + '@rollup/rollup-linux-loong64-gnu@4.59.0': 2755 + resolution: {integrity: sha512-gbUSW/97f7+r4gHy3Jlup8zDG190AuodsWnNiXErp9mT90iCy9NKKU0Xwx5k8VlRAIV2uU9CsMnEFg/xXaOfXg==} 2748 2756 cpu: [loong64] 2749 2757 os: [linux] 2750 2758 libc: [glibc] 2751 2759 2752 - '@rollup/rollup-linux-loong64-musl@4.57.1': 2753 - resolution: {integrity: sha512-xpObYIf+8gprgWaPP32xiN5RVTi/s5FCR+XMXSKmhfoJjrpRAjCuuqQXyxUa/eJTdAE6eJ+KDKaoEqjZQxh3Gw==} 2760 + '@rollup/rollup-linux-loong64-musl@4.59.0': 2761 + resolution: {integrity: sha512-yTRONe79E+o0FWFijasoTjtzG9EBedFXJMl888NBEDCDV9I2wGbFFfJQQe63OijbFCUZqxpHz1GzpbtSFikJ4Q==} 2754 2762 cpu: [loong64] 2755 2763 os: [linux] 2756 2764 libc: [musl] 2757 2765 2758 - '@rollup/rollup-linux-ppc64-gnu@4.57.1': 2759 - resolution: {integrity: sha512-4BrCgrpZo4hvzMDKRqEaW1zeecScDCR+2nZ86ATLhAoJ5FQ+lbHVD3ttKe74/c7tNT9c6F2viwB3ufwp01Oh2w==} 2766 + '@rollup/rollup-linux-ppc64-gnu@4.59.0': 2767 + resolution: {integrity: sha512-sw1o3tfyk12k3OEpRddF68a1unZ5VCN7zoTNtSn2KndUE+ea3m3ROOKRCZxEpmT9nsGnogpFP9x6mnLTCaoLkA==} 2760 2768 cpu: [ppc64] 2761 2769 os: [linux] 2762 2770 libc: [glibc] 2763 2771 2764 - '@rollup/rollup-linux-ppc64-musl@4.57.1': 2765 - resolution: {integrity: sha512-NOlUuzesGauESAyEYFSe3QTUguL+lvrN1HtwEEsU2rOwdUDeTMJdO5dUYl/2hKf9jWydJrO9OL/XSSf65R5+Xw==} 2772 + '@rollup/rollup-linux-ppc64-musl@4.59.0': 2773 + resolution: {integrity: sha512-+2kLtQ4xT3AiIxkzFVFXfsmlZiG5FXYW7ZyIIvGA7Bdeuh9Z0aN4hVyXS/G1E9bTP/vqszNIN/pUKCk/BTHsKA==} 2766 2774 cpu: [ppc64] 2767 2775 os: [linux] 2768 2776 libc: [musl] 2769 2777 2770 - '@rollup/rollup-linux-riscv64-gnu@4.57.1': 2771 - resolution: {integrity: sha512-ptA88htVp0AwUUqhVghwDIKlvJMD/fmL/wrQj99PRHFRAG6Z5nbWoWG4o81Nt9FT+IuqUQi+L31ZKAFeJ5Is+A==} 2778 + '@rollup/rollup-linux-riscv64-gnu@4.59.0': 2779 + resolution: {integrity: sha512-NDYMpsXYJJaj+I7UdwIuHHNxXZ/b/N2hR15NyH3m2qAtb/hHPA4g4SuuvrdxetTdndfj9b1WOmy73kcPRoERUg==} 2772 2780 cpu: [riscv64] 2773 2781 os: [linux] 2774 2782 libc: [glibc] 2775 2783 2776 - '@rollup/rollup-linux-riscv64-musl@4.57.1': 2777 - resolution: {integrity: sha512-S51t7aMMTNdmAMPpBg7OOsTdn4tySRQvklmL3RpDRyknk87+Sp3xaumlatU+ppQ+5raY7sSTcC2beGgvhENfuw==} 2784 + '@rollup/rollup-linux-riscv64-musl@4.59.0': 2785 + resolution: {integrity: sha512-nLckB8WOqHIf1bhymk+oHxvM9D3tyPndZH8i8+35p/1YiVoVswPid2yLzgX7ZJP0KQvnkhM4H6QZ5m0LzbyIAg==} 2778 2786 cpu: [riscv64] 2779 2787 os: [linux] 2780 2788 libc: [musl] 2781 2789 2782 - '@rollup/rollup-linux-s390x-gnu@4.57.1': 2783 - resolution: {integrity: sha512-Bl00OFnVFkL82FHbEqy3k5CUCKH6OEJL54KCyx2oqsmZnFTR8IoNqBF+mjQVcRCT5sB6yOvK8A37LNm/kPJiZg==} 2790 + '@rollup/rollup-linux-s390x-gnu@4.59.0': 2791 + resolution: {integrity: sha512-oF87Ie3uAIvORFBpwnCvUzdeYUqi2wY6jRFWJAy1qus/udHFYIkplYRW+wo+GRUP4sKzYdmE1Y3+rY5Gc4ZO+w==} 2784 2792 cpu: [s390x] 2785 2793 os: [linux] 2786 2794 libc: [glibc] 2787 2795 2788 - '@rollup/rollup-linux-x64-gnu@4.57.1': 2789 - resolution: {integrity: sha512-ABca4ceT4N+Tv/GtotnWAeXZUZuM/9AQyCyKYyKnpk4yoA7QIAuBt6Hkgpw8kActYlew2mvckXkvx0FfoInnLg==} 2796 + '@rollup/rollup-linux-x64-gnu@4.59.0': 2797 + resolution: {integrity: sha512-3AHmtQq/ppNuUspKAlvA8HtLybkDflkMuLK4DPo77DfthRb71V84/c4MlWJXixZz4uruIH4uaa07IqoAkG64fg==} 2790 2798 cpu: [x64] 2791 2799 os: [linux] 2792 2800 libc: [glibc] 2793 2801 2794 - '@rollup/rollup-linux-x64-musl@4.57.1': 2795 - resolution: {integrity: sha512-HFps0JeGtuOR2convgRRkHCekD7j+gdAuXM+/i6kGzQtFhlCtQkpwtNzkNj6QhCDp7DRJ7+qC/1Vg2jt5iSOFw==} 2802 + '@rollup/rollup-linux-x64-musl@4.59.0': 2803 + resolution: {integrity: sha512-2UdiwS/9cTAx7qIUZB/fWtToJwvt0Vbo0zmnYt7ED35KPg13Q0ym1g442THLC7VyI6JfYTP4PiSOWyoMdV2/xg==} 2796 2804 cpu: [x64] 2797 2805 os: [linux] 2798 2806 libc: [musl] 2799 2807 2800 - '@rollup/rollup-openbsd-x64@4.57.1': 2801 - resolution: {integrity: sha512-H+hXEv9gdVQuDTgnqD+SQffoWoc0Of59AStSzTEj/feWTBAnSfSD3+Dql1ZruJQxmykT/JVY0dE8Ka7z0DH1hw==} 2808 + '@rollup/rollup-openbsd-x64@4.59.0': 2809 + resolution: {integrity: sha512-M3bLRAVk6GOwFlPTIxVBSYKUaqfLrn8l0psKinkCFxl4lQvOSz8ZrKDz2gxcBwHFpci0B6rttydI4IpS4IS/jQ==} 2802 2810 cpu: [x64] 2803 2811 os: [openbsd] 2804 2812 2805 - '@rollup/rollup-openharmony-arm64@4.57.1': 2806 - resolution: {integrity: sha512-4wYoDpNg6o/oPximyc/NG+mYUejZrCU2q+2w6YZqrAs2UcNUChIZXjtafAiiZSUc7On8v5NyNj34Kzj/Ltk6dQ==} 2813 + '@rollup/rollup-openharmony-arm64@4.59.0': 2814 + resolution: {integrity: sha512-tt9KBJqaqp5i5HUZzoafHZX8b5Q2Fe7UjYERADll83O4fGqJ49O1FsL6LpdzVFQcpwvnyd0i+K/VSwu/o/nWlA==} 2807 2815 cpu: [arm64] 2808 2816 os: [openharmony] 2809 2817 2810 - '@rollup/rollup-win32-arm64-msvc@4.57.1': 2811 - resolution: {integrity: sha512-O54mtsV/6LW3P8qdTcamQmuC990HDfR71lo44oZMZlXU4tzLrbvTii87Ni9opq60ds0YzuAlEr/GNwuNluZyMQ==} 2818 + '@rollup/rollup-win32-arm64-msvc@4.59.0': 2819 + resolution: {integrity: sha512-V5B6mG7OrGTwnxaNUzZTDTjDS7F75PO1ae6MJYdiMu60sq0CqN5CVeVsbhPxalupvTX8gXVSU9gq+Rx1/hvu6A==} 2812 2820 cpu: [arm64] 2813 2821 os: [win32] 2814 2822 2815 - '@rollup/rollup-win32-ia32-msvc@4.57.1': 2816 - resolution: {integrity: sha512-P3dLS+IerxCT/7D2q2FYcRdWRl22dNbrbBEtxdWhXrfIMPP9lQhb5h4Du04mdl5Woq05jVCDPCMF7Ub0NAjIew==} 2823 + '@rollup/rollup-win32-ia32-msvc@4.59.0': 2824 + resolution: {integrity: sha512-UKFMHPuM9R0iBegwzKF4y0C4J9u8C6MEJgFuXTBerMk7EJ92GFVFYBfOZaSGLu6COf7FxpQNqhNS4c4icUPqxA==} 2817 2825 cpu: [ia32] 2818 2826 os: [win32] 2819 2827 2820 - '@rollup/rollup-win32-x64-gnu@4.57.1': 2821 - resolution: {integrity: sha512-VMBH2eOOaKGtIJYleXsi2B8CPVADrh+TyNxJ4mWPnKfLB/DBUmzW+5m1xUrcwWoMfSLagIRpjUFeW5CO5hyciQ==} 2828 + '@rollup/rollup-win32-x64-gnu@4.59.0': 2829 + resolution: {integrity: sha512-laBkYlSS1n2L8fSo1thDNGrCTQMmxjYY5G0WFWjFFYZkKPjsMBsgJfGf4TLxXrF6RyhI60L8TMOjBMvXiTcxeA==} 2822 2830 cpu: [x64] 2823 2831 os: [win32] 2824 2832 2825 - '@rollup/rollup-win32-x64-msvc@4.57.1': 2826 - resolution: {integrity: sha512-mxRFDdHIWRxg3UfIIAwCm6NzvxG0jDX/wBN6KsQFTvKFqqg9vTrWUE68qEjHt19A5wwx5X5aUi2zuZT7YR0jrA==} 2833 + '@rollup/rollup-win32-x64-msvc@4.59.0': 2834 + resolution: {integrity: sha512-2HRCml6OztYXyJXAvdDXPKcawukWY2GpR5/nxKp4iBgiO3wcoEGkAaqctIbZcNB6KlUQBIqt8VYkNSj2397EfA==} 2827 2835 cpu: [x64] 2828 2836 os: [win32] 2829 2837 ··· 3293 3301 '@types/ms@2.1.0': 3294 3302 resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} 3295 3303 3296 - '@types/node@25.3.3': 3297 - resolution: {integrity: sha512-DpzbrH7wIcBaJibpKo9nnSQL0MTRdnWttGyE5haGwK86xgMOkFLp7vEyfQPGLOJh5wNYiJ3V9PmUMDhV9u8kkQ==} 3304 + '@types/node@25.3.5': 3305 + resolution: {integrity: sha512-oX8xrhvpiyRCQkG1MFchB09f+cXftgIXb3a7UUa4Y3wpmZPw5tyZGTLWhlESOLq1Rq6oDlc8npVU2/9xiCuXMA==} 3298 3306 3299 3307 '@types/parse-path@7.1.0': 3300 3308 resolution: {integrity: sha512-EULJ8LApcVEPbrfND0cRQqutIOdiIgJ1Mgrhpy755r14xMohPTEpkV/k28SJvuOs9bHRFW8x+KeDAEPiGQPB9Q==} ··· 3723 3731 react-native-b4a: 3724 3732 optional: true 3725 3733 3726 - babel-plugin-polyfill-corejs2@0.4.15: 3727 - resolution: {integrity: sha512-hR3GwrRwHUfYwGfrisXPIDP3JcYfBrW7wKE7+Au6wDYl7fm/ka1NEII6kORzxNU556JjfidZeBsO10kYvtV1aw==} 3734 + babel-plugin-polyfill-corejs2@0.4.16: 3735 + resolution: {integrity: sha512-xaVwwSfebXf0ooE11BJovZYKhFjIvQo7TsyVpETuIeH2JHv0k/T6Y5j22pPTvqYqmpkxdlPAJlyJ0tfOJAoMxw==} 3728 3736 peerDependencies: 3729 3737 '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 3730 3738 3731 - babel-plugin-polyfill-corejs3@0.14.0: 3732 - resolution: {integrity: sha512-AvDcMxJ34W4Wgy4KBIIePQTAOP1Ie2WFwkQp3dB7FQ/f0lI5+nM96zUnYEOE1P9sEg0es5VCP0HxiWu5fUHZAQ==} 3739 + babel-plugin-polyfill-corejs3@0.14.1: 3740 + resolution: {integrity: sha512-ENp89vM9Pw4kv/koBb5N2f9bDZsR0hpf3BdPMOg/pkS3pwO4dzNnQZVXtBbeyAadgm865DmQG2jMMLqmZXvuCw==} 3733 3741 peerDependencies: 3734 3742 '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 3735 3743 3736 - babel-plugin-polyfill-regenerator@0.6.6: 3737 - resolution: {integrity: sha512-hYm+XLYRMvupxiQzrvXUj7YyvFFVfv5gI0R71AJzudg1g2AI2vyCPPIFEBjk162/wFzti3inBHo7isWFuEVS/A==} 3744 + babel-plugin-polyfill-regenerator@0.6.7: 3745 + resolution: {integrity: sha512-OTYbUlSwXhNgr4g6efMZgsO8//jA61P7ZbRX3iTT53VON8l+WQS8IAUEVo4a4cWknrg2W8Cj4gQhRYNCJ8GkAA==} 3738 3746 peerDependencies: 3739 3747 '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 3740 3748 3741 3749 bail@2.0.2: 3742 3750 resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} 3743 - 3744 - balanced-match@1.0.2: 3745 - resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 3746 3751 3747 3752 balanced-match@4.0.4: 3748 3753 resolution: {integrity: sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==} ··· 3778 3783 3779 3784 boolbase@1.0.0: 3780 3785 resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} 3781 - 3782 - brace-expansion@2.0.2: 3783 - resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==} 3784 3786 3785 3787 brace-expansion@5.0.3: 3786 3788 resolution: {integrity: sha512-fy6KJm2RawA5RcHkLa1z/ScpBeA762UF9KmZQxwIbDtRJrgLzM10depAiEQ+CXYcoiqW1/m96OAAoke2nE9EeA==} ··· 4162 4164 resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==} 4163 4165 engines: {node: '>=8'} 4164 4166 4165 - devalue@5.6.2: 4166 - resolution: {integrity: sha512-nPRkjWzzDQlsejL1WVifk5rvcFi/y1onBRxjaFMjZeR9mFpqu2gmAZ9xUB9/IEanEP/vBtGeGganC/GO1fmufg==} 4167 + devalue@5.6.3: 4168 + resolution: {integrity: sha512-nc7XjUU/2Lb+SvEFVGcWLiKkzfw8+qHI7zn8WYXKkLMgfGSHbgCEaR6bJpev8Cm6Rmrb19Gfd/tZvGqx9is3wg==} 4167 4169 4168 4170 devlop@1.1.0: 4169 4171 resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} ··· 4369 4371 engines: {node: '>=6.0'} 4370 4372 hasBin: true 4371 4373 4372 - eslint-scope@9.1.1: 4373 - resolution: {integrity: sha512-GaUN0sWim5qc8KVErfPBWmc31LEsOkrUJbvJZV+xuL3u2phMUK4HIvXlWAakfC8W4nzlK+chPEAkYOYb5ZScIw==} 4374 + eslint-scope@9.1.2: 4375 + resolution: {integrity: sha512-xS90H51cKw0jltxmvmHy2Iai1LIqrfbw57b79w/J7MfvDfkIkFZ+kj6zC3BjtUwh150HsSSdxXZcsuv72miDFQ==} 4374 4376 engines: {node: ^20.19.0 || ^22.13.0 || >=24} 4375 4377 4376 4378 eslint-visitor-keys@3.4.3: ··· 4395 4397 jiti: 4396 4398 optional: true 4397 4399 4398 - espree@11.1.1: 4399 - resolution: {integrity: sha512-AVHPqQoZYc+RUM4/3Ly5udlZY/U4LS8pIG05jEjWM2lQMU/oaZ7qshzAl2YP1tfNmXfftH3ohurfwNAug+MnsQ==} 4400 + espree@11.2.0: 4401 + resolution: {integrity: sha512-7p3DrVEIopW1B1avAGLuCSh1jubc01H2JHc8B4qqGblmg5gI9yumBgACjWo4JlIc04ufug4xJ3SQI8HkS/Rgzw==} 4400 4402 engines: {node: ^20.19.0 || ^22.13.0 || >=24} 4401 4403 4402 4404 espree@9.6.1: ··· 4531 4533 engines: {node: '>=18'} 4532 4534 hasBin: true 4533 4535 4534 - flatted@3.3.4: 4535 - resolution: {integrity: sha512-3+mMldrTAPdta5kjX2G2J7iX4zxtnwpdA8Tr2ZSjkyPSanvbZAcy6flmtnXbEybHrDcU9641lxrMfFuUxVz9vA==} 4536 + flatted@3.4.0: 4537 + resolution: {integrity: sha512-kC6Bb+ooptOIvWj5B63EQWkF0FEnNjV2ZNkLMLZRDDduIiWeFF4iKnslwhiWxjAdbg4NzTNo6h0qLuvFrcx+Sw==} 4536 4538 4537 4539 fontaine@0.8.0: 4538 4540 resolution: {integrity: sha512-eek1GbzOdWIj9FyQH/emqW1aEdfC3lYRCHepzwlFCm5T77fBSRSyNRKE6/antF1/B1M+SfJXVRQTY9GAr7lnDg==} ··· 5348 5350 magicast@0.5.2: 5349 5351 resolution: {integrity: sha512-E3ZJh4J3S9KfwdjZhe2afj6R9lGIN5Pher1pF39UGrXRqq/VDaGVIGN13BjHd2u8B61hArAGOnso7nBOouW3TQ==} 5350 5352 5351 - markdown-it@14.1.0: 5352 - resolution: {integrity: sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==} 5353 + markdown-it@14.1.1: 5354 + resolution: {integrity: sha512-BuU2qnTti9YKgK5N+IeMubp14ZUKUUw7yeJbkjtosvHiP0AZ5c8IAgEMk79D0eC8F23r4Ac/q8cAIFdm2FtyoA==} 5353 5355 hasBin: true 5354 5356 5355 5357 markdown-table@3.0.4: ··· 5528 5530 minimark@0.2.0: 5529 5531 resolution: {integrity: sha512-AmtWU9pO0C2/3AM2pikaVhJ//8E5rOpJ7+ioFQfjIq+wCsBeuZoxPd97hBFZ9qrI7DMHZudwGH3r8A7BMnsIew==} 5530 5532 5531 - minimatch@10.1.2: 5532 - resolution: {integrity: sha512-fu656aJ0n2kcXwsnwnv9g24tkU5uSmOlTjd6WyyaKm2Z+h1qmY6bAjrcaIxF/BslFqbZ8UBtbJi7KgQOZD2PTw==} 5533 - engines: {node: 20 || >=22} 5534 - 5535 5533 minimatch@10.2.4: 5536 5534 resolution: {integrity: sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==} 5537 5535 engines: {node: 18 || 20 || >=22} 5538 5536 5539 - minimatch@5.1.6: 5540 - resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} 5541 - engines: {node: '>=10'} 5542 - 5543 - minimatch@5.1.9: 5544 - resolution: {integrity: sha512-7o1wEA2RyMP7Iu7GNba9vc0RWWGACJOCZBJX2GJWip0ikV+wcOsgVuY9uE8CPiyQhkGFSlhuSkZPavN7u1c2Fw==} 5545 - engines: {node: '>=10'} 5546 - 5547 - minimatch@9.0.5: 5548 - resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} 5549 - engines: {node: '>=16 || 14 >=14.17'} 5550 - 5551 5537 minimist@1.2.8: 5552 5538 resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} 5553 5539 ··· 5610 5596 engines: {node: ^18 || >=20} 5611 5597 hasBin: true 5612 5598 5613 - nanotar@0.2.0: 5614 - resolution: {integrity: sha512-9ca1h0Xjvo9bEkE4UOxgAzLV0jHKe6LMaxo37ND2DAhhAtd0j8pR1Wxz+/goMrZO8AEZTWCmyaOsFI/W5AdpCQ==} 5599 + nanotar@0.3.0: 5600 + resolution: {integrity: sha512-Kv2JYYiCzt16Kt5QwAc9BFG89xfPNBx+oQL4GQXD9nLqPkZBiNaqaCWtwnbk/q7UVsTYevvM1b0UF8zmEI4pCg==} 5615 5601 5616 5602 napi-build-utils@2.0.0: 5617 5603 resolution: {integrity: sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==} ··· 6215 6201 radix3@1.1.2: 6216 6202 resolution: {integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==} 6217 6203 6218 - randombytes@2.1.0: 6219 - resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} 6220 - 6221 6204 range-parser@1.2.1: 6222 6205 resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} 6223 6206 engines: {node: '>= 0.6'} ··· 6381 6364 hasBin: true 6382 6365 peerDependencies: 6383 6366 rolldown: 1.x || ^1.0.0-beta 6384 - rollup: 2.x || 3.x || 4.x 6367 + rollup: '>=4.59.0' 6385 6368 peerDependenciesMeta: 6386 6369 rolldown: 6387 6370 optional: true ··· 6393 6376 engines: {node: '>=10.0.0'} 6394 6377 hasBin: true 6395 6378 6396 - rollup@4.57.1: 6397 - resolution: {integrity: sha512-oQL6lgK3e2QZeQ7gcgIkS2YZPg5slw37hYufJ3edKlfQSGGm8ICoxswK15ntSzF/a8+h7ekRy7k7oWc3BQ7y8A==} 6379 + rollup@4.59.0: 6380 + resolution: {integrity: sha512-2oMpl67a3zCH9H79LeMcbDhXW/UmWG/y2zuqnF2jQq5uq9TbM9TVyXvA4+t+ne2IIkBdrLpAaRQAvo7YI/Yyeg==} 6398 6381 engines: {node: '>=18.0.0', npm: '>=8.0.0'} 6399 6382 hasBin: true 6400 6383 ··· 6432 6415 safer-buffer@2.1.2: 6433 6416 resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} 6434 6417 6435 - sax@1.4.4: 6436 - resolution: {integrity: sha512-1n3r/tGXO6b6VXMdFT54SHzT9ytu9yr7TaELowdYpMqY/Ao7EnlQGmAQ1+RatX7Tkkdm6hONI2owqNx2aZj5Sw==} 6418 + sax@1.5.0: 6419 + resolution: {integrity: sha512-21IYA3Q5cQf089Z6tgaUTr7lDAyzoTPx5HRtbhsME8Udispad8dC/+sziTNugOEx54ilvatQ9YCzl4KQLPcRHA==} 6437 6420 engines: {node: '>=11.0.0'} 6438 6421 6439 6422 scule@1.3.0: ··· 6452 6435 resolution: {integrity: sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ==} 6453 6436 engines: {node: '>= 18'} 6454 6437 6455 - serialize-javascript@6.0.2: 6456 - resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==} 6438 + serialize-javascript@7.0.4: 6439 + resolution: {integrity: sha512-DuGdB+Po43Q5Jxwpzt1lhyFSYKryqoNjQSA9M92tyw0lyHIOur+XCalOUe0KTJpyqzT8+fQ5A0Jf7vCx/NKmIg==} 6440 + engines: {node: '>=20.0.0'} 6457 6441 6458 6442 seroval@1.5.0: 6459 6443 resolution: {integrity: sha512-OE4cvmJ1uSPrKorFIH9/w/Qwuvi/IMcGbv5RKgcJ/zjA/IohDLU6SVaxFN9FwajbP7nsX0dQqMDes1whk3y+yw==} ··· 6713 6697 resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 6714 6698 engines: {node: '>= 0.4'} 6715 6699 6716 - svgo@4.0.0: 6717 - resolution: {integrity: sha512-VvrHQ+9uniE+Mvx3+C9IEe/lWasXCU0nXMY2kZeLrHNICuRiC8uMPyM14UEaMOFA5mhyQqEkB02VoQ16n3DLaw==} 6700 + svgo@4.0.1: 6701 + resolution: {integrity: sha512-XDpWUOPC6FEibaLzjfe0ucaV0YrOjYotGJO1WpF0Zd+n6ZGEQUsSugaoLq9QkEZtAfQIxT42UChcssDVPP3+/w==} 6718 6702 engines: {node: '>=16'} 6719 6703 hasBin: true 6720 6704 ··· 6756 6740 tar-stream@3.1.7: 6757 6741 resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==} 6758 6742 6759 - tar@7.5.7: 6760 - resolution: {integrity: sha512-fov56fJiRuThVFXD6o6/Q354S7pnWMJIVlDBYijsTNx6jKSE4pvrDTs6lUnmGvNyfJwFQQwWy3owKz1ucIhveQ==} 6743 + tar@7.5.10: 6744 + resolution: {integrity: sha512-8mOPs1//5q/rlkNSPcCegA6hiHJYDmSLEI8aMH/CdSQJNWztHC9WHNam5zdQlfpTwB9Xp7IBEsHfV5LKMJGVAw==} 6761 6745 engines: {node: '>=18'} 6762 6746 6763 6747 temp-dir@2.0.0: ··· 7676 7660 regexpu-core: 6.4.0 7677 7661 semver: 6.3.1 7678 7662 7679 - '@babel/helper-define-polyfill-provider@0.6.6(@babel/core@7.29.0)': 7663 + '@babel/helper-define-polyfill-provider@0.6.7(@babel/core@7.29.0)': 7680 7664 dependencies: 7681 7665 '@babel/core': 7.29.0 7682 7666 '@babel/helper-compilation-targets': 7.28.6 ··· 8243 8227 '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.29.0) 8244 8228 '@babel/plugin-transform-unicode-sets-regex': 7.28.6(@babel/core@7.29.0) 8245 8229 '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.29.0) 8246 - babel-plugin-polyfill-corejs2: 0.4.15(@babel/core@7.29.0) 8247 - babel-plugin-polyfill-corejs3: 0.14.0(@babel/core@7.29.0) 8248 - babel-plugin-polyfill-regenerator: 0.6.6(@babel/core@7.29.0) 8230 + babel-plugin-polyfill-corejs2: 0.4.16(@babel/core@7.29.0) 8231 + babel-plugin-polyfill-corejs3: 0.14.1(@babel/core@7.29.0) 8232 + babel-plugin-polyfill-regenerator: 0.6.7(@babel/core@7.29.0) 8249 8233 core-js-compat: 3.48.0 8250 8234 semver: 6.3.1 8251 8235 transitivePeerDependencies: ··· 8496 8480 8497 8481 '@eslint-community/regexpp@4.12.2': {} 8498 8482 8499 - '@eslint/config-array@0.23.2': 8483 + '@eslint/config-array@0.23.3': 8500 8484 dependencies: 8501 - '@eslint/object-schema': 3.0.2 8485 + '@eslint/object-schema': 3.0.3 8502 8486 debug: 4.4.3 8503 8487 minimatch: 10.2.4 8504 8488 transitivePeerDependencies: 8505 8489 - supports-color 8506 8490 8507 - '@eslint/config-helpers@0.5.2': 8491 + '@eslint/config-helpers@0.5.3': 8508 8492 dependencies: 8509 - '@eslint/core': 1.1.0 8493 + '@eslint/core': 1.1.1 8510 8494 8511 - '@eslint/core@1.1.0': 8495 + '@eslint/core@1.1.1': 8512 8496 dependencies: 8513 8497 '@types/json-schema': 7.0.15 8514 8498 8515 - '@eslint/object-schema@3.0.2': {} 8499 + '@eslint/object-schema@3.0.3': {} 8516 8500 8517 - '@eslint/plugin-kit@0.6.0': 8501 + '@eslint/plugin-kit@0.6.1': 8518 8502 dependencies: 8519 - '@eslint/core': 1.1.0 8503 + '@eslint/core': 1.1.1 8520 8504 levn: 0.4.1 8521 8505 8522 8506 '@fastify/accept-negotiator@2.0.1': ··· 8553 8537 8554 8538 '@humanwhocodes/retry@0.4.3': {} 8555 8539 8556 - '@iconify-json/lucide@1.2.95': 8540 + '@iconify-json/lucide@1.2.96': 8557 8541 dependencies: 8558 8542 '@iconify/types': 2.0.0 8559 8543 ··· 8723 8707 8724 8708 '@intlify/shared@11.2.8': {} 8725 8709 8726 - '@intlify/unplugin-vue-i18n@11.0.3(@vue/compiler-dom@3.5.28)(eslint@10.0.0(jiti@2.6.1))(rollup@4.57.1)(typescript@5.9.3)(vue-i18n@11.2.8(vue@3.5.28(typescript@5.9.3)))(vue@3.5.28(typescript@5.9.3))': 8710 + '@intlify/unplugin-vue-i18n@11.0.3(@vue/compiler-dom@3.5.28)(eslint@10.0.0(jiti@2.6.1))(rollup@4.59.0)(typescript@5.9.3)(vue-i18n@11.2.8(vue@3.5.28(typescript@5.9.3)))(vue@3.5.28(typescript@5.9.3))': 8727 8711 dependencies: 8728 8712 '@eslint-community/eslint-utils': 4.9.1(eslint@10.0.0(jiti@2.6.1)) 8729 8713 '@intlify/bundle-utils': 11.0.3(vue-i18n@11.2.8(vue@3.5.28(typescript@5.9.3))) 8730 8714 '@intlify/shared': 11.2.8 8731 8715 '@intlify/vue-i18n-extensions': 8.0.0(@intlify/shared@11.2.8)(@vue/compiler-dom@3.5.28)(vue-i18n@11.2.8(vue@3.5.28(typescript@5.9.3)))(vue@3.5.28(typescript@5.9.3)) 8732 - '@rollup/pluginutils': 5.3.0(rollup@4.57.1) 8716 + '@rollup/pluginutils': 5.3.0(rollup@4.59.0) 8733 8717 '@typescript-eslint/scope-manager': 8.55.0 8734 8718 '@typescript-eslint/typescript-estree': 8.55.0(typescript@5.9.3) 8735 8719 debug: 4.4.3 ··· 8759 8743 vue-i18n: 11.2.8(vue@3.5.28(typescript@5.9.3)) 8760 8744 8761 8745 '@ioredis/commands@1.5.0': {} 8762 - 8763 - '@isaacs/balanced-match@4.0.1': {} 8764 - 8765 - '@isaacs/brace-expansion@5.0.1': 8766 - dependencies: 8767 - '@isaacs/balanced-match': 4.0.1 8768 8746 8769 8747 '@isaacs/cliui@8.0.2': 8770 8748 dependencies: ··· 8779 8757 8780 8758 '@isaacs/fs-minipass@4.0.1': 8781 8759 dependencies: 8782 - minipass: 7.1.2 8760 + minipass: 7.1.3 8783 8761 8784 8762 '@jridgewell/gen-mapping@0.3.13': 8785 8763 dependencies: ··· 8827 8805 node-fetch: 2.7.0 8828 8806 nopt: 8.1.0 8829 8807 semver: 7.7.4 8830 - tar: 7.5.7 8808 + tar: 7.5.10 8831 8809 transitivePeerDependencies: 8832 8810 - encoding 8833 8811 - supports-color 8834 8812 8835 - '@miyaneee/rollup-plugin-json5@1.2.0(rollup@4.57.1)': 8813 + '@miyaneee/rollup-plugin-json5@1.2.0(rollup@4.59.0)': 8836 8814 dependencies: 8837 - '@rollup/pluginutils': 5.3.0(rollup@4.57.1) 8815 + '@rollup/pluginutils': 5.3.0(rollup@4.59.0) 8838 8816 json5: 2.2.3 8839 - rollup: 4.57.1 8817 + rollup: 4.59.0 8840 8818 8841 8819 '@napi-rs/wasm-runtime@1.1.1': 8842 8820 dependencies: ··· 8958 8936 8959 8937 '@nuxt/devalue@2.0.2': {} 8960 8938 8961 - '@nuxt/devtools-kit@2.7.0(magicast@0.5.2)(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))': 8939 + '@nuxt/devtools-kit@2.7.0(magicast@0.5.2)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))': 8962 8940 dependencies: 8963 8941 '@nuxt/kit': 3.21.1(magicast@0.5.2) 8964 8942 execa: 8.0.1 8965 - vite: 7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 8943 + vite: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 8966 8944 transitivePeerDependencies: 8967 8945 - magicast 8968 8946 8969 - '@nuxt/devtools-kit@3.1.1(magicast@0.5.2)(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))': 8947 + '@nuxt/devtools-kit@3.1.1(magicast@0.5.2)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))': 8970 8948 dependencies: 8971 8949 '@nuxt/kit': 4.3.1(magicast@0.5.2) 8972 8950 execa: 8.0.1 8973 - vite: 7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 8951 + vite: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 8974 8952 transitivePeerDependencies: 8975 8953 - magicast 8976 8954 8977 - '@nuxt/devtools-kit@3.2.2(magicast@0.5.2)(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))': 8955 + '@nuxt/devtools-kit@3.2.2(magicast@0.5.2)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))': 8978 8956 dependencies: 8979 8957 '@nuxt/kit': 4.3.1(magicast@0.5.2) 8980 8958 execa: 8.0.1 8981 - vite: 7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 8959 + vite: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 8982 8960 transitivePeerDependencies: 8983 8961 - magicast 8984 8962 ··· 8993 8971 prompts: 2.4.2 8994 8972 semver: 7.7.4 8995 8973 8996 - '@nuxt/devtools@3.1.1(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3))': 8974 + '@nuxt/devtools@3.1.1(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3))': 8997 8975 dependencies: 8998 - '@nuxt/devtools-kit': 3.1.1(magicast@0.5.2)(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)) 8976 + '@nuxt/devtools-kit': 3.1.1(magicast@0.5.2)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)) 8999 8977 '@nuxt/devtools-wizard': 3.1.1 9000 8978 '@nuxt/kit': 4.3.1(magicast@0.5.2) 9001 - '@vue/devtools-core': 8.0.6(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3)) 8979 + '@vue/devtools-core': 8.0.6(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3)) 9002 8980 '@vue/devtools-kit': 8.0.6 9003 8981 birpc: 2.9.0 9004 8982 consola: 3.4.2 ··· 9023 9001 sirv: 3.0.2 9024 9002 structured-clone-es: 1.0.0 9025 9003 tinyglobby: 0.2.15 9026 - vite: 7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 9027 - vite-plugin-inspect: 11.3.3(@nuxt/kit@4.3.1(magicast@0.5.2))(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)) 9028 - vite-plugin-vue-tracer: 1.2.0(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3)) 9004 + vite: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 9005 + vite-plugin-inspect: 11.3.3(@nuxt/kit@4.3.1(magicast@0.5.2))(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)) 9006 + vite-plugin-vue-tracer: 1.2.0(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3)) 9029 9007 which: 5.0.0 9030 9008 ws: 8.19.0 9031 9009 transitivePeerDependencies: ··· 9034 9012 - utf-8-validate 9035 9013 - vue 9036 9014 9037 - '@nuxt/fonts@0.14.0(db0@0.3.4(better-sqlite3@12.6.2))(ioredis@5.9.2)(magicast@0.5.2)(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))': 9015 + '@nuxt/fonts@0.14.0(db0@0.3.4(better-sqlite3@12.6.2))(ioredis@5.9.2)(magicast@0.5.2)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))': 9038 9016 dependencies: 9039 - '@nuxt/devtools-kit': 3.2.2(magicast@0.5.2)(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)) 9017 + '@nuxt/devtools-kit': 3.2.2(magicast@0.5.2)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)) 9040 9018 '@nuxt/kit': 4.3.1(magicast@0.5.2) 9041 9019 consola: 3.4.2 9042 9020 defu: 6.1.4 9043 - fontless: 0.2.1(db0@0.3.4(better-sqlite3@12.6.2))(ioredis@5.9.2)(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)) 9021 + fontless: 0.2.1(db0@0.3.4(better-sqlite3@12.6.2))(ioredis@5.9.2)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)) 9044 9022 h3: 1.15.5 9045 9023 magic-regexp: 0.10.0 9046 9024 ofetch: 1.5.1 ··· 9074 9052 - uploadthing 9075 9053 - vite 9076 9054 9077 - '@nuxt/icon@2.2.1(magicast@0.5.2)(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3))': 9055 + '@nuxt/icon@2.2.1(magicast@0.5.2)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3))': 9078 9056 dependencies: 9079 9057 '@iconify/collections': 1.0.649 9080 9058 '@iconify/types': 2.0.0 9081 9059 '@iconify/utils': 3.1.0 9082 9060 '@iconify/vue': 5.0.0(vue@3.5.28(typescript@5.9.3)) 9083 - '@nuxt/devtools-kit': 3.1.1(magicast@0.5.2)(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)) 9061 + '@nuxt/devtools-kit': 3.1.1(magicast@0.5.2)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)) 9084 9062 '@nuxt/kit': 4.3.1(magicast@0.5.2) 9085 9063 consola: 3.4.2 9086 9064 local-pkg: 1.1.2 ··· 9182 9160 transitivePeerDependencies: 9183 9161 - magicast 9184 9162 9185 - '@nuxt/nitro-server@4.3.1(better-sqlite3@12.6.2)(db0@0.3.4(better-sqlite3@12.6.2))(ioredis@5.9.2)(magicast@0.5.2)(nuxt@4.3.1(@parcel/watcher@2.5.6)(@types/node@25.3.3)(@vue/compiler-sfc@3.5.28)(better-sqlite3@12.6.2)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.6.2))(eslint@10.0.0(jiti@2.6.1))(ioredis@5.9.2)(lightningcss@1.31.1)(magicast@0.5.2)(optionator@0.9.4)(oxlint@1.51.0)(rolldown@1.0.0-rc.5)(rollup@4.57.1)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3))(yaml@2.8.2))(rolldown@1.0.0-rc.5)(typescript@5.9.3)': 9163 + '@nuxt/nitro-server@4.3.1(better-sqlite3@12.6.2)(db0@0.3.4(better-sqlite3@12.6.2))(ioredis@5.9.2)(magicast@0.5.2)(nuxt@4.3.1(@parcel/watcher@2.5.6)(@types/node@25.3.5)(@vue/compiler-sfc@3.5.28)(better-sqlite3@12.6.2)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.6.2))(eslint@10.0.0(jiti@2.6.1))(ioredis@5.9.2)(lightningcss@1.31.1)(magicast@0.5.2)(optionator@0.9.4)(oxlint@1.51.0)(rolldown@1.0.0-rc.5)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3))(yaml@2.8.2))(rolldown@1.0.0-rc.5)(typescript@5.9.3)': 9186 9164 dependencies: 9187 9165 '@nuxt/devalue': 2.0.2 9188 9166 '@nuxt/kit': 4.3.1(magicast@0.5.2) ··· 9191 9169 consola: 3.4.2 9192 9170 defu: 6.1.4 9193 9171 destr: 2.0.5 9194 - devalue: 5.6.2 9172 + devalue: 5.6.3 9195 9173 errx: 0.1.0 9196 9174 escape-string-regexp: 5.0.0 9197 9175 exsolve: 1.0.8 ··· 9200 9178 klona: 2.0.6 9201 9179 mocked-exports: 0.1.1 9202 9180 nitropack: 2.13.1(better-sqlite3@12.6.2)(rolldown@1.0.0-rc.5) 9203 - nuxt: 4.3.1(@parcel/watcher@2.5.6)(@types/node@25.3.3)(@vue/compiler-sfc@3.5.28)(better-sqlite3@12.6.2)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.6.2))(eslint@10.0.0(jiti@2.6.1))(ioredis@5.9.2)(lightningcss@1.31.1)(magicast@0.5.2)(optionator@0.9.4)(oxlint@1.51.0)(rolldown@1.0.0-rc.5)(rollup@4.57.1)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3))(yaml@2.8.2) 9181 + nuxt: 4.3.1(@parcel/watcher@2.5.6)(@types/node@25.3.5)(@vue/compiler-sfc@3.5.28)(better-sqlite3@12.6.2)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.6.2))(eslint@10.0.0(jiti@2.6.1))(ioredis@5.9.2)(lightningcss@1.31.1)(magicast@0.5.2)(optionator@0.9.4)(oxlint@1.51.0)(rolldown@1.0.0-rc.5)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3))(yaml@2.8.2) 9204 9182 ohash: 2.0.11 9205 9183 pathe: 2.0.3 9206 9184 pkg-types: 2.3.0 ··· 9264 9242 rc9: 3.0.0 9265 9243 std-env: 3.10.0 9266 9244 9267 - '@nuxt/test-utils@4.0.0(magicast@0.5.2)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vitest@4.0.18(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))': 9245 + '@nuxt/test-utils@4.0.0(magicast@0.5.2)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vitest@4.0.18(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))': 9268 9246 dependencies: 9269 9247 '@clack/prompts': 1.0.0 9270 - '@nuxt/devtools-kit': 2.7.0(magicast@0.5.2)(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)) 9248 + '@nuxt/devtools-kit': 2.7.0(magicast@0.5.2)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)) 9271 9249 '@nuxt/kit': 3.21.1(magicast@0.5.2) 9272 9250 c12: 3.3.3(magicast@0.5.2) 9273 9251 consola: 3.4.2 ··· 9293 9271 tinyexec: 1.0.2 9294 9272 ufo: 1.6.3 9295 9273 unplugin: 3.0.0 9296 - vitest-environment-nuxt: 1.0.1(magicast@0.5.2)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vitest@4.0.18(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)) 9274 + vitest-environment-nuxt: 1.0.1(magicast@0.5.2)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vitest@4.0.18(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)) 9297 9275 vue: 3.5.28(typescript@5.9.3) 9298 9276 optionalDependencies: 9299 - vitest: 4.0.18(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 9277 + vitest: 4.0.18(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 9300 9278 transitivePeerDependencies: 9301 9279 - crossws 9302 9280 - magicast 9303 9281 - typescript 9304 9282 - vite 9305 9283 9306 - '@nuxt/ui@4.5.1(@nuxt/content@3.12.0(@valibot/to-json-schema@1.5.0(valibot@1.2.0(typescript@5.9.3)))(better-sqlite3@12.6.2)(magicast@0.5.2)(valibot@1.2.0(typescript@5.9.3)))(@tiptap/extensions@3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0))(@tiptap/y-tiptap@3.0.2(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.6)(y-protocols@1.0.7(yjs@13.6.29))(yjs@13.6.29))(db0@0.3.4(better-sqlite3@12.6.2))(embla-carousel@8.6.0)(ioredis@5.9.2)(magicast@0.5.2)(tailwindcss@4.2.1)(typescript@5.9.3)(valibot@1.2.0(typescript@5.9.3))(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue-router@4.6.4(vue@3.5.28(typescript@5.9.3)))(vue@3.5.28(typescript@5.9.3))(yjs@13.6.29)(zod@3.25.76)': 9284 + '@nuxt/ui@4.5.1(@nuxt/content@3.12.0(@valibot/to-json-schema@1.5.0(valibot@1.2.0(typescript@5.9.3)))(better-sqlite3@12.6.2)(magicast@0.5.2)(valibot@1.2.0(typescript@5.9.3)))(@tiptap/extensions@3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0))(@tiptap/y-tiptap@3.0.2(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.6)(y-protocols@1.0.7(yjs@13.6.29))(yjs@13.6.29))(db0@0.3.4(better-sqlite3@12.6.2))(embla-carousel@8.6.0)(ioredis@5.9.2)(magicast@0.5.2)(tailwindcss@4.2.1)(typescript@5.9.3)(valibot@1.2.0(typescript@5.9.3))(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue-router@4.6.4(vue@3.5.28(typescript@5.9.3)))(vue@3.5.28(typescript@5.9.3))(yjs@13.6.29)(zod@3.25.76)': 9307 9285 dependencies: 9308 9286 '@floating-ui/dom': 1.7.5 9309 9287 '@iconify/vue': 5.0.0(vue@3.5.28(typescript@5.9.3)) 9310 9288 '@internationalized/date': 3.11.0 9311 9289 '@internationalized/number': 3.6.5 9312 - '@nuxt/fonts': 0.14.0(db0@0.3.4(better-sqlite3@12.6.2))(ioredis@5.9.2)(magicast@0.5.2)(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)) 9313 - '@nuxt/icon': 2.2.1(magicast@0.5.2)(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3)) 9290 + '@nuxt/fonts': 0.14.0(db0@0.3.4(better-sqlite3@12.6.2))(ioredis@5.9.2)(magicast@0.5.2)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)) 9291 + '@nuxt/icon': 2.2.1(magicast@0.5.2)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3)) 9314 9292 '@nuxt/kit': 4.3.1(magicast@0.5.2) 9315 9293 '@nuxt/schema': 4.3.1 9316 9294 '@nuxtjs/color-mode': 3.5.2(magicast@0.5.2) 9317 9295 '@standard-schema/spec': 1.1.0 9318 9296 '@tailwindcss/postcss': 4.2.1 9319 - '@tailwindcss/vite': 4.2.1(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)) 9297 + '@tailwindcss/vite': 4.2.1(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)) 9320 9298 '@tanstack/vue-table': 8.21.3(vue@3.5.28(typescript@5.9.3)) 9321 9299 '@tanstack/vue-virtual': 3.13.19(vue@3.5.28(typescript@5.9.3)) 9322 9300 '@tiptap/core': 3.20.0(@tiptap/pm@3.20.0) ··· 9418 9396 - vue 9419 9397 - yjs 9420 9398 9421 - '@nuxt/vite-builder@4.3.1(@types/node@25.3.3)(eslint@10.0.0(jiti@2.6.1))(lightningcss@1.31.1)(magicast@0.5.2)(nuxt@4.3.1(@parcel/watcher@2.5.6)(@types/node@25.3.3)(@vue/compiler-sfc@3.5.28)(better-sqlite3@12.6.2)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.6.2))(eslint@10.0.0(jiti@2.6.1))(ioredis@5.9.2)(lightningcss@1.31.1)(magicast@0.5.2)(optionator@0.9.4)(oxlint@1.51.0)(rolldown@1.0.0-rc.5)(rollup@4.57.1)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3))(yaml@2.8.2))(optionator@0.9.4)(oxlint@1.51.0)(rolldown@1.0.0-rc.5)(rollup@4.57.1)(terser@5.46.0)(typescript@5.9.3)(vue-tsc@3.2.5(typescript@5.9.3))(vue@3.5.28(typescript@5.9.3))(yaml@2.8.2)': 9399 + '@nuxt/vite-builder@4.3.1(@types/node@25.3.5)(eslint@10.0.0(jiti@2.6.1))(lightningcss@1.31.1)(magicast@0.5.2)(nuxt@4.3.1(@parcel/watcher@2.5.6)(@types/node@25.3.5)(@vue/compiler-sfc@3.5.28)(better-sqlite3@12.6.2)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.6.2))(eslint@10.0.0(jiti@2.6.1))(ioredis@5.9.2)(lightningcss@1.31.1)(magicast@0.5.2)(optionator@0.9.4)(oxlint@1.51.0)(rolldown@1.0.0-rc.5)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3))(yaml@2.8.2))(optionator@0.9.4)(oxlint@1.51.0)(rolldown@1.0.0-rc.5)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vue-tsc@3.2.5(typescript@5.9.3))(vue@3.5.28(typescript@5.9.3))(yaml@2.8.2)': 9422 9400 dependencies: 9423 9401 '@nuxt/kit': 4.3.1(magicast@0.5.2) 9424 - '@rollup/plugin-replace': 6.0.3(rollup@4.57.1) 9425 - '@vitejs/plugin-vue': 6.0.4(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3)) 9426 - '@vitejs/plugin-vue-jsx': 5.1.4(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3)) 9402 + '@rollup/plugin-replace': 6.0.3(rollup@4.59.0) 9403 + '@vitejs/plugin-vue': 6.0.4(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3)) 9404 + '@vitejs/plugin-vue-jsx': 5.1.4(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3)) 9427 9405 autoprefixer: 10.4.24(postcss@8.5.6) 9428 9406 consola: 3.4.2 9429 9407 cssnano: 7.1.2(postcss@8.5.6) ··· 9437 9415 magic-string: 0.30.21 9438 9416 mlly: 1.8.0 9439 9417 mocked-exports: 0.1.1 9440 - nuxt: 4.3.1(@parcel/watcher@2.5.6)(@types/node@25.3.3)(@vue/compiler-sfc@3.5.28)(better-sqlite3@12.6.2)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.6.2))(eslint@10.0.0(jiti@2.6.1))(ioredis@5.9.2)(lightningcss@1.31.1)(magicast@0.5.2)(optionator@0.9.4)(oxlint@1.51.0)(rolldown@1.0.0-rc.5)(rollup@4.57.1)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3))(yaml@2.8.2) 9418 + nuxt: 4.3.1(@parcel/watcher@2.5.6)(@types/node@25.3.5)(@vue/compiler-sfc@3.5.28)(better-sqlite3@12.6.2)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.6.2))(eslint@10.0.0(jiti@2.6.1))(ioredis@5.9.2)(lightningcss@1.31.1)(magicast@0.5.2)(optionator@0.9.4)(oxlint@1.51.0)(rolldown@1.0.0-rc.5)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3))(yaml@2.8.2) 9441 9419 pathe: 2.0.3 9442 9420 pkg-types: 2.3.0 9443 9421 postcss: 8.5.6 9444 - rollup-plugin-visualizer: 6.0.5(rolldown@1.0.0-rc.5)(rollup@4.57.1) 9422 + rollup-plugin-visualizer: 6.0.5(rolldown@1.0.0-rc.5)(rollup@4.59.0) 9445 9423 seroval: 1.5.0 9446 9424 std-env: 3.10.0 9447 9425 ufo: 1.6.3 9448 9426 unenv: 2.0.0-rc.24 9449 - vite: 7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 9450 - vite-node: 5.3.0(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 9451 - vite-plugin-checker: 0.12.0(eslint@10.0.0(jiti@2.6.1))(optionator@0.9.4)(oxlint@1.51.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3)) 9427 + vite: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 9428 + vite-node: 5.3.0(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 9429 + vite-plugin-checker: 0.12.0(eslint@10.0.0(jiti@2.6.1))(optionator@0.9.4)(oxlint@1.51.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3)) 9452 9430 vue: 3.5.28(typescript@5.9.3) 9453 9431 vue-bundle-renderer: 2.2.0 9454 9432 optionalDependencies: ··· 9487 9465 transitivePeerDependencies: 9488 9466 - magicast 9489 9467 9490 - '@nuxtjs/i18n@10.2.3(patch_hash=ac0616015af3001274a134d593af55dc8a0e5823f2e43f27991e70d46598c82b)(@vue/compiler-dom@3.5.28)(db0@0.3.4(better-sqlite3@12.6.2))(eslint@10.0.0(jiti@2.6.1))(ioredis@5.9.2)(magicast@0.5.2)(rollup@4.57.1)(vue@3.5.28(typescript@5.9.3))': 9468 + '@nuxtjs/i18n@10.2.3(patch_hash=ac0616015af3001274a134d593af55dc8a0e5823f2e43f27991e70d46598c82b)(@vue/compiler-dom@3.5.28)(db0@0.3.4(better-sqlite3@12.6.2))(eslint@10.0.0(jiti@2.6.1))(ioredis@5.9.2)(magicast@0.5.2)(rollup@4.59.0)(vue@3.5.28(typescript@5.9.3))': 9491 9469 dependencies: 9492 9470 '@intlify/core': 11.2.8 9493 9471 '@intlify/h3': 0.7.4 9494 9472 '@intlify/shared': 11.2.8 9495 - '@intlify/unplugin-vue-i18n': 11.0.3(@vue/compiler-dom@3.5.28)(eslint@10.0.0(jiti@2.6.1))(rollup@4.57.1)(typescript@5.9.3)(vue-i18n@11.2.8(vue@3.5.28(typescript@5.9.3)))(vue@3.5.28(typescript@5.9.3)) 9473 + '@intlify/unplugin-vue-i18n': 11.0.3(@vue/compiler-dom@3.5.28)(eslint@10.0.0(jiti@2.6.1))(rollup@4.59.0)(typescript@5.9.3)(vue-i18n@11.2.8(vue@3.5.28(typescript@5.9.3)))(vue@3.5.28(typescript@5.9.3)) 9496 9474 '@intlify/utils': 0.13.0 9497 - '@miyaneee/rollup-plugin-json5': 1.2.0(rollup@4.57.1) 9475 + '@miyaneee/rollup-plugin-json5': 1.2.0(rollup@4.59.0) 9498 9476 '@nuxt/kit': 4.3.1(magicast@0.5.2) 9499 - '@rollup/plugin-yaml': 4.1.2(rollup@4.57.1) 9477 + '@rollup/plugin-yaml': 4.1.2(rollup@4.59.0) 9500 9478 '@vue/compiler-sfc': 3.5.28 9501 9479 defu: 6.1.4 9502 - devalue: 5.6.2 9480 + devalue: 5.6.3 9503 9481 h3: 1.15.5 9504 9482 knitwork: 1.3.0 9505 9483 magic-string: 0.30.21 ··· 10124 10102 10125 10103 '@rolldown/pluginutils@1.0.0-rc.5': {} 10126 10104 10127 - '@rollup/plugin-alias@6.0.0(rollup@4.57.1)': 10105 + '@rollup/plugin-alias@6.0.0(rollup@4.59.0)': 10128 10106 optionalDependencies: 10129 - rollup: 4.57.1 10107 + rollup: 4.59.0 10130 10108 10131 10109 '@rollup/plugin-babel@5.3.1(@babel/core@7.29.0)(rollup@2.80.0)': 10132 10110 dependencies: ··· 10137 10115 transitivePeerDependencies: 10138 10116 - supports-color 10139 10117 10140 - '@rollup/plugin-commonjs@29.0.0(rollup@4.57.1)': 10118 + '@rollup/plugin-commonjs@29.0.0(rollup@4.59.0)': 10141 10119 dependencies: 10142 - '@rollup/pluginutils': 5.3.0(rollup@4.57.1) 10120 + '@rollup/pluginutils': 5.3.0(rollup@4.59.0) 10143 10121 commondir: 1.0.1 10144 10122 estree-walker: 2.0.2 10145 10123 fdir: 6.5.0(picomatch@4.0.3) ··· 10147 10125 magic-string: 0.30.21 10148 10126 picomatch: 4.0.3 10149 10127 optionalDependencies: 10150 - rollup: 4.57.1 10128 + rollup: 4.59.0 10151 10129 10152 - '@rollup/plugin-inject@5.0.5(rollup@4.57.1)': 10130 + '@rollup/plugin-inject@5.0.5(rollup@4.59.0)': 10153 10131 dependencies: 10154 - '@rollup/pluginutils': 5.3.0(rollup@4.57.1) 10132 + '@rollup/pluginutils': 5.3.0(rollup@4.59.0) 10155 10133 estree-walker: 2.0.2 10156 10134 magic-string: 0.30.21 10157 10135 optionalDependencies: 10158 - rollup: 4.57.1 10136 + rollup: 4.59.0 10159 10137 10160 - '@rollup/plugin-json@6.1.0(rollup@4.57.1)': 10138 + '@rollup/plugin-json@6.1.0(rollup@4.59.0)': 10161 10139 dependencies: 10162 - '@rollup/pluginutils': 5.3.0(rollup@4.57.1) 10140 + '@rollup/pluginutils': 5.3.0(rollup@4.59.0) 10163 10141 optionalDependencies: 10164 - rollup: 4.57.1 10142 + rollup: 4.59.0 10165 10143 10166 10144 '@rollup/plugin-node-resolve@15.3.1(rollup@2.80.0)': 10167 10145 dependencies: ··· 10173 10151 optionalDependencies: 10174 10152 rollup: 2.80.0 10175 10153 10176 - '@rollup/plugin-node-resolve@16.0.3(rollup@4.57.1)': 10154 + '@rollup/plugin-node-resolve@16.0.3(rollup@4.59.0)': 10177 10155 dependencies: 10178 - '@rollup/pluginutils': 5.3.0(rollup@4.57.1) 10156 + '@rollup/pluginutils': 5.3.0(rollup@4.59.0) 10179 10157 '@types/resolve': 1.20.2 10180 10158 deepmerge: 4.3.1 10181 10159 is-module: 1.0.0 10182 10160 resolve: 1.22.11 10183 10161 optionalDependencies: 10184 - rollup: 4.57.1 10162 + rollup: 4.59.0 10185 10163 10186 10164 '@rollup/plugin-replace@2.4.2(rollup@2.80.0)': 10187 10165 dependencies: ··· 10189 10167 magic-string: 0.25.9 10190 10168 rollup: 2.80.0 10191 10169 10192 - '@rollup/plugin-replace@6.0.3(rollup@4.57.1)': 10170 + '@rollup/plugin-replace@6.0.3(rollup@4.59.0)': 10193 10171 dependencies: 10194 - '@rollup/pluginutils': 5.3.0(rollup@4.57.1) 10172 + '@rollup/pluginutils': 5.3.0(rollup@4.59.0) 10195 10173 magic-string: 0.30.21 10196 10174 optionalDependencies: 10197 - rollup: 4.57.1 10175 + rollup: 4.59.0 10198 10176 10199 10177 '@rollup/plugin-terser@0.4.4(rollup@2.80.0)': 10200 10178 dependencies: 10201 - serialize-javascript: 6.0.2 10179 + serialize-javascript: 7.0.4 10202 10180 smob: 1.5.0 10203 10181 terser: 5.46.0 10204 10182 optionalDependencies: 10205 10183 rollup: 2.80.0 10206 10184 10207 - '@rollup/plugin-terser@0.4.4(rollup@4.57.1)': 10185 + '@rollup/plugin-terser@0.4.4(rollup@4.59.0)': 10208 10186 dependencies: 10209 - serialize-javascript: 6.0.2 10187 + serialize-javascript: 7.0.4 10210 10188 smob: 1.5.0 10211 10189 terser: 5.46.0 10212 10190 optionalDependencies: 10213 - rollup: 4.57.1 10191 + rollup: 4.59.0 10214 10192 10215 - '@rollup/plugin-yaml@4.1.2(rollup@4.57.1)': 10193 + '@rollup/plugin-yaml@4.1.2(rollup@4.59.0)': 10216 10194 dependencies: 10217 - '@rollup/pluginutils': 5.3.0(rollup@4.57.1) 10195 + '@rollup/pluginutils': 5.3.0(rollup@4.59.0) 10218 10196 js-yaml: 4.1.1 10219 10197 tosource: 2.0.0-alpha.3 10220 10198 optionalDependencies: 10221 - rollup: 4.57.1 10199 + rollup: 4.59.0 10222 10200 10223 10201 '@rollup/pluginutils@3.1.0(rollup@2.80.0)': 10224 10202 dependencies: ··· 10235 10213 optionalDependencies: 10236 10214 rollup: 2.80.0 10237 10215 10238 - '@rollup/pluginutils@5.3.0(rollup@4.57.1)': 10216 + '@rollup/pluginutils@5.3.0(rollup@4.59.0)': 10239 10217 dependencies: 10240 10218 '@types/estree': 1.0.8 10241 10219 estree-walker: 2.0.2 10242 10220 picomatch: 4.0.3 10243 10221 optionalDependencies: 10244 - rollup: 4.57.1 10222 + rollup: 4.59.0 10245 10223 10246 - '@rollup/rollup-android-arm-eabi@4.57.1': 10224 + '@rollup/rollup-android-arm-eabi@4.59.0': 10247 10225 optional: true 10248 10226 10249 - '@rollup/rollup-android-arm64@4.57.1': 10227 + '@rollup/rollup-android-arm64@4.59.0': 10250 10228 optional: true 10251 10229 10252 - '@rollup/rollup-darwin-arm64@4.57.1': 10230 + '@rollup/rollup-darwin-arm64@4.59.0': 10253 10231 optional: true 10254 10232 10255 - '@rollup/rollup-darwin-x64@4.57.1': 10233 + '@rollup/rollup-darwin-x64@4.59.0': 10256 10234 optional: true 10257 10235 10258 - '@rollup/rollup-freebsd-arm64@4.57.1': 10236 + '@rollup/rollup-freebsd-arm64@4.59.0': 10259 10237 optional: true 10260 10238 10261 - '@rollup/rollup-freebsd-x64@4.57.1': 10239 + '@rollup/rollup-freebsd-x64@4.59.0': 10262 10240 optional: true 10263 10241 10264 - '@rollup/rollup-linux-arm-gnueabihf@4.57.1': 10242 + '@rollup/rollup-linux-arm-gnueabihf@4.59.0': 10265 10243 optional: true 10266 10244 10267 - '@rollup/rollup-linux-arm-musleabihf@4.57.1': 10245 + '@rollup/rollup-linux-arm-musleabihf@4.59.0': 10268 10246 optional: true 10269 10247 10270 - '@rollup/rollup-linux-arm64-gnu@4.57.1': 10248 + '@rollup/rollup-linux-arm64-gnu@4.59.0': 10271 10249 optional: true 10272 10250 10273 - '@rollup/rollup-linux-arm64-musl@4.57.1': 10251 + '@rollup/rollup-linux-arm64-musl@4.59.0': 10274 10252 optional: true 10275 10253 10276 - '@rollup/rollup-linux-loong64-gnu@4.57.1': 10254 + '@rollup/rollup-linux-loong64-gnu@4.59.0': 10277 10255 optional: true 10278 10256 10279 - '@rollup/rollup-linux-loong64-musl@4.57.1': 10257 + '@rollup/rollup-linux-loong64-musl@4.59.0': 10280 10258 optional: true 10281 10259 10282 - '@rollup/rollup-linux-ppc64-gnu@4.57.1': 10260 + '@rollup/rollup-linux-ppc64-gnu@4.59.0': 10283 10261 optional: true 10284 10262 10285 - '@rollup/rollup-linux-ppc64-musl@4.57.1': 10263 + '@rollup/rollup-linux-ppc64-musl@4.59.0': 10286 10264 optional: true 10287 10265 10288 - '@rollup/rollup-linux-riscv64-gnu@4.57.1': 10266 + '@rollup/rollup-linux-riscv64-gnu@4.59.0': 10289 10267 optional: true 10290 10268 10291 - '@rollup/rollup-linux-riscv64-musl@4.57.1': 10269 + '@rollup/rollup-linux-riscv64-musl@4.59.0': 10292 10270 optional: true 10293 10271 10294 - '@rollup/rollup-linux-s390x-gnu@4.57.1': 10272 + '@rollup/rollup-linux-s390x-gnu@4.59.0': 10295 10273 optional: true 10296 10274 10297 - '@rollup/rollup-linux-x64-gnu@4.57.1': 10275 + '@rollup/rollup-linux-x64-gnu@4.59.0': 10298 10276 optional: true 10299 10277 10300 - '@rollup/rollup-linux-x64-musl@4.57.1': 10278 + '@rollup/rollup-linux-x64-musl@4.59.0': 10301 10279 optional: true 10302 10280 10303 - '@rollup/rollup-openbsd-x64@4.57.1': 10281 + '@rollup/rollup-openbsd-x64@4.59.0': 10304 10282 optional: true 10305 10283 10306 - '@rollup/rollup-openharmony-arm64@4.57.1': 10284 + '@rollup/rollup-openharmony-arm64@4.59.0': 10307 10285 optional: true 10308 10286 10309 - '@rollup/rollup-win32-arm64-msvc@4.57.1': 10287 + '@rollup/rollup-win32-arm64-msvc@4.59.0': 10310 10288 optional: true 10311 10289 10312 - '@rollup/rollup-win32-ia32-msvc@4.57.1': 10290 + '@rollup/rollup-win32-ia32-msvc@4.59.0': 10313 10291 optional: true 10314 10292 10315 - '@rollup/rollup-win32-x64-gnu@4.57.1': 10293 + '@rollup/rollup-win32-x64-gnu@4.59.0': 10316 10294 optional: true 10317 10295 10318 - '@rollup/rollup-win32-x64-msvc@4.57.1': 10296 + '@rollup/rollup-win32-x64-msvc@4.59.0': 10319 10297 optional: true 10320 10298 10321 10299 '@shikijs/core@3.22.0': ··· 10497 10475 postcss: 8.5.6 10498 10476 tailwindcss: 4.2.1 10499 10477 10500 - '@tailwindcss/vite@4.2.1(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))': 10478 + '@tailwindcss/vite@4.2.1(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))': 10501 10479 dependencies: 10502 10480 '@tailwindcss/node': 4.2.1 10503 10481 '@tailwindcss/oxide': 4.2.1 10504 10482 tailwindcss: 4.2.1 10505 - vite: 7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 10483 + vite: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 10506 10484 10507 10485 '@tanstack/table-core@8.21.3': {} 10508 10486 ··· 10793 10771 10794 10772 '@types/ms@2.1.0': {} 10795 10773 10796 - '@types/node@25.3.3': 10774 + '@types/node@25.3.5': 10797 10775 dependencies: 10798 10776 undici-types: 7.18.2 10799 10777 ··· 10840 10818 '@typescript-eslint/types': 8.55.0 10841 10819 '@typescript-eslint/visitor-keys': 8.55.0 10842 10820 debug: 4.4.3 10843 - minimatch: 9.0.5 10821 + minimatch: 10.2.4 10844 10822 semver: 7.7.4 10845 10823 tinyglobby: 0.2.15 10846 10824 ts-api-utils: 2.4.0(typescript@5.9.3) ··· 10871 10849 dependencies: 10872 10850 valibot: 1.2.0(typescript@5.9.3) 10873 10851 10874 - '@vercel/nft@1.3.1(rollup@4.57.1)': 10852 + '@vercel/nft@1.3.1(rollup@4.59.0)': 10875 10853 dependencies: 10876 10854 '@mapbox/node-pre-gyp': 2.0.3 10877 - '@rollup/pluginutils': 5.3.0(rollup@4.57.1) 10855 + '@rollup/pluginutils': 5.3.0(rollup@4.59.0) 10878 10856 acorn: 8.15.0 10879 10857 acorn-import-attributes: 1.9.5(acorn@8.15.0) 10880 10858 async-sema: 3.1.1 ··· 10890 10868 - rollup 10891 10869 - supports-color 10892 10870 10893 - '@vite-pwa/nuxt@1.1.1(magicast@0.5.2)(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(workbox-build@7.4.0)(workbox-window@7.4.0)': 10871 + '@vite-pwa/nuxt@1.1.1(magicast@0.5.2)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(workbox-build@7.4.0)(workbox-window@7.4.0)': 10894 10872 dependencies: 10895 10873 '@nuxt/kit': 3.21.1(magicast@0.5.2) 10896 10874 pathe: 1.1.2 10897 10875 ufo: 1.6.3 10898 - vite-plugin-pwa: 1.2.0(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(workbox-build@7.4.0)(workbox-window@7.4.0) 10876 + vite-plugin-pwa: 1.2.0(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(workbox-build@7.4.0)(workbox-window@7.4.0) 10899 10877 transitivePeerDependencies: 10900 10878 - magicast 10901 10879 - supports-color ··· 10903 10881 - workbox-build 10904 10882 - workbox-window 10905 10883 10906 - '@vitejs/plugin-vue-jsx@5.1.4(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3))': 10884 + '@vitejs/plugin-vue-jsx@5.1.4(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3))': 10907 10885 dependencies: 10908 10886 '@babel/core': 7.29.0 10909 10887 '@babel/plugin-syntax-typescript': 7.28.6(@babel/core@7.29.0) 10910 10888 '@babel/plugin-transform-typescript': 7.28.6(@babel/core@7.29.0) 10911 10889 '@rolldown/pluginutils': 1.0.0-rc.5 10912 10890 '@vue/babel-plugin-jsx': 2.0.1(@babel/core@7.29.0) 10913 - vite: 7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 10891 + vite: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 10914 10892 vue: 3.5.28(typescript@5.9.3) 10915 10893 transitivePeerDependencies: 10916 10894 - supports-color 10917 10895 10918 - '@vitejs/plugin-vue@6.0.4(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3))': 10896 + '@vitejs/plugin-vue@6.0.4(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3))': 10919 10897 dependencies: 10920 10898 '@rolldown/pluginutils': 1.0.0-rc.2 10921 - vite: 7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 10899 + vite: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 10922 10900 vue: 3.5.28(typescript@5.9.3) 10923 10901 10924 10902 '@vitest/expect@4.0.18': ··· 10930 10908 chai: 6.2.2 10931 10909 tinyrainbow: 3.0.3 10932 10910 10933 - '@vitest/mocker@4.0.18(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))': 10911 + '@vitest/mocker@4.0.18(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))': 10934 10912 dependencies: 10935 10913 '@vitest/spy': 4.0.18 10936 10914 estree-walker: 3.0.3 10937 10915 magic-string: 0.30.21 10938 10916 optionalDependencies: 10939 - vite: 7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 10917 + vite: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 10940 10918 10941 10919 '@vitest/pretty-format@4.0.18': 10942 10920 dependencies: ··· 11055 11033 11056 11034 '@vue/devtools-api@6.6.4': {} 11057 11035 11058 - '@vue/devtools-core@8.0.6(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3))': 11036 + '@vue/devtools-core@8.0.6(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3))': 11059 11037 dependencies: 11060 11038 '@vue/devtools-kit': 8.0.6 11061 11039 '@vue/devtools-shared': 8.0.6 11062 11040 mitt: 3.0.1 11063 11041 nanoid: 5.1.6 11064 11042 pathe: 2.0.3 11065 - vite-hot-client: 2.1.0(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)) 11043 + vite-hot-client: 2.1.0(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)) 11066 11044 vue: 3.5.28(typescript@5.9.3) 11067 11045 transitivePeerDependencies: 11068 11046 - vite ··· 11154 11132 11155 11133 '@vueuse/metadata@14.2.1': {} 11156 11134 11157 - '@vueuse/nuxt@14.2.1(magicast@0.5.2)(nuxt@4.3.1(@parcel/watcher@2.5.6)(@types/node@25.3.3)(@vue/compiler-sfc@3.5.28)(better-sqlite3@12.6.2)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.6.2))(eslint@10.0.0(jiti@2.6.1))(ioredis@5.9.2)(lightningcss@1.31.1)(magicast@0.5.2)(optionator@0.9.4)(oxlint@1.51.0)(rolldown@1.0.0-rc.5)(rollup@4.57.1)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3))(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3))': 11135 + '@vueuse/nuxt@14.2.1(magicast@0.5.2)(nuxt@4.3.1(@parcel/watcher@2.5.6)(@types/node@25.3.5)(@vue/compiler-sfc@3.5.28)(better-sqlite3@12.6.2)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.6.2))(eslint@10.0.0(jiti@2.6.1))(ioredis@5.9.2)(lightningcss@1.31.1)(magicast@0.5.2)(optionator@0.9.4)(oxlint@1.51.0)(rolldown@1.0.0-rc.5)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3))(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3))': 11158 11136 dependencies: 11159 11137 '@nuxt/kit': 4.3.1(magicast@0.5.2) 11160 11138 '@vueuse/core': 14.2.1(vue@3.5.28(typescript@5.9.3)) 11161 11139 '@vueuse/metadata': 14.2.1 11162 11140 local-pkg: 1.1.2 11163 - nuxt: 4.3.1(@parcel/watcher@2.5.6)(@types/node@25.3.3)(@vue/compiler-sfc@3.5.28)(better-sqlite3@12.6.2)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.6.2))(eslint@10.0.0(jiti@2.6.1))(ioredis@5.9.2)(lightningcss@1.31.1)(magicast@0.5.2)(optionator@0.9.4)(oxlint@1.51.0)(rolldown@1.0.0-rc.5)(rollup@4.57.1)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3))(yaml@2.8.2) 11141 + nuxt: 4.3.1(@parcel/watcher@2.5.6)(@types/node@25.3.5)(@vue/compiler-sfc@3.5.28)(better-sqlite3@12.6.2)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.6.2))(eslint@10.0.0(jiti@2.6.1))(ioredis@5.9.2)(lightningcss@1.31.1)(magicast@0.5.2)(optionator@0.9.4)(oxlint@1.51.0)(rolldown@1.0.0-rc.5)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3))(yaml@2.8.2) 11164 11142 vue: 3.5.28(typescript@5.9.3) 11165 11143 transitivePeerDependencies: 11166 11144 - magicast ··· 11316 11294 11317 11295 b4a@1.7.3: {} 11318 11296 11319 - babel-plugin-polyfill-corejs2@0.4.15(@babel/core@7.29.0): 11297 + babel-plugin-polyfill-corejs2@0.4.16(@babel/core@7.29.0): 11320 11298 dependencies: 11321 11299 '@babel/compat-data': 7.29.0 11322 11300 '@babel/core': 7.29.0 11323 - '@babel/helper-define-polyfill-provider': 0.6.6(@babel/core@7.29.0) 11301 + '@babel/helper-define-polyfill-provider': 0.6.7(@babel/core@7.29.0) 11324 11302 semver: 6.3.1 11325 11303 transitivePeerDependencies: 11326 11304 - supports-color 11327 11305 11328 - babel-plugin-polyfill-corejs3@0.14.0(@babel/core@7.29.0): 11306 + babel-plugin-polyfill-corejs3@0.14.1(@babel/core@7.29.0): 11329 11307 dependencies: 11330 11308 '@babel/core': 7.29.0 11331 - '@babel/helper-define-polyfill-provider': 0.6.6(@babel/core@7.29.0) 11309 + '@babel/helper-define-polyfill-provider': 0.6.7(@babel/core@7.29.0) 11332 11310 core-js-compat: 3.48.0 11333 11311 transitivePeerDependencies: 11334 11312 - supports-color 11335 11313 11336 - babel-plugin-polyfill-regenerator@0.6.6(@babel/core@7.29.0): 11314 + babel-plugin-polyfill-regenerator@0.6.7(@babel/core@7.29.0): 11337 11315 dependencies: 11338 11316 '@babel/core': 7.29.0 11339 - '@babel/helper-define-polyfill-provider': 0.6.6(@babel/core@7.29.0) 11317 + '@babel/helper-define-polyfill-provider': 0.6.7(@babel/core@7.29.0) 11340 11318 transitivePeerDependencies: 11341 11319 - supports-color 11342 11320 11343 11321 bail@2.0.2: {} 11344 - 11345 - balanced-match@1.0.2: {} 11346 11322 11347 11323 balanced-match@4.0.4: {} 11348 11324 ··· 11371 11347 11372 11348 boolbase@1.0.0: {} 11373 11349 11374 - brace-expansion@2.0.2: 11375 - dependencies: 11376 - balanced-match: 1.0.2 11377 - 11378 11350 brace-expansion@5.0.3: 11379 11351 dependencies: 11380 11352 balanced-match: 4.0.4 ··· 11737 11709 11738 11710 detect-libc@2.1.2: {} 11739 11711 11740 - devalue@5.6.2: {} 11712 + devalue@5.6.3: {} 11741 11713 11742 11714 devlop@1.1.0: 11743 11715 dependencies: ··· 12025 11997 optionalDependencies: 12026 11998 source-map: 0.6.1 12027 11999 12028 - eslint-scope@9.1.1: 12000 + eslint-scope@9.1.2: 12029 12001 dependencies: 12030 12002 '@types/esrecurse': 4.3.1 12031 12003 '@types/estree': 1.0.8 ··· 12042 12014 dependencies: 12043 12015 '@eslint-community/eslint-utils': 4.9.1(eslint@10.0.0(jiti@2.6.1)) 12044 12016 '@eslint-community/regexpp': 4.12.2 12045 - '@eslint/config-array': 0.23.2 12046 - '@eslint/config-helpers': 0.5.2 12047 - '@eslint/core': 1.1.0 12048 - '@eslint/plugin-kit': 0.6.0 12017 + '@eslint/config-array': 0.23.3 12018 + '@eslint/config-helpers': 0.5.3 12019 + '@eslint/core': 1.1.1 12020 + '@eslint/plugin-kit': 0.6.1 12049 12021 '@humanfs/node': 0.16.7 12050 12022 '@humanwhocodes/module-importer': 1.0.1 12051 12023 '@humanwhocodes/retry': 0.4.3 ··· 12054 12026 cross-spawn: 7.0.6 12055 12027 debug: 4.4.3 12056 12028 escape-string-regexp: 4.0.0 12057 - eslint-scope: 9.1.1 12029 + eslint-scope: 9.1.2 12058 12030 eslint-visitor-keys: 5.0.1 12059 - espree: 11.1.1 12031 + espree: 11.2.0 12060 12032 esquery: 1.7.0 12061 12033 esutils: 2.0.3 12062 12034 fast-deep-equal: 3.1.3 ··· 12075 12047 transitivePeerDependencies: 12076 12048 - supports-color 12077 12049 12078 - espree@11.1.1: 12050 + espree@11.2.0: 12079 12051 dependencies: 12080 12052 acorn: 8.16.0 12081 12053 acorn-jsx: 5.3.2(acorn@8.16.0) ··· 12179 12151 12180 12152 filelist@1.0.6: 12181 12153 dependencies: 12182 - minimatch: 5.1.9 12154 + minimatch: 10.2.4 12183 12155 12184 12156 fill-range@7.1.1: 12185 12157 dependencies: ··· 12192 12164 12193 12165 flat-cache@4.0.1: 12194 12166 dependencies: 12195 - flatted: 3.3.4 12167 + flatted: 3.4.0 12196 12168 keyv: 4.5.4 12197 12169 12198 12170 flat@6.0.1: {} 12199 12171 12200 - flatted@3.3.4: {} 12172 + flatted@3.4.0: {} 12201 12173 12202 12174 fontaine@0.8.0: 12203 12175 dependencies: ··· 12213 12185 dependencies: 12214 12186 tiny-inflate: 1.0.3 12215 12187 12216 - fontless@0.2.1(db0@0.3.4(better-sqlite3@12.6.2))(ioredis@5.9.2)(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)): 12188 + fontless@0.2.1(db0@0.3.4(better-sqlite3@12.6.2))(ioredis@5.9.2)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)): 12217 12189 dependencies: 12218 12190 consola: 3.4.2 12219 12191 css-tree: 3.1.0 ··· 12229 12201 unifont: 0.7.4 12230 12202 unstorage: 1.17.4(db0@0.3.4(better-sqlite3@12.6.2))(ioredis@5.9.2) 12231 12203 optionalDependencies: 12232 - vite: 7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 12204 + vite: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 12233 12205 transitivePeerDependencies: 12234 12206 - '@azure/app-configuration' 12235 12207 - '@azure/cosmos' ··· 12371 12343 dependencies: 12372 12344 foreground-child: 3.3.1 12373 12345 jackspeak: 3.4.3 12374 - minimatch: 9.0.5 12346 + minimatch: 10.2.4 12375 12347 minipass: 7.1.2 12376 12348 package-json-from-dist: 1.0.1 12377 12349 path-scurry: 1.11.1 ··· 12387 12359 12388 12360 glob@13.0.2: 12389 12361 dependencies: 12390 - minimatch: 10.1.2 12362 + minimatch: 10.2.4 12391 12363 minipass: 7.1.2 12392 12364 path-scurry: 2.0.1 12393 12365 ··· 12691 12663 ofetch: 1.5.1 12692 12664 pathe: 2.0.3 12693 12665 sharp: 0.34.5 12694 - svgo: 4.0.0 12666 + svgo: 4.0.1 12695 12667 ufo: 1.6.3 12696 12668 unstorage: 1.17.4(db0@0.3.4(better-sqlite3@12.6.2))(ioredis@5.9.2) 12697 12669 xss: 1.0.15 ··· 13156 13128 '@babel/types': 7.29.0 13157 13129 source-map-js: 1.2.1 13158 13130 13159 - markdown-it@14.1.0: 13131 + markdown-it@14.1.1: 13160 13132 dependencies: 13161 13133 argparse: 2.0.1 13162 13134 entities: 4.5.0 ··· 13505 13477 13506 13478 minimark@0.2.0: {} 13507 13479 13508 - minimatch@10.1.2: 13509 - dependencies: 13510 - '@isaacs/brace-expansion': 5.0.1 13511 - 13512 13480 minimatch@10.2.4: 13513 13481 dependencies: 13514 13482 brace-expansion: 5.0.3 13515 13483 13516 - minimatch@5.1.6: 13517 - dependencies: 13518 - brace-expansion: 2.0.2 13519 - 13520 - minimatch@5.1.9: 13521 - dependencies: 13522 - brace-expansion: 2.0.2 13523 - 13524 - minimatch@9.0.5: 13525 - dependencies: 13526 - brace-expansion: 2.0.2 13527 - 13528 13484 minimist@1.2.8: {} 13529 13485 13530 13486 minimisted@2.0.1: ··· 13537 13493 13538 13494 minizlib@3.1.0: 13539 13495 dependencies: 13540 - minipass: 7.1.2 13496 + minipass: 7.1.3 13541 13497 13542 13498 mitt@3.0.1: {} 13543 13499 ··· 13580 13536 13581 13537 nanoid@5.1.6: {} 13582 13538 13583 - nanotar@0.2.0: {} 13539 + nanotar@0.3.0: {} 13584 13540 13585 13541 napi-build-utils@2.0.0: {} 13586 13542 ··· 13589 13545 nitropack@2.13.1(better-sqlite3@12.6.2)(rolldown@1.0.0-rc.5): 13590 13546 dependencies: 13591 13547 '@cloudflare/kv-asset-handler': 0.4.2 13592 - '@rollup/plugin-alias': 6.0.0(rollup@4.57.1) 13593 - '@rollup/plugin-commonjs': 29.0.0(rollup@4.57.1) 13594 - '@rollup/plugin-inject': 5.0.5(rollup@4.57.1) 13595 - '@rollup/plugin-json': 6.1.0(rollup@4.57.1) 13596 - '@rollup/plugin-node-resolve': 16.0.3(rollup@4.57.1) 13597 - '@rollup/plugin-replace': 6.0.3(rollup@4.57.1) 13598 - '@rollup/plugin-terser': 0.4.4(rollup@4.57.1) 13599 - '@vercel/nft': 1.3.1(rollup@4.57.1) 13548 + '@rollup/plugin-alias': 6.0.0(rollup@4.59.0) 13549 + '@rollup/plugin-commonjs': 29.0.0(rollup@4.59.0) 13550 + '@rollup/plugin-inject': 5.0.5(rollup@4.59.0) 13551 + '@rollup/plugin-json': 6.1.0(rollup@4.59.0) 13552 + '@rollup/plugin-node-resolve': 16.0.3(rollup@4.59.0) 13553 + '@rollup/plugin-replace': 6.0.3(rollup@4.59.0) 13554 + '@rollup/plugin-terser': 0.4.4(rollup@4.59.0) 13555 + '@vercel/nft': 1.3.1(rollup@4.59.0) 13600 13556 archiver: 7.0.1 13601 13557 c12: 3.3.3(magicast@0.5.2) 13602 13558 chokidar: 5.0.0 ··· 13638 13594 pkg-types: 2.3.0 13639 13595 pretty-bytes: 7.1.0 13640 13596 radix3: 1.1.2 13641 - rollup: 4.57.1 13642 - rollup-plugin-visualizer: 6.0.5(rolldown@1.0.0-rc.5)(rollup@4.57.1) 13597 + rollup: 4.59.0 13598 + rollup-plugin-visualizer: 6.0.5(rolldown@1.0.0-rc.5)(rollup@4.59.0) 13643 13599 scule: 1.3.0 13644 13600 semver: 7.7.4 13645 13601 serve-placeholder: 2.0.2 ··· 13749 13705 13750 13706 nuxt-define@1.0.0: {} 13751 13707 13752 - nuxt@4.3.1(@parcel/watcher@2.5.6)(@types/node@25.3.3)(@vue/compiler-sfc@3.5.28)(better-sqlite3@12.6.2)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.6.2))(eslint@10.0.0(jiti@2.6.1))(ioredis@5.9.2)(lightningcss@1.31.1)(magicast@0.5.2)(optionator@0.9.4)(oxlint@1.51.0)(rolldown@1.0.0-rc.5)(rollup@4.57.1)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3))(yaml@2.8.2): 13708 + nuxt@4.3.1(@parcel/watcher@2.5.6)(@types/node@25.3.5)(@vue/compiler-sfc@3.5.28)(better-sqlite3@12.6.2)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.6.2))(eslint@10.0.0(jiti@2.6.1))(ioredis@5.9.2)(lightningcss@1.31.1)(magicast@0.5.2)(optionator@0.9.4)(oxlint@1.51.0)(rolldown@1.0.0-rc.5)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3))(yaml@2.8.2): 13753 13709 dependencies: 13754 13710 '@dxup/nuxt': 0.3.2(magicast@0.5.2) 13755 13711 '@nuxt/cli': 3.33.1(@nuxt/schema@4.3.1)(cac@6.7.14)(magicast@0.5.2) 13756 - '@nuxt/devtools': 3.1.1(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3)) 13712 + '@nuxt/devtools': 3.1.1(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3)) 13757 13713 '@nuxt/kit': 4.3.1(magicast@0.5.2) 13758 - '@nuxt/nitro-server': 4.3.1(better-sqlite3@12.6.2)(db0@0.3.4(better-sqlite3@12.6.2))(ioredis@5.9.2)(magicast@0.5.2)(nuxt@4.3.1(@parcel/watcher@2.5.6)(@types/node@25.3.3)(@vue/compiler-sfc@3.5.28)(better-sqlite3@12.6.2)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.6.2))(eslint@10.0.0(jiti@2.6.1))(ioredis@5.9.2)(lightningcss@1.31.1)(magicast@0.5.2)(optionator@0.9.4)(oxlint@1.51.0)(rolldown@1.0.0-rc.5)(rollup@4.57.1)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3))(yaml@2.8.2))(rolldown@1.0.0-rc.5)(typescript@5.9.3) 13714 + '@nuxt/nitro-server': 4.3.1(better-sqlite3@12.6.2)(db0@0.3.4(better-sqlite3@12.6.2))(ioredis@5.9.2)(magicast@0.5.2)(nuxt@4.3.1(@parcel/watcher@2.5.6)(@types/node@25.3.5)(@vue/compiler-sfc@3.5.28)(better-sqlite3@12.6.2)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.6.2))(eslint@10.0.0(jiti@2.6.1))(ioredis@5.9.2)(lightningcss@1.31.1)(magicast@0.5.2)(optionator@0.9.4)(oxlint@1.51.0)(rolldown@1.0.0-rc.5)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3))(yaml@2.8.2))(rolldown@1.0.0-rc.5)(typescript@5.9.3) 13759 13715 '@nuxt/schema': 4.3.1 13760 13716 '@nuxt/telemetry': 2.7.0(@nuxt/kit@4.3.1(magicast@0.5.2)) 13761 - '@nuxt/vite-builder': 4.3.1(@types/node@25.3.3)(eslint@10.0.0(jiti@2.6.1))(lightningcss@1.31.1)(magicast@0.5.2)(nuxt@4.3.1(@parcel/watcher@2.5.6)(@types/node@25.3.3)(@vue/compiler-sfc@3.5.28)(better-sqlite3@12.6.2)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.6.2))(eslint@10.0.0(jiti@2.6.1))(ioredis@5.9.2)(lightningcss@1.31.1)(magicast@0.5.2)(optionator@0.9.4)(oxlint@1.51.0)(rolldown@1.0.0-rc.5)(rollup@4.57.1)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3))(yaml@2.8.2))(optionator@0.9.4)(oxlint@1.51.0)(rolldown@1.0.0-rc.5)(rollup@4.57.1)(terser@5.46.0)(typescript@5.9.3)(vue-tsc@3.2.5(typescript@5.9.3))(vue@3.5.28(typescript@5.9.3))(yaml@2.8.2) 13717 + '@nuxt/vite-builder': 4.3.1(@types/node@25.3.5)(eslint@10.0.0(jiti@2.6.1))(lightningcss@1.31.1)(magicast@0.5.2)(nuxt@4.3.1(@parcel/watcher@2.5.6)(@types/node@25.3.5)(@vue/compiler-sfc@3.5.28)(better-sqlite3@12.6.2)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.6.2))(eslint@10.0.0(jiti@2.6.1))(ioredis@5.9.2)(lightningcss@1.31.1)(magicast@0.5.2)(optionator@0.9.4)(oxlint@1.51.0)(rolldown@1.0.0-rc.5)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3))(yaml@2.8.2))(optionator@0.9.4)(oxlint@1.51.0)(rolldown@1.0.0-rc.5)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vue-tsc@3.2.5(typescript@5.9.3))(vue@3.5.28(typescript@5.9.3))(yaml@2.8.2) 13762 13718 '@unhead/vue': 2.1.4(vue@3.5.28(typescript@5.9.3)) 13763 13719 '@vue/shared': 3.5.28 13764 13720 c12: 3.3.3(magicast@0.5.2) ··· 13768 13724 cookie-es: 2.0.0 13769 13725 defu: 6.1.4 13770 13726 destr: 2.0.5 13771 - devalue: 5.6.2 13727 + devalue: 5.6.3 13772 13728 errx: 0.1.0 13773 13729 escape-string-regexp: 5.0.0 13774 13730 exsolve: 1.0.8 ··· 13781 13737 knitwork: 1.3.0 13782 13738 magic-string: 0.30.21 13783 13739 mlly: 1.8.0 13784 - nanotar: 0.2.0 13740 + nanotar: 0.3.0 13785 13741 nypm: 0.6.5 13786 13742 ofetch: 1.5.1 13787 13743 ohash: 2.0.11 ··· 13810 13766 vue-router: 4.6.4(vue@3.5.28(typescript@5.9.3)) 13811 13767 optionalDependencies: 13812 13768 '@parcel/watcher': 2.5.6 13813 - '@types/node': 25.3.3 13769 + '@types/node': 25.3.5 13814 13770 transitivePeerDependencies: 13815 13771 - '@azure/app-configuration' 13816 13772 - '@azure/cosmos' ··· 14363 14319 dependencies: 14364 14320 postcss: 8.5.6 14365 14321 postcss-value-parser: 4.2.0 14366 - svgo: 4.0.0 14322 + svgo: 4.0.1 14367 14323 14368 14324 postcss-unique-selectors@7.0.4(postcss@8.5.6): 14369 14325 dependencies: ··· 14461 14417 prosemirror-markdown@1.13.4: 14462 14418 dependencies: 14463 14419 '@types/markdown-it': 14.1.2 14464 - markdown-it: 14.1.0 14420 + markdown-it: 14.1.1 14465 14421 prosemirror-model: 1.25.4 14466 14422 14467 14423 prosemirror-menu@1.2.5: ··· 14534 14490 14535 14491 radix3@1.1.2: {} 14536 14492 14537 - randombytes@2.1.0: 14538 - dependencies: 14539 - safe-buffer: 5.2.1 14540 - 14541 14493 range-parser@1.2.1: {} 14542 14494 14543 14495 rc9@2.1.2: ··· 14583 14535 14584 14536 readdir-glob@1.1.3: 14585 14537 dependencies: 14586 - minimatch: 5.1.6 14538 + minimatch: 10.2.4 14587 14539 14588 14540 readdirp@4.1.2: {} 14589 14541 ··· 14812 14764 '@rolldown/binding-win32-x64-msvc': 1.0.0-rc.5 14813 14765 optional: true 14814 14766 14815 - rollup-plugin-visualizer@6.0.5(rolldown@1.0.0-rc.5)(rollup@4.57.1): 14767 + rollup-plugin-visualizer@6.0.5(rolldown@1.0.0-rc.5)(rollup@4.59.0): 14816 14768 dependencies: 14817 14769 open: 8.4.2 14818 14770 picomatch: 4.0.3 ··· 14820 14772 yargs: 17.7.2 14821 14773 optionalDependencies: 14822 14774 rolldown: 1.0.0-rc.5 14823 - rollup: 4.57.1 14775 + rollup: 4.59.0 14824 14776 14825 14777 rollup@2.80.0: 14826 14778 optionalDependencies: 14827 14779 fsevents: 2.3.3 14828 14780 14829 - rollup@4.57.1: 14781 + rollup@4.59.0: 14830 14782 dependencies: 14831 14783 '@types/estree': 1.0.8 14832 14784 optionalDependencies: 14833 - '@rollup/rollup-android-arm-eabi': 4.57.1 14834 - '@rollup/rollup-android-arm64': 4.57.1 14835 - '@rollup/rollup-darwin-arm64': 4.57.1 14836 - '@rollup/rollup-darwin-x64': 4.57.1 14837 - '@rollup/rollup-freebsd-arm64': 4.57.1 14838 - '@rollup/rollup-freebsd-x64': 4.57.1 14839 - '@rollup/rollup-linux-arm-gnueabihf': 4.57.1 14840 - '@rollup/rollup-linux-arm-musleabihf': 4.57.1 14841 - '@rollup/rollup-linux-arm64-gnu': 4.57.1 14842 - '@rollup/rollup-linux-arm64-musl': 4.57.1 14843 - '@rollup/rollup-linux-loong64-gnu': 4.57.1 14844 - '@rollup/rollup-linux-loong64-musl': 4.57.1 14845 - '@rollup/rollup-linux-ppc64-gnu': 4.57.1 14846 - '@rollup/rollup-linux-ppc64-musl': 4.57.1 14847 - '@rollup/rollup-linux-riscv64-gnu': 4.57.1 14848 - '@rollup/rollup-linux-riscv64-musl': 4.57.1 14849 - '@rollup/rollup-linux-s390x-gnu': 4.57.1 14850 - '@rollup/rollup-linux-x64-gnu': 4.57.1 14851 - '@rollup/rollup-linux-x64-musl': 4.57.1 14852 - '@rollup/rollup-openbsd-x64': 4.57.1 14853 - '@rollup/rollup-openharmony-arm64': 4.57.1 14854 - '@rollup/rollup-win32-arm64-msvc': 4.57.1 14855 - '@rollup/rollup-win32-ia32-msvc': 4.57.1 14856 - '@rollup/rollup-win32-x64-gnu': 4.57.1 14857 - '@rollup/rollup-win32-x64-msvc': 4.57.1 14785 + '@rollup/rollup-android-arm-eabi': 4.59.0 14786 + '@rollup/rollup-android-arm64': 4.59.0 14787 + '@rollup/rollup-darwin-arm64': 4.59.0 14788 + '@rollup/rollup-darwin-x64': 4.59.0 14789 + '@rollup/rollup-freebsd-arm64': 4.59.0 14790 + '@rollup/rollup-freebsd-x64': 4.59.0 14791 + '@rollup/rollup-linux-arm-gnueabihf': 4.59.0 14792 + '@rollup/rollup-linux-arm-musleabihf': 4.59.0 14793 + '@rollup/rollup-linux-arm64-gnu': 4.59.0 14794 + '@rollup/rollup-linux-arm64-musl': 4.59.0 14795 + '@rollup/rollup-linux-loong64-gnu': 4.59.0 14796 + '@rollup/rollup-linux-loong64-musl': 4.59.0 14797 + '@rollup/rollup-linux-ppc64-gnu': 4.59.0 14798 + '@rollup/rollup-linux-ppc64-musl': 4.59.0 14799 + '@rollup/rollup-linux-riscv64-gnu': 4.59.0 14800 + '@rollup/rollup-linux-riscv64-musl': 4.59.0 14801 + '@rollup/rollup-linux-s390x-gnu': 4.59.0 14802 + '@rollup/rollup-linux-x64-gnu': 4.59.0 14803 + '@rollup/rollup-linux-x64-musl': 4.59.0 14804 + '@rollup/rollup-openbsd-x64': 4.59.0 14805 + '@rollup/rollup-openharmony-arm64': 4.59.0 14806 + '@rollup/rollup-win32-arm64-msvc': 4.59.0 14807 + '@rollup/rollup-win32-ia32-msvc': 4.59.0 14808 + '@rollup/rollup-win32-x64-gnu': 4.59.0 14809 + '@rollup/rollup-win32-x64-msvc': 4.59.0 14858 14810 fsevents: 2.3.3 14859 14811 14860 14812 rope-sequence@1.3.4: {} ··· 14892 14844 14893 14845 safer-buffer@2.1.2: {} 14894 14846 14895 - sax@1.4.4: {} 14847 + sax@1.5.0: {} 14896 14848 14897 14849 scule@1.3.0: {} 14898 14850 ··· 14916 14868 transitivePeerDependencies: 14917 14869 - supports-color 14918 14870 14919 - serialize-javascript@6.0.2: 14920 - dependencies: 14921 - randombytes: 2.1.0 14871 + serialize-javascript@7.0.4: {} 14922 14872 14923 14873 seroval@1.5.0: {} 14924 14874 ··· 15262 15212 15263 15213 supports-preserve-symlinks-flag@1.0.0: {} 15264 15214 15265 - svgo@4.0.0: 15215 + svgo@4.0.1: 15266 15216 dependencies: 15267 15217 commander: 11.1.0 15268 15218 css-select: 5.2.2 ··· 15270 15220 css-what: 6.2.2 15271 15221 csso: 5.0.5 15272 15222 picocolors: 1.1.1 15273 - sax: 1.4.4 15223 + sax: 1.5.0 15274 15224 15275 15225 system-architecture@0.1.0: {} 15276 15226 ··· 15312 15262 - bare-abort-controller 15313 15263 - react-native-b4a 15314 15264 15315 - tar@7.5.7: 15265 + tar@7.5.10: 15316 15266 dependencies: 15317 15267 '@isaacs/fs-minipass': 4.0.1 15318 15268 chownr: 3.0.0 15319 - minipass: 7.1.2 15269 + minipass: 7.1.3 15320 15270 minizlib: 3.1.0 15321 15271 yallist: 5.0.0 15322 15272 ··· 15748 15698 '@types/unist': 3.0.3 15749 15699 vfile-message: 4.0.3 15750 15700 15751 - vite-dev-rpc@1.1.0(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)): 15701 + vite-dev-rpc@1.1.0(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)): 15752 15702 dependencies: 15753 15703 birpc: 2.9.0 15754 - vite: 7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 15755 - vite-hot-client: 2.1.0(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)) 15704 + vite: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 15705 + vite-hot-client: 2.1.0(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)) 15756 15706 15757 - vite-hot-client@2.1.0(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)): 15707 + vite-hot-client@2.1.0(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)): 15758 15708 dependencies: 15759 - vite: 7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 15709 + vite: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 15760 15710 15761 - vite-node@5.3.0(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2): 15711 + vite-node@5.3.0(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2): 15762 15712 dependencies: 15763 15713 cac: 6.7.14 15764 15714 es-module-lexer: 2.0.0 15765 15715 obug: 2.1.1 15766 15716 pathe: 2.0.3 15767 - vite: 7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 15717 + vite: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 15768 15718 transitivePeerDependencies: 15769 15719 - '@types/node' 15770 15720 - jiti ··· 15778 15728 - tsx 15779 15729 - yaml 15780 15730 15781 - vite-plugin-checker@0.12.0(eslint@10.0.0(jiti@2.6.1))(optionator@0.9.4)(oxlint@1.51.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3)): 15731 + vite-plugin-checker@0.12.0(eslint@10.0.0(jiti@2.6.1))(optionator@0.9.4)(oxlint@1.51.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3)): 15782 15732 dependencies: 15783 15733 '@babel/code-frame': 7.29.0 15784 15734 chokidar: 4.0.3 ··· 15787 15737 picomatch: 4.0.3 15788 15738 tiny-invariant: 1.3.3 15789 15739 tinyglobby: 0.2.15 15790 - vite: 7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 15740 + vite: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 15791 15741 vscode-uri: 3.1.0 15792 15742 optionalDependencies: 15793 15743 eslint: 10.0.0(jiti@2.6.1) ··· 15796 15746 typescript: 5.9.3 15797 15747 vue-tsc: 3.2.5(typescript@5.9.3) 15798 15748 15799 - vite-plugin-inspect@11.3.3(@nuxt/kit@4.3.1(magicast@0.5.2))(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)): 15749 + vite-plugin-inspect@11.3.3(@nuxt/kit@4.3.1(magicast@0.5.2))(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)): 15800 15750 dependencies: 15801 15751 ansis: 4.2.0 15802 15752 debug: 4.4.3 ··· 15806 15756 perfect-debounce: 2.1.0 15807 15757 sirv: 3.0.2 15808 15758 unplugin-utils: 0.3.1 15809 - vite: 7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 15810 - vite-dev-rpc: 1.1.0(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)) 15759 + vite: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 15760 + vite-dev-rpc: 1.1.0(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)) 15811 15761 optionalDependencies: 15812 15762 '@nuxt/kit': 4.3.1(magicast@0.5.2) 15813 15763 transitivePeerDependencies: 15814 15764 - supports-color 15815 15765 15816 - vite-plugin-pwa@1.2.0(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(workbox-build@7.4.0)(workbox-window@7.4.0): 15766 + vite-plugin-pwa@1.2.0(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(workbox-build@7.4.0)(workbox-window@7.4.0): 15817 15767 dependencies: 15818 15768 debug: 4.4.3 15819 15769 pretty-bytes: 6.1.1 15820 15770 tinyglobby: 0.2.15 15821 - vite: 7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 15771 + vite: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 15822 15772 workbox-build: 7.4.0 15823 15773 workbox-window: 7.4.0 15824 15774 transitivePeerDependencies: 15825 15775 - supports-color 15826 15776 15827 - vite-plugin-vue-tracer@1.2.0(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3)): 15777 + vite-plugin-vue-tracer@1.2.0(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3)): 15828 15778 dependencies: 15829 15779 estree-walker: 3.0.3 15830 15780 exsolve: 1.0.8 15831 15781 magic-string: 0.30.21 15832 15782 pathe: 2.0.3 15833 15783 source-map-js: 1.2.1 15834 - vite: 7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 15784 + vite: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 15835 15785 vue: 3.5.28(typescript@5.9.3) 15836 15786 15837 - vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2): 15787 + vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2): 15838 15788 dependencies: 15839 15789 esbuild: 0.27.3 15840 15790 fdir: 6.5.0(picomatch@4.0.3) 15841 15791 picomatch: 4.0.3 15842 15792 postcss: 8.5.6 15843 - rollup: 4.57.1 15793 + rollup: 4.59.0 15844 15794 tinyglobby: 0.2.15 15845 15795 optionalDependencies: 15846 - '@types/node': 25.3.3 15796 + '@types/node': 25.3.5 15847 15797 fsevents: 2.3.3 15848 15798 jiti: 2.6.1 15849 15799 lightningcss: 1.31.1 15850 15800 terser: 5.46.0 15851 15801 yaml: 2.8.2 15852 15802 15853 - vitest-environment-nuxt@1.0.1(magicast@0.5.2)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vitest@4.0.18(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)): 15803 + vitest-environment-nuxt@1.0.1(magicast@0.5.2)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vitest@4.0.18(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)): 15854 15804 dependencies: 15855 - '@nuxt/test-utils': 4.0.0(magicast@0.5.2)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vitest@4.0.18(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)) 15805 + '@nuxt/test-utils': 4.0.0(magicast@0.5.2)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vitest@4.0.18(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)) 15856 15806 transitivePeerDependencies: 15857 15807 - '@cucumber/cucumber' 15858 15808 - '@jest/globals' ··· 15869 15819 - vite 15870 15820 - vitest 15871 15821 15872 - vitest@4.0.18(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2): 15822 + vitest@4.0.18(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2): 15873 15823 dependencies: 15874 15824 '@vitest/expect': 4.0.18 15875 - '@vitest/mocker': 4.0.18(vite@7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)) 15825 + '@vitest/mocker': 4.0.18(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)) 15876 15826 '@vitest/pretty-format': 4.0.18 15877 15827 '@vitest/runner': 4.0.18 15878 15828 '@vitest/snapshot': 4.0.18 ··· 15889 15839 tinyexec: 1.0.2 15890 15840 tinyglobby: 0.2.15 15891 15841 tinyrainbow: 3.0.3 15892 - vite: 7.3.1(@types/node@25.3.3)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 15842 + vite: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2) 15893 15843 why-is-node-running: 2.3.0 15894 15844 optionalDependencies: 15895 - '@types/node': 25.3.3 15845 + '@types/node': 25.3.5 15896 15846 transitivePeerDependencies: 15897 15847 - jiti 15898 15848 - less
public/images/alttp-ocarina.png app/assets/images/alttp-ocarina.png
public/images/content/2026-02-27/IMG_4224.webp

This is a binary file and will not be displayed.

public/images/content/2026-02-27/IMG_4228.webp

This is a binary file and will not be displayed.

public/images/content/2026-02-27/IMG_4252.webp app/assets/images/content/2026-02-27/IMG_4252.webp
public/images/content/2026-02-27/IMG_4335.webp app/assets/images/content/2026-02-27/IMG_4335.webp
public/images/content/2026-02-27/gannonif_854.gif app/assets/images/content/2026-02-27/gannonif_854.gif
public/images/content/2026-02-27/oot2d-label.png app/assets/images/content/2026-02-27/oot2d-label.png
public/images/cucco.png app/assets/images/cucco.png
public/images/moon-pearl.png app/assets/images/moon-pearl.png
public/images/sonic-hedgehog.gif app/assets/images/sonic-hedgehog.gif
public/images/sonic-running.gif app/assets/images/sonic-running.gif
public/images/zfgc.gif app/assets/images/zfgc.gif