-
-
Star
+
+
+
+
+
+ {{ nuxtSeoStars }}
-
-
- {{ nuxtSeoStars }}
-
-
+
-
+
-
+
+
+
+
+
diff --git a/docs/app/components/Inspira/Dock.vue b/docs/app/components/Inspira/Dock.vue
index 3f254977..c9615380 100644
--- a/docs/app/components/Inspira/Dock.vue
+++ b/docs/app/components/Inspira/Dock.vue
@@ -21,8 +21,8 @@ const props = defineProps({
})
const dockRef = useTemplateRef
('dockRef')
-const mouseX = ref(Infinity)
-const mouseY = ref(Infinity)
+const mouseX = ref()
+const mouseY = ref()
const dockClass = computed(() => ({
'items-start': props.direction === 'top',
@@ -46,8 +46,8 @@ const { isOutside } = useMouseInElement(dockRef)
watch(isOutside, (val) => {
if (val) {
- mouseX.value = Infinity
- mouseY.value = Infinity
+ mouseX.value = false
+ mouseY.value = false
}
})
diff --git a/docs/app/components/Inspira/DockIcon.vue b/docs/app/components/Inspira/DockIcon.vue
index 946ee24e..930a8fd7 100644
--- a/docs/app/components/Inspira/DockIcon.vue
+++ b/docs/app/components/Inspira/DockIcon.vue
@@ -7,8 +7,8 @@ defineProps<{
const iconRef = useTemplateRef('icon')
-const mouseY = inject('mouseY', ref(Infinity))
-const mouseX = inject('mouseX', ref(Infinity))
+const mouseY = inject('mouseY', ref())
+const mouseX = inject('mouseX', ref())
const magnification = inject('magnification', 60)
const distance = inject('distance', 100)
@@ -25,7 +25,7 @@ function calculateYDistance(val: number) {
}
const margin = computed(() => {
- if (mouseX.value === Infinity) {
+ if (!mouseX.value) {
return { }
}
// we want to move the icon to offset the width / height changes
@@ -37,7 +37,7 @@ const margin = computed(() => {
})
const iconWidth = computed(() => {
- if (mouseX.value === Infinity) {
+ if (!mouseX.value) {
return baseWidth
}
const distanceCalc = calculateXDistance(mouseX.value)
@@ -50,7 +50,7 @@ const iconWidth = computed(() => {
})
const iconHeight = computed(() => {
- if (mouseX.value === Infinity) {
+ if (!mouseX.value) {
return baseWidth
}
const distanceCalc = calculateYDistance(mouseY.value)
@@ -63,7 +63,7 @@ const iconHeight = computed(() => {
})
const iconColor = computed(() => {
- if (mouseX.value === Infinity) {
+ if (!mouseX.value) {
return 'text-blue-300'
}
// should be between 300-900 depending on how close the mouse is to the element
diff --git a/docs/app/components/Inspira/Marquee.vue b/docs/app/components/Inspira/Marquee.vue
index 752aaebf..de08ae7a 100644
--- a/docs/app/components/Inspira/Marquee.vue
+++ b/docs/app/components/Inspira/Marquee.vue
@@ -1,5 +1,5 @@
+
+
+
+
+
+
+
+
+ {{ module.label }}
+
+
+ {{ module.description }}
+
+
+
+
+
+
+
+
diff --git a/docs/app/components/ModuleCardGsc.vue b/docs/app/components/ModuleCardGsc.vue
new file mode 100644
index 00000000..c1a2787b
--- /dev/null
+++ b/docs/app/components/ModuleCardGsc.vue
@@ -0,0 +1,18 @@
+
+
+
+
+
diff --git a/docs/app/components/ModuleCardInternalLinks.vue b/docs/app/components/ModuleCardInternalLinks.vue
new file mode 100644
index 00000000..1873689b
--- /dev/null
+++ b/docs/app/components/ModuleCardInternalLinks.vue
@@ -0,0 +1,17 @@
+
+
+
+
+
diff --git a/docs/app/components/ModuleCardMagicRedirects.vue b/docs/app/components/ModuleCardMagicRedirects.vue
new file mode 100644
index 00000000..fde534fe
--- /dev/null
+++ b/docs/app/components/ModuleCardMagicRedirects.vue
@@ -0,0 +1,24 @@
+
+
+
+
+
diff --git a/docs/app/components/ModuleCardSEOValidate.vue b/docs/app/components/ModuleCardSEOValidate.vue
new file mode 100644
index 00000000..33f129e1
--- /dev/null
+++ b/docs/app/components/ModuleCardSEOValidate.vue
@@ -0,0 +1,17 @@
+
+
+
+
+
diff --git a/docs/app/components/ModuleFeaturesCard.vue b/docs/app/components/ModuleFeaturesCard.vue
new file mode 100644
index 00000000..8b002fdd
--- /dev/null
+++ b/docs/app/components/ModuleFeaturesCard.vue
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+ {{ item.label }}
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/app/components/TableOfContents.vue b/docs/app/components/TableOfContents.vue
index bc1b0cb6..33a616ed 100644
--- a/docs/app/components/TableOfContents.vue
+++ b/docs/app/components/TableOfContents.vue
@@ -6,7 +6,7 @@ defineOptions({
inheritAttrs: false,
})
-const props = defineProps({
+defineProps({
links: {
type: Array as PropType,
default: () => [],
diff --git a/docs/app/components/ads/Ads.vue b/docs/app/components/ads/Ads.vue
index 7ae47d8a..8cf4f4bb 100644
--- a/docs/app/components/ads/Ads.vue
+++ b/docs/app/components/ads/Ads.vue
@@ -1,13 +1,47 @@
+
+
-
-
-
+
+
+
+ Nuxt SEO Pro
+
+
+
+
+
+ - Nuxt Redirects
+ - Nuxt Google Search Console
+ - Nuxt Internal Links
+ - Nuxt SEO Analyze
+
+
+ Save $170 on the
+ presale
+ now.
+
+
+
+
+
+
diff --git a/docs/content/learn/0.community-videos.md b/docs/content/learn/0.community-videos.md
index 6bbc1fa2..a43be71e 100644
--- a/docs/content/learn/0.community-videos.md
+++ b/docs/content/learn/0.community-videos.md
@@ -1,9 +1,9 @@
---
title: Community Videos
-description: How to get your site crawled and indexed for the first time by Google.
+description: Learn from the Nuxt community in using Nuxt SEO.
icon: i-carbon-video-player
---
-:ScriptYouTube{videoId="https://www.youtube.com/watch?v=CPZTMlarbKg"}
-
+:YouTubeVideo{videoId="OyVI8zmDqWU" title="Nuxt 3 SEO (intro to Nuxt SEO)" channel-bg="https://yt3.ggpht.com/kMmiPu2Sc-sFlMzNuCtbVxoJuJBqk_vQBfsd-45K9ACZ0wBVFykFHNt_THdTtFYCPtveobp6=s88-c-k-c0x00ffffff-no-rj"}
+:YouTubeVideo{videoId="CPZTMlarbKg" title="Easy SEO with Nuxt and Storyblok" channel-bg="https://yt3.ggpht.com/L1G1b-oVwe3QPwd-RQGPaohbsViP29PGMa2nyDfj10HH7BO6RhAY0Jmhp9tth6mRmuOgoE_7=s68-c-k-c0x00ffffff-no-rj"}
diff --git a/docs/content/learn/2.mastering-titles-in-nuxt.md b/docs/content/learn/2.mastering-titles-in-nuxt.md
index 1f8da2d1..211fd5bc 100644
--- a/docs/content/learn/2.mastering-titles-in-nuxt.md
+++ b/docs/content/learn/2.mastering-titles-in-nuxt.md
@@ -1,25 +1,48 @@
---
-title: Mastering Titles in Nuxt
-description: Learn best practices for titles, setting them with title templates and more.
+title: Mastering Page Titles in Vue & Nuxt
+description: Learn best practices for titles, how to use title templates and template params and more.
icon: i-heroicons-h1-solid
+navigation:
+ title: 'Mastering Page Titles'
---
## Introduction
-I've been working with Nuxt for a while now, and I've learned that page titles are a big deal in SEO.
-They're what users see first in search results, and they can really make a difference in whether someone clicks on your link or not.
-From what I've seen, good titles help search engines understand your content better and can give your rankings a boost.
-Most search engines seem to prefer titles under 60 characters, with the important stuff up front.
+Titles are the first thing we think about when optimizing our sites SEO. They are the main call-to-action in search results
+and help the user understand what the page is about and where they are in relation to the site.
-One thing I love about Nuxt is how it makes handling titles pretty straightforward.
-Its built-in SEO tools and composables have saved me a ton of time.
-Let me walk you through how I usually set things up.
+```html
+
+ Mastering Titles in Nuxt ยท Nuxt SEO<
+
+```
-## Setting Up Titles
+Setting page titles in Vue is straightforward, however, I've noticed that many developers still struggle
+with setting them up in certain scenarios.
-In Nuxt, we use this thing called `useHead()` to manage meta info, including titles. Here's a basic example:
+In this guide, I'll walk you through how I set up titles in Nuxt and some common pitfalls to avoid.
-```vue
+## Understanding the ``{lang="html"} Tag
+
+As a quick introduction, the ``{lang="html"} tag tells the browser what to display in the tab or window title bar
+ and hints search engines to show as the SERP (search engine result page) result.
+
+It's recommended to keep the title under 60 characters, unique and descriptive of the page content. We mention that we're
+hinting search engines to use this as the title, as they may choose to display a different title based on the search query.
+
+You can learn more about this and title best practices on Google's [Influencing your title links in search results](https://developers.google.com/search/docs/appearance/title-link) guide.
+
+## Understanding `useHead()`{lang="ts"}
+
+If you use Nuxt or turn Vue 3, then you'll likely already be using my head manager library [Unhead](https://unhead.unjs.io/).
+
+Unhead exposes a composable called [`useHead()`{lang="ts"}](https://unhead.unjs.io/) which you can use to set your page title as well as any other head tags.
+
+Using this composable to set the page title is as simple as:
+
+::code-group
+
+```vue twoslash [input.vue]
```
-I usually put this in the `
+```
+
+### SEO Concerns
+
+It's important that we have a page title available in the SSR response, otherwise search engines may not honor the title.
+::code-group
+
+```vue [input.vue]
+
```
-This way, the title updates as soon as the data loads. It's not perfect, but it works pretty well for most cases.
+```html [output.html]
+
+ Loading...
+
+```
+
+::
## Title Templates
-Title templates are pretty neat for keeping things consistent across your site. Nuxt uses some special placeholders:
+You may notice that most people set up their titles with a site name and a separator, this is seen as a best practice as it
+can help with brand recognition and SEO.
-- **%siteName**: Your site's name
-- **%pageTitle**: The specific page title
-- **%separator**: Separates parts of your title (I usually use a pipe |)
+```html
+
+ Home | MySite
+
+```
-Here's how I set it up in `nuxt.config.ts`:
+Creating your own title like this is simple using `useHead()`{lang="ts"} with a [Title Template](https://unhead.unjs.io/usage/guides/title-template).
-```ts
+::code-group
+
+```vue twoslash [input.vue]
+
+```
+
+```html [output.html]
+
+ Home | MySite
+
+```
+
+::
+
+You may notice these special `%s` tokens, which are frankly a bit weird. These are called [Template Params](https://unhead.unjs.io/usage/guides/template-params) and are replaced with the page title and separator respectively.
+
+### Template Params
+
+You may ask why we don't just use a function for the title template, and while this is supported, it can create issues with SSR and hydration.
+
+Instead, it's recommended to use the params. Out-of-the-box, Unhead provides:
+
+| Token | Description |
+|-------|-------------------------------------------------|
+| `%s` | The current page title. |
+| `%seperator` | The separator, defaults to a pipe character \|. |
+
+You can add your own template params by passing them to `useHead()`{lang="ts"}.
+
+::code-group
+
+```vue twoslash [input.vue]
+
+```
+
+```html [output.html]
+
+ Home โ MySite
+
+```
+
+::
+
+As we'll likely only ever have one root title template, you can set this globally in your `nuxt.config.ts` file.
+
+```ts [nuxt.config.ts]
export default defineNuxtConfig({
app: {
head: {
@@ -72,83 +203,191 @@ export default defineNuxtConfig({
})
```
-In this setup, `%s` is where your page title goes. It took me a while to get used to this syntax, but now I find it really handy.
+I'd suggest choosing your own separator as the `'|'` is a bit ugly in my opinion, you can try:
-### Tweaking Template Params
+```ts
+type Seperator = '-' | 'โ' | 'โข' | 'ยท' | 'โค๏ธ'
+```
-You can change these params globally or per-page. I often do this for special pages:
+You can use template params in other head tags too, such as meta descriptions and open graph tags.
-```vue
-
```
-This uses a dash (โ) instead of a pipe and changes the site name for this page. It's a small touch, but I think it makes certain pages stand out.
+```html [output.html]
+
+ Home
+
+```
+::
-### Don't Forget Other Meta Tags
+### Social Share Titles
-While we're talking about titles, don't forget about meta descriptions and Open Graph tags. They're important too:
+Now that we have the browser and SERP titles sorted, we should also consider social share titles.
-```vue
+:FigureImage{src="/nuxt-x-share.png" alt="Nuxt X Share" lazy="true"}
+
+In the above we can see the title "Nuxt: The Intuitive Vue Framework".
+
+This title is set using the `twitter:title` meta tag and will fall back to the `og:title` meta tag if not set.
+
+Remembering how to use the meta tags can be annoying, so we can use the [`useSeoMeta()`{lang="ts"}](https://unhead.unjs.io/usage/composables/use-seo-meta) composable to set these up.
+
+::code-group
+
+```vue [input.vue]
```
-These help your content look good in search results and when shared on social media. I once forgot to set these up, and my social shares looked terrible for weeks!
+```html [output.html]
+
+ Why you should eat more broccoli | Health Tips
+
+
+
+```
+
+::
-### Auto Titles with Nuxt SEO Utils
+## My Recommendations
-Nuxt SEO Utils can generate titles based on the current path. It's pretty handy for dynamic routes like blog posts or product pages:
+1. Set your title template in your nuxt.config.
+
+This will reduce your client-side bundle as the title template will be set globally.
```ts
export default defineNuxtConfig({
app: {
head: {
titleTemplate: '%s %separator %siteName',
+ templateParams: {
+ seperator: 'โ', // choose a seperator
+ siteName: 'MyApp' // set a site name
+ }
}
}
})
```
-With this setup, if someone hits `/about`, the title will be "About | MyApp" automatically. It's saved me a lot of time on larger projects.
+2. Always pass in reactive data to `useHead()`{lang="ts"}
+
+Makes sure our page titles are always reactive, I'd personally recommend using computed getter syntax which is the VueUse way.
+
+```ts
+const title = ref('Loading...')
+
+useHead({
+ // computed getter syntax
+ title: () => `${title.value} - hold up!`
+})
+```
+
+3. `useSeoMeta()`{lang="ts"} over `useHead()`{lang="ts"} for SEO meta tags.
-### Default Titles
+```ts
+useSeoMeta({
+ title: 'Home',
+ description: 'Welcome to MyApp',
+ ogTitle: 'Home | MyApp',
+ ogDescription: 'Welcome to MyApp',
+})
+```
+
+4. Make life easier with template params
-Setting up a default title is always a good idea. Trust me, you'll thank yourself later:
+One of my favourite ways of using template params is to make sure we always have an `og:title` set. This can be done
+globally with one line of code.
```ts
-export default defineNuxtConfig({
- app: {
- head: {
- titleTemplate: '%s %separator %siteName',
- templateParams: {
- siteName: 'MyApp'
- }
- }
- }
+// will always use the page title
+useSeoMeta({ ogTitle: '%s' })
+```
+
+5. Use Nuxt SEO Utils.
+
+If you're not using Nuxt or you're not using the Nuxt SEO Utils module, then you're adding a lot of extra work for yourself.
+
+## Nuxt SEO Utils
+
+Nuxt SEO Utils is a powerful module that helps you manage your technical SEO. If you're using the Nuxt SEO module
+it's already included for you.
+
+It has a number of features that can help you manage your titles, such as:
+
+### Fallback Titles
+
+Usually we map our routes in a way that the page title and be inferred. For example, consider we have a route called `/about-us`,
+it seems reasonable that we'd have a title of "About Us".
+
+With Nuxt SEO Utils, this will in fact be the default behavior. If you don't set a title, it will use the last slug segment as the title.
+
+You can read more about it in the [Enahcned Title](/docs/seo-utils/guides/fallback-title) guide.
+
+### Automatic Social Share Titles
+
+Most of the time our ``{lang="html"} and our ``{lang="html"} will be the same.
+
+It's easy to forget to set the `og:title` meta tag, so Nuxt SEO Utils will automatically set this for you based on the page title, it will even
+ignore the title template.
+
+::code-group
+
+```vue [input.vue]
+
+```
+
+```html [output.html]
+
+ Home | Health Tips
+
+
```
-This way, even if you forget to set a specific title (and believe me, it happens), you'll still have "MyApp" as a fallback.
+::
## Wrapping Up
-Getting your page titles right in Nuxt isn't rocket science, but it does take some thought. I've found that a little effort here goes a long way in improving SEO and user experience. Don't be afraid to experiment and see what works best for your site. And remember, while these tools are great, nothing beats actually looking at your site in search results and tweaking things until they look just right.
+Thanks for reading, this is the first introductory guide I've written related to SEO and Nuxt / Vue.
-Happy coding, and may your titles always be click-worthy!
+If you have any feedback or suggestions please let me know on [X](https://twitter.com/harlan-zw).
diff --git a/docs/content/learn/3.trailing-slashes.md b/docs/content/learn/3.trailing-slashes.md
index 09aa2bd6..0bbcf8b1 100644
--- a/docs/content/learn/3.trailing-slashes.md
+++ b/docs/content/learn/3.trailing-slashes.md
@@ -1,9 +1,17 @@
---
-title: Trailing Slashes
-description: Learn how to enable trailing slashes for your site.
-icon: i-carbon-video-player
+title: Trailing Slashes in Vue & Nuxt
+description: Learn why we might use a trailing slash, best practices for them and how to handle them in Nuxt.
+icon: i-heroicons-h1-solid
+navigation:
+ title: 'Mastering Page Titles'
---
+## Introduction
+
+## Avoiding Duplicate Content with Trailing Slashes
+
+## Nuxt SEO
+
Sitemap URLs will have their [trailing slashes](/nuxt-seo/guides/trailing-slashes) removed by default. If you want to keep them, you can set the `trailingSlash` option to `true`:
```ts [nuxt.config.ts]
@@ -25,7 +33,7 @@ By default, the trailing slash is removed. Meaning any links generated by Nuxt S
+ /my-link-to-somewhere
```
-## Enabling Trailing Slashes
+### Enabling Trailing Slashes
Nuxt SEO allows you to enable global trailing slashes using site config.
@@ -39,7 +47,7 @@ export default defineNuxtConfig({
})
```
-## Handling Internal Links
+### Handling Internal Links
While Nuxt SEO can handle the correct trailing slashes for all of its own modules, it can't correct the behaviour of
`` or other modules.
@@ -52,8 +60,6 @@ Alternatively, you can use the `` component.
This has the exact same API as `` but will provide extra link resolving features.
-### Props
-
```vue
diff --git a/docs/content/learn/4.multi-tenancy-seo-nuxt-apps.md b/docs/content/learn/4.multi-tenancy-seo-nuxt-apps.md
index 2c0f5406..28d9c7b7 100644
--- a/docs/content/learn/4.multi-tenancy-seo-nuxt-apps.md
+++ b/docs/content/learn/4.multi-tenancy-seo-nuxt-apps.md
@@ -5,6 +5,6 @@ description: Learn how to set up multi-tenancy SEO for Nuxt apps with Nuxt SEO U
## Multi-tenancy Production Site
-Multi-tenancy is possible with [Nuxt Site Config](/site-config/getting-started/installation) shines.
+Multi-tenancy is possible with [Nuxt Site Config](/docs/site-config/getting-started/installation) shines.
-See the [Runtime Site Config](/site-config/guides/runtime-site-config) guide to learn how to set site config at runtime.
+See the [Runtime Site Config](/docs/site-config/guides/runtime-site-config) guide to learn how to set site config at runtime.
diff --git a/docs/content/nuxtSeo/2.guides/0.using-the-modules.md b/docs/content/nuxtSeo/2.guides/0.using-the-modules.md
index 63e76063..98541a5f 100644
--- a/docs/content/nuxtSeo/2.guides/0.using-the-modules.md
+++ b/docs/content/nuxtSeo/2.guides/0.using-the-modules.md
@@ -11,13 +11,13 @@ Generates a [sitemap](https://developers.google.com/search/docs/crawling-indexin
based on your app [data sources](/docs/sitemap/guides/data-sources).
- When prerendering or using static only routes, no config is needed, it will automatically generate a sitemap for you.
-- If you have dynamic routes, you'll need to set up a handler for [Dynamic URLs](/sitemap/guides/dynamic-urls).
+- If you have dynamic routes, you'll need to set up a handler for [Dynamic URLs](/docs/sitemap/guides/dynamic-urls).
### I18n Features
The sitemap module will automatically generate a multi sitemap with each locale having its own sitemap.
-See [I18n Sitemap](/sitemap/integrations/i18n) for more information.
+See [I18n Sitemap](/docs/sitemap/guides/i18n) for more information.
## Robots
@@ -27,14 +27,14 @@ Generates a [robots.txt](https://developers.google.com/search/docs/crawling-inde
Will append a ``{lang="html"} and a `X-Robots` HTTP header.
-- If you have any other environments besides development and production, you need to configure the `env` option. See the [Disabling Indexing](/robots/guides/disable-indexing) guide for more information.
-- By default, all routes are allowed for all user-agents. See [Disabling Page Indexing](/robots/guides/disable-page-indexing) to start blocking routes.
+- If you have any other environments besides development and production, you need to configure the `env` option. See the [Disabling Indexing](/docs/robots/guides/disable-indexing) guide for more information.
+- By default, all routes are allowed for all user-agents. See [Disabling Page Indexing](/docs/robots/guides/disable-page-indexing) to start blocking routes.
### I18n Features
Any `Disallow` rules in the robots module will automatically have the locale prefixes added.
-See [I18n Robots](/robots/integrations/i18n) for more information.
+See [I18n Robots](/docs/robots/guides/i18n) for more information.
## OG Image
@@ -110,4 +110,4 @@ You can dynamically set the site config based on the current locale.
This is useful for setting the `url` and `name` properties based on the page the user is currently on.
-See [I18n Site Config](/site-config/integrations/i18n) for more information.
+See [I18n Site Config](/docs/site-config/integrations/i18n) for more information.
diff --git a/docs/content/nuxtSeo/6.migration-guide/0.rc-to-stable.md b/docs/content/nuxtSeo/6.migration-guide/0.rc-to-stable.md
index 1407c3df..02f5b69d 100644
--- a/docs/content/nuxtSeo/6.migration-guide/0.rc-to-stable.md
+++ b/docs/content/nuxtSeo/6.migration-guide/0.rc-to-stable.md
@@ -1,55 +1,33 @@
---
title: v2 RC to v2 Stable
-description: Migrate from the Nuxt SEO v2 beta to the v2 RC.
+description: Migrate from the Nuxt SEO v2 RC to the v2 stabke.
---
+## Introduction
+
+This guide will help you migrate from the Nuxt SEO v2 RC to the v2 stable release.
+
+Please see the [announcement](/announcement) post for details on the release.
+
## Support
If you get stuck with the migration or have post-migration bugs, please get in touch!
- [Jump in the Discord](https://discord.com/invite/5jDAMswWwX)
- [Make a GitHub issue](https://github.com/harlan-zw/nuxt-seo/issues)
-- [Provide feedback](https://github.com/harlan-zw/nuxt-seo/discussions/108)
-
-## Package Rename
-
-In moving to the RC release, the package name has changed from `@nuxtseo/module` to `@nuxtjs/seo`.
-
-- 2-beta.x - Nuxt SEO Kit `@nuxtseo/module`
-- 2-rc.x - Nuxt SEO `@nuxtjs/seo`
-
-::code-group
-
-```sh [pnpm]
-pnpm remove @nuxtseo/module && pnpm i -D @nuxtjs/seo
-```
-
-```bash [yarn]
-yarn remove @nuxtseo/module && yarn add -D @nuxtjs/seo
-```
-
-```bash [npm]
-npm remove @nuxtseo/module && npm install -D @nuxtjs/seo
-```
-
-::
-```diff [nuxt.config.ts]
-export default defineNuxtConfig({
- modules: [
-- '@nuxtseo/module'
-+ '@nuxtjs/seo',
- ]
-})
-```
+## Nuxt SEO Utils
-## Notable Changes
+In moving to the stable release, Nuxt SEO experiments has been renamed from `nuxt-seo-experiments` to `nuxt-seo-utils`.
-### Sitemap v5
+The original name of the module was `nuxt-seo-experiments`, hinting that the features weren't stable and that they would land in the Nuxt core. This is no longer the case, and the module has been renamed to reflect this.
-The sitemap module has been updated to v5, which itself included a package rename.
+With this rename the module scope changes to include the random functionality that Nuxt SEO was previously providing:
-- 4.x - `nuxt-simple-sitemap`
-- 5.x - `@nuxtjs/sitemap`
+- `useBreadcrumbItems()` composable
+- Config: `redirectToCanonicalSiteUrl`
+- Config: `fallbackTitle`
+- Config: `automaticDefaults`
-No changes are required to your config.
+As Nuxt SEO Utils shared the same config key as the Nuxt SEO module, no changes are required to your config, however, it's worth
+testing your site to ensure that everything is working as expected.
diff --git a/docs/content/nuxtSeo/6.migration-guide/3.nuxt-seo-kit.md b/docs/content/nuxtSeo/6.migration-guide/3.nuxt-seo-kit.md
index f1678f85..2b4ca75e 100644
--- a/docs/content/nuxtSeo/6.migration-guide/3.nuxt-seo-kit.md
+++ b/docs/content/nuxtSeo/6.migration-guide/3.nuxt-seo-kit.md
@@ -75,7 +75,7 @@ If you'd like to opt-out of the these v2 configurations, you can set [automaticD
## Site Config Changes
In v1, site config was set through runtime config. In v2, we have a dedicated module with helpers for handling
-this config called [nuxt-site-config](/site-config/getting-started/background).
+this config called [nuxt-site-config](/docs/site-config/getting-started/introduction).
The move to a module is to allow greater flexible in changing site configuration at runtime.
@@ -110,7 +110,7 @@ When updating your config:
- All keys are without the `site` prefix
- The `language` config has been renamed to `defaultLocale`
-The behaviour for environment variables hasn't changed, it's recommended to read [how site config works](/site-config/getting-started/how-it-works) for
+The behaviour for environment variables hasn't changed, it's recommended to read [how site config works](/docs/site-config/getting-started/how-it-works) for
more advanced configuration.
## Prerendering Changes
@@ -150,7 +150,7 @@ No breaking changes.
Upgraded from v1 to v3:
- [v2 release notes](https://github.com/nuxt-modules/sitemap/releases/tag/v2.0.0)
-- [v3 release notes](/sitemap/releases/v3)
+- [v3 release notes](/docs/sitemap/releases/v3)
No breaking changes.
diff --git a/docs/nuxt.config.ts b/docs/nuxt.config.ts
index 1720fbc0..e6e76e57 100644
--- a/docs/nuxt.config.ts
+++ b/docs/nuxt.config.ts
@@ -1,7 +1,46 @@
+import type { SourceMapInput } from 'rollup'
+import { pathToFileURL } from 'node:url'
+import { addBuildPlugin } from '@nuxt/kit'
+import MagicString from 'magic-string'
import { defineNuxtConfig } from 'nuxt/config'
import { resolve } from 'pathe'
+import {parseQuery, parseURL} from 'ufo'
+import { createUnplugin } from 'unplugin'
import NuxtSEO from '../src/module'
+export function isVue(id: string, opts: { type?: Array<'template' | 'script' | 'style'> } = {}) {
+ // Bare `.vue` file (in Vite)
+ const { search } = parseURL(decodeURIComponent(pathToFileURL(id).href))
+ if (id.endsWith('.vue') && !search) {
+ return true
+ }
+
+ if (!search) {
+ return false
+ }
+
+ const query = parseQuery(search)
+
+ // Component async/lazy wrapper
+ if (query.nuxt_component) {
+ return false
+ }
+
+ // Macro
+ if (query.macro && (search === '?macro=true' || !opts.type || opts.type.includes('script'))) {
+ return true
+ }
+
+ // Non-Vue or Styles
+ const type = 'setup' in query ? 'script' : query.type as 'script' | 'template' | 'style'
+ if (!('vue' in query) || (opts.type && !opts.type.includes(type))) {
+ return false
+ }
+
+ // Query `?vue&type=template` (in Webpack or external template)
+ return true
+}
+
export default defineNuxtConfig({
// const pkgJson = await readPackageJSON('../package.json')
modules: [
@@ -11,6 +50,8 @@ export default defineNuxtConfig({
'nuxt-content-twoslash',
'radix-vue/nuxt',
'@vueuse/nuxt',
+ 'nuxt-rebundle',
+ '@nuxthub/core',
'@nuxt/fonts',
'@nuxt/content',
// 'nuxt-build-cache',
@@ -19,8 +60,11 @@ export default defineNuxtConfig({
NuxtSEO,
async (_, nuxt) => {
nuxt.hooks.hook('nitro:init', (nitro) => {
+ // from sponsorkit
+ nitro.options.alias.sharp = 'unenv/runtime/mock/empty'
nitro.options.alias['#content/server'] = resolve('./server/content-v2')
})
+
// if (existsSync(resolve(__dirname, '.content'))) {
// return
// }
@@ -51,17 +95,17 @@ export default defineNuxtConfig({
// logger.info(`๐ Docs source \`${m.slug}\` using GitHub: ${m.repo}`)
// }
// key++
- // return [camelCase(m.slug), defineCollection({
- // type: 'page',
- // source: {
- // path: '',
- // prefix: `/docs/${key}.${m.slug}`,
- // repository: `https://github.com/nuxt-modules/sitemap/tree/main/docs/content`,
- // },
- // // token: process.env.NUXT_GITHUB_TOKEN || '',
- // // driver: 'github',
- // // dir: 'docs/content',
- // })]
+ // return [camelCase(m.slug), defineCollection({
+ // type: 'page',
+ // source: {
+ // path: '',
+ // prefix: `/docs/${key}.${m.slug}`,
+ // repository: `https://github.com/nuxt-modules/sitemap/tree/main/docs/content`,
+ // },
+ // // token: process.env.NUXT_GITHUB_TOKEN || '',
+ // // driver: 'github',
+ // // dir: 'docs/content',
+ // })]
// }
// const nuxtSeo = modules.find(m => m.slug === 'nuxt-seo')
// const localDirPath = resolve(__dirname, '..', 'content', 'nuxt-seo')
@@ -80,12 +124,22 @@ export default defineNuxtConfig({
},
},
+ hub: {
+ cache: true,
+ kv: true,
+ },
+
future: {
compatibilityVersion: 4,
},
runtimeConfig: {
- githubToken: '', // NUXT_GITHUB_TOKEN
+ emailOctopusToken: '', // NUXT_EMAIL_OCTOPUS_TOKEN
+ githubAccessToken: '', // NUXT_GITHUB_ACCESS_TOKEN
+ githubAuthToken: '', // NUXT_GITHUB_AUTH_TOKEN
+ githubAuthClientId: 'cabace556bd9519d9299', // NUXT_GITHUB_AUTH_CLIENT_ID
+ githubAuthClientSecret: '', // NUXT_GITHUB_AUTH_SECRET_ID
+
public: {
// moduleDeps: pkgJson.dependencies,
// version: pkgJson.version,
@@ -102,10 +156,20 @@ export default defineNuxtConfig({
throws: false,
},
+ fonts: {
+ experimental: {
+ processCSSVariables: true,
+ },
+ families: [
+ // chef kiss
+ { name: 'Hubot Sans', provider: 'local', weight: [200, 900], stretch: '75% 125%' },
+ ],
+ },
+
nitro: {
prerender: {
failOnError: false,
- crawlLinks: true,
+ // crawlLinks: true,
routes: ['/'],
},
},
@@ -133,7 +197,7 @@ export default defineNuxtConfig({
},
alias: {
- '#content/server': resolve('./app/utils/content-v2'),
+ '#content/server': resolve('./server/content-v2'),
},
content: {
@@ -272,12 +336,8 @@ export default defineNuxtConfig({
},
// v2 redirects
- '/docs/seo-utils/guides/redirect-canonical': {
- redirect: {
- to: '/docs/seo-utils/guides/canonical-url',
- statusCode: 301,
- },
- },
+ '/docs/seo-utils/guides/redirect-canonical': { redirect: { to: '/docs/seo-utils/guides/canonical-url', statusCode: 301 } },
+
'/docs/sitemap/getting-started/faq': { redirect: { to: '/docs/sitemap/getting-started/troubleshooting', statusCode: 301 } },
'/docs/sitemap/integrations/robots': { redirect: { to: '/docs/sitemap/getting-started/installation', statusCode: 301 } },
'/docs/sitemap/guides/lastmod': { redirect: { to: '/docs/sitemap/guides/loc-data', statusCode: 301 } },
@@ -335,6 +395,18 @@ export default defineNuxtConfig({
strictNuxtContentPaths: true,
},
+ icon: {
+ customCollections: [{
+ prefix: 'custom',
+ dir: resolve('./app/assets/icons'),
+ }],
+ // clientBundle: {
+ // scan: true,
+ // includeCustomCollections: true,
+ // },
+ // provider: 'iconify',
+ },
+
app: {
pageTransition: {
name: 'page',
@@ -350,14 +422,6 @@ export default defineNuxtConfig({
templateParams: {
separator: 'ยท',
},
- link: [
- { rel: 'preconnect', href: 'https://fonts.googleapis.com' },
- { rel: 'preconnect', href: 'https://fonts.gstatic.com', crossorigin: 'anonymous' },
- {
- rel: 'stylesheet',
- href: 'https://fonts.googleapis.com/css2?family=Inter:wght@300;500;700&family=Plus+Jakarta+Sans:wght@600&display=swap',
- },
- ],
bodyAttrs: {
class: 'antialiased font-sans text-gray-700 dark:text-gray-200 bg-white dark:bg-gray-900',
diff --git a/docs/package.json b/docs/package.json
index 3fd62b6f..fcd14e9d 100755
--- a/docs/package.json
+++ b/docs/package.json
@@ -23,7 +23,7 @@
"@inspira-ui/plugins": "^0.0.1",
"@nuxt/content": "^3.0.0-alpha.1",
"@nuxt/devtools": "1.6.0",
- "@nuxt/fonts": "^0.10.0",
+ "@nuxt/fonts": "^0.10.2",
"@nuxt/image": "^1.8.1",
"@nuxt/scripts": "^0.9.5",
"@nuxt/ui": "^3.0.0-alpha.6",
@@ -40,12 +40,18 @@
"nuxt-build-cache": "^0.1.1",
"nuxt-content-twoslash": "^0.1.1",
"nuxt-lodash": "^2.5.3",
+ "nuxt-rebundle": "^0.0.2",
"octokit": "^4.0.2",
"ofetch": "^1.4.1",
"radix-vue": "^1.9.7",
- "shiki": "^1.22.0",
+ "shiki": "^1.22.1",
"shiki-transformer-color-highlight": "^0.2.0",
"tailwind-merge": "^2.5.4",
- "tailwindcss-animate": "^1.0.7"
+ "tailwindcss-animate": "^1.0.7",
+ "wrangler": "^3.83.0"
+ },
+ "dependencies": {
+ "@nuxthub/core": "^0.7.37",
+ "sponsorkit": "^0.15.5"
}
}
diff --git a/docs/public/fonts/HubotSans-Black.woff2 b/docs/public/fonts/HubotSans-Black.woff2
new file mode 100644
index 00000000..5b68c1d4
Binary files /dev/null and b/docs/public/fonts/HubotSans-Black.woff2 differ
diff --git a/docs/public/fonts/HubotSans-BlackItalic.woff2 b/docs/public/fonts/HubotSans-BlackItalic.woff2
new file mode 100644
index 00000000..ec0d285a
Binary files /dev/null and b/docs/public/fonts/HubotSans-BlackItalic.woff2 differ
diff --git a/docs/public/fonts/HubotSans-Bold.woff2 b/docs/public/fonts/HubotSans-Bold.woff2
new file mode 100644
index 00000000..bda3db2c
Binary files /dev/null and b/docs/public/fonts/HubotSans-Bold.woff2 differ
diff --git a/docs/public/fonts/HubotSans-BoldItalic.woff2 b/docs/public/fonts/HubotSans-BoldItalic.woff2
new file mode 100644
index 00000000..c53405df
Binary files /dev/null and b/docs/public/fonts/HubotSans-BoldItalic.woff2 differ
diff --git a/docs/public/fonts/HubotSans-ExtraBold.woff2 b/docs/public/fonts/HubotSans-ExtraBold.woff2
new file mode 100644
index 00000000..6e91ab5c
Binary files /dev/null and b/docs/public/fonts/HubotSans-ExtraBold.woff2 differ
diff --git a/docs/public/fonts/HubotSans-ExtraBoldItalic.woff2 b/docs/public/fonts/HubotSans-ExtraBoldItalic.woff2
new file mode 100644
index 00000000..4e5a9565
Binary files /dev/null and b/docs/public/fonts/HubotSans-ExtraBoldItalic.woff2 differ
diff --git a/docs/public/fonts/HubotSans-ExtraLight.woff2 b/docs/public/fonts/HubotSans-ExtraLight.woff2
new file mode 100644
index 00000000..1172db76
Binary files /dev/null and b/docs/public/fonts/HubotSans-ExtraLight.woff2 differ
diff --git a/docs/public/fonts/HubotSans-ExtraLightItalic.woff2 b/docs/public/fonts/HubotSans-ExtraLightItalic.woff2
new file mode 100644
index 00000000..f3403800
Binary files /dev/null and b/docs/public/fonts/HubotSans-ExtraLightItalic.woff2 differ
diff --git a/docs/public/fonts/HubotSans-Italic.woff2 b/docs/public/fonts/HubotSans-Italic.woff2
new file mode 100644
index 00000000..93f2f550
Binary files /dev/null and b/docs/public/fonts/HubotSans-Italic.woff2 differ
diff --git a/docs/public/fonts/HubotSans-Light.woff2 b/docs/public/fonts/HubotSans-Light.woff2
new file mode 100644
index 00000000..28495e5e
Binary files /dev/null and b/docs/public/fonts/HubotSans-Light.woff2 differ
diff --git a/docs/public/fonts/HubotSans-LightItalic.woff2 b/docs/public/fonts/HubotSans-LightItalic.woff2
new file mode 100644
index 00000000..bc561602
Binary files /dev/null and b/docs/public/fonts/HubotSans-LightItalic.woff2 differ
diff --git a/docs/public/fonts/HubotSans-Medium.woff2 b/docs/public/fonts/HubotSans-Medium.woff2
new file mode 100644
index 00000000..cfcd3251
Binary files /dev/null and b/docs/public/fonts/HubotSans-Medium.woff2 differ
diff --git a/docs/public/fonts/HubotSans-MediumItalic.woff2 b/docs/public/fonts/HubotSans-MediumItalic.woff2
new file mode 100644
index 00000000..dffe1462
Binary files /dev/null and b/docs/public/fonts/HubotSans-MediumItalic.woff2 differ
diff --git a/docs/public/fonts/HubotSans-Regular.woff2 b/docs/public/fonts/HubotSans-Regular.woff2
new file mode 100644
index 00000000..5c056807
Binary files /dev/null and b/docs/public/fonts/HubotSans-Regular.woff2 differ
diff --git a/docs/public/fonts/HubotSans-SemiBold.woff2 b/docs/public/fonts/HubotSans-SemiBold.woff2
new file mode 100644
index 00000000..17143251
Binary files /dev/null and b/docs/public/fonts/HubotSans-SemiBold.woff2 differ
diff --git a/docs/public/fonts/HubotSans-SemiBoldItalic.woff2 b/docs/public/fonts/HubotSans-SemiBoldItalic.woff2
new file mode 100644
index 00000000..b0be7d0c
Binary files /dev/null and b/docs/public/fonts/HubotSans-SemiBoldItalic.woff2 differ
diff --git a/docs/public/fonts/HubotSansCondensed-Black.woff2 b/docs/public/fonts/HubotSansCondensed-Black.woff2
new file mode 100644
index 00000000..9bd31919
Binary files /dev/null and b/docs/public/fonts/HubotSansCondensed-Black.woff2 differ
diff --git a/docs/public/fonts/HubotSansCondensed-BlackItalic.woff2 b/docs/public/fonts/HubotSansCondensed-BlackItalic.woff2
new file mode 100644
index 00000000..2ed4c8b6
Binary files /dev/null and b/docs/public/fonts/HubotSansCondensed-BlackItalic.woff2 differ
diff --git a/docs/public/fonts/HubotSansCondensed-Bold.woff2 b/docs/public/fonts/HubotSansCondensed-Bold.woff2
new file mode 100644
index 00000000..873382d1
Binary files /dev/null and b/docs/public/fonts/HubotSansCondensed-Bold.woff2 differ
diff --git a/docs/public/fonts/HubotSansCondensed-BoldItalic.woff2 b/docs/public/fonts/HubotSansCondensed-BoldItalic.woff2
new file mode 100644
index 00000000..11ecf048
Binary files /dev/null and b/docs/public/fonts/HubotSansCondensed-BoldItalic.woff2 differ
diff --git a/docs/public/fonts/HubotSansCondensed-ExtraBold.woff2 b/docs/public/fonts/HubotSansCondensed-ExtraBold.woff2
new file mode 100644
index 00000000..81e9cf2c
Binary files /dev/null and b/docs/public/fonts/HubotSansCondensed-ExtraBold.woff2 differ
diff --git a/docs/public/fonts/HubotSansCondensed-ExtraBoldItalic.woff2 b/docs/public/fonts/HubotSansCondensed-ExtraBoldItalic.woff2
new file mode 100644
index 00000000..d94bf8f3
Binary files /dev/null and b/docs/public/fonts/HubotSansCondensed-ExtraBoldItalic.woff2 differ
diff --git a/docs/public/fonts/HubotSansCondensed-ExtraLight.woff2 b/docs/public/fonts/HubotSansCondensed-ExtraLight.woff2
new file mode 100644
index 00000000..93793d5c
Binary files /dev/null and b/docs/public/fonts/HubotSansCondensed-ExtraLight.woff2 differ
diff --git a/docs/public/fonts/HubotSansCondensed-ExtraLightItalic.woff2 b/docs/public/fonts/HubotSansCondensed-ExtraLightItalic.woff2
new file mode 100644
index 00000000..55656557
Binary files /dev/null and b/docs/public/fonts/HubotSansCondensed-ExtraLightItalic.woff2 differ
diff --git a/docs/public/fonts/HubotSansCondensed-Italic.woff2 b/docs/public/fonts/HubotSansCondensed-Italic.woff2
new file mode 100644
index 00000000..b416d82f
Binary files /dev/null and b/docs/public/fonts/HubotSansCondensed-Italic.woff2 differ
diff --git a/docs/public/fonts/HubotSansCondensed-Light.woff2 b/docs/public/fonts/HubotSansCondensed-Light.woff2
new file mode 100644
index 00000000..2a6b79a8
Binary files /dev/null and b/docs/public/fonts/HubotSansCondensed-Light.woff2 differ
diff --git a/docs/public/fonts/HubotSansCondensed-LightItalic.woff2 b/docs/public/fonts/HubotSansCondensed-LightItalic.woff2
new file mode 100644
index 00000000..dd9c9cf6
Binary files /dev/null and b/docs/public/fonts/HubotSansCondensed-LightItalic.woff2 differ
diff --git a/docs/public/fonts/HubotSansCondensed-Medium.woff2 b/docs/public/fonts/HubotSansCondensed-Medium.woff2
new file mode 100644
index 00000000..3d58451a
Binary files /dev/null and b/docs/public/fonts/HubotSansCondensed-Medium.woff2 differ
diff --git a/docs/public/fonts/HubotSansCondensed-MediumItalic.woff2 b/docs/public/fonts/HubotSansCondensed-MediumItalic.woff2
new file mode 100644
index 00000000..50341f5b
Binary files /dev/null and b/docs/public/fonts/HubotSansCondensed-MediumItalic.woff2 differ
diff --git a/docs/public/fonts/HubotSansCondensed-Regular.woff2 b/docs/public/fonts/HubotSansCondensed-Regular.woff2
new file mode 100644
index 00000000..1580ee68
Binary files /dev/null and b/docs/public/fonts/HubotSansCondensed-Regular.woff2 differ
diff --git a/docs/public/fonts/HubotSansCondensed-SemiBold.woff2 b/docs/public/fonts/HubotSansCondensed-SemiBold.woff2
new file mode 100644
index 00000000..fa701994
Binary files /dev/null and b/docs/public/fonts/HubotSansCondensed-SemiBold.woff2 differ
diff --git a/docs/public/fonts/HubotSansCondensed-SemiBoldItalic.woff2 b/docs/public/fonts/HubotSansCondensed-SemiBoldItalic.woff2
new file mode 100644
index 00000000..7560dea3
Binary files /dev/null and b/docs/public/fonts/HubotSansCondensed-SemiBoldItalic.woff2 differ
diff --git a/docs/public/fonts/HubotSansExpanded-Black.woff2 b/docs/public/fonts/HubotSansExpanded-Black.woff2
new file mode 100644
index 00000000..986ef500
Binary files /dev/null and b/docs/public/fonts/HubotSansExpanded-Black.woff2 differ
diff --git a/docs/public/fonts/HubotSansExpanded-BlackItalic.woff2 b/docs/public/fonts/HubotSansExpanded-BlackItalic.woff2
new file mode 100644
index 00000000..a72a530a
Binary files /dev/null and b/docs/public/fonts/HubotSansExpanded-BlackItalic.woff2 differ
diff --git a/docs/public/fonts/HubotSansExpanded-Bold.woff2 b/docs/public/fonts/HubotSansExpanded-Bold.woff2
new file mode 100644
index 00000000..409c9a0d
Binary files /dev/null and b/docs/public/fonts/HubotSansExpanded-Bold.woff2 differ
diff --git a/docs/public/fonts/HubotSansExpanded-BoldItalic.woff2 b/docs/public/fonts/HubotSansExpanded-BoldItalic.woff2
new file mode 100644
index 00000000..9c827830
Binary files /dev/null and b/docs/public/fonts/HubotSansExpanded-BoldItalic.woff2 differ
diff --git a/docs/public/fonts/HubotSansExpanded-ExtraBold.woff2 b/docs/public/fonts/HubotSansExpanded-ExtraBold.woff2
new file mode 100644
index 00000000..59979d2d
Binary files /dev/null and b/docs/public/fonts/HubotSansExpanded-ExtraBold.woff2 differ
diff --git a/docs/public/fonts/HubotSansExpanded-ExtraBoldItalic.woff2 b/docs/public/fonts/HubotSansExpanded-ExtraBoldItalic.woff2
new file mode 100644
index 00000000..9a8346eb
Binary files /dev/null and b/docs/public/fonts/HubotSansExpanded-ExtraBoldItalic.woff2 differ
diff --git a/docs/public/fonts/HubotSansExpanded-ExtraLight.woff2 b/docs/public/fonts/HubotSansExpanded-ExtraLight.woff2
new file mode 100644
index 00000000..b7209ab9
Binary files /dev/null and b/docs/public/fonts/HubotSansExpanded-ExtraLight.woff2 differ
diff --git a/docs/public/fonts/HubotSansExpanded-ExtraLightItalic.woff2 b/docs/public/fonts/HubotSansExpanded-ExtraLightItalic.woff2
new file mode 100644
index 00000000..0af2bd26
Binary files /dev/null and b/docs/public/fonts/HubotSansExpanded-ExtraLightItalic.woff2 differ
diff --git a/docs/public/fonts/HubotSansExpanded-Italic.woff2 b/docs/public/fonts/HubotSansExpanded-Italic.woff2
new file mode 100644
index 00000000..26d3753f
Binary files /dev/null and b/docs/public/fonts/HubotSansExpanded-Italic.woff2 differ
diff --git a/docs/public/fonts/HubotSansExpanded-Light.woff2 b/docs/public/fonts/HubotSansExpanded-Light.woff2
new file mode 100644
index 00000000..a8304f4b
Binary files /dev/null and b/docs/public/fonts/HubotSansExpanded-Light.woff2 differ
diff --git a/docs/public/fonts/HubotSansExpanded-LightItalic.woff2 b/docs/public/fonts/HubotSansExpanded-LightItalic.woff2
new file mode 100644
index 00000000..b45656ae
Binary files /dev/null and b/docs/public/fonts/HubotSansExpanded-LightItalic.woff2 differ
diff --git a/docs/public/fonts/HubotSansExpanded-Medium.woff2 b/docs/public/fonts/HubotSansExpanded-Medium.woff2
new file mode 100644
index 00000000..0f90b1a8
Binary files /dev/null and b/docs/public/fonts/HubotSansExpanded-Medium.woff2 differ
diff --git a/docs/public/fonts/HubotSansExpanded-MediumItalic.woff2 b/docs/public/fonts/HubotSansExpanded-MediumItalic.woff2
new file mode 100644
index 00000000..0b5c93a1
Binary files /dev/null and b/docs/public/fonts/HubotSansExpanded-MediumItalic.woff2 differ
diff --git a/docs/public/fonts/HubotSansExpanded-Regular.woff2 b/docs/public/fonts/HubotSansExpanded-Regular.woff2
new file mode 100644
index 00000000..e3915483
Binary files /dev/null and b/docs/public/fonts/HubotSansExpanded-Regular.woff2 differ
diff --git a/docs/public/fonts/HubotSansExpanded-SemiBold.woff2 b/docs/public/fonts/HubotSansExpanded-SemiBold.woff2
new file mode 100644
index 00000000..4de6cf70
Binary files /dev/null and b/docs/public/fonts/HubotSansExpanded-SemiBold.woff2 differ
diff --git a/docs/public/fonts/HubotSansExpanded-SemiBoldItalic.woff2 b/docs/public/fonts/HubotSansExpanded-SemiBoldItalic.woff2
new file mode 100644
index 00000000..f8455423
Binary files /dev/null and b/docs/public/fonts/HubotSansExpanded-SemiBoldItalic.woff2 differ
diff --git a/docs/public/fonts/HubotSans[slnt,wdth,wght].woff2 b/docs/public/fonts/HubotSans[slnt,wdth,wght].woff2
new file mode 100644
index 00000000..c8281213
Binary files /dev/null and b/docs/public/fonts/HubotSans[slnt,wdth,wght].woff2 differ
diff --git a/docs/public/nuxt-x-share.png b/docs/public/nuxt-x-share.png
new file mode 100644
index 00000000..01234336
Binary files /dev/null and b/docs/public/nuxt-x-share.png differ
diff --git a/docs/server/api/feedback-thumbs.post.ts b/docs/server/api/feedback-thumbs.post.ts
new file mode 100644
index 00000000..3b4b98fb
--- /dev/null
+++ b/docs/server/api/feedback-thumbs.post.ts
@@ -0,0 +1,25 @@
+import { appStorage } from '~~/server/storage'
+import { type ThumbsFeedbackResponse, ThumbsFeedbackSchema } from '~~/types/schemas'
+import { getHeader } from 'h3'
+import { parseURL } from 'ufo'
+
+export default defineEventHandler>(async (e) => {
+ const body = await readValidatedBody(e, ThumbsFeedbackSchema.safeParse)
+ const { thumbs } = body.data
+ // get refferer header
+ const referrer = parseURL(getHeader(e, 'Referer')).pathname
+
+ const key = `/feedback/thumbs/${referrer}`
+ const stats = await appStorage().get(key) || {
+ up: 0,
+ down: 0,
+ }
+ // increment
+ stats[thumbs]++
+ // save
+ await appStorage().set(key, stats)
+ return {
+ thumbs,
+ stats,
+ }
+})
diff --git a/docs/server/api/feedback.post.ts b/docs/server/api/feedback.post.ts
new file mode 100644
index 00000000..e197e519
--- /dev/null
+++ b/docs/server/api/feedback.post.ts
@@ -0,0 +1,13 @@
+import { appStorage } from '~~/server/storage'
+import { CommentFeedbackSchema } from '~~/types/schemas'
+import { getHeader } from 'h3'
+import { hash } from 'ohash'
+import { parseURL } from 'ufo'
+
+export default defineEventHandler(async (e) => {
+ const body = await readValidatedBody(e, CommentFeedbackSchema.safeParse)
+ const { comment } = body.data
+ const referrer = parseURL(getHeader(e, 'Referer')).pathname
+ await appStorage().set(`feedback:${referrer}:${hash(comment)}`, comment)
+ return 'OK'
+})
diff --git a/docs/server/api/github/[repo]/commit-count.get.ts b/docs/server/api/github/[repo]/commit-count.get.ts
index ee7ae2de..6ad23208 100644
--- a/docs/server/api/github/[repo]/commit-count.get.ts
+++ b/docs/server/api/github/[repo]/commit-count.get.ts
@@ -5,11 +5,11 @@ export default defineCachedEventHandler(async (e) => {
if (!repo?.startsWith('nuxt') && !repo?.startsWith('harlan-zw/')) {
throw new Error(`Invalid repo ${repo}`)
}
- const { githubToken } = useRuntimeConfig()
+ const { githubAccessToken } = useRuntimeConfig()
const pager = await $fetch.raw(`https://api.github.com/repos/${repo}/commits?sha=main&per_page=1&page=1`, {
headers: {
'Accept': 'application/vnd.github+json',
- 'Authorization': `token ${githubToken}`,
+ 'Authorization': `token ${githubAccessToken}`,
'X-GitHub-Api-Version': '2022-11-28',
},
})
diff --git a/docs/server/api/github/[repo]/issues-closed.get.ts b/docs/server/api/github/[repo]/issues-closed.get.ts
index bb009f34..2f3b11c1 100644
--- a/docs/server/api/github/[repo]/issues-closed.get.ts
+++ b/docs/server/api/github/[repo]/issues-closed.get.ts
@@ -5,7 +5,7 @@ export default defineCachedEventHandler(async (e) => {
if (!repo?.startsWith('nuxt') && !repo?.startsWith('harlan-zw/')) {
throw new Error(`Invalid repo ${repo}`)
}
- const { githubToken } = useRuntimeConfig()
+ const { githubAccessToken } = useRuntimeConfig()
const pager = await $fetch.raw(`https://api.github.com/repos/${repo}/issues`, {
query: {
state: 'closed',
@@ -15,7 +15,7 @@ export default defineCachedEventHandler(async (e) => {
},
headers: {
'Accept': 'application/vnd.github+json',
- 'Authorization': `token ${githubToken}`,
+ 'Authorization': `token ${githubAccessToken}`,
'X-GitHub-Api-Version': '2022-11-28',
},
})
diff --git a/docs/server/api/github/[repo]/releases.get.ts b/docs/server/api/github/[repo]/releases.get.ts
index 94f32074..7203d7c8 100644
--- a/docs/server/api/github/[repo]/releases.get.ts
+++ b/docs/server/api/github/[repo]/releases.get.ts
@@ -5,11 +5,11 @@ export default defineCachedEventHandler(async (e) => {
if (!repo?.startsWith('nuxt') && !repo?.startsWith('harlan-zw/')) {
throw new Error(`Invalid repo ${repo}`)
}
- const { githubToken } = useRuntimeConfig()
+ const { githubAccessToken } = useRuntimeConfig()
const res = await $fetch(`https://api.github.com/repos/${repo}/releases`, {
headers: {
'Accept': 'application/vnd.github+json',
- 'Authorization': `token ${githubToken}`,
+ 'Authorization': `token ${githubAccessToken}`,
'X-GitHub-Api-Version': '2022-11-28',
},
})
diff --git a/docs/server/api/github/[repo]/stars.get.ts b/docs/server/api/github/[repo]/stars.get.ts
index 0fab75b4..ed6ac369 100644
--- a/docs/server/api/github/[repo]/stars.get.ts
+++ b/docs/server/api/github/[repo]/stars.get.ts
@@ -5,11 +5,11 @@ export default defineCachedEventHandler(async (e) => {
if (!repo?.startsWith('nuxt') && !repo?.startsWith('harlan-zw/')) {
throw new Error(`Invalid repo ${repo}`)
}
- const { githubToken } = useRuntimeConfig()
+ const { githubAccessToken } = useRuntimeConfig()
const res = await $fetch(`https://api.github.com/repos/${repo}`, {
headers: {
'Accept': 'application/vnd.github+json',
- 'Authorization': `token ${githubToken}`,
+ 'Authorization': `token ${githubAccessToken}`,
'X-GitHub-Api-Version': '2022-11-28',
},
})
diff --git a/docs/server/api/github/auth/callback.ts b/docs/server/api/github/auth/callback.ts
new file mode 100644
index 00000000..856d1599
--- /dev/null
+++ b/docs/server/api/github/auth/callback.ts
@@ -0,0 +1,33 @@
+import { getQuery, getRequestHost } from 'h3'
+import {appStorage} from "~~/server/storage";
+
+export default defineEventHandler(async (e) => {
+ const query = getQuery(e)
+ const code = query.code as string
+
+ if (!code) {
+ throw new Error('No code provided')
+ }
+
+ const host = getRequestHost(e, { xForwardedHost: true })
+ const redirectUri = `http${host.includes('localhost') ? '' : 's'}://${host}/api/github/auth/callback`
+ const { githubAuthClientId, githubAuthClientSecret } = useRuntimeConfig(e)
+
+ // Exchange the authorization code for an access token
+ const tokenResponse = await $fetch('https://github.com/login/oauth/access_token', {
+ method: 'POST',
+ headers: {
+ Accept: 'application/json',
+ },
+ body: {
+ client_id: githubAuthClientId,
+ client_secret: githubAuthClientSecret,
+ code,
+ redirect_uri: redirectUri,
+ },
+ })
+
+ // store in nuxt hub kv
+ await appStorage().set('github:token', tokenResponse.access_token)
+ return 'OK'
+})
diff --git a/docs/server/api/github/auth/redirect.ts b/docs/server/api/github/auth/redirect.ts
new file mode 100644
index 00000000..e2ad1989
--- /dev/null
+++ b/docs/server/api/github/auth/redirect.ts
@@ -0,0 +1,13 @@
+import { getRequestHost } from 'h3'
+import { withQuery } from 'ufo'
+
+export default defineEventHandler(async (e) => {
+ const host = getRequestHost(e, { xForwardedHost: true })
+ const redirectUri = `http${host.includes('localhost') ? '' : 's'}://${host}/api/github/auth/callback`
+ const url = withQuery('https://github.com/login/oauth/authorize', {
+ client_id: useRuntimeConfig(e).githubAuthClientId,
+ redirect_uri: redirectUri,
+ scope: 'read:user,read:org',
+ })
+ return sendRedirect(e, url)
+})
diff --git a/docs/server/api/github/sponsors.ts b/docs/server/api/github/sponsors.ts
new file mode 100644
index 00000000..44f3125e
--- /dev/null
+++ b/docs/server/api/github/sponsors.ts
@@ -0,0 +1,51 @@
+import { appStorage } from '~~/server/storage'
+import { fetchSponsors } from 'sponsorkit'
+
+export default defineCachedEventHandler(async () => {
+ const token = await hubKV().get('github:token') || useRuntimeConfig().githubAuthToken
+ if (!token) {
+ return []
+ }
+ const _sponsors = await fetchSponsors({
+ github: {
+ login: 'harlan-zw',
+ token,
+ },
+ force: true, // use nitro cache
+ }).catch((e) => {
+ console.error(e)
+ return []
+ })
+
+ const sponsors = _sponsors.map((s) => {
+ if (s.sponsor.name === 'Kintell-labs') {
+ s.sponsor.name = 'Kintell'
+ s.sponsor.websiteUrl = 'https://kintell.com'
+ }
+ if (s.sponsor.name === 'Massive Monster') {
+ s.sponsor.websiteUrl = 'https://massivemonster.co'
+ }
+ return s
+ })
+
+ return sponsors.reduce((acc, sponsor) => {
+ if (sponsor.monthlyDollars >= 25 && sponsor.monthlyDollars < 50) {
+ acc.$25.push(sponsor)
+ }
+ else if (sponsor.monthlyDollars > 50) {
+ acc.$50.push(sponsor)
+ }
+ else {
+ acc.others.push(sponsor)
+ }
+ return acc
+ }, {
+ others: [],
+ $25: [],
+ $50: [],
+ })
+}, {
+ // last for 1 day
+ maxAge: 60 * 60 * 24,
+ swr: true,
+})
diff --git a/docs/server/api/pro-waitlist-feedback.post.ts b/docs/server/api/pro-waitlist-feedback.post.ts
new file mode 100644
index 00000000..18843771
--- /dev/null
+++ b/docs/server/api/pro-waitlist-feedback.post.ts
@@ -0,0 +1,10 @@
+import { appStorage } from '~~/server/storage'
+import { ProWaitlistFeedbackSchema } from '~~/types/schemas'
+import { hash } from 'ohash'
+
+export default defineEventHandler(async (e) => {
+ const body = await readValidatedBody(e, ProWaitlistFeedbackSchema.safeParse)
+ const { comment } = body.data
+ await appStorage().set(`feedback:pro:${hash(comment)}`, comment)
+ return 'OK'
+})
diff --git a/docs/server/api/pro-waitlist.post.ts b/docs/server/api/pro-waitlist.post.ts
new file mode 100644
index 00000000..1b71ef22
--- /dev/null
+++ b/docs/server/api/pro-waitlist.post.ts
@@ -0,0 +1,27 @@
+import { ProEmailSchema, type ThumbsFeedbackResponse } from '~~/types/schemas'
+
+export default defineEventHandler>(async (e) => {
+ const body = await readValidatedBody(e, ProEmailSchema.safeParse)
+ const { email } = body.data
+ const key = useRuntimeConfig().emailOctopusToken
+ try {
+ await $fetch('https://api.emailoctopus.com/lists/6c462a3a-91b1-11ef-bd09-15cf0f9f3feb/contacts', {
+ method: 'PUT',
+ headers: {
+ 'Authorization': `Bearer ${key}`,
+ 'content-type': 'application/json',
+ },
+ body: JSON.stringify({
+ email_address: email,
+ status: 'subscribed',
+ }),
+ })
+ return 'OK'
+ }
+ catch {
+ return sendError(e, createError({
+ statusCode: 500,
+ message: 'Failed to subscribe email',
+ }))
+ }
+})
diff --git a/docs/server/api/robots-txt.ts b/docs/server/api/robots-txt.ts
deleted file mode 100644
index 46bdff83..00000000
--- a/docs/server/api/robots-txt.ts
+++ /dev/null
@@ -1,6 +0,0 @@
-export default defineCachedEventHandler(async () => {
- return await $fetch('https://nuxtseo.com/robots.txt')
-}, {
- // last for 1 day
- maxAge: 60 * 60 * 24,
-})
diff --git a/docs/server/api/sitemap-xml.ts b/docs/server/api/sitemap-xml.ts
deleted file mode 100644
index 83adabf3..00000000
--- a/docs/server/api/sitemap-xml.ts
+++ /dev/null
@@ -1,6 +0,0 @@
-export default defineCachedEventHandler(async () => {
- return await $fetch('https://nuxtseo.com/sitemap.xml')
-}, {
- // last for 1 day
- maxAge: 60 * 60 * 24,
-})
diff --git a/docs/server/api/stats.ts b/docs/server/api/stats.ts
index c3088c1d..5e38072f 100644
--- a/docs/server/api/stats.ts
+++ b/docs/server/api/stats.ts
@@ -53,11 +53,7 @@ export default defineCachedEventHandler(async (e) => {
return group
}, [])
// first of each group make an object, sort so we get the oldest version
- const versions = Object.values(versionGroups).sort(customSortSemver).map(v => v[0])
- // ensure v prefix
- .map(v => v.startsWith('v') ? v : `v${v}`)
- // do a locale sort in reverse
- .sort((a, b) => b.localeCompare(a))
+ const versions = Object.values(versionGroups).sort(customSortSemver).map(v => v[0]).map(v => v.startsWith('v') ? v : `v${v}`).sort((a, b) => b.localeCompare(a))
resolve({
slug: m.slug,
createdAt: stats?.createdAt,
diff --git a/docs/server/middleware/redirects.ts b/docs/server/middleware/redirects.ts
index 30671d4a..cac66e78 100644
--- a/docs/server/middleware/redirects.ts
+++ b/docs/server/middleware/redirects.ts
@@ -7,7 +7,7 @@ export default defineEventHandler((e) => {
if (path.startsWith('/docs/experiments')) {
return sendRedirect(e, `/docs/seo-utils${path.slice('/docs/experiments'.length)}`, 301)
}
- const slugs = modules.map((m) => m.slug)
+ const slugs = modules.map(m => m.slug)
// get first segment
const first = path.split('/')[1]
const rest = path.split('/').slice(2).join('/')
diff --git a/docs/server/storage.ts b/docs/server/storage.ts
new file mode 100644
index 00000000..17aa7afa
--- /dev/null
+++ b/docs/server/storage.ts
@@ -0,0 +1 @@
+export const appStorage = () => hubKV() // stub for unstorage if needed
diff --git a/docs/til.md b/docs/til.md
new file mode 100644
index 00000000..47b8d2d2
--- /dev/null
+++ b/docs/til.md
@@ -0,0 +1,9 @@
+Learnings
+
+- MDC component everywhere
+- reusable templates
+- custom mdc languages
+
+Upstream
+- nitro errors when building
+-
diff --git a/docs/types/schemas.ts b/docs/types/schemas.ts
new file mode 100644
index 00000000..3fd9eb5d
--- /dev/null
+++ b/docs/types/schemas.ts
@@ -0,0 +1,31 @@
+import { z } from 'zod'
+
+export interface ThumbsFeedbackResponse {
+ thumbs: 'up' | 'down'
+ stats: {
+ up: number
+ down: number
+ }
+}
+
+export const ThumbsFeedbackSchema = z.object({
+ thumbs: z.enum(['up', 'down']),
+})
+
+export const CommentFeedbackSchema = z.object({
+ comment: z.string().min(3, 'Must be at least 3 characters'),
+})
+
+export type CommentFeedbackSchemaOutput = z.output
+
+export const ProEmailSchema = z.object({
+ email: z.string().email('Invalid email address'),
+})
+
+export type ProEmailSchemaOutput = z.output
+
+export const ProWaitlistFeedbackSchema = z.object({
+ comment: z.string().min(3, 'Must be at least 3 characters'),
+})
+
+export type ProWaitlistFeedbackSchemaOutput = z.output
diff --git a/package.json b/package.json
index 0c267993..ce4e458a 100755
--- a/package.json
+++ b/package.json
@@ -91,5 +91,10 @@
"resolutions": {},
"scripts": {},
"devDependencies": {}
+ },
+ "pnpm": {
+ "patchedDependencies": {
+ "@nuxt/ui": "patches/@nuxt__ui.patch"
+ }
}
}
diff --git a/patches/@nuxt__ui.patch b/patches/@nuxt__ui.patch
new file mode 100644
index 00000000..311dbcde
--- /dev/null
+++ b/patches/@nuxt__ui.patch
@@ -0,0 +1,13 @@
+diff --git a/dist/runtime/components/Link.vue b/dist/runtime/components/Link.vue
+index aaf57eeff08b17cefc8dd8231ccd7fb859f665ad..9c7dd1d539c068d53a6d9b20da2d6bd1527c354d 100644
+--- a/dist/runtime/components/Link.vue
++++ b/dist/runtime/components/Link.vue
+@@ -4,7 +4,7 @@ import { tv } from 'tailwind-variants'
+ import type { AppConfig } from '@nuxt/schema'
+ import _appConfig from '#build/app.config'
+ import theme from '#build/ui/link'
+-import type { NuxtLinkProps } from '#app'
++import type { NuxtLinkProps } from 'nuxt/app'
+
+ const appConfig = _appConfig as AppConfig & { ui: { link: Partial } }
+
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 847f6cb2..22093657 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -12,53 +12,58 @@ overrides:
vue: 3.5.12
vue-router: 4.4.5
+patchedDependencies:
+ '@nuxt/ui':
+ hash: wpizn6d6f5ugzi2ndk7duieo4u
+ path: patches/@nuxt__ui.patch
+
importers:
.:
dependencies:
'@nuxt/kit':
specifier: 3.13.2
- version: 3.13.2(magicast@0.3.5)(rollup@3.29.5)(webpack-sources@3.2.3)
+ version: 3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
'@nuxtjs/robots':
specifier: ^4.1.9
- version: 4.1.9(magicast@0.3.5)(rollup@3.29.5)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
+ version: 4.1.9(magicast@0.3.5)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
'@nuxtjs/sitemap':
specifier: ^6.1.2
- version: 6.1.2(h3@1.13.0)(magicast@0.3.5)(rollup@3.29.5)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
+ version: 6.1.2(h3@1.13.0)(magicast@0.3.5)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
nuxt-link-checker:
specifier: ^3.1.2
- version: 3.1.2(magicast@0.3.5)(rollup@3.29.5)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
+ version: 3.1.2(magicast@0.3.5)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
nuxt-og-image:
specifier: ^3.0.4
- version: 3.0.6(magicast@0.3.5)(rollup@3.29.5)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
+ version: 3.0.6(magicast@0.3.5)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
nuxt-schema-org:
specifier: ^3.4.1
- version: 3.4.1(magicast@0.3.5)(rollup@3.29.5)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
+ version: 3.4.1(magicast@0.3.5)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
nuxt-seo-utils:
specifier: ^5.0.1
- version: 5.0.1(magicast@0.3.5)(rollup@3.29.5)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
+ version: 5.0.1(magicast@0.3.5)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
nuxt-site-config:
specifier: ^2.2.18
- version: 2.2.18(magicast@0.3.5)(rollup@3.29.5)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
+ version: 2.2.18(magicast@0.3.5)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
nuxt-site-config-kit:
specifier: ^2.2.18
- version: 2.2.18(magicast@0.3.5)(rollup@3.29.5)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
+ version: 2.2.18(magicast@0.3.5)(rollup@4.24.0)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
devDependencies:
'@antfu/eslint-config':
specifier: ^3.8.0
- version: 3.8.0(@typescript-eslint/utils@8.10.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(@vue/compiler-sfc@3.5.12)(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)(vitest@2.1.3(@types/node@22.7.7)(happy-dom@15.7.4)(lightningcss@1.27.0)(terser@5.36.0))
+ version: 3.8.0(@typescript-eslint/utils@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(@vue/compiler-sfc@3.5.12)(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)(vitest@2.1.3(@types/node@22.7.9)(happy-dom@15.7.4)(lightningcss@1.27.0)(terser@5.36.0))
'@nuxt/module-builder':
specifier: ^0.8.4
- version: 0.8.4(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@3.29.5)(webpack-sources@3.2.3))(nuxi@3.14.0)(typescript@5.6.3)(webpack-sources@3.2.3)
+ version: 0.8.4(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3))(nuxi@3.15.0)(typescript@5.6.3)(webpack-sources@3.2.3)
'@nuxt/schema':
specifier: 3.13.2
- version: 3.13.2(rollup@3.29.5)(webpack-sources@3.2.3)
+ version: 3.13.2(rollup@4.24.0)(webpack-sources@3.2.3)
'@nuxt/test-utils':
specifier: ^3.14.3
- version: 3.14.4(@vue/test-utils@2.4.6)(h3@1.13.0)(happy-dom@15.7.4)(magicast@0.3.5)(nitropack@2.9.7(magicast@0.3.5)(webpack-sources@3.2.3))(playwright-core@1.48.1)(rollup@3.29.5)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(vitest@2.1.3(@types/node@22.7.7)(happy-dom@15.7.4)(lightningcss@1.27.0)(terser@5.36.0))(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)
+ version: 3.14.4(@vue/test-utils@2.4.6)(h3@1.13.0)(happy-dom@15.7.4)(magicast@0.3.5)(nitropack@2.9.7(magicast@0.3.5)(webpack-sources@3.2.3))(playwright-core@1.48.1)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(vitest@2.1.3(@types/node@22.7.9)(happy-dom@15.7.4)(lightningcss@1.27.0)(terser@5.36.0))(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)
'@nuxtjs/i18n':
specifier: ^8.5.5
- version: 8.5.5(magicast@0.3.5)(rollup@3.29.5)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
+ version: 8.5.5(magicast@0.3.5)(rollup@4.24.0)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
'@vue/test-utils':
specifier: ^2.4.6
version: 2.4.6
@@ -79,15 +84,22 @@ importers:
version: 2.9.7(magicast@0.3.5)(webpack-sources@3.2.3)
nuxt:
specifier: 3.13.2
- version: 3.13.2(@parcel/watcher@2.4.1)(@types/node@22.7.7)(eslint@9.13.0(jiti@2.3.3))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@3.29.5)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
+ version: 3.13.2(@parcel/watcher@2.4.1)(@types/node@22.7.9)(eslint@9.13.0(jiti@2.3.3))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.0)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
typescript:
specifier: 5.6.3
version: 5.6.3
vitest:
specifier: ^2.1.2
- version: 2.1.3(@types/node@22.7.7)(happy-dom@15.7.4)(lightningcss@1.27.0)(terser@5.36.0)
+ version: 2.1.3(@types/node@22.7.9)(happy-dom@15.7.4)(lightningcss@1.27.0)(terser@5.36.0)
docs:
+ dependencies:
+ '@nuxthub/core':
+ specifier: ^0.7.37
+ version: 0.7.37(ioredis@5.4.1)(magicast@0.3.5)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
+ sponsorkit:
+ specifier: ^0.15.5
+ version: 0.15.5
devDependencies:
'@iconify-json/carbon':
specifier: ^1.2.3
@@ -127,22 +139,22 @@ importers:
version: 3.0.0-alpha.1(magicast@0.3.5)(rollup@4.24.0)(typescript@5.6.3)(webpack-sources@3.2.3)
'@nuxt/devtools':
specifier: 1.6.0
- version: 1.6.0(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.7)(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.0)(vite@5.4.8(@types/node@22.7.9)(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.0
- version: 0.10.0(ioredis@5.4.1)(magicast@0.3.5)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
+ specifier: ^0.10.2
+ version: 0.10.2(ioredis@5.4.1)(magicast@0.3.5)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(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.0)(webpack-sources@3.2.3)
'@nuxt/scripts':
specifier: ^0.9.5
- version: 0.9.5(@nuxt/devtools@1.6.0(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.7)(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.0)(webpack@5.95.0(esbuild@0.23.1)))(@vue/compiler-core@3.5.12)(fuse.js@7.0.0)(ioredis@5.4.1)(magicast@0.3.5)(nuxt@3.13.2(@parcel/watcher@2.4.1)(@types/node@22.7.7)(eslint@9.13.0(jiti@2.3.3))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.0)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3))(postcss@8.4.47)(rollup@4.24.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.7)(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.23.1))
+ version: 0.9.5(@nuxt/devtools@1.6.0(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(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.0)(webpack@5.95.0(esbuild@0.17.19)))(@vue/compiler-core@3.5.12)(fuse.js@7.0.0)(ioredis@5.4.1)(magicast@0.3.5)(nuxt@3.13.2(@parcel/watcher@2.4.1)(@types/node@22.7.9)(eslint@9.13.0(jiti@2.3.3))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.0)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3))(postcss@8.4.47)(rollup@4.24.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.9)(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(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.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.7)(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)(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.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.9)(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(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.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.7)(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(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.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(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))
@@ -154,7 +166,7 @@ importers:
version: 2.2.6(magicast@0.3.5)(rollup@4.24.0)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
'@vueuse/nuxt':
specifier: ^11.1.0
- version: 11.1.0(magicast@0.3.5)(nuxt@3.13.2(@parcel/watcher@2.4.1)(@types/node@22.7.7)(eslint@9.13.0(jiti@2.3.3))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.0)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3))(rollup@4.24.0)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
+ version: 11.1.0(magicast@0.3.5)(nuxt@3.13.2(@parcel/watcher@2.4.1)(@types/node@22.7.9)(eslint@9.13.0(jiti@2.3.3))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.0)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3))(rollup@4.24.0)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
case-police:
specifier: ^0.7.0
version: 0.7.0
@@ -169,7 +181,7 @@ importers:
version: 0.42.0
nuxt:
specifier: 3.13.2
- version: 3.13.2(@parcel/watcher@2.4.1)(@types/node@22.7.7)(eslint@9.13.0(jiti@2.3.3))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.0)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
+ version: 3.13.2(@parcel/watcher@2.4.1)(@types/node@22.7.9)(eslint@9.13.0(jiti@2.3.3))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.0)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.9)(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.0)(webpack-sources@3.2.3)
@@ -179,6 +191,9 @@ importers:
nuxt-lodash:
specifier: ^2.5.3
version: 2.5.3(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
+ nuxt-rebundle:
+ specifier: ^0.0.2
+ version: 0.0.2(magicast@0.3.5)(nuxt@3.13.2(@parcel/watcher@2.4.1)(@types/node@22.7.9)(eslint@9.13.0(jiti@2.3.3))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.0)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3))(rollup@4.24.0)(webpack-sources@3.2.3)
octokit:
specifier: ^4.0.2
version: 4.0.2
@@ -189,8 +204,8 @@ importers:
specifier: ^1.9.7
version: 1.9.7(vue@3.5.12(typescript@5.6.3))
shiki:
- specifier: ^1.22.0
- version: 1.22.0
+ specifier: ^1.22.1
+ version: 1.22.1
shiki-transformer-color-highlight:
specifier: ^0.2.0
version: 0.2.0
@@ -200,12 +215,15 @@ importers:
tailwindcss-animate:
specifier: ^1.0.7
version: 1.0.7(tailwindcss@4.0.0-alpha.24)
+ wrangler:
+ specifier: ^3.83.0
+ version: 3.83.0(@cloudflare/workers-types@4.20241022.0)
playground:
dependencies:
nuxt:
specifier: 3.13.2
- version: 3.13.2(@parcel/watcher@2.4.1)(@types/node@22.7.7)(eslint@9.13.0(jiti@2.3.3))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.0)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.9(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
+ version: 3.13.2(@parcel/watcher@2.4.1)(@types/node@22.7.9)(eslint@9.13.0(jiti@2.3.3))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.0)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
packages:
@@ -269,6 +287,10 @@ packages:
resolution: {integrity: sha512-0xZJFNE5XMpENsgfHYTw8FbX4kv53mFLn2i3XPoq69LyhYSCBJtitaHx9QnsVTrsogI4Z3+HtEfZ2/GFPOtf5g==}
engines: {node: '>=6.9.0'}
+ '@babel/code-frame@7.25.9':
+ resolution: {integrity: sha512-z88xeGxnzehn2sqZ8UdGQEvYErF1odv2CftxInpSYJt6uHuPe9YjahKZITGs3l5LeI9d2ROG+obuDAoSlqbNfQ==}
+ engines: {node: '>=6.9.0'}
+
'@babel/compat-data@7.25.7':
resolution: {integrity: sha512-9ickoLz+hcXCeh7jrcin+/SLWm+GkxE2kTvoYyp38p4WkdFXfQJxDFGWp/YHjiKLPx06z2A7W8XKuqbReXDzsw==}
engines: {node: '>=6.9.0'}
@@ -285,6 +307,10 @@ packages:
resolution: {integrity: sha512-5Dqpl5fyV9pIAD62yK9P7fcA768uVPUyrQmqpqstHWgMma4feF1x/oFysBCVZLY5wJ2GkMUCdsNDnGZrPoR6rA==}
engines: {node: '>=6.9.0'}
+ '@babel/generator@7.25.9':
+ resolution: {integrity: sha512-omlUGkr5EaoIJrhLf9CJ0TvjBRpd9+AXRG//0GEQ9THSo8wPiTlbpy1/Ow8ZTrbXpjd9FHXfbFQx32I04ht0FA==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-annotate-as-pure@7.25.7':
resolution: {integrity: sha512-4xwU8StnqnlIhhioZf1tqnVWeQ9pvH/ujS8hRfw/WOza+/a+1qv69BWNy+oY231maTCWgKWhfBU7kDpsds6zAA==}
engines: {node: '>=6.9.0'}
@@ -307,6 +333,10 @@ packages:
resolution: {integrity: sha512-o0xCgpNmRohmnoWKQ0Ij8IdddjyBFE4T2kagL/x6M3+4zUgc+4qTOUBoNe4XxDskt1HPKO007ZPiMgLDq2s7Kw==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-module-imports@7.25.9':
+ resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-module-transforms@7.25.7':
resolution: {integrity: sha512-k/6f8dKG3yDz/qCwSM+RKovjMix563SLxQFo0UhRNo239SP6n9u5/eLtKD6EAjwta2JHJ49CsD8pms2HdNiMMQ==}
engines: {node: '>=6.9.0'}
@@ -339,10 +369,18 @@ packages:
resolution: {integrity: sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-string-parser@7.25.9':
+ resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-validator-identifier@7.25.7':
resolution: {integrity: sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-validator-identifier@7.25.9':
+ resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-validator-option@7.25.7':
resolution: {integrity: sha512-ytbPLsm+GjArDYXJ8Ydr1c/KJuutjF2besPNbIZnZ6MKUxi/uTA22t2ymmA4WFjZFpjiAMO0xuuJPqK2nvDVfQ==}
engines: {node: '>=6.9.0'}
@@ -355,6 +393,10 @@ packages:
resolution: {integrity: sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw==}
engines: {node: '>=6.9.0'}
+ '@babel/highlight@7.25.9':
+ resolution: {integrity: sha512-llL88JShoCsth8fF8R4SJnIn+WLvR6ccFxu1H3FlMhDontdcmZWf2HgIZ7AIqV3Xcck1idlohrN4EUBQz6klbw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/parser@7.25.7':
resolution: {integrity: sha512-aZn7ETtQsjjGG5HruveUK06cU3Hljuhd9Iojm4M8WWv3wLE6OkE5PWbDUkItmMgegmccaITudyuW5RPYrYlgWw==}
engines: {node: '>=6.0.0'}
@@ -365,6 +407,11 @@ packages:
engines: {node: '>=6.0.0'}
hasBin: true
+ '@babel/parser@7.25.9':
+ resolution: {integrity: sha512-aI3jjAAO1fh7vY/pBGsn1i9LDbRP43+asrRlkPuTXW5yHXtd1NgTEMudbBoDDxrf1daEEfPJqR+JBMakzrR4Dg==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+
'@babel/plugin-proposal-decorators@7.25.7':
resolution: {integrity: sha512-q1mqqqH0e1lhmsEQHV5U8OmdueBC2y0RFr2oUzZoFRtN3MvPmt2fsFRcNQAoGLTSNdHBFUYGnlgcRFhkBbKjPw==}
engines: {node: '>=6.9.0'}
@@ -406,8 +453,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/runtime@7.25.7':
- resolution: {integrity: sha512-FjoyLe754PMiYsFaN5C94ttGiOmBNYTf6pLr4xXHAT5uctHb092PBszndLDR5XA/jghQvn4n7JMHl7dmTgbm9w==}
+ '@babel/runtime@7.25.9':
+ resolution: {integrity: sha512-4zpTHZ9Cm6L9L+uIqghQX8ZXg8HKFcjYO3qHoO8zTmRm6HQUJ8SSJ+KRvbMBZn0EGVlT4DRYeQ/6hjlyXBh+Kg==}
engines: {node: '>=6.9.0'}
'@babel/standalone@7.25.7':
@@ -418,10 +465,18 @@ packages:
resolution: {integrity: sha512-wRwtAgI3bAS+JGU2upWNL9lSlDcRCqD05BZ1n3X2ONLH1WilFP6O1otQjeMK/1g0pvYcXC7b/qVUB1keofjtZA==}
engines: {node: '>=6.9.0'}
+ '@babel/template@7.25.9':
+ resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==}
+ engines: {node: '>=6.9.0'}
+
'@babel/traverse@7.25.7':
resolution: {integrity: sha512-jatJPT1Zjqvh/1FyJs6qAHL+Dzb7sTb+xr7Q+gM1b+1oBsMsQQ4FkVKb6dFlJvLlVssqkRzV05Jzervt9yhnzg==}
engines: {node: '>=6.9.0'}
+ '@babel/traverse@7.25.9':
+ resolution: {integrity: sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/types@7.25.7':
resolution: {integrity: sha512-vwIVdXG+j+FOpkwqHRcBgHLYNL7XMkufrlaFvL9o6Ai9sJn9+PdyIL5qa0XzTZw084c+u9LOls53eoZWP/W5WQ==}
engines: {node: '>=6.9.0'}
@@ -430,6 +485,10 @@ packages:
resolution: {integrity: sha512-JWtuCu8VQsMladxVz/P4HzHUGCAwpuqacmowgXFs5XjxIgKuNjnLokQzuVjlTvIzODaDmpjT3oxcC48vyk9EWg==}
engines: {node: '>=6.9.0'}
+ '@babel/types@7.25.9':
+ resolution: {integrity: sha512-OwS2CM5KocvQ/k7dFJa8i5bNGJP0hXWfVCfDkqRFP1IreH1JDC7wG6eCYCi0+McbfT8OR/kNqsI0UU0xP9H6PQ==}
+ engines: {node: '>=6.9.0'}
+
'@capsizecss/metrics@2.2.0':
resolution: {integrity: sha512-DkFIser1KbGxWyG2hhQQeCit72TnOQDx5pr9bkA7+XlIy7qv+4lYtslH3bidVxm2qkY2guAgypSIPYuQQuk70A==}
@@ -448,6 +507,50 @@ packages:
resolution: {integrity: sha512-YLPHc8yASwjNkmcDMQMY35yiWjoKAKnhUbPRszBRS0YgH+IXtsMp61j+yTcnCE3oO2DgP0U3iejLC8FTtKDC8Q==}
engines: {node: '>=16.13'}
+ '@cloudflare/workerd-darwin-64@1.20241022.0':
+ resolution: {integrity: sha512-1NNYun37myMTgCUiPQEJ0cMal4mKZVTpkD0b2tx9hV70xji+frVJcSK8YVLeUm1P+Rw1d/ct8DMgQuCpsz3Fsw==}
+ engines: {node: '>=16'}
+ cpu: [x64]
+ os: [darwin]
+
+ '@cloudflare/workerd-darwin-arm64@1.20241022.0':
+ resolution: {integrity: sha512-FOO/0P0U82EsTLTdweNVgw+4VOk5nghExLPLSppdOziq6IR5HVgP44Kmq5LdsUeHUhwUmfOh9hzaTpkNzUqKvw==}
+ engines: {node: '>=16'}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@cloudflare/workerd-linux-64@1.20241022.0':
+ resolution: {integrity: sha512-RsNc19BQJG9yd+ngnjuDeG9ywZG+7t1L4JeglgceyY5ViMNMKVO7Zpbsu69kXslU9h6xyQG+lrmclg3cBpnhYA==}
+ engines: {node: '>=16'}
+ cpu: [x64]
+ os: [linux]
+
+ '@cloudflare/workerd-linux-arm64@1.20241022.0':
+ resolution: {integrity: sha512-x5mUXpKxfsosxcFmcq5DaqLs37PejHYVRsNz1cWI59ma7aC4y4Qn6Tf3i0r9MwQTF/MccP4SjVslMU6m4W7IaA==}
+ engines: {node: '>=16'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@cloudflare/workerd-windows-64@1.20241022.0':
+ resolution: {integrity: sha512-eBCClx4szCOgKqOlxxbdNszMqQf3MRG1B9BRIqEM/diDfdR9IrZ8l3FaEm+l9gXgPmS6m1NBn40aWuGBl8UTSw==}
+ engines: {node: '>=16'}
+ cpu: [x64]
+ os: [win32]
+
+ '@cloudflare/workers-shared@0.7.0':
+ resolution: {integrity: sha512-LLQRTqx7lKC7o2eCYMpyc5FXV8d0pUX6r3A+agzhqS9aoR5A6zCPefwQGcvbKx83ozX22ATZcemwxQXn12UofQ==}
+ engines: {node: '>=16.7.0'}
+
+ '@cloudflare/workers-types@4.20241022.0':
+ resolution: {integrity: sha512-1zOAw5QIDKItzGatzCrEpfLOB1AuMTwVqKmbw9B9eBfCUGRFNfJYMrJxIwcse9EmKahsQt2GruqU00pY/GyXgg==}
+
+ '@cspotcode/source-map-support@0.8.1':
+ resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
+ engines: {node: '>=12'}
+
+ '@emnapi/runtime@1.3.1':
+ resolution: {integrity: sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==}
+
'@emotion/babel-plugin@11.12.0':
resolution: {integrity: sha512-y2WQb+oP8Jqvvclh8Q55gLUyb7UFvgv7eJfsj7td5TToBrIUtPay2kMrZi4xjq9qw2vD0ZR5fSho0yqoFgX7Rw==}
@@ -486,6 +589,16 @@ packages:
resolution: {integrity: sha512-xjZTSFgECpb9Ohuk5yMX5RhUEbfeQcuOp8IF60e+wyzWEF0M5xeSgqsfLtvPEX8BIyOX9saZqzuGPmZ8oWc+5Q==}
engines: {node: '>=16'}
+ '@esbuild-plugins/node-globals-polyfill@0.2.3':
+ resolution: {integrity: sha512-r3MIryXDeXDOZh7ih1l/yE9ZLORCd5e8vWg02azWRGj5SPTuoh69A2AIyn0Z31V/kHBfZ4HgWJ+OK3GTTwLmnw==}
+ peerDependencies:
+ esbuild: '*'
+
+ '@esbuild-plugins/node-modules-polyfill@0.2.2':
+ resolution: {integrity: sha512-LXV7QsWJxRuMYvKbiznh+U1ilIop3g2TeKRzUxOG5X3YITc8JyyTa90BmLwqqv0YnX4v32CSlG+vsziZp9dMvA==}
+ peerDependencies:
+ esbuild: '*'
+
'@esbuild/aix-ppc64@0.19.12':
resolution: {integrity: sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==}
engines: {node: '>=12'}
@@ -516,6 +629,12 @@ packages:
cpu: [ppc64]
os: [aix]
+ '@esbuild/android-arm64@0.17.19':
+ resolution: {integrity: sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [android]
+
'@esbuild/android-arm64@0.19.12':
resolution: {integrity: sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==}
engines: {node: '>=12'}
@@ -546,6 +665,12 @@ packages:
cpu: [arm64]
os: [android]
+ '@esbuild/android-arm@0.17.19':
+ resolution: {integrity: sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [android]
+
'@esbuild/android-arm@0.19.12':
resolution: {integrity: sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==}
engines: {node: '>=12'}
@@ -576,6 +701,12 @@ packages:
cpu: [arm]
os: [android]
+ '@esbuild/android-x64@0.17.19':
+ resolution: {integrity: sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [android]
+
'@esbuild/android-x64@0.19.12':
resolution: {integrity: sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==}
engines: {node: '>=12'}
@@ -606,6 +737,12 @@ packages:
cpu: [x64]
os: [android]
+ '@esbuild/darwin-arm64@0.17.19':
+ resolution: {integrity: sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [darwin]
+
'@esbuild/darwin-arm64@0.19.12':
resolution: {integrity: sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==}
engines: {node: '>=12'}
@@ -636,6 +773,12 @@ packages:
cpu: [arm64]
os: [darwin]
+ '@esbuild/darwin-x64@0.17.19':
+ resolution: {integrity: sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [darwin]
+
'@esbuild/darwin-x64@0.19.12':
resolution: {integrity: sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==}
engines: {node: '>=12'}
@@ -666,6 +809,12 @@ packages:
cpu: [x64]
os: [darwin]
+ '@esbuild/freebsd-arm64@0.17.19':
+ resolution: {integrity: sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [freebsd]
+
'@esbuild/freebsd-arm64@0.19.12':
resolution: {integrity: sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==}
engines: {node: '>=12'}
@@ -696,6 +845,12 @@ packages:
cpu: [arm64]
os: [freebsd]
+ '@esbuild/freebsd-x64@0.17.19':
+ resolution: {integrity: sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [freebsd]
+
'@esbuild/freebsd-x64@0.19.12':
resolution: {integrity: sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==}
engines: {node: '>=12'}
@@ -726,6 +881,12 @@ packages:
cpu: [x64]
os: [freebsd]
+ '@esbuild/linux-arm64@0.17.19':
+ resolution: {integrity: sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [linux]
+
'@esbuild/linux-arm64@0.19.12':
resolution: {integrity: sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==}
engines: {node: '>=12'}
@@ -756,6 +917,12 @@ packages:
cpu: [arm64]
os: [linux]
+ '@esbuild/linux-arm@0.17.19':
+ resolution: {integrity: sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [linux]
+
'@esbuild/linux-arm@0.19.12':
resolution: {integrity: sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==}
engines: {node: '>=12'}
@@ -786,6 +953,12 @@ packages:
cpu: [arm]
os: [linux]
+ '@esbuild/linux-ia32@0.17.19':
+ resolution: {integrity: sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [linux]
+
'@esbuild/linux-ia32@0.19.12':
resolution: {integrity: sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==}
engines: {node: '>=12'}
@@ -816,6 +989,12 @@ packages:
cpu: [ia32]
os: [linux]
+ '@esbuild/linux-loong64@0.17.19':
+ resolution: {integrity: sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==}
+ engines: {node: '>=12'}
+ cpu: [loong64]
+ os: [linux]
+
'@esbuild/linux-loong64@0.19.12':
resolution: {integrity: sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==}
engines: {node: '>=12'}
@@ -846,6 +1025,12 @@ packages:
cpu: [loong64]
os: [linux]
+ '@esbuild/linux-mips64el@0.17.19':
+ resolution: {integrity: sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==}
+ engines: {node: '>=12'}
+ cpu: [mips64el]
+ os: [linux]
+
'@esbuild/linux-mips64el@0.19.12':
resolution: {integrity: sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==}
engines: {node: '>=12'}
@@ -876,6 +1061,12 @@ packages:
cpu: [mips64el]
os: [linux]
+ '@esbuild/linux-ppc64@0.17.19':
+ resolution: {integrity: sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [linux]
+
'@esbuild/linux-ppc64@0.19.12':
resolution: {integrity: sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==}
engines: {node: '>=12'}
@@ -906,6 +1097,12 @@ packages:
cpu: [ppc64]
os: [linux]
+ '@esbuild/linux-riscv64@0.17.19':
+ resolution: {integrity: sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==}
+ engines: {node: '>=12'}
+ cpu: [riscv64]
+ os: [linux]
+
'@esbuild/linux-riscv64@0.19.12':
resolution: {integrity: sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==}
engines: {node: '>=12'}
@@ -936,6 +1133,12 @@ packages:
cpu: [riscv64]
os: [linux]
+ '@esbuild/linux-s390x@0.17.19':
+ resolution: {integrity: sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==}
+ engines: {node: '>=12'}
+ cpu: [s390x]
+ os: [linux]
+
'@esbuild/linux-s390x@0.19.12':
resolution: {integrity: sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==}
engines: {node: '>=12'}
@@ -966,6 +1169,12 @@ packages:
cpu: [s390x]
os: [linux]
+ '@esbuild/linux-x64@0.17.19':
+ resolution: {integrity: sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [linux]
+
'@esbuild/linux-x64@0.19.12':
resolution: {integrity: sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==}
engines: {node: '>=12'}
@@ -996,6 +1205,12 @@ packages:
cpu: [x64]
os: [linux]
+ '@esbuild/netbsd-x64@0.17.19':
+ resolution: {integrity: sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [netbsd]
+
'@esbuild/netbsd-x64@0.19.12':
resolution: {integrity: sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==}
engines: {node: '>=12'}
@@ -1038,6 +1253,12 @@ packages:
cpu: [arm64]
os: [openbsd]
+ '@esbuild/openbsd-x64@0.17.19':
+ resolution: {integrity: sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [openbsd]
+
'@esbuild/openbsd-x64@0.19.12':
resolution: {integrity: sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==}
engines: {node: '>=12'}
@@ -1068,6 +1289,12 @@ packages:
cpu: [x64]
os: [openbsd]
+ '@esbuild/sunos-x64@0.17.19':
+ resolution: {integrity: sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [sunos]
+
'@esbuild/sunos-x64@0.19.12':
resolution: {integrity: sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==}
engines: {node: '>=12'}
@@ -1098,6 +1325,12 @@ packages:
cpu: [x64]
os: [sunos]
+ '@esbuild/win32-arm64@0.17.19':
+ resolution: {integrity: sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [win32]
+
'@esbuild/win32-arm64@0.19.12':
resolution: {integrity: sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==}
engines: {node: '>=12'}
@@ -1128,6 +1361,12 @@ packages:
cpu: [arm64]
os: [win32]
+ '@esbuild/win32-ia32@0.17.19':
+ resolution: {integrity: sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [win32]
+
'@esbuild/win32-ia32@0.19.12':
resolution: {integrity: sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==}
engines: {node: '>=12'}
@@ -1158,6 +1397,12 @@ packages:
cpu: [ia32]
os: [win32]
+ '@esbuild/win32-x64@0.17.19':
+ resolution: {integrity: sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [win32]
+
'@esbuild/win32-x64@0.19.12':
resolution: {integrity: sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==}
engines: {node: '>=12'}
@@ -1334,6 +1579,111 @@ packages:
peerDependencies:
vue: 3.5.12
+ '@img/sharp-darwin-arm64@0.33.5':
+ resolution: {integrity: sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@img/sharp-darwin-x64@0.33.5':
+ resolution: {integrity: sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [x64]
+ os: [darwin]
+
+ '@img/sharp-libvips-darwin-arm64@1.0.4':
+ resolution: {integrity: sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@img/sharp-libvips-darwin-x64@1.0.4':
+ resolution: {integrity: sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==}
+ cpu: [x64]
+ os: [darwin]
+
+ '@img/sharp-libvips-linux-arm64@1.0.4':
+ resolution: {integrity: sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==}
+ cpu: [arm64]
+ os: [linux]
+
+ '@img/sharp-libvips-linux-arm@1.0.5':
+ resolution: {integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==}
+ cpu: [arm]
+ os: [linux]
+
+ '@img/sharp-libvips-linux-s390x@1.0.4':
+ resolution: {integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==}
+ cpu: [s390x]
+ os: [linux]
+
+ '@img/sharp-libvips-linux-x64@1.0.4':
+ resolution: {integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==}
+ cpu: [x64]
+ os: [linux]
+
+ '@img/sharp-libvips-linuxmusl-arm64@1.0.4':
+ resolution: {integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==}
+ cpu: [arm64]
+ os: [linux]
+
+ '@img/sharp-libvips-linuxmusl-x64@1.0.4':
+ resolution: {integrity: sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==}
+ cpu: [x64]
+ os: [linux]
+
+ '@img/sharp-linux-arm64@0.33.5':
+ resolution: {integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [arm64]
+ os: [linux]
+
+ '@img/sharp-linux-arm@0.33.5':
+ resolution: {integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [arm]
+ os: [linux]
+
+ '@img/sharp-linux-s390x@0.33.5':
+ resolution: {integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [s390x]
+ os: [linux]
+
+ '@img/sharp-linux-x64@0.33.5':
+ resolution: {integrity: sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [x64]
+ os: [linux]
+
+ '@img/sharp-linuxmusl-arm64@0.33.5':
+ resolution: {integrity: sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [arm64]
+ os: [linux]
+
+ '@img/sharp-linuxmusl-x64@0.33.5':
+ resolution: {integrity: sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [x64]
+ os: [linux]
+
+ '@img/sharp-wasm32@0.33.5':
+ resolution: {integrity: sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [wasm32]
+
+ '@img/sharp-win32-ia32@0.33.5':
+ resolution: {integrity: sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [ia32]
+ os: [win32]
+
+ '@img/sharp-win32-x64@0.33.5':
+ resolution: {integrity: sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [x64]
+ os: [win32]
+
'@inspira-ui/plugins@0.0.1':
resolution: {integrity: sha512-gM4iZptDoStA7QT1lltC6Jl4qRLhkZwVtcXomQy/PPxe0lAxhrZx40KXEUJakRZLOSmyfVJCExzZhRzOrE6DBQ==}
@@ -1426,6 +1776,9 @@ packages:
'@jridgewell/trace-mapping@0.3.25':
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
+ '@jridgewell/trace-mapping@0.3.9':
+ resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
+
'@jsdevtools/ez-spawn@3.0.4':
resolution: {integrity: sha512-f5DRIOZf7wxogefH03RjMPMdBF7ADTWUMoOs9kaJo06EfwF+aFhMZMDZxHg/Xe12hptN9xoZjGso2fdjapBRIA==}
engines: {node: '>=10'}
@@ -1530,8 +1883,8 @@ packages:
peerDependencies:
vite: '*'
- '@nuxt/fonts@0.10.0':
- resolution: {integrity: sha512-VoK/rssN1PzMeQOplap8UYnbKtI6IDaI+sj5BmbCCpXRYY84gH8m+zePGRo88Mi9ujRhd1HUOXfsCvHN88iGmQ==}
+ '@nuxt/fonts@0.10.2':
+ resolution: {integrity: sha512-WYsrKBv9tPEgEntNwe4Zov2taKO/cnct+tR/g5EQ1jgADkFeEGkfCsUDwTG/pZFkW0FlKSR/KRLMB3U6O+C6Ow==}
'@nuxt/icon@1.5.6':
resolution: {integrity: sha512-7l99CWc/laHphSsoLikh99Hkwjv+59cwAMJ0f9eZddBV+vO7zLGWwocH/TDNjlX0IACgVoG+AfbP/p1fqlLKpg==}
@@ -1620,6 +1973,9 @@ packages:
peerDependencies:
vue: 3.5.12
+ '@nuxthub/core@0.7.37':
+ resolution: {integrity: sha512-SOAGUsW+XGA9oghwItTYjx3CtPyKuc7OhBONeGpUMGJ26xs2dKdEW7DV+My2woW2PXBWL4N5YLfV+m5e60yfAg==}
+
'@nuxtjs/color-mode@3.5.1':
resolution: {integrity: sha512-GRHF3WUwX6fXIiRVlngNq1nVDwrVuP6dWX1DRmox3QolzX0eH1oJEcFr/lAm1nkT71JVGb8mszho9w+yHJbePw==}
@@ -2094,18 +2450,27 @@ packages:
'@shikijs/core@1.22.0':
resolution: {integrity: sha512-S8sMe4q71TJAW+qG93s5VaiihujRK6rqDFqBnxqvga/3LvqHEnxqBIOPkt//IdXVtHkQWKu4nOQNk0uBGicU7Q==}
+ '@shikijs/core@1.22.1':
+ resolution: {integrity: sha512-bqAhT/Ri5ixV4oYsvJNH8UJjpjbINWlWyXY6tBTsP4OmD6XnFv43nRJ+lTdxd2rmG5pgam/x+zGR6kLRXrpEKA==}
+
'@shikijs/engine-javascript@1.21.0':
resolution: {integrity: sha512-jxQHNtVP17edFW4/0vICqAVLDAxmyV31MQJL4U/Kg+heQALeKYVOWo0sMmEZ18FqBt+9UCdyqGKYE7bLRtk9mg==}
'@shikijs/engine-javascript@1.22.0':
resolution: {integrity: sha512-AeEtF4Gcck2dwBqCFUKYfsCq0s+eEbCEbkUuFou53NZ0sTGnJnJ/05KHQFZxpii5HMXbocV9URYVowOP2wH5kw==}
+ '@shikijs/engine-javascript@1.22.1':
+ resolution: {integrity: sha512-540pyoy0LWe4jj2BVbgELwOFu1uFvRI7lg4hdsExrSXA9x7gqfzZ/Nnh4RfX86aDAgJ647gx4TCmRwACbnQSvw==}
+
'@shikijs/engine-oniguruma@1.21.0':
resolution: {integrity: sha512-AIZ76XocENCrtYzVU7S4GY/HL+tgHGbVU+qhiDyNw1qgCA5OSi4B4+HY4BtAoJSMGuD/L5hfTzoRVbzEm2WTvg==}
'@shikijs/engine-oniguruma@1.22.0':
resolution: {integrity: sha512-5iBVjhu/DYs1HB0BKsRRFipRrD7rqjxlWTj4F2Pf+nQSPqc3kcyqFFeZXnBMzDf0HdqaFVvhDRAGiYNvyLP+Mw==}
+ '@shikijs/engine-oniguruma@1.22.1':
+ resolution: {integrity: sha512-L+1Vmd+a2kk8HtogUFymQS6BjUfJnzcWoUp1BUgxoDiklbKSMvrsMuLZGevTOP1m0rEjgnC5MsDmsr8lX1lC+Q==}
+
'@shikijs/transformers@1.22.0':
resolution: {integrity: sha512-k7iMOYuGQA62KwAuJOQBgH2IQb5vP8uiB3lMvAMGUgAMMurePOx3Z7oNqJdcpxqZP6I9cc7nc4DNqSKduCxmdg==}
@@ -2118,6 +2483,9 @@ packages:
'@shikijs/types@1.22.0':
resolution: {integrity: sha512-Fw/Nr7FGFhlQqHfxzZY8Cwtwk5E9nKDUgeLjZgt3UuhcM3yJR9xj3ZGNravZZok8XmEZMiYkSMTPlPkULB8nww==}
+ '@shikijs/types@1.22.1':
+ resolution: {integrity: sha512-+45f8mu/Hxqs6Kyhfm98Nld5n7Q7lwhjU8UtdQwrOPs7BnM4VAb929O3IQ2ce+4D7SlNFlZGd8CnKRSnwbQreQ==}
+
'@shikijs/vitepress-twoslash@1.21.0':
resolution: {integrity: sha512-/B/edWFxZ6Tdfj0Jj+jxJOKsHRd89NZ57tK0E68kvaWbbnBw3UaLCixDL+SvdeGFMov2uN1URXgCdBQTR6daZg==}
@@ -2401,11 +2769,14 @@ packages:
'@types/ms@0.7.34':
resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==}
+ '@types/node-forge@1.3.11':
+ resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==}
+
'@types/node@22.7.4':
resolution: {integrity: sha512-y+NPi1rFzDs1NdQHHToqeiX2TIS79SWEAw9GYhkkx8bD0ChpfqC+n2j5OXOCpzfojBEBt6DnEnnG9MY0zk1XLg==}
- '@types/node@22.7.7':
- resolution: {integrity: sha512-SRxCrrg9CL/y54aiMCG3edPKdprgMVGDXjA3gB8UmmBW5TcXzRUYAh8EWzTnSJFAd1rgImPELza+A3bJ+qxz8Q==}
+ '@types/node@22.7.9':
+ resolution: {integrity: sha512-jrTfRC7FM6nChvU7X2KqcrgquofrWLFDeYC1hKfwNWomVvrn7JIksqf344WN2X/y8xrgqBd2dJATZV4GbatBfg==}
'@types/normalize-package-data@2.4.4':
resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
@@ -2479,8 +2850,8 @@ packages:
typescript:
optional: true
- '@typescript-eslint/scope-manager@8.10.0':
- resolution: {integrity: sha512-AgCaEjhfql9MDKjMUxWvH7HjLeBqMCBfIaBbzzIcBbQPZE7CPh1m6FF+L75NUMJFMLYhCywJXIDEMa3//1A0dw==}
+ '@typescript-eslint/scope-manager@8.11.0':
+ resolution: {integrity: sha512-Uholz7tWhXmA4r6epo+vaeV7yjdKy5QFCERMjs1kMVsLRKIrSdM6o21W2He9ftp5PP6aWOVpD5zvrvuHZC0bMQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@typescript-eslint/scope-manager@8.9.0':
@@ -2496,16 +2867,16 @@ packages:
typescript:
optional: true
- '@typescript-eslint/types@8.10.0':
- resolution: {integrity: sha512-k/E48uzsfJCRRbGLapdZgrX52csmWJ2rcowwPvOZ8lwPUv3xW6CcFeJAXgx4uJm+Ge4+a4tFOkdYvSpxhRhg1w==}
+ '@typescript-eslint/types@8.11.0':
+ resolution: {integrity: sha512-tn6sNMHf6EBAYMvmPUaKaVeYvhUsrE6x+bXQTxjQRp360h1giATU0WvgeEys1spbvb5R+VpNOZ+XJmjD8wOUHw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@typescript-eslint/types@8.9.0':
resolution: {integrity: sha512-SjgkvdYyt1FAPhU9c6FiYCXrldwYYlIQLkuc+LfAhCna6ggp96ACncdtlbn8FmnG72tUkXclrDExOpEYf1nfJQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/typescript-estree@8.10.0':
- resolution: {integrity: sha512-3OE0nlcOHaMvQ8Xu5gAfME3/tWVDpb/HxtpUZ1WeOAksZ/h/gwrBzCklaGzwZT97/lBbbxJ16dMA98JMEngW4w==}
+ '@typescript-eslint/typescript-estree@8.11.0':
+ resolution: {integrity: sha512-yHC3s1z1RCHoCz5t06gf7jH24rr3vns08XXhfEqzYpd6Hll3z/3g23JRi0jM8A47UFKNc3u/y5KIMx8Ynbjohg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '*'
@@ -2522,8 +2893,8 @@ packages:
typescript:
optional: true
- '@typescript-eslint/utils@8.10.0':
- resolution: {integrity: sha512-Oq4uZ7JFr9d1ZunE/QKy5egcDRXT/FrS2z/nlxzPua2VHFtmMvFNDvpq1m/hq0ra+T52aUezfcjGRIB7vNJF9w==}
+ '@typescript-eslint/utils@8.11.0':
+ resolution: {integrity: sha512-CYiX6WZcbXNJV7UNB4PLDIBtSdRmRI/nb0FMyqHPTQD1rMjA0foPLaPUV39C/MxkTd/QKSeX+Gb34PPsDVC35g==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
@@ -2534,8 +2905,8 @@ packages:
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- '@typescript-eslint/visitor-keys@8.10.0':
- resolution: {integrity: sha512-k8nekgqwr7FadWk548Lfph6V3r9OVqjzAIVskE7orMZR23cGJjAOVazsZSJW+ElyjfTM4wx/1g88Mi70DDtG9A==}
+ '@typescript-eslint/visitor-keys@8.11.0':
+ resolution: {integrity: sha512-EaewX6lxSjRJnc+99+dqzTeoDZUfyrA52d2/HRrkI830kgovWsmIiTfmr0NZorzqic7ga+1bS60lRBUgR3n/Bw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@typescript-eslint/visitor-keys@8.9.0':
@@ -2712,6 +3083,9 @@ packages:
'@unovis/ts': 1.4.4
vue: 3.5.12
+ '@uploadthing/mime-types@0.3.0':
+ resolution: {integrity: sha512-jN/XFvpKTzcd3MXT/9D9oxx05scnYiSYxAXF/e6hyg377zFducRxivU/kHyYTkpUZPTmOL5q9EQbOkUsXMlSMg==}
+
'@vercel/nft@0.26.5':
resolution: {integrity: sha512-NHxohEqad6Ra/r4lGknO52uc/GrWILXAMs1BB4401GTqww0fw1bAqzpG1XHuDO+dprg4GvsD9ZLLSsdo78p9hQ==}
engines: {node: '>=16'}
@@ -3018,6 +3392,10 @@ packages:
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
+ acorn-walk@8.3.4:
+ resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==}
+ engines: {node: '>=0.4.0'}
+
acorn@8.12.1:
resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==}
engines: {node: '>=0.4.0'}
@@ -3102,6 +3480,9 @@ packages:
resolution: {integrity: sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==}
engines: {node: '>=10'}
+ as-table@1.0.55:
+ resolution: {integrity: sha512-xvsWESUJn0JN421Xb9MQw6AsMHRCUknCe0Wjlxvjud80mU4E6hQf1A6NzQKcYNmYw62MfzEtXc+badstZP3JpQ==}
+
assertion-error@2.0.1:
resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==}
engines: {node: '>=12'}
@@ -3185,6 +3566,9 @@ packages:
bl@4.1.0:
resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
+ blake3-wasm@2.1.5:
+ resolution: {integrity: sha512-F1+K8EbfOZE49dtoPtmxUQrpXaBIl3ICvasLh+nJta0xkz+9kF/7uet9fLnwKqhDrmj6g+6K3Tw9yQPUg2ka5g==}
+
blob-to-buffer@1.2.9:
resolution: {integrity: sha512-BF033y5fN6OCofD3vgHmNtwZWRcq9NLyyxyILx9hfMy1sXYy4ojFl765hJ2lP0YaN2fuxPaLO2Vzzoxy0FLFFA==}
@@ -3212,6 +3596,11 @@ packages:
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
+ browserslist@4.24.2:
+ resolution: {integrity: sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==}
+ engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
+ hasBin: true
+
buffer-crc32@1.0.0:
resolution: {integrity: sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==}
engines: {node: '>=8.0.0'}
@@ -3280,6 +3669,12 @@ packages:
caniuse-lite@1.0.30001667:
resolution: {integrity: sha512-7LTwJjcRkzKFmtqGsibMeuXmvFDfZq/nzIjnmgCGzKKRVzjD72selLDK1oPF/Oxzmt4fNcPvTDvGqSDG4tCALw==}
+ caniuse-lite@1.0.30001669:
+ resolution: {integrity: sha512-DlWzFDJqstqtIVx1zeSpIMLjunf5SmwOw0N2Ck/QSQdS8PLS4+9HrLaYei4w8BIAL7IB/UEDu889d8vhCTPA0w==}
+
+ capnp-ts@0.7.0:
+ resolution: {integrity: sha512-XKxXAC3HVPv7r674zP0VC3RTXz+/JKhfyw94ljvF80yynK6VkTnqE3jMuN8b3dUVmmc43TjyxjW4KTsmB3c86g==}
+
case-police@0.7.0:
resolution: {integrity: sha512-ULkv4kNeSBFCFwXE1NA/x6/FqY8lRRXT10HsGX7K0LcMcA/B45SgnNY98hnQ9c05AaVhgbR5jlCO0BXMlIEuPg==}
hasBin: true
@@ -3503,6 +3898,10 @@ packages:
cookie-es@1.2.2:
resolution: {integrity: sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==}
+ cookie@0.7.2:
+ resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==}
+ engines: {node: '>= 0.6'}
+
copy-anything@3.0.5:
resolution: {integrity: sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==}
engines: {node: '>=12.13'}
@@ -3783,6 +4182,12 @@ packages:
resolution: {integrity: sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA==}
engines: {node: '>=12'}
+ data-uri-to-buffer@2.0.2:
+ resolution: {integrity: sha512-ND9qDTLc6diwj+Xe5cdAgVTbLVdXbtxTJRXRhli8Mowuaan+0EJOtdqJ0QCHNSSPyoXGx9HX2/VMnKeC34AChA==}
+
+ date-fns@4.1.0:
+ resolution: {integrity: sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg==}
+
db0@0.1.4:
resolution: {integrity: sha512-Ft6eCwONYxlwLjBXSJxw0t0RYtA5gW9mq8JfBXn9TtC0nDPlqePAhpv9v4g9aONBi6JI1OXHTKKkUYGd+BOrCA==}
peerDependencies:
@@ -3965,6 +4370,9 @@ packages:
electron-to-chromium@1.5.32:
resolution: {integrity: sha512-M+7ph0VGBQqqpTT2YrabjNKSQ2fEl9PVx6AK3N558gDH9NO8O6XN9SXXFWRo9u9PbEg/bWq+tjXQr+eXmxubCw==}
+ electron-to-chromium@1.5.45:
+ resolution: {integrity: sha512-vOzZS6uZwhhbkZbcRyiy99Wg+pYFV5hk+5YaECvx0+Z31NR3Tt5zS6dze2OepT6PCTzVzT0dIJItti+uAW5zmw==}
+
elkjs@0.8.2:
resolution: {integrity: sha512-L6uRgvZTH+4OF5NE/MBbzQx/WYpru1xCBE9respNj6qznEewGUIfhzmm7horWWxbNO2M0WckQypGctR8lH79xQ==}
@@ -4061,6 +4469,11 @@ packages:
es-module-lexer@1.5.4:
resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==}
+ esbuild@0.17.19:
+ resolution: {integrity: sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==}
+ engines: {node: '>=12'}
+ hasBin: true
+
esbuild@0.19.12:
resolution: {integrity: sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==}
engines: {node: '>=12'}
@@ -4299,6 +4712,9 @@ packages:
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
engines: {node: '>=4.0'}
+ estree-walker@0.6.1:
+ resolution: {integrity: sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==}
+
estree-walker@2.0.2:
resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
@@ -4333,6 +4749,10 @@ packages:
resolution: {integrity: sha512-5eo/BRqZm3GYce+1jqX/tJ7duA2AnE39i88fuedNFUV8XxGxUpF3aWkBRfbUcjV49gCkvS/pzc0YrCPhaIewdg==}
engines: {node: ^18.19.0 || >=20.5.0}
+ exit-hook@2.2.1:
+ resolution: {integrity: sha512-eNTPlAD67BmP31LDINZ3U7HSF8l57TxOY2PmBJ1shpCvpnxBF93mWCE8YHBnXs8qiUZJc9WDcWIeC3a2HIAMfw==}
+ engines: {node: '>=6'}
+
expand-template@2.0.3:
resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==}
engines: {node: '>=6'}
@@ -4377,6 +4797,14 @@ packages:
picomatch:
optional: true
+ fdir@6.4.2:
+ resolution: {integrity: sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ==}
+ peerDependencies:
+ picomatch: ^3 || ^4
+ peerDependenciesMeta:
+ picomatch:
+ optional: true
+
fflate@0.7.4:
resolution: {integrity: sha512-5u2V/CDW15QM1XbbgS+0DfPxVB+jUKhWEKuuFuHncbk3tEEqzmoXL+2KyOFuKGqOnmdIy0/davWF1CkuwtibCw==}
@@ -4506,6 +4934,9 @@ packages:
get-port-please@3.1.2:
resolution: {integrity: sha512-Gxc29eLs1fbn6LQ4jSU4vXjlwyZhF5HsGuMAa7gqBP4Rw4yxxltyDUuF5MBclFzDTXO+ACchGQoeela4DSfzdQ==}
+ get-source@2.0.12:
+ resolution: {integrity: sha512-X5+4+iD+HoSeEED+uwrQ07BOQr0kEDFMVqqpBuI+RaZBpBpHCuXxo70bjar6f0b0u/DQJsJ7ssurpP0V60Az+w==}
+
get-stdin@9.0.0:
resolution: {integrity: sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA==}
engines: {node: '>=12'}
@@ -4941,6 +5372,9 @@ packages:
isexe@2.0.0:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
+ itty-time@1.0.6:
+ resolution: {integrity: sha512-+P8IZaLLBtFv8hCkIjcymZOp4UJ+xW6bSlQsXGqrkmJh7vSiMFSlNne0mCYagEE0N7HDNR5jJBRxwN0oYv61Rw==}
+
jackspeak@3.4.3:
resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
@@ -5220,6 +5654,9 @@ packages:
resolution: {integrity: sha512-oN3Bcd7ZVt+0VGEs7402qR/tjgjbM7kPlH/z7ufJnzTLVBzXJITRHOJiwMmmYMgZfdoWQsfQcY+iKlxiBppnMA==}
engines: {node: '>=16.14.0'}
+ magic-string@0.25.9:
+ resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==}
+
magic-string@0.30.11:
resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==}
@@ -5441,6 +5878,11 @@ packages:
resolution: {integrity: sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==}
hasBin: true
+ miniflare@3.20241022.0:
+ resolution: {integrity: sha512-x9Fbq1Hmz1f0osIT9Qmj78iX4UpCP2EqlZnA/tzj/3+I49vc3Kq0fNqSSKplcdf6HlCHdL3fOBicmreQF4BUUQ==}
+ engines: {node: '>=16.13'}
+ hasBin: true
+
minimatch@10.0.1:
resolution: {integrity: sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==}
engines: {node: 20 || >=22}
@@ -5540,6 +5982,10 @@ packages:
murmurhash-js@1.0.0:
resolution: {integrity: sha512-TvmkNhkv8yct0SVBSy+o8wYzXjE4Zz3PCesbfs8HiCXXdcTuocApFv11UWlNFWKYsP2okqrhb7JNlSm9InBhIw==}
+ mustache@4.2.0:
+ resolution: {integrity: sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==}
+ hasBin: true
+
mz@2.7.0:
resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
@@ -5568,6 +6014,9 @@ packages:
neo-async@2.6.2:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
+ nitro-cloudflare-dev@0.2.1:
+ resolution: {integrity: sha512-zHAN21dp+As0ldkAr5tWTop/I721j7MssZG6qb7a7EMorFwdRIhyTUwltr2L6v4qT4209S4eb2S9rszP1fxS7A==}
+
nitropack@2.9.7:
resolution: {integrity: sha512-aKXvtNrWkOCMsQbsk4A0qQdBjrJ1ZcvwlTQevI/LAgLWLYc5L7Q/YiYxGLal4ITyNSlzir1Cm1D2ZxnYhmpMEw==}
engines: {node: ^16.11.0 || >=17.0.0}
@@ -5612,6 +6061,9 @@ packages:
resolution: {integrity: sha512-IRUxE4BVsHWXkV/SFOut4qTlagw2aM8T5/vnTsmrHJvVoKueJHRc/JaFND7QDDc61kLYUJ6qlZM3sqTSyx2dTw==}
hasBin: true
+ node-html-parser@6.1.13:
+ resolution: {integrity: sha512-qIsTMOY4C/dAa5Q5vsobRpOOvPfC4pB61UVW2uSwZNUp0QU/jCekTal1vMmbO0DgdHeLUJpv/ARmDqErVxA3Sg==}
+
node-releases@2.0.18:
resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==}
@@ -5636,6 +6088,10 @@ packages:
resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
engines: {node: '>=0.10.0'}
+ normalize-url@8.0.1:
+ resolution: {integrity: sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w==}
+ engines: {node: '>=14.16'}
+
npm-run-path@4.0.1:
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
engines: {node: '>=8'}
@@ -5660,6 +6116,11 @@ packages:
engines: {node: ^16.10.0 || >=18.0.0}
hasBin: true
+ nuxi@3.15.0:
+ resolution: {integrity: sha512-ZVu45nuDrdb7nzKW2kLGY/N1vvFYLLbUVX6gUYw4BApKGGu4+GktTR5o48dGVgMYX9A8chaugl7TL9ZYmwC9Mg==}
+ engines: {node: ^16.10.0 || >=18.0.0}
+ hasBin: true
+
nuxt-build-cache@0.1.1:
resolution: {integrity: sha512-jn3iSYR1gdg/eK1HkgERauUu1pJSUzwJ2Oi0qOwDGrYSlO4mycJ62L0cPtpmBR2Ah/iSrMbjLOxfMMWguVEHQA==}
@@ -5679,6 +6140,11 @@ packages:
resolution: {integrity: sha512-9Z/aTH7Sb6/BtpmhntH0VYeww5i96tq1rkKHRhIi2n1dIVfOTFYQHM/7hFkktvVsfrHPlZmB0ZdLTaQbbDDQSA==}
engines: {node: '>=18.0.0'}
+ nuxt-rebundle@0.0.2:
+ resolution: {integrity: sha512-laHs4TSMtOeWuLLLy66t2LIaf1016KST/mkEXfX99NezVX9uYS8i3T8sj6TSeuO9ZYWOtx1EN48dMcZkKqPnhw==}
+ peerDependencies:
+ nuxt: 3.13.2
+
nuxt-schema-org@3.4.1:
resolution: {integrity: sha512-RBtmWXUYihI2USRM77mwx/wPnRVPhYeK25dOFTk2BMeAvdvdCJRSP5LvMTe3C/YB5rnaeB69l6BVgw8j03C6ww==}
@@ -5761,6 +6227,10 @@ packages:
resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
engines: {node: '>=10'}
+ p-limit@6.1.0:
+ resolution: {integrity: sha512-H0jc0q1vOzlEk0TqAKXKZxdl7kX3OFUzCnNVUnq5Pc3DGo0kpeaMuPqxQn235HibwBEb0/pm9dgKTjXy66fBkg==}
+ engines: {node: '>=18'}
+
p-locate@4.1.0:
resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
engines: {node: '>=8'}
@@ -5873,6 +6343,9 @@ packages:
resolution: {integrity: sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==}
engines: {node: 20 || >=22}
+ path-to-regexp@6.3.0:
+ resolution: {integrity: sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==}
+
path-type@4.0.0:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
engines: {node: '>=8'}
@@ -6140,6 +6613,9 @@ packages:
resolution: {integrity: sha512-o1piW0n3tgKIKCwk2vpM/vOV13zjJzvP37Ioze54YlTHE06m4tjEbzg9WsKkvTuyYln2DHjo5pY4qrZGI0otpw==}
engines: {node: '>=18'}
+ printable-characters@1.0.42:
+ resolution: {integrity: sha512-dKp+C4iXWK4vVYZmYSd0KBH5F/h1HoZRsbJ82AVKRO3PEo8L4lBS/vLwhVtpwwuYcoIsVY+1JYKR268yn480uQ==}
+
process-nextick-args@2.0.1:
resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
@@ -6323,6 +6799,10 @@ packages:
resolve-protobuf-schema@2.1.0:
resolution: {integrity: sha512-kI5ffTiZWmJaS/huM8wZfEMer1eRd7oJQhDuxeCLe3t7N7mX3z94CN0xPxBQxFYQTSNz9T0i+v6inKqSdK8xrQ==}
+ resolve.exports@2.0.2:
+ resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==}
+ engines: {node: '>=10'}
+
resolve@1.22.8:
resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
hasBin: true
@@ -6356,7 +6836,14 @@ packages:
rollup: ^3.29.4 || ^4
typescript: ^4.5 || ^5.0
- rollup-plugin-visualizer@5.12.0:
+ rollup-plugin-inject@3.0.2:
+ resolution: {integrity: sha512-ptg9PQwzs3orn4jkgXJ74bfs5vYz1NCZlSQMBUA0wKcGp5i5pA1AO3fOUEte8enhGUC+iapTCzEWw2jEFFUO/w==}
+ deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-inject.
+
+ rollup-plugin-node-polyfills@0.2.1:
+ resolution: {integrity: sha512-4kCrKPTJ6sK4/gLL/U5QzVT8cxJcofO0OU74tnB19F40cmuAKSzH5/siithxlofFEjwvw1YAhPmbvGNA6jEroA==}
+
+ rollup-plugin-visualizer@5.12.0:
resolution: {integrity: sha512-8/NU9jXcHRs7Nnj07PF2o4gjxmm9lXIrZ8r175bT9dK8qoLlvKTwRMArRCMgpMGlq8CTLugRvEmyMeMXIU2pNQ==}
engines: {node: '>=14'}
hasBin: true
@@ -6366,6 +6853,9 @@ packages:
rollup:
optional: true
+ rollup-pluginutils@2.8.2:
+ resolution: {integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==}
+
rollup@3.29.5:
resolution: {integrity: sha512-GVsDdsbJzzy4S/v3dqWPJ7EfvZJfCHiDqe80IyrF59LYuP+e6U1LJoUqeuqRbwAWoMNoXivMNeNAOf5E22VA1w==}
engines: {node: '>=14.18.0', npm: '>=8.0.0'}
@@ -6417,6 +6907,10 @@ packages:
scule@1.3.0:
resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==}
+ selfsigned@2.4.1:
+ resolution: {integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==}
+ engines: {node: '>=10'}
+
semver@5.7.2:
resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
hasBin: true
@@ -6454,6 +6948,10 @@ packages:
resolution: {integrity: sha512-KyLTWwgcR9Oe4d9HwCwNM2l7+J0dUQwn/yf7S0EnTtb0eVS4RxO0eUSvxPtzT4F3SY+C4K6fqdv/DO27sJ/v/w==}
engines: {node: '>=14.15.0'}
+ sharp@0.33.5:
+ resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+
shebang-command@2.0.0:
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
engines: {node: '>=8'}
@@ -6474,6 +6972,9 @@ packages:
shiki@1.22.0:
resolution: {integrity: sha512-/t5LlhNs+UOKQCYBtl5ZsH/Vclz73GIqT2yQsCBygr8L/ppTdmpL4w3kPLoZJbMKVWtoG77Ue1feOjZfDxvMkw==}
+ shiki@1.22.1:
+ resolution: {integrity: sha512-PbJ6XxrWLMwB2rm3qdjIHNm3zq4SfFnOx0B3rEoi4AN8AUngsdyZ1tRe5slMPtn6jQkbUURLNZPpLR7Do3k78g==}
+
siginfo@2.0.0:
resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==}
@@ -6560,6 +7061,10 @@ packages:
resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==}
engines: {node: '>= 8'}
+ sourcemap-codec@1.4.8:
+ resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==}
+ deprecated: Please use @jridgewell/sourcemap-codec instead
+
space-separated-tokens@2.0.2:
resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==}
@@ -6585,12 +7090,19 @@ packages:
splitpanes@3.1.5:
resolution: {integrity: sha512-r3Mq2ITFQ5a2VXLOy4/Sb2Ptp7OfEO8YIbhVJqJXoFc9hc5nTXXkCvtVDjIGbvC0vdE7tse+xTM9BMjsszP6bw==}
+ sponsorkit@0.15.5:
+ resolution: {integrity: sha512-q+dTs7F+1VgXKElFU7jbzYFCmdcHtbPQDWLutVD4oo3hgwBU2qE6R1T26MFPMd1UI5RGi446ewlint9HqDuSNQ==}
+ hasBin: true
+
stable-hash@0.0.4:
resolution: {integrity: sha512-LjdcbuBeLcdETCrPn9i8AYAZ1eCtu4ECAWtP7UleOiZ9LzVxRzzUZEoZ8zB24nhkQnDWyET0I+3sWokSDS3E7g==}
stackback@0.0.2:
resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==}
+ stacktracey@2.1.8:
+ resolution: {integrity: sha512-Kpij9riA+UNg7TnphqjH7/CzctQ/owJGNbFkfEeve4Z4uxT5+JapVLFXcsurIfN34gnTWZNJ/f7NMG0E8JDzTw==}
+
standard-as-callback@2.1.0:
resolution: {integrity: sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A==}
@@ -6601,6 +7113,10 @@ packages:
std-env@3.7.0:
resolution: {integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==}
+ stoppable@1.1.0:
+ resolution: {integrity: sha512-KXDYZ9dszj6bzvnEMRYvxgeTHU74QBFL54XKtP3nyMuJ81CFYtABZ3bAzL2EdFUaEwJOBOgENyFj3R7oTzDyyw==}
+ engines: {node: '>=4', npm: '>=6'}
+
streamx@2.20.1:
resolution: {integrity: sha512-uTa0mU6WUC65iUvzKH4X9hEdvSW7rbPxPtwfWiLMSj3qTdQbAiUboZTxauKfpFuGIGa1C2BYijZ7wgdUXICJhA==}
@@ -7021,6 +7537,9 @@ packages:
resolution: {integrity: sha512-U8uCCl2x9TK3WANvmBavymRzxbfFYG+tAu+fgx3zxQy3qdagQqBLwJVrdyO1TBfUXvfKveMKJZhpvUYoOjM+4g==}
engines: {node: '>=18.17'}
+ unenv-nightly@2.0.0-20241018-011344-e666fcf:
+ resolution: {integrity: sha512-D00bYn8rzkCBOlLx+k1iHQlc69jvtJRT7Eek4yIGQ6461a2tUBjngGZdRpqsoXAJCz/qBW0NgPting7Zvg+ysg==}
+
unenv@1.10.0:
resolution: {integrity: sha512-wY5bskBQFL9n3Eca5XnhH6KbUo/tfvkwm9OpcdCvLaeA7piBNbavbOKJySEwQ1V0RH6HvNlSAFRTpvTqgKRQXQ==}
@@ -7051,8 +7570,8 @@ packages:
unified@11.0.5:
resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==}
- unifont@0.1.3:
- resolution: {integrity: sha512-PZVkmHSUTgeinSIYEJ58lEzk4FTh8wZt9rd+5EapupFQLFXqOq9OPIp+e6a3JE404duS5qgSHvfGEg+cJ42lPA==}
+ unifont@0.1.5:
+ resolution: {integrity: sha512-sfSPHFIu50SVyjGJ9zE6lDCqz/axfmsaeeiEQ3+JuzPN1bImtmBuaGdjvsQbksrI8fyWcDOZvlxVt4VSg7tepg==}
unimport@3.13.1:
resolution: {integrity: sha512-nNrVzcs93yrZQOW77qnyOVHtb68LegvhYFwxFMfuuWScmwQmyVCG/NBuN8tYsaGzgQUVYv34E/af+Cc9u4og4A==}
@@ -7317,37 +7836,6 @@ packages:
terser:
optional: true
- vite@5.4.9:
- resolution: {integrity: sha512-20OVpJHh0PAM0oSOELa5GaZNWeDjcAvQjGXy2Uyr+Tp+/D2/Hdz6NLgpJLsarPTA2QJ6v8mX2P1ZfbsSKvdMkg==}
- engines: {node: ^18.0.0 || >=20.0.0}
- hasBin: true
- peerDependencies:
- '@types/node': ^18.0.0 || >=20.0.0
- less: '*'
- lightningcss: ^1.21.0
- sass: '*'
- sass-embedded: '*'
- stylus: '*'
- sugarss: '*'
- terser: ^5.4.0
- peerDependenciesMeta:
- '@types/node':
- optional: true
- less:
- optional: true
- lightningcss:
- optional: true
- sass:
- optional: true
- sass-embedded:
- optional: true
- stylus:
- optional: true
- sugarss:
- optional: true
- terser:
- optional: true
-
vitest-environment-nuxt@1.0.1:
resolution: {integrity: sha512-eBCwtIQriXW5/M49FjqNKfnlJYlG2LWMSNFsRVKomc8CaMqmhQPBS5LZ9DlgYL9T8xIVsiA6RZn2lk7vxov3Ow==}
@@ -7534,6 +8022,21 @@ packages:
resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
engines: {node: '>=0.10.0'}
+ workerd@1.20241022.0:
+ resolution: {integrity: sha512-jyGXsgO9DRcJyx6Ovv7gUyDPc3UYC2i/E0p9GFUg6GUzpldw4Y93y9kOmdfsOnKZ3+lY53veSiUniiBPE6Q2NQ==}
+ engines: {node: '>=16'}
+ hasBin: true
+
+ wrangler@3.83.0:
+ resolution: {integrity: sha512-qDzdUuTngKqmm2OJUZm7Gk4+Hv37F2nNNAHuhIgItEIhxBdOVDsgKmvpd+f41MFxyuGg3fbGWYANHI+0V2Z5yw==}
+ engines: {node: '>=16.17.0'}
+ hasBin: true
+ peerDependencies:
+ '@cloudflare/workers-types': ^4.20241022.0
+ peerDependenciesMeta:
+ '@cloudflare/workers-types':
+ optional: true
+
wrap-ansi@7.0.0:
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
engines: {node: '>=10'}
@@ -7566,6 +8069,9 @@ packages:
engines: {node: '>= 0.10.0'}
hasBin: true
+ xxhash-wasm@1.0.2:
+ resolution: {integrity: sha512-ibF0Or+FivM9lNrg+HGJfVX8WJqgo+kCLDc4vx6xMeTce7Aj+DLttKbxxRR/gNLSAelRc1omAPlJ77N/Jem07A==}
+
y18n@5.0.8:
resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
engines: {node: '>=10'}
@@ -7610,6 +8116,10 @@ packages:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
+ yocto-queue@1.1.1:
+ resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==}
+ engines: {node: '>=12.20'}
+
yoctocolors@2.1.1:
resolution: {integrity: sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==}
engines: {node: '>=18'}
@@ -7617,6 +8127,9 @@ packages:
yoga-wasm-web@0.3.3:
resolution: {integrity: sha512-N+d4UJSJbt/R3wqY7Coqs5pcV0aUj2j9IaQ3rNj9bVCLld8tTGKRa2USARjnvZJWVx1NDmQev8EknoczaOQDOA==}
+ youch@3.3.4:
+ resolution: {integrity: sha512-UeVBXie8cA35DS6+nBkls68xaBBXCye0CNznrhszZjTbRVnJKQuNsyLKBTTL4ln1o1rh2PKtv35twV7irj5SEg==}
+
zhead@2.2.4:
resolution: {integrity: sha512-8F0OI5dpWIA5IGG5NHUg9staDwz/ZPxZtvGVf01j7vHqSyZ0raHY+78atOVxRqb73AotX22uV1pXt3gYSstGag==}
@@ -7648,7 +8161,7 @@ snapshots:
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
- '@antfu/eslint-config@3.8.0(@typescript-eslint/utils@8.10.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(@vue/compiler-sfc@3.5.12)(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)(vitest@2.1.3(@types/node@22.7.7)(happy-dom@15.7.4)(lightningcss@1.27.0)(terser@5.36.0))':
+ '@antfu/eslint-config@3.8.0(@typescript-eslint/utils@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(@vue/compiler-sfc@3.5.12)(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)(vitest@2.1.3(@types/node@22.7.9)(happy-dom@15.7.4)(lightningcss@1.27.0)(terser@5.36.0))':
dependencies:
'@antfu/install-pkg': 0.4.1
'@clack/prompts': 0.7.0
@@ -7657,7 +8170,7 @@ snapshots:
'@stylistic/eslint-plugin': 2.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
'@typescript-eslint/eslint-plugin': 8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
'@typescript-eslint/parser': 8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
- '@vitest/eslint-plugin': 1.1.7(@typescript-eslint/utils@8.10.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)(vitest@2.1.3(@types/node@22.7.7)(happy-dom@15.7.4)(lightningcss@1.27.0)(terser@5.36.0))
+ '@vitest/eslint-plugin': 1.1.7(@typescript-eslint/utils@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)(vitest@2.1.3(@types/node@22.7.9)(happy-dom@15.7.4)(lightningcss@1.27.0)(terser@5.36.0))
eslint: 9.13.0(jiti@2.3.3)
eslint-config-flat-gitignore: 0.3.0(eslint@9.13.0(jiti@2.3.3))
eslint-flat-config-utils: 0.4.0
@@ -7706,6 +8219,11 @@ snapshots:
'@babel/highlight': 7.25.7
picocolors: 1.1.1
+ '@babel/code-frame@7.25.9':
+ dependencies:
+ '@babel/highlight': 7.25.9
+ picocolors: 1.1.1
+
'@babel/compat-data@7.25.7': {}
'@babel/core@7.25.7':
@@ -7755,6 +8273,13 @@ snapshots:
'@jridgewell/trace-mapping': 0.3.25
jsesc: 3.0.2
+ '@babel/generator@7.25.9':
+ dependencies:
+ '@babel/types': 7.25.9
+ '@jridgewell/gen-mapping': 0.3.5
+ '@jridgewell/trace-mapping': 0.3.25
+ jsesc: 3.0.2
+
'@babel/helper-annotate-as-pure@7.25.7':
dependencies:
'@babel/types': 7.25.8
@@ -7807,6 +8332,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-module-imports@7.25.9':
+ dependencies:
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-module-transforms@7.25.7(@babel/core@7.25.7)':
dependencies:
'@babel/core': 7.25.7
@@ -7867,8 +8399,12 @@ snapshots:
'@babel/helper-string-parser@7.25.7': {}
+ '@babel/helper-string-parser@7.25.9': {}
+
'@babel/helper-validator-identifier@7.25.7': {}
+ '@babel/helper-validator-identifier@7.25.9': {}
+
'@babel/helper-validator-option@7.25.7': {}
'@babel/helpers@7.25.7':
@@ -7883,6 +8419,13 @@ snapshots:
js-tokens: 4.0.0
picocolors: 1.1.1
+ '@babel/highlight@7.25.9':
+ dependencies:
+ '@babel/helper-validator-identifier': 7.25.9
+ chalk: 2.4.2
+ js-tokens: 4.0.0
+ picocolors: 1.1.1
+
'@babel/parser@7.25.7':
dependencies:
'@babel/types': 7.25.8
@@ -7891,6 +8434,10 @@ snapshots:
dependencies:
'@babel/types': 7.25.8
+ '@babel/parser@7.25.9':
+ dependencies:
+ '@babel/types': 7.25.9
+
'@babel/plugin-proposal-decorators@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -7957,7 +8504,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/runtime@7.25.7':
+ '@babel/runtime@7.25.9':
dependencies:
regenerator-runtime: 0.14.1
@@ -7969,6 +8516,12 @@ snapshots:
'@babel/parser': 7.25.8
'@babel/types': 7.25.7
+ '@babel/template@7.25.9':
+ dependencies:
+ '@babel/code-frame': 7.25.9
+ '@babel/parser': 7.25.9
+ '@babel/types': 7.25.9
+
'@babel/traverse@7.25.7':
dependencies:
'@babel/code-frame': 7.25.7
@@ -7981,6 +8534,18 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/traverse@7.25.9':
+ dependencies:
+ '@babel/code-frame': 7.25.9
+ '@babel/generator': 7.25.9
+ '@babel/parser': 7.25.9
+ '@babel/template': 7.25.9
+ '@babel/types': 7.25.9
+ debug: 4.3.7
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/types@7.25.7':
dependencies:
'@babel/helper-string-parser': 7.25.7
@@ -7993,6 +8558,11 @@ snapshots:
'@babel/helper-validator-identifier': 7.25.7
to-fast-properties: 2.0.0
+ '@babel/types@7.25.9':
+ dependencies:
+ '@babel/helper-string-parser': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
+
'@capsizecss/metrics@2.2.0': {}
'@capsizecss/unpack@2.3.0':
@@ -8018,10 +8588,41 @@ snapshots:
dependencies:
mime: 3.0.0
+ '@cloudflare/workerd-darwin-64@1.20241022.0':
+ optional: true
+
+ '@cloudflare/workerd-darwin-arm64@1.20241022.0':
+ optional: true
+
+ '@cloudflare/workerd-linux-64@1.20241022.0':
+ optional: true
+
+ '@cloudflare/workerd-linux-arm64@1.20241022.0':
+ optional: true
+
+ '@cloudflare/workerd-windows-64@1.20241022.0':
+ optional: true
+
+ '@cloudflare/workers-shared@0.7.0':
+ dependencies:
+ mime: 3.0.0
+ zod: 3.23.8
+
+ '@cloudflare/workers-types@4.20241022.0': {}
+
+ '@cspotcode/source-map-support@0.8.1':
+ dependencies:
+ '@jridgewell/trace-mapping': 0.3.9
+
+ '@emnapi/runtime@1.3.1':
+ dependencies:
+ tslib: 2.8.0
+ optional: true
+
'@emotion/babel-plugin@11.12.0':
dependencies:
- '@babel/helper-module-imports': 7.25.7
- '@babel/runtime': 7.25.7
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/runtime': 7.25.9
'@emotion/hash': 0.9.2
'@emotion/memoize': 0.9.0
'@emotion/serialize': 1.3.2
@@ -8084,6 +8685,16 @@ snapshots:
esquery: 1.6.0
jsdoc-type-pratt-parser: 4.1.0
+ '@esbuild-plugins/node-globals-polyfill@0.2.3(esbuild@0.17.19)':
+ dependencies:
+ esbuild: 0.17.19
+
+ '@esbuild-plugins/node-modules-polyfill@0.2.2(esbuild@0.17.19)':
+ dependencies:
+ esbuild: 0.17.19
+ escape-string-regexp: 4.0.0
+ rollup-plugin-node-polyfills: 0.2.1
+
'@esbuild/aix-ppc64@0.19.12':
optional: true
@@ -8099,6 +8710,9 @@ snapshots:
'@esbuild/aix-ppc64@0.24.0':
optional: true
+ '@esbuild/android-arm64@0.17.19':
+ optional: true
+
'@esbuild/android-arm64@0.19.12':
optional: true
@@ -8114,6 +8728,9 @@ snapshots:
'@esbuild/android-arm64@0.24.0':
optional: true
+ '@esbuild/android-arm@0.17.19':
+ optional: true
+
'@esbuild/android-arm@0.19.12':
optional: true
@@ -8129,6 +8746,9 @@ snapshots:
'@esbuild/android-arm@0.24.0':
optional: true
+ '@esbuild/android-x64@0.17.19':
+ optional: true
+
'@esbuild/android-x64@0.19.12':
optional: true
@@ -8144,6 +8764,9 @@ snapshots:
'@esbuild/android-x64@0.24.0':
optional: true
+ '@esbuild/darwin-arm64@0.17.19':
+ optional: true
+
'@esbuild/darwin-arm64@0.19.12':
optional: true
@@ -8159,6 +8782,9 @@ snapshots:
'@esbuild/darwin-arm64@0.24.0':
optional: true
+ '@esbuild/darwin-x64@0.17.19':
+ optional: true
+
'@esbuild/darwin-x64@0.19.12':
optional: true
@@ -8174,6 +8800,9 @@ snapshots:
'@esbuild/darwin-x64@0.24.0':
optional: true
+ '@esbuild/freebsd-arm64@0.17.19':
+ optional: true
+
'@esbuild/freebsd-arm64@0.19.12':
optional: true
@@ -8189,6 +8818,9 @@ snapshots:
'@esbuild/freebsd-arm64@0.24.0':
optional: true
+ '@esbuild/freebsd-x64@0.17.19':
+ optional: true
+
'@esbuild/freebsd-x64@0.19.12':
optional: true
@@ -8204,6 +8836,9 @@ snapshots:
'@esbuild/freebsd-x64@0.24.0':
optional: true
+ '@esbuild/linux-arm64@0.17.19':
+ optional: true
+
'@esbuild/linux-arm64@0.19.12':
optional: true
@@ -8219,6 +8854,9 @@ snapshots:
'@esbuild/linux-arm64@0.24.0':
optional: true
+ '@esbuild/linux-arm@0.17.19':
+ optional: true
+
'@esbuild/linux-arm@0.19.12':
optional: true
@@ -8234,6 +8872,9 @@ snapshots:
'@esbuild/linux-arm@0.24.0':
optional: true
+ '@esbuild/linux-ia32@0.17.19':
+ optional: true
+
'@esbuild/linux-ia32@0.19.12':
optional: true
@@ -8249,6 +8890,9 @@ snapshots:
'@esbuild/linux-ia32@0.24.0':
optional: true
+ '@esbuild/linux-loong64@0.17.19':
+ optional: true
+
'@esbuild/linux-loong64@0.19.12':
optional: true
@@ -8264,6 +8908,9 @@ snapshots:
'@esbuild/linux-loong64@0.24.0':
optional: true
+ '@esbuild/linux-mips64el@0.17.19':
+ optional: true
+
'@esbuild/linux-mips64el@0.19.12':
optional: true
@@ -8279,6 +8926,9 @@ snapshots:
'@esbuild/linux-mips64el@0.24.0':
optional: true
+ '@esbuild/linux-ppc64@0.17.19':
+ optional: true
+
'@esbuild/linux-ppc64@0.19.12':
optional: true
@@ -8294,6 +8944,9 @@ snapshots:
'@esbuild/linux-ppc64@0.24.0':
optional: true
+ '@esbuild/linux-riscv64@0.17.19':
+ optional: true
+
'@esbuild/linux-riscv64@0.19.12':
optional: true
@@ -8309,6 +8962,9 @@ snapshots:
'@esbuild/linux-riscv64@0.24.0':
optional: true
+ '@esbuild/linux-s390x@0.17.19':
+ optional: true
+
'@esbuild/linux-s390x@0.19.12':
optional: true
@@ -8324,6 +8980,9 @@ snapshots:
'@esbuild/linux-s390x@0.24.0':
optional: true
+ '@esbuild/linux-x64@0.17.19':
+ optional: true
+
'@esbuild/linux-x64@0.19.12':
optional: true
@@ -8339,6 +8998,9 @@ snapshots:
'@esbuild/linux-x64@0.24.0':
optional: true
+ '@esbuild/netbsd-x64@0.17.19':
+ optional: true
+
'@esbuild/netbsd-x64@0.19.12':
optional: true
@@ -8360,6 +9022,9 @@ snapshots:
'@esbuild/openbsd-arm64@0.24.0':
optional: true
+ '@esbuild/openbsd-x64@0.17.19':
+ optional: true
+
'@esbuild/openbsd-x64@0.19.12':
optional: true
@@ -8375,6 +9040,9 @@ snapshots:
'@esbuild/openbsd-x64@0.24.0':
optional: true
+ '@esbuild/sunos-x64@0.17.19':
+ optional: true
+
'@esbuild/sunos-x64@0.19.12':
optional: true
@@ -8390,6 +9058,9 @@ snapshots:
'@esbuild/sunos-x64@0.24.0':
optional: true
+ '@esbuild/win32-arm64@0.17.19':
+ optional: true
+
'@esbuild/win32-arm64@0.19.12':
optional: true
@@ -8405,6 +9076,9 @@ snapshots:
'@esbuild/win32-arm64@0.24.0':
optional: true
+ '@esbuild/win32-ia32@0.17.19':
+ optional: true
+
'@esbuild/win32-ia32@0.19.12':
optional: true
@@ -8420,6 +9094,9 @@ snapshots:
'@esbuild/win32-ia32@0.24.0':
optional: true
+ '@esbuild/win32-x64@0.17.19':
+ optional: true
+
'@esbuild/win32-x64@0.19.12':
optional: true
@@ -8599,7 +9276,7 @@ snapshots:
debug: 4.3.7
kolorist: 1.8.0
local-pkg: 0.5.0
- mlly: 1.7.1
+ mlly: 1.7.2
transitivePeerDependencies:
- supports-color
@@ -8608,6 +9285,81 @@ snapshots:
'@iconify/types': 2.0.0
vue: 3.5.12(typescript@5.6.3)
+ '@img/sharp-darwin-arm64@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-darwin-arm64': 1.0.4
+ optional: true
+
+ '@img/sharp-darwin-x64@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-darwin-x64': 1.0.4
+ optional: true
+
+ '@img/sharp-libvips-darwin-arm64@1.0.4':
+ optional: true
+
+ '@img/sharp-libvips-darwin-x64@1.0.4':
+ optional: true
+
+ '@img/sharp-libvips-linux-arm64@1.0.4':
+ optional: true
+
+ '@img/sharp-libvips-linux-arm@1.0.5':
+ optional: true
+
+ '@img/sharp-libvips-linux-s390x@1.0.4':
+ optional: true
+
+ '@img/sharp-libvips-linux-x64@1.0.4':
+ optional: true
+
+ '@img/sharp-libvips-linuxmusl-arm64@1.0.4':
+ optional: true
+
+ '@img/sharp-libvips-linuxmusl-x64@1.0.4':
+ optional: true
+
+ '@img/sharp-linux-arm64@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-arm64': 1.0.4
+ optional: true
+
+ '@img/sharp-linux-arm@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-arm': 1.0.5
+ optional: true
+
+ '@img/sharp-linux-s390x@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-s390x': 1.0.4
+ optional: true
+
+ '@img/sharp-linux-x64@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-x64': 1.0.4
+ optional: true
+
+ '@img/sharp-linuxmusl-arm64@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linuxmusl-arm64': 1.0.4
+ optional: true
+
+ '@img/sharp-linuxmusl-x64@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linuxmusl-x64': 1.0.4
+ optional: true
+
+ '@img/sharp-wasm32@0.33.5':
+ dependencies:
+ '@emnapi/runtime': 1.3.1
+ optional: true
+
+ '@img/sharp-win32-ia32@0.33.5':
+ optional: true
+
+ '@img/sharp-win32-x64@0.33.5':
+ optional: true
+
'@inspira-ui/plugins@0.0.1':
dependencies:
mini-svg-data-uri: 1.4.4
@@ -8628,8 +9380,8 @@ snapshots:
escodegen: 2.1.0
estree-walker: 2.0.2
jsonc-eslint-parser: 2.4.0
- magic-string: 0.30.11
- mlly: 1.7.1
+ magic-string: 0.30.12
+ mlly: 1.7.2
source-map-js: 1.2.1
yaml-eslint-parser: 1.2.3
optionalDependencies:
@@ -8657,11 +9409,11 @@ snapshots:
'@intlify/shared@9.14.1': {}
- '@intlify/unplugin-vue-i18n@3.0.1(rollup@3.29.5)(vue-i18n@9.14.1(vue@3.5.12(typescript@5.6.3)))(webpack-sources@3.2.3)':
+ '@intlify/unplugin-vue-i18n@3.0.1(rollup@4.24.0)(vue-i18n@9.14.1(vue@3.5.12(typescript@5.6.3)))(webpack-sources@3.2.3)':
dependencies:
'@intlify/bundle-utils': 7.5.1(vue-i18n@9.14.1(vue@3.5.12(typescript@5.6.3)))
'@intlify/shared': 9.14.1
- '@rollup/pluginutils': 5.1.2(rollup@3.29.5)
+ '@rollup/pluginutils': 5.1.2(rollup@4.24.0)
'@vue/compiler-sfc': 3.5.11
debug: 4.3.7
fast-glob: 3.3.2
@@ -8717,6 +9469,11 @@ snapshots:
'@jridgewell/resolve-uri': 3.1.2
'@jridgewell/sourcemap-codec': 1.5.0
+ '@jridgewell/trace-mapping@0.3.9':
+ dependencies:
+ '@jridgewell/resolve-uri': 3.1.2
+ '@jridgewell/sourcemap-codec': 1.5.0
+
'@jsdevtools/ez-spawn@3.0.4':
dependencies:
call-me-maybe: 1.0.2
@@ -8770,11 +9527,11 @@ snapshots:
'@mapbox/whoots-js@3.1.0': {}
- '@miyaneee/rollup-plugin-json5@1.2.0(rollup@3.29.5)':
+ '@miyaneee/rollup-plugin-json5@1.2.0(rollup@4.24.0)':
dependencies:
- '@rollup/pluginutils': 5.1.2(rollup@3.29.5)
+ '@rollup/pluginutils': 5.1.2(rollup@4.24.0)
json5: 2.2.3
- rollup: 3.29.5
+ rollup: 4.24.0
'@netlify/functions@2.8.2':
dependencies:
@@ -8826,7 +9583,7 @@ snapshots:
pathe: 1.1.2
remark-mdc: 3.2.1
scule: 1.3.0
- shiki: 1.22.0
+ shiki: 1.22.1
slugify: 1.6.6
tar: 7.4.3
ufo: 1.5.4
@@ -8847,88 +9604,52 @@ snapshots:
'@nuxt/devalue@2.0.2': {}
- '@nuxt/devtools-kit@1.5.2(magicast@0.3.5)(rollup@3.29.5)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)':
- dependencies:
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@3.29.5)(webpack-sources@3.2.3)
- '@nuxt/schema': 3.13.2(rollup@3.29.5)(webpack-sources@3.2.3)
- execa: 7.2.0
- vite: 5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0)
- transitivePeerDependencies:
- - magicast
- - rollup
- - supports-color
- - webpack-sources
-
- '@nuxt/devtools-kit@1.5.2(magicast@0.3.5)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)':
- dependencies:
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
- '@nuxt/schema': 3.13.2(rollup@4.24.0)(webpack-sources@3.2.3)
- execa: 7.2.0
- vite: 5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0)
- transitivePeerDependencies:
- - magicast
- - rollup
- - supports-color
- - webpack-sources
-
- '@nuxt/devtools-kit@1.6.0(magicast@0.3.5)(rollup@3.29.5)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)':
- dependencies:
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@3.29.5)(webpack-sources@3.2.3)
- '@nuxt/schema': 3.13.2(rollup@3.29.5)(webpack-sources@3.2.3)
- execa: 7.2.0
- vite: 5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0)
- transitivePeerDependencies:
- - magicast
- - rollup
- - supports-color
- - webpack-sources
-
- '@nuxt/devtools-kit@1.6.0(magicast@0.3.5)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)':
+ '@nuxt/devtools-kit@1.5.2(magicast@0.3.5)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)':
dependencies:
'@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
'@nuxt/schema': 3.13.2(rollup@4.24.0)(webpack-sources@3.2.3)
execa: 7.2.0
- vite: 5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0)
+ vite: 5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0)
transitivePeerDependencies:
- magicast
- rollup
- supports-color
- webpack-sources
- '@nuxt/devtools-kit@1.6.0(magicast@0.3.5)(rollup@4.24.0)(vite@5.4.9(@types/node@22.7.7)(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.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)':
dependencies:
'@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
'@nuxt/schema': 3.13.2(rollup@4.24.0)(webpack-sources@3.2.3)
execa: 7.2.0
- vite: 5.4.9(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0)
+ vite: 5.4.8(@types/node@22.7.9)(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.0)(vite@5.4.8(@types/node@22.7.7)(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.0)(webpack@5.95.0(esbuild@0.23.1)))(@vue/compiler-core@3.5.12)(fuse.js@7.0.0)(magicast@0.3.5)(nuxt@3.13.2(@parcel/watcher@2.4.1)(@types/node@22.7.7)(eslint@9.13.0(jiti@2.3.3))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.0)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3))(postcss@8.4.47)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.7)(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.23.1))':
+ '@nuxt/devtools-ui-kit@1.6.0(@nuxt/devtools@1.6.0(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(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.0)(webpack@5.95.0(esbuild@0.17.19)))(@vue/compiler-core@3.5.12)(fuse.js@7.0.0)(magicast@0.3.5)(nuxt@3.13.2(@parcel/watcher@2.4.1)(@types/node@22.7.9)(eslint@9.13.0(jiti@2.3.3))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.0)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3))(postcss@8.4.47)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(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.3
'@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.0)(vite@5.4.8(@types/node@22.7.7)(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.0)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
+ '@nuxt/devtools': 1.6.0(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(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.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
'@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.0)(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.0)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)(webpack@5.95.0(esbuild@0.23.1))
+ '@unocss/nuxt': 0.62.4(magicast@0.3.5)(postcss@8.4.47)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(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.1.0(vue@3.5.12(typescript@5.6.3))
'@vueuse/integrations': 11.1.0(focus-trap@7.6.0)(fuse.js@7.0.0)(vue@3.5.12(typescript@5.6.3))
- '@vueuse/nuxt': 11.1.0(magicast@0.3.5)(nuxt@3.13.2(@parcel/watcher@2.4.1)(@types/node@22.7.7)(eslint@9.13.0(jiti@2.3.3))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.0)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3))(rollup@4.24.0)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
+ '@vueuse/nuxt': 11.1.0(magicast@0.3.5)(nuxt@3.13.2(@parcel/watcher@2.4.1)(@types/node@22.7.9)(eslint@9.13.0(jiti@2.3.3))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.0)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3))(rollup@4.24.0)(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.0)(webpack@5.95.0(esbuild@0.23.1)))(postcss@8.4.47)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))
+ unocss: 0.62.4(@unocss/webpack@0.62.4(rollup@4.24.0)(webpack@5.95.0(esbuild@0.17.19)))(postcss@8.4.47)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))
v-lazy-show: 0.2.4(@vue/compiler-core@3.5.12)
transitivePeerDependencies:
- '@unocss/webpack'
@@ -8968,13 +9689,13 @@ snapshots:
rc9: 2.1.2
semver: 7.6.3
- '@nuxt/devtools@1.6.0(rollup@3.29.5)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)':
+ '@nuxt/devtools@1.6.0(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)':
dependencies:
'@antfu/utils': 0.7.10
- '@nuxt/devtools-kit': 1.6.0(magicast@0.3.5)(rollup@3.29.5)(vite@5.4.8(@types/node@22.7.7)(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.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
'@nuxt/devtools-wizard': 1.6.0
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@3.29.5)(webpack-sources@3.2.3)
- '@vue/devtools-core': 7.4.4(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))
+ '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
+ '@vue/devtools-core': 7.4.4(vite@5.4.8(@types/node@22.7.9)(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
@@ -9002,10 +9723,10 @@ snapshots:
simple-git: 3.27.0
sirv: 2.0.4
tinyglobby: 0.2.9
- unimport: 3.13.1(rollup@3.29.5)(webpack-sources@3.2.3)
- vite: 5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0)
- vite-plugin-inspect: 0.8.7(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@3.29.5)(webpack-sources@3.2.3))(rollup@3.29.5)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))
- vite-plugin-vue-inspector: 5.1.3(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))
+ unimport: 3.13.1(rollup@4.24.0)(webpack-sources@3.2.3)
+ vite: 5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0)
+ vite-plugin-inspect: 0.8.7(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3))(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))
+ vite-plugin-vue-inspector: 5.1.3(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))
which: 3.0.1
ws: 8.18.0
transitivePeerDependencies:
@@ -9016,105 +9737,9 @@ snapshots:
- vue
- webpack-sources
- '@nuxt/devtools@1.6.0(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.7)(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.0)(vite@5.4.8(@types/node@22.7.9)(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.0)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
- '@nuxt/devtools-wizard': 1.6.0
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
- '@vue/devtools-core': 7.4.4(vite@5.4.8(@types/node@22.7.7)(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.0)(webpack-sources@3.2.3)
- vite: 5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0)
- vite-plugin-inspect: 0.8.7(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3))(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))
- vite-plugin-vue-inspector: 5.1.3(vite@5.4.8(@types/node@22.7.7)(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/devtools@1.6.0(rollup@4.24.0)(vite@5.4.9(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)':
- dependencies:
- '@antfu/utils': 0.7.10
- '@nuxt/devtools-kit': 1.6.0(magicast@0.3.5)(rollup@4.24.0)(vite@5.4.9(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
- '@nuxt/devtools-wizard': 1.6.0
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
- '@vue/devtools-core': 7.4.4(vite@5.4.9(@types/node@22.7.7)(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.0)(webpack-sources@3.2.3)
- vite: 5.4.9(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0)
- vite-plugin-inspect: 0.8.7(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@3.29.5)(webpack-sources@3.2.3))(rollup@4.24.0)(vite@5.4.9(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))
- vite-plugin-vue-inspector: 5.1.3(vite@5.4.9(@types/node@22.7.7)(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.0(ioredis@5.4.1)(magicast@0.3.5)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)':
- dependencies:
- '@nuxt/devtools-kit': 1.5.2(magicast@0.3.5)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.7)(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.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
'@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
chalk: 5.3.0
css-tree: 3.0.0
@@ -9124,14 +9749,14 @@ snapshots:
h3: 1.13.0
jiti: 2.3.3
magic-regexp: 0.8.0(webpack-sources@3.2.3)
- magic-string: 0.30.11
+ magic-string: 0.30.12
node-fetch-native: 1.6.4
ohash: 1.1.4
pathe: 1.1.2
- sirv: 2.0.4
+ sirv: 3.0.0
tinyglobby: 0.2.9
ufo: 1.5.4
- unifont: 0.1.3
+ unifont: 0.1.5
unplugin: 1.14.1(webpack-sources@3.2.3)
unstorage: 1.12.0(ioredis@5.4.1)
transitivePeerDependencies:
@@ -9155,13 +9780,13 @@ snapshots:
- vite
- webpack-sources
- '@nuxt/icon@1.5.6(magicast@0.3.5)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.7)(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.0)(vite@5.4.8(@types/node@22.7.9)(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.0)(vite@5.4.8(@types/node@22.7.7)(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.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
'@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
consola: 3.2.3
local-pkg: 0.5.0
@@ -9211,34 +9836,6 @@ snapshots:
- supports-color
- webpack-sources
- '@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@3.29.5)(webpack-sources@3.2.3)':
- dependencies:
- '@nuxt/schema': 3.13.2(rollup@3.29.5)(webpack-sources@3.2.3)
- c12: 1.11.2(magicast@0.3.5)
- consola: 3.2.3
- defu: 6.1.4
- destr: 2.0.3
- globby: 14.0.2
- hash-sum: 2.0.0
- ignore: 5.3.2
- jiti: 1.21.6
- klona: 2.0.6
- knitwork: 1.1.0
- mlly: 1.7.1
- pathe: 1.1.2
- pkg-types: 1.2.0
- scule: 1.3.0
- semver: 7.6.3
- ufo: 1.5.4
- unctx: 2.3.1(webpack-sources@3.2.3)
- unimport: 3.13.1(rollup@3.29.5)(webpack-sources@3.2.3)
- untyped: 1.5.0
- transitivePeerDependencies:
- - magicast
- - rollup
- - supports-color
- - webpack-sources
-
'@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)':
dependencies:
'@nuxt/schema': 3.13.2(rollup@4.24.0)(webpack-sources@3.2.3)
@@ -9267,15 +9864,15 @@ snapshots:
- supports-color
- webpack-sources
- '@nuxt/module-builder@0.8.4(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@3.29.5)(webpack-sources@3.2.3))(nuxi@3.14.0)(typescript@5.6.3)(webpack-sources@3.2.3)':
+ '@nuxt/module-builder@0.8.4(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3))(nuxi@3.15.0)(typescript@5.6.3)(webpack-sources@3.2.3)':
dependencies:
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@3.29.5)(webpack-sources@3.2.3)
+ '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
citty: 0.1.6
consola: 3.2.3
defu: 6.1.4
magic-regexp: 0.8.0(webpack-sources@3.2.3)
mlly: 1.7.1
- nuxi: 3.14.0
+ nuxi: 3.15.0
pathe: 1.1.2
pkg-types: 1.2.0
tsconfck: 3.1.3(typescript@5.6.3)
@@ -9287,25 +9884,6 @@ snapshots:
- vue-tsc
- webpack-sources
- '@nuxt/schema@3.13.2(rollup@3.29.5)(webpack-sources@3.2.3)':
- dependencies:
- compatx: 0.1.8
- consola: 3.2.3
- defu: 6.1.4
- hookable: 5.5.3
- pathe: 1.1.2
- pkg-types: 1.2.0
- scule: 1.3.0
- std-env: 3.7.0
- ufo: 1.5.4
- uncrypto: 0.1.3
- unimport: 3.13.1(rollup@3.29.5)(webpack-sources@3.2.3)
- untyped: 1.5.0
- transitivePeerDependencies:
- - rollup
- - supports-color
- - webpack-sources
-
'@nuxt/schema@3.13.2(rollup@4.24.0)(webpack-sources@3.2.3)':
dependencies:
compatx: 0.1.8
@@ -9325,10 +9903,10 @@ snapshots:
- supports-color
- webpack-sources
- '@nuxt/scripts@0.9.5(@nuxt/devtools@1.6.0(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.7)(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.0)(webpack@5.95.0(esbuild@0.23.1)))(@vue/compiler-core@3.5.12)(fuse.js@7.0.0)(ioredis@5.4.1)(magicast@0.3.5)(nuxt@3.13.2(@parcel/watcher@2.4.1)(@types/node@22.7.7)(eslint@9.13.0(jiti@2.3.3))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.0)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3))(postcss@8.4.47)(rollup@4.24.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.7)(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.23.1))':
+ '@nuxt/scripts@0.9.5(@nuxt/devtools@1.6.0(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(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.0)(webpack@5.95.0(esbuild@0.17.19)))(@vue/compiler-core@3.5.12)(fuse.js@7.0.0)(ioredis@5.4.1)(magicast@0.3.5)(nuxt@3.13.2(@parcel/watcher@2.4.1)(@types/node@22.7.9)(eslint@9.13.0(jiti@2.3.3))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.0)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3))(postcss@8.4.47)(rollup@4.24.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.9)(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.0)(vite@5.4.8(@types/node@22.7.7)(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.0)(vite@5.4.8(@types/node@22.7.7)(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.0)(webpack@5.95.0(esbuild@0.23.1)))(@vue/compiler-core@3.5.12)(fuse.js@7.0.0)(magicast@0.3.5)(nuxt@3.13.2(@parcel/watcher@2.4.1)(@types/node@22.7.7)(eslint@9.13.0(jiti@2.3.3))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.0)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3))(postcss@8.4.47)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.7)(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.23.1))
+ '@nuxt/devtools-kit': 1.6.0(magicast@0.3.5)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(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.0)(vite@5.4.8(@types/node@22.7.9)(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.0)(webpack@5.95.0(esbuild@0.17.19)))(@vue/compiler-core@3.5.12)(fuse.js@7.0.0)(magicast@0.3.5)(nuxt@3.13.2(@parcel/watcher@2.4.1)(@types/node@22.7.9)(eslint@9.13.0(jiti@2.3.3))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.0)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3))(postcss@8.4.47)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(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.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
'@stripe/stripe-js': 4.8.0
'@types/google.maps': 3.58.1
@@ -9394,32 +9972,6 @@ snapshots:
- webpack
- webpack-sources
- '@nuxt/telemetry@2.6.0(magicast@0.3.5)(rollup@3.29.5)(webpack-sources@3.2.3)':
- dependencies:
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@3.29.5)(webpack-sources@3.2.3)
- ci-info: 4.0.0
- consola: 3.2.3
- create-require: 1.1.1
- defu: 6.1.4
- destr: 2.0.3
- dotenv: 16.4.5
- git-url-parse: 15.0.0
- is-docker: 3.0.0
- jiti: 1.21.6
- mri: 1.2.0
- nanoid: 5.0.7
- ofetch: 1.4.1
- package-manager-detector: 0.2.0
- parse-git-config: 3.0.0
- pathe: 1.1.2
- rc9: 2.1.2
- std-env: 3.7.0
- transitivePeerDependencies:
- - magicast
- - rollup
- - supports-color
- - webpack-sources
-
'@nuxt/telemetry@2.6.0(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)':
dependencies:
'@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
@@ -9446,10 +9998,10 @@ snapshots:
- supports-color
- webpack-sources
- '@nuxt/test-utils@3.14.4(@vue/test-utils@2.4.6)(h3@1.13.0)(happy-dom@15.7.4)(magicast@0.3.5)(nitropack@2.9.7(magicast@0.3.5)(webpack-sources@3.2.3))(playwright-core@1.48.1)(rollup@3.29.5)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(vitest@2.1.3(@types/node@22.7.7)(happy-dom@15.7.4)(lightningcss@1.27.0)(terser@5.36.0))(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)':
+ '@nuxt/test-utils@3.14.4(@vue/test-utils@2.4.6)(h3@1.13.0)(happy-dom@15.7.4)(magicast@0.3.5)(nitropack@2.9.7(magicast@0.3.5)(webpack-sources@3.2.3))(playwright-core@1.48.1)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(vitest@2.1.3(@types/node@22.7.9)(happy-dom@15.7.4)(lightningcss@1.27.0)(terser@5.36.0))(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)':
dependencies:
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@3.29.5)(webpack-sources@3.2.3)
- '@nuxt/schema': 3.13.2(rollup@3.29.5)(webpack-sources@3.2.3)
+ '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
+ '@nuxt/schema': 3.13.2(rollup@4.24.0)(webpack-sources@3.2.3)
c12: 2.0.1(magicast@0.3.5)
consola: 3.2.3
defu: 6.1.4
@@ -9472,26 +10024,26 @@ snapshots:
ufo: 1.5.4
unenv: 1.10.0
unplugin: 1.14.1(webpack-sources@3.2.3)
- vite: 5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0)
- vitest-environment-nuxt: 1.0.1(@vue/test-utils@2.4.6)(h3@1.13.0)(happy-dom@15.7.4)(magicast@0.3.5)(nitropack@2.9.7(magicast@0.3.5)(webpack-sources@3.2.3))(playwright-core@1.48.1)(rollup@3.29.5)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(vitest@2.1.3(@types/node@22.7.7)(happy-dom@15.7.4)(lightningcss@1.27.0)(terser@5.36.0))(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)
+ vite: 5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0)
+ vitest-environment-nuxt: 1.0.1(@vue/test-utils@2.4.6)(h3@1.13.0)(happy-dom@15.7.4)(magicast@0.3.5)(nitropack@2.9.7(magicast@0.3.5)(webpack-sources@3.2.3))(playwright-core@1.48.1)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(vitest@2.1.3(@types/node@22.7.9)(happy-dom@15.7.4)(lightningcss@1.27.0)(terser@5.36.0))(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)
vue: 3.5.12(typescript@5.6.3)
vue-router: 4.4.5(vue@3.5.12(typescript@5.6.3))
optionalDependencies:
'@vue/test-utils': 2.4.6
happy-dom: 15.7.4
playwright-core: 1.48.1
- vitest: 2.1.3(@types/node@22.7.7)(happy-dom@15.7.4)(lightningcss@1.27.0)(terser@5.36.0)
+ vitest: 2.1.3(@types/node@22.7.9)(happy-dom@15.7.4)(lightningcss@1.27.0)(terser@5.36.0)
transitivePeerDependencies:
- magicast
- rollup
- supports-color
- webpack-sources
- '@nuxt/ui-pro@2.0.0-alpha.6(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.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.7)(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(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.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.9)(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.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
'@nuxt/schema': 3.13.2(rollup@4.24.0)(webpack-sources@3.2.3)
- '@nuxt/ui': 3.0.0-alpha.6(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.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.7)(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)(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.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
'@vueuse/core': 11.1.0(vue@3.5.12(typescript@5.6.3))
consola: 3.2.3
defu: 6.1.4
@@ -9537,15 +10089,15 @@ snapshots:
- vue
- webpack-sources
- '@nuxt/ui@3.0.0-alpha.6(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.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.7)(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)(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.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.9)(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.0(ioredis@5.4.1)(magicast@0.3.5)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.7)(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.0)(vite@5.4.8(@types/node@22.7.7)(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.0)(vite@5.4.8(@types/node@22.7.9)(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.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
'@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
'@nuxt/schema': 3.13.2(rollup@4.24.0)(webpack-sources@3.2.3)
'@nuxtjs/color-mode': 3.5.1(magicast@0.3.5)(rollup@4.24.0)(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.7.7)(lightningcss@1.27.0)(terser@5.36.0))
+ '@tailwindcss/vite': 4.0.0-alpha.24(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))
'@vueuse/core': 11.1.0(vue@3.5.12(typescript@5.6.3))
'@vueuse/integrations': 11.1.0(focus-trap@7.6.0)(fuse.js@7.0.0)(vue@3.5.12(typescript@5.6.3))
defu: 6.1.4
@@ -9599,12 +10151,12 @@ snapshots:
- vue
- webpack-sources
- '@nuxt/vite-builder@3.13.2(@types/node@22.7.7)(eslint@9.13.0(jiti@2.3.3))(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@3.29.5)(terser@5.36.0)(typescript@5.6.3)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)':
+ '@nuxt/vite-builder@3.13.2(@types/node@22.7.9)(eslint@9.13.0(jiti@2.3.3))(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.0)(terser@5.36.0)(typescript@5.6.3)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)':
dependencies:
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@3.29.5)(webpack-sources@3.2.3)
- '@rollup/plugin-replace': 5.0.7(rollup@3.29.5)
- '@vitejs/plugin-vue': 5.1.4(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))
- '@vitejs/plugin-vue-jsx': 4.0.1(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))
+ '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
+ '@rollup/plugin-replace': 5.0.7(rollup@4.24.0)
+ '@vitejs/plugin-vue': 5.1.4(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))
+ '@vitejs/plugin-vue-jsx': 4.0.1(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))
autoprefixer: 10.4.20(postcss@8.4.47)
clear: 0.1.0
consola: 3.2.3
@@ -9624,15 +10176,15 @@ snapshots:
perfect-debounce: 1.0.0
pkg-types: 1.2.0
postcss: 8.4.47
- rollup-plugin-visualizer: 5.12.0(rollup@3.29.5)
+ rollup-plugin-visualizer: 5.12.0(rollup@4.24.0)
std-env: 3.7.0
strip-literal: 2.1.0
ufo: 1.5.4
unenv: 1.10.0
unplugin: 1.14.1(webpack-sources@3.2.3)
- vite: 5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0)
- vite-node: 2.1.2(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0)
- vite-plugin-checker: 0.8.0(eslint@9.13.0(jiti@2.3.3))(optionator@0.9.4)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))
+ vite: 5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0)
+ vite-node: 2.1.2(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0)
+ vite-plugin-checker: 0.8.0(eslint@9.13.0(jiti@2.3.3))(optionator@0.9.4)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))
vue: 3.5.12(typescript@5.6.3)
vue-bundle-renderer: 2.1.1
transitivePeerDependencies:
@@ -9658,63 +10210,45 @@ snapshots:
- vue-tsc
- webpack-sources
- '@nuxt/vite-builder@3.13.2(@types/node@22.7.7)(eslint@9.13.0(jiti@2.3.3))(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.0)(terser@5.36.0)(typescript@5.6.3)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)':
+ '@nuxthub/core@0.7.37(ioredis@5.4.1)(magicast@0.3.5)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)':
dependencies:
+ '@cloudflare/workers-types': 4.20241022.0
+ '@nuxt/devtools-kit': 1.6.0(magicast@0.3.5)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
'@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
- '@rollup/plugin-replace': 5.0.7(rollup@4.24.0)
- '@vitejs/plugin-vue': 5.1.4(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))
- '@vitejs/plugin-vue-jsx': 4.0.1(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))
- autoprefixer: 10.4.20(postcss@8.4.47)
- clear: 0.1.0
- consola: 3.2.3
- cssnano: 7.0.6(postcss@8.4.47)
+ '@uploadthing/mime-types': 0.3.0
+ citty: 0.1.6
+ confbox: 0.1.8
defu: 6.1.4
- esbuild: 0.23.1
- escape-string-regexp: 5.0.0
- estree-walker: 3.0.3
- externality: 1.0.2
- get-port-please: 3.1.2
+ destr: 2.0.3
h3: 1.13.0
- knitwork: 1.1.0
- magic-string: 0.30.11
- mlly: 1.7.1
- ohash: 1.1.4
+ mime: 4.0.4
+ nitro-cloudflare-dev: 0.2.1
+ ofetch: 1.4.1
pathe: 1.1.2
- perfect-debounce: 1.0.0
- pkg-types: 1.2.0
- postcss: 8.4.47
- rollup-plugin-visualizer: 5.12.0(rollup@4.24.0)
+ pkg-types: 1.2.1
std-env: 3.7.0
- strip-literal: 2.1.0
ufo: 1.5.4
- unenv: 1.10.0
- unplugin: 1.14.1(webpack-sources@3.2.3)
- vite: 5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0)
- vite-node: 2.1.2(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0)
- vite-plugin-checker: 0.8.0(eslint@9.13.0(jiti@2.3.3))(optionator@0.9.4)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))
- vue: 3.5.12(typescript@5.6.3)
- vue-bundle-renderer: 2.1.1
+ uncrypto: 0.1.3
+ unstorage: 1.12.0(ioredis@5.4.1)
+ zod: 3.23.8
transitivePeerDependencies:
- - '@biomejs/biome'
- - '@types/node'
- - eslint
- - less
- - lightningcss
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@upstash/redis'
+ - '@vercel/kv'
+ - idb-keyval
+ - ioredis
- magicast
- - meow
- - optionator
- rollup
- - sass
- - sass-embedded
- - stylelint
- - stylus
- - sugarss
- supports-color
- - terser
- - typescript
- - vls
- - vti
- - vue-tsc
+ - vite
- webpack-sources
'@nuxtjs/color-mode@3.5.1(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)':
@@ -9730,15 +10264,15 @@ snapshots:
- supports-color
- webpack-sources
- '@nuxtjs/i18n@8.5.5(magicast@0.3.5)(rollup@3.29.5)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)':
+ '@nuxtjs/i18n@8.5.5(magicast@0.3.5)(rollup@4.24.0)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)':
dependencies:
'@intlify/h3': 0.5.0
'@intlify/shared': 9.14.1
- '@intlify/unplugin-vue-i18n': 3.0.1(rollup@3.29.5)(vue-i18n@9.14.1(vue@3.5.12(typescript@5.6.3)))(webpack-sources@3.2.3)
+ '@intlify/unplugin-vue-i18n': 3.0.1(rollup@4.24.0)(vue-i18n@9.14.1(vue@3.5.12(typescript@5.6.3)))(webpack-sources@3.2.3)
'@intlify/utils': 0.12.0
- '@miyaneee/rollup-plugin-json5': 1.2.0(rollup@3.29.5)
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@3.29.5)(webpack-sources@3.2.3)
- '@rollup/plugin-yaml': 4.1.2(rollup@3.29.5)
+ '@miyaneee/rollup-plugin-json5': 1.2.0(rollup@4.24.0)
+ '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
+ '@rollup/plugin-yaml': 4.1.2(rollup@4.24.0)
'@vue/compiler-sfc': 3.5.11
debug: 4.3.7
defu: 6.1.4
@@ -9794,7 +10328,7 @@ snapshots:
remark-parse: 11.0.0
remark-rehype: 11.1.1
scule: 1.3.0
- shiki: 1.22.0
+ shiki: 1.22.1
ufo: 1.5.4
unified: 11.0.5
unist-builder: 4.0.0
@@ -9806,14 +10340,14 @@ snapshots:
- supports-color
- webpack-sources
- '@nuxtjs/robots@4.1.9(magicast@0.3.5)(rollup@3.29.5)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)':
+ '@nuxtjs/robots@4.1.9(magicast@0.3.5)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)':
dependencies:
- '@nuxt/devtools-kit': 1.6.0(magicast@0.3.5)(rollup@3.29.5)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@3.29.5)(webpack-sources@3.2.3)
+ '@nuxt/devtools-kit': 1.6.0(magicast@0.3.5)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
+ '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
consola: 3.2.3
defu: 6.1.4
- nuxt-site-config: 2.2.18(magicast@0.3.5)(rollup@3.29.5)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
- nuxt-site-config-kit: 2.2.18(magicast@0.3.5)(rollup@3.29.5)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
+ nuxt-site-config: 2.2.18(magicast@0.3.5)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
+ nuxt-site-config-kit: 2.2.18(magicast@0.3.5)(rollup@4.24.0)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
pathe: 1.1.2
pkg-types: 1.2.1
sirv: 3.0.0
@@ -9827,15 +10361,15 @@ snapshots:
- vue
- webpack-sources
- '@nuxtjs/sitemap@6.1.2(h3@1.13.0)(magicast@0.3.5)(rollup@3.29.5)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)':
+ '@nuxtjs/sitemap@6.1.2(h3@1.13.0)(magicast@0.3.5)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)':
dependencies:
- '@nuxt/devtools-kit': 1.6.0(magicast@0.3.5)(rollup@3.29.5)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@3.29.5)(webpack-sources@3.2.3)
+ '@nuxt/devtools-kit': 1.6.0(magicast@0.3.5)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
+ '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
chalk: 5.3.0
defu: 6.1.4
h3-compression: 0.3.2(h3@1.13.0)
- nuxt-site-config: 2.2.18(magicast@0.3.5)(rollup@3.29.5)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
- nuxt-site-config-kit: 2.2.18(magicast@0.3.5)(rollup@3.29.5)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
+ nuxt-site-config: 2.2.18(magicast@0.3.5)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
+ nuxt-site-config-kit: 2.2.18(magicast@0.3.5)(rollup@4.24.0)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
ofetch: 1.4.1
pathe: 1.1.2
pkg-types: 1.2.1
@@ -10214,13 +10748,13 @@ snapshots:
optionalDependencies:
rollup: 4.24.0
- '@rollup/plugin-yaml@4.1.2(rollup@3.29.5)':
+ '@rollup/plugin-yaml@4.1.2(rollup@4.24.0)':
dependencies:
- '@rollup/pluginutils': 5.1.2(rollup@3.29.5)
+ '@rollup/pluginutils': 5.1.2(rollup@4.24.0)
js-yaml: 4.1.0
tosource: 2.0.0-alpha.3
optionalDependencies:
- rollup: 3.29.5
+ rollup: 4.24.0
'@rollup/pluginutils@4.2.1':
dependencies:
@@ -10311,6 +10845,15 @@ snapshots:
'@types/hast': 3.0.4
hast-util-to-html: 9.0.3
+ '@shikijs/core@1.22.1':
+ dependencies:
+ '@shikijs/engine-javascript': 1.22.1
+ '@shikijs/engine-oniguruma': 1.22.1
+ '@shikijs/types': 1.22.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
@@ -10323,6 +10866,12 @@ snapshots:
'@shikijs/vscode-textmate': 9.3.0
oniguruma-to-js: 0.4.3
+ '@shikijs/engine-javascript@1.22.1':
+ dependencies:
+ '@shikijs/types': 1.22.1
+ '@shikijs/vscode-textmate': 9.3.0
+ oniguruma-to-js: 0.4.3
+
'@shikijs/engine-oniguruma@1.21.0':
dependencies:
'@shikijs/types': 1.21.0
@@ -10333,6 +10882,11 @@ snapshots:
'@shikijs/types': 1.22.0
'@shikijs/vscode-textmate': 9.3.0
+ '@shikijs/engine-oniguruma@1.22.1':
+ dependencies:
+ '@shikijs/types': 1.22.1
+ '@shikijs/vscode-textmate': 9.3.0
+
'@shikijs/transformers@1.22.0':
dependencies:
shiki: 1.22.0
@@ -10356,6 +10910,11 @@ snapshots:
'@shikijs/vscode-textmate': 9.3.0
'@types/hast': 3.0.4
+ '@shikijs/types@1.22.1':
+ dependencies:
+ '@shikijs/vscode-textmate': 9.3.0
+ '@types/hast': 3.0.4
+
'@shikijs/vitepress-twoslash@1.21.0(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3))(typescript@5.6.3)':
dependencies:
'@shikijs/twoslash': 1.21.0(typescript@5.6.3)
@@ -10464,7 +11023,7 @@ snapshots:
transitivePeerDependencies:
- postcss
- '@tailwindcss/vite@4.0.0-alpha.24(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))':
+ '@tailwindcss/vite@4.0.0-alpha.24(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))':
dependencies:
'@tailwindcss/node': 4.0.0-alpha.24
'@tailwindcss/oxide': 4.0.0-alpha.24
@@ -10472,7 +11031,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.7.7)(lightningcss@1.27.0)(terser@5.36.0)
+ vite: 5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0)
'@tanstack/virtual-core@3.10.8': {}
@@ -10660,11 +11219,15 @@ snapshots:
'@types/ms@0.7.34': {}
+ '@types/node-forge@1.3.11':
+ dependencies:
+ '@types/node': 22.7.9
+
'@types/node@22.7.4':
dependencies:
undici-types: 6.19.8
- '@types/node@22.7.7':
+ '@types/node@22.7.9':
dependencies:
undici-types: 6.19.8
@@ -10752,10 +11315,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/scope-manager@8.10.0':
+ '@typescript-eslint/scope-manager@8.11.0':
dependencies:
- '@typescript-eslint/types': 8.10.0
- '@typescript-eslint/visitor-keys': 8.10.0
+ '@typescript-eslint/types': 8.11.0
+ '@typescript-eslint/visitor-keys': 8.11.0
'@typescript-eslint/scope-manager@8.9.0':
dependencies:
@@ -10774,14 +11337,14 @@ snapshots:
- eslint
- supports-color
- '@typescript-eslint/types@8.10.0': {}
+ '@typescript-eslint/types@8.11.0': {}
'@typescript-eslint/types@8.9.0': {}
- '@typescript-eslint/typescript-estree@8.10.0(typescript@5.6.3)':
+ '@typescript-eslint/typescript-estree@8.11.0(typescript@5.6.3)':
dependencies:
- '@typescript-eslint/types': 8.10.0
- '@typescript-eslint/visitor-keys': 8.10.0
+ '@typescript-eslint/types': 8.11.0
+ '@typescript-eslint/visitor-keys': 8.11.0
debug: 4.3.7
fast-glob: 3.3.2
is-glob: 4.0.3
@@ -10808,12 +11371,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.10.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)':
+ '@typescript-eslint/utils@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)':
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@9.13.0(jiti@2.3.3))
- '@typescript-eslint/scope-manager': 8.10.0
- '@typescript-eslint/types': 8.10.0
- '@typescript-eslint/typescript-estree': 8.10.0(typescript@5.6.3)
+ '@typescript-eslint/scope-manager': 8.11.0
+ '@typescript-eslint/types': 8.11.0
+ '@typescript-eslint/typescript-estree': 8.11.0(typescript@5.6.3)
eslint: 9.13.0(jiti@2.3.3)
transitivePeerDependencies:
- supports-color
@@ -10830,9 +11393,9 @@ snapshots:
- supports-color
- typescript
- '@typescript-eslint/visitor-keys@8.10.0':
+ '@typescript-eslint/visitor-keys@8.11.0':
dependencies:
- '@typescript-eslint/types': 8.10.0
+ '@typescript-eslint/types': 8.11.0
eslint-visitor-keys: 3.4.3
'@typescript-eslint/visitor-keys@8.9.0':
@@ -10849,16 +11412,16 @@ snapshots:
'@ungap/structured-clone@1.2.0': {}
- '@unhead/addons@1.11.10(rollup@3.29.5)(webpack-sources@3.2.3)':
+ '@unhead/addons@1.11.10(rollup@4.24.0)(webpack-sources@3.2.3)':
dependencies:
- '@rollup/pluginutils': 5.1.2(rollup@3.29.5)
+ '@rollup/pluginutils': 5.1.2(rollup@4.24.0)
'@unhead/schema': 1.11.10
'@unhead/shared': 1.11.10
magic-string: 0.30.12
mlly: 1.7.2
ufo: 1.5.4
unplugin: 1.14.1(webpack-sources@3.2.3)
- unplugin-ast: 0.10.0(rollup@3.29.5)(webpack-sources@3.2.3)
+ unplugin-ast: 0.10.0(rollup@4.24.0)(webpack-sources@3.2.3)
transitivePeerDependencies:
- rollup
- webpack-sources
@@ -10927,13 +11490,13 @@ snapshots:
unhead: 1.11.9
vue: 3.5.12(typescript@5.6.3)
- '@unocss/astro@0.62.4(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))':
+ '@unocss/astro@0.62.4(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(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.0)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))
+ '@unocss/vite': 0.62.4(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))
optionalDependencies:
- vite: 5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0)
+ vite: 5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0)
transitivePeerDependencies:
- rollup
- supports-color
@@ -10983,7 +11546,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.0)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)(webpack@5.95.0(esbuild@0.23.1))':
+ '@unocss/nuxt@0.62.4(magicast@0.3.5)(postcss@8.4.47)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(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.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
'@unocss/config': 0.62.4
@@ -10996,9 +11559,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.0)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))
- '@unocss/webpack': 0.62.4(rollup@4.24.0)(webpack@5.95.0(esbuild@0.23.1))
- unocss: 0.62.4(@unocss/webpack@0.62.4(rollup@4.24.0)(webpack@5.95.0(esbuild@0.23.1)))(postcss@8.4.47)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))
+ '@unocss/vite': 0.62.4(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))
+ '@unocss/webpack': 0.62.4(rollup@4.24.0)(webpack@5.95.0(esbuild@0.17.19))
+ unocss: 0.62.4(@unocss/webpack@0.62.4(rollup@4.24.0)(webpack@5.95.0(esbuild@0.17.19)))(postcss@8.4.47)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))
transitivePeerDependencies:
- magicast
- postcss
@@ -11106,7 +11669,7 @@ snapshots:
dependencies:
'@unocss/core': 0.62.4
- '@unocss/vite@0.62.4(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))':
+ '@unocss/vite@0.62.4(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))':
dependencies:
'@ampproject/remapping': 2.3.0
'@rollup/pluginutils': 5.1.2(rollup@4.24.0)
@@ -11116,12 +11679,12 @@ snapshots:
chokidar: 3.6.0
magic-string: 0.30.12
tinyglobby: 0.2.9
- vite: 5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0)
+ vite: 5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0)
transitivePeerDependencies:
- rollup
- supports-color
- '@unocss/webpack@0.62.4(rollup@4.24.0)(webpack@5.95.0(esbuild@0.23.1))':
+ '@unocss/webpack@0.62.4(rollup@4.24.0)(webpack@5.95.0(esbuild@0.17.19))':
dependencies:
'@ampproject/remapping': 2.3.0
'@rollup/pluginutils': 5.1.2(rollup@4.24.0)
@@ -11131,7 +11694,7 @@ snapshots:
magic-string: 0.30.12
tinyglobby: 0.2.9
unplugin: 1.14.1(webpack-sources@3.2.3)
- webpack: 5.95.0(esbuild@0.23.1)
+ webpack: 5.95.0(esbuild@0.17.19)
webpack-sources: 3.2.3
transitivePeerDependencies:
- rollup
@@ -11188,6 +11751,8 @@ snapshots:
'@unovis/ts': 1.4.4
vue: 3.5.12(typescript@5.6.3)
+ '@uploadthing/mime-types@0.3.0': {}
+
'@vercel/nft@0.26.5':
dependencies:
'@mapbox/node-pre-gyp': 1.0.11
@@ -11206,28 +11771,28 @@ snapshots:
- encoding
- supports-color
- '@vitejs/plugin-vue-jsx@4.0.1(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))':
+ '@vitejs/plugin-vue-jsx@4.0.1(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))':
dependencies:
'@babel/core': 7.25.7
'@babel/plugin-transform-typescript': 7.25.7(@babel/core@7.25.7)
'@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.25.7)
- vite: 5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0)
+ vite: 5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0)
vue: 3.5.12(typescript@5.6.3)
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-vue@5.1.4(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))':
+ '@vitejs/plugin-vue@5.1.4(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))':
dependencies:
- vite: 5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0)
+ vite: 5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0)
vue: 3.5.12(typescript@5.6.3)
- '@vitest/eslint-plugin@1.1.7(@typescript-eslint/utils@8.10.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)(vitest@2.1.3(@types/node@22.7.7)(happy-dom@15.7.4)(lightningcss@1.27.0)(terser@5.36.0))':
+ '@vitest/eslint-plugin@1.1.7(@typescript-eslint/utils@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)(vitest@2.1.3(@types/node@22.7.9)(happy-dom@15.7.4)(lightningcss@1.27.0)(terser@5.36.0))':
dependencies:
- '@typescript-eslint/utils': 8.10.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
+ '@typescript-eslint/utils': 8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
eslint: 9.13.0(jiti@2.3.3)
optionalDependencies:
typescript: 5.6.3
- vitest: 2.1.3(@types/node@22.7.7)(happy-dom@15.7.4)(lightningcss@1.27.0)(terser@5.36.0)
+ vitest: 2.1.3(@types/node@22.7.9)(happy-dom@15.7.4)(lightningcss@1.27.0)(terser@5.36.0)
'@vitest/expect@2.1.3':
dependencies:
@@ -11236,13 +11801,13 @@ snapshots:
chai: 5.1.1
tinyrainbow: 1.2.0
- '@vitest/mocker@2.1.3(@vitest/spy@2.1.3)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))':
+ '@vitest/mocker@2.1.3(@vitest/spy@2.1.3)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))':
dependencies:
'@vitest/spy': 2.1.3
estree-walker: 3.0.3
magic-string: 0.30.11
optionalDependencies:
- vite: 5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0)
+ vite: 5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0)
'@vitest/pretty-format@2.1.3':
dependencies:
@@ -11275,19 +11840,6 @@ snapshots:
'@volar/source-map@2.4.5': {}
- '@vue-macros/common@1.14.0(rollup@3.29.5)(vue@3.5.12(typescript@5.6.3))':
- dependencies:
- '@babel/types': 7.25.7
- '@rollup/pluginutils': 5.1.2(rollup@3.29.5)
- '@vue/compiler-sfc': 3.5.12
- ast-kit: 1.2.1
- local-pkg: 0.5.0
- magic-string-ast: 0.6.2
- optionalDependencies:
- vue: 3.5.12(typescript@5.6.3)
- transitivePeerDependencies:
- - rollup
-
'@vue-macros/common@1.14.0(rollup@4.24.0)(vue@3.5.12(typescript@5.6.3))':
dependencies:
'@babel/types': 7.25.7
@@ -11405,7 +11957,7 @@ snapshots:
'@vue/compiler-ssr': 3.5.12
'@vue/shared': 3.5.12
estree-walker: 2.0.2
- magic-string: 0.30.11
+ magic-string: 0.30.12
postcss: 8.4.47
source-map-js: 1.2.1
@@ -11426,26 +11978,14 @@ snapshots:
'@vue/devtools-api@6.6.4': {}
- '@vue/devtools-core@7.4.4(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))':
+ '@vue/devtools-core@7.4.4(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))':
dependencies:
'@vue/devtools-kit': 7.4.4
'@vue/devtools-shared': 7.4.6
mitt: 3.0.1
nanoid: 3.3.7
pathe: 1.1.2
- vite-hot-client: 0.2.3(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))
- vue: 3.5.12(typescript@5.6.3)
- transitivePeerDependencies:
- - vite
-
- '@vue/devtools-core@7.4.4(vite@5.4.9(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))':
- dependencies:
- '@vue/devtools-kit': 7.4.4
- '@vue/devtools-shared': 7.4.6
- mitt: 3.0.1
- nanoid: 3.3.7
- pathe: 1.1.2
- vite-hot-client: 0.2.3(vite@5.4.9(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))
+ vite-hot-client: 0.2.3(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))
vue: 3.5.12(typescript@5.6.3)
transitivePeerDependencies:
- vite
@@ -11562,13 +12102,13 @@ snapshots:
- supports-color
- webpack-sources
- '@vueuse/nuxt@11.1.0(magicast@0.3.5)(nuxt@3.13.2(@parcel/watcher@2.4.1)(@types/node@22.7.7)(eslint@9.13.0(jiti@2.3.3))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.0)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3))(rollup@4.24.0)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)':
+ '@vueuse/nuxt@11.1.0(magicast@0.3.5)(nuxt@3.13.2(@parcel/watcher@2.4.1)(@types/node@22.7.9)(eslint@9.13.0(jiti@2.3.3))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.0)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3))(rollup@4.24.0)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)':
dependencies:
'@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
'@vueuse/core': 11.1.0(vue@3.5.12(typescript@5.6.3))
'@vueuse/metadata': 11.1.0
local-pkg: 0.5.0
- nuxt: 3.13.2(@parcel/watcher@2.4.1)(@types/node@22.7.7)(eslint@9.13.0(jiti@2.3.3))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.0)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
+ nuxt: 3.13.2(@parcel/watcher@2.4.1)(@types/node@22.7.9)(eslint@9.13.0(jiti@2.3.3))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.0)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.9)(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'
@@ -11692,6 +12232,10 @@ snapshots:
dependencies:
acorn: 8.13.0
+ acorn-walk@8.3.4:
+ dependencies:
+ acorn: 8.13.0
+
acorn@8.12.1: {}
acorn@8.13.0: {}
@@ -11773,7 +12317,11 @@ snapshots:
aria-hidden@1.2.4:
dependencies:
- tslib: 2.7.0
+ tslib: 2.7.0
+
+ as-table@1.0.55:
+ dependencies:
+ printable-characters: 1.0.42
assertion-error@2.0.1: {}
@@ -11810,7 +12358,7 @@ snapshots:
babel-plugin-macros@3.1.0:
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.25.9
cosmiconfig: 7.1.0
resolve: 1.22.8
@@ -11867,6 +12415,8 @@ snapshots:
inherits: 2.0.4
readable-stream: 3.6.2
+ blake3-wasm@2.1.5: {}
+
blob-to-buffer@1.2.9: {}
boolbase@1.0.0: {}
@@ -11897,6 +12447,13 @@ snapshots:
node-releases: 2.0.18
update-browserslist-db: 1.1.1(browserslist@4.24.0)
+ browserslist@4.24.2:
+ dependencies:
+ caniuse-lite: 1.0.30001669
+ electron-to-chromium: 1.5.45
+ node-releases: 2.0.18
+ update-browserslist-db: 1.1.1(browserslist@4.24.2)
+
buffer-crc32@1.0.0: {}
buffer-from@1.1.2: {}
@@ -11987,6 +12544,15 @@ snapshots:
caniuse-lite@1.0.30001667: {}
+ caniuse-lite@1.0.30001669: {}
+
+ capnp-ts@0.7.0:
+ dependencies:
+ debug: 4.3.7
+ tslib: 2.8.0
+ transitivePeerDependencies:
+ - supports-color
+
case-police@0.7.0: {}
ccount@2.0.1: {}
@@ -12145,7 +12711,6 @@ snapshots:
dependencies:
color-name: 1.1.4
simple-swizzle: 0.2.2
- optional: true
color-support@1.1.3: {}
@@ -12153,7 +12718,6 @@ snapshots:
dependencies:
color-convert: 2.0.1
color-string: 1.9.1
- optional: true
colord@2.9.3: {}
@@ -12214,6 +12778,8 @@ snapshots:
cookie-es@1.2.2: {}
+ cookie@0.7.2: {}
+
copy-anything@3.0.5:
dependencies:
is-what: 4.1.16
@@ -12540,6 +13106,10 @@ snapshots:
d3-transition: 3.0.1(d3-selection@3.0.0)
d3-zoom: 3.0.0
+ data-uri-to-buffer@2.0.2: {}
+
+ date-fns@4.1.0: {}
+
db0@0.1.4: {}
de-indent@1.0.2: {}
@@ -12666,6 +13236,8 @@ snapshots:
electron-to-chromium@1.5.32: {}
+ electron-to-chromium@1.5.45: {}
+
elkjs@0.8.2: {}
embla-carousel-auto-height@8.3.0(embla-carousel@8.3.0):
@@ -12745,6 +13317,31 @@ snapshots:
es-module-lexer@1.5.4: {}
+ esbuild@0.17.19:
+ optionalDependencies:
+ '@esbuild/android-arm': 0.17.19
+ '@esbuild/android-arm64': 0.17.19
+ '@esbuild/android-x64': 0.17.19
+ '@esbuild/darwin-arm64': 0.17.19
+ '@esbuild/darwin-x64': 0.17.19
+ '@esbuild/freebsd-arm64': 0.17.19
+ '@esbuild/freebsd-x64': 0.17.19
+ '@esbuild/linux-arm': 0.17.19
+ '@esbuild/linux-arm64': 0.17.19
+ '@esbuild/linux-ia32': 0.17.19
+ '@esbuild/linux-loong64': 0.17.19
+ '@esbuild/linux-mips64el': 0.17.19
+ '@esbuild/linux-ppc64': 0.17.19
+ '@esbuild/linux-riscv64': 0.17.19
+ '@esbuild/linux-s390x': 0.17.19
+ '@esbuild/linux-x64': 0.17.19
+ '@esbuild/netbsd-x64': 0.17.19
+ '@esbuild/openbsd-x64': 0.17.19
+ '@esbuild/sunos-x64': 0.17.19
+ '@esbuild/win32-arm64': 0.17.19
+ '@esbuild/win32-ia32': 0.17.19
+ '@esbuild/win32-x64': 0.17.19
+
esbuild@0.19.12:
optionalDependencies:
'@esbuild/aix-ppc64': 0.19.12
@@ -13175,6 +13772,8 @@ snapshots:
estraverse@5.3.0: {}
+ estree-walker@0.6.1: {}
+
estree-walker@2.0.2: {}
estree-walker@3.0.3:
@@ -13228,6 +13827,8 @@ snapshots:
strip-final-newline: 4.0.0
yoctocolors: 2.1.1
+ exit-hook@2.2.1: {}
+
expand-template@2.0.3: {}
extend@3.0.2: {}
@@ -13235,7 +13836,7 @@ snapshots:
externality@1.0.2:
dependencies:
enhanced-resolve: 5.17.1
- mlly: 1.7.1
+ mlly: 1.7.2
pathe: 1.1.2
ufo: 1.5.4
@@ -13267,6 +13868,10 @@ snapshots:
optionalDependencies:
picomatch: 4.0.2
+ fdir@6.4.2(picomatch@4.0.2):
+ optionalDependencies:
+ picomatch: 4.0.2
+
fflate@0.7.4: {}
figures@6.1.0:
@@ -13323,7 +13928,7 @@ snapshots:
'@capsizecss/metrics': 2.2.0
'@capsizecss/unpack': 2.3.0
magic-regexp: 0.8.0(webpack-sources@3.2.3)
- magic-string: 0.30.11
+ magic-string: 0.30.12
pathe: 1.1.2
ufo: 1.5.4
unplugin: 1.14.1(webpack-sources@3.2.3)
@@ -13401,6 +14006,11 @@ snapshots:
get-port-please@3.1.2: {}
+ get-source@2.0.12:
+ dependencies:
+ data-uri-to-buffer: 2.0.2
+ source-map: 0.6.1
+
get-stdin@9.0.0: {}
get-stream@6.0.1: {}
@@ -13731,17 +14341,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- impound@0.1.0(rollup@3.29.5)(webpack-sources@3.2.3):
- dependencies:
- '@rollup/pluginutils': 5.1.2(rollup@3.29.5)
- mlly: 1.7.1
- pathe: 1.1.2
- unenv: 1.10.0
- unplugin: 1.14.1(webpack-sources@3.2.3)
- transitivePeerDependencies:
- - rollup
- - webpack-sources
-
impound@0.1.0(rollup@4.24.0)(webpack-sources@3.2.3):
dependencies:
'@rollup/pluginutils': 5.1.2(rollup@4.24.0)
@@ -13835,8 +14434,7 @@ snapshots:
is-arrayish@0.2.1: {}
- is-arrayish@0.3.2:
- optional: true
+ is-arrayish@0.3.2: {}
is-binary-path@2.1.0:
dependencies:
@@ -13919,6 +14517,8 @@ snapshots:
isexe@2.0.0: {}
+ itty-time@1.0.6: {}
+
jackspeak@3.4.3:
dependencies:
'@isaacs/cliui': 8.0.2
@@ -13931,7 +14531,7 @@ snapshots:
jest-worker@27.5.1:
dependencies:
- '@types/node': 22.7.7
+ '@types/node': 22.7.9
merge-stream: 2.0.0
supports-color: 8.1.1
@@ -14173,7 +14773,11 @@ snapshots:
magic-string-ast@0.6.2:
dependencies:
- magic-string: 0.30.11
+ magic-string: 0.30.12
+
+ magic-string@0.25.9:
+ dependencies:
+ sourcemap-codec: 1.4.8
magic-string@0.30.11:
dependencies:
@@ -14595,6 +15199,25 @@ snapshots:
mini-svg-data-uri@1.4.4: {}
+ miniflare@3.20241022.0:
+ dependencies:
+ '@cspotcode/source-map-support': 0.8.1
+ acorn: 8.13.0
+ acorn-walk: 8.3.4
+ capnp-ts: 0.7.0
+ exit-hook: 2.2.1
+ glob-to-regexp: 0.4.1
+ stoppable: 1.1.0
+ undici: 5.28.4
+ workerd: 1.20241022.0
+ ws: 8.18.0
+ youch: 3.3.4
+ zod: 3.23.8
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+
minimatch@10.0.1:
dependencies:
brace-expansion: 2.0.1
@@ -14652,7 +15275,7 @@ snapshots:
esbuild: 0.23.1
fast-glob: 3.3.2
jiti: 1.21.6
- mlly: 1.7.1
+ mlly: 1.7.2
pathe: 1.1.2
pkg-types: 1.2.0
postcss: 8.4.47
@@ -14687,6 +15310,8 @@ snapshots:
murmurhash-js@1.0.0: {}
+ mustache@4.2.0: {}
+
mz@2.7.0:
dependencies:
any-promise: 1.3.0
@@ -14707,6 +15332,12 @@ snapshots:
neo-async@2.6.2: {}
+ nitro-cloudflare-dev@0.2.1:
+ dependencies:
+ consola: 3.2.3
+ mlly: 1.7.2
+ pkg-types: 1.2.1
+
nitropack@2.9.7(magicast@0.3.5)(webpack-sources@3.2.3):
dependencies:
'@cloudflare/kv-asset-handler': 0.3.4
@@ -14823,6 +15454,11 @@ snapshots:
node-gyp-build@4.8.2: {}
+ node-html-parser@6.1.13:
+ dependencies:
+ css-select: 5.1.0
+ he: 1.2.0
+
node-releases@2.0.18: {}
nopt@5.0.0:
@@ -14844,6 +15480,8 @@ snapshots:
normalize-range@0.1.2: {}
+ normalize-url@8.0.1: {}
+
npm-run-path@4.0.1:
dependencies:
path-key: 3.1.1
@@ -14870,6 +15508,8 @@ snapshots:
nuxi@3.14.0: {}
+ nuxi@3.15.0: {}
+
nuxt-build-cache@0.1.1(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3):
dependencies:
'@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
@@ -14898,7 +15538,7 @@ snapshots:
pathe: 1.1.2
picocolors: 1.1.0
remark-parse: 11.0.0
- shiki: 1.22.0
+ shiki: 1.22.1
twoslash: 0.2.12(typescript@5.6.3)
typescript: 5.6.3
unified: 11.0.5
@@ -14909,18 +15549,18 @@ snapshots:
- supports-color
- webpack-sources
- nuxt-link-checker@3.1.2(magicast@0.3.5)(rollup@3.29.5)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3):
+ nuxt-link-checker@3.1.2(magicast@0.3.5)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3):
dependencies:
- '@nuxt/devtools-kit': 1.5.2(magicast@0.3.5)(rollup@3.29.5)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@3.29.5)(webpack-sources@3.2.3)
+ '@nuxt/devtools-kit': 1.5.2(magicast@0.3.5)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
+ '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
'@vueuse/core': 11.1.0(vue@3.5.12(typescript@5.6.3))
chalk: 5.3.0
cheerio: 1.0.0
diff: 7.0.0
fuse.js: 7.0.0
magic-string: 0.30.11
- nuxt-site-config: 2.2.18(magicast@0.3.5)(rollup@3.29.5)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
- nuxt-site-config-kit: 2.2.18(magicast@0.3.5)(rollup@3.29.5)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
+ nuxt-site-config: 2.2.18(magicast@0.3.5)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
+ nuxt-site-config-kit: 2.2.18(magicast@0.3.5)(rollup@4.24.0)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
pathe: 1.1.2
pkg-types: 1.2.0
radix3: 1.1.2
@@ -14947,10 +15587,10 @@ snapshots:
- supports-color
- webpack-sources
- nuxt-og-image@3.0.6(magicast@0.3.5)(rollup@3.29.5)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3):
+ nuxt-og-image@3.0.6(magicast@0.3.5)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3):
dependencies:
- '@nuxt/devtools-kit': 1.6.0(magicast@0.3.5)(rollup@3.29.5)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@3.29.5)(webpack-sources@3.2.3)
+ '@nuxt/devtools-kit': 1.6.0(magicast@0.3.5)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
+ '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
'@resvg/resvg-js': 2.6.2
'@resvg/resvg-wasm': 2.6.2
'@unocss/core': 0.63.4
@@ -14960,8 +15600,8 @@ snapshots:
execa: 9.4.1
image-size: 1.1.1
magic-string: 0.30.12
- nuxt-site-config: 2.2.18(magicast@0.3.5)(rollup@3.29.5)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
- nuxt-site-config-kit: 2.2.18(magicast@0.3.5)(rollup@3.29.5)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
+ nuxt-site-config: 2.2.18(magicast@0.3.5)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
+ nuxt-site-config-kit: 2.2.18(magicast@0.3.5)(rollup@4.24.0)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
nypm: 0.3.12
ofetch: 1.4.1
ohash: 1.1.4
@@ -14986,70 +15626,30 @@ snapshots:
- vue
- webpack-sources
- nuxt-schema-org@3.4.1(magicast@0.3.5)(rollup@3.29.5)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3):
- dependencies:
- '@nuxt/devtools-kit': 1.6.0(magicast@0.3.5)(rollup@3.29.5)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@3.29.5)(webpack-sources@3.2.3)
- '@unhead/schema-org': 1.11.10
- nuxt-site-config: 2.2.18(magicast@0.3.5)(rollup@3.29.5)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
- nuxt-site-config-kit: 2.2.18(magicast@0.3.5)(rollup@3.29.5)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
- pathe: 1.1.2
- sirv: 3.0.0
- transitivePeerDependencies:
- - magicast
- - rollup
- - supports-color
- - vite
- - vue
- - webpack-sources
-
- nuxt-seo-utils@5.0.1(magicast@0.3.5)(rollup@3.29.5)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3):
+ nuxt-rebundle@0.0.2(magicast@0.3.5)(nuxt@3.13.2(@parcel/watcher@2.4.1)(@types/node@22.7.9)(eslint@9.13.0(jiti@2.3.3))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.0)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3))(rollup@4.24.0)(webpack-sources@3.2.3):
dependencies:
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@3.29.5)(webpack-sources@3.2.3)
- '@unhead/addons': 1.11.10(rollup@3.29.5)(webpack-sources@3.2.3)
- defu: 6.1.4
- escape-string-regexp: 5.0.0
- fast-glob: 3.3.2
- image-size: 1.1.1
- nuxt-site-config: 2.2.18(magicast@0.3.5)(rollup@3.29.5)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
- nuxt-site-config-kit: 2.2.18(magicast@0.3.5)(rollup@3.29.5)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
+ '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.0)(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.13.2(@parcel/watcher@2.4.1)(@types/node@22.7.9)(eslint@9.13.0(jiti@2.3.3))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.0)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
pathe: 1.1.2
- scule: 1.3.0
- ufo: 1.5.4
- transitivePeerDependencies:
- - magicast
- - rollup
- - supports-color
- - vite
- - vue
- - webpack-sources
-
- nuxt-site-config-kit@2.2.18(magicast@0.3.5)(rollup@3.29.5)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3):
- dependencies:
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@3.29.5)(webpack-sources@3.2.3)
- '@nuxt/schema': 3.13.2(rollup@3.29.5)(webpack-sources@3.2.3)
- pkg-types: 1.2.0
- site-config-stack: 2.2.18(vue@3.5.12(typescript@5.6.3))
- std-env: 3.7.0
- ufo: 1.5.4
transitivePeerDependencies:
- magicast
- rollup
- supports-color
- - vue
- webpack-sources
- nuxt-site-config@2.2.18(magicast@0.3.5)(rollup@3.29.5)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3):
+ nuxt-schema-org@3.4.1(magicast@0.3.5)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3):
dependencies:
- '@nuxt/devtools-kit': 1.5.2(magicast@0.3.5)(rollup@3.29.5)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@3.29.5)(webpack-sources@3.2.3)
- '@nuxt/schema': 3.13.2(rollup@3.29.5)(webpack-sources@3.2.3)
- nuxt-site-config-kit: 2.2.18(magicast@0.3.5)(rollup@3.29.5)(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.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
+ '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
+ '@unhead/schema-org': 1.11.10
+ nuxt-site-config: 2.2.18(magicast@0.3.5)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
+ nuxt-site-config-kit: 2.2.18(magicast@0.3.5)(rollup@4.24.0)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
pathe: 1.1.2
- pkg-types: 1.2.0
- sirv: 2.0.4
- site-config-stack: 2.2.18(vue@3.5.12(typescript@5.6.3))
- ufo: 1.5.4
+ sirv: 3.0.0
transitivePeerDependencies:
- magicast
- rollup
@@ -15058,240 +15658,69 @@ snapshots:
- vue
- webpack-sources
- nuxt@3.13.2(@parcel/watcher@2.4.1)(@types/node@22.7.7)(eslint@9.13.0(jiti@2.3.3))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@3.29.5)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3):
+ nuxt-seo-utils@5.0.1(magicast@0.3.5)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3):
dependencies:
- '@nuxt/devalue': 2.0.2
- '@nuxt/devtools': 1.6.0(rollup@3.29.5)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@3.29.5)(webpack-sources@3.2.3)
- '@nuxt/schema': 3.13.2(rollup@3.29.5)(webpack-sources@3.2.3)
- '@nuxt/telemetry': 2.6.0(magicast@0.3.5)(rollup@3.29.5)(webpack-sources@3.2.3)
- '@nuxt/vite-builder': 3.13.2(@types/node@22.7.7)(eslint@9.13.0(jiti@2.3.3))(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@3.29.5)(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.7
- '@unhead/shared': 1.11.7
- '@unhead/ssr': 1.11.7
- '@unhead/vue': 1.11.7(vue@3.5.12(typescript@5.6.3))
- '@vue/shared': 3.5.11
- acorn: 8.12.1
- c12: 1.11.2(magicast@0.3.5)
- chokidar: 3.6.0
- compatx: 0.1.8
- consola: 3.2.3
- cookie-es: 1.2.2
+ '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
+ '@unhead/addons': 1.11.10(rollup@4.24.0)(webpack-sources@3.2.3)
defu: 6.1.4
- destr: 2.0.3
- devalue: 5.1.1
- errx: 0.1.0
- esbuild: 0.23.1
escape-string-regexp: 5.0.0
- estree-walker: 3.0.3
- globby: 14.0.2
- h3: 1.13.0
- hookable: 5.5.3
- ignore: 5.3.2
- impound: 0.1.0(rollup@3.29.5)(webpack-sources@3.2.3)
- jiti: 1.21.6
- klona: 2.0.6
- knitwork: 1.1.0
- magic-string: 0.30.11
- mlly: 1.7.1
- nanotar: 0.1.1
- nitropack: 2.9.7(magicast@0.3.5)(webpack-sources@3.2.3)
- nuxi: 3.14.0
- nypm: 0.3.12
- ofetch: 1.4.1
- ohash: 1.1.4
+ fast-glob: 3.3.2
+ image-size: 1.1.1
+ nuxt-site-config: 2.2.18(magicast@0.3.5)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
+ nuxt-site-config-kit: 2.2.18(magicast@0.3.5)(rollup@4.24.0)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
pathe: 1.1.2
- perfect-debounce: 1.0.0
- pkg-types: 1.2.0
- 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.6
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.7
- unimport: 3.13.1(rollup@3.29.5)(webpack-sources@3.2.3)
- unplugin: 1.14.1(webpack-sources@3.2.3)
- unplugin-vue-router: 0.10.8(rollup@3.29.5)(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.12.0(ioredis@5.4.1)
- untyped: 1.5.0
- 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.7.7
transitivePeerDependencies:
- - '@azure/app-configuration'
- - '@azure/cosmos'
- - '@azure/data-tables'
- - '@azure/identity'
- - '@azure/keyvault-secrets'
- - '@azure/storage-blob'
- - '@biomejs/biome'
- - '@capacitor/preferences'
- - '@libsql/client'
- - '@netlify/blobs'
- - '@planetscale/database'
- - '@upstash/redis'
- - '@vercel/kv'
- - better-sqlite3
- - bufferutil
- - drizzle-orm
- - encoding
- - eslint
- - idb-keyval
- - ioredis
- - less
- - lightningcss
- magicast
- - meow
- - optionator
- rollup
- - sass
- - sass-embedded
- - stylelint
- - stylus
- - sugarss
- supports-color
- - terser
- - typescript
- - uWebSockets.js
- - utf-8-validate
- vite
- - vls
- - vti
- - vue-tsc
+ - vue
- webpack-sources
- - xml2js
- nuxt@3.13.2(@parcel/watcher@2.4.1)(@types/node@22.7.7)(eslint@9.13.0(jiti@2.3.3))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.0)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.7)(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.0)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
- '@nuxt/schema': 3.13.2(rollup@4.24.0)(webpack-sources@3.2.3)
- '@nuxt/telemetry': 2.6.0(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
- '@nuxt/vite-builder': 3.13.2(@types/node@22.7.7)(eslint@9.13.0(jiti@2.3.3))(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.0)(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.7
- '@unhead/shared': 1.11.7
- '@unhead/ssr': 1.11.7
- '@unhead/vue': 1.11.7(vue@3.5.12(typescript@5.6.3))
- '@vue/shared': 3.5.11
- acorn: 8.12.1
- c12: 1.11.2(magicast@0.3.5)
- chokidar: 3.6.0
- 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.23.1
- escape-string-regexp: 5.0.0
- estree-walker: 3.0.3
- globby: 14.0.2
- h3: 1.13.0
- hookable: 5.5.3
- ignore: 5.3.2
- impound: 0.1.0(rollup@4.24.0)(webpack-sources@3.2.3)
- jiti: 1.21.6
- klona: 2.0.6
- knitwork: 1.1.0
- magic-string: 0.30.11
- mlly: 1.7.1
- nanotar: 0.1.1
- nitropack: 2.9.7(magicast@0.3.5)(webpack-sources@3.2.3)
- nuxi: 3.14.0
- nypm: 0.3.12
- ofetch: 1.4.1
- ohash: 1.1.4
- pathe: 1.1.2
- perfect-debounce: 1.0.0
+ nuxt-site-config-kit@2.2.18(magicast@0.3.5)(rollup@4.24.0)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3):
+ dependencies:
+ '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
+ '@nuxt/schema': 3.13.2(rollup@4.24.0)(webpack-sources@3.2.3)
pkg-types: 1.2.0
- radix3: 1.1.2
- scule: 1.3.0
- semver: 7.6.3
+ site-config-stack: 2.2.18(vue@3.5.12(typescript@5.6.3))
std-env: 3.7.0
- strip-literal: 2.1.0
- tinyglobby: 0.2.6
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.7
- unimport: 3.13.1(rollup@4.24.0)(webpack-sources@3.2.3)
- unplugin: 1.14.1(webpack-sources@3.2.3)
- unplugin-vue-router: 0.10.8(rollup@4.24.0)(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.12.0(ioredis@5.4.1)
- untyped: 1.5.0
- 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.7.7
transitivePeerDependencies:
- - '@azure/app-configuration'
- - '@azure/cosmos'
- - '@azure/data-tables'
- - '@azure/identity'
- - '@azure/keyvault-secrets'
- - '@azure/storage-blob'
- - '@biomejs/biome'
- - '@capacitor/preferences'
- - '@libsql/client'
- - '@netlify/blobs'
- - '@planetscale/database'
- - '@upstash/redis'
- - '@vercel/kv'
- - better-sqlite3
- - bufferutil
- - drizzle-orm
- - encoding
- - eslint
- - idb-keyval
- - ioredis
- - less
- - lightningcss
- magicast
- - meow
- - optionator
- rollup
- - sass
- - sass-embedded
- - stylelint
- - stylus
- - sugarss
- supports-color
- - terser
- - typescript
- - uWebSockets.js
- - utf-8-validate
+ - vue
+ - webpack-sources
+
+ nuxt-site-config@2.2.18(magicast@0.3.5)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3):
+ dependencies:
+ '@nuxt/devtools-kit': 1.5.2(magicast@0.3.5)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3)
+ '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
+ '@nuxt/schema': 3.13.2(rollup@4.24.0)(webpack-sources@3.2.3)
+ nuxt-site-config-kit: 2.2.18(magicast@0.3.5)(rollup@4.24.0)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
+ pathe: 1.1.2
+ pkg-types: 1.2.0
+ sirv: 2.0.4
+ site-config-stack: 2.2.18(vue@3.5.12(typescript@5.6.3))
+ ufo: 1.5.4
+ transitivePeerDependencies:
+ - magicast
+ - rollup
+ - supports-color
- vite
- - vls
- - vti
- - vue-tsc
+ - vue
- webpack-sources
- - xml2js
- nuxt@3.13.2(@parcel/watcher@2.4.1)(@types/node@22.7.7)(eslint@9.13.0(jiti@2.3.3))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.0)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.9(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(webpack-sources@3.2.3):
+ nuxt@3.13.2(@parcel/watcher@2.4.1)(@types/node@22.7.9)(eslint@9.13.0(jiti@2.3.3))(ioredis@5.4.1)(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.0)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.9)(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.0)(vite@5.4.9(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
+ '@nuxt/devtools': 1.6.0(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
'@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
'@nuxt/schema': 3.13.2(rollup@4.24.0)(webpack-sources@3.2.3)
'@nuxt/telemetry': 2.6.0(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
- '@nuxt/vite-builder': 3.13.2(@types/node@22.7.7)(eslint@9.13.0(jiti@2.3.3))(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.0)(terser@5.36.0)(typescript@5.6.3)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
+ '@nuxt/vite-builder': 3.13.2(@types/node@22.7.9)(eslint@9.13.0(jiti@2.3.3))(lightningcss@1.27.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.24.0)(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.7
'@unhead/shared': 1.11.7
'@unhead/ssr': 1.11.7
@@ -15352,7 +15781,7 @@ snapshots:
vue-router: 4.4.5(vue@3.5.12(typescript@5.6.3))
optionalDependencies:
'@parcel/watcher': 2.4.1
- '@types/node': 22.7.7
+ '@types/node': 22.7.9
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -15484,6 +15913,10 @@ snapshots:
dependencies:
yocto-queue: 0.1.0
+ p-limit@6.1.0:
+ dependencies:
+ yocto-queue: 1.1.1
+
p-locate@4.1.0:
dependencies:
p-limit: 2.3.0
@@ -15596,6 +16029,8 @@ snapshots:
lru-cache: 11.0.1
minipass: 7.1.2
+ path-to-regexp@6.3.0: {}
+
path-type@4.0.0: {}
path-type@5.0.0: {}
@@ -15845,6 +16280,8 @@ snapshots:
dependencies:
parse-ms: 4.0.0
+ printable-characters@1.0.42: {}
+
process-nextick-args@2.0.1: {}
process@0.11.10: {}
@@ -16105,6 +16542,8 @@ snapshots:
dependencies:
protocol-buffers-schema: 3.6.0
+ resolve.exports@2.0.2: {}
+
resolve@1.22.8:
dependencies:
is-core-module: 2.15.1
@@ -16129,20 +16568,21 @@ snapshots:
rollup-plugin-dts@6.1.1(rollup@3.29.5)(typescript@5.6.3):
dependencies:
- magic-string: 0.30.11
+ magic-string: 0.30.12
rollup: 3.29.5
typescript: 5.6.3
optionalDependencies:
'@babel/code-frame': 7.25.7
- rollup-plugin-visualizer@5.12.0(rollup@3.29.5):
+ rollup-plugin-inject@3.0.2:
dependencies:
- open: 8.4.2
- picomatch: 2.3.1
- source-map: 0.7.4
- yargs: 17.7.2
- optionalDependencies:
- rollup: 3.29.5
+ estree-walker: 0.6.1
+ magic-string: 0.25.9
+ rollup-pluginutils: 2.8.2
+
+ rollup-plugin-node-polyfills@0.2.1:
+ dependencies:
+ rollup-plugin-inject: 3.0.2
rollup-plugin-visualizer@5.12.0(rollup@4.24.0):
dependencies:
@@ -16153,6 +16593,10 @@ snapshots:
optionalDependencies:
rollup: 4.24.0
+ rollup-pluginutils@2.8.2:
+ dependencies:
+ estree-walker: 0.6.1
+
rollup@3.29.5:
optionalDependencies:
fsevents: 2.3.3
@@ -16232,6 +16676,11 @@ snapshots:
scule@1.3.0: {}
+ selfsigned@2.4.1:
+ dependencies:
+ '@types/node-forge': 1.3.11
+ node-forge: 1.3.1
+
semver@5.7.2: {}
semver@6.3.1: {}
@@ -16289,6 +16738,32 @@ snapshots:
tunnel-agent: 0.6.0
optional: true
+ sharp@0.33.5:
+ dependencies:
+ color: 4.2.3
+ detect-libc: 2.0.3
+ semver: 7.6.3
+ optionalDependencies:
+ '@img/sharp-darwin-arm64': 0.33.5
+ '@img/sharp-darwin-x64': 0.33.5
+ '@img/sharp-libvips-darwin-arm64': 1.0.4
+ '@img/sharp-libvips-darwin-x64': 1.0.4
+ '@img/sharp-libvips-linux-arm': 1.0.5
+ '@img/sharp-libvips-linux-arm64': 1.0.4
+ '@img/sharp-libvips-linux-s390x': 1.0.4
+ '@img/sharp-libvips-linux-x64': 1.0.4
+ '@img/sharp-libvips-linuxmusl-arm64': 1.0.4
+ '@img/sharp-libvips-linuxmusl-x64': 1.0.4
+ '@img/sharp-linux-arm': 0.33.5
+ '@img/sharp-linux-arm64': 0.33.5
+ '@img/sharp-linux-s390x': 0.33.5
+ '@img/sharp-linux-x64': 0.33.5
+ '@img/sharp-linuxmusl-arm64': 0.33.5
+ '@img/sharp-linuxmusl-x64': 0.33.5
+ '@img/sharp-wasm32': 0.33.5
+ '@img/sharp-win32-ia32': 0.33.5
+ '@img/sharp-win32-x64': 0.33.5
+
shebang-command@2.0.0:
dependencies:
shebang-regex: 3.0.0
@@ -16321,6 +16796,15 @@ snapshots:
'@shikijs/vscode-textmate': 9.3.0
'@types/hast': 3.0.4
+ shiki@1.22.1:
+ dependencies:
+ '@shikijs/core': 1.22.1
+ '@shikijs/engine-javascript': 1.22.1
+ '@shikijs/engine-oniguruma': 1.22.1
+ '@shikijs/types': 1.22.1
+ '@shikijs/vscode-textmate': 9.3.0
+ '@types/hast': 3.0.4
+
siginfo@2.0.0: {}
signal-exit@3.0.7: {}
@@ -16346,7 +16830,6 @@ snapshots:
simple-swizzle@0.2.2:
dependencies:
is-arrayish: 0.3.2
- optional: true
sirv@2.0.4:
dependencies:
@@ -16398,6 +16881,8 @@ snapshots:
source-map@0.7.4: {}
+ sourcemap-codec@1.4.8: {}
+
space-separated-tokens@2.0.2: {}
spdx-correct@3.2.0:
@@ -16423,16 +16908,40 @@ snapshots:
splitpanes@3.1.5: {}
+ sponsorkit@0.15.5:
+ dependencies:
+ '@antfu/utils': 0.7.10
+ consola: 3.2.3
+ d3-hierarchy: 3.1.2
+ dotenv: 16.4.5
+ node-html-parser: 6.1.13
+ normalize-url: 8.0.1
+ ofetch: 1.4.1
+ p-limit: 6.1.0
+ picocolors: 1.1.1
+ sharp: 0.33.5
+ unconfig: 0.5.5
+ yargs: 17.7.2
+ transitivePeerDependencies:
+ - supports-color
+
stable-hash@0.0.4: {}
stackback@0.0.2: {}
+ stacktracey@2.1.8:
+ dependencies:
+ as-table: 1.0.55
+ get-source: 2.0.12
+
standard-as-callback@2.1.0: {}
statuses@2.0.1: {}
std-env@3.7.0: {}
+ stoppable@1.1.0: {}
+
streamx@2.20.1:
dependencies:
fast-fifo: 1.3.2
@@ -16631,16 +17140,16 @@ snapshots:
mkdirp: 3.0.1
yallist: 5.0.0
- terser-webpack-plugin@5.3.10(esbuild@0.23.1)(webpack@5.95.0(esbuild@0.23.1)):
+ terser-webpack-plugin@5.3.10(esbuild@0.17.19)(webpack@5.95.0(esbuild@0.17.19)):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.2
terser: 5.36.0
- webpack: 5.95.0(esbuild@0.23.1)
+ webpack: 5.95.0(esbuild@0.17.19)
optionalDependencies:
- esbuild: 0.23.1
+ esbuild: 0.17.19
terser@5.34.1:
dependencies:
@@ -16695,7 +17204,7 @@ snapshots:
tinyglobby@0.2.9:
dependencies:
- fdir: 6.4.0(picomatch@4.0.2)
+ fdir: 6.4.2(picomatch@4.0.2)
picomatch: 4.0.2
tinypool@1.0.1: {}
@@ -16868,6 +17377,13 @@ snapshots:
undici@6.19.8: {}
+ unenv-nightly@2.0.0-20241018-011344-e666fcf:
+ dependencies:
+ defu: 6.1.4
+ ohash: 1.1.4
+ pathe: 1.1.2
+ ufo: 1.5.4
+
unenv@1.10.0:
dependencies:
consola: 3.2.3
@@ -16916,30 +17432,11 @@ snapshots:
trough: 2.2.0
vfile: 6.0.3
- unifont@0.1.3:
+ unifont@0.1.5:
dependencies:
css-tree: 3.0.0
ohash: 1.1.4
- unimport@3.13.1(rollup@3.29.5)(webpack-sources@3.2.3):
- dependencies:
- '@rollup/pluginutils': 5.1.2(rollup@3.29.5)
- acorn: 8.13.0
- escape-string-regexp: 5.0.0
- estree-walker: 3.0.3
- fast-glob: 3.3.2
- local-pkg: 0.5.0
- magic-string: 0.30.12
- mlly: 1.7.2
- pathe: 1.1.2
- pkg-types: 1.2.1
- scule: 1.3.0
- strip-literal: 2.1.0
- unplugin: 1.14.1(webpack-sources@3.2.3)
- transitivePeerDependencies:
- - rollup
- - webpack-sources
-
unimport@3.13.1(rollup@4.24.0)(webpack-sources@3.2.3):
dependencies:
'@rollup/pluginutils': 5.1.2(rollup@4.24.0)
@@ -16992,9 +17489,9 @@ snapshots:
universalify@2.0.1: {}
- unocss@0.62.4(@unocss/webpack@0.62.4(rollup@4.24.0)(webpack@5.95.0(esbuild@0.23.1)))(postcss@8.4.47)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0)):
+ unocss@0.62.4(@unocss/webpack@0.62.4(rollup@4.24.0)(webpack@5.95.0(esbuild@0.17.19)))(postcss@8.4.47)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0)):
dependencies:
- '@unocss/astro': 0.62.4(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))
+ '@unocss/astro': 0.62.4(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))
'@unocss/cli': 0.62.4(rollup@4.24.0)
'@unocss/core': 0.62.4
'@unocss/postcss': 0.62.4(postcss@8.4.47)
@@ -17010,21 +17507,21 @@ 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.0)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))
+ '@unocss/vite': 0.62.4(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))
optionalDependencies:
- '@unocss/webpack': 0.62.4(rollup@4.24.0)(webpack@5.95.0(esbuild@0.23.1))
- vite: 5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0)
+ '@unocss/webpack': 0.62.4(rollup@4.24.0)(webpack@5.95.0(esbuild@0.17.19))
+ vite: 5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0)
transitivePeerDependencies:
- postcss
- rollup
- supports-color
- unplugin-ast@0.10.0(rollup@3.29.5)(webpack-sources@3.2.3):
+ unplugin-ast@0.10.0(rollup@4.24.0)(webpack-sources@3.2.3):
dependencies:
'@antfu/utils': 0.7.10
'@babel/generator': 7.25.7
'@babel/parser': 7.25.8
- '@rollup/pluginutils': 5.1.2(rollup@3.29.5)
+ '@rollup/pluginutils': 5.1.2(rollup@4.24.0)
ast-kit: 0.12.2
magic-string-ast: 0.6.2
unplugin: 1.14.1(webpack-sources@3.2.3)
@@ -17032,29 +17529,6 @@ snapshots:
- rollup
- webpack-sources
- unplugin-vue-router@0.10.8(rollup@3.29.5)(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):
- dependencies:
- '@babel/types': 7.25.7
- '@rollup/pluginutils': 5.1.2(rollup@3.29.5)
- '@vue-macros/common': 1.14.0(rollup@3.29.5)(vue@3.5.12(typescript@5.6.3))
- ast-walker-scope: 0.6.2
- chokidar: 3.6.0
- fast-glob: 3.3.2
- json5: 2.2.3
- local-pkg: 0.5.0
- magic-string: 0.30.11
- mlly: 1.7.1
- pathe: 1.1.2
- scule: 1.3.0
- unplugin: 1.14.1(webpack-sources@3.2.3)
- yaml: 2.5.1
- optionalDependencies:
- vue-router: 4.4.5(vue@3.5.12(typescript@5.6.3))
- transitivePeerDependencies:
- - rollup
- - vue
- - webpack-sources
-
unplugin-vue-router@0.10.8(rollup@4.24.0)(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):
dependencies:
'@babel/types': 7.25.7
@@ -17080,7 +17554,7 @@ snapshots:
unplugin@1.14.1(webpack-sources@3.2.3):
dependencies:
- acorn: 8.12.1
+ acorn: 8.13.0
webpack-virtual-modules: 0.6.2
optionalDependencies:
webpack-sources: 3.2.3
@@ -17133,7 +17607,13 @@ snapshots:
dependencies:
browserslist: 4.24.0
escalade: 3.2.0
- picocolors: 1.1.0
+ picocolors: 1.1.1
+
+ update-browserslist-db@1.1.1(browserslist@4.24.2):
+ dependencies:
+ browserslist: 4.24.2
+ escalade: 3.2.0
+ picocolors: 1.1.1
uqr@0.1.2: {}
@@ -17181,20 +17661,16 @@ snapshots:
'@types/unist': 3.0.3
vfile-message: 4.0.2
- vite-hot-client@0.2.3(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0)):
- dependencies:
- vite: 5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0)
-
- vite-hot-client@0.2.3(vite@5.4.9(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0)):
+ vite-hot-client@0.2.3(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0)):
dependencies:
- vite: 5.4.9(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0)
+ vite: 5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0)
- vite-node@2.1.2(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0):
+ vite-node@2.1.2(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0):
dependencies:
cac: 6.7.14
debug: 4.3.7
pathe: 1.1.2
- vite: 5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0)
+ vite: 5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0)
transitivePeerDependencies:
- '@types/node'
- less
@@ -17206,12 +17682,12 @@ snapshots:
- supports-color
- terser
- vite-node@2.1.3(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0):
+ vite-node@2.1.3(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0):
dependencies:
cac: 6.7.14
debug: 4.3.7
pathe: 1.1.2
- vite: 5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0)
+ vite: 5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0)
transitivePeerDependencies:
- '@types/node'
- less
@@ -17223,7 +17699,7 @@ snapshots:
- supports-color
- terser
- vite-plugin-checker@0.8.0(eslint@9.13.0(jiti@2.3.3))(optionator@0.9.4)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0)):
+ vite-plugin-checker@0.8.0(eslint@9.13.0(jiti@2.3.3))(optionator@0.9.4)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0)):
dependencies:
'@babel/code-frame': 7.25.7
ansi-escapes: 4.3.2
@@ -17235,7 +17711,7 @@ snapshots:
npm-run-path: 4.0.1
strip-ansi: 6.0.1
tiny-invariant: 1.3.3
- vite: 5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0)
+ vite: 5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0)
vscode-languageclient: 7.0.0
vscode-languageserver: 7.0.0
vscode-languageserver-textdocument: 1.0.12
@@ -17245,43 +17721,7 @@ snapshots:
optionator: 0.9.4
typescript: 5.6.3
- vite-plugin-inspect@0.8.7(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@3.29.5)(webpack-sources@3.2.3))(rollup@3.29.5)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0)):
- dependencies:
- '@antfu/utils': 0.7.10
- '@rollup/pluginutils': 5.1.2(rollup@3.29.5)
- debug: 4.3.7
- 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.7.7)(lightningcss@1.27.0)(terser@5.36.0)
- optionalDependencies:
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@3.29.5)(webpack-sources@3.2.3)
- transitivePeerDependencies:
- - rollup
- - supports-color
-
- vite-plugin-inspect@0.8.7(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@3.29.5)(webpack-sources@3.2.3))(rollup@4.24.0)(vite@5.4.9(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0)):
- dependencies:
- '@antfu/utils': 0.7.10
- '@rollup/pluginutils': 5.1.2(rollup@4.24.0)
- debug: 4.3.7
- 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.9(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0)
- optionalDependencies:
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@3.29.5)(webpack-sources@3.2.3)
- transitivePeerDependencies:
- - rollup
- - supports-color
-
- vite-plugin-inspect@0.8.7(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3))(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0)):
+ vite-plugin-inspect@0.8.7(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3))(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0)):
dependencies:
'@antfu/utils': 0.7.10
'@rollup/pluginutils': 5.1.2(rollup@4.24.0)
@@ -17292,29 +17732,14 @@ snapshots:
perfect-debounce: 1.0.0
picocolors: 1.1.0
sirv: 2.0.4
- vite: 5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0)
+ vite: 5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0)
optionalDependencies:
'@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
transitivePeerDependencies:
- rollup
- supports-color
- vite-plugin-vue-inspector@5.1.3(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0)):
- dependencies:
- '@babel/core': 7.25.8
- '@babel/plugin-proposal-decorators': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-syntax-import-attributes': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.25.8)
- '@babel/plugin-transform-typescript': 7.25.7(@babel/core@7.25.8)
- '@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.25.8)
- '@vue/compiler-dom': 3.5.12
- kolorist: 1.8.0
- magic-string: 0.30.12
- vite: 5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0)
- transitivePeerDependencies:
- - supports-color
-
- vite-plugin-vue-inspector@5.1.3(vite@5.4.9(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0)):
+ vite-plugin-vue-inspector@5.1.3(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0)):
dependencies:
'@babel/core': 7.25.8
'@babel/plugin-proposal-decorators': 7.25.7(@babel/core@7.25.8)
@@ -17325,35 +17750,24 @@ snapshots:
'@vue/compiler-dom': 3.5.12
kolorist: 1.8.0
magic-string: 0.30.12
- vite: 5.4.9(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0)
+ vite: 5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0)
transitivePeerDependencies:
- supports-color
- vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0):
- dependencies:
- esbuild: 0.21.5
- postcss: 8.4.47
- rollup: 4.24.0
- optionalDependencies:
- '@types/node': 22.7.7
- fsevents: 2.3.3
- lightningcss: 1.27.0
- terser: 5.36.0
-
- vite@5.4.9(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0):
+ vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0):
dependencies:
esbuild: 0.21.5
postcss: 8.4.47
rollup: 4.24.0
optionalDependencies:
- '@types/node': 22.7.7
+ '@types/node': 22.7.9
fsevents: 2.3.3
lightningcss: 1.27.0
terser: 5.36.0
- vitest-environment-nuxt@1.0.1(@vue/test-utils@2.4.6)(h3@1.13.0)(happy-dom@15.7.4)(magicast@0.3.5)(nitropack@2.9.7(magicast@0.3.5)(webpack-sources@3.2.3))(playwright-core@1.48.1)(rollup@3.29.5)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(vitest@2.1.3(@types/node@22.7.7)(happy-dom@15.7.4)(lightningcss@1.27.0)(terser@5.36.0))(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):
+ vitest-environment-nuxt@1.0.1(@vue/test-utils@2.4.6)(h3@1.13.0)(happy-dom@15.7.4)(magicast@0.3.5)(nitropack@2.9.7(magicast@0.3.5)(webpack-sources@3.2.3))(playwright-core@1.48.1)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(vitest@2.1.3(@types/node@22.7.9)(happy-dom@15.7.4)(lightningcss@1.27.0)(terser@5.36.0))(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):
dependencies:
- '@nuxt/test-utils': 3.14.4(@vue/test-utils@2.4.6)(h3@1.13.0)(happy-dom@15.7.4)(magicast@0.3.5)(nitropack@2.9.7(magicast@0.3.5)(webpack-sources@3.2.3))(playwright-core@1.48.1)(rollup@3.29.5)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))(vitest@2.1.3(@types/node@22.7.7)(happy-dom@15.7.4)(lightningcss@1.27.0)(terser@5.36.0))(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)
+ '@nuxt/test-utils': 3.14.4(@vue/test-utils@2.4.6)(h3@1.13.0)(happy-dom@15.7.4)(magicast@0.3.5)(nitropack@2.9.7(magicast@0.3.5)(webpack-sources@3.2.3))(playwright-core@1.48.1)(rollup@4.24.0)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))(vitest@2.1.3(@types/node@22.7.9)(happy-dom@15.7.4)(lightningcss@1.27.0)(terser@5.36.0))(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)
transitivePeerDependencies:
- '@cucumber/cucumber'
- '@jest/globals'
@@ -17375,10 +17789,10 @@ snapshots:
- vue-router
- webpack-sources
- vitest@2.1.3(@types/node@22.7.7)(happy-dom@15.7.4)(lightningcss@1.27.0)(terser@5.36.0):
+ vitest@2.1.3(@types/node@22.7.9)(happy-dom@15.7.4)(lightningcss@1.27.0)(terser@5.36.0):
dependencies:
'@vitest/expect': 2.1.3
- '@vitest/mocker': 2.1.3(@vitest/spy@2.1.3)(vite@5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0))
+ '@vitest/mocker': 2.1.3(@vitest/spy@2.1.3)(vite@5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0))
'@vitest/pretty-format': 2.1.3
'@vitest/runner': 2.1.3
'@vitest/snapshot': 2.1.3
@@ -17393,11 +17807,11 @@ snapshots:
tinyexec: 0.3.0
tinypool: 1.0.1
tinyrainbow: 1.2.0
- vite: 5.4.8(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0)
- vite-node: 2.1.3(@types/node@22.7.7)(lightningcss@1.27.0)(terser@5.36.0)
+ vite: 5.4.8(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0)
+ vite-node: 2.1.3(@types/node@22.7.9)(lightningcss@1.27.0)(terser@5.36.0)
why-is-node-running: 2.3.0
optionalDependencies:
- '@types/node': 22.7.7
+ '@types/node': 22.7.9
happy-dom: 15.7.4
transitivePeerDependencies:
- less
@@ -17510,7 +17924,7 @@ snapshots:
webpack-virtual-modules@0.6.2: {}
- webpack@5.95.0(esbuild@0.23.1):
+ webpack@5.95.0(esbuild@0.17.19):
dependencies:
'@types/estree': 1.0.6
'@webassemblyjs/ast': 1.12.1
@@ -17518,7 +17932,7 @@ snapshots:
'@webassemblyjs/wasm-parser': 1.12.1
acorn: 8.13.0
acorn-import-attributes: 1.9.5(acorn@8.13.0)
- browserslist: 4.24.0
+ browserslist: 4.24.2
chrome-trace-event: 1.0.4
enhanced-resolve: 5.17.1
es-module-lexer: 1.5.4
@@ -17532,7 +17946,7 @@ snapshots:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(esbuild@0.23.1)(webpack@5.95.0(esbuild@0.23.1))
+ terser-webpack-plugin: 5.3.10(esbuild@0.17.19)(webpack@5.95.0(esbuild@0.17.19))
watchpack: 2.4.2
webpack-sources: 3.2.3
transitivePeerDependencies:
@@ -17578,6 +17992,43 @@ snapshots:
word-wrap@1.2.5: {}
+ workerd@1.20241022.0:
+ optionalDependencies:
+ '@cloudflare/workerd-darwin-64': 1.20241022.0
+ '@cloudflare/workerd-darwin-arm64': 1.20241022.0
+ '@cloudflare/workerd-linux-64': 1.20241022.0
+ '@cloudflare/workerd-linux-arm64': 1.20241022.0
+ '@cloudflare/workerd-windows-64': 1.20241022.0
+
+ wrangler@3.83.0(@cloudflare/workers-types@4.20241022.0):
+ dependencies:
+ '@cloudflare/kv-asset-handler': 0.3.4
+ '@cloudflare/workers-shared': 0.7.0
+ '@esbuild-plugins/node-globals-polyfill': 0.2.3(esbuild@0.17.19)
+ '@esbuild-plugins/node-modules-polyfill': 0.2.2(esbuild@0.17.19)
+ blake3-wasm: 2.1.5
+ chokidar: 3.6.0
+ date-fns: 4.1.0
+ esbuild: 0.17.19
+ itty-time: 1.0.6
+ miniflare: 3.20241022.0
+ nanoid: 3.3.7
+ path-to-regexp: 6.3.0
+ resolve: 1.22.8
+ resolve.exports: 2.0.2
+ selfsigned: 2.4.1
+ source-map: 0.6.1
+ unenv: unenv-nightly@2.0.0-20241018-011344-e666fcf
+ workerd: 1.20241022.0
+ xxhash-wasm: 1.0.2
+ optionalDependencies:
+ '@cloudflare/workers-types': 4.20241022.0
+ fsevents: 2.3.3
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+
wrap-ansi@7.0.0:
dependencies:
ansi-styles: 4.3.0
@@ -17602,6 +18053,8 @@ snapshots:
cssfilter: 0.0.10
optional: true
+ xxhash-wasm@1.0.2: {}
+
y18n@5.0.8: {}
yallist@3.1.1: {}
@@ -17636,10 +18089,18 @@ snapshots:
yocto-queue@0.1.0: {}
+ yocto-queue@1.1.1: {}
+
yoctocolors@2.1.1: {}
yoga-wasm-web@0.3.3: {}
+ youch@3.3.4:
+ dependencies:
+ cookie: 0.7.2
+ mustache: 4.2.0
+ stacktracey: 2.1.8
+
zhead@2.2.4: {}
zip-stream@6.0.1: