diff --git a/components/status/StatusDetails.vue b/components/status/StatusDetails.vue index 3e485c64..d117c3eb 100644 --- a/components/status/StatusDetails.vue +++ b/components/status/StatusDetails.vue @@ -22,7 +22,7 @@ const createdAt = useFormattedDateTime(status.createdAt) const { t } = useI18n() -useHeadFixed({ +useHead({ title: () => `${getDisplayName(status.account)} ${t('common.in')} ${t('app_name')}: "${removeHTMLTags(status.content) || ''}"`, }) diff --git a/composables/setups.ts b/composables/setups.ts index d0e49dc8..f977de61 100644 --- a/composables/setups.ts +++ b/composables/setups.ts @@ -12,7 +12,7 @@ export function setupPageHeader() { return acc }, {} as Record) - useHeadFixed({ + useHead({ htmlAttrs: { lang: () => locale.value, dir: () => localeMap[locale.value] ?? 'ltr', diff --git a/composables/vue.ts b/composables/vue.ts index a653b3cc..9b02e4f6 100644 --- a/composables/vue.ts +++ b/composables/vue.ts @@ -1,8 +1,5 @@ import type { ComponentInternalInstance } from 'vue' import { onActivated, onDeactivated, ref } from 'vue' -import type { ActiveHeadEntry, HeadEntryOptions, UseHeadInput } from '@vueuse/head' -import type { HeadAugmentations } from '@nuxt/schema' -import { useHead } from '#head' export const isHydrated = ref(false) @@ -37,27 +34,3 @@ export function onReactivated(hook: Function, target?: ComponentInternalInstance }, target) onDeactivated(() => initial.value = false) } - -// TODO: Workaround for Nuxt bug: https://github.com/elk-zone/elk/pull/199#issuecomment-1329771961 -export function useHeadFixed(input: UseHeadInput, options?: HeadEntryOptions): ActiveHeadEntry> | void { - const deactivated = useDeactivated() - if (input && typeof input === 'object' && !('value' in input)) { - const title = 'title' in input ? input.title : undefined - if (process.server && title) { - input.meta = input.meta || [] - if (Array.isArray(input.meta)) { - input.meta.push( - { property: 'og:title', content: (typeof input.title === 'function' ? input.title() : input.title) as string }, - ) - } - } - else if (title) { - (input as any).title = () => isHydrated.value ? typeof title === 'function' ? title() : title : '' - } - } - return useHead(() => { - if (deactivated.value) - return {} - return resolveUnref(input) - }, options) -} diff --git a/package.json b/package.json index 4401575e..42bc4538 100644 --- a/package.json +++ b/package.json @@ -107,7 +107,7 @@ }, "devDependencies": { "@antfu/eslint-config": "^0.34.1", - "@antfu/ni": "^0.19.0", + "@antfu/ni": "^0.20.0", "@types/chroma-js": "^2.1.4", "@types/file-saver": "^2.0.5", "@types/flat": "^5.0.2", @@ -122,7 +122,7 @@ "flat": "^5.0.2", "fs-extra": "^11.1.0", "lint-staged": "^13.1.0", - "nuxt": "3.2.0", + "nuxt": "3.2.2", "prettier": "^2.8.3", "simple-git-hooks": "^2.8.1", "typescript": "^4.9.5", diff --git a/pages/[[server]]/@[account]/index/followers.vue b/pages/[[server]]/@[account]/index/followers.vue index 17bbd0ad..dcb4ebe4 100644 --- a/pages/[[server]]/@[account]/index/followers.vue +++ b/pages/[[server]]/@[account]/index/followers.vue @@ -11,7 +11,7 @@ const paginator = account ? useMastoClient().v1.accounts.listFollowers(account.i const isSelf = useSelfAccount(account) if (account) { - useHeadFixed({ + useHead({ title: () => `${t('account.followers')} | ${getDisplayName(account)} (@${account.acct})`, }) } diff --git a/pages/[[server]]/@[account]/index/following.vue b/pages/[[server]]/@[account]/index/following.vue index f030e281..b65f749d 100644 --- a/pages/[[server]]/@[account]/index/following.vue +++ b/pages/[[server]]/@[account]/index/following.vue @@ -11,7 +11,7 @@ const paginator = account ? useMastoClient().v1.accounts.listFollowing(account.i const isSelf = useSelfAccount(account) if (account) { - useHeadFixed({ + useHead({ title: () => `${t('account.following')} | ${getDisplayName(account)} (@${account.acct})`, }) } diff --git a/pages/[[server]]/@[account]/index/index.vue b/pages/[[server]]/@[account]/index/index.vue index 60ec4b07..dacf716f 100644 --- a/pages/[[server]]/@[account]/index/index.vue +++ b/pages/[[server]]/@[account]/index/index.vue @@ -15,7 +15,7 @@ const reorderAndFilter = (items: mastodon.v1.Status[]) => reorderedTimeline(item const paginator = useMastoClient().v1.accounts.listStatuses(account.id, { limit: 30, excludeReplies: true }) if (account) { - useHeadFixed({ + useHead({ title: () => `${t('account.posts')} | ${getDisplayName(account)} (@${account.acct})`, }) } diff --git a/pages/[[server]]/@[account]/index/media.vue b/pages/[[server]]/@[account]/index/media.vue index e31776e7..6db9760a 100644 --- a/pages/[[server]]/@[account]/index/media.vue +++ b/pages/[[server]]/@[account]/index/media.vue @@ -10,7 +10,7 @@ const account = await fetchAccountByHandle(handle) const paginator = useMastoClient().v1.accounts.listStatuses(account.id, { onlyMedia: true, excludeReplies: false }) if (account) { - useHeadFixed({ + useHead({ title: () => `${t('tab.media')} | ${getDisplayName(account)} (@${account.acct})`, }) } diff --git a/pages/[[server]]/@[account]/index/with_replies.vue b/pages/[[server]]/@[account]/index/with_replies.vue index 342d1cc7..b5501c91 100644 --- a/pages/[[server]]/@[account]/index/with_replies.vue +++ b/pages/[[server]]/@[account]/index/with_replies.vue @@ -10,7 +10,7 @@ const account = await fetchAccountByHandle(handle) const paginator = useMastoClient().v1.accounts.listStatuses(account.id, { excludeReplies: false }) if (account) { - useHeadFixed({ + useHead({ title: () => `${t('tab.posts_with_replies')} | ${getDisplayName(account)} (@${account.acct})`, }) } diff --git a/pages/[[server]]/explore/index.vue b/pages/[[server]]/explore/index.vue index a9e10123..df53e0be 100644 --- a/pages/[[server]]/explore/index.vue +++ b/pages/[[server]]/explore/index.vue @@ -7,7 +7,7 @@ const paginator = useMastoClient().v1.trends.listStatuses() const hideNewsTips = useLocalStorage(STORAGE_KEY_HIDE_EXPLORE_POSTS_TIPS, false) -useHeadFixed({ +useHead({ title: () => `${t('tab.posts')} | ${t('nav.explore')}`, }) diff --git a/pages/[[server]]/explore/links.vue b/pages/[[server]]/explore/links.vue index b3025151..92b10309 100644 --- a/pages/[[server]]/explore/links.vue +++ b/pages/[[server]]/explore/links.vue @@ -7,7 +7,7 @@ const paginator = useMastoClient().v1.trends.listLinks() const hideNewsTips = useLocalStorage(STORAGE_KEY_HIDE_EXPLORE_NEWS_TIPS, false) -useHeadFixed({ +useHead({ title: () => `${t('tab.news')} | ${t('nav.explore')}`, }) diff --git a/pages/[[server]]/explore/tags.vue b/pages/[[server]]/explore/tags.vue index a4e6381a..dadbc5ed 100644 --- a/pages/[[server]]/explore/tags.vue +++ b/pages/[[server]]/explore/tags.vue @@ -10,7 +10,7 @@ const paginator = client.v1.trends.listTags({ const hideTagsTips = useLocalStorage(STORAGE_KEY_HIDE_EXPLORE_TAGS_TIPS, false) -useHeadFixed({ +useHead({ title: () => `${t('tab.hashtags')} | ${t('nav.explore')}`, }) diff --git a/pages/[[server]]/explore/users.vue b/pages/[[server]]/explore/users.vue index 96e656ec..b3080094 100644 --- a/pages/[[server]]/explore/users.vue +++ b/pages/[[server]]/explore/users.vue @@ -4,7 +4,7 @@ const { t } = useI18n() // limit: 20 is the default configuration of the official client const paginator = useMastoClient().v2.suggestions.list({ limit: 20 }) -useHeadFixed({ +useHead({ title: () => `${t('tab.for_you')} | ${t('nav.explore')}`, }) diff --git a/pages/[[server]]/list/[list]/index.vue b/pages/[[server]]/list/[list]/index.vue index bdee17b9..1780ebcf 100644 --- a/pages/[[server]]/list/[list]/index.vue +++ b/pages/[[server]]/list/[list]/index.vue @@ -35,7 +35,7 @@ const { client } = $(useMasto()) const { data: listInfo, refresh } = $(await useAsyncData(() => client.v1.lists.fetch(list), { default: () => shallowRef() })) if (listInfo) { - useHeadFixed({ + useHead({ title: () => `${listInfo.title} | ${route.fullPath.endsWith('/accounts') ? t('tab.accounts') : t('tab.posts')} | ${t('nav.lists')}`, }) } diff --git a/pages/[[server]]/lists.vue b/pages/[[server]]/lists.vue index 6cef79f8..00f3372c 100644 --- a/pages/[[server]]/lists.vue +++ b/pages/[[server]]/lists.vue @@ -11,7 +11,7 @@ const client = useMastoClient() const paginator = client.v1.lists.list() -useHeadFixed({ +useHead({ title: () => t('nav.lists'), }) diff --git a/pages/[[server]]/public/index.vue b/pages/[[server]]/public/index.vue index 67c3ab78..077fa6b9 100644 --- a/pages/[[server]]/public/index.vue +++ b/pages/[[server]]/public/index.vue @@ -1,9 +1,7 @@ diff --git a/pages/[[server]]/public/local.vue b/pages/[[server]]/public/local.vue index 70bda8a1..d04171ab 100644 --- a/pages/[[server]]/public/local.vue +++ b/pages/[[server]]/public/local.vue @@ -1,8 +1,7 @@ diff --git a/pages/[[server]]/tags/[tag].vue b/pages/[[server]]/tags/[tag].vue index 3df97c80..847ae7f5 100644 --- a/pages/[[server]]/tags/[tag].vue +++ b/pages/[[server]]/tags/[tag].vue @@ -13,7 +13,7 @@ const paginator = client.v1.timelines.listHashtag(tagName) const stream = useStreaming(client => client.v1.stream.streamTagTimeline(tagName)) if (tag) { - useHeadFixed({ + useHead({ title: () => `#${tag.name}`, }) } diff --git a/pages/blocks.vue b/pages/blocks.vue index 9fd63656..4e3b6015 100644 --- a/pages/blocks.vue +++ b/pages/blocks.vue @@ -5,7 +5,7 @@ definePageMeta({ const { t } = useI18n() -useHeadFixed({ +useHead({ title: () => t('nav.blocked_users'), }) diff --git a/pages/bookmarks.vue b/pages/bookmarks.vue index 18b424ee..1d0ed886 100644 --- a/pages/bookmarks.vue +++ b/pages/bookmarks.vue @@ -5,7 +5,7 @@ definePageMeta({ const { t } = useI18n() -useHeadFixed({ +useHead({ title: () => t('nav.bookmarks'), }) diff --git a/pages/compose.vue b/pages/compose.vue index 9709cbc7..656ca1fc 100644 --- a/pages/compose.vue +++ b/pages/compose.vue @@ -1,6 +1,6 @@ diff --git a/pages/conversations.vue b/pages/conversations.vue index fe54fbec..5c17537b 100644 --- a/pages/conversations.vue +++ b/pages/conversations.vue @@ -5,7 +5,7 @@ definePageMeta({ const { t } = useI18n() -useHeadFixed({ +useHead({ title: () => t('nav.conversations'), }) diff --git a/pages/domain_blocks.vue b/pages/domain_blocks.vue index f2f84fb5..663292b6 100644 --- a/pages/domain_blocks.vue +++ b/pages/domain_blocks.vue @@ -5,7 +5,7 @@ definePageMeta({ const { t } = useI18n() -useHeadFixed({ +useHead({ title: () => t('nav.blocked_domains'), }) diff --git a/pages/favourites.vue b/pages/favourites.vue index 2d107785..7f840e4b 100644 --- a/pages/favourites.vue +++ b/pages/favourites.vue @@ -5,7 +5,7 @@ definePageMeta({ const { t } = useI18n() -useHeadFixed({ +useHead({ title: () => t('nav.favourites'), }) diff --git a/pages/home.vue b/pages/home.vue index 90b97bbe..169244db 100644 --- a/pages/home.vue +++ b/pages/home.vue @@ -1,6 +1,4 @@ diff --git a/pages/mutes.vue b/pages/mutes.vue index 92db7eac..c1e0bda9 100644 --- a/pages/mutes.vue +++ b/pages/mutes.vue @@ -5,7 +5,7 @@ definePageMeta({ const { t } = useI18n() -useHeadFixed({ +useHead({ title: () => t('nav.muted_users'), }) diff --git a/pages/notifications/index.vue b/pages/notifications/index.vue index 5862ee7c..e9873b95 100644 --- a/pages/notifications/index.vue +++ b/pages/notifications/index.vue @@ -1,6 +1,6 @@ diff --git a/pages/notifications/mention.vue b/pages/notifications/mention.vue index c157d6f8..8a584914 100644 --- a/pages/notifications/mention.vue +++ b/pages/notifications/mention.vue @@ -1,6 +1,6 @@ diff --git a/pages/pinned.vue b/pages/pinned.vue index 7273385f..f573c10f 100644 --- a/pages/pinned.vue +++ b/pages/pinned.vue @@ -5,7 +5,7 @@ definePageMeta({ const { t } = useI18n() -useHeadFixed({ +useHead({ title: () => t('account.pinned'), }) diff --git a/pages/settings.vue b/pages/settings.vue index f2c8e614..38c81872 100644 --- a/pages/settings.vue +++ b/pages/settings.vue @@ -5,7 +5,7 @@ definePageMeta({ const { t } = useI18n() -useHeadFixed({ +useHead({ title: () => t('nav.settings'), }) diff --git a/pages/settings/about/index.vue b/pages/settings/about/index.vue index 93af736c..6f7cd7c1 100644 --- a/pages/settings/about/index.vue +++ b/pages/settings/about/index.vue @@ -2,7 +2,7 @@ const buildInfo = useBuildInfo() const { t } = useI18n() -useHeadFixed({ +useHead({ title: () => `${t('settings.about.label')} | ${t('nav.settings')}`, }) diff --git a/pages/settings/interface/index.vue b/pages/settings/interface/index.vue index 804e7f89..2ac20970 100644 --- a/pages/settings/interface/index.vue +++ b/pages/settings/interface/index.vue @@ -1,7 +1,7 @@ diff --git a/pages/settings/language/index.vue b/pages/settings/language/index.vue index 9a8e3042..5f16bb11 100644 --- a/pages/settings/language/index.vue +++ b/pages/settings/language/index.vue @@ -5,7 +5,7 @@ const { t, locale } = useI18n() const translationStatus: ElkTranslationStatus = await import('~/elk-translation-status.json').then(m => m.default) -useHeadFixed({ +useHead({ title: () => `${t('settings.language.label')} | ${t('nav.settings')}`, }) const status = computed(() => { diff --git a/pages/settings/notifications/index.vue b/pages/settings/notifications/index.vue index ef95d85a..80704319 100644 --- a/pages/settings/notifications/index.vue +++ b/pages/settings/notifications/index.vue @@ -6,7 +6,7 @@ definePageMeta({ const { t } = useI18n() const pwaEnabled = useAppConfig().pwaEnabled -useHeadFixed({ +useHead({ title: () => `${t('settings.notifications.label')} | ${t('nav.settings')}`, }) diff --git a/pages/settings/notifications/notifications.vue b/pages/settings/notifications/notifications.vue index 68ede7fc..e58ee448 100644 --- a/pages/settings/notifications/notifications.vue +++ b/pages/settings/notifications/notifications.vue @@ -5,7 +5,7 @@ definePageMeta({ const { t } = useI18n() -useHeadFixed({ +useHead({ title: () => `${t('settings.notifications.notifications.label')} | ${t('settings.notifications.label')} | ${t('nav.settings')}`, }) diff --git a/pages/settings/notifications/push-notifications.vue b/pages/settings/notifications/push-notifications.vue index 641cb5a0..5bf238cb 100644 --- a/pages/settings/notifications/push-notifications.vue +++ b/pages/settings/notifications/push-notifications.vue @@ -8,7 +8,7 @@ definePageMeta({ const { t } = useI18n() -useHeadFixed({ +useHead({ title: () => `${t('settings.notifications.push_notifications.label')} | ${t('settings.notifications.label')} | ${t('nav.settings')}`, }) diff --git a/pages/settings/preferences/index.vue b/pages/settings/preferences/index.vue index f20819c6..c3344105 100644 --- a/pages/settings/preferences/index.vue +++ b/pages/settings/preferences/index.vue @@ -1,7 +1,7 @@ diff --git a/pages/settings/profile/index.vue b/pages/settings/profile/index.vue index 35290952..c480767a 100644 --- a/pages/settings/profile/index.vue +++ b/pages/settings/profile/index.vue @@ -5,7 +5,7 @@ definePageMeta({ const { t } = useI18n() -useHeadFixed({ +useHead({ title: () => `${t('settings.profile.label')} | ${t('nav.settings')}`, }) diff --git a/pages/settings/users/index.vue b/pages/settings/users/index.vue index 7d667b9d..82734a09 100644 --- a/pages/settings/users/index.vue +++ b/pages/settings/users/index.vue @@ -5,7 +5,7 @@ import type { UserLogin } from '~/types' const { t } = useI18n() -useHeadFixed({ +useHead({ title: () => `${t('settings.users.label')} | ${t('nav.settings')}`, }) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index f4c4716e..39db1eca 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,7 +29,7 @@ importers: .: specifiers: '@antfu/eslint-config': ^0.34.1 - '@antfu/ni': ^0.19.0 + '@antfu/ni': ^0.20.0 '@emoji-mart/data': ^1.1.2 '@fnando/sparkline': ^0.3.10 '@iconify-emoji/twemoji': ^1.0.2 @@ -93,7 +93,7 @@ importers: lint-staged: ^13.1.0 lru-cache: ^7.14.1 masto: ^5.6.1 - nuxt: 3.2.0 + nuxt: 3.2.2 nuxt-security: ^0.10.1 nuxt-vitest: ^0.6.4 page-lifecycle: ^0.1.2 @@ -138,7 +138,7 @@ importers: '@iconify-json/ri': 1.1.4 '@iconify-json/twemoji': 1.1.10 '@iconify/utils': 2.0.12 - '@nuxt/devtools': 0.1.0_nuxt@3.2.0 + '@nuxt/devtools': 0.1.0_nuxt@3.2.2 '@nuxtjs/color-mode': 3.2.0 '@nuxtjs/i18n': 8.0.0-beta.9 '@pinia/nuxt': 0.4.6_typescript@4.9.5 @@ -153,13 +153,13 @@ importers: '@tiptap/suggestion': 2.0.0-beta.204 '@tiptap/vue-3': 2.0.0-beta.204 '@unocss/nuxt': 0.49.1 - '@vue-macros/nuxt': 1.0.3_6l3fqwfj7gx5aeecw2zdghwe7m + '@vue-macros/nuxt': 1.0.3_vyb7vsolkurixhhd26iueh2osa '@vueuse/core': 9.12.0 '@vueuse/gesture': 2.0.0-beta.1 '@vueuse/integrations': 9.11.1_ha7ivgav6uqpoo2b5thfugqwjq '@vueuse/math': 9.11.1 '@vueuse/motion': 2.0.0-beta.12 - '@vueuse/nuxt': 9.12.0_nuxt@3.2.0 + '@vueuse/nuxt': 9.12.0_nuxt@3.2.2 blurhash: 2.0.4 browser-fs-access: 0.31.2 chroma-js: 2.4.2 @@ -198,14 +198,14 @@ importers: ultrahtml: 1.2.0 unimport: 2.2.4 unplugin-auto-import: 0.13.0_@vueuse+core@9.12.0 - vite-plugin-pwa: 0.14.1_tz3vz2xt4jvid2diblkpydcyn4 + vite-plugin-pwa: 0.14.1 vue-advanced-cropper: 2.8.8 vue-virtual-scroller: 2.0.0-beta.7 workbox-build: 6.5.4 workbox-window: 6.5.4 devDependencies: '@antfu/eslint-config': 0.34.1_et5x32uxl7z5ldub3ye5rhlyqm - '@antfu/ni': 0.19.0 + '@antfu/ni': 0.20.0 '@types/chroma-js': 2.1.4 '@types/file-saver': 2.0.5 '@types/flat': 5.0.2 @@ -220,7 +220,7 @@ importers: flat: 5.0.2 fs-extra: 11.1.0 lint-staged: 13.1.0 - nuxt: 3.2.0_7rz7g5sqfnn6wuv5lem37retty + nuxt: 3.2.2_7rz7g5sqfnn6wuv5lem37retty prettier: 2.8.3 simple-git-hooks: 2.8.1 typescript: 4.9.5 @@ -344,8 +344,8 @@ packages: find-up: 5.0.0 dev: false - /@antfu/ni/0.19.0: - resolution: {integrity: sha512-33VKTuBjoW2canoVMGa4g5oGCg7KK8UVmBBmUKzvQ+Fa69kk2YI8sqt94WCpvSWmW/yD5ZXsD9G9s689b9KwwQ==} + /@antfu/ni/0.20.0: + resolution: {integrity: sha512-mBgAuq2b0daSA/14LMyjEjaInD7/Zd7KVXZge7bQPKmtQJFqy9/pWBml6DMkMreeHQEomMtIbbeqReNJ/74kjA==} hasBin: true dev: true @@ -1600,6 +1600,15 @@ packages: cpu: [arm] os: [android] requiresBuild: true + dev: true + optional: true + + /@esbuild/android-arm/0.17.8: + resolution: {integrity: sha512-0/rb91GYKhrtbeglJXOhAv9RuYimgI8h623TplY2X+vA4EXnk3Zj1fXZreJ0J3OJJu1bwmb0W7g+2cT/d8/l/w==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + requiresBuild: true optional: true /@esbuild/android-arm64/0.16.17: @@ -1616,6 +1625,15 @@ packages: cpu: [arm64] os: [android] requiresBuild: true + dev: true + optional: true + + /@esbuild/android-arm64/0.17.8: + resolution: {integrity: sha512-oa/N5j6v1svZQs7EIRPqR8f+Bf8g6HBDjD/xHC02radE/NjKHK7oQmtmLxPs1iVwYyvE+Kolo6lbpfEQ9xnhxQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + requiresBuild: true optional: true /@esbuild/android-x64/0.16.17: @@ -1632,6 +1650,15 @@ packages: cpu: [x64] os: [android] requiresBuild: true + dev: true + optional: true + + /@esbuild/android-x64/0.17.8: + resolution: {integrity: sha512-bTliMLqD7pTOoPg4zZkXqCDuzIUguEWLpeqkNfC41ODBHwoUgZ2w5JBeYimv4oP6TDVocoYmEhZrCLQTrH89bg==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + requiresBuild: true optional: true /@esbuild/darwin-arm64/0.16.17: @@ -1648,6 +1675,15 @@ packages: cpu: [arm64] os: [darwin] requiresBuild: true + dev: true + optional: true + + /@esbuild/darwin-arm64/0.17.8: + resolution: {integrity: sha512-ghAbV3ia2zybEefXRRm7+lx8J/rnupZT0gp9CaGy/3iolEXkJ6LYRq4IpQVI9zR97ID80KJVoUlo3LSeA/sMAg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + requiresBuild: true optional: true /@esbuild/darwin-x64/0.16.17: @@ -1664,6 +1700,15 @@ packages: cpu: [x64] os: [darwin] requiresBuild: true + dev: true + optional: true + + /@esbuild/darwin-x64/0.17.8: + resolution: {integrity: sha512-n5WOpyvZ9TIdv2V1K3/iIkkJeKmUpKaCTdun9buhGRWfH//osmUjlv4Z5mmWdPWind/VGcVxTHtLfLCOohsOXw==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + requiresBuild: true optional: true /@esbuild/freebsd-arm64/0.16.17: @@ -1680,6 +1725,15 @@ packages: cpu: [arm64] os: [freebsd] requiresBuild: true + dev: true + optional: true + + /@esbuild/freebsd-arm64/0.17.8: + resolution: {integrity: sha512-a/SATTaOhPIPFWvHZDoZYgxaZRVHn0/LX1fHLGfZ6C13JqFUZ3K6SMD6/HCtwOQ8HnsNaEeokdiDSFLuizqv5A==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + requiresBuild: true optional: true /@esbuild/freebsd-x64/0.16.17: @@ -1696,6 +1750,15 @@ packages: cpu: [x64] os: [freebsd] requiresBuild: true + dev: true + optional: true + + /@esbuild/freebsd-x64/0.17.8: + resolution: {integrity: sha512-xpFJb08dfXr5+rZc4E+ooZmayBW6R3q59daCpKZ/cDU96/kvDM+vkYzNeTJCGd8rtO6fHWMq5Rcv/1cY6p6/0Q==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + requiresBuild: true optional: true /@esbuild/linux-arm/0.16.17: @@ -1712,6 +1775,15 @@ packages: cpu: [arm] os: [linux] requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-arm/0.17.8: + resolution: {integrity: sha512-6Ij8gfuGszcEwZpi5jQIJCVIACLS8Tz2chnEBfYjlmMzVsfqBP1iGmHQPp7JSnZg5xxK9tjCc+pJ2WtAmPRFVA==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + requiresBuild: true optional: true /@esbuild/linux-arm64/0.16.17: @@ -1728,6 +1800,15 @@ packages: cpu: [arm64] os: [linux] requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-arm64/0.17.8: + resolution: {integrity: sha512-v3iwDQuDljLTxpsqQDl3fl/yihjPAyOguxuloON9kFHYwopeJEf1BkDXODzYyXEI19gisEsQlG1bM65YqKSIww==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + requiresBuild: true optional: true /@esbuild/linux-ia32/0.16.17: @@ -1744,6 +1825,15 @@ packages: cpu: [ia32] os: [linux] requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-ia32/0.17.8: + resolution: {integrity: sha512-8svILYKhE5XetuFk/B6raFYIyIqydQi+GngEXJgdPdI7OMKUbSd7uzR02wSY4kb53xBrClLkhH4Xs8P61Q2BaA==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + requiresBuild: true optional: true /@esbuild/linux-loong64/0.15.18: @@ -1768,6 +1858,15 @@ packages: cpu: [loong64] os: [linux] requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-loong64/0.17.8: + resolution: {integrity: sha512-B6FyMeRJeV0NpyEOYlm5qtQfxbdlgmiGdD+QsipzKfFky0K5HW5Td6dyK3L3ypu1eY4kOmo7wW0o94SBqlqBSA==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + requiresBuild: true optional: true /@esbuild/linux-mips64el/0.16.17: @@ -1784,6 +1883,15 @@ packages: cpu: [mips64el] os: [linux] requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-mips64el/0.17.8: + resolution: {integrity: sha512-CCb67RKahNobjm/eeEqeD/oJfJlrWyw29fgiyB6vcgyq97YAf3gCOuP6qMShYSPXgnlZe/i4a8WFHBw6N8bYAA==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + requiresBuild: true optional: true /@esbuild/linux-ppc64/0.16.17: @@ -1800,6 +1908,15 @@ packages: cpu: [ppc64] os: [linux] requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-ppc64/0.17.8: + resolution: {integrity: sha512-bytLJOi55y55+mGSdgwZ5qBm0K9WOCh0rx+vavVPx+gqLLhxtSFU0XbeYy/dsAAD6xECGEv4IQeFILaSS2auXw==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + requiresBuild: true optional: true /@esbuild/linux-riscv64/0.16.17: @@ -1816,6 +1933,15 @@ packages: cpu: [riscv64] os: [linux] requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-riscv64/0.17.8: + resolution: {integrity: sha512-2YpRyQJmKVBEHSBLa8kBAtbhucaclb6ex4wchfY0Tj3Kg39kpjeJ9vhRU7x4mUpq8ISLXRXH1L0dBYjAeqzZAw==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + requiresBuild: true optional: true /@esbuild/linux-s390x/0.16.17: @@ -1832,6 +1958,15 @@ packages: cpu: [s390x] os: [linux] requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-s390x/0.17.8: + resolution: {integrity: sha512-QgbNY/V3IFXvNf11SS6exkpVcX0LJcob+0RWCgV9OiDAmVElnxciHIisoSix9uzYzScPmS6dJFbZULdSAEkQVw==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + requiresBuild: true optional: true /@esbuild/linux-x64/0.16.17: @@ -1848,6 +1983,15 @@ packages: cpu: [x64] os: [linux] requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-x64/0.17.8: + resolution: {integrity: sha512-mM/9S0SbAFDBc4OPoyP6SEOo5324LpUxdpeIUUSrSTOfhHU9hEfqRngmKgqILqwx/0DVJBzeNW7HmLEWp9vcOA==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + requiresBuild: true optional: true /@esbuild/netbsd-x64/0.16.17: @@ -1864,6 +2008,15 @@ packages: cpu: [x64] os: [netbsd] requiresBuild: true + dev: true + optional: true + + /@esbuild/netbsd-x64/0.17.8: + resolution: {integrity: sha512-eKUYcWaWTaYr9zbj8GertdVtlt1DTS1gNBWov+iQfWuWyuu59YN6gSEJvFzC5ESJ4kMcKR0uqWThKUn5o8We6Q==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + requiresBuild: true optional: true /@esbuild/openbsd-x64/0.16.17: @@ -1880,6 +2033,15 @@ packages: cpu: [x64] os: [openbsd] requiresBuild: true + dev: true + optional: true + + /@esbuild/openbsd-x64/0.17.8: + resolution: {integrity: sha512-Vc9J4dXOboDyMXKD0eCeW0SIeEzr8K9oTHJU+Ci1mZc5njPfhKAqkRt3B/fUNU7dP+mRyralPu8QUkiaQn7iIg==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + requiresBuild: true optional: true /@esbuild/sunos-x64/0.16.17: @@ -1896,6 +2058,15 @@ packages: cpu: [x64] os: [sunos] requiresBuild: true + dev: true + optional: true + + /@esbuild/sunos-x64/0.17.8: + resolution: {integrity: sha512-0xvOTNuPXI7ft1LYUgiaXtpCEjp90RuBBYovdd2lqAFxje4sEucurg30M1WIm03+3jxByd3mfo+VUmPtRSVuOw==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + requiresBuild: true optional: true /@esbuild/win32-arm64/0.16.17: @@ -1912,6 +2083,15 @@ packages: cpu: [arm64] os: [win32] requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-arm64/0.17.8: + resolution: {integrity: sha512-G0JQwUI5WdEFEnYNKzklxtBheCPkuDdu1YrtRrjuQv30WsYbkkoixKxLLv8qhJmNI+ATEWquZe/N0d0rpr55Mg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + requiresBuild: true optional: true /@esbuild/win32-ia32/0.16.17: @@ -1928,6 +2108,15 @@ packages: cpu: [ia32] os: [win32] requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-ia32/0.17.8: + resolution: {integrity: sha512-Fqy63515xl20OHGFykjJsMnoIWS+38fqfg88ClvPXyDbLtgXal2DTlhb1TfTX34qWi3u4I7Cq563QcHpqgLx8w==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + requiresBuild: true optional: true /@esbuild/win32-x64/0.16.17: @@ -1944,6 +2133,15 @@ packages: cpu: [x64] os: [win32] requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-x64/0.17.8: + resolution: {integrity: sha512-1iuezdyDNngPnz8rLRDO2C/ZZ/emJLb72OsZeqQ6gL6Avko/XCXZw+NuxBSNhBAP13Hie418V7VMt9et1FMvpg==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + requiresBuild: true optional: true /@eslint-community/eslint-utils/4.1.2_eslint@8.32.0: @@ -2447,7 +2645,7 @@ packages: /@nuxt/devalue/2.0.0: resolution: {integrity: sha512-YBI/6o2EBz02tdEJRBK8xkt3zvOFOWlLBf7WKYGBsSYSRtjjgrqPe2skp6VLLmKx5WbHHDNcW+6oACaurxGzeA==} - /@nuxt/devtools/0.1.0_nuxt@3.2.0: + /@nuxt/devtools/0.1.0_nuxt@3.2.2: resolution: {integrity: sha512-N8C+TDZAiMZi68HtQgUnKECsmRGV1t2xVSvLE+MdlY5t4OvzRTkhes6ONDP7lqDKZqUj7TcIgWShBvJa+InurA==} hasBin: true peerDependencies: @@ -2461,7 +2659,7 @@ packages: h3: 1.4.0 hookable: 5.4.2 launch-editor: 2.6.0 - nuxt: 3.2.0_7rz7g5sqfnn6wuv5lem37retty + nuxt: 3.2.2_7rz7g5sqfnn6wuv5lem37retty pathe: 1.1.0 pkg-types: 1.0.1 rc9: 2.0.1 @@ -2552,6 +2750,59 @@ packages: transitivePeerDependencies: - rollup - supports-color + dev: true + + /@nuxt/kit/3.2.2: + resolution: {integrity: sha512-T3UeLxGSNl7dQgKzmtBbPEkUiiBYgXI+KkemmpkYbQK/l+bWy2f9VQw/Rl0HkQLfRTE2fS8q8jhsOedFiEnHQQ==} + engines: {node: ^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0} + dependencies: + '@nuxt/schema': 3.2.2 + c12: 1.1.2 + consola: 2.15.3 + defu: 6.1.2 + globby: 13.1.3 + hash-sum: 2.0.0 + ignore: 5.2.4 + jiti: 1.17.1 + knitwork: 1.0.0 + lodash.template: 4.5.0 + mlly: 1.1.1 + pathe: 1.1.0 + pkg-types: 1.0.2 + scule: 1.0.0 + semver: 7.3.8 + unctx: 2.1.2 + unimport: 2.2.4 + untyped: 1.2.2 + transitivePeerDependencies: + - rollup + - supports-color + + /@nuxt/kit/3.2.2_rollup@3.16.0: + resolution: {integrity: sha512-T3UeLxGSNl7dQgKzmtBbPEkUiiBYgXI+KkemmpkYbQK/l+bWy2f9VQw/Rl0HkQLfRTE2fS8q8jhsOedFiEnHQQ==} + engines: {node: ^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0} + dependencies: + '@nuxt/schema': 3.2.2_rollup@3.16.0 + c12: 1.1.2 + consola: 2.15.3 + defu: 6.1.2 + globby: 13.1.3 + hash-sum: 2.0.0 + ignore: 5.2.4 + jiti: 1.17.1 + knitwork: 1.0.0 + lodash.template: 4.5.0 + mlly: 1.1.1 + pathe: 1.1.0 + pkg-types: 1.0.2 + scule: 1.0.0 + semver: 7.3.8 + unctx: 2.1.2 + unimport: 2.2.4_rollup@3.16.0 + untyped: 1.2.2 + transitivePeerDependencies: + - rollup + - supports-color /@nuxt/schema/3.1.1: resolution: {integrity: sha512-/KuoCDVGrLD9W7vwuYhu4HbdT/BpbrhA4Pm9dGn7Jah40kHDGqUnJxugvMjt+4suq53rLQyTA0LRDWfFxfxAOQ==} @@ -2616,6 +2867,77 @@ packages: transitivePeerDependencies: - rollup - supports-color + dev: true + + /@nuxt/schema/3.2.2: + resolution: {integrity: sha512-o3O2OqLAMKqb/DlGpK8eJq4tH29NA4OMaohknSSXl35+Nw/qHB5eOLDz+cFxNE+MKHoMj1rRVMCfi/Y/PrCN6g==} + engines: {node: ^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0} + dependencies: + c12: 1.1.2 + create-require: 1.1.1 + defu: 6.1.2 + hookable: 5.4.2 + jiti: 1.17.1 + pathe: 1.1.0 + pkg-types: 1.0.2 + postcss-import-resolver: 2.0.0 + scule: 1.0.0 + std-env: 3.3.2 + ufo: 1.1.0 + unimport: 2.2.4 + untyped: 1.2.2 + transitivePeerDependencies: + - rollup + - supports-color + + /@nuxt/schema/3.2.2_rollup@3.16.0: + resolution: {integrity: sha512-o3O2OqLAMKqb/DlGpK8eJq4tH29NA4OMaohknSSXl35+Nw/qHB5eOLDz+cFxNE+MKHoMj1rRVMCfi/Y/PrCN6g==} + engines: {node: ^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0} + dependencies: + c12: 1.1.2 + create-require: 1.1.1 + defu: 6.1.2 + hookable: 5.4.2 + jiti: 1.17.1 + pathe: 1.1.0 + pkg-types: 1.0.2 + postcss-import-resolver: 2.0.0 + scule: 1.0.0 + std-env: 3.3.2 + ufo: 1.1.0 + unimport: 2.2.4_rollup@3.16.0 + untyped: 1.2.2 + transitivePeerDependencies: + - rollup + - supports-color + + /@nuxt/telemetry/2.1.10: + resolution: {integrity: sha512-FOsfC0i6Ix66M/ZlWV/095JIdfnRR9CRbFvBSpojt2CpbwU1pGMbRiicwYg2f1Wf27LXQRNpNn1OczruBfEWag==} + hasBin: true + dependencies: + '@nuxt/kit': 3.2.2 + chalk: 5.2.0 + ci-info: 3.8.0 + consola: 2.15.3 + create-require: 1.1.1 + defu: 6.1.2 + destr: 1.2.2 + dotenv: 16.0.3 + fs-extra: 10.1.0 + git-url-parse: 13.1.0 + inquirer: 9.1.4 + is-docker: 3.0.0 + jiti: 1.17.1 + mri: 1.2.0 + nanoid: 4.0.1 + node-fetch: 3.3.0 + ofetch: 1.0.1 + parse-git-config: 3.0.0 + rc9: 2.0.1 + std-env: 3.3.2 + transitivePeerDependencies: + - rollup + - supports-color /@nuxt/telemetry/2.1.9: resolution: {integrity: sha512-mUyDqmB8GUJwTHVnwxuapeUHDSsUycOt+ZsA7GB6F8MOBJiVhQl/EeEAWoO2TUs0BPp2SlY9uO6eQihvxyLRqQ==} @@ -2644,67 +2966,11 @@ packages: transitivePeerDependencies: - rollup - supports-color + dev: true /@nuxt/ui-templates/1.1.1: resolution: {integrity: sha512-PjVETP7+iZXAs5Q8O4ivl4t6qjWZMZqwiTVogUXHoHGZZcw7GZW3u3tzfYfE1HbzyYJfr236IXqQ02MeR8Fz2w==} - /@nuxt/vite-builder/3.2.0_vshnhw7h4tuo6ge5ck2wv7vfrm: - resolution: {integrity: sha512-1rApkhjQMUndRKl9bFn/NdAVxUgPeAB/XIEgP0YN4KPTM156Q/fvgu8LrzUp4lzYgGGKfm4r8IfuxYS9BremMQ==} - engines: {node: ^14.16.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0} - peerDependencies: - vue: ^3.2.47 - dependencies: - '@nuxt/kit': 3.2.0_rollup@3.14.0 - '@rollup/plugin-replace': 5.0.2_rollup@3.14.0 - '@vitejs/plugin-vue': 4.0.0_vite@4.1.1+vue@3.2.45 - '@vitejs/plugin-vue-jsx': 3.0.0_vite@4.1.1+vue@3.2.45 - autoprefixer: 10.4.13_postcss@8.4.21 - chokidar: 3.5.3 - cssnano: 5.1.14_postcss@8.4.21 - defu: 6.1.2 - esbuild: 0.17.6 - escape-string-regexp: 5.0.0 - estree-walker: 3.0.3 - externality: 1.0.0 - fs-extra: 11.1.0 - get-port-please: 3.0.1 - h3: 1.4.0 - knitwork: 1.0.0 - magic-string: 0.27.0 - mlly: 1.1.0 - ohash: 1.0.0 - pathe: 1.1.0 - perfect-debounce: 0.1.3 - pkg-types: 1.0.1 - postcss: 8.4.21 - postcss-import: 15.1.0_postcss@8.4.21 - postcss-url: 10.1.3_postcss@8.4.21 - rollup: 3.14.0 - rollup-plugin-visualizer: 5.9.0_rollup@3.14.0 - ufo: 1.0.1 - unplugin: 1.0.1 - vite: 4.1.1 - vite-node: 0.28.4 - vite-plugin-checker: 0.5.5_vze4qwvlaxozg73itpzioumila - vue: 3.2.45 - vue-bundle-renderer: 1.0.1 - transitivePeerDependencies: - - '@types/node' - - eslint - - less - - meow - - optionator - - sass - - stylelint - - stylus - - sugarss - - supports-color - - terser - - typescript - - vls - - vti - - vue-tsc - /@nuxt/vite-builder/3.2.0_vue@3.2.45: resolution: {integrity: sha512-1rApkhjQMUndRKl9bFn/NdAVxUgPeAB/XIEgP0YN4KPTM156Q/fvgu8LrzUp4lzYgGGKfm4r8IfuxYS9BremMQ==} engines: {node: ^14.16.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0} @@ -2763,6 +3029,64 @@ packages: - vue-tsc dev: true + /@nuxt/vite-builder/3.2.2_vshnhw7h4tuo6ge5ck2wv7vfrm: + resolution: {integrity: sha512-J46xnpVtpkYSpFYL7NrqIFEUQWY0KNCeOKdsPa6CzJovSng6k8eQVuTQ3EQHxbRTt9j7vRFIvwge6E//c7iMJg==} + engines: {node: ^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0} + peerDependencies: + vue: ^3.2.47 + dependencies: + '@nuxt/kit': 3.2.2_rollup@3.16.0 + '@rollup/plugin-replace': 5.0.2_rollup@3.16.0 + '@vitejs/plugin-vue': 4.0.0_vite@4.1.2+vue@3.2.45 + '@vitejs/plugin-vue-jsx': 3.0.0_vite@4.1.2+vue@3.2.45 + autoprefixer: 10.4.13_postcss@8.4.21 + chokidar: 3.5.3 + cssnano: 5.1.15_postcss@8.4.21 + defu: 6.1.2 + esbuild: 0.17.8 + escape-string-regexp: 5.0.0 + estree-walker: 3.0.3 + externality: 1.0.0 + fs-extra: 11.1.0 + get-port-please: 3.0.1 + h3: 1.5.0 + knitwork: 1.0.0 + magic-string: 0.29.0 + mlly: 1.1.1 + ohash: 1.0.0 + pathe: 1.1.0 + perfect-debounce: 0.1.3 + pkg-types: 1.0.2 + postcss: 8.4.21 + postcss-import: 15.1.0_postcss@8.4.21 + postcss-url: 10.1.3_postcss@8.4.21 + rollup: 3.16.0 + rollup-plugin-visualizer: 5.9.0_rollup@3.16.0 + strip-literal: 1.0.1 + ufo: 1.1.0 + unplugin: 1.1.0 + vite: 4.1.2 + vite-node: 0.28.5 + vite-plugin-checker: 0.5.5_s7c5giyigbkek5tarch3n7ru5m + vue: 3.2.45 + vue-bundle-renderer: 1.0.2 + transitivePeerDependencies: + - '@types/node' + - eslint + - less + - meow + - optionator + - sass + - stylelint + - stylus + - sugarss + - supports-color + - terser + - typescript + - vls + - vti + - vue-tsc + /@nuxthq/studio/0.7.2: resolution: {integrity: sha512-8TRUJra53nl+P3XyjcHUKOh/nFo+6MqCy+OXqscKG7MuY8DZ9GNKO8mIIMkyjwseJTGPhSDNqVAsHiHQ0SFfwQ==} dependencies: @@ -2861,6 +3185,19 @@ packages: dependencies: rollup: 3.14.0 slash: 4.0.0 + dev: true + + /@rollup/plugin-alias/4.0.3_rollup@3.16.0: + resolution: {integrity: sha512-ZuDWE1q4PQDhvm/zc5Prun8sBpLJy41DMptYrS6MhAy9s9kL/doN1613BWfEchGVfKxzliJ3BjbOPizXX38DbQ==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0 + peerDependenciesMeta: + rollup: + optional: true + dependencies: + rollup: 3.16.0 + slash: 4.0.0 /@rollup/plugin-babel/5.3.1_3dsfpkpoyvuuxyfgdbpn4j4uzm: resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==} @@ -2895,6 +3232,24 @@ packages: is-reference: 1.2.1 magic-string: 0.27.0 rollup: 3.14.0 + dev: true + + /@rollup/plugin-commonjs/24.0.1_rollup@3.16.0: + resolution: {integrity: sha512-15LsiWRZk4eOGqvrJyu3z3DaBu5BhXIMeWnijSRvd8irrrg9SHpQ1pH+BUK4H6Z9wL9yOxZJMTLU+Au86XHxow==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^2.68.0||^3.0.0 + peerDependenciesMeta: + rollup: + optional: true + dependencies: + '@rollup/pluginutils': 5.0.2_rollup@3.16.0 + commondir: 1.0.1 + estree-walker: 2.0.2 + glob: 8.1.0 + is-reference: 1.2.1 + magic-string: 0.27.0 + rollup: 3.16.0 /@rollup/plugin-inject/5.0.3_rollup@3.14.0: resolution: {integrity: sha512-411QlbL+z2yXpRWFXSmw/teQRMkXcAAC8aYTemc15gwJRpvEVDQwoe+N/HTFD8RFG8+88Bme9DK2V9CVm7hJdA==} @@ -2909,6 +3264,21 @@ packages: estree-walker: 2.0.2 magic-string: 0.27.0 rollup: 3.14.0 + dev: true + + /@rollup/plugin-inject/5.0.3_rollup@3.16.0: + resolution: {integrity: sha512-411QlbL+z2yXpRWFXSmw/teQRMkXcAAC8aYTemc15gwJRpvEVDQwoe+N/HTFD8RFG8+88Bme9DK2V9CVm7hJdA==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0 + peerDependenciesMeta: + rollup: + optional: true + dependencies: + '@rollup/pluginutils': 5.0.2_rollup@3.16.0 + estree-walker: 2.0.2 + magic-string: 0.27.0 + rollup: 3.16.0 /@rollup/plugin-json/6.0.0_rollup@3.14.0: resolution: {integrity: sha512-i/4C5Jrdr1XUarRhVu27EEwjt4GObltD7c+MkCIpO2QIbojw8MUs+CCTqOphQi3Qtg1FLmYt+l+6YeoIf51J7w==} @@ -2921,6 +3291,19 @@ packages: dependencies: '@rollup/pluginutils': 5.0.2_rollup@3.14.0 rollup: 3.14.0 + dev: true + + /@rollup/plugin-json/6.0.0_rollup@3.16.0: + resolution: {integrity: sha512-i/4C5Jrdr1XUarRhVu27EEwjt4GObltD7c+MkCIpO2QIbojw8MUs+CCTqOphQi3Qtg1FLmYt+l+6YeoIf51J7w==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0 + peerDependenciesMeta: + rollup: + optional: true + dependencies: + '@rollup/pluginutils': 5.0.2_rollup@3.16.0 + rollup: 3.16.0 /@rollup/plugin-node-resolve/11.2.1_rollup@2.79.1: resolution: {integrity: sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==} @@ -2953,6 +3336,24 @@ packages: is-module: 1.0.0 resolve: 1.22.1 rollup: 3.14.0 + dev: true + + /@rollup/plugin-node-resolve/15.0.1_rollup@3.16.0: + resolution: {integrity: sha512-ReY88T7JhJjeRVbfCyNj+NXAG3IIsVMsX9b5/9jC98dRP8/yxlZdz7mHZbHk5zHr24wZZICS5AcXsFZAXYUQEg==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^2.78.0||^3.0.0 + peerDependenciesMeta: + rollup: + optional: true + dependencies: + '@rollup/pluginutils': 5.0.2_rollup@3.16.0 + '@types/resolve': 1.20.2 + deepmerge: 4.2.2 + is-builtin-module: 3.2.0 + is-module: 1.0.0 + resolve: 1.22.1 + rollup: 3.16.0 /@rollup/plugin-replace/2.4.2_rollup@2.79.1: resolution: {integrity: sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==} @@ -2977,6 +3378,19 @@ packages: magic-string: 0.27.0 rollup: 3.14.0 + /@rollup/plugin-replace/5.0.2_rollup@3.16.0: + resolution: {integrity: sha512-M9YXNekv/C/iHHK+cvORzfRYfPbq0RDD8r0G+bMiTXjNGKulPnCT9O3Ss46WfhI6ZOCgApOP7xAdmCQJ+U2LAA==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0 + peerDependenciesMeta: + rollup: + optional: true + dependencies: + '@rollup/pluginutils': 5.0.2_rollup@3.16.0 + magic-string: 0.27.0 + rollup: 3.16.0 + /@rollup/plugin-terser/0.4.0_rollup@3.14.0: resolution: {integrity: sha512-Ipcf3LPNerey1q9ZMjiaWHlNPEHNU/B5/uh9zXLltfEQ1lVSLLeZSgAtTPWGyw8Ip1guOeq+mDtdOlEj/wNxQw==} engines: {node: '>=14.0.0'} @@ -2990,6 +3404,21 @@ packages: serialize-javascript: 6.0.1 smob: 0.0.6 terser: 5.16.1 + dev: true + + /@rollup/plugin-terser/0.4.0_rollup@3.16.0: + resolution: {integrity: sha512-Ipcf3LPNerey1q9ZMjiaWHlNPEHNU/B5/uh9zXLltfEQ1lVSLLeZSgAtTPWGyw8Ip1guOeq+mDtdOlEj/wNxQw==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^2.x || ^3.x + peerDependenciesMeta: + rollup: + optional: true + dependencies: + rollup: 3.16.0 + serialize-javascript: 6.0.1 + smob: 0.0.6 + terser: 5.16.1 /@rollup/plugin-wasm/6.1.2_rollup@3.14.0: resolution: {integrity: sha512-YdrQ7zfnZ54Y+6raCev3tR1PrhQGxYKSTajGylhyP0oBacouuNo6KcNCk+pYKw9M98jxRWLFFca/udi76IDXzg==} @@ -3001,6 +3430,18 @@ packages: optional: true dependencies: rollup: 3.14.0 + dev: true + + /@rollup/plugin-wasm/6.1.2_rollup@3.16.0: + resolution: {integrity: sha512-YdrQ7zfnZ54Y+6raCev3tR1PrhQGxYKSTajGylhyP0oBacouuNo6KcNCk+pYKw9M98jxRWLFFca/udi76IDXzg==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0 + peerDependenciesMeta: + rollup: + optional: true + dependencies: + rollup: 3.16.0 /@rollup/pluginutils/3.1.0_rollup@2.79.1: resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} @@ -3048,6 +3489,20 @@ packages: picomatch: 2.3.1 rollup: 3.14.0 + /@rollup/pluginutils/5.0.2_rollup@3.16.0: + resolution: {integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0 + peerDependenciesMeta: + rollup: + optional: true + dependencies: + '@types/estree': 1.0.0 + estree-walker: 2.0.2 + picomatch: 2.3.1 + rollup: 3.16.0 + /@socket.io/component-emitter/3.1.0: resolution: {integrity: sha512-+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg==} dev: true @@ -3620,17 +4075,43 @@ packages: resolution: {integrity: sha512-rwVz7NWMdQ8kSTXv/WOhB0eTWYFD2SQwQ/J109IEqNUN9X3pIwcvdvlXMCG+qhJGFyiIgOl2X+W0cE+u/IiLVA==} dependencies: '@unhead/schema': 1.0.21 + dev: true + + /@unhead/dom/1.0.22: + resolution: {integrity: sha512-oqTHB6OgiH91grELZLQxxw17la86dUBiGz40fItaiE6ywIImCSGjid10IjH5VVifHSmLaQ08qq+s5HH0s/hZ4w==} + dependencies: + '@unhead/schema': 1.0.22 + '@unhead/shared': 1.0.22 /@unhead/schema/1.0.21: resolution: {integrity: sha512-amYg6vJ37xUhnL6bvL4S3lz6yDs5lWeqJu63/3a5bxH3Dq0WPJ+kdhpUXI+4enoNaWvLvm860WXUOtKr5D+DMg==} dependencies: '@zhead/schema': 1.1.0 hookable: 5.4.2 + dev: true + + /@unhead/schema/1.0.22: + resolution: {integrity: sha512-Pg+F4UmYhI3Vz1Jio3bjCxEjuhvqlYrybwphsK2XacIDHYGQmcvBtMiB/5Y8Diuy1lGfHFloWaNjMuvAdh5gNA==} + dependencies: + hookable: 5.4.2 + zhead: 2.0.0 + + /@unhead/shared/1.0.22: + resolution: {integrity: sha512-0PsmYRoATAdCsJ7edBxKXgUq2vP9gznFOLux+OelF5axGTo3WpxeK7BczaPmyz3fVHg6mJWhWOaHIeOktOcTiQ==} + dependencies: + '@unhead/schema': 1.0.22 /@unhead/ssr/1.0.21: resolution: {integrity: sha512-QWy+vKZWVb+XfHl/B/rEoniMGFpDjXiYBkjJZyuf+9By8DzQUscMaTv14neW1ZR6pq56c4B7Tp1N3Lve8SW+rA==} dependencies: '@unhead/schema': 1.0.21 + dev: true + + /@unhead/ssr/1.0.22: + resolution: {integrity: sha512-0r9b+QFUAABHqewlqwW+mfNTR4qtWsBe3KCCzhqrNEXFxMBAXqqAtnKRiDJ3YwVZZHJ3YULLu7GlmfivIBM5zA==} + dependencies: + '@unhead/schema': 1.0.22 + '@unhead/shared': 1.0.22 /@unhead/vue/1.0.21_vue@3.2.45: resolution: {integrity: sha512-UCwgY4MbQEnFUo+/xmzBPK3PjC+oeCCzSsgK6eLk3vUC8Cuarrvw06wy8s0cO94DkpAi56Ih9oRWA16a/tih1A==} @@ -3640,6 +4121,18 @@ packages: '@unhead/schema': 1.0.21 hookable: 5.4.2 vue: 3.2.45 + dev: true + + /@unhead/vue/1.0.22_vue@3.2.45: + resolution: {integrity: sha512-v6PdiDYKuRXZYFPB11QvoiFjP7Pw+U59MmA0V4yvRZQSz9KAx4KUefgxi3f6JnLeyyUX1xPEZ1Zv6z6Pm8nyOg==} + peerDependencies: + vue: '>=2.7 || >=3' + dependencies: + '@unhead/schema': 1.0.22 + '@unhead/shared': 1.0.22 + hookable: 5.4.2 + unhead: 1.0.22 + vue: 3.2.45 /@unocss/astro/0.49.1: resolution: {integrity: sha512-UA7/GUHEiixFavk01+oiCGRLcWJMRbx03bLiAYQvroIj+N41xDroevce5kUJl1xl4jfF1B3pLzUGNRSz5rFjNQ==} @@ -3881,6 +4374,22 @@ packages: vue: 3.2.45 transitivePeerDependencies: - supports-color + dev: true + + /@vitejs/plugin-vue-jsx/3.0.0_vite@4.1.2+vue@3.2.45: + resolution: {integrity: sha512-vurkuzgac5SYuxd2HUZqAFAWGTF10diKBwJNbCvnWijNZfXd+7jMtqjPFbGt7idOJUn584fP1Ar9j/GN2jQ3Ew==} + engines: {node: ^14.18.0 || >=16.0.0} + peerDependencies: + vite: ^4.0.0 + vue: ^3.0.0 + dependencies: + '@babel/core': 7.20.12 + '@babel/plugin-transform-typescript': 7.20.13_@babel+core@7.20.12 + '@vue/babel-plugin-jsx': 1.1.1_@babel+core@7.20.12 + vite: 4.1.2 + vue: 3.2.45 + transitivePeerDependencies: + - supports-color /@vitejs/plugin-vue/4.0.0_vite@4.1.1+vue@3.2.45: resolution: {integrity: sha512-e0X4jErIxAB5oLtDqbHvHpJe/uWNkdpYV83AOG2xo2tEVSzCzewgJMtREZM30wXnM5ls90hxiOtAuVU6H5JgbA==} @@ -3891,6 +4400,17 @@ packages: dependencies: vite: 4.1.1 vue: 3.2.45 + dev: true + + /@vitejs/plugin-vue/4.0.0_vite@4.1.2+vue@3.2.45: + resolution: {integrity: sha512-e0X4jErIxAB5oLtDqbHvHpJe/uWNkdpYV83AOG2xo2tEVSzCzewgJMtREZM30wXnM5ls90hxiOtAuVU6H5JgbA==} + engines: {node: ^14.18.0 || >=16.0.0} + peerDependencies: + vite: ^4.0.0 + vue: ^3.2.25 + dependencies: + vite: 4.1.2 + vue: 3.2.45 /@vitest/expect/0.28.4: resolution: {integrity: sha512-JqK0NZ4brjvOSL8hXAnIsfi+jxDF7rH/ZWCGCt0FAqRnVFc1hXsfwXksQvEnKqD84avRt3gmeXoK4tNbmkoVsQ==} @@ -4111,7 +4631,7 @@ packages: - vue dev: false - /@vue-macros/nuxt/1.0.3_6l3fqwfj7gx5aeecw2zdghwe7m: + /@vue-macros/nuxt/1.0.3_vyb7vsolkurixhhd26iueh2osa: resolution: {integrity: sha512-p1IuApxeLMjMT5xtdXhIpdNOp5I4+jQnz2Bv4KC6FfnfZZzDToAulaK0Y+Xmn5cSNY+hvCwA7JLZLjRwvYu/AQ==} engines: {node: '>=14.19.0'} peerDependencies: @@ -4120,7 +4640,7 @@ packages: '@nuxt/kit': 3.2.0 '@vue-macros/short-vmodel': 1.1.0 '@vue-macros/volar': 0.8.1_vue-tsc@1.0.24 - nuxt: 3.2.0_7rz7g5sqfnn6wuv5lem37retty + nuxt: 3.2.2_7rz7g5sqfnn6wuv5lem37retty unplugin-vue-macros: 1.7.3_@vueuse+core@9.12.0 transitivePeerDependencies: - '@vueuse/core' @@ -4448,6 +4968,18 @@ packages: '@unhead/ssr': 1.0.21 '@unhead/vue': 1.0.21_vue@3.2.45 vue: 3.2.45 + dev: true + + /@vueuse/head/1.0.26_vue@3.2.45: + resolution: {integrity: sha512-Dg51HTkGNS3XCDk5ZMKrF+zhrd0iDLhl7YPpsiSUGR8MFQrulu62BhTOh6gDXic/xNNPB3PLstKtVl49S7CbEQ==} + peerDependencies: + vue: '>=2.7 || >=3' + dependencies: + '@unhead/dom': 1.0.22 + '@unhead/schema': 1.0.22 + '@unhead/ssr': 1.0.22 + '@unhead/vue': 1.0.22_vue@3.2.45 + vue: 3.2.45 /@vueuse/integrations/9.11.1_ha7ivgav6uqpoo2b5thfugqwjq: resolution: {integrity: sha512-1VBT1U0ScI0GmJn+i7RvyCX5P+Dh04yxHurN3RniYPCFOJ8mCKSqJlzSA5aQ94UIK0ZKI2RyEGS8FY0WAteixw==} @@ -4545,13 +5077,32 @@ packages: '@vueuse/core': 9.12.0 '@vueuse/metadata': 9.12.0 local-pkg: 0.4.3 - nuxt: 3.2.0_7rz7g5sqfnn6wuv5lem37retty + nuxt: 3.2.0 vue-demi: 0.13.11 transitivePeerDependencies: - '@vue/composition-api' - rollup - supports-color - vue + dev: true + + /@vueuse/nuxt/9.12.0_nuxt@3.2.2: + resolution: {integrity: sha512-zT7ieMmJgyB+hpQ6aG2HiyvNFHm5D/s2Z7fQjWcxuDI9Xawr7ECWBkSinxwrmtZ7+0lacXak+VMFpbx/z/zp2Q==} + peerDependencies: + nuxt: ^3.0.0 + dependencies: + '@nuxt/kit': 3.2.0 + '@vueuse/core': 9.12.0 + '@vueuse/metadata': 9.12.0 + local-pkg: 0.4.3 + nuxt: 3.2.2_7rz7g5sqfnn6wuv5lem37retty + vue-demi: 0.13.11 + transitivePeerDependencies: + - '@vue/composition-api' + - rollup + - supports-color + - vue + dev: false /@vueuse/shared/8.9.4: resolution: {integrity: sha512-wt+T30c4K6dGRMVqPddexEVLa28YwxW5OFIPmzUHICjphfAuBFTTdDoyqREZNDOFJZ44ARH1WWQNCUK8koJ+Ag==} @@ -4586,6 +5137,7 @@ packages: /@zhead/schema/1.1.0: resolution: {integrity: sha512-hEtK+hUAKS3w1+F++m6EeZ6bWeLDXraqN2nCyRVIP5vvR3bWjXVP9OM9x7Pmn7Hp6T7FKmsG2C8rvouQU2806w==} + dev: true /abbrev/1.1.1: resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} @@ -5039,6 +5591,20 @@ packages: transitivePeerDependencies: - supports-color + /c12/1.1.2: + resolution: {integrity: sha512-fHT5HDEHNMb2oImnqJ88/UlpEOkY/chdyYxSd3YCpvBqBvU0IDlHTkNc7GnjObDMxdis2lL+rwlQcNq8VeZESA==} + dependencies: + defu: 6.1.2 + dotenv: 16.0.3 + giget: 1.1.2 + jiti: 1.17.1 + mlly: 1.1.1 + pathe: 1.1.0 + pkg-types: 1.0.2 + rc9: 2.0.1 + transitivePeerDependencies: + - supports-color + /cac/6.7.14: resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} engines: {node: '>=8'} @@ -5220,6 +5786,11 @@ packages: /ci-info/3.7.1: resolution: {integrity: sha512-4jYS4MOAaCIStSRwiuxc4B8MYhIe676yO1sYGzARnjXkWpmzZMMYxY6zu8WYWDhSuth5zhrQ1rhNSibyyvv4/w==} engines: {node: '>=8'} + dev: true + + /ci-info/3.8.0: + resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==} + engines: {node: '>=8'} /classnames/2.3.2: resolution: {integrity: sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==} @@ -5527,6 +6098,44 @@ packages: postcss-reduce-transforms: 5.1.0_postcss@8.4.21 postcss-svgo: 5.1.0_postcss@8.4.21 postcss-unique-selectors: 5.1.1_postcss@8.4.21 + dev: true + + /cssnano-preset-default/5.2.14_postcss@8.4.21: + resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + css-declaration-sorter: 6.3.1_postcss@8.4.21 + cssnano-utils: 3.1.0_postcss@8.4.21 + postcss: 8.4.21 + postcss-calc: 8.2.4_postcss@8.4.21 + postcss-colormin: 5.3.1_postcss@8.4.21 + postcss-convert-values: 5.1.3_postcss@8.4.21 + postcss-discard-comments: 5.1.2_postcss@8.4.21 + postcss-discard-duplicates: 5.1.0_postcss@8.4.21 + postcss-discard-empty: 5.1.1_postcss@8.4.21 + postcss-discard-overridden: 5.1.0_postcss@8.4.21 + postcss-merge-longhand: 5.1.7_postcss@8.4.21 + postcss-merge-rules: 5.1.4_postcss@8.4.21 + postcss-minify-font-values: 5.1.0_postcss@8.4.21 + postcss-minify-gradients: 5.1.1_postcss@8.4.21 + postcss-minify-params: 5.1.4_postcss@8.4.21 + postcss-minify-selectors: 5.2.1_postcss@8.4.21 + postcss-normalize-charset: 5.1.0_postcss@8.4.21 + postcss-normalize-display-values: 5.1.0_postcss@8.4.21 + postcss-normalize-positions: 5.1.1_postcss@8.4.21 + postcss-normalize-repeat-style: 5.1.1_postcss@8.4.21 + postcss-normalize-string: 5.1.0_postcss@8.4.21 + postcss-normalize-timing-functions: 5.1.0_postcss@8.4.21 + postcss-normalize-unicode: 5.1.1_postcss@8.4.21 + postcss-normalize-url: 5.1.0_postcss@8.4.21 + postcss-normalize-whitespace: 5.1.1_postcss@8.4.21 + postcss-ordered-values: 5.1.3_postcss@8.4.21 + postcss-reduce-initial: 5.1.2_postcss@8.4.21 + postcss-reduce-transforms: 5.1.0_postcss@8.4.21 + postcss-svgo: 5.1.0_postcss@8.4.21 + postcss-unique-selectors: 5.1.1_postcss@8.4.21 /cssnano-utils/3.1.0_postcss@8.4.21: resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==} @@ -5546,6 +6155,18 @@ packages: lilconfig: 2.0.6 postcss: 8.4.21 yaml: 1.10.2 + dev: true + + /cssnano/5.1.15_postcss@8.4.21: + resolution: {integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + cssnano-preset-default: 5.2.14_postcss@8.4.21 + lilconfig: 2.0.6 + postcss: 8.4.21 + yaml: 1.10.2 /csso/4.2.0: resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==} @@ -6185,6 +6806,36 @@ packages: '@esbuild/win32-arm64': 0.17.6 '@esbuild/win32-ia32': 0.17.6 '@esbuild/win32-x64': 0.17.6 + dev: true + + /esbuild/0.17.8: + resolution: {integrity: sha512-g24ybC3fWhZddZK6R3uD2iF/RIPnRpwJAqLov6ouX3hMbY4+tKolP0VMF3zuIYCaXun+yHwS5IPQ91N2BT191g==} + engines: {node: '>=12'} + hasBin: true + requiresBuild: true + optionalDependencies: + '@esbuild/android-arm': 0.17.8 + '@esbuild/android-arm64': 0.17.8 + '@esbuild/android-x64': 0.17.8 + '@esbuild/darwin-arm64': 0.17.8 + '@esbuild/darwin-x64': 0.17.8 + '@esbuild/freebsd-arm64': 0.17.8 + '@esbuild/freebsd-x64': 0.17.8 + '@esbuild/linux-arm': 0.17.8 + '@esbuild/linux-arm64': 0.17.8 + '@esbuild/linux-ia32': 0.17.8 + '@esbuild/linux-loong64': 0.17.8 + '@esbuild/linux-mips64el': 0.17.8 + '@esbuild/linux-ppc64': 0.17.8 + '@esbuild/linux-riscv64': 0.17.8 + '@esbuild/linux-s390x': 0.17.8 + '@esbuild/linux-x64': 0.17.8 + '@esbuild/netbsd-x64': 0.17.8 + '@esbuild/openbsd-x64': 0.17.8 + '@esbuild/sunos-x64': 0.17.8 + '@esbuild/win32-arm64': 0.17.8 + '@esbuild/win32-ia32': 0.17.8 + '@esbuild/win32-x64': 0.17.8 /escalade/3.1.1: resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} @@ -6970,6 +7621,20 @@ packages: transitivePeerDependencies: - supports-color + /giget/1.1.2: + resolution: {integrity: sha512-HsLoS07HiQ5oqvObOI+Qb2tyZH4Gj5nYGfF9qQcZNrPw+uEFhdXtgJr01aO2pWadGHucajYDLxxbtQkm97ON2A==} + hasBin: true + dependencies: + colorette: 2.0.19 + defu: 6.1.2 + https-proxy-agent: 5.0.1 + mri: 1.2.0 + node-fetch-native: 1.0.2 + pathe: 1.1.0 + tar: 6.1.13 + transitivePeerDependencies: + - supports-color + /git-config-path/2.0.0: resolution: {integrity: sha512-qc8h1KIQbJpp+241id3GuAtkdyJ+IK+LIVtkiFTRKRrmddDzs3SI9CvP1QYmWBFvm1I/PWRwj//of8bgAc0ltA==} engines: {node: '>=4'} @@ -7097,6 +7762,17 @@ packages: ufo: 1.0.1 uncrypto: 0.1.2 + /h3/1.5.0: + resolution: {integrity: sha512-M+T6P4iOB0ipkC/ZCdw2w8iTF7yY6phmkILOwlrtcPuVv+KW9BilOspYlvnblpKx1nnNl+3iBsZIvZ8pvKM8Nw==} + dependencies: + cookie-es: 0.5.0 + defu: 6.1.2 + destr: 1.2.2 + iron-webcrypto: 0.5.0 + radix3: 1.0.0 + ufo: 1.1.0 + uncrypto: 0.1.2 + /happy-dom/8.2.0: resolution: {integrity: sha512-SBMi/ht8zvtXNuSVpXJu+hOEJtNEbM4CxQukcHMm7FCd1sMuitfESwUMX83gl3C2JcEGLcpx/+JnF+rjGl27+A==} dependencies: @@ -7415,6 +8091,23 @@ packages: standard-as-callback: 2.1.0 transitivePeerDependencies: - supports-color + dev: true + + /ioredis/5.3.1: + resolution: {integrity: sha512-C+IBcMysM6v52pTLItYMeV4Hz7uriGtoJdz7SSBDX6u+zwSYGirLdQh3L7t/OItWITcw3gTFMjJReYUwS4zihg==} + engines: {node: '>=12.22.0'} + dependencies: + '@ioredis/commands': 1.2.0 + cluster-key-slot: 1.1.2 + debug: 4.3.4 + denque: 2.1.0 + lodash.defaults: 4.2.0 + lodash.isarguments: 3.1.0 + redis-errors: 1.2.0 + redis-parser: 3.0.0 + standard-as-callback: 2.1.0 + transitivePeerDependencies: + - supports-color /ip-regex/5.0.0: resolution: {integrity: sha512-fOCG6lhoKKakwv+C6KdsOnGvgXnmgfmp0myi3bcNwj3qfwPAxRKWEuFhvEFF7ceYIz6+1jRZ+yguLFAmUNPEfw==} @@ -7423,6 +8116,9 @@ packages: /iron-webcrypto/0.4.0: resolution: {integrity: sha512-5OG53gJ4dBTq4y3IJqK7MEG9CPZRsYn9EP9J4jjgH4TcP/ywdsSMAmqj9VTSzdXu0/xfUrqjGHU7WLUme2+k5Q==} + /iron-webcrypto/0.5.0: + resolution: {integrity: sha512-9m0tDUIo+GPwDYi1CNlAW3ToIFTS9y88lf41KsEwbBsL4PKNjhrNDGoA0WlB6WWaJ6pgp+FOP1+6ls0YftivyA==} + /is-absolute-url/4.0.1: resolution: {integrity: sha512-/51/TKE88Lmm7Gc4/8btclNXWS+g50wXhYJq8HWIBAGUBnoAdRu1aXeh364t/O7wXDAcTJDP8PNuNKWUDWie+A==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} @@ -7737,6 +8433,10 @@ packages: resolution: {integrity: sha512-CByzPgFqYoB9odEeef7GNmQ3S5THIBOtzRYoSCya2Sv27AuQxy2jgoFjQ6VTF53xsq1MXRm+YWNvOoDHUAteOw==} hasBin: true + /jiti/1.17.1: + resolution: {integrity: sha512-NZIITw8uZQFuzQimqjUxIrIcEdxYDFIe/0xYfIlVXTkiBjjyBEvgasj5bb0/cHtPRD/NziPbT312sFrkI5ALpw==} + hasBin: true + /js-beautify/1.14.6: resolution: {integrity: sha512-GfofQY5zDp+cuHc+gsEXKPpNw2KbPddreEo35O6jT6i0RVK6LhsoYBhq5TvK4/n74wnA0QbK8gGd+jUZwTMKJw==} engines: {node: '>=10'} @@ -8095,6 +8795,10 @@ packages: resolution: {integrity: sha512-ysxwsnTKdAx96aTRdhDOCQfDgbHnt8SK0KY8SEjO0wHinhWOFTESbjVCMPbU1uGXg/ch4lifqx0wfjOawU2+WA==} engines: {node: '>=12'} + /lru-cache/7.16.1: + resolution: {integrity: sha512-9kkuMZHnLH/8qXARvYSjNvq8S1GYFFzynQTAfKeaJ0sIrR3PUPuu37Z+EiIANiZBvpfTf2B5y8ecDLSMWlLv+w==} + engines: {node: '>=12'} + /magic-string/0.25.9: resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} dependencies: @@ -8112,6 +8816,12 @@ packages: dependencies: '@jridgewell/sourcemap-codec': 1.4.14 + /magic-string/0.29.0: + resolution: {integrity: sha512-WcfidHrDjMY+eLjlU+8OvwREqHwpgCeKVBUpQ3OhYYuvfaYCUgcbuBzappNzZvg/v8onU3oQj+BYpkOJe9Iw4Q==} + engines: {node: '>=12'} + dependencies: + '@jridgewell/sourcemap-codec': 1.4.14 + /make-dir/3.1.0: resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} engines: {node: '>=8'} @@ -8714,6 +9424,14 @@ packages: pkg-types: 1.0.1 ufo: 1.0.1 + /mlly/1.1.1: + resolution: {integrity: sha512-Jnlh4W/aI4GySPo6+DyTN17Q75KKbLTyFK8BrGhjNP4rxuUjbRWhE6gHg3bs33URWAF44FRm7gdQA348i3XxRw==} + dependencies: + acorn: 8.8.2 + pathe: 1.1.0 + pkg-types: 1.0.1 + ufo: 1.1.0 + /mri/1.2.0: resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} engines: {node: '>=4'} @@ -8828,6 +9546,77 @@ packages: - encoding - supports-color - utf-8-validate + dev: true + + /nitropack/2.2.2: + resolution: {integrity: sha512-bsFz+a2tn/rG6fZ9RgJVB9P7KuZBTgl3m2DugkagdbXQT/GsmMyvNZbaE+JH8tXOqV8tw9qpJWyaBLALPN9aFQ==} + engines: {node: ^14.16.0 || ^16.11.0 || ^17.0.0 || ^18.0.0 || ^19.0.0} + hasBin: true + dependencies: + '@cloudflare/kv-asset-handler': 0.3.0 + '@netlify/functions': 1.4.0 + '@rollup/plugin-alias': 4.0.3_rollup@3.16.0 + '@rollup/plugin-commonjs': 24.0.1_rollup@3.16.0 + '@rollup/plugin-inject': 5.0.3_rollup@3.16.0 + '@rollup/plugin-json': 6.0.0_rollup@3.16.0 + '@rollup/plugin-node-resolve': 15.0.1_rollup@3.16.0 + '@rollup/plugin-replace': 5.0.2_rollup@3.16.0 + '@rollup/plugin-terser': 0.4.0_rollup@3.16.0 + '@rollup/plugin-wasm': 6.1.2_rollup@3.16.0 + '@rollup/pluginutils': 5.0.2_rollup@3.16.0 + '@vercel/nft': 0.22.6 + archiver: 5.3.1 + c12: 1.1.2 + chalk: 5.2.0 + chokidar: 3.5.3 + consola: 2.15.3 + cookie-es: 0.5.0 + defu: 6.1.2 + destr: 1.2.2 + dot-prop: 7.2.0 + esbuild: 0.17.8 + escape-string-regexp: 5.0.0 + etag: 1.8.1 + fs-extra: 11.1.0 + globby: 13.1.3 + gzip-size: 7.0.0 + h3: 1.5.0 + hookable: 5.4.2 + http-proxy: 1.18.1 + is-primitive: 3.0.1 + jiti: 1.17.1 + klona: 2.0.6 + knitwork: 1.0.0 + listhen: 1.0.2 + mime: 3.0.0 + mlly: 1.1.1 + mri: 1.2.0 + node-fetch-native: 1.0.2 + ofetch: 1.0.1 + ohash: 1.0.0 + pathe: 1.1.0 + perfect-debounce: 0.1.3 + pkg-types: 1.0.2 + pretty-bytes: 6.1.0 + radix3: 1.0.0 + rollup: 3.16.0 + rollup-plugin-visualizer: 5.9.0_rollup@3.16.0 + scule: 1.0.0 + semver: 7.3.8 + serve-placeholder: 2.0.1 + serve-static: 1.15.0 + source-map-support: 0.5.21 + std-env: 3.3.2 + ufo: 1.1.0 + unenv: 1.2.0 + unimport: 2.2.4_rollup@3.16.0 + unstorage: 1.1.5 + transitivePeerDependencies: + - bufferutil + - debug + - encoding + - supports-color + - utf-8-validate /no-case/3.0.4: resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} @@ -8852,6 +9641,9 @@ packages: /node-fetch-native/1.0.1: resolution: {integrity: sha512-VzW+TAk2wE4X9maiKMlT+GsPU4OMmR1U9CrHSmd3DFLn2IcZ9VJ6M6BBugGfYUnPCLSYxXdZy17M0BEJyhUTwg==} + /node-fetch-native/1.0.2: + resolution: {integrity: sha512-KIkvH1jl6b3O7es/0ShyCgWLcfXxlBrLBbP3rOr23WArC66IMcU4DeZEeYEOwnopYhawLTn7/y+YtmASe8DFVQ==} + /node-fetch/2.6.8: resolution: {integrity: sha512-RZ6dBYuj8dRSfxpUSu+NsdF1dpPpluJxwOp+6IoDp/sH2QNDSvurYsAa+F1WxY2RjA1iP93xhcsUoYbF2XBqVg==} engines: {node: 4.x || >=6.0.0} @@ -8949,6 +9741,14 @@ packages: hasBin: true optionalDependencies: fsevents: 2.3.2 + dev: true + + /nuxi/3.2.2: + resolution: {integrity: sha512-JqPJqwfzQCVrjkMh+9Dd3q4qu7wYbmr+39SfjC6LL1oTNLFUjvjHG42tFJBDVHO+GImAo/kNjWGp2N/Jwo8/ag==} + engines: {node: ^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0} + hasBin: true + optionalDependencies: + fsevents: 2.3.2 /nuxt-component-meta/0.4.3: resolution: {integrity: sha512-40wsnbCh2neNdKVrwSiqV/ea7QshYjp3kpfk8JZaxSW/XcgNg2tzka4L+M8caOvQalyAKi6AaENPLaTYOZDbQg==} @@ -9075,7 +9875,7 @@ packages: ufo: 1.0.1 unctx: 2.1.1 unenv: 1.1.1 - unhead: 1.0.21 + unhead: 1.0.22 unimport: 2.2.4 unplugin: 1.0.1 untyped: 1.2.2 @@ -9106,21 +9906,21 @@ packages: - vue-tsc dev: true - /nuxt/3.2.0_7rz7g5sqfnn6wuv5lem37retty: - resolution: {integrity: sha512-8jAYyjU1Ht+MXPLLDIdIUmV56KiI0g7KusKwzvqn+vlzyCNtSHg2W/VBCGw5QWplb/MXruogcMl2sDenlQRZFg==} - engines: {node: ^14.16.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0} + /nuxt/3.2.2_7rz7g5sqfnn6wuv5lem37retty: + resolution: {integrity: sha512-fxO8zjNwWBd6ORvuOgVFXksd0+eliWSNQwACsCwqNRFXsjFawONfvqtdTd/pBOlRDZMJpPUTvdflsyHPaAsfJg==} + engines: {node: ^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0} hasBin: true dependencies: '@nuxt/devalue': 2.0.0 - '@nuxt/kit': 3.2.0 - '@nuxt/schema': 3.2.0 - '@nuxt/telemetry': 2.1.9 + '@nuxt/kit': 3.2.2 + '@nuxt/schema': 3.2.2 + '@nuxt/telemetry': 2.1.10 '@nuxt/ui-templates': 1.1.1 - '@nuxt/vite-builder': 3.2.0_vshnhw7h4tuo6ge5ck2wv7vfrm - '@unhead/ssr': 1.0.21 + '@nuxt/vite-builder': 3.2.2_vshnhw7h4tuo6ge5ck2wv7vfrm + '@unhead/ssr': 1.0.22 '@vue/reactivity': 3.2.47 '@vue/shared': 3.2.47 - '@vueuse/head': 1.0.25_vue@3.2.45 + '@vueuse/head': 1.0.26_vue@3.2.45 chokidar: 3.5.3 cookie-es: 0.5.0 defu: 6.1.2 @@ -9129,30 +9929,30 @@ packages: estree-walker: 3.0.3 fs-extra: 11.1.0 globby: 13.1.3 - h3: 1.4.0 + h3: 1.5.0 hash-sum: 2.0.0 hookable: 5.4.2 - jiti: 1.17.0 + jiti: 1.17.1 knitwork: 1.0.0 - magic-string: 0.27.0 - mlly: 1.1.0 - nitropack: 2.2.1 - nuxi: 3.2.0 - ofetch: 1.0.0 + magic-string: 0.29.0 + mlly: 1.1.1 + nitropack: 2.2.2 + nuxi: 3.2.2 + ofetch: 1.0.1 ohash: 1.0.0 pathe: 1.1.0 perfect-debounce: 0.1.3 scule: 1.0.0 strip-literal: 1.0.1 - ufo: 1.0.1 - unctx: 2.1.1 - unenv: 1.1.1 - unhead: 1.0.21 + ufo: 1.1.0 + unctx: 2.1.2 + unenv: 1.2.0 + unhead: 1.0.22 unimport: 2.2.4 - unplugin: 1.0.1 + unplugin: 1.1.0 untyped: 1.2.2 vue: 3.2.45 - vue-bundle-renderer: 1.0.1 + vue-bundle-renderer: 1.0.2 vue-devtools-stub: 0.1.0 vue-router: 4.1.6_vue@3.2.45 transitivePeerDependencies: @@ -9221,6 +10021,13 @@ packages: node-fetch-native: 1.0.1 ufo: 1.0.1 + /ofetch/1.0.1: + resolution: {integrity: sha512-icBz2JYfEpt+wZz1FRoGcrMigjNKjzvufE26m9+yUiacRQRHwnNlGRPiDnW4op7WX/MR6aniwS8xw8jyVelF2g==} + dependencies: + destr: 1.2.2 + node-fetch-native: 1.0.2 + ufo: 1.1.0 + /ohash/1.0.0: resolution: {integrity: sha512-kxSyzq6tt+6EE/xCnD1XaFhCCjUNUaz3X30rJp6mnjGLXAAvuPFqohMdv0aScWzajR45C29HyBaXZ8jXBwnh9A==} @@ -9547,6 +10354,13 @@ packages: mlly: 1.1.0 pathe: 1.1.0 + /pkg-types/1.0.2: + resolution: {integrity: sha512-hM58GKXOcj8WTqUXnsQyJYXdeAPbythQgEF3nTcEo+nkD49chjQ9IKm/QJy9xf6JakXptz86h7ecP2024rrLaQ==} + dependencies: + jsonc-parser: 3.2.0 + mlly: 1.1.1 + pathe: 1.1.0 + /pluralize/8.0.0: resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==} engines: {node: '>=4'} @@ -9581,6 +10395,19 @@ packages: colord: 2.9.3 postcss: 8.4.21 postcss-value-parser: 4.2.0 + dev: true + + /postcss-colormin/5.3.1_postcss@8.4.21: + resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + browserslist: 4.21.4 + caniuse-api: 3.0.0 + colord: 2.9.3 + postcss: 8.4.21 + postcss-value-parser: 4.2.0 /postcss-convert-values/5.1.3_postcss@8.4.21: resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==} @@ -9680,6 +10507,19 @@ packages: cssnano-utils: 3.1.0_postcss@8.4.21 postcss: 8.4.21 postcss-selector-parser: 6.0.11 + dev: true + + /postcss-merge-rules/5.1.4_postcss@8.4.21: + resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + browserslist: 4.21.4 + caniuse-api: 3.0.0 + cssnano-utils: 3.1.0_postcss@8.4.21 + postcss: 8.4.21 + postcss-selector-parser: 6.0.11 /postcss-minify-font-values/5.1.0_postcss@8.4.21: resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==} @@ -9830,6 +10670,17 @@ packages: browserslist: 4.21.4 caniuse-api: 3.0.0 postcss: 8.4.21 + dev: true + + /postcss-reduce-initial/5.1.2_postcss@8.4.21: + resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + browserslist: 4.21.4 + caniuse-api: 3.0.0 + postcss: 8.4.21 /postcss-reduce-transforms/5.1.0_postcss@8.4.21: resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==} @@ -10432,6 +11283,23 @@ packages: rollup: 3.14.0 source-map: 0.7.4 yargs: 17.6.2 + dev: true + + /rollup-plugin-visualizer/5.9.0_rollup@3.16.0: + resolution: {integrity: sha512-bbDOv47+Bw4C/cgs0czZqfm8L82xOZssk4ayZjG40y9zbXclNk7YikrZTDao6p7+HDiGxrN0b65SgZiVm9k1Cg==} + engines: {node: '>=14'} + hasBin: true + peerDependencies: + rollup: 2.x || 3.x + peerDependenciesMeta: + rollup: + optional: true + dependencies: + open: 8.4.0 + picomatch: 2.3.1 + rollup: 3.16.0 + source-map: 0.7.4 + yargs: 17.6.2 /rollup-pluginutils/2.8.2: resolution: {integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==} @@ -10454,6 +11322,13 @@ packages: optionalDependencies: fsevents: 2.3.2 + /rollup/3.16.0: + resolution: {integrity: sha512-9wE1H5N1SJqnROpQanBGJ7lrIitwlUYGj4Va4eyf3+vNhoIHLPLag2/CUGIiq3V9lHOBJB6zTsGsPvc50oeihg==} + engines: {node: '>=14.18.0', npm: '>=8.0.0'} + hasBin: true + optionalDependencies: + fsevents: 2.3.2 + /rope-sequence/1.3.3: resolution: {integrity: sha512-85aZYCxweiD5J8yTEbw+E6A27zSnLPNDL0WfPdw3YYodq7WjnTKo0q4dtyQ2gz23iPT8Q9CUyJtAaUNcTxRf5Q==} dev: false @@ -11269,6 +12144,9 @@ packages: /ufo/1.0.1: resolution: {integrity: sha512-boAm74ubXHY7KJQZLlXrtMz52qFvpsbOxDcZOnw/Wf+LS4Mmyu7JxmzD4tDLtUQtmZECypJ0FrCz4QIe6dvKRA==} + /ufo/1.1.0: + resolution: {integrity: sha512-LQc2s/ZDMaCN3QLpa+uzHUOQ7SdV0qgv3VBXOolQGXTaaZpIur6PwUclF5nN2hNkiTRcUugXd1zFOW3FLJ135Q==} + /ultrahtml/1.2.0: resolution: {integrity: sha512-vxZM2yNvajRmCj/SknRYGNXk2tqiy6kRNvZjJLaleG3zJbSh/aNkOqD1/CVzypw8tyHyhpzYuwQgMMhUB4ZVNQ==} dev: false @@ -11335,6 +12213,14 @@ packages: magic-string: 0.26.7 unplugin: 1.0.1 + /unctx/2.1.2: + resolution: {integrity: sha512-KK18aLRKe3OlbPyHbXAkIWSU3xK8GInomXfA7fzDMGFXQ1crX1UWrCzKesVXeUyHIayHUrnTvf87IPCKMyeKTg==} + dependencies: + acorn: 8.8.2 + estree-walker: 3.0.3 + magic-string: 0.27.0 + unplugin: 1.1.0 + /undici/5.16.0: resolution: {integrity: sha512-KWBOXNv6VX+oJQhchXieUznEmnJMqgXMbs0xxH2t8q/FUAWSJvOSr/rMaZKnX5RIVq7JDn0JbP4BOnKG2SGXLQ==} engines: {node: '>=12.18'} @@ -11350,11 +12236,20 @@ packages: node-fetch-native: 1.0.1 pathe: 1.1.0 - /unhead/1.0.21: - resolution: {integrity: sha512-vHXnozOkoSkCYIpGTWkW4JJbWMlY2I737sbBGxPj6maa9gEDMC50gwhCCVMnIvvMsJ6OxgNE5asEfSkSopfO+A==} + /unenv/1.2.0: + resolution: {integrity: sha512-8AcXA+xAz/C8ZVlIv+voD/uCe6V/LkQgZtQYOBjuKYNXhBitsOiy+QYrUPelLRDY2WB86Njw/qLawYNh8iDsvQ==} dependencies: - '@unhead/dom': 1.0.21 - '@unhead/schema': 1.0.21 + defu: 6.1.2 + mime: 3.0.0 + node-fetch-native: 1.0.1 + pathe: 1.1.0 + + /unhead/1.0.22: + resolution: {integrity: sha512-CIA8aEFHfoW3uABL+inYqDz5h50xgK3mwQQzPL4WtJRG9fEFciM2mjLtW7djvrnUlcGyf/tgVTOcAkhHb+320Q==} + dependencies: + '@unhead/dom': 1.0.22 + '@unhead/schema': 1.0.22 + '@unhead/shared': 1.0.22 hookable: 5.4.2 /unicode-canonical-property-names-ecmascript/2.0.0: @@ -11425,6 +12320,24 @@ packages: unplugin: 1.0.1 transitivePeerDependencies: - rollup + dev: true + + /unimport/2.2.4_rollup@3.16.0: + resolution: {integrity: sha512-qMgmeEGqqrrmEtm0dqxMG37J6xBtrriqxq9hILvDb+e6l2F0yTnJomLoCCp0eghLR7bYGeBsUU5Y0oyiUYhViw==} + dependencies: + '@rollup/pluginutils': 5.0.2_rollup@3.16.0 + escape-string-regexp: 5.0.0 + fast-glob: 3.2.12 + local-pkg: 0.4.3 + magic-string: 0.27.0 + mlly: 1.1.0 + pathe: 1.1.0 + pkg-types: 1.0.1 + scule: 1.0.0 + strip-literal: 1.0.1 + unplugin: 1.0.1 + transitivePeerDependencies: + - rollup /unique-string/2.0.0: resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==} @@ -11620,6 +12533,14 @@ packages: webpack-sources: 3.2.3 webpack-virtual-modules: 0.5.0 + /unplugin/1.1.0: + resolution: {integrity: sha512-I8obQ8Rs/hnkxokRV6g8JKOQFgYNnTd9DL58vcSt5IJ9AkK8wbrtsnzD5hi4BJlvcY536JzfEXj9L6h7j559/A==} + dependencies: + acorn: 8.8.2 + chokidar: 3.5.3 + webpack-sources: 3.2.3 + webpack-virtual-modules: 0.5.0 + /unstorage/1.1.4: resolution: {integrity: sha512-nrnCoWN8ewaZrwz5yf7QGkMn0FDoVer6yGIR56wvocNzAmZi1vXOnCaBxueB3Uu/SqNSH5N/ww41t6jNT8XccA==} dependencies: @@ -11642,6 +12563,30 @@ packages: - bufferutil - supports-color - utf-8-validate + dev: true + + /unstorage/1.1.5: + resolution: {integrity: sha512-6TZilI4JlubD/uGjhfP8rS8mcxVGVn+RIt1dQG0xJrFvbSqa5UeNpFQ8+g0zktm4laztVvFU/pAnBn8MF0ip3A==} + dependencies: + anymatch: 3.1.3 + chokidar: 3.5.3 + destr: 1.2.2 + h3: 1.5.0 + ioredis: 5.3.1 + listhen: 1.0.2 + lru-cache: 7.16.1 + mkdir: 0.0.2 + mri: 1.2.0 + node-fetch-native: 1.0.2 + ofetch: 1.0.1 + ufo: 1.1.0 + ws: 8.12.1 + optionalDependencies: + '@planetscale/database': 1.5.0 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate /untyped/1.2.2: resolution: {integrity: sha512-EANYd5L6AdpgfldlgMcmvOOnj092nWhy0ybhc7uhEH12ipytDYz89EOegBQKj8qWL3u1wgYnmFjADhsuCJs5Aw==} @@ -11763,6 +12708,7 @@ packages: - sugarss - supports-color - terser + dev: true /vite-node/0.28.4_@types+node@18.11.18: resolution: {integrity: sha512-KM0Q0uSG/xHHKOJvVHc5xDBabgt0l70y7/lWTR7Q0pR5/MrYxadT+y32cJOE65FfjGmJgxpVEEY+69btJgcXOQ==} @@ -11786,6 +12732,80 @@ packages: - supports-color - terser + /vite-node/0.28.5: + resolution: {integrity: sha512-LmXb9saMGlrMZbXTvOveJKwMTBTNUH66c8rJnQ0ZPNX+myPEol64+szRzXtV5ORb0Hb/91yq+/D3oERoyAt6LA==} + engines: {node: '>=v14.16.0'} + hasBin: true + dependencies: + cac: 6.7.14 + debug: 4.3.4 + mlly: 1.1.1 + pathe: 1.1.0 + picocolors: 1.0.0 + source-map: 0.6.1 + source-map-support: 0.5.21 + vite: 4.1.2 + transitivePeerDependencies: + - '@types/node' + - less + - sass + - stylus + - sugarss + - supports-color + - terser + + /vite-plugin-checker/0.5.5_s7c5giyigbkek5tarch3n7ru5m: + resolution: {integrity: sha512-BLaRlBmiVn3Fg/wR9A0+YNwgXVteFJaH8rCIiIgYQcQ50jc3oVe2m8i0xxG5geq36UttNJsAj7DpDelN7/KjOg==} + engines: {node: '>=14.16'} + peerDependencies: + eslint: '>=7' + meow: ^9.0.0 + optionator: ^0.9.1 + stylelint: '>=13' + typescript: '*' + vite: '>=2.0.0' + vls: '*' + vti: '*' + vue-tsc: '*' + peerDependenciesMeta: + eslint: + optional: true + meow: + optional: true + optionator: + optional: true + stylelint: + optional: true + typescript: + optional: true + vls: + optional: true + vti: + optional: true + vue-tsc: + optional: true + dependencies: + '@babel/code-frame': 7.18.6 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + chokidar: 3.5.3 + commander: 8.3.0 + eslint: 8.32.0 + fast-glob: 3.2.12 + fs-extra: 11.1.0 + lodash.debounce: 4.0.8 + lodash.pick: 4.4.0 + npm-run-path: 4.0.1 + strip-ansi: 6.0.1 + tiny-invariant: 1.3.1 + typescript: 4.9.5 + vite: 4.1.2 + vscode-languageclient: 7.0.0 + vscode-languageserver: 7.0.0 + vscode-languageserver-textdocument: 1.0.8 + vscode-uri: 3.0.7 + vue-tsc: 1.0.24_typescript@4.9.5 + /vite-plugin-checker/0.5.5_vite@4.1.1: resolution: {integrity: sha512-BLaRlBmiVn3Fg/wR9A0+YNwgXVteFJaH8rCIiIgYQcQ50jc3oVe2m8i0xxG5geq36UttNJsAj7DpDelN7/KjOg==} engines: {node: '>=14.16'} @@ -11836,58 +12856,6 @@ packages: vscode-uri: 3.0.7 dev: true - /vite-plugin-checker/0.5.5_vze4qwvlaxozg73itpzioumila: - resolution: {integrity: sha512-BLaRlBmiVn3Fg/wR9A0+YNwgXVteFJaH8rCIiIgYQcQ50jc3oVe2m8i0xxG5geq36UttNJsAj7DpDelN7/KjOg==} - engines: {node: '>=14.16'} - peerDependencies: - eslint: '>=7' - meow: ^9.0.0 - optionator: ^0.9.1 - stylelint: '>=13' - typescript: '*' - vite: '>=2.0.0' - vls: '*' - vti: '*' - vue-tsc: '*' - peerDependenciesMeta: - eslint: - optional: true - meow: - optional: true - optionator: - optional: true - stylelint: - optional: true - typescript: - optional: true - vls: - optional: true - vti: - optional: true - vue-tsc: - optional: true - dependencies: - '@babel/code-frame': 7.18.6 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - chokidar: 3.5.3 - commander: 8.3.0 - eslint: 8.32.0 - fast-glob: 3.2.12 - fs-extra: 11.1.0 - lodash.debounce: 4.0.8 - lodash.pick: 4.4.0 - npm-run-path: 4.0.1 - strip-ansi: 6.0.1 - tiny-invariant: 1.3.1 - typescript: 4.9.5 - vite: 4.1.1 - vscode-languageclient: 7.0.0 - vscode-languageserver: 7.0.0 - vscode-languageserver-textdocument: 1.0.8 - vscode-uri: 3.0.7 - vue-tsc: 1.0.24_typescript@4.9.5 - /vite-plugin-inspect/0.7.15: resolution: {integrity: sha512-oxeZCljacA/slhGFbDNlBqdhDU9fgdHL84i7Nz7DnaAIE7DhTiW2djanw3d/BKuZtduKUY82vRUQ4iaG917t2A==} engines: {node: '>=14'} @@ -11906,12 +12874,10 @@ packages: - supports-color dev: false - /vite-plugin-pwa/0.14.1_tz3vz2xt4jvid2diblkpydcyn4: + /vite-plugin-pwa/0.14.1: resolution: {integrity: sha512-5zx7yhQ8RTLwV71+GA9YsQQ63ALKG8XXIMqRJDdZkR8ZYftFcRgnzM7wOWmQZ/DATspyhPih5wCdcZnAIsM+mA==} peerDependencies: vite: ^3.1.0 || ^4.0.0 - workbox-build: ^6.5.4 - workbox-window: ^6.5.4 dependencies: '@rollup/plugin-replace': 5.0.2_rollup@3.14.0 debug: 4.3.4 @@ -11921,6 +12887,7 @@ packages: workbox-build: 6.5.4 workbox-window: 6.5.4 transitivePeerDependencies: + - '@types/babel__core' - supports-color dev: false @@ -11973,6 +12940,7 @@ packages: rollup: 3.14.0 optionalDependencies: fsevents: 2.3.2 + dev: true /vite/4.1.1_@types+node@18.11.18: resolution: {integrity: sha512-LM9WWea8vsxhr782r9ntg+bhSFS06FJgCvvB0+8hf8UWtvaiDagKYWXndjfX6kGl74keHJUcpzrQliDXZlF5yg==} @@ -12007,6 +12975,38 @@ packages: optionalDependencies: fsevents: 2.3.2 + /vite/4.1.2: + resolution: {integrity: sha512-MWDb9Rfy3DI8omDQySbMK93nQqStwbsQWejXRY2EBzEWKmLAXWb1mkI9Yw2IJrc+oCvPCI1Os5xSSIBYY6DEAw==} + engines: {node: ^14.18.0 || >=16.0.0} + hasBin: true + peerDependencies: + '@types/node': '>= 14' + less: '*' + sass: '*' + stylus: '*' + sugarss: '*' + terser: ^5.4.0 + peerDependenciesMeta: + '@types/node': + optional: true + less: + optional: true + sass: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + dependencies: + esbuild: 0.16.17 + postcss: 8.4.21 + resolve: 1.22.1 + rollup: 3.16.0 + optionalDependencies: + fsevents: 2.3.2 + /vitest-environment-nuxt/0.6.4_vitest@0.28.4: resolution: {integrity: sha512-cM65pFMFf6xJzF7pTwGKd092yV96brzaK7PoYs60DzL1pe8WJNPKuoQTtf2409mlA07dI7U4MxS5Pnwe4hWbzQ==} peerDependencies: @@ -12196,6 +13196,12 @@ packages: resolution: {integrity: sha512-w1zRgff5lVJ5YAIkVSKuFjDyCgKdg/sPbcgZbosnMCoHblg0uThCKA2n/XWUGnw0Rh2+03UY/VtkwaYwMUSRyQ==} dependencies: ufo: 1.0.1 + dev: true + + /vue-bundle-renderer/1.0.2: + resolution: {integrity: sha512-jfFfTlXV7Xp2LxqcdRnBslFLb4C/DBvecTgpUYcDpMd75u326svTmEqa8YX5d1t7Mh9jODKdt8y+/z+8Pegh3g==} + dependencies: + ufo: 1.1.0 /vue-component-meta/1.0.24_typescript@4.9.5: resolution: {integrity: sha512-T2q8ptMjZA98wDYpyoTcrsvG8oPwyBKw73viLOCr4BSkdMDffyLhdxxVpn/XKangCki7bKY8TdK77w0YP5MCaw==} @@ -12629,6 +13635,18 @@ packages: utf-8-validate: optional: true + /ws/8.12.1: + resolution: {integrity: sha512-1qo+M9Ba+xNhPB+YTWUlK6M17brTut5EXbcBaMRN5pH5dFrXz7lzz1ChFSUq3bOUl8yEvSenhHmYUNJxFzdJew==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + /ws/8.2.3: resolution: {integrity: sha512-wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA==} engines: {node: '>=10.0.0'} @@ -12730,6 +13748,9 @@ packages: resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==} engines: {node: '>=12.20'} + /zhead/2.0.0: + resolution: {integrity: sha512-d7URVnQ0i2llNAewFknJ8L87R23/1XByNWmFJonY2Pwr7SP/HtZ3h8LW6N014lu1uTc5s+b/cDc8sZ3ICMIOPA==} + /zip-stream/4.1.0: resolution: {integrity: sha512-zshzwQW7gG7hjpBlgeQP9RuyPGNxvJdzR8SUM3QhxCnLjWN2E7j3dOvpeDcQoETfHx0urRS7EtmVToql7YpU4A==} engines: {node: '>= 10'}