diff --git a/docs/app/pages/learn/[...slug].vue b/docs/app/pages/learn/[...slug].vue
index c0c0761..632f36c 100644
--- a/docs/app/pages/learn/[...slug].vue
+++ b/docs/app/pages/learn/[...slug].vue
@@ -100,7 +100,7 @@ const repoLinks = computed(() => [
-
+
Harlan Wilton
diff --git a/docs/content.config.ts b/docs/content.config.ts
index 725a135..b81ca6e 100644
--- a/docs/content.config.ts
+++ b/docs/content.config.ts
@@ -76,6 +76,22 @@ export const collections = {
ogImageComponent: z.string().optional(),
}),
}),
+ root: defineCollection({
+ type: 'page',
+ source: {
+ path: '**/*.md',
+ cwd: resolve('content/root'),
+ prefix: '/',
+ },
+ schema: z.object({
+ icon: z.string().optional(),
+ publishedAt: z.string().optional(),
+ updatedAt: z.string().optional(),
+ keywords: z.array(z.string()).optional(),
+ readTime: z.string(),
+ ogImageComponent: z.string().optional(),
+ }),
+ }),
recipes: defineCollection({
type: 'page',
source: {
diff --git a/docs/content/root/announcement.md b/docs/content/root/announcement.md
new file mode 100644
index 0000000..2e2a855
--- /dev/null
+++ b/docs/content/root/announcement.md
@@ -0,0 +1,148 @@
+---
+title: Announcing Nuxt SEO Stable
+description: Nuxt SEO has reached stable, learn about the journey and what's next.
+readTime: 5 mins
+---
+
+## Introduction
+
+Two years ago I set out to build a suite of SEO modules for Nuxt that would help you with your technical SEO. Today
+I'm excited to announce that Nuxt SEO has reached stable.
+
+In this post I'll tell you a bit about the history of building Nuxt SEO, what the stable means and what's next.
+
+## Nuxt SEO History
+
+As a Nuxt v2 user, I wasn't entirely happy with the SEO modules available.
+
+My concerns with them can be summarised as:
+- **😔 Boilerplate heavy**: Relied on the end-user implementing a lot of boilerplate where data can be [easily inferred](/docs/sitemap/guides/data-sources).
+- **😔 No cross-module compatibility**: Modules did not work with eachother, they can and _should_ inform each other, consider adding a `/sitemap.xml` entry to your `./robots.txt` .
+- **😔 Poor documentation**: While the original authors did their best, it wasn't always clear how to do more complex things with the modules.
+
+For those who didn't go through the early days of Nuxt v3, it was a bit chaotic. The ecosystem was in a state of flux, many modules were not compatible with the new version
+and previous maintainers had moved on to other projects.
+
+This was the golden opportunity to build new modules specifically for Nuxt v3 that could opt-in to the new module system
+and take advantage of the new features that Nuxt v3 had to offer without being bogged down by legacy code.
+
+I set out by introducing two "simple" modules - Nuxt Simple Robots and Nuxt Simple Sitemap.
+
+
+
+::ModuleCard{slug="robots"}
+::
+
+::ModuleCard{slug="sitemap"}
+::
+
+
+
+My principals for building them were:
+- **✨ Immediate value**: Once installed the modules should immediately start providing value with minimal configuration.
+- **🔄 Cross-module compatibility**: SEO modules should talk to each other where possible. Core ecosystem modules should be supported
+ out of the box: [Nuxt I18n](https://i18n.nuxtjs.org/), [Nuxt Content](https://content.nuxt.com/), [Nuxt DevTools](https://devtools.nuxt.com/), etc.
+- **🟢 Don't get in the way**: All modules expose hooks that give you the final say in the behavior of the module. We prefer hooks over a tedium of configuration options.
+
+As these modules gained traction it was clear there was a demand for these technical SEO modules. So I continued and built the following:
+
+
+
+::ModuleCard{slug="og-image"}
+::
+
+::ModuleCard{slug="schema-org"}
+::
+
+::ModuleCard{slug="link-checker"}
+::
+
+::ModuleCard{slug="seo-utils"}
+::
+
+
+
+
+The final touch was to combine them all into a module you could install without installing each one individually
+and a module that would sync the config between all of the modules
+
+
+
+::ModuleCard{slug="nuxt-seo"}
+::
+
+::ModuleCard{slug="site-config"}
+::
+
+
+
+This was introduced as Nuxt SEO Kit at the time and was targeted at **only prerendered apps**.
+
+## Stable Release: v2
+
+Nuxt SEO Kit was released as production-ready, however it was never marked as stable for non-prerendered apps as the submodules
+required several breaking changes as they evolved.
+
+As more and more use cases got handled, the module was renamed to Nuxt SEO, and we entered a lengthy RC and beta phase.
+
+To consider Nuxt SEO stable I wanted to support every possible way of building a Nuxt app:
+Single Page, Server-Side Generated, Server-Side Rendered, Multi-tenancy, Base URLs, Trailing Slashes, etc.
+
+I also wanted to make sure that the modules integrated with core community modules like Nuxt Content, Nuxt i18n, Nuxt DevTools, etc.
+
+As of today, the modules support all of these use cases and more with a full suite of tests to avoid regressions.
+
+As you can imagine this took a lot of work to get right. In fact, it took exactly
+**4.4k commits, 1.2k issues and 72 contributes** to pull off.
+
+In this time the project has grown significantly, with the modules cumulatively getting **1.6M downloads a month**.
+
+I won't bore you with all the minor details related to this [releases](/releases), but what you should know:
+- No breaking changes are planned for the foreseeable future unless they're unavoidable.
+- Most modules are considered "done", new features will only be introduced in exceptional cases.
+- The modules can be considered battle tested with a large number of users and use cases.
+
+The final thing to get the stable out was redoing all of the docs. The docs are the main interface between you and the module
+and they should reflect the care and attention that went into building the modules.
+
+## New Docs
+
+The new docs have been designed in a way to optimize for readability, giving whitespace the respect it deserves.
+
+They use the greenest of the greenfield: Nuxt v4, [Nuxt UI v3](https://ui3.nuxt.dev/) (Tailwind v4), Nuxt Content v3
+
+You'll also find some new features:
+- [Releases](/releases) page to see what's new in each version.
+- New learning resources to help you get started withtechnical SEO, check out the [Controlling Web Crawlers](learn/controlling-crawlers) and [Page Titles](/learn/mastering-meta/titles) guides.
+- The ability to switch majors on the sidebar, this will be possible for future major versions as the content structure has changed to support this.
+- Feedback buttons on every docs page, let me know how I'm doing!
+
+## What's Next?
+
+There are a few upcoming upstream updates that Nuxt SEO will need to support:
+
+- **Nuxt v4 / Nitro v3**: While Nuxt SEO has been tested with Nuxt v4, it has not been fully tested with Nitro v3 which is still in development.
+- **[Nuxt Content v3](https://content3.nuxt.dev/)**: Will likely require new module configuration and hooks.
+- **[Nuxt I18n v9](https://i18n.nuxtjs.org/docs/v9/guide/breaking-changes-in-v9)**: Should already be fully supported but will require more testing once stable.
+
+As the project is now officially stable I look forward to what else is missing from the Nuxt SEO ecosystem.
+
+## Nuxt SEO Pro
+
+I have some ambitious goals for new modules to build and content to create that will continue to help with your technical SEO but
+also help you in growing your site organically.
+
+To align incentives with myself and you, the community, I'm introducing a Pro version of Nuxt SEO to help fund the development.
+
+I will be working on a one-time payment Pro version of Nuxt SEO that will include access to new modules and learning resources
+that will be ready mid-2025.
+
+You can learn more and pre-purchase it for a discount on the [Nuxt SEO Pro](/pro) page.
+
+## Conclusion
+
+I'd like to thank the community for their patience and feedback to get the project to where it is today.
+
+My sponsors have also helped me immensely as it's difficult to justify working so many hours on an open-source project without financial support.
+
+Thanks for your time and I hope you enjoy Nuxt SEO!
diff --git a/docs/nuxt.config.ts b/docs/nuxt.config.ts
index fa4008a..81d7ef5 100644
--- a/docs/nuxt.config.ts
+++ b/docs/nuxt.config.ts
@@ -341,6 +341,7 @@ export default defineNuxtConfig({
scan: true,
includeCustomCollections: true,
},
+ provider: 'iconify'
},
app: {
diff --git a/docs/package.json b/docs/package.json
index ff70e5a..8ea7975 100755
--- a/docs/package.json
+++ b/docs/package.json
@@ -19,6 +19,7 @@
"@iconify-json/radix-icons": "^1.2.1",
"@iconify-json/simple-icons": "^1.2.11",
"@iconify-json/uil": "^1.2.1",
+ "@iconify-json/unjs": "^1.2.0",
"@iconify-json/vscode-icons": "^1.2.2",
"@inspira-ui/plugins": "^0.0.1",
"@nuxt/content": "https://pkg.pr.new/nuxt/content/@nuxt/content@99f25df",
@@ -29,6 +30,7 @@
"@nuxt/ui": "^3.0.0-alpha.6",
"@nuxt/ui-pro": "^2.0.0-alpha.6",
"@nuxthub/core": "0.8.6",
+ "@nuxtjs/mdc": "^0.9.5",
"@unovis/vue": "1.4.4",
"@vueuse/core": "^11.1.0",
"@vueuse/motion": "^2.2.6",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 48dda47..5f15efa 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -124,6 +124,9 @@ importers:
'@iconify-json/uil':
specifier: ^1.2.1
version: 1.2.1
+ '@iconify-json/unjs':
+ specifier: ^1.2.0
+ version: 1.2.0
'@iconify-json/vscode-icons':
specifier: ^1.2.2
version: 1.2.2
@@ -135,25 +138,28 @@ importers:
version: https://pkg.pr.new/nuxt/content/@nuxt/content@99f25df(patch_hash=cosexbj27wwrysh7luxzrgie3i)(magicast@0.3.5)(pg@8.13.1)(rollup@4.24.4)(webpack-sources@3.2.3)
'@nuxt/devtools':
specifier: 1.6.0
- version: 1.6.0(rollup@4.24.4)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
+ version: 1.6.0(rollup@4.24.4)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
'@nuxt/fonts':
specifier: ^0.10.2
- version: 0.10.2(ioredis@5.4.1)(magicast@0.3.5)(rollup@4.24.4)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
+ version: 0.10.2(ioredis@5.4.1)(magicast@0.3.5)(rollup@4.24.4)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
'@nuxt/image':
specifier: ^1.8.1
version: 1.8.1(ioredis@5.4.1)(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
'@nuxt/scripts':
specifier: ^0.9.5
- version: 0.9.5(@nuxt/devtools@1.6.0(rollup@4.24.4)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3))(@unocss/webpack@0.62.4(rollup@4.24.4)(webpack@5.95.0(esbuild@0.17.19)))(@vue/compiler-core@3.5.12)(change-case@5.4.4)(fuse.js@7.0.0)(ioredis@5.4.1)(magicast@0.3.5)(nuxt@3.14.159(@parcel/watcher@2.4.1)(@types/node@22.9.0)(better-sqlite3@11.5.0)(eslint@9.14.0(jiti@2.4.0))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.4)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3))(postcss@8.4.47)(rollup@4.24.4)(typescript@5.6.3)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)(webpack@5.95.0(esbuild@0.17.19))
+ version: 0.9.5(@nuxt/devtools@1.6.0(rollup@4.24.4)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3))(@unocss/webpack@0.62.4(rollup@4.24.4)(webpack@5.95.0(esbuild@0.17.19)))(@vue/compiler-core@3.5.13)(change-case@5.4.4)(fuse.js@7.0.0)(ioredis@5.4.1)(magicast@0.3.5)(nuxt@3.14.159(@parcel/watcher@2.4.1)(@types/node@22.9.0)(better-sqlite3@11.5.0)(eslint@9.14.0(jiti@2.4.0))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.4)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3))(postcss@8.4.47)(rollup@4.24.4)(typescript@5.6.3)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)(webpack@5.95.0(esbuild@0.17.19))
'@nuxt/ui':
specifier: ^3.0.0-alpha.6
- version: 3.0.0-alpha.6(patch_hash=wpizn6d6f5ugzi2ndk7duieo4u)(change-case@5.4.4)(embla-carousel@8.3.0)(focus-trap@7.6.0)(ioredis@5.4.1)(magicast@0.3.5)(postcss@8.4.47)(rollup@4.24.4)(typescript@5.6.3)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
+ version: 3.0.0-alpha.6(patch_hash=wpizn6d6f5ugzi2ndk7duieo4u)(change-case@5.4.4)(embla-carousel@8.3.0)(focus-trap@7.6.0)(ioredis@5.4.1)(magicast@0.3.5)(postcss@8.4.47)(rollup@4.24.4)(typescript@5.6.3)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
'@nuxt/ui-pro':
specifier: ^2.0.0-alpha.6
- version: 2.0.0-alpha.6(change-case@5.4.4)(embla-carousel@8.3.0)(focus-trap@7.6.0)(ioredis@5.4.1)(magicast@0.3.5)(postcss@8.4.47)(rollup@4.24.4)(typescript@5.6.3)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
+ version: 2.0.0-alpha.6(change-case@5.4.4)(embla-carousel@8.3.0)(focus-trap@7.6.0)(ioredis@5.4.1)(magicast@0.3.5)(postcss@8.4.47)(rollup@4.24.4)(typescript@5.6.3)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
'@nuxthub/core':
specifier: 0.8.6
- version: 0.8.6(ioredis@5.4.1)(magicast@0.3.5)(rollup@4.24.4)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
+ version: 0.8.6(ioredis@5.4.1)(magicast@0.3.5)(rollup@4.24.4)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
+ '@nuxtjs/mdc':
+ specifier: ^0.9.5
+ version: 0.9.5(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
'@unovis/vue':
specifier: 1.4.4
version: 1.4.4(@unovis/ts@1.4.4)(vue@3.5.12(typescript@5.6.3))
@@ -165,7 +171,7 @@ importers:
version: 2.2.6(magicast@0.3.5)(rollup@4.24.4)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
'@vueuse/nuxt':
specifier: ^11.1.0
- version: 11.2.0(magicast@0.3.5)(nuxt@3.14.159(@parcel/watcher@2.4.1)(@types/node@22.9.0)(better-sqlite3@11.5.0)(eslint@9.14.0(jiti@2.4.0))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.4)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3))(rollup@4.24.4)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
+ version: 11.2.0(magicast@0.3.5)(nuxt@3.14.159(@parcel/watcher@2.4.1)(@types/node@22.9.0)(better-sqlite3@11.5.0)(eslint@9.14.0(jiti@2.4.0))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.4)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3))(rollup@4.24.4)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
case-police:
specifier: ^0.7.0
version: 0.7.0
@@ -180,19 +186,19 @@ importers:
version: 0.42.0
nuxt:
specifier: 3.14.159
- version: 3.14.159(@parcel/watcher@2.4.1)(@types/node@22.9.0)(better-sqlite3@11.5.0)(eslint@9.14.0(jiti@2.4.0))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.4)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
+ version: 3.14.159(@parcel/watcher@2.4.1)(@types/node@22.9.0)(better-sqlite3@11.5.0)(eslint@9.14.0(jiti@2.4.0))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.4)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
nuxt-build-cache:
specifier: ^0.1.1
version: 0.1.1(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
nuxt-content-twoslash:
specifier: ^0.1.1
- version: 0.1.1(@nuxtjs/mdc@0.9.2(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3))(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
+ version: 0.1.1(@nuxtjs/mdc@0.9.5(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3))(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
nuxt-lodash:
specifier: ^2.5.3
version: 2.5.3(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
nuxt-rebundle:
specifier: ^0.0.2
- version: 0.0.2(magicast@0.3.5)(nuxt@3.14.159(@parcel/watcher@2.4.1)(@types/node@22.9.0)(better-sqlite3@11.5.0)(eslint@9.14.0(jiti@2.4.0))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.4)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3))(rollup@4.24.4)(webpack-sources@3.2.3)
+ version: 0.0.2(magicast@0.3.5)(nuxt@3.14.159(@parcel/watcher@2.4.1)(@types/node@22.9.0)(better-sqlite3@11.5.0)(eslint@9.14.0(jiti@2.4.0))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.4)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3))(rollup@4.24.4)(webpack-sources@3.2.3)
octokit:
specifier: ^4.0.2
version: 4.0.2
@@ -449,11 +455,6 @@ packages:
resolution: {integrity: sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw==}
engines: {node: '>=6.9.0'}
- '@babel/parser@7.25.8':
- resolution: {integrity: sha512-HcttkxzdPucv3nNFmfOOMfFf64KgdJVqm1KaCm25dPGMLElo9nsLvXeJECQg8UzPuBGLyTSA0ZzqCtDSzKTEoQ==}
- engines: {node: '>=6.0.0'}
- hasBin: true
-
'@babel/parser@7.26.2':
resolution: {integrity: sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==}
engines: {node: '>=6.0.0'}
@@ -1493,6 +1494,9 @@ packages:
'@iconify-json/uil@1.2.1':
resolution: {integrity: sha512-bQPtDp1nVaDL+ejECPENHJalspCQCZreCJ2LHWazm0pfoz34afKAQKMSb1mH8K/CPnibCQTM29AvXrHMpyjbtg==}
+ '@iconify-json/unjs@1.2.0':
+ resolution: {integrity: sha512-JrbPN+By4vzXbWWkX86UzRoHfAwotAEuDqRixmQrZnYAV6ZyIJXQZsoC5LZ1+IDGczmZvaaaWG4zeK/Wi93/bA==}
+
'@iconify-json/vscode-icons@1.2.2':
resolution: {integrity: sha512-bTpT0HJDRqGkxQv8oiETNHLEnBZpnA1QaRD35CQyO7M7qgWVLx2xwn/lK6e4waojmlPC3ckMBx3WFIUUn0/Jdg==}
@@ -1648,22 +1652,22 @@ packages:
resolution: {integrity: sha512-tWBm92pYLT+T2H5I2Uwz0dnylX1uRKuS6/n9CV4eTW43r/iAN2q07b0sY2cvgT61KYDetomY1pVRkzA2Rftv5g==}
engines: {node: '>= 18'}
- '@intlify/message-compiler@10.0.0':
- resolution: {integrity: sha512-OcaWc63NC/9p1cMdgoNKBj4d61BH8sUW1Hfs6YijTd9656ZR4rNqXAlRnBrfS5ABq0vjQjpa8VnyvH9hK49yBw==}
- engines: {node: '>= 16'}
-
'@intlify/message-compiler@10.0.4':
resolution: {integrity: sha512-AFbhEo10DP095/45EauinQJ5hJ3rJUmuuqltGguvc3WsvezZN+g8qNHLGWKu60FHQVizMrQY7VJ+zVlBXlQQkQ==}
engines: {node: '>= 16'}
- '@intlify/shared@10.0.0':
- resolution: {integrity: sha512-6ngLfI7DOTew2dcF9WMJx+NnMWghMBhIiHbGg+wRvngpzD5KZJZiJVuzMsUQE1a5YebEmtpTEfUrDp/NqVGdiw==}
+ '@intlify/message-compiler@11.0.0-beta.1':
+ resolution: {integrity: sha512-yMXfN4hg/EeSdtWfmoMrwB9X4TXwkBoZlTIpNydQaW9y0tSJHGnUPRoahtkbsyACCm9leSJINLY4jQ0rK6BK0Q==}
engines: {node: '>= 16'}
'@intlify/shared@10.0.4':
resolution: {integrity: sha512-ukFn0I01HsSgr3VYhYcvkTCLS7rGa0gw4A4AMpcy/A9xx/zRJy7PS2BElMXLwUazVFMAr5zuiTk3MQeoeGXaJg==}
engines: {node: '>= 16'}
+ '@intlify/shared@11.0.0-beta.1':
+ resolution: {integrity: sha512-Md/4T/QOx7wZ7zqVzSsMx2M/9Mx/1nsgsjXS5SFIowFKydqUhMz7K+y7pMFh781aNYz+rGXYwad8E9/+InK9SA==}
+ engines: {node: '>= 16'}
+
'@intlify/unplugin-vue-i18n@5.2.0':
resolution: {integrity: sha512-pmRiPY2Nj9mmSrixT69aO45XxGUr5fDBy/IIw4ajLlDTJm5TSmQKA5YNdsH0uxVDCPWy5tlQrF18hkDwI7UJvg==}
engines: {node: '>= 18'}
@@ -1941,8 +1945,8 @@ packages:
resolution: {integrity: sha512-olAVD7ZPNVxWpOgj5VJrtWaqkVfKSDQmJENfed7t6TwDjVggPHPHMpmw4rbudDsr9cdCIBR30hvUEXm2m7s2BA==}
engines: {node: ^14.16.0 || >=16.11.0}
- '@nuxtjs/mdc@0.9.2':
- resolution: {integrity: sha512-dozIPTPjEYu8jChHNCICZP3mN0sFC6l3aLxTkgv/DAr1EI8jqqqoSZKevzuiHUWGNTguS70+fLcztCwrzWdoYA==}
+ '@nuxtjs/mdc@0.9.5':
+ resolution: {integrity: sha512-bTnlY+oiW8QsmrLoiYN+rkSYxl7asELlwYeU9QPSkun5BVx7Yd8RajH8I+0QJZiMZzIHaO3LEgf3lzp5Lg6E0A==}
'@nuxtjs/robots@4.1.11':
resolution: {integrity: sha512-neHIO1WnnURwq/XE7z8SSrf7OvjwD+pfRPpCHdMdaly6aGN8U0z4ZAq53gIrcYMi/xzE+D63QlxeODQgKjLQfQ==}
@@ -2628,6 +2632,9 @@ packages:
'@shikijs/core@1.22.2':
resolution: {integrity: sha512-bvIQcd8BEeR1yFvOYv6HDiyta2FFVePbzeowf5pPS1avczrPK+cjmaxxh0nx5QzbON7+Sv0sQfQVciO7bN72sg==}
+ '@shikijs/core@1.23.1':
+ resolution: {integrity: sha512-NuOVgwcHgVC6jBVH5V7iblziw6iQbWWHrj5IlZI3Fqu2yx9awH7OIQkXIcsHsUmY19ckwSgUMgrqExEyP5A0TA==}
+
'@shikijs/engine-javascript@1.21.0':
resolution: {integrity: sha512-jxQHNtVP17edFW4/0vICqAVLDAxmyV31MQJL4U/Kg+heQALeKYVOWo0sMmEZ18FqBt+9UCdyqGKYE7bLRtk9mg==}
@@ -2637,6 +2644,9 @@ packages:
'@shikijs/engine-javascript@1.22.2':
resolution: {integrity: sha512-iOvql09ql6m+3d1vtvP8fLCVCK7BQD1pJFmHIECsujB0V32BJ0Ab6hxk1ewVSMFA58FI0pR2Had9BKZdyQrxTw==}
+ '@shikijs/engine-javascript@1.23.1':
+ resolution: {integrity: sha512-i/LdEwT5k3FVu07SiApRFwRcSJs5QM9+tod5vYCPig1Ywi8GR30zcujbxGQFJHwYD7A5BUqagi8o5KS+LEVgBg==}
+
'@shikijs/engine-oniguruma@1.21.0':
resolution: {integrity: sha512-AIZ76XocENCrtYzVU7S4GY/HL+tgHGbVU+qhiDyNw1qgCA5OSi4B4+HY4BtAoJSMGuD/L5hfTzoRVbzEm2WTvg==}
@@ -2646,8 +2656,11 @@ packages:
'@shikijs/engine-oniguruma@1.22.2':
resolution: {integrity: sha512-GIZPAGzQOy56mGvWMoZRPggn0dTlBf1gutV5TdceLCZlFNqWmuc7u+CzD0Gd9vQUTgLbrt0KLzz6FNprqYAxlA==}
- '@shikijs/transformers@1.22.2':
- resolution: {integrity: sha512-8f78OiBa6pZDoZ53lYTmuvpFPlWtevn23bzG+azpPVvZg7ITax57o/K3TC91eYL3OMJOO0onPbgnQyZjRos8XQ==}
+ '@shikijs/engine-oniguruma@1.23.1':
+ resolution: {integrity: sha512-KQ+lgeJJ5m2ISbUZudLR1qHeH3MnSs2mjFg7bnencgs5jDVPeJ2NVDJ3N5ZHbcTsOIh0qIueyAJnwg7lg7kwXQ==}
+
+ '@shikijs/transformers@1.23.1':
+ resolution: {integrity: sha512-yQ2Cn0M9i46p30KwbyIzLvKDk+dQNU+lj88RGO0XEj54Hn4Cof1bZoDb9xBRWxFE4R8nmK63w7oHnJwvOtt0NQ==}
'@shikijs/twoslash@1.21.0':
resolution: {integrity: sha512-91HTpoIsx6vsJZ0DE1fs/jNeEAL5xJ5hWMVPUSp3iGHxOLH59nGrOcsjSgv4lKaxeE2i6VFvnPANQ5q8I5k2AQ==}
@@ -2661,6 +2674,9 @@ packages:
'@shikijs/types@1.22.2':
resolution: {integrity: sha512-NCWDa6LGZqTuzjsGfXOBWfjS/fDIbDdmVDug+7ykVe1IKT4c1gakrvlfFYp5NhAXH/lyqLM8wsAPo5wNy73Feg==}
+ '@shikijs/types@1.23.1':
+ resolution: {integrity: sha512-98A5hGyEhzzAgQh2dAeHKrWW4HfCMeoFER2z16p5eJ+vmPeF6lZ/elEne6/UCU551F/WqkopqRsr1l2Yu6+A0g==}
+
'@shikijs/vitepress-twoslash@1.21.0':
resolution: {integrity: sha512-/B/edWFxZ6Tdfj0Jj+jxJOKsHRd89NZ57tK0E68kvaWbbnBw3UaLCixDL+SvdeGFMov2uN1URXgCdBQTR6daZg==}
@@ -3380,6 +3396,9 @@ packages:
'@vue/compiler-core@3.5.12':
resolution: {integrity: sha512-ISyBTRMmMYagUxhcpyEH0hpXRd/KqDU4ymofPgl2XAkY9ZhQ+h0ovEZJIiPop13UmR/54oA2cgMDjgroRelaEw==}
+ '@vue/compiler-core@3.5.13':
+ resolution: {integrity: sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==}
+
'@vue/compiler-dom@3.5.12':
resolution: {integrity: sha512-9G6PbJ03uwxLHKQ3P42cMTi85lDRvGLB2rSGOiQqtXELat6uI4n8cNz9yjfVHRPIu+MsK6TE418Giruvgptckg==}
@@ -3431,6 +3450,9 @@ packages:
'@vue/shared@3.5.12':
resolution: {integrity: sha512-L2RPSAwUFbgZH20etwrXyVyCBu9OxRSi8T/38QsvnkJyvq2LufW2lDCOzm7t/U9C1mkhJGWYfCuFBCmIuNivrg==}
+ '@vue/shared@3.5.13':
+ resolution: {integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==}
+
'@vue/test-utils@2.4.6':
resolution: {integrity: sha512-FMxEjOpYNYiFe0GkaHsnJPXFHxQ6m4t8vI/ElPGpMWxZKpmRvQ33OIrvRXemy6yha03RxhOlQuy+gZMC3CQSow==}
@@ -4633,6 +4655,9 @@ packages:
embla-carousel@8.3.0:
resolution: {integrity: sha512-Ve8dhI4w28qBqR8J+aMtv7rLK89r1ZA5HocwFz6uMB/i5EiC7bGI7y+AM80yAVUJw3qqaZYK7clmZMUR8kM3UA==}
+ emoji-regex-xs@1.0.0:
+ resolution: {integrity: sha512-LRlerrMYoIDrT6jgpeZ2YYl/L8EulRTt5hQcYjy5AInh7HWXKimpqx68aknBFpGL2+/IcogTcaydJEgaTmOpDg==}
+
emoji-regex@10.4.0:
resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==}
@@ -6054,6 +6079,9 @@ packages:
micromark-util-sanitize-uri@2.0.0:
resolution: {integrity: sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==}
+ micromark-util-sanitize-uri@2.0.1:
+ resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==}
+
micromark-util-subtokenize@2.0.1:
resolution: {integrity: sha512-jZNtiFl/1aY73yS3UGQkutD0UbhTt68qnRpw2Pifmz5wV9h8gOVsN70v+Lq/f1rKaU/W8pxRe8y8Q9FX1AOe1Q==}
@@ -6429,6 +6457,9 @@ packages:
resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
engines: {node: '>=12'}
+ oniguruma-to-es@0.4.1:
+ resolution: {integrity: sha512-rNcEohFz095QKGRovP/yqPIKc+nP+Sjs4YTHMv33nMePGKrq/r2eu9Yh4646M5XluGJsUnmwoXuiXE69KDs+fQ==}
+
oniguruma-to-js@0.4.3:
resolution: {integrity: sha512-X0jWUcAlxORhOqqBREgPMgnshB7ZGYszBNspP+tS9hPD3l13CdaXcHbgImoHUHlrvGx/7AvFEkTRhAGYh+jzjQ==}
@@ -7011,9 +7042,18 @@ packages:
regenerator-runtime@0.14.1:
resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
+ regex-recursion@4.2.1:
+ resolution: {integrity: sha512-QHNZyZAeKdndD1G3bKAbBEKOSSK4KOHQrAJ01N1LJeb0SoH4DJIeFhp0uUpETgONifS4+P3sOgoA1dhzgrQvhA==}
+
+ regex-utilities@2.3.0:
+ resolution: {integrity: sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==}
+
regex@4.3.3:
resolution: {integrity: sha512-r/AadFO7owAq1QJVeZ/nq9jNS1vyZt+6t1p/E59B56Rn2GCya+gr1KSyOzNL/er+r+B7phv5jG2xU2Nz1YkmJg==}
+ regex@5.0.2:
+ resolution: {integrity: sha512-/pczGbKIQgfTMRV0XjABvc5RzLqQmwqxLHdQao2RTXPk+pmTXB2P0IaUHYdYyk412YLwUIkaeMd5T+RzVgTqnQ==}
+
regexp-ast-analysis@0.7.1:
resolution: {integrity: sha512-sZuz1dYW/ZsfG17WSAG7eS85r5a0dDsvg+7BiiYR5o6lKCAtUrEwdmRmaGF6rwVj3LcmAeYkOWKEPlbPzN3Y3A==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
@@ -7051,6 +7091,9 @@ packages:
remark-mdc@3.2.1:
resolution: {integrity: sha512-MLNqQE7ryygOA3TtH4hKmIvmjFAqTMzCs2zrMzXs4MWJXYM2vbtdwR2NfgcN3vxIp5Pllgq3oLGuKgQSs8J19w==}
+ remark-mdc@3.4.0:
+ resolution: {integrity: sha512-0bKazg69CnSp5aLIQapkZcv0nS+2SuLd7xz4TMOcxEhukSXKL7f40bEPbNKGbJ4eY65nWAQKyCD1JCtzndmnxw==}
+
remark-parse@11.0.0:
resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==}
@@ -7268,6 +7311,9 @@ packages:
shiki@1.22.2:
resolution: {integrity: sha512-3IZau0NdGKXhH2bBlUk4w1IHNxPh6A5B2sUpyY+8utLu2j/h1QpFkAaUA1bAMxOWWGtTWcAh531vnS4NJKS/lA==}
+ shiki@1.23.1:
+ resolution: {integrity: sha512-8kxV9TH4pXgdKGxNOkrSMydn1Xf6It8lsle0fiqxf7a1149K1WGtdOu3Zb91T5r1JpvRPxqxU3C2XdZZXQnrig==}
+
siginfo@2.0.0:
resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==}
@@ -8849,10 +8895,6 @@ snapshots:
js-tokens: 4.0.0
picocolors: 1.1.1
- '@babel/parser@7.25.8':
- dependencies:
- '@babel/types': 7.25.8
-
'@babel/parser@7.26.2':
dependencies:
'@babel/types': 7.26.0
@@ -8932,7 +8974,7 @@ snapshots:
'@babel/template@7.25.7':
dependencies:
'@babel/code-frame': 7.25.7
- '@babel/parser': 7.25.8
+ '@babel/parser': 7.26.2
'@babel/types': 7.25.8
'@babel/template@7.25.9':
@@ -8945,7 +8987,7 @@ snapshots:
dependencies:
'@babel/code-frame': 7.25.7
'@babel/generator': 7.25.7
- '@babel/parser': 7.25.8
+ '@babel/parser': 7.26.2
'@babel/template': 7.25.7
'@babel/types': 7.25.8
debug: 4.3.7(supports-color@9.4.0)
@@ -9611,6 +9653,10 @@ snapshots:
dependencies:
'@iconify/types': 2.0.0
+ '@iconify-json/unjs@1.2.0':
+ dependencies:
+ '@iconify/types': 2.0.0
+
'@iconify-json/vscode-icons@1.2.2':
dependencies:
'@iconify/types': 2.0.0
@@ -9727,8 +9773,8 @@ snapshots:
'@intlify/bundle-utils@9.0.0-beta.0(vue-i18n@10.0.4(vue@3.5.12(typescript@5.6.3)))':
dependencies:
- '@intlify/message-compiler': 10.0.0
- '@intlify/shared': 10.0.0
+ '@intlify/message-compiler': 11.0.0-beta.1
+ '@intlify/shared': 11.0.0-beta.1
acorn: 8.14.0
escodegen: 2.1.0
estree-walker: 2.0.2
@@ -9754,26 +9800,26 @@ snapshots:
'@intlify/core': 10.0.4
'@intlify/utils': 0.13.0
- '@intlify/message-compiler@10.0.0':
- dependencies:
- '@intlify/shared': 10.0.0
- source-map-js: 1.2.1
-
'@intlify/message-compiler@10.0.4':
dependencies:
'@intlify/shared': 10.0.4
source-map-js: 1.2.1
- '@intlify/shared@10.0.0': {}
+ '@intlify/message-compiler@11.0.0-beta.1':
+ dependencies:
+ '@intlify/shared': 11.0.0-beta.1
+ source-map-js: 1.2.1
'@intlify/shared@10.0.4': {}
+ '@intlify/shared@11.0.0-beta.1': {}
+
'@intlify/unplugin-vue-i18n@5.2.0(@vue/compiler-dom@3.5.12)(eslint@9.14.0(jiti@2.4.0))(rollup@4.24.3)(typescript@5.6.3)(vue-i18n@10.0.4(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)':
dependencies:
'@eslint-community/eslint-utils': 4.4.1(eslint@9.14.0(jiti@2.4.0))
'@intlify/bundle-utils': 9.0.0-beta.0(vue-i18n@10.0.4(vue@3.5.12(typescript@5.6.3)))
- '@intlify/shared': 10.0.0
- '@intlify/vue-i18n-extensions': 7.0.0(@intlify/shared@10.0.0)(@vue/compiler-dom@3.5.12)(vue-i18n@10.0.4(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3))
+ '@intlify/shared': 11.0.0-beta.1
+ '@intlify/vue-i18n-extensions': 7.0.0(@intlify/shared@11.0.0-beta.1)(@vue/compiler-dom@3.5.12)(vue-i18n@10.0.4(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3))
'@rollup/pluginutils': 5.1.3(rollup@4.24.3)
'@typescript-eslint/scope-manager': 7.18.0
'@typescript-eslint/typescript-estree': 7.18.0(typescript@5.6.3)
@@ -9798,11 +9844,11 @@ snapshots:
'@intlify/utils@0.13.0': {}
- '@intlify/vue-i18n-extensions@7.0.0(@intlify/shared@10.0.0)(@vue/compiler-dom@3.5.12)(vue-i18n@10.0.4(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3))':
+ '@intlify/vue-i18n-extensions@7.0.0(@intlify/shared@11.0.0-beta.1)(@vue/compiler-dom@3.5.12)(vue-i18n@10.0.4(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3))':
dependencies:
'@babel/parser': 7.26.2
optionalDependencies:
- '@intlify/shared': 10.0.0
+ '@intlify/shared': 11.0.0-beta.1
'@vue/compiler-dom': 3.5.12
vue: 3.5.12(typescript@5.6.3)
vue-i18n: 10.0.4(vue@3.5.12(typescript@5.6.3))
@@ -9934,7 +9980,7 @@ snapshots:
'@nuxt/content@https://pkg.pr.new/nuxt/content/@nuxt/content@99f25df(patch_hash=cosexbj27wwrysh7luxzrgie3i)(magicast@0.3.5)(pg@8.13.1)(rollup@4.24.4)(webpack-sources@3.2.3)':
dependencies:
'@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
- '@nuxtjs/mdc': 0.9.2(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
+ '@nuxtjs/mdc': 0.9.5(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
'@sqlite.org/sqlite-wasm': 3.47.0-build1
better-sqlite3: 11.5.0
c12: 2.0.1(magicast@0.3.5)
@@ -10017,41 +10063,29 @@ snapshots:
- supports-color
- webpack-sources
- '@nuxt/devtools-kit@1.6.0(magicast@0.3.5)(rollup@4.24.4)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)':
- dependencies:
- '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
- '@nuxt/schema': 3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
- execa: 7.2.0
- vite: 5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0)
- transitivePeerDependencies:
- - magicast
- - rollup
- - supports-color
- - webpack-sources
-
- '@nuxt/devtools-ui-kit@1.6.0(@nuxt/devtools@1.6.0(rollup@4.24.4)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3))(@unocss/webpack@0.62.4(rollup@4.24.4)(webpack@5.95.0(esbuild@0.17.19)))(@vue/compiler-core@3.5.12)(change-case@5.4.4)(fuse.js@7.0.0)(magicast@0.3.5)(nuxt@3.14.159(@parcel/watcher@2.4.1)(@types/node@22.9.0)(better-sqlite3@11.5.0)(eslint@9.14.0(jiti@2.4.0))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.4)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3))(postcss@8.4.47)(rollup@4.24.4)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)(webpack@5.95.0(esbuild@0.17.19))':
+ '@nuxt/devtools-ui-kit@1.6.0(@nuxt/devtools@1.6.0(rollup@4.24.4)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3))(@unocss/webpack@0.62.4(rollup@4.24.4)(webpack@5.95.0(esbuild@0.17.19)))(@vue/compiler-core@3.5.13)(change-case@5.4.4)(fuse.js@7.0.0)(magicast@0.3.5)(nuxt@3.14.159(@parcel/watcher@2.4.1)(@types/node@22.9.0)(better-sqlite3@11.5.0)(eslint@9.14.0(jiti@2.4.0))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.4)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3))(postcss@8.4.47)(rollup@4.24.4)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)(webpack@5.95.0(esbuild@0.17.19))':
dependencies:
'@iconify-json/carbon': 1.2.4
'@iconify-json/logos': 1.2.3
'@iconify-json/ri': 1.2.1
'@iconify-json/tabler': 1.2.5
- '@nuxt/devtools': 1.6.0(rollup@4.24.4)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
- '@nuxt/devtools-kit': 1.6.0(magicast@0.3.5)(rollup@4.24.4)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
+ '@nuxt/devtools': 1.6.0(rollup@4.24.4)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
+ '@nuxt/devtools-kit': 1.6.0(magicast@0.3.5)(rollup@4.24.4)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
'@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
'@unocss/core': 0.62.4
- '@unocss/nuxt': 0.62.4(magicast@0.3.5)(postcss@8.4.47)(rollup@4.24.4)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)(webpack@5.95.0(esbuild@0.17.19))
+ '@unocss/nuxt': 0.62.4(magicast@0.3.5)(postcss@8.4.47)(rollup@4.24.4)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)(webpack@5.95.0(esbuild@0.17.19))
'@unocss/preset-attributify': 0.62.4
'@unocss/preset-icons': 0.62.4
'@unocss/preset-mini': 0.62.4
'@unocss/reset': 0.62.4
'@vueuse/core': 11.2.0(vue@3.5.12(typescript@5.6.3))
'@vueuse/integrations': 11.1.0(change-case@5.4.4)(focus-trap@7.6.0)(fuse.js@7.0.0)(vue@3.5.12(typescript@5.6.3))
- '@vueuse/nuxt': 11.2.0(magicast@0.3.5)(nuxt@3.14.159(@parcel/watcher@2.4.1)(@types/node@22.9.0)(better-sqlite3@11.5.0)(eslint@9.14.0(jiti@2.4.0))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.4)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3))(rollup@4.24.4)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
+ '@vueuse/nuxt': 11.2.0(magicast@0.3.5)(nuxt@3.14.159(@parcel/watcher@2.4.1)(@types/node@22.9.0)(better-sqlite3@11.5.0)(eslint@9.14.0(jiti@2.4.0))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.4)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3))(rollup@4.24.4)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
defu: 6.1.4
focus-trap: 7.6.0
splitpanes: 3.1.5
- unocss: 0.62.4(@unocss/webpack@0.62.4(rollup@4.24.4)(webpack@5.95.0(esbuild@0.17.19)))(postcss@8.4.47)(rollup@4.24.4)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))
- v-lazy-show: 0.2.4(@vue/compiler-core@3.5.12)
+ unocss: 0.62.4(@unocss/webpack@0.62.4(rollup@4.24.4)(webpack@5.95.0(esbuild@0.17.19)))(postcss@8.4.47)(rollup@4.24.4)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))
+ v-lazy-show: 0.2.4(@vue/compiler-core@3.5.13)
transitivePeerDependencies:
- '@unocss/webpack'
- '@vue/compiler-core'
@@ -10174,7 +10208,7 @@ snapshots:
tinyglobby: 0.2.9
unimport: 3.13.1(rollup@4.24.4)(webpack-sources@3.2.3)
vite: 5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0)
- vite-plugin-inspect: 0.8.7(@nuxt/kit@3.14.159(magicast@0.3.5)(rollup@4.24.3)(webpack-sources@3.2.3))(rollup@4.24.4)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))
+ vite-plugin-inspect: 0.8.7(@nuxt/kit@3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3))(rollup@4.24.4)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))
vite-plugin-vue-inspector: 5.1.3(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))
which: 3.0.1
ws: 8.18.0
@@ -10186,57 +10220,9 @@ snapshots:
- vue
- webpack-sources
- '@nuxt/devtools@1.6.0(rollup@4.24.4)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)':
+ '@nuxt/fonts@0.10.2(ioredis@5.4.1)(magicast@0.3.5)(rollup@4.24.4)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)':
dependencies:
- '@antfu/utils': 0.7.10
- '@nuxt/devtools-kit': 1.6.0(magicast@0.3.5)(rollup@4.24.4)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
- '@nuxt/devtools-wizard': 1.6.0
- '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
- '@vue/devtools-core': 7.4.4(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))
- '@vue/devtools-kit': 7.4.4
- birpc: 0.2.19
- consola: 3.2.3
- cronstrue: 2.50.0
- destr: 2.0.3
- error-stack-parser-es: 0.1.5
- execa: 7.2.0
- fast-npm-meta: 0.2.2
- flatted: 3.3.1
- get-port-please: 3.1.2
- hookable: 5.5.3
- image-meta: 0.2.1
- is-installed-globally: 1.0.0
- launch-editor: 2.9.1
- local-pkg: 0.5.0
- magicast: 0.3.5
- nypm: 0.3.12
- ohash: 1.1.4
- pathe: 1.1.2
- perfect-debounce: 1.0.0
- pkg-types: 1.2.1
- rc9: 2.1.2
- scule: 1.3.0
- semver: 7.6.3
- simple-git: 3.27.0
- sirv: 2.0.4
- tinyglobby: 0.2.9
- unimport: 3.13.1(rollup@4.24.4)(webpack-sources@3.2.3)
- vite: 5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0)
- vite-plugin-inspect: 0.8.7(@nuxt/kit@3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3))(rollup@4.24.4)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))
- vite-plugin-vue-inspector: 5.1.3(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))
- which: 3.0.1
- ws: 8.18.0
- transitivePeerDependencies:
- - bufferutil
- - rollup
- - supports-color
- - utf-8-validate
- - vue
- - webpack-sources
-
- '@nuxt/fonts@0.10.2(ioredis@5.4.1)(magicast@0.3.5)(rollup@4.24.4)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)':
- dependencies:
- '@nuxt/devtools-kit': 1.6.0(magicast@0.3.5)(rollup@4.24.4)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
+ '@nuxt/devtools-kit': 1.6.0(magicast@0.3.5)(rollup@4.24.4)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
'@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
chalk: 5.3.0
css-tree: 3.0.0
@@ -10277,13 +10263,13 @@ snapshots:
- vite
- webpack-sources
- '@nuxt/icon@1.5.6(magicast@0.3.5)(rollup@4.24.4)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)':
+ '@nuxt/icon@1.5.6(magicast@0.3.5)(rollup@4.24.4)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)':
dependencies:
'@iconify/collections': 1.0.471
'@iconify/types': 2.0.0
'@iconify/utils': 2.1.33
'@iconify/vue': 4.1.3-beta.1(vue@3.5.12(typescript@5.6.3))
- '@nuxt/devtools-kit': 1.6.0(magicast@0.3.5)(rollup@4.24.4)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
+ '@nuxt/devtools-kit': 1.6.0(magicast@0.3.5)(rollup@4.24.4)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
'@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
consola: 3.2.3
local-pkg: 0.5.0
@@ -10451,10 +10437,10 @@ snapshots:
- supports-color
- webpack-sources
- '@nuxt/scripts@0.9.5(@nuxt/devtools@1.6.0(rollup@4.24.4)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3))(@unocss/webpack@0.62.4(rollup@4.24.4)(webpack@5.95.0(esbuild@0.17.19)))(@vue/compiler-core@3.5.12)(change-case@5.4.4)(fuse.js@7.0.0)(ioredis@5.4.1)(magicast@0.3.5)(nuxt@3.14.159(@parcel/watcher@2.4.1)(@types/node@22.9.0)(better-sqlite3@11.5.0)(eslint@9.14.0(jiti@2.4.0))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.4)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3))(postcss@8.4.47)(rollup@4.24.4)(typescript@5.6.3)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)(webpack@5.95.0(esbuild@0.17.19))':
+ '@nuxt/scripts@0.9.5(@nuxt/devtools@1.6.0(rollup@4.24.4)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3))(@unocss/webpack@0.62.4(rollup@4.24.4)(webpack@5.95.0(esbuild@0.17.19)))(@vue/compiler-core@3.5.13)(change-case@5.4.4)(fuse.js@7.0.0)(ioredis@5.4.1)(magicast@0.3.5)(nuxt@3.14.159(@parcel/watcher@2.4.1)(@types/node@22.9.0)(better-sqlite3@11.5.0)(eslint@9.14.0(jiti@2.4.0))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.4)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3))(postcss@8.4.47)(rollup@4.24.4)(typescript@5.6.3)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)(webpack@5.95.0(esbuild@0.17.19))':
dependencies:
- '@nuxt/devtools-kit': 1.6.0(magicast@0.3.5)(rollup@4.24.4)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
- '@nuxt/devtools-ui-kit': 1.6.0(@nuxt/devtools@1.6.0(rollup@4.24.4)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3))(@unocss/webpack@0.62.4(rollup@4.24.4)(webpack@5.95.0(esbuild@0.17.19)))(@vue/compiler-core@3.5.12)(change-case@5.4.4)(fuse.js@7.0.0)(magicast@0.3.5)(nuxt@3.14.159(@parcel/watcher@2.4.1)(@types/node@22.9.0)(better-sqlite3@11.5.0)(eslint@9.14.0(jiti@2.4.0))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.4)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3))(postcss@8.4.47)(rollup@4.24.4)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)(webpack@5.95.0(esbuild@0.17.19))
+ '@nuxt/devtools-kit': 1.6.0(magicast@0.3.5)(rollup@4.24.4)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
+ '@nuxt/devtools-ui-kit': 1.6.0(@nuxt/devtools@1.6.0(rollup@4.24.4)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3))(@unocss/webpack@0.62.4(rollup@4.24.4)(webpack@5.95.0(esbuild@0.17.19)))(@vue/compiler-core@3.5.13)(change-case@5.4.4)(fuse.js@7.0.0)(magicast@0.3.5)(nuxt@3.14.159(@parcel/watcher@2.4.1)(@types/node@22.9.0)(better-sqlite3@11.5.0)(eslint@9.14.0(jiti@2.4.0))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.4)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3))(postcss@8.4.47)(rollup@4.24.4)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)(webpack@5.95.0(esbuild@0.17.19))
'@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
'@stripe/stripe-js': 4.8.0
'@types/google.maps': 3.58.1
@@ -10613,11 +10599,11 @@ snapshots:
- supports-color
- webpack-sources
- '@nuxt/ui-pro@2.0.0-alpha.6(change-case@5.4.4)(embla-carousel@8.3.0)(focus-trap@7.6.0)(ioredis@5.4.1)(magicast@0.3.5)(postcss@8.4.47)(rollup@4.24.4)(typescript@5.6.3)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)':
+ '@nuxt/ui-pro@2.0.0-alpha.6(change-case@5.4.4)(embla-carousel@8.3.0)(focus-trap@7.6.0)(ioredis@5.4.1)(magicast@0.3.5)(postcss@8.4.47)(rollup@4.24.4)(typescript@5.6.3)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)':
dependencies:
'@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
'@nuxt/schema': 3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
- '@nuxt/ui': 3.0.0-alpha.6(patch_hash=wpizn6d6f5ugzi2ndk7duieo4u)(change-case@5.4.4)(embla-carousel@8.3.0)(focus-trap@7.6.0)(ioredis@5.4.1)(magicast@0.3.5)(postcss@8.4.47)(rollup@4.24.4)(typescript@5.6.3)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
+ '@nuxt/ui': 3.0.0-alpha.6(patch_hash=wpizn6d6f5ugzi2ndk7duieo4u)(change-case@5.4.4)(embla-carousel@8.3.0)(focus-trap@7.6.0)(ioredis@5.4.1)(magicast@0.3.5)(postcss@8.4.47)(rollup@4.24.4)(typescript@5.6.3)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
'@vueuse/core': 11.2.0(vue@3.5.12(typescript@5.6.3))
consola: 3.2.3
defu: 6.1.4
@@ -10663,15 +10649,15 @@ snapshots:
- vue
- webpack-sources
- '@nuxt/ui@3.0.0-alpha.6(patch_hash=wpizn6d6f5ugzi2ndk7duieo4u)(change-case@5.4.4)(embla-carousel@8.3.0)(focus-trap@7.6.0)(ioredis@5.4.1)(magicast@0.3.5)(postcss@8.4.47)(rollup@4.24.4)(typescript@5.6.3)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)':
+ '@nuxt/ui@3.0.0-alpha.6(patch_hash=wpizn6d6f5ugzi2ndk7duieo4u)(change-case@5.4.4)(embla-carousel@8.3.0)(focus-trap@7.6.0)(ioredis@5.4.1)(magicast@0.3.5)(postcss@8.4.47)(rollup@4.24.4)(typescript@5.6.3)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)':
dependencies:
- '@nuxt/fonts': 0.10.2(ioredis@5.4.1)(magicast@0.3.5)(rollup@4.24.4)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
- '@nuxt/icon': 1.5.6(magicast@0.3.5)(rollup@4.24.4)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
+ '@nuxt/fonts': 0.10.2(ioredis@5.4.1)(magicast@0.3.5)(rollup@4.24.4)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
+ '@nuxt/icon': 1.5.6(magicast@0.3.5)(rollup@4.24.4)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
'@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
'@nuxt/schema': 3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
'@nuxtjs/color-mode': 3.5.1(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
'@tailwindcss/postcss': 4.0.0-alpha.24(postcss@8.4.47)
- '@tailwindcss/vite': 4.0.0-alpha.24(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))
+ '@tailwindcss/vite': 4.0.0-alpha.24(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))
'@vueuse/core': 11.2.0(vue@3.5.12(typescript@5.6.3))
'@vueuse/integrations': 11.1.0(change-case@5.4.4)(focus-trap@7.6.0)(fuse.js@7.0.0)(vue@3.5.12(typescript@5.6.3))
defu: 6.1.4
@@ -10845,10 +10831,10 @@ snapshots:
- vue-tsc
- webpack-sources
- '@nuxthub/core@0.8.6(ioredis@5.4.1)(magicast@0.3.5)(rollup@4.24.4)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)':
+ '@nuxthub/core@0.8.6(ioredis@5.4.1)(magicast@0.3.5)(rollup@4.24.4)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)':
dependencies:
'@cloudflare/workers-types': 4.20241106.0
- '@nuxt/devtools-kit': 1.6.0(magicast@0.3.5)(rollup@4.24.4)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
+ '@nuxt/devtools-kit': 1.6.0(magicast@0.3.5)(rollup@4.24.4)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
'@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
'@uploadthing/mime-types': 0.3.2
citty: 0.1.6
@@ -10935,13 +10921,13 @@ snapshots:
- vue
- webpack-sources
- '@nuxtjs/mdc@0.9.2(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)':
+ '@nuxtjs/mdc@0.9.5(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)':
dependencies:
'@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
- '@shikijs/transformers': 1.22.2
+ '@shikijs/transformers': 1.23.1
'@types/hast': 3.0.4
'@types/mdast': 4.0.4
- '@vue/compiler-core': 3.5.12
+ '@vue/compiler-core': 3.5.13
consola: 3.2.3
debug: 4.3.7(supports-color@9.4.0)
defu: 6.1.4
@@ -10950,7 +10936,7 @@ snapshots:
github-slugger: 2.0.0
hast-util-to-string: 3.0.1
mdast-util-to-hast: 13.2.0
- micromark-util-sanitize-uri: 2.0.0
+ micromark-util-sanitize-uri: 2.0.1
ohash: 1.1.4
parse5: 7.2.1
pathe: 1.1.2
@@ -10962,16 +10948,17 @@ snapshots:
rehype-sort-attributes: 5.0.1
remark-emoji: 5.0.1
remark-gfm: 4.0.0
- remark-mdc: 3.2.1
+ remark-mdc: 3.4.0
remark-parse: 11.0.0
remark-rehype: 11.1.1
scule: 1.3.0
- shiki: 1.22.2
+ shiki: 1.23.1
ufo: 1.5.4
unified: 11.0.5
unist-builder: 4.0.0
unist-util-visit: 5.0.0
unwasm: 0.3.9(webpack-sources@3.2.3)
+ vfile: 6.0.3
transitivePeerDependencies:
- magicast
- rollup
@@ -11666,6 +11653,15 @@ snapshots:
'@types/hast': 3.0.4
hast-util-to-html: 9.0.3
+ '@shikijs/core@1.23.1':
+ dependencies:
+ '@shikijs/engine-javascript': 1.23.1
+ '@shikijs/engine-oniguruma': 1.23.1
+ '@shikijs/types': 1.23.1
+ '@shikijs/vscode-textmate': 9.3.0
+ '@types/hast': 3.0.4
+ hast-util-to-html: 9.0.3
+
'@shikijs/engine-javascript@1.21.0':
dependencies:
'@shikijs/types': 1.21.0
@@ -11684,6 +11680,12 @@ snapshots:
'@shikijs/vscode-textmate': 9.3.0
oniguruma-to-js: 0.4.3
+ '@shikijs/engine-javascript@1.23.1':
+ dependencies:
+ '@shikijs/types': 1.23.1
+ '@shikijs/vscode-textmate': 9.3.0
+ oniguruma-to-es: 0.4.1
+
'@shikijs/engine-oniguruma@1.21.0':
dependencies:
'@shikijs/types': 1.21.0
@@ -11699,9 +11701,14 @@ snapshots:
'@shikijs/types': 1.22.2
'@shikijs/vscode-textmate': 9.3.0
- '@shikijs/transformers@1.22.2':
+ '@shikijs/engine-oniguruma@1.23.1':
dependencies:
- shiki: 1.22.2
+ '@shikijs/types': 1.23.1
+ '@shikijs/vscode-textmate': 9.3.0
+
+ '@shikijs/transformers@1.23.1':
+ dependencies:
+ shiki: 1.23.1
'@shikijs/twoslash@1.21.0(typescript@5.6.3)':
dependencies:
@@ -11727,6 +11734,11 @@ snapshots:
'@shikijs/vscode-textmate': 9.3.0
'@types/hast': 3.0.4
+ '@shikijs/types@1.23.1':
+ dependencies:
+ '@shikijs/vscode-textmate': 9.3.0
+ '@types/hast': 3.0.4
+
'@shikijs/vitepress-twoslash@1.21.0(@nuxt/kit@3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3))(typescript@5.6.3)':
dependencies:
'@shikijs/twoslash': 1.21.0(typescript@5.6.3)
@@ -11835,7 +11847,7 @@ snapshots:
transitivePeerDependencies:
- postcss
- '@tailwindcss/vite@4.0.0-alpha.24(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))':
+ '@tailwindcss/vite@4.0.0-alpha.24(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))':
dependencies:
'@tailwindcss/node': 4.0.0-alpha.24
'@tailwindcss/oxide': 4.0.0-alpha.24
@@ -11843,7 +11855,7 @@ snapshots:
postcss: 8.4.47
postcss-import: 16.1.0(postcss@8.4.47)
tailwindcss: 4.0.0-alpha.24
- vite: 5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0)
+ vite: 5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0)
'@tanstack/virtual-core@3.10.9': {}
@@ -12333,13 +12345,13 @@ snapshots:
unhead: 1.11.9
vue: 3.5.12(typescript@5.6.3)
- '@unocss/astro@0.62.4(rollup@4.24.4)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))':
+ '@unocss/astro@0.62.4(rollup@4.24.4)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))':
dependencies:
'@unocss/core': 0.62.4
'@unocss/reset': 0.62.4
- '@unocss/vite': 0.62.4(rollup@4.24.4)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))
+ '@unocss/vite': 0.62.4(rollup@4.24.4)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))
optionalDependencies:
- vite: 5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0)
+ vite: 5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0)
transitivePeerDependencies:
- rollup
- supports-color
@@ -12389,7 +12401,7 @@ snapshots:
gzip-size: 6.0.0
sirv: 2.0.4
- '@unocss/nuxt@0.62.4(magicast@0.3.5)(postcss@8.4.47)(rollup@4.24.4)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)(webpack@5.95.0(esbuild@0.17.19))':
+ '@unocss/nuxt@0.62.4(magicast@0.3.5)(postcss@8.4.47)(rollup@4.24.4)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)(webpack@5.95.0(esbuild@0.17.19))':
dependencies:
'@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
'@unocss/config': 0.62.4
@@ -12402,9 +12414,9 @@ snapshots:
'@unocss/preset-web-fonts': 0.62.4
'@unocss/preset-wind': 0.62.4
'@unocss/reset': 0.62.4
- '@unocss/vite': 0.62.4(rollup@4.24.4)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))
+ '@unocss/vite': 0.62.4(rollup@4.24.4)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))
'@unocss/webpack': 0.62.4(rollup@4.24.4)(webpack@5.95.0(esbuild@0.17.19))
- unocss: 0.62.4(@unocss/webpack@0.62.4(rollup@4.24.4)(webpack@5.95.0(esbuild@0.17.19)))(postcss@8.4.47)(rollup@4.24.4)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))
+ unocss: 0.62.4(@unocss/webpack@0.62.4(rollup@4.24.4)(webpack@5.95.0(esbuild@0.17.19)))(postcss@8.4.47)(rollup@4.24.4)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))
transitivePeerDependencies:
- magicast
- postcss
@@ -12512,7 +12524,7 @@ snapshots:
dependencies:
'@unocss/core': 0.62.4
- '@unocss/vite@0.62.4(rollup@4.24.4)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))':
+ '@unocss/vite@0.62.4(rollup@4.24.4)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))':
dependencies:
'@ampproject/remapping': 2.3.0
'@rollup/pluginutils': 5.1.3(rollup@4.24.4)
@@ -12522,7 +12534,7 @@ snapshots:
chokidar: 3.6.0
magic-string: 0.30.12
tinyglobby: 0.2.10
- vite: 5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0)
+ vite: 5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0)
transitivePeerDependencies:
- rollup
- supports-color
@@ -12536,7 +12548,7 @@ snapshots:
chokidar: 3.6.0
magic-string: 0.30.12
tinyglobby: 0.2.10
- unplugin: 1.14.1(webpack-sources@3.2.3)
+ unplugin: 1.15.0(webpack-sources@3.2.3)
webpack: 5.95.0(esbuild@0.17.19)
webpack-sources: 3.2.3
transitivePeerDependencies:
@@ -12775,6 +12787,14 @@ snapshots:
estree-walker: 2.0.2
source-map-js: 1.2.1
+ '@vue/compiler-core@3.5.13':
+ dependencies:
+ '@babel/parser': 7.26.2
+ '@vue/shared': 3.5.13
+ entities: 4.5.0
+ estree-walker: 2.0.2
+ source-map-js: 1.2.1
+
'@vue/compiler-dom@3.5.12':
dependencies:
'@vue/compiler-core': 3.5.12
@@ -12879,6 +12899,8 @@ snapshots:
'@vue/shared@3.5.12': {}
+ '@vue/shared@3.5.13': {}
+
'@vue/test-utils@2.4.6':
dependencies:
js-beautify: 1.15.1
@@ -12951,13 +12973,13 @@ snapshots:
- supports-color
- webpack-sources
- '@vueuse/nuxt@11.2.0(magicast@0.3.5)(nuxt@3.14.159(@parcel/watcher@2.4.1)(@types/node@22.9.0)(better-sqlite3@11.5.0)(eslint@9.14.0(jiti@2.4.0))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.4)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3))(rollup@4.24.4)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)':
+ '@vueuse/nuxt@11.2.0(magicast@0.3.5)(nuxt@3.14.159(@parcel/watcher@2.4.1)(@types/node@22.9.0)(better-sqlite3@11.5.0)(eslint@9.14.0(jiti@2.4.0))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.4)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3))(rollup@4.24.4)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)':
dependencies:
'@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
'@vueuse/core': 11.2.0(vue@3.5.12(typescript@5.6.3))
'@vueuse/metadata': 11.2.0
local-pkg: 0.5.0
- nuxt: 3.14.159(@parcel/watcher@2.4.1)(@types/node@22.9.0)(better-sqlite3@11.5.0)(eslint@9.14.0(jiti@2.4.0))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.4)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
+ nuxt: 3.14.159(@parcel/watcher@2.4.1)(@types/node@22.9.0)(better-sqlite3@11.5.0)(eslint@9.14.0(jiti@2.4.0))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.4)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
vue-demi: 0.14.10(vue@3.5.12(typescript@5.6.3))
transitivePeerDependencies:
- '@vue/composition-api'
@@ -14151,6 +14173,8 @@ snapshots:
embla-carousel@8.3.0: {}
+ emoji-regex-xs@1.0.0: {}
+
emoji-regex@10.4.0: {}
emoji-regex@8.0.0: {}
@@ -15794,7 +15818,7 @@ snapshots:
dependencies:
'@types/mdast': 4.0.4
devlop: 1.1.0
- mdast-util-from-markdown: 2.0.1
+ mdast-util-from-markdown: 2.0.2
mdast-util-to-markdown: 2.1.0
micromark-util-normalize-identifier: 2.0.0
transitivePeerDependencies:
@@ -15803,7 +15827,7 @@ snapshots:
mdast-util-gfm-strikethrough@2.0.0:
dependencies:
'@types/mdast': 4.0.4
- mdast-util-from-markdown: 2.0.1
+ mdast-util-from-markdown: 2.0.2
mdast-util-to-markdown: 2.1.0
transitivePeerDependencies:
- supports-color
@@ -15813,7 +15837,7 @@ snapshots:
'@types/mdast': 4.0.4
devlop: 1.1.0
markdown-table: 3.0.3
- mdast-util-from-markdown: 2.0.1
+ mdast-util-from-markdown: 2.0.2
mdast-util-to-markdown: 2.1.0
transitivePeerDependencies:
- supports-color
@@ -15822,7 +15846,7 @@ snapshots:
dependencies:
'@types/mdast': 4.0.4
devlop: 1.1.0
- mdast-util-from-markdown: 2.0.1
+ mdast-util-from-markdown: 2.0.2
mdast-util-to-markdown: 2.1.0
transitivePeerDependencies:
- supports-color
@@ -15850,7 +15874,7 @@ snapshots:
'@types/mdast': 4.0.4
'@ungap/structured-clone': 1.2.0
devlop: 1.1.0
- micromark-util-sanitize-uri: 2.0.0
+ micromark-util-sanitize-uri: 2.0.1
trim-lines: 3.0.1
unist-util-position: 5.0.0
unist-util-visit: 5.0.0
@@ -16041,6 +16065,12 @@ snapshots:
micromark-util-encode: 2.0.0
micromark-util-symbol: 2.0.0
+ micromark-util-sanitize-uri@2.0.1:
+ dependencies:
+ micromark-util-character: 2.1.0
+ micromark-util-encode: 2.0.0
+ micromark-util-symbol: 2.0.0
+
micromark-util-subtokenize@2.0.1:
dependencies:
devlop: 1.1.0
@@ -16422,11 +16452,11 @@ snapshots:
- supports-color
- webpack-sources
- nuxt-content-twoslash@0.1.1(@nuxtjs/mdc@0.9.2(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3))(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3):
+ nuxt-content-twoslash@0.1.1(@nuxtjs/mdc@0.9.5(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3))(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3):
dependencies:
'@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
'@nuxt/schema': 3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
- '@nuxtjs/mdc': 0.9.2(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
+ '@nuxtjs/mdc': 0.9.5(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
'@shikijs/vitepress-twoslash': 1.21.0(@nuxt/kit@3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3))(typescript@5.6.3)
cac: 6.7.14
chokidar: 3.6.0
@@ -16522,14 +16552,14 @@ snapshots:
- vue
- webpack-sources
- nuxt-rebundle@0.0.2(magicast@0.3.5)(nuxt@3.14.159(@parcel/watcher@2.4.1)(@types/node@22.9.0)(better-sqlite3@11.5.0)(eslint@9.14.0(jiti@2.4.0))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.4)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3))(rollup@4.24.4)(webpack-sources@3.2.3):
+ nuxt-rebundle@0.0.2(magicast@0.3.5)(nuxt@3.14.159(@parcel/watcher@2.4.1)(@types/node@22.9.0)(better-sqlite3@11.5.0)(eslint@9.14.0(jiti@2.4.0))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.4)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3))(rollup@4.24.4)(webpack-sources@3.2.3):
dependencies:
'@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
acorn: 8.13.0
estree-walker: 3.0.3
magic-string: 0.30.12
mlly: 1.7.2
- nuxt: 3.14.159(@parcel/watcher@2.4.1)(@types/node@22.9.0)(better-sqlite3@11.5.0)(eslint@9.14.0(jiti@2.4.0))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.4)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
+ nuxt: 3.14.159(@parcel/watcher@2.4.1)(@types/node@22.9.0)(better-sqlite3@11.5.0)(eslint@9.14.0(jiti@2.4.0))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.4)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
pathe: 1.1.2
transitivePeerDependencies:
- magicast
@@ -16871,120 +16901,6 @@ snapshots:
- webpack-sources
- xml2js
- nuxt@3.14.159(@parcel/watcher@2.4.1)(@types/node@22.9.0)(better-sqlite3@11.5.0)(eslint@9.14.0(jiti@2.4.0))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.4)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3):
- dependencies:
- '@nuxt/devalue': 2.0.2
- '@nuxt/devtools': 1.6.0(rollup@4.24.4)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
- '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
- '@nuxt/schema': 3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
- '@nuxt/telemetry': 2.6.0(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
- '@nuxt/vite-builder': 3.14.159(@types/node@22.9.0)(eslint@9.14.0(jiti@2.4.0))(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.4)(terser@5.36.0)(typescript@5.6.3)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
- '@unhead/dom': 1.11.11
- '@unhead/shared': 1.11.11
- '@unhead/ssr': 1.11.11
- '@unhead/vue': 1.11.11(vue@3.5.12(typescript@5.6.3))
- '@vue/shared': 3.5.12
- acorn: 8.14.0
- c12: 2.0.1(magicast@0.3.5)
- chokidar: 4.0.1
- compatx: 0.1.8
- consola: 3.2.3
- cookie-es: 1.2.2
- defu: 6.1.4
- destr: 2.0.3
- devalue: 5.1.1
- errx: 0.1.0
- esbuild: 0.24.0
- escape-string-regexp: 5.0.0
- estree-walker: 3.0.3
- globby: 14.0.2
- h3: 1.13.0
- hookable: 5.5.3
- ignore: 6.0.2
- impound: 0.2.0(rollup@4.24.4)(webpack-sources@3.2.3)
- jiti: 2.4.0
- klona: 2.0.6
- knitwork: 1.1.0
- magic-string: 0.30.12
- mlly: 1.7.2
- nanotar: 0.1.1
- nitropack: 2.10.4(better-sqlite3@11.5.0)(typescript@5.6.3)(webpack-sources@3.2.3)
- nuxi: 3.15.0
- nypm: 0.3.12
- ofetch: 1.4.1
- ohash: 1.1.4
- pathe: 1.1.2
- perfect-debounce: 1.0.0
- pkg-types: 1.2.1
- radix3: 1.1.2
- scule: 1.3.0
- semver: 7.6.3
- std-env: 3.7.0
- strip-literal: 2.1.0
- tinyglobby: 0.2.10
- ufo: 1.5.4
- ultrahtml: 1.5.3
- uncrypto: 0.1.3
- unctx: 2.3.1(webpack-sources@3.2.3)
- unenv: 1.10.0
- unhead: 1.11.11
- unimport: 3.13.1(rollup@4.24.4)(webpack-sources@3.2.3)
- unplugin: 1.15.0(webpack-sources@3.2.3)
- unplugin-vue-router: 0.10.8(rollup@4.24.4)(vue-router@4.4.5(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
- unstorage: 1.13.1(ioredis@5.4.1)
- untyped: 1.5.1
- vue: 3.5.12(typescript@5.6.3)
- vue-bundle-renderer: 2.1.1
- vue-devtools-stub: 0.1.0
- vue-router: 4.4.5(vue@3.5.12(typescript@5.6.3))
- optionalDependencies:
- '@parcel/watcher': 2.4.1
- '@types/node': 22.9.0
- transitivePeerDependencies:
- - '@azure/app-configuration'
- - '@azure/cosmos'
- - '@azure/data-tables'
- - '@azure/identity'
- - '@azure/keyvault-secrets'
- - '@azure/storage-blob'
- - '@biomejs/biome'
- - '@capacitor/preferences'
- - '@electric-sql/pglite'
- - '@libsql/client'
- - '@netlify/blobs'
- - '@planetscale/database'
- - '@upstash/redis'
- - '@vercel/kv'
- - better-sqlite3
- - bufferutil
- - drizzle-orm
- - encoding
- - eslint
- - idb-keyval
- - ioredis
- - less
- - lightningcss
- - magicast
- - meow
- - mysql2
- - optionator
- - rollup
- - sass
- - sass-embedded
- - stylelint
- - stylus
- - sugarss
- - supports-color
- - terser
- - typescript
- - utf-8-validate
- - vite
- - vls
- - vti
- - vue-tsc
- - webpack-sources
- - xml2js
-
nypm@0.3.12:
dependencies:
citty: 0.1.6
@@ -17029,6 +16945,12 @@ snapshots:
dependencies:
mimic-fn: 4.0.0
+ oniguruma-to-es@0.4.1:
+ dependencies:
+ emoji-regex-xs: 1.0.0
+ regex: 5.0.2
+ regex-recursion: 4.2.1
+
oniguruma-to-js@0.4.3:
dependencies:
regex: 4.3.3
@@ -17625,8 +17547,18 @@ snapshots:
regenerator-runtime@0.14.1: {}
+ regex-recursion@4.2.1:
+ dependencies:
+ regex-utilities: 2.3.0
+
+ regex-utilities@2.3.0: {}
+
regex@4.3.3: {}
+ regex@5.0.2:
+ dependencies:
+ regex-utilities: 2.3.0
+
regexp-ast-analysis@0.7.1:
dependencies:
'@eslint-community/regexpp': 4.11.1
@@ -17714,10 +17646,33 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ remark-mdc@3.4.0:
+ dependencies:
+ '@types/mdast': 4.0.4
+ '@types/unist': 3.0.3
+ flat: 6.0.1
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-to-markdown: 2.1.0
+ micromark: 4.0.0
+ micromark-core-commonmark: 2.0.1
+ micromark-factory-space: 2.0.0
+ micromark-factory-whitespace: 2.0.0
+ micromark-util-character: 2.1.0
+ micromark-util-types: 2.0.0
+ parse-entities: 4.0.1
+ scule: 1.3.0
+ stringify-entities: 4.0.4
+ unified: 11.0.5
+ unist-util-visit: 5.0.0
+ unist-util-visit-parents: 6.0.1
+ yaml: 2.6.0
+ transitivePeerDependencies:
+ - supports-color
+
remark-parse@11.0.0:
dependencies:
'@types/mdast': 4.0.4
- mdast-util-from-markdown: 2.0.1
+ mdast-util-from-markdown: 2.0.2
micromark-util-types: 2.0.0
unified: 11.0.5
transitivePeerDependencies:
@@ -18071,6 +18026,15 @@ snapshots:
'@shikijs/vscode-textmate': 9.3.0
'@types/hast': 3.0.4
+ shiki@1.23.1:
+ dependencies:
+ '@shikijs/core': 1.23.1
+ '@shikijs/engine-javascript': 1.23.1
+ '@shikijs/engine-oniguruma': 1.23.1
+ '@shikijs/types': 1.23.1
+ '@shikijs/vscode-textmate': 9.3.0
+ '@types/hast': 3.0.4
+
siginfo@2.0.0: {}
signal-exit@3.0.7: {}
@@ -18775,9 +18739,9 @@ snapshots:
universalify@2.0.1: {}
- unocss@0.62.4(@unocss/webpack@0.62.4(rollup@4.24.4)(webpack@5.95.0(esbuild@0.17.19)))(postcss@8.4.47)(rollup@4.24.4)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0)):
+ unocss@0.62.4(@unocss/webpack@0.62.4(rollup@4.24.4)(webpack@5.95.0(esbuild@0.17.19)))(postcss@8.4.47)(rollup@4.24.4)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0)):
dependencies:
- '@unocss/astro': 0.62.4(rollup@4.24.4)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))
+ '@unocss/astro': 0.62.4(rollup@4.24.4)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))
'@unocss/cli': 0.62.4(rollup@4.24.4)
'@unocss/core': 0.62.4
'@unocss/postcss': 0.62.4(postcss@8.4.47)
@@ -18793,10 +18757,10 @@ snapshots:
'@unocss/transformer-compile-class': 0.62.4
'@unocss/transformer-directives': 0.62.4
'@unocss/transformer-variant-group': 0.62.4
- '@unocss/vite': 0.62.4(rollup@4.24.4)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))
+ '@unocss/vite': 0.62.4(rollup@4.24.4)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0))
optionalDependencies:
'@unocss/webpack': 0.62.4(rollup@4.24.4)(webpack@5.95.0(esbuild@0.17.19))
- vite: 5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0)
+ vite: 5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0)
transitivePeerDependencies:
- postcss
- rollup
@@ -18958,9 +18922,9 @@ snapshots:
util-deprecate@1.0.2: {}
- v-lazy-show@0.2.4(@vue/compiler-core@3.5.12):
+ v-lazy-show@0.2.4(@vue/compiler-core@3.5.13):
dependencies:
- '@vue/compiler-core': 3.5.12
+ '@vue/compiler-core': 3.5.13
valibot@0.42.1(typescript@5.6.3):
optionalDependencies:
@@ -19059,7 +19023,7 @@ snapshots:
- rollup
- supports-color
- vite-plugin-inspect@0.8.7(@nuxt/kit@3.14.159(magicast@0.3.5)(rollup@4.24.3)(webpack-sources@3.2.3))(rollup@4.24.4)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0)):
+ vite-plugin-inspect@0.8.7(@nuxt/kit@3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3))(rollup@4.24.4)(vite@5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0)):
dependencies:
'@antfu/utils': 0.7.10
'@rollup/pluginutils': 5.1.2(rollup@4.24.4)
@@ -19071,24 +19035,6 @@ snapshots:
picocolors: 1.1.0
sirv: 2.0.4
vite: 5.4.10(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0)
- optionalDependencies:
- '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.24.3)(webpack-sources@3.2.3)
- transitivePeerDependencies:
- - rollup
- - supports-color
-
- vite-plugin-inspect@0.8.7(@nuxt/kit@3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3))(rollup@4.24.4)(vite@5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0)):
- dependencies:
- '@antfu/utils': 0.7.10
- '@rollup/pluginutils': 5.1.2(rollup@4.24.4)
- debug: 4.3.7(supports-color@9.4.0)
- error-stack-parser-es: 0.1.5
- fs-extra: 11.2.0
- open: 10.1.0
- perfect-debounce: 1.0.0
- picocolors: 1.1.0
- sirv: 2.0.4
- vite: 5.4.8(@types/node@22.9.0)(lightningcss@1.27.0)(terser@5.36.0)
optionalDependencies:
'@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.24.4)(webpack-sources@3.2.3)
transitivePeerDependencies: